]> git.lyx.org Git - lyx.git/blobdiff - src/frontends/xforms/FormGraphics.h
remove defaults stuff, let Qt handle no toolbar
[lyx.git] / src / frontends / xforms / FormGraphics.h
index 6ae60f3244c17f8ebe8e677f971bcd5b6ad352d3..06a3f7201fa9c224182e01bd3dcf9bdd5cdf06b8 100644 (file)
@@ -1,22 +1,20 @@
 // -*- C++ -*-
 /**
  * \file FormGraphics.h
- * Copyright 2000-2001 the LyX Team
- * Read the file COPYING
+ * This file is part of LyX, the document processor.
+ * Licence details can be found in the file COPYING.
  *
- * \author Baruch Even, baruch.even@writeme.com
- * \author Herbert Voss, voss@lyx.org
+ * \author Baruch Even
+ * \author Herbert Voss
+ *
+ * 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>
 
 class ControlGraphics;
 struct FD_graphics;
 struct FD_graphics_file;
-struct FD_graphics_lyxview;
-struct FD_graphics_size;
 struct FD_graphics_bbox;
-struct FD_graphics_special;
+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(ControlGraphics &, Dialogs &);
+       FormGraphics(Dialog &);
 private:
 
        /** Redraw the form (on receipt of a Signal indicating, for example,
@@ -55,13 +52,9 @@ private:
        /// Real GUI implementation.
        boost::scoped_ptr<FD_graphics_file> file_;
        ///
-       boost::scoped_ptr<FD_graphics_lyxview> lyxview_;
-       ///
-       boost::scoped_ptr<FD_graphics_size> size_;
-       ///
        boost::scoped_ptr<FD_graphics_bbox> bbox_;
        ///
-       boost::scoped_ptr<FD_graphics_special> special_;
+       boost::scoped_ptr<FD_graphics_extra> extra_;
 
        /// Store the LaTeX names for the rotation origins.
        std::vector<string> origins_;