mirror of
https://git.lyx.org/repos/lyx.git
synced 2024-11-11 05:33:33 +00:00
0c2a3e5960
git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@2118 a592a061-630c-0410-9148-cb99ea01b6c8
59 lines
1.6 KiB
C++
59 lines
1.6 KiB
C++
// -*- C++ -*-
|
|
/* This file is part of
|
|
* ======================================================
|
|
*
|
|
* LyX, The Document Processor
|
|
*
|
|
* Copyright 2001 The LyX Team.
|
|
*
|
|
* ======================================================
|
|
*
|
|
* \file ControlCommand.h
|
|
* \author Angus Leeming <a.leeming@ic.ac.uk>
|
|
*
|
|
* ControlCommand is a controller class for dialogs that create or modify
|
|
* an inset derived from InsetCommand.
|
|
*
|
|
* The class is likely to be changed as other Inset controllers are created
|
|
* and it becomes clear just what functionality can be moved back into
|
|
* ControlInset.
|
|
*
|
|
*/
|
|
|
|
#ifndef CONTROLCOMMAND_H
|
|
#define CONTROLCOMMAND_H
|
|
|
|
#ifdef __GNUG__
|
|
#pragma interface
|
|
#endif
|
|
|
|
#include "ControlInset.h"
|
|
#include "insets/insetcommand.h"
|
|
#include "commandtags.h" // kb_action
|
|
|
|
/** The Inset dialog controller. Connects/disconnects signals, launches
|
|
GUI-dependent View and returns the output from this View to the kernel.
|
|
*/
|
|
class ControlCommand : public ControlInset<InsetCommand, InsetCommandParams>
|
|
{
|
|
public:
|
|
///
|
|
ControlCommand(LyXView &, Dialogs &, kb_action=LFUN_NOACTION);
|
|
|
|
private:
|
|
/// Dispatch the changed parameters to the kernel.
|
|
virtual void applyParamsToInset();
|
|
///
|
|
virtual void applyParamsNoInset();
|
|
/// get the parameters from the string passed to createInset.
|
|
virtual InsetCommandParams const getParams(string const &);
|
|
/// get the parameters from the inset passed to showInset.
|
|
virtual InsetCommandParams const getParams(InsetCommand const &);
|
|
|
|
/// Controls what is done in LyXFunc::Dispatch()
|
|
kb_action const action_;
|
|
};
|
|
|
|
|
|
#endif // CONTROLCOMMAND_H
|