]> git.lyx.org Git - lyx.git/blobdiff - src/frontends/xforms/FormGraphics.h
Change glob() API to accept a dir parameter.
[lyx.git] / src / frontends / xforms / FormGraphics.h
index 3facf82c76052c2adc2f4cba734437637103d22a..85ee23a7435a2104b03d75725d0b94cece13b0df 100644 (file)
@@ -5,25 +5,21 @@
  * 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 ControlGraphics;
 struct FD_graphics;
 struct FD_graphics_file;
@@ -32,10 +28,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,7 +45,7 @@ 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);
 
@@ -60,7 +57,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