]> git.lyx.org Git - lyx.git/blob - src/frontends/qt2/QCharacterDialog.h
dont use pragma impementation and interface anymore
[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
17 #include "QCharacter.h"
18 #include "ui/QCharacterDialogBase.h"
19
20 #include <qevent.h>
21 #include <qcheckbox.h>
22 #include <qcombobox.h>
23
24 class LyXFont;
25
26 class QCharacterDialog : public QCharacterDialogBase {
27         Q_OBJECT
28 public:
29         QCharacterDialog(QCharacter * form);
30 protected:
31         void closeEvent(QCloseEvent * e);
32 private:
33         QCharacter * form_;
34 protected slots:
35         void change_adaptor();
36 };
37
38 #endif // QCHARACTERDIALOG_H