]> git.lyx.org Git - lyx.git/blob - src/frontends/xforms/FormVCLog.h
Move LaTeX and VC logs to GUI-I on xforms
[lyx.git] / src / frontends / xforms / FormVCLog.h
1 // -*- C++ -*-
2 /*
3  * FormVCLog.h
4  *
5  * (C) 2001 LyX Team
6  * John Levon, moz@compsoc.man.ac.uk
7  */
8
9 #ifndef FORMVCLOG_H
10 #define FORMVCLOG_H
11
12 #include "FormBase.h"
13 #include "FormBrowser.h"
14
15 #ifdef __GNUG__
16 #pragma interface
17 #endif
18
19 class LyXView;
20 class Dialogs;
21
22 /**
23  * This class provides an XForms implementation of the Version Control
24  * log viewer
25  */
26 class FormVCLog : public FormBrowser {
27 public:
28         FormVCLog(LyXView *, Dialogs *);
29         ~FormVCLog();
30
31 private:
32         /// Update the dialog.
33         virtual void update();
34 };
35
36 #endif