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