lyx_mirror/src/frontends/qt4/GuiBranch.cpp
Abdelrazak Younes 4db2685cbe Migrate Branch dialog to InsetParamsWidget
git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@33521 a592a061-630c-0410-9148-cb99ea01b6c8
2010-02-19 20:57:25 +00:00

71 lines
1.6 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 "Buffer.h"
#include "BufferParams.h"
#include "BranchList.h"
#include "insets/InsetBranch.h"
#include <QPushButton>
using namespace std;
namespace lyx {
namespace frontend {
GuiBranch::GuiBranch(QWidget * parent) : InsetParamsWidget(parent)
{
setupUi(this);
connect(branchCO, SIGNAL(activated(int)), this, SIGNAL(changed()));
}
void GuiBranch::paramsToDialog(Inset const * inset)
{
InsetBranch const * ib = static_cast<InsetBranch const *>(inset);
typedef BranchList::const_iterator const_iterator;
BranchList const & branchlist = ib->buffer().params().branchlist();
docstring const cur_branch = ib->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->branch();
branchCO->addItem(toqstr(branch));
if (cur_branch == branch)
id = count;
}
branchCO->setCurrentIndex(id);
}
docstring GuiBranch::dialogToParams() const
{
InsetBranchParams params(qstring_to_ucs4(branchCO->currentText()));
return from_utf8(InsetBranch::params2string(params));
}
} // namespace frontend
} // namespace lyx
#include "moc_GuiBranch.cpp"