]> 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 6ae60f3244c17f8ebe8e677f971bcd5b6ad352d3..3facf82c76052c2adc2f4cba734437637103d22a 100644 (file)
@@ -1,11 +1,13 @@
 // -*- 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
 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> > {
 public:
        ///
-       FormGraphics(ControlGraphics &, Dialogs &);
+       FormGraphics();
 private:
 
        /** Redraw the form (on receipt of a Signal indicating, for example,
@@ -55,13 +55,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_;