]> git.lyx.org Git - lyx.git/blobdiff - src/frontends/xforms/FormGraphics.h
Change the semantics of 'none' and 'auto' viewers/editors: 'none' means now
[lyx.git] / src / frontends / xforms / FormGraphics.h
index 3facf82c76052c2adc2f4cba734437637103d22a..97364f34720de1e8ef0637b6edbfb914b9c32202 100644 (file)
@@ -5,25 +5,22 @@
  * Licence details can be found in the file COPYING.
  *
  * \author Baruch Even
- * \author Herbert Voss
+ * \author Herbert Voß
  *
- * Full author contact details are available in file CREDITS
+ * Full author contact details are available in file CREDITS.
  */
 
 #ifndef FORMGRAPHICS_H
 #define FORMGRAPHICS_H
 
-#ifdef __GNUG__
-#pragma interface
-#endif
-
-#include "FormBase.h"
-#include "RadioButtonGroup.h"
-
+#include "FormDialogView.h"
 #include <boost/scoped_ptr.hpp>
-
 #include <vector>
 
+namespace lyx {
+namespace frontend {
+
+class CheckedPath;
 class ControlGraphics;
 struct FD_graphics;
 struct FD_graphics_file;
@@ -32,10 +29,11 @@ struct FD_graphics_extra;
 
 /** This class provides an XForms implementation of the Graphics Dialog.
  */
-class FormGraphics : public FormCB<ControlGraphics, FormDB<FD_graphics> > {
+class FormGraphics
+       : public FormController<ControlGraphics, FormView<FD_graphics> > {
 public:
        ///
-       FormGraphics();
+       FormGraphics(Dialog &);
 private:
 
        /** Redraw the form (on receipt of a Signal indicating, for example,
@@ -48,10 +46,13 @@ private:
        /// Update dialog before/whilst showing it.
        virtual void update();
        /// Update the BoundingBox info.
-       void updateBB(string const & filename, string const & bb_inset);
+       void updateBB(std::string const & filename, std::string const & bb_inset);
        /// Filter the inputs on callback from xforms
        virtual ButtonPolicy::SMInput input(FL_OBJECT *, long);
 
+       // Accessor to checker owned by the button controller.
+       CheckedPath * file_checker_;
+
        /// Real GUI implementation.
        boost::scoped_ptr<FD_graphics_file> file_;
        ///
@@ -60,7 +61,10 @@ private:
        boost::scoped_ptr<FD_graphics_extra> extra_;
 
        /// Store the LaTeX names for the rotation origins.
-       std::vector<string> origins_;
+       std::vector<std::string> origins_;
 };
 
+} // namespace frontend
+} // namespace lyx
+
 #endif  // FORMGRAPHICS_H