lyx_mirror/src/frontends/qt4/QBranches.C
Lars Gullik Bjønnes 3b9338a3a8 Whitespace cleanup.
git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@13565 a592a061-630c-0410-9148-cb99ea01b6c8
2006-04-05 23:56:29 +00:00

174 lines
3.5 KiB
C

/**
* \file QDocumentDialog.C
* This file is part of LyX, the document processor.
* Licence details can be found in the file COPYING.
*
* \author Edwin Leuven
* \author Abdelrazak Younes
*
* Full author contact details are available in file CREDITS.
*/
#include <config.h>
#include "QBranches.h"
#include "lcolorcache.h"
#include "validators.h"
#include "qt_helpers.h"
#include "bufferparams.h"
#include "controllers/ControlDocument.h"
#include "support/lstrings.h"
#include <Q3ListView>
#include <QPixmap>
#include <QColor>
#include <QColorDialog>
using std::string;
namespace lyx {
namespace frontend {
QBranches::QBranches(QWidget * parent, Qt::WFlags f)
: QWidget(parent, f)
{
setupUi(this);
branchesLV->setSorting(0);
}
QBranches::~QBranches()
{
}
void QBranches::update(BufferParams const & params)
{
branchlist_ = params.branchlist();
update();
}
void QBranches::update()
{
// store the selected branch
Q3ListViewItem * selItem =
branchesLV->selectedItem();
QString sel_branch;
if (selItem != 0)
sel_branch = selItem->text(0);
branchesLV->clear();
BranchList::const_iterator it = branchlist_.begin();
BranchList::const_iterator const end = branchlist_.end();
for (; it != end; ++it) {
QString const bname = toqstr(it->getBranch());
QString const sel = it->getSelected() ? qt_("Yes") : qt_("No");
Q3ListViewItem * newItem =
new Q3ListViewItem(branchesLV, bname, sel);
QColor const itemcolor = rgb2qcolor(it->getColor());
if (itemcolor.isValid()) {
QPixmap coloritem(30, 10);
coloritem.fill(itemcolor);
newItem->setPixmap(2, coloritem);
}
// restore selected branch
if (bname == sel_branch)
branchesLV->setSelected(newItem, true);
}
emit changed();
}
void QBranches::apply(BufferParams & params) const
{
params.branchlist() = branchlist_;
}
void QBranches::on_addBranchPB_pressed()
{
QString const new_branch = newBranchLE->text();
if (!new_branch.isEmpty()) {
branchlist_.add(fromqstr(new_branch));
newBranchLE->clear();
update();
}
}
void QBranches::on_removePB_pressed()
{
Q3ListViewItem * selItem =
branchesLV->selectedItem();
QString sel_branch;
if (selItem != 0)
sel_branch = selItem->text(0);
if (!sel_branch.isEmpty()) {
branchlist_.remove(fromqstr(sel_branch));
newBranchLE->clear();
update();
}
}
void QBranches::on_activatePB_pressed()
{
Q3ListViewItem * selItem =
branchesLV->selectedItem();
toggleBranch(selItem);
}
void QBranches::on_branchesLV_doubleClicked(Q3ListViewItem * selItem)
{
toggleBranch(selItem);
}
void QBranches::toggleBranch(Q3ListViewItem * selItem)
{
if (selItem == 0)
return;
QString sel_branch = selItem->text(0);
if (!sel_branch.isEmpty()) {
bool const selected = selItem->text(1) == qt_("Yes");
Branch * branch = branchlist_.find(fromqstr(sel_branch));
if (branch && branch->setSelected(!selected)) {
newBranchLE->clear();
update();
}
}
}
void QBranches::on_colorPB_clicked()
{
Q3ListViewItem * selItem =
branchesLV->selectedItem();
QString sel_branch;
if (selItem != 0)
sel_branch = selItem->text(0);
if (!sel_branch.isEmpty()) {
string current_branch = fromqstr(sel_branch);
Branch * branch =
branchlist_.find(current_branch);
if (!branch)
return;
QColor const initial = rgb2qcolor(branch->getColor());
QColor ncol(QColorDialog::getColor(initial, qApp->focusWidget() ? qApp->focusWidget() : qApp->mainWidget()));
if (ncol.isValid()){
// add the color to the branchlist
branch->setColor(fromqstr(ncol.name()));
newBranchLE->clear();
update();
}
}
}
} // namespace frontend
} // namespace lyx