]> git.lyx.org Git - lyx.git/blob - src/frontends/qt2/QCharacterDialog.h
ws change
[lyx.git] / src / frontends / qt2 / QCharacterDialog.h
1 /**
2  * \file QCharacterDialog.h
3  * Copyright 2001 the LyX Team
4  * see the file COPYING
5  *
6  * \author Edwin Leuven
7  * \author John Levon <moz@compsoc.man.ac.uk>
8  */
9
10 #ifndef QCHARACTERDIALOG_H
11 #define QCHARACTERDIALOG_H
12
13 #include <config.h>
14
15 #include "ui/QCharacterDialogBase.h"
16 #include "QCharacter.h"
17
18 #include <qevent.h>
19 #include <qcheckbox.h>
20 #include <qcombobox.h>
21
22 class LyXFont;
23
24 class QCharacterDialog : public QCharacterDialogBase
25 { Q_OBJECT
26
27 public:
28         QCharacterDialog(QCharacter * form);
29
30 protected:
31         void closeEvent(QCloseEvent * e);
32
33 private:
34         QCharacter * form_;
35
36 protected slots:
37         void change_adaptor();
38 };
39
40 #endif // QCHARACTERDIALOG_H