]> git.lyx.org Git - lyx.git/blobdiff - src/frontends/xforms/FormVCLog.h
Yet more dialog tweaking from Rob.
[lyx.git] / src / frontends / xforms / FormVCLog.h
index 56df0b2ee5791f9d0b430cc09dc65963483b0766..d7c40b1426f3d8f17427cfd87d4e821556284092 100644 (file)
@@ -1,35 +1,40 @@
 // -*- C++ -*-
-/*
- * FormVCLog.h
+/**
+ * \file FormVCLog.h
+ * This file is part of LyX, the document processor.
+ * Licence details can be found in the file COPYING.
+ *
+ * \author John Levon
  *
- * (C) 2001 LyX Team
- * John Levon, moz@compsoc.man.ac.uk
+ * Full author contact details are available in file CREDITS
  */
 
 #ifndef FORMVCLOG_H
 #define FORMVCLOG_H
 
-#include "FormBaseDeprecated.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 *);
-private:
-       /// Update the dialog.
+       FormVCLog();
+
+       // Functions accessible to the Controller.
+
+       /// Set the Params variable for the Controller.
+       virtual void apply() {}
+       /// Update dialog before/whilst showing it.
        virtual void update();
 };
 
-#endif
+#endif // FORMVCLOG_H