lyx_mirror/src/frontends/qt4/GuiBranch.cpp
André Pönitz 85b05737d4 next one
git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@20766 a592a061-630c-0410-9148-cb99ea01b6c8
2007-10-05 23:12:55 +00:00

122 lines
2.3 KiB
C++

/**
* \file GuiBranch.cpp
* This file is part of LyX, the document processor.
* Licence details can be found in the file COPYING.
*
* \author Angus Leeming
* \author Martin Vermeer
* \author Jürgen Spitzmüller
*
* Full author contact details are available in file CREDITS.
*/
#include <config.h>
#include "GuiBranch.h"
#include "qt_helpers.h"
#include "BranchList.h"
#include "Buffer.h"
#include "BufferParams.h"
#include "BranchList.h"
#include "FuncRequest.h"
#include "insets/InsetBranch.h"
#include <QPushButton>
#include <QCloseEvent>
using std::string;
using std::vector;
namespace lyx {
namespace frontend {
GuiBranch::GuiBranch(LyXView & lv)
: GuiDialog(lv, "branch"), Controller(this)
{
setupUi(this);
setController(this, false);
setViewTitle(_("Branch Settings"));
connect(okPB, SIGNAL(clicked()), this, SLOT(slotOK()));
connect(closePB, SIGNAL(clicked()), this, SLOT(slotClose()));
connect(branchCO, SIGNAL(activated(int)), this, SLOT(change_adaptor()));
bc().setPolicy(ButtonPolicy::NoRepeatedApplyReadOnlyPolicy);
bc().setOK(okPB);
bc().setCancel(closePB);
}
void GuiBranch::closeEvent(QCloseEvent * e)
{
slotClose();
e->accept();
}
void GuiBranch::change_adaptor()
{
changed();
}
void GuiBranch::updateContents()
{
typedef BranchList::const_iterator const_iterator;
BranchList const & branchlist = buffer().params().branchlist();
docstring const cur_branch = params_.branch;
branchCO->clear();
const_iterator const begin = branchlist.begin();
const_iterator const end = branchlist.end();
int id = 0;
int count = 0;
for (const_iterator it = begin; it != end; ++it, ++count) {
docstring const & branch = it->getBranch();
branchCO->addItem(toqstr(branch));
if (cur_branch == branch)
id = count;
}
branchCO->setCurrentIndex(id);
}
void GuiBranch::applyView()
{
params_.branch = qstring_to_ucs4(branchCO->currentText());
}
bool GuiBranch::initialiseParams(string const & data)
{
InsetBranchMailer::string2params(data, params_);
return true;
}
void GuiBranch::clearParams()
{
params_ = InsetBranchParams();
}
void GuiBranch::dispatchParams()
{
dispatch(FuncRequest(getLfun(), InsetBranchMailer::params2string(params_)));
}
Dialog * createGuiBranch(LyXView & lv) { return new GuiBranch(lv); }
} // namespace frontend
} // namespace lyx
#include "GuiBranch_moc.cpp"