lyx_mirror/src/frontends/xforms/FormCopyright.h
2000-10-13 05:57:05 +00:00

51 lines
1.1 KiB
C++

// -*- 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
#include "FormBase.h"
#ifdef __GNUG__
#pragma interface
#endif
struct FD_form_copyright;
/** This class provides an XForms implementation of the FormCopyright Dialog.
*/
class FormCopyright : public FormBaseBI {
public:
/// #FormCopyright x(LyXFunc ..., Dialogs ...);#
FormCopyright(LyXView *, Dialogs *);
///
~FormCopyright();
private:
/// Build the dialog
virtual void build();
/// Pointer to the actual instantiation of the xform's form
virtual FL_FORM * form() const;
/// Fdesign generated method
FD_form_copyright * build_copyright();
/// Real GUI implementation.
FD_form_copyright * dialog_;
};
#endif