]> git.lyx.org Git - lyx.git/blob - src/frontends/qt2/QWrap.h
Joao latest bits
[lyx.git] / src / frontends / qt2 / QWrap.h
1 // -*- C++ -*-
2 /**
3  * \file QWrap.h
4  * This file is part of LyX, the document processor.
5  * Licence details can be found in the file COPYING.
6  *
7  * \author Jürgen Spitzmüller
8  *
9  * Full author contact details are available in file CREDITS.
10  */
11
12 #ifndef QWRAP_H
13 #define QWRAP_H
14
15
16 #include "QDialogView.h"
17
18
19 class ControlWrap;
20 class QWrapDialog;
21
22
23 class QWrap : public QController<ControlWrap, QView<QWrapDialog> > {
24 public:
25         friend class QWrapDialog;
26
27         QWrap(Dialog &);
28 private:
29         /// Apply changes
30         virtual void apply();
31         /// update
32         virtual void update_contents();
33         /// build the dialog
34         virtual void build_dialog();
35 };
36
37 #endif // QWRAP_H