]> git.lyx.org Git - lyx.git/blobdiff - src/frontends/xforms/FormVCLog.h
Bugfixes: checkboxes to radiobuttons (from J�rgen S) and remove a little
[lyx.git] / src / frontends / xforms / FormVCLog.h
index 345c8569ecf77e9e61df7a990d08bd2abb433c4b..cca629d009f60fad0376e68a6971f6b4dd14b6ae 100644 (file)
@@ -9,28 +9,29 @@
 #ifndef FORMVCLOG_H
 #define FORMVCLOG_H
 
-#include "FormBase.h"
-#include "FormBrowser.h"
-
 #ifdef __GNUG__
 #pragma interface
 #endif
 
-class LyXView;
-class Dialogs;
+#include "FormBrowser.h"
+
+class ControlVCLog;
 
 /**
  * This class provides an XForms implementation of the Version Control
  * log viewer
  */
-class FormVCLog : public FormBrowser {
+class FormVCLog : public FormCB<ControlVCLog, FormBrowser> {
 public:
-       FormVCLog(LyXView *, Dialogs *);
-       ~FormVCLog();
+       ///
+       FormVCLog(ControlVCLog &);
+
+       // Functions accessible to the Controller.
 
-private:
-       /// Update the dialog.
+       /// Set the Params variable for the Controller.
+       virtual void apply() {}
+       /// Update dialog before/whilst showing it.
        virtual void update();
 };
 
-#endif
+#endif // FORMVCLOG_H