]> git.lyx.org Git - lyx.git/blobdiff - src/frontends/qt2/QGraphics.h
Some string(widget->text()) fixes. Weirdness
[lyx.git] / src / frontends / qt2 / QGraphics.h
index 75253a7de86fd47b413716928a9ddcb3524dfb1c..70cb175a1751dbc648770d991c1ff35fc3b055ef 100644 (file)
@@ -1,10 +1,13 @@
 // -*- C++ -*-
 /**
  * \file QGraphics.h
- * Copyright 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 John Levon <moz@compsoc.man.ac.uk>
+ * \author John Levon
+ * \author Herbert Voss
+ *
+ * Full author contact details are available in file CREDITS
  */
 
 #ifndef QGRAPHICS_H
 #pragma interface
 #endif
 
+#include "insets/insetgraphics.h"
 #include "Qt2Base.h"
-#include "insets/insetgraphics.h" 
 
 class ControlGraphics;
 class QGraphicsDialog;
 
 ///
 class QGraphics
-       : public Qt2CB<ControlGraphics, Qt2DB<QGraphicsDialog> > 
+       : public Qt2CB<ControlGraphics, Qt2DB<QGraphicsDialog> >
 {
 public:
        ///
        friend class QGraphicsDialog;
        ///
-       QGraphics(ControlGraphics &);
-
+       QGraphics();
 protected:
        virtual bool isValid();
 private:
        /// Apply changes
        virtual void apply();
@@ -40,9 +41,12 @@ private:
        virtual void update_contents();
        /// build the dialog
        virtual void build_dialog();
+       /// get bounding box from file
+       void getBB();
+
+       /// Store the LaTeX names for the rotation origins.
+       std::vector<string> origin_ltx;
 
-       /// browse for a file
-       void browse(); 
 };
 
 #endif // QGRAPHICS_H