]> git.lyx.org Git - lyx.git/blob - src/frontends/qt2/QGraphicsDialog.h
Some string(widget->text()) fixes. Weirdness
[lyx.git] / src / frontends / qt2 / QGraphicsDialog.h
1 // -*- C++ -*-
2 /**
3  * \file QGraphicsDialog.h
4  * This file is part of LyX, the document processor.
5  * Licence details can be found in the file COPYING.
6  *
7  * \author John Levon
8  * \author Herbert Voss
9  *
10  * Full author contact details are available in file CREDITS
11  */
12
13 #ifndef QGRAPHICSDIALOG_H
14 #define QGRAPHICSDIALOG_H
15
16 #ifdef __GNUG__
17 #pragma interface
18 #endif
19
20 #include "ui/QGraphicsDialogBase.h"
21
22 class QGraphics;
23
24 class QGraphicsDialog : public QGraphicsDialogBase {
25         Q_OBJECT
26 public:
27         QGraphicsDialog(QGraphics * form);
28
29         virtual void show();
30 protected slots:
31         virtual void change_adaptor();
32         virtual void change_bb();
33         virtual void change_WUnit();
34         virtual void browse_clicked();
35         virtual void getBB_clicked();
36 protected:
37         virtual void closeEvent(QCloseEvent * e);
38 private:
39         QGraphics * form_;
40 };
41
42 #endif // QGRAPHICSDIALOG_H