mirror of
https://git.lyx.org/repos/lyx.git
synced 2024-11-11 13:46:43 +00:00
c265d16ed0
git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@4998 a592a061-630c-0410-9148-cb99ea01b6c8
60 lines
1.1 KiB
C
60 lines
1.1 KiB
C
/* This file is part of
|
|
* ======================================================
|
|
*
|
|
* LyX, The Document Processor
|
|
*
|
|
* Copyright 2001 The LyX Team.
|
|
*
|
|
* ======================================================
|
|
*
|
|
* \file ControlCommand.C
|
|
* \author Angus Leeming <leeming@lyx.org>
|
|
*/
|
|
|
|
#include <config.h>
|
|
|
|
#ifdef __GNUG__
|
|
#pragma implementation
|
|
#endif
|
|
|
|
#include "ControlCommand.h"
|
|
|
|
#include "BufferView.h"
|
|
#include "funcrequest.h"
|
|
#include "lyxfunc.h"
|
|
|
|
|
|
ControlCommand::ControlCommand(LyXView & lv, Dialogs & d, kb_action ac)
|
|
: ControlInset<InsetCommand, InsetCommandParams>(lv, d),
|
|
action_(ac)
|
|
{}
|
|
|
|
|
|
InsetCommandParams const ControlCommand::getParams(string const & arg)
|
|
{
|
|
InsetCommandParams params;
|
|
params.setFromString(arg);
|
|
return params;
|
|
}
|
|
|
|
|
|
InsetCommandParams const ControlCommand::getParams(InsetCommand const & inset)
|
|
{
|
|
return inset.params();
|
|
}
|
|
|
|
|
|
void ControlCommand::applyParamsToInset()
|
|
{
|
|
inset()->setParams(params());
|
|
bufferview()->updateInset(inset(), true);
|
|
}
|
|
|
|
|
|
void ControlCommand::applyParamsNoInset()
|
|
{
|
|
if (action_ == LFUN_NOACTION)
|
|
return;
|
|
lyxfunc().dispatch(FuncRequest(action_, params().getAsString()));
|
|
}
|