2001-02-12 14:09:09 +00:00
|
|
|
|
/**
|
|
|
|
|
* \file FormCopyright.h
|
|
|
|
|
* Copyright 2001 the LyX Team
|
|
|
|
|
* Read the file COPYING
|
|
|
|
|
*
|
|
|
|
|
* \author J<EFBFBD>rgen Vigna
|
2001-04-02 15:12:55 +00:00
|
|
|
|
* \author John Levon
|
2001-02-12 14:09:09 +00:00
|
|
|
|
*/
|
2000-06-12 11:55:12 +00:00
|
|
|
|
#ifndef FORMCOPYRIGHT_H
|
|
|
|
|
#define FORMCOPYRIGHT_H
|
|
|
|
|
|
2001-04-02 15:12:55 +00:00
|
|
|
|
#include "KFormBase.h"
|
2000-06-12 11:55:12 +00:00
|
|
|
|
|
2001-04-02 15:12:55 +00:00
|
|
|
|
class ControlCopyright;
|
2000-10-17 08:27:35 +00:00
|
|
|
|
class CopyrightDialog;
|
2000-06-12 11:55:12 +00:00
|
|
|
|
|
2001-04-02 15:12:55 +00:00
|
|
|
|
class FormCopyright : public KFormBase<ControlCopyright, CopyrightDialog> {
|
2000-06-12 11:55:12 +00:00
|
|
|
|
public:
|
2001-04-02 15:12:55 +00:00
|
|
|
|
///
|
|
|
|
|
FormCopyright(ControlCopyright & c);
|
2000-06-12 11:55:12 +00:00
|
|
|
|
|
|
|
|
|
private:
|
2001-04-02 15:12:55 +00:00
|
|
|
|
/// build the dialog
|
|
|
|
|
virtual void build();
|
|
|
|
|
/// not used
|
|
|
|
|
virtual void apply() {}
|
|
|
|
|
/// not used
|
|
|
|
|
void update() {}
|
2000-06-12 11:55:12 +00:00
|
|
|
|
};
|
|
|
|
|
|
2001-02-12 14:09:09 +00:00
|
|
|
|
#endif // FORMCOPYRIGHT_H
|