mirror of
https://git.lyx.org/repos/lyx.git
synced 2024-11-11 21:49:51 +00:00
4db2685cbe
git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@33521 a592a061-630c-0410-9148-cb99ea01b6c8
71 lines
1.6 KiB
C++
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"
|