mirror of
https://git.lyx.org/repos/lyx.git
synced 2024-11-11 21:49:51 +00:00
ba01a232ea
git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@1110 a592a061-630c-0410-9148-cb99ea01b6c8
51 lines
1.1 KiB
C++
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
|
|
|