]> git.lyx.org Git - lyx.git/blob - src/frontends/qt2/QCharacterDialog.h
some tabular fixes for the problems reported by Helge
[lyx.git] / src / frontends / qt2 / QCharacterDialog.h
1 // -*- C++ -*-
2 /**
3  * \file QCharacterDialog.h
4  * This file is part of LyX, the document processor.
5  * Licence details can be found in the file COPYING.
6  *
7  * \author Edwin Leuven
8  * \author John Levon
9  *
10  * Full author contact details are available in file CREDITS.
11  */
12
13 #ifndef QCHARACTERDIALOG_H
14 #define QCHARACTERDIALOG_H
15
16 #include "QCharacter.h"
17 #include "ui/QCharacterDialogBase.h"
18
19 class LyXFont;
20
21 namespace lyx {
22 namespace frontend {
23
24 class QCharacterDialog : public QCharacterDialogBase {
25         Q_OBJECT
26 public:
27         QCharacterDialog(QCharacter * form);
28 protected:
29         void closeEvent(QCloseEvent * e);
30 private:
31         QCharacter * form_;
32 protected slots:
33         void change_adaptor();
34 };
35
36 } // namespace frontend
37 } // namespace lyx
38
39 #endif // QCHARACTERDIALOG_H