]> git.lyx.org Git - lyx.git/blobdiff - src/frontends/qt4/GuiGraphics.h
* a configuration value for the mouse wheel scrolling speed:
[lyx.git] / src / frontends / qt4 / GuiGraphics.h
index 3e9908b06d242dc0139c1ec31f51b494d8cf4afb..a80074e70b465abee079bcb3b2817476059cb41a 100644 (file)
@@ -6,6 +6,8 @@
  *
  * \author John Levon
  * \author Herbert Voß
+ * \author Baruch Even
+ * \author Angus Leeming
  *
  * Full author contact details are available in file CREDITS.
  */
 #define GUIGRAPHICS_H
 
 #include "GuiDialog.h"
-#include "ControlGraphics.h"
 #include "ui_GraphicsUi.h"
 
+#include "support/docstring.h"
+#include "insets/InsetGraphics.h"
+
 #include <vector>
 
 class QString;
 
 namespace lyx {
+
+class InsetGraphics;
+class InsetGraphicsParams;
+
 namespace frontend {
 
-class GuiGraphicsDialog : public GuiDialog, public Ui::GraphicsUi
+class GuiGraphics : public GuiDialog, public Ui::GraphicsUi
 {
        Q_OBJECT
+
 public:
-       GuiGraphicsDialog(LyXView & lv);
+       GuiGraphics(GuiView & lv);
        void setAutoText();
+
 private Q_SLOTS:
        void change_adaptor();
        void change_bb();
@@ -41,10 +51,9 @@ private Q_SLOTS:
        void on_WidthCB_toggled(bool);
        void on_HeightCB_toggled(bool);
        void on_angle_textChanged(const QString &);
+
 private:
        void closeEvent(QCloseEvent * e);
-       /// parent controller
-       ControlGraphics & controller();
        bool isValid();
        /// Apply changes
        void applyView();
@@ -55,8 +64,35 @@ private:
 
        /// Store the LaTeX names for the rotation origins.
        std::vector<std::string> origin_ltx;
+       ///
+       bool initialiseParams(std::string const & data);
+       /// clean-up on hide.
+       void clearParams();
+       /// clean-up on hide.
+       void dispatchParams();
+       ///
+       bool isBufferDependent() const { return true; }
+
+       /// Browse for a file
+       docstring const browse(docstring const &) const;
+       /// Read the Bounding Box from a eps or ps-file
+       std::string const readBB(std::string const & file);
+       /// Control the bb
+       bool bbChanged;
+       /// test if file exist
+       bool isFilenameValid(std::string const & fname) const;
+       /// edit file
+       void editGraphics();
+
+private:
+       ///
+       InsetGraphicsParams params_;
 };
 
+
+/// get the units for the bounding box
+std::vector<std::string> const getBBUnits();
+
 } // namespace frontend
 } // namespace lyx