]> git.lyx.org Git - lyx.git/blob - src/frontends/qt2/QBoxDialog.h
fix math fonts with LyX/Mac
[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 #include "ui/QBoxDialogBase.h"
16
17 namespace lyx {
18 namespace frontend {
19
20 class QBox;
21
22 class QBoxDialog : public QBoxDialogBase {
23         Q_OBJECT
24 public:
25         QBoxDialog(QBox * form);
26 protected slots:
27         virtual void change_adaptor();
28         virtual void innerBoxChanged(const QString &);
29         virtual void typeChanged(int);
30         virtual void restoreClicked();
31 protected:
32         virtual void closeEvent(QCloseEvent * e);
33 private:
34         QBox * form_;
35 };
36
37 } // namespace frontend
38 } // namespace lyx
39
40 #endif // QBOXDIALOG_H