2001-02-06 17:41:42 +00:00
|
|
|
// -*- C++ -*-
|
2002-03-11 17:00:41 +00:00
|
|
|
/**
|
|
|
|
* \file FormVCLog.h
|
|
|
|
* Copyright 2001 the LyX Team
|
|
|
|
* Read the file COPYING
|
2001-02-06 17:41:42 +00:00
|
|
|
*
|
2002-03-11 17:00:41 +00:00
|
|
|
* \author John Levon, moz@compsoc.man.ac.uk
|
2001-02-06 17:41:42 +00:00
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef FORMVCLOG_H
|
|
|
|
#define FORMVCLOG_H
|
|
|
|
|
|
|
|
#ifdef __GNUG__
|
|
|
|
#pragma interface
|
|
|
|
#endif
|
|
|
|
|
2001-03-20 10:14:03 +00:00
|
|
|
#include "FormBrowser.h"
|
|
|
|
|
|
|
|
class ControlVCLog;
|
2001-02-06 17:41:42 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
* This class provides an XForms implementation of the Version Control
|
|
|
|
* log viewer
|
|
|
|
*/
|
2001-03-20 10:14:03 +00:00
|
|
|
class FormVCLog : public FormCB<ControlVCLog, FormBrowser> {
|
2001-02-06 17:41:42 +00:00
|
|
|
public:
|
2001-03-15 13:37:04 +00:00
|
|
|
///
|
2002-07-02 19:23:10 +00:00
|
|
|
FormVCLog(ControlVCLog &, Dialogs &);
|
2001-03-20 10:14:03 +00:00
|
|
|
|
|
|
|
// Functions accessible to the Controller.
|
|
|
|
|
|
|
|
/// Set the Params variable for the Controller.
|
|
|
|
virtual void apply() {}
|
|
|
|
/// Update dialog before/whilst showing it.
|
2001-02-06 17:41:42 +00:00
|
|
|
virtual void update();
|
|
|
|
};
|
|
|
|
|
2001-03-20 10:14:03 +00:00
|
|
|
#endif // FORMVCLOG_H
|