2001-02-12 14:09:09 +00:00
|
|
|
/**
|
|
|
|
* \file FormVCLog.h
|
|
|
|
* Copyright 2001 the LyX Team
|
|
|
|
* Read the file COPYING
|
|
|
|
*
|
|
|
|
* \author John Levon
|
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef FORMVCLOG_H
|
|
|
|
#define FORMVCLOG_H
|
|
|
|
|
2001-04-02 15:12:55 +00:00
|
|
|
#include "KFormBase.h"
|
2001-02-12 14:09:09 +00:00
|
|
|
|
2001-04-02 15:12:55 +00:00
|
|
|
class ControlVCLog;
|
|
|
|
class VCLogDialog;
|
2001-02-12 14:09:09 +00:00
|
|
|
|
2001-04-02 15:12:55 +00:00
|
|
|
class FormVCLog : public KFormBase<ControlVCLog, VCLogDialog> {
|
2001-02-12 14:09:09 +00:00
|
|
|
public:
|
2001-04-02 15:12:55 +00:00
|
|
|
FormVCLog(ControlVCLog & c);
|
2001-02-12 14:09:09 +00:00
|
|
|
|
2001-04-02 15:12:55 +00:00
|
|
|
/// update the dialog
|
2001-02-12 14:09:09 +00:00
|
|
|
virtual void update();
|
2001-04-02 15:12:55 +00:00
|
|
|
|
|
|
|
/// apply
|
|
|
|
virtual void apply() {};
|
|
|
|
|
|
|
|
/// build dialog
|
|
|
|
virtual void build();
|
2001-02-12 14:09:09 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
#endif // FORMVCLOG_H
|