/* -*- c-basic-offset: 4 indent-tabs-mode: nil -*- vi:set ts=8 sts=4 sw=4: */ /* Rosegarden A MIDI and audio sequencer and musical notation editor. Copyright 2000-2011 the Rosegarden development team. 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 "ColourConfigurationPage.h" #include "misc/Debug.h" #include "misc/Strings.h" #include "base/Colour.h" #include "base/ColourMap.h" #include "commands/segment/SegmentColourMapCommand.h" #include "ConfigurationPage.h" #include "document/RosegardenDocument.h" #include "document/CommandHistory.h" #include "gui/general/GUIPalette.h" #include "gui/widgets/ColourTable.h" #include "TabbedConfigurationPage.h" #include "gui/widgets/LineEdit.h" #include "gui/widgets/InputDialog.h" #include #include #include #include #include #include #include #include #include #include #include #include namespace Rosegarden { ColourConfigurationPage::ColourConfigurationPage(RosegardenDocument *doc, QWidget *parent) : TabbedConfigurationPage(doc, parent) { QFrame *frame = new QFrame(m_tabWidget); frame->setContentsMargins(10, 10, 10, 10); QGridLayout *layout = new QGridLayout(frame); layout->setSpacing(5); m_map = m_doc->getComposition().getSegmentColourMap(); m_colourtable = new ColourTable(frame, m_map, m_listmap); m_colourtable->setFixedHeight(280); layout->addWidget(m_colourtable, 0, 0, 0- 0+1, 1- 0+1); QPushButton* addColourButton = new QPushButton(tr("Add New Color"), frame); layout->addWidget(addColourButton, 1, 0, Qt::AlignHCenter); // disable until we can remove it after release addColourButton->setEnabled(false); QPushButton* deleteColourButton = new QPushButton(tr("Delete Color"), frame); layout->addWidget(deleteColourButton, 1, 1, Qt::AlignHCenter); // disable until we can remove it after release deleteColourButton->setEnabled(false); connect(addColourButton, SIGNAL(clicked()), this, SLOT(slotAddNew())); connect(deleteColourButton, SIGNAL(clicked()), this, SLOT(slotDelete())); connect(this, SIGNAL(docColoursChanged()), m_doc, SLOT(slotDocColoursChanged())); connect(m_colourtable, SIGNAL(entryTextChanged(unsigned int, QString)), this, SLOT(slotTextChanged(unsigned int, QString))); connect(m_colourtable, SIGNAL(entryColourChanged(unsigned int, QColor)), this, SLOT(slotColourChanged(unsigned int, QColor))); addTab(frame, tr("Color Map")); } void ColourConfigurationPage::slotTextChanged(unsigned int index, QString string) { m_map.modifyNameByIndex(m_listmap[index], std::string(string.toAscii())); m_colourtable->populate_table(m_map, m_listmap); } void ColourConfigurationPage::slotColourChanged(unsigned int index, QColor color) { m_map.modifyColourByIndex(m_listmap[index], GUIPalette::convertColour(color)); m_colourtable->populate_table(m_map, m_listmap); } void ColourConfigurationPage::apply() { SegmentColourMapCommand *command = new SegmentColourMapCommand(m_doc, m_map); CommandHistory::getInstance()->addCommand(command); RG_DEBUG << "ColourConfigurationPage::apply() emitting docColoursChanged()" << endl; emit docColoursChanged(); } void ColourConfigurationPage::slotAddNew() { QColor temp; bool ok = false; QString newName = InputDialog::getText(this, tr("New Color Name"), tr("Enter new name"), LineEdit::Normal, tr("New"), &ok, 0); bool c_ok; if ((ok == true) && (!newName.isEmpty())) { //QColorDialog box(this, "", true); //int result = box.getColor( temp ); //QColor col = QColorDialog::getColor(); QRgb rgba = QColorDialog::getRgba( 0xFFFFFFFF, &c_ok, 0 ); // 0 == parent if ( c_ok ) { Colour temp2 = GUIPalette::convertColour(temp); m_map.addItem(temp2, qstrtostr(newName)); m_colourtable->populate_table(m_map, m_listmap); } // Else we don't do anything as they either didn't give a name // or didn't give a colour } } void ColourConfigurationPage::slotDelete() { //old: QTableWidgetSelection temp = m_colourtable->selection(0); QList temp = m_colourtable->selectedItems(); // if ((!temp.isActive()) || (temp.topRow() == 0)) //&&& check re-implementation // return ; if( temp.isEmpty() ){ // fail silently return; } unsigned int toDel = (*temp[0]).row(); m_map.deleteItemByIndex(m_listmap[toDel]); m_colourtable->populate_table(m_map, m_listmap); } } #include "ColourConfigurationPage.moc"