kde-playground/kdepim/knotes/configdialog/knotedisplayconfigwidget.cpp
2015-04-14 21:49:29 +00:00

144 lines
4.9 KiB
C++

/*
Copyright (c) 2013, 2014 Montel Laurent <montel@kde.org>
This program is free software; you can redistribute it and/or modify it
under the terms of the GNU General Public License, version 2, as
published by the Free Software Foundation.
This program 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 this program; if not, write to the Free Software Foundation, Inc.,
51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
*/
#include "knotedisplayconfigwidget.h"
#include "noteshared/attributes/notedisplayattribute.h"
#include <KLocalizedString>
#include <KColorButton>
#include <KIntNumInput>
#include <KDialog>
#include <QGridLayout>
#include <QLabel>
#include <QCheckBox>
KNoteDisplayConfigWidget::KNoteDisplayConfigWidget( bool defaults, QWidget *parent )
: QWidget( parent ),
kcfg_FgColor(0),
kcfg_BgColor(0),
kcfg_ShowInTaskbar(0),
kcfg_RememberDesktop(0),
kcfg_Width(0),
kcfg_Height(0)
{
QGridLayout *layout = new QGridLayout( this );
layout->setSpacing( KDialog::spacingHint() );
layout->setMargin( defaults ? KDialog::marginHint() : 0 );
QLabel *label_FgColor = new QLabel( i18n( "&Text color:" ),this );
label_FgColor->setObjectName( QLatin1String("label_FgColor") );
layout->addWidget( label_FgColor, 0, 0 );
kcfg_FgColor = new KColorButton( this );
kcfg_FgColor->setObjectName( QLatin1String("kcfg_FgColor") );
label_FgColor->setBuddy( kcfg_FgColor );
layout->addWidget( kcfg_FgColor, 0, 1 );
QLabel *label_BgColor = new QLabel( i18n( "&Background color:" ),
this );
label_BgColor->setObjectName( QLatin1String("label_BgColor") );
layout->addWidget( label_BgColor, 1, 0 );
kcfg_BgColor = new KColorButton( this );
kcfg_BgColor->setObjectName( QLatin1String("kcfg_BgColor") );
label_BgColor->setBuddy( kcfg_BgColor );
layout->addWidget( kcfg_BgColor, 1, 1 );
kcfg_ShowInTaskbar =
new QCheckBox( i18n( "&Show note in taskbar" ), this );
kcfg_ShowInTaskbar->setObjectName( QLatin1String("kcfg_ShowInTaskbar") );
#ifdef Q_WS_X11
kcfg_RememberDesktop =
new QCheckBox( i18n( "&Remember desktop" ), this );
kcfg_RememberDesktop->setObjectName( QLatin1String("kcfg_RememberDesktop") );
#endif
if ( defaults ) {
QLabel *label_Width = new QLabel( i18n( "Default &width:" ), this );
layout->addWidget( label_Width, 2, 0 );
kcfg_Width = new KIntNumInput( this );
kcfg_Width->setObjectName( QLatin1String("kcfg_Width") );
label_Width->setBuddy( kcfg_Width );
kcfg_Width->setRange( 50, 2000, 10 );
kcfg_Width->setSliderEnabled( false );
layout->addWidget( kcfg_Width, 2, 1 );
QLabel *label_Height = new QLabel( i18n( "Default &height:" ),
this );
layout->addWidget( label_Height, 3, 0 );
kcfg_Height = new KIntNumInput( this );
kcfg_Height->setObjectName( QLatin1String("kcfg_Height") );
kcfg_Height->setRange( 50, 2000, 10 );
kcfg_Height->setSliderEnabled( false );
label_Height->setBuddy( kcfg_Height );
layout->addWidget( kcfg_Height, 3, 1 );
layout->addWidget( kcfg_ShowInTaskbar, 4, 0 );
#ifdef Q_WS_X11
layout->addWidget( kcfg_RememberDesktop, 5, 0 );
#endif
} else {
layout->addWidget( kcfg_ShowInTaskbar, 2, 0 );
#ifdef Q_WS_X11
layout->addWidget( kcfg_RememberDesktop, 3, 0 );
#endif
}
layout->setRowStretch(4,1);
}
KNoteDisplayConfigWidget::~KNoteDisplayConfigWidget()
{
}
void KNoteDisplayConfigWidget::load(NoteShared::NoteDisplayAttribute *attr)
{
if (attr) {
kcfg_FgColor->setColor(attr->foregroundColor());
kcfg_BgColor->setColor(attr->backgroundColor());
kcfg_ShowInTaskbar->setChecked(attr->showInTaskbar());
if (kcfg_RememberDesktop) {
kcfg_RememberDesktop->setChecked(attr->rememberDesktop());
}
if (kcfg_Height) {
kcfg_Height->setValue(attr->size().height());
}
if (kcfg_Width) {
kcfg_Width->setValue(attr->size().width());
}
}
}
void KNoteDisplayConfigWidget::save(NoteShared::NoteDisplayAttribute *attr)
{
if (attr) {
attr->setForegroundColor(kcfg_FgColor->color());
attr->setBackgroundColor(kcfg_BgColor->color());
attr->setShowInTaskbar(kcfg_ShowInTaskbar->isChecked());
if (kcfg_RememberDesktop) {
attr->setRememberDesktop(kcfg_RememberDesktop->isChecked());
}
if (kcfg_Height && kcfg_Width) {
attr->setSize(QSize(kcfg_Width->value(), kcfg_Height->value()));
}
}
}