]> git.lyx.org Git - lyx.git/blob - src/frontends/qt2/QBoxDialog.h
Minipage is no more (long live the box inset)
[lyx.git] / src / frontends / qt2 / QBoxDialog.h
1 // -*- C++ -*-
2 /**
3  * \file QBoxDialog.h
4  * This file is part of LyX, the document processor.
5  * Licence details can be found in the file COPYING.
6  *
7   * \author Jürgen Spitzmüller
8  *
9  * Full author contact details are available in file CREDITS.
10  */
11
12 #ifndef QBOXDIALOG_H
13 #define QBOXDIALOG_H
14
15
16 #include "ui/QBoxDialogBase.h"
17
18 class QBox;
19
20 class QBoxDialog : public QBoxDialogBase {
21         Q_OBJECT
22 public:
23         QBoxDialog(QBox * form);
24 protected slots:
25         virtual void change_adaptor();
26         virtual void innerBoxChanged(const QString &);
27         virtual void typeChanged(int);
28         virtual void restoreClicked();
29 protected:
30         virtual void closeEvent(QCloseEvent * e);
31 private:
32         QBox * form_;
33 };
34
35 #endif // QBOXDIALOG_H