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