lyx_mirror/src/frontends/xforms/FormPreamble.h

50 lines
1.0 KiB
C
Raw Normal View History

/**
* \file FormPreamble.h
* Copyright 2001 The LyX Team.
* See the file COPYING.
*
* \author Edwin Leuven, leuven@fee.uva.nl
*/
#ifndef FORMPREAMBLE_H
#define FORMPREAMBLE_H
#include "FormBase.h"
struct FD_form_preamble;
/** This class provides an XForms implementation of the FormPreamble Dialog.
*/
class FormPreamble : public FormBaseBD {
public:
///
FormPreamble(LyXView *, Dialogs *);
///
~FormPreamble();
private:
/** Redraw the form (on receipt of a Signal indicating, for example,
* that the xform colours have been re-mapped).
*/
/// Filter the inputs
// virtual bool input(FL_OBJECT *, long);
/// Build the popup
virtual void build();
/// Apply from popup
virtual void apply();
/// Update the popup.
virtual void update();
///
virtual FL_FORM * form() const;
/// Typedefinitions from the fdesign produced Header file
FD_form_preamble * build_preamble();
/// Real GUI implementation.
FD_form_preamble * dialog_;
};
#endif