]> git.lyx.org Git - lyx.git/blob - src/frontends/qt2/QPrefsDialog.h
Add skeleton prefs controller and dialog to allow further work
[lyx.git] / src / frontends / qt2 / QPrefsDialog.h
1 // -*- C++ -*-
2 /**
3  * \file QPrefsDialog.h
4  * This file is part of LyX, the document processor.
5  * Licence details can be found in the file COPYING.
6  *
7  * \author John Levon
8  *
9  * Full author contact details are available in file CREDITS
10  */
11
12 #ifndef QPREFSDIALOG_H
13 #define QPREFSDIALOG_H
14
15 #ifdef __GNUG__
16 #pragma interface
17 #endif
18
19 #include "ui/QPrefsDialogBase.h"
20
21 class QPrefs;
22
23 class QPrefsDialog : public QPrefsDialogBase {
24         Q_OBJECT
25 public:
26         friend class QPrefs;
27
28         QPrefsDialog(QPrefs *);
29  
30         ~QPrefsDialog();
31
32 protected:
33         void closeEvent(QCloseEvent * e);
34  
35 private:
36         QPrefs * form_;
37 };
38
39 #endif // PREFSDIALOG_H