2001-02-20 13:34:05 +00:00
|
|
|
/**
|
|
|
|
* \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,
|
2001-03-05 19:02:40 +00:00
|
|
|
* that the xforms colours have been re-mapped).
|
2001-02-20 13:34:05 +00:00
|
|
|
*/
|
|
|
|
|
|
|
|
/// 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
|