]> git.lyx.org Git - features.git/blob - src/frontends/kde/FormLog.h
Update to MVC. Ref,Toc and citation don't work at all currently.
[features.git] / src / frontends / kde / FormLog.h
1 /**
2  * \file FormLog.h
3  * Copyright 2001 the LyX Team
4  * Read the file COPYING
5  *
6  * \author John Levon
7  */
8
9 #ifndef FORMLOG_H
10 #define FORMLOG_H
11
12 #include "KFormBase.h"
13
14 class ControlLog;
15 class LogDialog;
16
17 class FormLog : public KFormBase<ControlLog, LogDialog> {
18 public: 
19         FormLog(ControlLog & c); 
20
21         /// update the dialog
22         virtual void update();
23
24         /// apply
25         virtual void apply() {};
26
27         /// build dialog
28         virtual void build(); 
29 };
30
31 #endif // FORMLOG_H