]> git.lyx.org Git - lyx.git/blob - src/frontends/qt3/QGraphicsDialog.h
Extracted from r14281
[lyx.git] / src / frontends / qt3 / 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 Voß
9  *
10  * Full author contact details are available in file CREDITS.
11  */
12
13 #ifndef QGRAPHICSDIALOG_H
14 #define QGRAPHICSDIALOG_H
15
16 #include "ui/QGraphicsDialogBase.h"
17
18 namespace lyx {
19 namespace frontend {
20
21 class QGraphics;
22
23 class QGraphicsDialog : public QGraphicsDialogBase {
24         Q_OBJECT
25 public:
26         QGraphicsDialog(QGraphics * form);
27
28         virtual void show();
29 protected slots:
30         virtual void change_adaptor();
31         virtual void change_bb();
32         virtual void change_WUnit();
33         virtual void browse_clicked();
34         virtual void getBB_clicked();
35         virtual void edit_clicked();
36 protected:
37         virtual void closeEvent(QCloseEvent * e);
38 private:
39         QGraphics * form_;
40 };
41
42 } // namespace frontend
43 } // namespace lyx
44
45 #endif // QGRAPHICSDIALOG_H