mirror of
https://git.lyx.org/repos/lyx.git
synced 2024-11-11 21:49:51 +00:00
c5a0750890
git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@1830 a592a061-630c-0410-9148-cb99ea01b6c8
134 lines
2.5 KiB
C++
134 lines
2.5 KiB
C++
// -*- C++ -*-
|
|
/* This file is part of
|
|
* ======================================================
|
|
*
|
|
* LyX, The Document Processor
|
|
*
|
|
* Copyright 2000 The LyX Team.
|
|
*
|
|
* ======================================================
|
|
*
|
|
* \author Angus Leeming <a.leeming@ic.ac.uk>
|
|
*/
|
|
|
|
#ifndef QT2BASE_H
|
|
#define QT2BASE_H
|
|
|
|
#include <boost/smart_ptr.hpp>
|
|
|
|
class QDialog;
|
|
|
|
#include <qfont.h>
|
|
#include <qobject.h>
|
|
|
|
#ifdef __GNUG__
|
|
#pragma interface
|
|
#endif
|
|
|
|
#include "ViewBase.h"
|
|
#include "LString.h"
|
|
#include "ButtonPolicies.h"
|
|
|
|
class qt2BC;
|
|
|
|
/** This class is an Qt2 GUI base class.
|
|
*/
|
|
class Qt2Base : public QObject, public ViewBC<qt2BC>
|
|
{
|
|
Q_OBJECT
|
|
public:
|
|
///
|
|
Qt2Base(ControlBase &, string const &);
|
|
///
|
|
virtual ~Qt2Base() {}
|
|
|
|
protected:
|
|
/// Build the dialog
|
|
virtual void build() = 0;
|
|
/// Hide the dialog.
|
|
void hide();
|
|
/// Create the dialog if necessary, update it and display it.
|
|
void show();
|
|
|
|
protected slots:
|
|
// dialog closed from WM
|
|
void slotWMHide();
|
|
|
|
// Apply button clicked
|
|
void slotApply();
|
|
|
|
// OK button clicked
|
|
void slotOK();
|
|
|
|
// Cancel button clicked
|
|
void slotCancel();
|
|
|
|
// Restore button clicked
|
|
void slotRestore();
|
|
|
|
private:
|
|
/// Pointer to the actual instantiation of xform's form
|
|
virtual QDialog* form() const = 0;
|
|
/** Filter the inputs on callback from xforms
|
|
Return true if inputs are valid. */
|
|
virtual ButtonPolicy::SMInput input(QWidget*, long);
|
|
|
|
private:
|
|
/// dialog title, displayed by WM.
|
|
string title_;
|
|
};
|
|
|
|
|
|
template <class Dialog>
|
|
class Qt2DB: public Qt2Base
|
|
{
|
|
protected:
|
|
///
|
|
Qt2DB(ControlBase &, string const &);
|
|
/// Pointer to the actual instantiation of the Qt dialog
|
|
virtual QDialog* form() const;
|
|
/// Real GUI implementation.
|
|
boost::scoped_ptr<Dialog> dialog_;
|
|
};
|
|
|
|
|
|
template <class Dialog>
|
|
Qt2DB<Dialog>::Qt2DB(ControlBase & c, string const & t)
|
|
: Qt2Base(c, t)
|
|
{}
|
|
|
|
|
|
template <class Dialog>
|
|
QDialog* Qt2DB<Dialog>::form() const
|
|
{
|
|
return dialog_.get();
|
|
}
|
|
|
|
|
|
template <class Controller, class Base>
|
|
class Qt2CB: public Base
|
|
{
|
|
protected:
|
|
///
|
|
Qt2CB(ControlBase &, string const &);
|
|
/// The parent controller
|
|
Controller & controller() const;
|
|
};
|
|
|
|
|
|
template <class Controller, class Base>
|
|
Qt2CB<Controller, Base>::Qt2CB(ControlBase & c, string const & t)
|
|
: Base(c, t)
|
|
{}
|
|
|
|
|
|
template <class Controller, class Base>
|
|
Controller & Qt2CB<Controller, Base>::controller() const
|
|
{
|
|
return static_cast<Controller &>(controller_);
|
|
//return dynamic_cast<Controller &>(controller_);
|
|
}
|
|
|
|
|
|
#endif // FORMBASE_H
|