mirror of
https://git.lyx.org/repos/lyx.git
synced 2024-11-11 13:46:43 +00:00
2a31934f38
git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@8766 a592a061-630c-0410-9148-cb99ea01b6c8
63 lines
1.1 KiB
C
63 lines
1.1 KiB
C
/**
|
|
* \file ControlBranch.C
|
|
* This file is part of LyX, the document processor.
|
|
* Licence details can be found in the file COPYING.
|
|
*
|
|
* \author Angus Leeming
|
|
* \author Martin Vermeer
|
|
*
|
|
* Full author contact details are available in file CREDITS.
|
|
*/
|
|
|
|
#include <config.h>
|
|
|
|
#include "ControlBranch.h"
|
|
|
|
#include "buffer.h"
|
|
#include "bufferparams.h"
|
|
#include "BranchList.h"
|
|
#include "funcrequest.h"
|
|
#include "insets/insetbranch.h"
|
|
|
|
|
|
using std::string;
|
|
using std::vector;
|
|
|
|
namespace lyx {
|
|
namespace frontend {
|
|
|
|
ControlBranch::ControlBranch(Dialog & parent)
|
|
: Dialog::Controller(parent)
|
|
{}
|
|
|
|
|
|
bool ControlBranch::initialiseParams(string const & data)
|
|
{
|
|
InsetBranchParams params;
|
|
InsetBranchMailer::string2params(data, params);
|
|
params_.reset(new InsetBranchParams(params));
|
|
|
|
return true;
|
|
}
|
|
|
|
|
|
void ControlBranch::clearParams()
|
|
{
|
|
params_.reset();
|
|
}
|
|
|
|
void ControlBranch::dispatchParams()
|
|
{
|
|
string const lfun = InsetBranchMailer::params2string(params());
|
|
kernel().dispatch(FuncRequest(LFUN_INSET_APPLY, lfun));
|
|
}
|
|
|
|
|
|
BranchList const & ControlBranch::branchlist() const
|
|
{
|
|
return kernel().buffer().params().branchlist();
|
|
}
|
|
|
|
} // namespace frontend
|
|
} // namespace lyx
|