]> git.lyx.org Git - lyx.git/blob - src/frontends/xforms/FormVCLog.h
remove defaults stuff, let Qt handle no toolbar
[lyx.git] / src / frontends / xforms / FormVCLog.h
1 // -*- C++ -*-
2 /**
3  * \file FormVCLog.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 FORMVCLOG_H
13 #define FORMVCLOG_H
14
15
16 #include "FormBrowser.h"
17
18 class ControlVCLog;
19
20 /**
21  * This class provides an XForms implementation of the Version Control
22  * log viewer
23  */
24 class FormVCLog : public FormController<ControlVCLog, FormBrowser> {
25 public:
26         ///
27         FormVCLog(Dialog &);
28
29         // Functions accessible to the Controller.
30
31         /// Set the Params variable for the Controller.
32         virtual void apply() {}
33         /// Update dialog before/whilst showing it.
34         virtual void update();
35 };
36
37 #endif // FORMVCLOG_H