]> git.lyx.org Git - lyx.git/blob - src/frontends/qt2/QERT.h
fix tooltips in toolbar
[lyx.git] / src / frontends / qt2 / QERT.h
1 // -*- C++ -*-
2 /**
3  * \file QERT.h
4  * Copyright 2001 the LyX Team
5  * Read the file COPYING
6  *
7  * \author John Levon <moz@compsoc.man.ac.uk>
8  */
9
10 #ifndef QERT_H
11 #define QERT_H
12
13 #include "Qt2Base.h"
14
15 class ControlERT;
16 class QERTDialog;
17 class Dialogs;
18
19 class QERT :
20         public Qt2CB<ControlERT, Qt2DB<QERTDialog> >
21 {
22         friend class QERTDialog;
23
24 public:
25         QERT(ControlERT &, Dialogs &);
26
27 private:
28         /// Apply changes
29         virtual void apply();
30         /// update
31         virtual void update_contents();
32         /// build the dialog
33         virtual void build_dialog();
34 };
35
36 #endif // QERT_H