]> git.lyx.org Git - lyx.git/blob - src/frontends/qt2/QBranchDialog.h
fix math fonts with LyX/Mac
[lyx.git] / src / frontends / qt2 / QBranchDialog.h
1 // -*- C++ -*-
2 /**
3  * \file QBranchDialog.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 QBRANCHDIALOG_H
13 #define QBRANCHDIALOG_H
14
15 #include "ui/QBranchDialogBase.h"
16
17 namespace lyx {
18 namespace frontend {
19
20 class QBranch;
21
22 class QBranchDialog : public QBranchDialogBase {
23         Q_OBJECT
24 public:
25         QBranchDialog(QBranch * form);
26 protected slots:
27         virtual void change_adaptor();
28 protected:
29         virtual void closeEvent(QCloseEvent * e);
30 private:
31         QBranch * form_;
32 };
33
34 } // namespace frontend
35 } // namespace lyx
36
37 #endif // QBRANCHDIALOG_H