2001-03-22 11:24:36 +00:00
|
|
|
/**
|
|
|
|
* \file FormCopyright.h
|
2000-06-12 11:55:12 +00:00
|
|
|
* This file is part of
|
|
|
|
* ======================================================
|
|
|
|
*
|
|
|
|
* LyX, The Document Processor
|
|
|
|
*
|
|
|
|
* Copyright 1995 Matthias Ettrich
|
2001-03-22 11:24:36 +00:00
|
|
|
* Copyright 1995-2001 The LyX Team.
|
2000-06-12 11:55:12 +00:00
|
|
|
*
|
2001-03-22 11:24:36 +00:00
|
|
|
* This file Copyright 2000-2001
|
2000-06-12 11:55:12 +00:00
|
|
|
* Allan Rae
|
|
|
|
* ======================================================
|
2001-03-22 11:24:36 +00:00
|
|
|
*
|
|
|
|
* \author Allan Rae
|
|
|
|
* \author Angus Leeming, a.leeming@.ac.uk
|
2000-06-12 11:55:12 +00:00
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef FORMCOPYRIGHT_H
|
|
|
|
#define FORMCOPYRIGHT_H
|
|
|
|
|
2000-07-27 10:26:38 +00:00
|
|
|
#ifdef __GNUG__
|
|
|
|
#pragma interface
|
|
|
|
#endif
|
2000-06-12 11:55:12 +00:00
|
|
|
|
2001-03-22 11:24:36 +00:00
|
|
|
#include "FormBase.h"
|
2001-03-15 13:37:04 +00:00
|
|
|
|
2001-03-22 11:24:36 +00:00
|
|
|
class ControlCopyright;
|
2000-07-28 04:59:45 +00:00
|
|
|
struct FD_form_copyright;
|
2000-06-12 11:55:12 +00:00
|
|
|
|
|
|
|
/** This class provides an XForms implementation of the FormCopyright Dialog.
|
|
|
|
*/
|
2001-03-22 11:24:36 +00:00
|
|
|
class FormCopyright
|
|
|
|
: public FormCB<ControlCopyright, FormDB<FD_form_copyright> > {
|
2000-06-12 11:55:12 +00:00
|
|
|
public:
|
2001-03-22 11:24:36 +00:00
|
|
|
///
|
|
|
|
FormCopyright(ControlCopyright &);
|
|
|
|
|
2000-06-12 11:55:12 +00:00
|
|
|
private:
|
2001-03-22 11:24:36 +00:00
|
|
|
/// not needed.
|
|
|
|
virtual void apply() {}
|
2000-06-12 11:55:12 +00:00
|
|
|
/// Build the dialog
|
2000-10-02 00:10:25 +00:00
|
|
|
virtual void build();
|
2001-03-26 15:25:37 +00:00
|
|
|
/// not needed.
|
|
|
|
virtual void update() {}
|
2001-03-22 11:24:36 +00:00
|
|
|
|
2000-09-27 05:40:29 +00:00
|
|
|
/// Fdesign generated method
|
2000-06-12 11:55:12 +00:00
|
|
|
FD_form_copyright * build_copyright();
|
|
|
|
};
|
|
|
|
|
2001-03-22 11:24:36 +00:00
|
|
|
#endif // FORMCOPYRIGHT_H
|