2006-03-05 17:24:44 +00:00
|
|
|
/**
|
|
|
|
* \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 "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);
|
|
|
|
string const x11hexname = it->getColor();
|
|
|
|
QColor itemcolor;
|
|
|
|
if (x11hexname[0] == '#')
|
|
|
|
itemcolor.setNamedColor(toqstr(x11hexname));
|
|
|
|
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);
|
2006-03-20 14:40:27 +00:00
|
|
|
}
|
|
|
|
emit changed();
|
2006-03-05 17:24:44 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
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()) {
|
2006-03-20 14:10:31 +00:00
|
|
|
QColor initial("lightskyblue");
|
2006-03-05 17:24:44 +00:00
|
|
|
string current_branch = fromqstr(sel_branch);
|
|
|
|
Branch * branch =
|
|
|
|
branchlist_.find(current_branch);
|
|
|
|
if (!branch)
|
|
|
|
return;
|
|
|
|
|
|
|
|
string x11hexname = branch->getColor();
|
|
|
|
if (x11hexname[0] == '#')
|
|
|
|
initial.setNamedColor(toqstr(x11hexname));
|
|
|
|
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
|