]> git.lyx.org Git - lyx.git/blob - src/frontends/qt2/QExternal.h
partial fonts fix. Like Juergen said we really need our own dialog.
[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 #ifdef __GNUG__
16 #pragma interface
17 #endif
18
19 #include "Qt2Base.h"
20
21 class ControlExternal;
22 class QExternalDialog;
23
24 class QExternal
25         : public Qt2CB<ControlExternal, Qt2DB<QExternalDialog> >
26 {
27 public:
28         friend class QExternalDialog;
29
30         QExternal();
31  
32 private:
33         /// Apply changes
34         virtual void apply();
35         /// update
36         virtual void update_contents();
37         /// build the dialog
38         virtual void build_dialog();
39
40         /// get the right helptext
41         string const & helpText();
42 };
43
44 #endif // QEXTERNAL_H