]> git.lyx.org Git - lyx.git/blob - src/frontends/qt2/QPreambleDialog.h
better selection and scrolling behaviour
[lyx.git] / src / frontends / qt2 / QPreambleDialog.h
1 // -*- C++ -*-
2 /**
3  * \file QPreambleDialog.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 QPreambleDIAPreamble_H
13 #define QPreambleDIAPreamble_H
14
15 #ifdef __GNUG__
16 #pragma interface
17 #endif
18
19 #include "ui/QPreambleDialogBase.h"
20
21 class QPreamble;
22
23 class QPreambleDialog : public QPreambleDialogBase {
24         Q_OBJECT
25 public:
26         QPreambleDialog(QPreamble * form);
27 protected slots:
28         virtual void editClicked();
29         virtual void change_adaptor();
30 protected:
31         virtual void closeEvent(QCloseEvent * e);
32 private:
33         QPreamble * form_;
34 };
35
36 #endif // QPreambleDIAPreamble_H