mirror of
https://git.lyx.org/repos/lyx.git
synced 2024-11-09 18:31:04 +00:00
make Controller a standalone class.
git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@20161 a592a061-630c-0410-9148-cb99ea01b6c8
This commit is contained in:
parent
d19e684383
commit
d21894949b
@ -532,7 +532,7 @@
|
|||||||
|
|
||||||
2004-01-25 Angus Leeming <leeming@lyx.org>
|
2004-01-25 Angus Leeming <leeming@lyx.org>
|
||||||
|
|
||||||
* ControlSearch.[Ch]: derive from Dialog::Controller rather than
|
* ControlSearch.[Ch]: derive from Controller rather than
|
||||||
the deprecated ControlDialogBD.
|
the deprecated ControlDialogBD.
|
||||||
|
|
||||||
2004-01-08 Alfredo Braunstein <abraunst@lyx.org>
|
2004-01-08 Alfredo Braunstein <abraunst@lyx.org>
|
||||||
|
@ -23,7 +23,7 @@ namespace lyx {
|
|||||||
namespace frontend {
|
namespace frontend {
|
||||||
|
|
||||||
ControlBox::ControlBox(Dialog & parent)
|
ControlBox::ControlBox(Dialog & parent)
|
||||||
: Dialog::Controller(parent)
|
: Controller(parent)
|
||||||
{}
|
{}
|
||||||
|
|
||||||
|
|
||||||
|
@ -22,7 +22,7 @@ class InsetBoxParams;
|
|||||||
|
|
||||||
namespace frontend {
|
namespace frontend {
|
||||||
|
|
||||||
class ControlBox : public Dialog::Controller {
|
class ControlBox : public Controller {
|
||||||
public:
|
public:
|
||||||
///
|
///
|
||||||
ControlBox(Dialog &);
|
ControlBox(Dialog &);
|
||||||
|
@ -27,7 +27,7 @@ namespace lyx {
|
|||||||
namespace frontend {
|
namespace frontend {
|
||||||
|
|
||||||
ControlBranch::ControlBranch(Dialog & parent)
|
ControlBranch::ControlBranch(Dialog & parent)
|
||||||
: Dialog::Controller(parent)
|
: Controller(parent)
|
||||||
{}
|
{}
|
||||||
|
|
||||||
|
|
||||||
|
@ -23,7 +23,7 @@ class InsetBranchParams;
|
|||||||
|
|
||||||
namespace frontend {
|
namespace frontend {
|
||||||
|
|
||||||
class ControlBranch : public Dialog::Controller {
|
class ControlBranch : public Controller {
|
||||||
public:
|
public:
|
||||||
///
|
///
|
||||||
ControlBranch(Dialog &);
|
ControlBranch(Dialog &);
|
||||||
|
@ -31,7 +31,7 @@ namespace frontend {
|
|||||||
|
|
||||||
|
|
||||||
ControlChanges::ControlChanges(Dialog & parent)
|
ControlChanges::ControlChanges(Dialog & parent)
|
||||||
: Dialog::Controller(parent)
|
: Controller(parent)
|
||||||
{}
|
{}
|
||||||
|
|
||||||
|
|
||||||
|
@ -23,7 +23,7 @@ namespace frontend {
|
|||||||
/**
|
/**
|
||||||
* A controller for the merge changes dialog.
|
* A controller for the merge changes dialog.
|
||||||
*/
|
*/
|
||||||
class ControlChanges : public Dialog::Controller {
|
class ControlChanges : public Controller {
|
||||||
public:
|
public:
|
||||||
///
|
///
|
||||||
ControlChanges(Dialog &);
|
ControlChanges(Dialog &);
|
||||||
|
@ -26,7 +26,7 @@ namespace lyx {
|
|||||||
namespace frontend {
|
namespace frontend {
|
||||||
|
|
||||||
ControlCharacter::ControlCharacter(Dialog & parent)
|
ControlCharacter::ControlCharacter(Dialog & parent)
|
||||||
: Dialog::Controller(parent),
|
: Controller(parent),
|
||||||
font_(0), toggleall_(false), reset_lang_(false)
|
font_(0), toggleall_(false), reset_lang_(false)
|
||||||
{}
|
{}
|
||||||
|
|
||||||
|
@ -23,7 +23,7 @@ class Color_color;
|
|||||||
|
|
||||||
namespace frontend {
|
namespace frontend {
|
||||||
|
|
||||||
class ControlCharacter : public Dialog::Controller {
|
class ControlCharacter : public Controller {
|
||||||
public:
|
public:
|
||||||
///
|
///
|
||||||
ControlCharacter(Dialog &);
|
ControlCharacter(Dialog &);
|
||||||
|
@ -23,7 +23,7 @@ namespace frontend {
|
|||||||
|
|
||||||
ControlCommand::ControlCommand(Dialog & dialog, string const & command_name,
|
ControlCommand::ControlCommand(Dialog & dialog, string const & command_name,
|
||||||
string const & lfun_name)
|
string const & lfun_name)
|
||||||
: Dialog::Controller(dialog), params_(command_name),
|
: Controller(dialog), params_(command_name),
|
||||||
lfun_name_(lfun_name)
|
lfun_name_(lfun_name)
|
||||||
{}
|
{}
|
||||||
|
|
||||||
|
@ -22,7 +22,7 @@
|
|||||||
namespace lyx {
|
namespace lyx {
|
||||||
namespace frontend {
|
namespace frontend {
|
||||||
|
|
||||||
class ControlCommand : public Dialog::Controller {
|
class ControlCommand : public Controller {
|
||||||
public:
|
public:
|
||||||
/** LFUN_INSET_APPLY requires a name, "citation", "ref" etc so that
|
/** LFUN_INSET_APPLY requires a name, "citation", "ref" etc so that
|
||||||
it knows what to do with the rest of the contents.
|
it knows what to do with the rest of the contents.
|
||||||
|
@ -50,7 +50,7 @@ char const * ControlDocument::fontfamilies_gui[5] = {
|
|||||||
|
|
||||||
|
|
||||||
ControlDocument::ControlDocument(Dialog & parent)
|
ControlDocument::ControlDocument(Dialog & parent)
|
||||||
: Dialog::Controller(parent)
|
: Controller(parent)
|
||||||
{}
|
{}
|
||||||
|
|
||||||
|
|
||||||
|
@ -28,7 +28,7 @@ typedef void const * BufferId;
|
|||||||
|
|
||||||
/** A controller for Document dialogs.
|
/** A controller for Document dialogs.
|
||||||
*/
|
*/
|
||||||
class ControlDocument : public Dialog::Controller {
|
class ControlDocument : public Controller {
|
||||||
public:
|
public:
|
||||||
/// font family names for BufferParams::fontsDefaultFamily
|
/// font family names for BufferParams::fontsDefaultFamily
|
||||||
static char const * const fontfamilies[5];
|
static char const * const fontfamilies[5];
|
||||||
|
@ -21,7 +21,7 @@ namespace lyx {
|
|||||||
namespace frontend {
|
namespace frontend {
|
||||||
|
|
||||||
ControlERT::ControlERT(Dialog & parent)
|
ControlERT::ControlERT(Dialog & parent)
|
||||||
: Dialog::Controller(parent), status_(InsetERT::Collapsed)
|
: Controller(parent), status_(InsetERT::Collapsed)
|
||||||
{}
|
{}
|
||||||
|
|
||||||
|
|
||||||
|
@ -20,7 +20,7 @@
|
|||||||
namespace lyx {
|
namespace lyx {
|
||||||
namespace frontend {
|
namespace frontend {
|
||||||
|
|
||||||
class ControlERT : public Dialog::Controller {
|
class ControlERT : public Controller {
|
||||||
public:
|
public:
|
||||||
///
|
///
|
||||||
ControlERT(Dialog &);
|
ControlERT(Dialog &);
|
||||||
|
@ -35,7 +35,7 @@ using support::FileFilterList;
|
|||||||
namespace frontend {
|
namespace frontend {
|
||||||
|
|
||||||
ControlEmbeddedFiles::ControlEmbeddedFiles(Dialog & parent)
|
ControlEmbeddedFiles::ControlEmbeddedFiles(Dialog & parent)
|
||||||
: Dialog::Controller(parent)
|
: Controller(parent)
|
||||||
{}
|
{}
|
||||||
|
|
||||||
|
|
||||||
|
@ -19,7 +19,7 @@ namespace lyx {
|
|||||||
|
|
||||||
namespace frontend {
|
namespace frontend {
|
||||||
|
|
||||||
class ControlEmbeddedFiles : public Dialog::Controller {
|
class ControlEmbeddedFiles : public Controller {
|
||||||
public:
|
public:
|
||||||
///
|
///
|
||||||
ControlEmbeddedFiles(Dialog &);
|
ControlEmbeddedFiles(Dialog &);
|
||||||
|
@ -34,7 +34,7 @@ namespace lyx {
|
|||||||
namespace frontend {
|
namespace frontend {
|
||||||
|
|
||||||
ControlErrorList::ControlErrorList(Dialog & d)
|
ControlErrorList::ControlErrorList(Dialog & d)
|
||||||
: Dialog::Controller(d)
|
: Controller(d)
|
||||||
{}
|
{}
|
||||||
|
|
||||||
|
|
||||||
|
@ -20,7 +20,7 @@ namespace frontend {
|
|||||||
|
|
||||||
/** A controller for the ErrorList dialog.
|
/** A controller for the ErrorList dialog.
|
||||||
*/
|
*/
|
||||||
class ControlErrorList : public Dialog::Controller {
|
class ControlErrorList : public Controller {
|
||||||
public:
|
public:
|
||||||
///
|
///
|
||||||
ControlErrorList(Dialog & parent);
|
ControlErrorList(Dialog & parent);
|
||||||
|
@ -46,7 +46,7 @@ namespace frontend {
|
|||||||
|
|
||||||
|
|
||||||
ControlExternal::ControlExternal(Dialog & parent)
|
ControlExternal::ControlExternal(Dialog & parent)
|
||||||
: Dialog::Controller(parent),
|
: Controller(parent),
|
||||||
bb_changed_(false)
|
bb_changed_(false)
|
||||||
{}
|
{}
|
||||||
|
|
||||||
|
@ -38,7 +38,7 @@ class RotationDataType;
|
|||||||
|
|
||||||
namespace frontend {
|
namespace frontend {
|
||||||
|
|
||||||
class ControlExternal : public Dialog::Controller {
|
class ControlExternal : public Controller {
|
||||||
public:
|
public:
|
||||||
///
|
///
|
||||||
ControlExternal(Dialog &);
|
ControlExternal(Dialog &);
|
||||||
|
@ -21,7 +21,7 @@ namespace lyx {
|
|||||||
namespace frontend {
|
namespace frontend {
|
||||||
|
|
||||||
ControlFloat::ControlFloat(Dialog & parent)
|
ControlFloat::ControlFloat(Dialog & parent)
|
||||||
: Dialog::Controller(parent)
|
: Controller(parent)
|
||||||
{}
|
{}
|
||||||
|
|
||||||
|
|
||||||
|
@ -20,7 +20,7 @@ class InsetFloatParams;
|
|||||||
|
|
||||||
namespace frontend {
|
namespace frontend {
|
||||||
|
|
||||||
class ControlFloat : public Dialog::Controller {
|
class ControlFloat : public Controller {
|
||||||
public:
|
public:
|
||||||
///
|
///
|
||||||
ControlFloat(Dialog &);
|
ControlFloat(Dialog &);
|
||||||
|
@ -54,7 +54,7 @@ namespace frontend {
|
|||||||
|
|
||||||
|
|
||||||
ControlGraphics::ControlGraphics(Dialog & parent)
|
ControlGraphics::ControlGraphics(Dialog & parent)
|
||||||
: Dialog::Controller(parent)
|
: Controller(parent)
|
||||||
{}
|
{}
|
||||||
|
|
||||||
|
|
||||||
|
@ -33,7 +33,7 @@ class LyXView;
|
|||||||
|
|
||||||
/** A controller for Graphics dialogs.
|
/** A controller for Graphics dialogs.
|
||||||
*/
|
*/
|
||||||
class ControlGraphics : public Dialog::Controller {
|
class ControlGraphics : public Controller {
|
||||||
public:
|
public:
|
||||||
///
|
///
|
||||||
ControlGraphics(Dialog &);
|
ControlGraphics(Dialog &);
|
||||||
|
@ -43,7 +43,7 @@ using support::onlyPath;
|
|||||||
namespace frontend {
|
namespace frontend {
|
||||||
|
|
||||||
ControlInclude::ControlInclude(Dialog & parent)
|
ControlInclude::ControlInclude(Dialog & parent)
|
||||||
: Dialog::Controller(parent), params_("include")
|
: Controller(parent), params_("include")
|
||||||
{}
|
{}
|
||||||
|
|
||||||
|
|
||||||
|
@ -25,7 +25,7 @@ namespace frontend {
|
|||||||
|
|
||||||
/** A controller for the Include file dialog.
|
/** A controller for the Include file dialog.
|
||||||
*/
|
*/
|
||||||
class ControlInclude : public Dialog::Controller {
|
class ControlInclude : public Controller {
|
||||||
public:
|
public:
|
||||||
///
|
///
|
||||||
enum Type {
|
enum Type {
|
||||||
|
@ -22,7 +22,7 @@ namespace lyx {
|
|||||||
namespace frontend {
|
namespace frontend {
|
||||||
|
|
||||||
ControlListings::ControlListings(Dialog & parent)
|
ControlListings::ControlListings(Dialog & parent)
|
||||||
: Dialog::Controller(parent), params_()
|
: Controller(parent), params_()
|
||||||
{}
|
{}
|
||||||
|
|
||||||
|
|
||||||
|
@ -21,7 +21,7 @@ class InsetListingsParams;
|
|||||||
|
|
||||||
namespace frontend {
|
namespace frontend {
|
||||||
|
|
||||||
class ControlListings : public Dialog::Controller {
|
class ControlListings : public Controller {
|
||||||
public:
|
public:
|
||||||
///
|
///
|
||||||
ControlListings(Dialog &);
|
ControlListings(Dialog &);
|
||||||
|
@ -30,7 +30,7 @@ using support::FileName;
|
|||||||
namespace frontend {
|
namespace frontend {
|
||||||
|
|
||||||
ControlLog::ControlLog(Dialog & parent)
|
ControlLog::ControlLog(Dialog & parent)
|
||||||
: Dialog::Controller(parent),
|
: Controller(parent),
|
||||||
type_(LatexLog)
|
type_(LatexLog)
|
||||||
{}
|
{}
|
||||||
|
|
||||||
|
@ -23,7 +23,7 @@ namespace frontend {
|
|||||||
/**
|
/**
|
||||||
* A controller for a read-only text browser.
|
* A controller for a read-only text browser.
|
||||||
*/
|
*/
|
||||||
class ControlLog : public Dialog::Controller {
|
class ControlLog : public Controller {
|
||||||
public:
|
public:
|
||||||
///
|
///
|
||||||
ControlLog(Dialog &);
|
ControlLog(Dialog &);
|
||||||
|
@ -30,7 +30,7 @@ using support::subst;
|
|||||||
namespace frontend {
|
namespace frontend {
|
||||||
|
|
||||||
ControlMath::ControlMath(Dialog & dialog)
|
ControlMath::ControlMath(Dialog & dialog)
|
||||||
: Dialog::Controller(dialog)
|
: Controller(dialog)
|
||||||
{
|
{
|
||||||
// FIXME: Ideally, those unicode codepoints would be defined
|
// FIXME: Ideally, those unicode codepoints would be defined
|
||||||
// in "lib/symbols". Unfortunately, some of those are already
|
// in "lib/symbols". Unfortunately, some of those are already
|
||||||
|
@ -32,7 +32,7 @@ struct MathSymbol {
|
|||||||
Font::FONT_FAMILY fontfamily;
|
Font::FONT_FAMILY fontfamily;
|
||||||
};
|
};
|
||||||
|
|
||||||
class ControlMath : public Dialog::Controller {
|
class ControlMath : public Controller {
|
||||||
public:
|
public:
|
||||||
ControlMath(Dialog &);
|
ControlMath(Dialog &);
|
||||||
|
|
||||||
|
@ -22,7 +22,7 @@ namespace lyx {
|
|||||||
namespace frontend {
|
namespace frontend {
|
||||||
|
|
||||||
ControlNote::ControlNote(Dialog & parent)
|
ControlNote::ControlNote(Dialog & parent)
|
||||||
: Dialog::Controller(parent)
|
: Controller(parent)
|
||||||
{}
|
{}
|
||||||
|
|
||||||
|
|
||||||
|
@ -22,7 +22,7 @@ class InsetNoteParams;
|
|||||||
|
|
||||||
namespace frontend {
|
namespace frontend {
|
||||||
|
|
||||||
class ControlNote : public Dialog::Controller {
|
class ControlNote : public Controller {
|
||||||
public:
|
public:
|
||||||
///
|
///
|
||||||
ControlNote(Dialog &);
|
ControlNote(Dialog &);
|
||||||
|
@ -31,7 +31,7 @@ namespace lyx {
|
|||||||
namespace frontend {
|
namespace frontend {
|
||||||
|
|
||||||
ControlParagraph::ControlParagraph(Dialog & parent)
|
ControlParagraph::ControlParagraph(Dialog & parent)
|
||||||
: Dialog::Controller(parent), ininset_(false)
|
: Controller(parent), ininset_(false)
|
||||||
{}
|
{}
|
||||||
|
|
||||||
|
|
||||||
|
@ -21,7 +21,7 @@ class ParagraphParameters;
|
|||||||
|
|
||||||
namespace frontend {
|
namespace frontend {
|
||||||
|
|
||||||
class ControlParagraph : public Dialog::Controller {
|
class ControlParagraph : public Controller {
|
||||||
public:
|
public:
|
||||||
///
|
///
|
||||||
ControlParagraph(Dialog &);
|
ControlParagraph(Dialog &);
|
||||||
|
@ -37,7 +37,7 @@ namespace frontend {
|
|||||||
|
|
||||||
|
|
||||||
ControlPrefs::ControlPrefs(Dialog & parent)
|
ControlPrefs::ControlPrefs(Dialog & parent)
|
||||||
: Dialog::Controller(parent),
|
: Controller(parent),
|
||||||
update_screen_font_(false)
|
update_screen_font_(false)
|
||||||
{}
|
{}
|
||||||
|
|
||||||
|
@ -27,7 +27,7 @@ class Color_color;
|
|||||||
|
|
||||||
namespace frontend {
|
namespace frontend {
|
||||||
|
|
||||||
class ControlPrefs : public Dialog::Controller {
|
class ControlPrefs : public Controller {
|
||||||
public:
|
public:
|
||||||
ControlPrefs(Dialog &);
|
ControlPrefs(Dialog &);
|
||||||
///
|
///
|
||||||
|
@ -35,7 +35,7 @@ namespace frontend {
|
|||||||
|
|
||||||
|
|
||||||
ControlPrint::ControlPrint(Dialog & parent)
|
ControlPrint::ControlPrint(Dialog & parent)
|
||||||
: Dialog::Controller(parent),
|
: Controller(parent),
|
||||||
params_(0)
|
params_(0)
|
||||||
{}
|
{}
|
||||||
|
|
||||||
|
@ -27,7 +27,7 @@ namespace frontend {
|
|||||||
|
|
||||||
/** A controller for Print dialogs.
|
/** A controller for Print dialogs.
|
||||||
*/
|
*/
|
||||||
class ControlPrint : public Dialog::Controller {
|
class ControlPrint : public Controller {
|
||||||
public:
|
public:
|
||||||
///
|
///
|
||||||
ControlPrint(Dialog &);
|
ControlPrint(Dialog &);
|
||||||
|
@ -19,7 +19,7 @@ namespace lyx {
|
|||||||
namespace frontend {
|
namespace frontend {
|
||||||
|
|
||||||
ControlSearch::ControlSearch(Dialog & parent)
|
ControlSearch::ControlSearch(Dialog & parent)
|
||||||
: Dialog::Controller(parent)
|
: Controller(parent)
|
||||||
{}
|
{}
|
||||||
|
|
||||||
|
|
||||||
|
@ -19,7 +19,7 @@ namespace frontend {
|
|||||||
|
|
||||||
/** A controller for Search dialogs.
|
/** A controller for Search dialogs.
|
||||||
*/
|
*/
|
||||||
class ControlSearch : public Dialog::Controller {
|
class ControlSearch : public Controller {
|
||||||
public:
|
public:
|
||||||
ControlSearch(Dialog &);
|
ControlSearch(Dialog &);
|
||||||
|
|
||||||
|
@ -32,7 +32,7 @@ namespace frontend {
|
|||||||
|
|
||||||
|
|
||||||
ControlSendto::ControlSendto(Dialog & parent)
|
ControlSendto::ControlSendto(Dialog & parent)
|
||||||
: Dialog::Controller(parent)
|
: Controller(parent)
|
||||||
{}
|
{}
|
||||||
|
|
||||||
|
|
||||||
|
@ -24,7 +24,7 @@ namespace frontend {
|
|||||||
|
|
||||||
/** A controller for the Custom Export dialogs.
|
/** A controller for the Custom Export dialogs.
|
||||||
*/
|
*/
|
||||||
class ControlSendto : public Dialog::Controller {
|
class ControlSendto : public Controller {
|
||||||
public:
|
public:
|
||||||
///
|
///
|
||||||
ControlSendto(Dialog &);
|
ControlSendto(Dialog &);
|
||||||
|
@ -25,7 +25,7 @@ namespace frontend {
|
|||||||
|
|
||||||
|
|
||||||
ControlShowFile::ControlShowFile(Dialog & parent)
|
ControlShowFile::ControlShowFile(Dialog & parent)
|
||||||
: Dialog::Controller(parent)
|
: Controller(parent)
|
||||||
{}
|
{}
|
||||||
|
|
||||||
|
|
||||||
|
@ -21,7 +21,7 @@ namespace frontend {
|
|||||||
|
|
||||||
/** A controller for the ShowFile dialog. */
|
/** A controller for the ShowFile dialog. */
|
||||||
|
|
||||||
class ControlShowFile : public Dialog::Controller {
|
class ControlShowFile : public Controller {
|
||||||
public:
|
public:
|
||||||
///
|
///
|
||||||
ControlShowFile(Dialog &);
|
ControlShowFile(Dialog &);
|
||||||
|
@ -59,7 +59,7 @@ namespace frontend {
|
|||||||
|
|
||||||
|
|
||||||
ControlSpellchecker::ControlSpellchecker(Dialog & parent)
|
ControlSpellchecker::ControlSpellchecker(Dialog & parent)
|
||||||
: Dialog::Controller(parent), exitEarly_(false),
|
: Controller(parent), exitEarly_(false),
|
||||||
oldval_(0), newvalue_(0), count_(0)
|
oldval_(0), newvalue_(0), count_(0)
|
||||||
{
|
{
|
||||||
}
|
}
|
||||||
|
@ -24,7 +24,7 @@ namespace frontend {
|
|||||||
|
|
||||||
/** A controller for Spellchecker dialogs.
|
/** A controller for Spellchecker dialogs.
|
||||||
*/
|
*/
|
||||||
class ControlSpellchecker : public Dialog::Controller {
|
class ControlSpellchecker : public Controller {
|
||||||
public:
|
public:
|
||||||
enum State {
|
enum State {
|
||||||
SPELL_PROGRESSED, //< update progress bar
|
SPELL_PROGRESSED, //< update progress bar
|
||||||
|
@ -24,7 +24,7 @@ namespace lyx {
|
|||||||
namespace frontend {
|
namespace frontend {
|
||||||
|
|
||||||
ControlTabular::ControlTabular(Dialog & parent)
|
ControlTabular::ControlTabular(Dialog & parent)
|
||||||
: Dialog::Controller(parent), active_cell_(Tabular::npos)
|
: Controller(parent), active_cell_(Tabular::npos)
|
||||||
{}
|
{}
|
||||||
|
|
||||||
|
|
||||||
|
@ -22,7 +22,7 @@
|
|||||||
namespace lyx {
|
namespace lyx {
|
||||||
namespace frontend {
|
namespace frontend {
|
||||||
|
|
||||||
class ControlTabular : public Dialog::Controller {
|
class ControlTabular : public Controller {
|
||||||
public:
|
public:
|
||||||
|
|
||||||
ControlTabular(Dialog &);
|
ControlTabular(Dialog &);
|
||||||
|
@ -22,7 +22,7 @@ namespace lyx {
|
|||||||
namespace frontend {
|
namespace frontend {
|
||||||
|
|
||||||
ControlTabularCreate::ControlTabularCreate(Dialog & parent)
|
ControlTabularCreate::ControlTabularCreate(Dialog & parent)
|
||||||
: Dialog::Controller(parent)
|
: Controller(parent)
|
||||||
{}
|
{}
|
||||||
|
|
||||||
|
|
||||||
|
@ -20,7 +20,7 @@ namespace frontend {
|
|||||||
|
|
||||||
/** A controller for the TabularCreate Dialog.
|
/** A controller for the TabularCreate Dialog.
|
||||||
*/
|
*/
|
||||||
class ControlTabularCreate : public Dialog::Controller {
|
class ControlTabularCreate : public Controller {
|
||||||
public:
|
public:
|
||||||
///
|
///
|
||||||
ControlTabularCreate(Dialog &);
|
ControlTabularCreate(Dialog &);
|
||||||
|
@ -62,7 +62,7 @@ void getTexFileList(ControlTexinfo::texFileSuffix type,
|
|||||||
|
|
||||||
|
|
||||||
ControlTexinfo::ControlTexinfo(Dialog & parent)
|
ControlTexinfo::ControlTexinfo(Dialog & parent)
|
||||||
: Dialog::Controller(parent)
|
: Controller(parent)
|
||||||
{}
|
{}
|
||||||
|
|
||||||
|
|
||||||
|
@ -21,7 +21,7 @@ namespace frontend {
|
|||||||
|
|
||||||
/** A controller for Texinfo dialogs. */
|
/** A controller for Texinfo dialogs. */
|
||||||
|
|
||||||
class ControlTexinfo : public Dialog::Controller {
|
class ControlTexinfo : public Controller {
|
||||||
public:
|
public:
|
||||||
///
|
///
|
||||||
ControlTexinfo(Dialog &);
|
ControlTexinfo(Dialog &);
|
||||||
|
@ -21,7 +21,7 @@ namespace lyx {
|
|||||||
namespace frontend {
|
namespace frontend {
|
||||||
|
|
||||||
ControlThesaurus::ControlThesaurus(Dialog & parent)
|
ControlThesaurus::ControlThesaurus(Dialog & parent)
|
||||||
: Dialog::Controller(parent)
|
: Controller(parent)
|
||||||
{}
|
{}
|
||||||
|
|
||||||
|
|
||||||
|
@ -21,7 +21,7 @@ namespace frontend {
|
|||||||
|
|
||||||
/** A controller for Thesaurus dialogs.
|
/** A controller for Thesaurus dialogs.
|
||||||
*/
|
*/
|
||||||
class ControlThesaurus : public Dialog::Controller {
|
class ControlThesaurus : public Controller {
|
||||||
public:
|
public:
|
||||||
///
|
///
|
||||||
ControlThesaurus(Dialog &);
|
ControlThesaurus(Dialog &);
|
||||||
|
@ -24,7 +24,7 @@ namespace lyx {
|
|||||||
namespace frontend {
|
namespace frontend {
|
||||||
|
|
||||||
ControlVSpace::ControlVSpace(Dialog & parent)
|
ControlVSpace::ControlVSpace(Dialog & parent)
|
||||||
: Dialog::Controller(parent)
|
: Controller(parent)
|
||||||
{}
|
{}
|
||||||
|
|
||||||
|
|
||||||
|
@ -19,7 +19,7 @@
|
|||||||
namespace lyx {
|
namespace lyx {
|
||||||
namespace frontend {
|
namespace frontend {
|
||||||
|
|
||||||
class ControlVSpace : public Dialog::Controller {
|
class ControlVSpace : public Controller {
|
||||||
public:
|
public:
|
||||||
///
|
///
|
||||||
ControlVSpace(Dialog &);
|
ControlVSpace(Dialog &);
|
||||||
|
@ -28,7 +28,7 @@ namespace lyx {
|
|||||||
namespace frontend {
|
namespace frontend {
|
||||||
|
|
||||||
ControlViewSource::ControlViewSource(Dialog & parent)
|
ControlViewSource::ControlViewSource(Dialog & parent)
|
||||||
: Dialog::Controller(parent)
|
: Controller(parent)
|
||||||
{}
|
{}
|
||||||
|
|
||||||
|
|
||||||
|
@ -22,7 +22,7 @@ namespace frontend {
|
|||||||
/**
|
/**
|
||||||
* A controller for a read-only text browser.
|
* A controller for a read-only text browser.
|
||||||
*/
|
*/
|
||||||
class ControlViewSource : public Dialog::Controller {
|
class ControlViewSource : public Controller {
|
||||||
public:
|
public:
|
||||||
///
|
///
|
||||||
ControlViewSource(Dialog &);
|
ControlViewSource(Dialog &);
|
||||||
|
@ -21,7 +21,7 @@ namespace lyx {
|
|||||||
namespace frontend {
|
namespace frontend {
|
||||||
|
|
||||||
ControlWrap::ControlWrap(Dialog & parent)
|
ControlWrap::ControlWrap(Dialog & parent)
|
||||||
: Dialog::Controller(parent)
|
: Controller(parent)
|
||||||
{}
|
{}
|
||||||
|
|
||||||
|
|
||||||
|
@ -21,7 +21,7 @@ class InsetWrapParams;
|
|||||||
|
|
||||||
namespace frontend {
|
namespace frontend {
|
||||||
|
|
||||||
class ControlWrap : public Dialog::Controller {
|
class ControlWrap : public Controller {
|
||||||
public:
|
public:
|
||||||
///
|
///
|
||||||
ControlWrap(Dialog &);
|
ControlWrap(Dialog &);
|
||||||
|
@ -26,16 +26,14 @@ namespace lyx {
|
|||||||
namespace frontend {
|
namespace frontend {
|
||||||
|
|
||||||
Dialog::Dialog(LyXView & lv, string const & name)
|
Dialog::Dialog(LyXView & lv, string const & name)
|
||||||
: is_closing_(false), kernel_(lv), name_(name)
|
: is_closing_(false), kernel_(lv), name_(name), controller_(0)
|
||||||
{}
|
{}
|
||||||
|
|
||||||
|
|
||||||
Dialog::~Dialog()
|
Dialog::~Dialog()
|
||||||
{}
|
{
|
||||||
|
delete controller_;
|
||||||
|
}
|
||||||
void Dialog::setButtonsValid(bool /*valid*/)
|
|
||||||
{}
|
|
||||||
|
|
||||||
|
|
||||||
void Dialog::show(string const & data)
|
void Dialog::show(string const & data)
|
||||||
@ -120,30 +118,31 @@ void Dialog::redraw()
|
|||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
void Dialog::setController(Controller * i)
|
void Dialog::setController(Controller * controller)
|
||||||
{
|
{
|
||||||
BOOST_ASSERT(i && !controller_ptr_.get());
|
BOOST_ASSERT(controller);
|
||||||
controller_ptr_.reset(i);
|
BOOST_ASSERT(!controller_);
|
||||||
|
controller_ = controller;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
Dialog::Controller::Controller(Dialog & parent)
|
Controller::Controller(Dialog & parent)
|
||||||
: parent_(parent)
|
: parent_(parent)
|
||||||
{}
|
{}
|
||||||
|
|
||||||
|
|
||||||
bool Dialog::Controller::canApply() const
|
bool Controller::canApply() const
|
||||||
{
|
{
|
||||||
FuncRequest const fr(getLfun(), dialog().name_);
|
FuncRequest const fr(getLfun(), dialog().name());
|
||||||
FuncStatus const fs(getStatus(fr));
|
FuncStatus const fs(getStatus(fr));
|
||||||
return fs.enabled();
|
return fs.enabled();
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
Dialog::Controller & Dialog::controller() const
|
Controller & Dialog::controller() const
|
||||||
{
|
{
|
||||||
BOOST_ASSERT(controller_ptr_.get());
|
BOOST_ASSERT(controller_);
|
||||||
return *controller_ptr_.get();
|
return *controller_;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
@ -17,18 +17,23 @@
|
|||||||
|
|
||||||
#include "support/docstring.h"
|
#include "support/docstring.h"
|
||||||
|
|
||||||
#include <boost/utility.hpp>
|
|
||||||
#include <boost/scoped_ptr.hpp>
|
|
||||||
|
|
||||||
namespace lyx {
|
namespace lyx {
|
||||||
namespace frontend {
|
namespace frontend {
|
||||||
|
|
||||||
class LyXView;
|
class LyXView;
|
||||||
|
|
||||||
|
/** Different dialogs will have different Controllers and Views.
|
||||||
|
* deriving from these base classes.
|
||||||
|
*/
|
||||||
|
//@{
|
||||||
|
class Controller;
|
||||||
|
//@}
|
||||||
|
|
||||||
/** \c Dialog collects the different parts of a Model-Controller-View
|
/** \c Dialog collects the different parts of a Model-Controller-View
|
||||||
* split of a generic dialog together.
|
* split of a generic dialog together.
|
||||||
*/
|
*/
|
||||||
class Dialog /*: boost::noncopyable*/ {
|
class Dialog
|
||||||
|
{
|
||||||
public:
|
public:
|
||||||
/// \param lv is the access point for the dialog to the LyX kernel.
|
/// \param lv is the access point for the dialog to the LyX kernel.
|
||||||
/// \param name is the identifier given to the dialog by its parent
|
/// \param name is the identifier given to the dialog by its parent
|
||||||
@ -84,13 +89,6 @@ public:
|
|||||||
Kernel & kernel() { return kernel_; }
|
Kernel & kernel() { return kernel_; }
|
||||||
Kernel const & kernel() const { return kernel_; }
|
Kernel const & kernel() const { return kernel_; }
|
||||||
|
|
||||||
/** Different dialogs will have different Controllers and Views.
|
|
||||||
* deriving from these base classes.
|
|
||||||
*/
|
|
||||||
//@{
|
|
||||||
class Controller;
|
|
||||||
//@}
|
|
||||||
|
|
||||||
/** \name Dialog Specialization
|
/** \name Dialog Specialization
|
||||||
* Methods to set the Controller and View and so specialise
|
* Methods to set the Controller and View and so specialise
|
||||||
* to a particular dialog.
|
* to a particular dialog.
|
||||||
@ -109,7 +107,7 @@ public:
|
|||||||
|
|
||||||
/** \c Button controller part
|
/** \c Button controller part
|
||||||
*/
|
*/
|
||||||
virtual void setButtonsValid(bool valid);
|
virtual void setButtonsValid(bool /*valid*/) {}
|
||||||
|
|
||||||
|
|
||||||
/** \c View part
|
/** \c View part
|
||||||
@ -151,6 +149,13 @@ public:
|
|||||||
void setViewTitle(docstring const &);
|
void setViewTitle(docstring const &);
|
||||||
/// gets the title of the dialog (window caption)
|
/// gets the title of the dialog (window caption)
|
||||||
docstring const & getViewTitle() const;
|
docstring const & getViewTitle() const;
|
||||||
|
///
|
||||||
|
std::string name() const { return name_; }
|
||||||
|
|
||||||
|
private:
|
||||||
|
/// intentionally unimplemented, therefore uncopiable
|
||||||
|
Dialog(Dialog const &);
|
||||||
|
void operator=(Dialog const &);
|
||||||
|
|
||||||
protected:
|
protected:
|
||||||
void apply();
|
void apply();
|
||||||
@ -161,16 +166,17 @@ protected:
|
|||||||
* itself to the kernel.
|
* itself to the kernel.
|
||||||
*/
|
*/
|
||||||
std::string name_;
|
std::string name_;
|
||||||
boost::scoped_ptr<Controller> controller_ptr_;
|
Controller * controller_;
|
||||||
|
|
||||||
docstring title_;
|
docstring title_;
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|
||||||
/** \c Dialog::Controller is an abstract base class for the Controller
|
/** \c Controller is an abstract base class for the Controller
|
||||||
* of a Model-Controller-View split of a generic dialog.
|
* of a Model-Controller-View split of a generic dialog.
|
||||||
*/
|
*/
|
||||||
class Dialog::Controller : boost::noncopyable {
|
class Controller
|
||||||
|
{
|
||||||
public:
|
public:
|
||||||
/// \param parent Dialog owning this Controller.
|
/// \param parent Dialog owning this Controller.
|
||||||
Controller(Dialog & parent);
|
Controller(Dialog & parent);
|
||||||
@ -257,6 +263,11 @@ protected:
|
|||||||
Kernel const & kernel() const { return parent_.kernel(); }
|
Kernel const & kernel() const { return parent_.kernel(); }
|
||||||
//@}
|
//@}
|
||||||
|
|
||||||
|
private:
|
||||||
|
/// intentionally unimplemented, therefore uncopiable
|
||||||
|
Controller(Controller const &);
|
||||||
|
void operator=(Controller const &);
|
||||||
|
|
||||||
private:
|
private:
|
||||||
Dialog & parent_;
|
Dialog & parent_;
|
||||||
};
|
};
|
||||||
|
@ -95,10 +95,10 @@ static QString version()
|
|||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
class ControlAbout : public Dialog::Controller
|
class ControlAbout : public Controller
|
||||||
{
|
{
|
||||||
public:
|
public:
|
||||||
ControlAbout(Dialog & parent) : Dialog::Controller(parent) {}
|
ControlAbout(Dialog & parent) : Controller(parent) {}
|
||||||
bool initialiseParams(std::string const &) { return true; }
|
bool initialiseParams(std::string const &) { return true; }
|
||||||
void clearParams() {}
|
void clearParams() {}
|
||||||
void dispatchParams() {}
|
void dispatchParams() {}
|
||||||
|
Loading…
Reference in New Issue
Block a user