|
|
|
/*
|
|
|
|
Rosegarden
|
|
|
|
A MIDI and audio sequencer and musical notation editor.
|
|
|
|
|
|
|
|
This program is Copyright 2000-2008
|
|
|
|
Guillaume Laurent <glaurent@telegraph-road.org>,
|
|
|
|
Chris Cannam <cannam@all-day-breakfast.com>,
|
|
|
|
Richard Bown <richard.bown@ferventsoftware.com>
|
|
|
|
|
|
|
|
The moral rights of Guillaume Laurent, Chris Cannam, and Richard
|
|
|
|
Bown to claim authorship of this work have been asserted.
|
|
|
|
|
|
|
|
Other copyrights also apply to some parts of this work. Please
|
|
|
|
see the AUTHORS file and individual file headers for details.
|
|
|
|
|
|
|
|
This program is free software; you can redistribute it and/or
|
|
|
|
modify it under the terms of the GNU General Public License as
|
|
|
|
published by the Free Software Foundation; either version 2 of the
|
|
|
|
License, or (at your option) any later version. See the file
|
|
|
|
COPYING included with this distribution for more information.
|
|
|
|
*/
|
|
|
|
|
|
|
|
|
|
|
|
#include "ColourTable.h"
|
|
|
|
|
|
|
|
#include <tdelocale.h>
|
|
|
|
#include "misc/Strings.h"
|
|
|
|
#include "base/ColourMap.h"
|
|
|
|
#include "ColourTableItem.h"
|
|
|
|
#include "gui/general/GUIPalette.h"
|
|
|
|
#include <kcolordialog.h>
|
|
|
|
#include <klineeditdlg.h>
|
|
|
|
#include <tqcolor.h>
|
|
|
|
#include <tqpoint.h>
|
|
|
|
#include <tqstring.h>
|
|
|
|
#include <tqtable.h>
|
|
|
|
#include <tqwidget.h>
|
|
|
|
|
|
|
|
|
|
|
|
namespace Rosegarden
|
|
|
|
{
|
|
|
|
|
|
|
|
ColourTable::ColourTable
|
|
|
|
(TQWidget *parent, ColourMap &input, ColourList &list)
|
|
|
|
: TQTable(1, 2, parent, "RColourTable")
|
|
|
|
{
|
|
|
|
setSorting(FALSE);
|
|
|
|
setSelectionMode(TQTable::SingleRow);
|
|
|
|
horizontalHeader()->setLabel(0, i18n("Name"));
|
|
|
|
horizontalHeader()->setLabel(1, i18n("Color"));
|
|
|
|
populate_table(input, list);
|
|
|
|
connect(this, TQT_SIGNAL(doubleClicked(int, int, int, const TQPoint&)),
|
|
|
|
TQT_SLOT(slotEditEntry(int, int)));
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
ColourTable::slotEditEntry(int row, int col)
|
|
|
|
{
|
|
|
|
|
|
|
|
switch (col) {
|
|
|
|
case 0: {
|
|
|
|
if (row == 0)
|
|
|
|
return ;
|
|
|
|
bool ok = false;
|
|
|
|
TQString newName = KLineEditDlg::getText(i18n("Modify Color Name"), i18n("Enter new name"),
|
|
|
|
item(row, col)->text(), &ok);
|
|
|
|
|
|
|
|
if ((ok == true) && (!newName.isEmpty())) {
|
|
|
|
emit entryTextChanged(row, newName);
|
|
|
|
return ;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
case 1: {
|
|
|
|
TQColor temp = m_colours[row];
|
|
|
|
KColorDialog box(this, "", true);
|
|
|
|
|
|
|
|
int result = box.getColor(temp);
|
|
|
|
|
|
|
|
if (result == KColorDialog::Accepted) {
|
|
|
|
emit entryColourChanged(row, temp);
|
|
|
|
return ;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
default: // Should never happen
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
ColourTable::populate_table(ColourMap &input, ColourList &list)
|
|
|
|
{
|
|
|
|
m_colours.reserve(input.size());
|
|
|
|
setNumRows(input.size());
|
|
|
|
|
|
|
|
TQString name;
|
|
|
|
|
|
|
|
unsigned int i = 0;
|
|
|
|
|
|
|
|
for (RCMap::const_iterator it = input.begin(); it != input.end(); ++it) {
|
|
|
|
if (it->second.second == std::string(""))
|
|
|
|
name = i18n("Default Color");
|
|
|
|
else
|
|
|
|
name = strtoqstr(it->second.second);
|
|
|
|
|
|
|
|
TQTableItem *text = new TQTableItem(
|
|
|
|
dynamic_cast<TQTable*>(this),
|
|
|
|
TQTableItem::Never, name);
|
|
|
|
|
|
|
|
setItem(i, 0, text);
|
|
|
|
|
|
|
|
list[i] = it->first;
|
|
|
|
m_colours[i] = GUIPalette::convertColour(it->second.first);
|
|
|
|
|
|
|
|
ColourTableItem *temp = new ColourTableItem(this, m_colours[i]);
|
|
|
|
setItem(i, 1, temp);
|
|
|
|
|
|
|
|
verticalHeader()->setLabel(i, TQString::number(it->first));
|
|
|
|
|
|
|
|
++i;
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|
|
|
|
#include "ColourTable.moc"
|