klog/setuppagecolors.cpp
2015-08-17 15:54:45 +00:00

211 lines
7.6 KiB
C++

/***************************************************************************
setuppagecolors.cpp - description
-------------------
begin : nov 2011
copyright : (C) 2011 by Jaime Robles
email : jaime@robles.es
***************************************************************************/
/*****************************************************************************
* This file is part of KLog. *
* *
* KLog 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 3 of the License, or *
* (at your option) any later version. *
* *
* KLog is distributed in the hope that it will be useful, *
* but WITHOUT ANY WARRANTY; without even the implied warranty of *
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the *
* GNU General Public License for more details. *
* *
* You should have received a copy of the GNU General Public License *
* along with KLog. If not, see <http://www.gnu.org/licenses/>. *
* *
*****************************************************************************/
//#include <QDebug>
#include "setuppagecolors.h"
SetupPageColors::SetupPageColors(QWidget *parent) : QWidget(parent)
{
//qDebug() << "SetupPageColors::SetupPageColors" << endl;
newOneColorButton = new QPushButton;
neededColorButton = new QPushButton;
workedColorButton = new QPushButton;
confirmedColorButton = new QPushButton;
defaultColorButton = new QPushButton;
newOneColorButton->setText(tr("New One"));
neededColorButton->setText(tr("Needed in this band"));
workedColorButton->setText(tr("Worked in this band"));
confirmedColorButton->setText(tr("Confirmed in this band"));
defaultColorButton->setText(tr("Default"));
newOneColorButton->setAutoFillBackground ( true );
QVBoxLayout *buttonsLayout = new QVBoxLayout;
buttonsLayout->addWidget(newOneColorButton);
buttonsLayout->addWidget(neededColorButton);
buttonsLayout->addWidget(workedColorButton);
buttonsLayout->addWidget(confirmedColorButton);
buttonsLayout->addWidget(defaultColorButton);
setLayout(buttonsLayout);
connect(newOneColorButton, SIGNAL(clicked()), this, SLOT(slotNewOneColorButtonClicked()) );
connect(neededColorButton, SIGNAL(clicked()), this, SLOT(slotNeededColorButtonClicked()) );
connect(workedColorButton, SIGNAL(clicked()), this, SLOT(slotWorkedColorButtonClicked()) );
connect(confirmedColorButton, SIGNAL(clicked()), this, SLOT(slotConfirmedColorButtonClicked()) );
connect(defaultColorButton, SIGNAL(clicked()), this, SLOT(slotDefaultColorButtonClicked()) );
setNewOneColor("#FF0000");
setNeededColor("#FF8C00");
setWorkedColor("#FFD700");
setConfirmedColor("#32CD32");
setDefaultColor("#00BFFF");
}
SetupPageColors::~SetupPageColors()
{;
}
void SetupPageColors::slotNewOneColorButtonClicked()
{
//qDebug() << "SetupPageColors::slotNewOneColorButtonClicked " << endl;
QString style = "* { background-color: ";
style = style + (giveColor(newOneColorButton->palette().color(QPalette::Button))).name();
style = style + "; }";
newOneColorButton->setStyleSheet(style);
}
void SetupPageColors::slotNeededColorButtonClicked ()
{
//qDebug() << "SetupPageColors::slotNeededColorButtonClicked " << endl;
QString style = "* { background-color: ";
style = style + (giveColor(neededColorButton->palette().color(QPalette::Button))).name();
style = style + "; }";
neededColorButton->setStyleSheet(style);
}
void SetupPageColors::slotWorkedColorButtonClicked ()
{
//qDebug() << "SetupPageColors::slotWorkedColorButtonClicked " << endl;
QString style = "* { background-color: ";
style = style + (giveColor(workedColorButton->palette().color(QPalette::Button))).name();
style = style + "; }";
workedColorButton->setStyleSheet(style);
}
void SetupPageColors::slotConfirmedColorButtonClicked ()
{
//qDebug() << "SetupPageColors::slotNeededColorButtonClicked " << endl;
QString style = "* { background-color: ";
style = style + (giveColor(confirmedColorButton->palette().color(QPalette::Button))).name();
style = style + "; }";
confirmedColorButton->setStyleSheet(style);
}
void SetupPageColors::slotDefaultColorButtonClicked()
{
//qDebug() << "SetupPageColors::slotDefaultColorButtonClicked " << endl;
QString style = "* { background-color: ";
style = style + (giveColor(defaultColorButton->palette().color(QPalette::Button))).name();
style = style + "; }";
defaultColorButton->setStyleSheet(style);
}
QColor SetupPageColors::giveColor (QColor c)
{
// Receives the actual color, shows the user a color picker and returns the color that the user selects.
QColor colorb;
color = c;
colorb = color;
color = QColorDialog::getColor (color, this, tr("Choose a color"));
if (color.isValid ())
{
//qDebug() << "SetupPageColors::giveColor valid color: " << color.name() << endl;
return color;
}
else
{
//qDebug() << "SetupPageColors::giveColor NOT valid color" << endl;
return colorb;
}
}
QString SetupPageColors::getNewOneColor()
{
//qDebug() << "SetupPageColors::getNewOneColor: " << (newOneColorButton->palette().color(QPalette::Button)).name() << endl;
return (newOneColorButton->palette().color(QPalette::Button)).name();
}
QString SetupPageColors::getNeededColor()
{
return (neededColorButton->palette().color(QPalette::Button)).name();
}
QString SetupPageColors::getWorkedColor()
{
return (workedColorButton->palette().color(QPalette::Button)).name();
}
QString SetupPageColors::getConfirmedColor()
{
return (confirmedColorButton->palette().color(QPalette::Button)).name();
}
QString SetupPageColors::getDefaultColor()
{
return (defaultColorButton->palette().color(QPalette::Button)).name();
}
void SetupPageColors::setNewOneColor(const QString c)
{
QString style = "* { background-color: ";
style = style + c;
style = style + "; }";
newOneColorButton->setStyleSheet(style);
}
void SetupPageColors::setNeededColor(const QString c)
{
QString style = "* { background-color: ";
style = style + c;
style = style + "; }";
neededColorButton->setStyleSheet(style);
}
void SetupPageColors::setWorkedColor(const QString c)
{
QString style = "* { background-color: ";
style = style + c;
style = style + "; }";
workedColorButton->setStyleSheet(style);
}
void SetupPageColors::setConfirmedColor(const QString c)
{
QString style = "* { background-color: ";
style = style + c;
style = style + "; }";
confirmedColorButton->setStyleSheet(style);
}
void SetupPageColors::setDefaultColor(const QString c)
{
QString style = "* { background-color: ";
style = style + c;
style = style + "; }";
defaultColorButton->setStyleSheet(style);
}