]> git.lyx.org Git - lyx.git/blob - src/frontends/qt2/QERT.h
forgot cvs add ...
[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
18 class QERT :
19         public Qt2CB<ControlERT, Qt2DB<QERTDialog> > 
20 {
21         friend class QERTDialog;
22  
23 public: 
24         QERT(ControlERT &);
25
26 private: 
27         /// Apply changes
28         virtual void apply();
29         /// update
30         virtual void update_contents();
31         /// build the dialog
32         virtual void build_dialog();
33 };
34
35 #endif // QERT_H