2000-06-12 11:55:12 +00:00
|
|
|
// -*- C++ -*-
|
|
|
|
/* FormCopyright.h
|
|
|
|
* FormCopyright Interface Class
|
|
|
|
* This file is part of
|
|
|
|
* ======================================================
|
|
|
|
*
|
|
|
|
* LyX, The Document Processor
|
|
|
|
*
|
|
|
|
* Copyright 1995 Matthias Ettrich
|
|
|
|
* Copyright 1995-2000 The LyX Team.
|
|
|
|
*
|
|
|
|
* This file Copyright 2000
|
|
|
|
* Allan Rae
|
|
|
|
* ======================================================
|
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef FORMCOPYRIGHT_H
|
|
|
|
#define FORMCOPYRIGHT_H
|
|
|
|
|
2000-09-27 05:40:29 +00:00
|
|
|
#include "FormBase.h"
|
2000-07-27 10:26:38 +00:00
|
|
|
|
|
|
|
#ifdef __GNUG__
|
|
|
|
#pragma interface
|
|
|
|
#endif
|
2000-06-12 11:55:12 +00:00
|
|
|
|
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.
|
|
|
|
*/
|
2000-10-13 05:57:05 +00:00
|
|
|
class FormCopyright : public FormBaseBI {
|
2000-06-12 11:55:12 +00:00
|
|
|
public:
|
|
|
|
/// #FormCopyright x(LyXFunc ..., Dialogs ...);#
|
|
|
|
FormCopyright(LyXView *, Dialogs *);
|
|
|
|
///
|
|
|
|
~FormCopyright();
|
|
|
|
|
|
|
|
private:
|
|
|
|
/// Build the dialog
|
2000-10-02 00:10:25 +00:00
|
|
|
virtual void build();
|
2001-03-05 19:02:40 +00:00
|
|
|
/// Pointer to the actual instantiation of the xforms form
|
2000-10-03 05:53:25 +00:00
|
|
|
virtual FL_FORM * form() const;
|
2000-09-27 05:40:29 +00:00
|
|
|
/// Fdesign generated method
|
2000-06-12 11:55:12 +00:00
|
|
|
FD_form_copyright * build_copyright();
|
|
|
|
|
|
|
|
/// Real GUI implementation.
|
|
|
|
FD_form_copyright * dialog_;
|
|
|
|
};
|
|
|
|
|
|
|
|
#endif
|
|
|
|
|