]> git.lyx.org Git - lyx.git/blob - src/frontends/qt2/QGraphicsDialog.h
Lots and lots of little trivial bits.
[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  *
9  * Full author contact details are available in file CREDITS
10  */
11
12 #ifndef QGRAPHICSDIALOG_H
13 #define QGRAPHICSDIALOG_H
14
15 #ifdef __GNUG__
16 #pragma interface
17 #endif
18
19 #include "ui/QGraphicsDialogBase.h"
20
21 class QGraphics;
22
23 class QGraphicsDialog : public QGraphicsDialogBase
24 { Q_OBJECT
25
26 public:
27         QGraphicsDialog(QGraphics * form);
28
29         virtual void show();
30
31 protected slots:
32         virtual void change_adaptor();
33         virtual void browse_clicked();
34         virtual void get_clicked();
35
36 protected:
37         virtual void closeEvent(QCloseEvent * e);
38
39 private:
40         QGraphics * form_;
41 };
42
43 #endif // QGRAPHICSDIALOG_H