mirror of
https://git.lyx.org/repos/lyx.git
synced 2024-11-11 13:46:43 +00:00
524a23ba3a
git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@1783 a592a061-630c-0410-9148-cb99ea01b6c8
95 lines
2.1 KiB
C++
95 lines
2.1 KiB
C++
// -*- C++ -*-
|
|
/* This file is part of
|
|
* ======================================================
|
|
*
|
|
* LyX, The Document Processor
|
|
*
|
|
* Copyright (C) 2000 The LyX Team.
|
|
*
|
|
* @author Jürgen Vigna
|
|
*
|
|
*======================================================*/
|
|
|
|
#ifndef FORM_PARAGRAPH_H
|
|
#define FORM_PARAGRAPH_H
|
|
|
|
#include <boost/smart_ptr.hpp>
|
|
|
|
#ifdef __GNUG_
|
|
#pragma interface
|
|
#endif
|
|
|
|
#include "FormBaseDeprecated.h"
|
|
#if 1
|
|
#include "lyxparagraph.h"
|
|
#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.
|
|
* @author Jürgen Vigna
|
|
*/
|
|
class FormParagraph : public FormBaseBD {
|
|
public:
|
|
///
|
|
FormParagraph(LyXView *, Dialogs *);
|
|
private:
|
|
/// Pointer to the actual instantiation of the ButtonController.
|
|
virtual xformsBC & bc();
|
|
/** Redraw the form (on receipt of a Signal indicating, for example,
|
|
that the xforms colours have been re-mapped). */
|
|
virtual void redraw();
|
|
/// Build the popup
|
|
virtual void build();
|
|
/// Apply from popup
|
|
virtual void apply();
|
|
/// Update the popup.
|
|
virtual void update();
|
|
/// Filter the inputs on callback from xforms
|
|
virtual bool input(FL_OBJECT * ob, long);
|
|
|
|
///
|
|
virtual FL_FORM * form() const;
|
|
|
|
///
|
|
void general_update();
|
|
#ifndef NO_PEXTRA
|
|
///
|
|
void extra_update();
|
|
#endif
|
|
///
|
|
void general_apply();
|
|
#ifndef NO_PEXTRA
|
|
///
|
|
void extra_apply();
|
|
#endif
|
|
/// Typedefinitions from the fdesign produced Header file
|
|
FD_form_tabbed_paragraph * build_tabbed_paragraph();
|
|
///
|
|
FD_form_paragraph_general * build_paragraph_general();
|
|
//#ifndef NO_PEXTRA
|
|
///
|
|
FD_form_paragraph_extra * build_paragraph_extra();
|
|
//#endif
|
|
/// Real GUI implementation.
|
|
boost::scoped_ptr<FD_form_tabbed_paragraph> dialog_;
|
|
///
|
|
boost::scoped_ptr<FD_form_paragraph_general> general_;
|
|
#ifndef NO_PEXTRA
|
|
///
|
|
boost::scoped_ptr<FD_form_paragraph_extra> extra_;
|
|
#endif
|
|
/// The ButtonController
|
|
ButtonController<NoRepeatedApplyReadOnlyPolicy, xformsBC> bc_;
|
|
};
|
|
|
|
|
|
inline
|
|
xformsBC & FormParagraph::bc()
|
|
{
|
|
return bc_;
|
|
}
|
|
#endif
|