]> git.lyx.org Git - lyx.git/blob - src/frontends/qt2/QExternal.h
dont use pragma impementation and interface anymore
[lyx.git] / src / frontends / qt2 / QExternal.h
1 // -*- C++ -*-
2 /**
3  * \file QExternal.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 QEXTERNAL_H
13 #define QEXTERNAL_H
14
15
16 #include "Qt2Base.h"
17
18 class ControlExternal;
19 class QExternalDialog;
20
21 class QExternal
22         : public Qt2CB<ControlExternal, Qt2DB<QExternalDialog> >
23 {
24 public:
25         friend class QExternalDialog;
26
27         QExternal();
28
29 private:
30         /// Apply changes
31         virtual void apply();
32         /// update
33         virtual void update_contents();
34         /// build the dialog
35         virtual void build_dialog();
36
37         /// get the right helptext
38         string const & helpText();
39 };
40
41 #endif // QEXTERNAL_H