lyx_mirror/src/frontends/xforms/FormParagraph.h

74 lines
1.4 KiB
C
Raw Normal View History

// -*- C++ -*-
/* This file is part of
* ======================================================
*
* LyX, The Document Processor
*
* Copyright (C) 2000 The LyX Team.
*
* @author J<EFBFBD>rgen Vigna
*
*======================================================*/
#ifndef FORM_PARAGRAPH_H
#define FORM_PARAGRAPH_H
#include "FormBase.h"
#ifdef __GNUG_
#pragma interface
#endif
struct FD_form_tabbed_paragraph;
struct FD_form_paragraph_general;
struct FD_form_paragraph_extra;
/** This class provides an XForms implementation of the FormParagraph Popup.
*/
class FormParagraph : public FormBase {
public:
///
FormParagraph(LyXView *, Dialogs *);
///
~FormParagraph();
private:
/// Build the popup
void build();
/// Apply from popup
void apply();
/// Update the popup.
void update();
/// Filter the inputs on callback from xforms
virtual bool input(FL_OBJECT * ob, long);
///
virtual FL_FORM * form() const;
///
void general_update();
///
void extra_update();
///
void general_apply();
///
void extra_apply();
/// Typedefinitions from the fdesign produced Header file
FD_form_tabbed_paragraph * build_tabbed_paragraph();
///
FD_form_paragraph_general * build_paragraph_general();
///
FD_form_paragraph_extra * build_paragraph_extra();
/// Real GUI implementation.
FD_form_tabbed_paragraph * dialog_;
///
FD_form_paragraph_general * general_;
///
FD_form_paragraph_extra * extra_;
};
#endif