]> git.lyx.org Git - lyx.git/blobdiff - src/frontends/qt2/QGraphicsDialog.h
Some string(widget->text()) fixes. Weirdness
[lyx.git] / src / frontends / qt2 / QGraphicsDialog.h
index ad71d99807423e15fbba479a72a15c02b81a34fd..b7c60d0ba58eaca94f1f4dc0a1286c1fbdc14e70 100644 (file)
@@ -1,34 +1,40 @@
+// -*- C++ -*-
 /**
  * \file QGraphicsDialog.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 QGRAPHICSDIALOG_H
 #define QGRAPHICSDIALOG_H
 
-#include <config.h>
+#ifdef __GNUG__
+#pragma interface
+#endif
 
 #include "ui/QGraphicsDialogBase.h"
 
 class QGraphics;
 
-class QGraphicsDialog : public QGraphicsDialogBase
-{ Q_OBJECT
-
+class QGraphicsDialog : public QGraphicsDialogBase {
+       Q_OBJECT
 public:
        QGraphicsDialog(QGraphics * form);
 
+       virtual void show();
 protected slots:
        virtual void change_adaptor();
+       virtual void change_bb();
+       virtual void change_WUnit();
        virtual void browse_clicked();
-       virtual void get_clicked();
-
+       virtual void getBB_clicked();
 protected:
        virtual void closeEvent(QCloseEvent * e);
-
 private:
        QGraphics * form_;
 };