]> git.lyx.org Git - lyx.git/blobdiff - src/frontends/xforms/FormGraphics.h
Yet more dialog tweaking from Rob.
[lyx.git] / src / frontends / xforms / FormGraphics.h
index 0faa35eebefb5eeb877c5edefe7b00ecda84149d..3facf82c76052c2adc2f4cba734437637103d22a 100644 (file)
@@ -1,15 +1,13 @@
 // -*- C++ -*-
-/* This file is part of
- * ====================================================== 
- *
- *           LyX, The Document Processor
- *
- *           Copyright 2000-2001 The LyX Team.
+/**
+ * \file FormGraphics.h
+ * This file is part of LyX, the document processor.
+ * Licence details can be found in the file COPYING.
  *
- * ======================================================
+ * \author Baruch Even
+ * \author Herbert Voss
  *
- * \file FormGraphics.h
- * \author Baruch Even, baruch.even@writeme.com
+ * Full author contact details are available in file CREDITS
  */
 
 #ifndef FORMGRAPHICS_H
 
 #ifdef __GNUG__
 #pragma interface
-#endif 
+#endif
 
 #include "FormBase.h"
 #include "RadioButtonGroup.h"
 
+#include <boost/scoped_ptr.hpp>
+
+#include <vector>
+
 class ControlGraphics;
-struct FD_form_graphics;
+struct FD_graphics;
+struct FD_graphics_file;
+struct FD_graphics_bbox;
+struct FD_graphics_extra;
 
 /** This class provides an XForms implementation of the Graphics Dialog.
  */
-class FormGraphics : public FormCB<ControlGraphics, FormDB<FD_form_graphics> > {
+class FormGraphics : public FormCB<ControlGraphics, FormDB<FD_graphics> > {
 public:
        ///
-       FormGraphics(ControlGraphics &);
-
+       FormGraphics();
 private:
+
+       /** Redraw the form (on receipt of a Signal indicating, for example,
+           that the xforms colours have been re-mapped). */
+       virtual void redraw();
        /// Set the Params variable for the Controller.
        virtual void apply();
        /// Build the dialog.
        virtual void build();
        /// Update dialog before/whilst showing it.
        virtual void update();
+       /// Update the BoundingBox info.
+       void updateBB(string const & filename, string const & bb_inset);
        /// Filter the inputs on callback from xforms
        virtual ButtonPolicy::SMInput input(FL_OBJECT *, long);
 
-       /// Verify that the input is correct. If not disable ok/apply buttons.
-       ButtonPolicy::SMInput checkInput();
+       /// Real GUI implementation.
+       boost::scoped_ptr<FD_graphics_file> file_;
+       ///
+       boost::scoped_ptr<FD_graphics_bbox> bbox_;
+       ///
+       boost::scoped_ptr<FD_graphics_extra> extra_;
 
-       /// Fdesign generated method
-       FD_form_graphics * build_graphics();
+       /// Store the LaTeX names for the rotation origins.
+       std::vector<string> origins_;
 };
 
-
 #endif  // FORMGRAPHICS_H