2000-09-22 15:09:51 +00:00
|
|
|
// -*- C++ -*-
|
2002-03-11 17:00:41 +00:00
|
|
|
/**
|
|
|
|
* \file FormBase.h
|
|
|
|
* Copyright 2000-2002 the LyX Team
|
|
|
|
* Read the file COPYING
|
2000-09-22 15:09:51 +00:00
|
|
|
*
|
2002-03-11 17:00:41 +00:00
|
|
|
* \author Angus Leeming, a.leeming@ic.ac.uk
|
|
|
|
*/
|
|
|
|
|
|
|
|
/* A base class for the MCV-ed xforms dialogs.
|
2000-09-22 15:09:51 +00:00
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef FORMBASE_H
|
|
|
|
#define FORMBASE_H
|
|
|
|
|
|
|
|
#ifdef __GNUG__
|
|
|
|
#pragma interface
|
|
|
|
#endif
|
|
|
|
|
2001-03-15 13:37:04 +00:00
|
|
|
#include "ViewBase.h"
|
|
|
|
#include "LString.h"
|
|
|
|
#include "ButtonPolicies.h"
|
2002-03-11 09:54:42 +00:00
|
|
|
#include "FeedbackController.h"
|
2001-03-15 13:37:04 +00:00
|
|
|
|
2002-05-22 01:16:37 +00:00
|
|
|
#include <boost/scoped_ptr.hpp>
|
|
|
|
|
2002-06-13 13:43:51 +00:00
|
|
|
#include "forms_fwd.h"
|
2002-05-22 01:16:37 +00:00
|
|
|
|
2001-03-15 13:37:04 +00:00
|
|
|
class xformsBC;
|
2002-02-06 17:15:28 +00:00
|
|
|
class Tooltips;
|
2002-07-02 19:23:10 +00:00
|
|
|
class Dialogs;
|
2002-02-05 17:25:16 +00:00
|
|
|
|
2000-10-13 05:57:05 +00:00
|
|
|
/** This class is an XForms GUI base class.
|
2000-09-22 15:09:51 +00:00
|
|
|
*/
|
2002-03-11 09:54:42 +00:00
|
|
|
class FormBase : public ViewBC<xformsBC>, public FeedbackController
|
2001-03-15 13:37:04 +00:00
|
|
|
{
|
2000-09-22 15:09:51 +00:00
|
|
|
public:
|
|
|
|
///
|
2002-07-02 19:23:10 +00:00
|
|
|
FormBase(ControlButtons &, Dialogs &,
|
|
|
|
string const &, bool allowResize);
|
2000-09-22 15:09:51 +00:00
|
|
|
///
|
2002-02-06 17:15:28 +00:00
|
|
|
virtual ~FormBase();
|
2000-09-22 15:09:51 +00:00
|
|
|
|
2002-03-11 09:54:42 +00:00
|
|
|
/** input callback function. invoked only by the xforms callback
|
2002-03-21 16:59:12 +00:00
|
|
|
* interface
|
|
|
|
*/
|
2001-03-15 13:37:04 +00:00
|
|
|
void InputCB(FL_OBJECT *, long);
|
2002-02-05 14:59:26 +00:00
|
|
|
|
2002-03-11 09:54:42 +00:00
|
|
|
Tooltips & tooltips();
|
2002-02-05 17:25:16 +00:00
|
|
|
|
2001-03-15 13:37:04 +00:00
|
|
|
protected:
|
2000-09-22 15:09:51 +00:00
|
|
|
/// Build the dialog
|
|
|
|
virtual void build() = 0;
|
2001-03-15 13:37:04 +00:00
|
|
|
/// Hide the dialog.
|
|
|
|
void hide();
|
|
|
|
/// Create the dialog if necessary, update it and display it.
|
|
|
|
void show();
|
2002-02-05 17:25:16 +00:00
|
|
|
|
|
|
|
/** Prepare the way to:
|
2002-03-21 16:59:12 +00:00
|
|
|
* 1. display feedback as the mouse moves over ob. This feedback will
|
|
|
|
* typically be rather more verbose than just a tooltip.
|
|
|
|
* 2. activate the button controller after a paste with the middle
|
|
|
|
* mouse button.
|
|
|
|
*/
|
2002-03-11 09:54:42 +00:00
|
|
|
static void setPrehandler(FL_OBJECT * ob);
|
2002-02-05 14:59:26 +00:00
|
|
|
|
2000-11-14 02:01:57 +00:00
|
|
|
private:
|
2001-03-15 13:37:04 +00:00
|
|
|
/// Pointer to the actual instantiation of xform's form
|
|
|
|
virtual FL_FORM * form() const = 0;
|
2002-03-21 21:21:28 +00:00
|
|
|
/// Filter the inputs on callback from xforms
|
2001-03-20 10:14:03 +00:00
|
|
|
virtual ButtonPolicy::SMInput input(FL_OBJECT *, long);
|
2001-03-15 13:37:04 +00:00
|
|
|
|
|
|
|
/** Redraw the form (on receipt of a Signal indicating, for example,
|
2002-03-21 16:59:12 +00:00
|
|
|
* that the xform colors have been re-mapped).
|
|
|
|
*/
|
2001-03-15 13:37:04 +00:00
|
|
|
virtual void redraw();
|
|
|
|
|
2001-09-07 10:11:02 +00:00
|
|
|
/// The dialog's minimum allowable dimensions.
|
|
|
|
int minw_;
|
2000-10-20 09:50:09 +00:00
|
|
|
///
|
2001-09-07 10:11:02 +00:00
|
|
|
int minh_;
|
2001-08-28 13:48:40 +00:00
|
|
|
/// Can the dialog be resized after it has been created?
|
|
|
|
bool allow_resize_;
|
2001-03-15 13:37:04 +00:00
|
|
|
/// dialog title, displayed by WM.
|
2002-03-21 21:21:28 +00:00
|
|
|
string title_;
|
2002-02-06 17:15:28 +00:00
|
|
|
///
|
2002-03-11 09:54:42 +00:00
|
|
|
Tooltips * tooltips_;
|
2000-09-22 15:09:51 +00:00
|
|
|
};
|
|
|
|
|
2000-10-13 05:57:05 +00:00
|
|
|
|
2001-03-20 10:14:03 +00:00
|
|
|
template <class Dialog>
|
|
|
|
class FormDB: public FormBase
|
2001-03-15 13:37:04 +00:00
|
|
|
{
|
2000-10-20 09:50:09 +00:00
|
|
|
protected:
|
2001-03-15 13:37:04 +00:00
|
|
|
///
|
2002-07-02 19:23:10 +00:00
|
|
|
FormDB(ControlButtons &, Dialogs &,
|
|
|
|
string const &, bool allowResize=true);
|
2001-03-15 13:37:04 +00:00
|
|
|
/// Pointer to the actual instantiation of xform's form
|
|
|
|
virtual FL_FORM * form() const;
|
|
|
|
/// Real GUI implementation.
|
|
|
|
boost::scoped_ptr<Dialog> dialog_;
|
2000-10-13 05:57:05 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
|
2001-03-20 10:14:03 +00:00
|
|
|
template <class Dialog>
|
2002-07-02 19:23:10 +00:00
|
|
|
FormDB<Dialog>::FormDB(ControlButtons & c, Dialogs & d,
|
|
|
|
string const & t, bool allowResize)
|
|
|
|
: FormBase(c, d, t, allowResize)
|
2001-03-15 13:37:04 +00:00
|
|
|
{}
|
2000-10-13 05:57:05 +00:00
|
|
|
|
|
|
|
|
2001-03-20 10:14:03 +00:00
|
|
|
template <class Dialog>
|
|
|
|
FL_FORM * FormDB<Dialog>::form() const
|
2001-03-15 13:37:04 +00:00
|
|
|
{
|
2001-03-20 10:14:03 +00:00
|
|
|
if (dialog_.get()) return dialog_->form;
|
|
|
|
return 0;
|
2001-03-15 13:37:04 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2001-03-20 10:14:03 +00:00
|
|
|
template <class Controller, class Base>
|
|
|
|
class FormCB: public Base
|
2001-03-15 13:37:04 +00:00
|
|
|
{
|
2001-03-20 10:14:03 +00:00
|
|
|
protected:
|
|
|
|
///
|
2002-07-02 19:23:10 +00:00
|
|
|
FormCB(Controller &, Dialogs &,
|
|
|
|
string const &, bool allowResize = true);
|
2001-03-20 10:14:03 +00:00
|
|
|
/// The parent controller
|
|
|
|
Controller & controller() const;
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
template <class Controller, class Base>
|
2002-07-02 19:23:10 +00:00
|
|
|
FormCB<Controller, Base>::FormCB(Controller & c, Dialogs & d,
|
|
|
|
string const & t, bool allowResize)
|
|
|
|
: Base(c, d, t, allowResize)
|
2001-03-20 10:14:03 +00:00
|
|
|
{}
|
|
|
|
|
|
|
|
|
|
|
|
template <class Controller, class Base>
|
|
|
|
Controller & FormCB<Controller, Base>::controller() const
|
|
|
|
{
|
2002-06-10 16:50:40 +00:00
|
|
|
return static_cast<Controller &>(controller_);
|
|
|
|
//return dynamic_cast<Controller &>(controller_);
|
2001-03-15 13:37:04 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
#endif // FORMBASE_H
|