summaryrefslogtreecommitdiff
path: root/gui/Settings/PkSettings.cpp
blob: 100e85278663f9acdc4682f1768772fb0e1b08df (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
/***************************************************************************
 *   Copyright (C) 2008 by Daniel Nicoletti   *
 *   mirttex85-pk@yahoo.com.br   *
 *                                                                         *
 *   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.                                   *
 *                                                                         *
 *   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.,                                       *
 *   59 Temple Place - Suite 330, Boston, MA  02111-1307, USA.             *
 ***************************************************************************/

#include "PkSettings.h"
#include <KDebug>
#include <KConfig>
#include <KGlobal>

// 1 Hour = 3600 in Epoch
// 1 Day = 86400 in Epoch (24 Hours)
// 1 Week = 604800 in Epoch (7 Days / 168 Hours)
// 1 Month = 2628000 in Epoch

 
PkSettings::PkSettings( QWidget *parent ) : QWidget( parent )
{
    setupUi( this );
//     m_kcfDM = new KConfigDialogManager(this, m_pk_cfgSkell = new PkConfigSkell());
    connect( notifyUpdatesCB, SIGNAL(stateChanged(int)), this, SLOT(checkChanges(int)) );
    connect( notifyLongTasksCB, SIGNAL(stateChanged(int)), this, SLOT(checkChanges(int)) );
}

void PkSettings::checkChanges(int)
{
    kDebug() << "checkChanges " << notifyUpdatesCB->checkState();
    KConfig config("KPackageKit");
    KConfigGroup smartIconGroup( &config, "SmartIcon" );
    if ( notifyUpdatesCB->checkState() !=
         (Qt::CheckState) smartIconGroup.readEntry( "notifyUpdatesCB", (int) Qt::Checked)
        ||
         notifyLongTasksCB->checkState() !=
         (Qt::CheckState) smartIconGroup.readEntry( "notifyLongTasksCB", (int) Qt::Checked) )
        emit(changed(true));
    else
        emit(changed(false));
}

void PkSettings::load()
{
    kDebug() << "load";
    KConfig config("KPackageKit");
    KConfigGroup smartIconGroup( &config, "SmartIcon" );
    notifyUpdatesCB->setCheckState( (Qt::CheckState) smartIconGroup.readEntry( "notifyUpdatesCB",
        (int) Qt::Checked) );
    notifyLongTasksCB->setCheckState( (Qt::CheckState) smartIconGroup.readEntry( "notifyLongTasksCB",
        (int) Qt::Checked) );
}

void PkSettings::save()
{
    kDebug() << "save";
    KConfig config("KPackageKit");
    KConfigGroup smartIconGroup( &config, "SmartIcon" );
    smartIconGroup.writeEntry( "notifyUpdatesCB", (int) notifyUpdatesCB->checkState() );
    smartIconGroup.writeEntry( "notifyLongTasksCB", (int) notifyLongTasksCB->checkState() );
config.sync();
}

void PkSettings::defaults()
{
    kDebug() << "defaults";
    notifyUpdatesCB->setCheckState(Qt::Checked);
    notifyLongTasksCB->setCheckState(Qt::Checked);
    emit(checkChanges(0));
}

#include "PkSettings.moc"