lyx_mirror/src/frontends/controllers/ControlBranch.C

63 lines
1.1 KiB
C++
Raw Normal View History

/**
* \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