~ubuntu-branches/ubuntu/dapper/ksystemlog/dapper

« back to all changes in this revision

Viewing changes to ksystemlog/src/cron/cronOptions.cpp

  • Committer: Bazaar Package Importer
  • Author(s): Jonathan Riddell
  • Date: 2005-07-07 16:00:00 UTC
  • Revision ID: james.westby@ubuntu.com-20050707160000-a104d769ph3yfkg4
Tags: upstream-0.3.2
ImportĀ upstreamĀ versionĀ 0.3.2

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
/***************************************************************************
 
2
 *   Copyright (C) 2005 by Nicolas Ternisien                               *
 
3
 *   nicolas.ternisien@gmail.com                                           *
 
4
 *                                                                         *
 
5
 *   This program is free software; you can redistribute it and/or modify  *
 
6
 *   it under the terms of the GNU General Public License as published by  *
 
7
 *   the Free Software Foundation; either version 2 of the License, or     *
 
8
 *   (at your option) any later version.                                   *
 
9
 *                                                                         *
 
10
 *   This program is distributed in the hope that it will be useful,       *
 
11
 *   but WITHOUT ANY WARRANTY; without even the implied warranty of        *
 
12
 *   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the         *
 
13
 *   GNU General Public License for more details.                          *
 
14
 *                                                                         *
 
15
 *   You should have received a copy of the GNU General Public License     *
 
16
 *   along with this program; if not, write to the                         *
 
17
 *   Free Software Foundation, Inc.,                                       *
 
18
 *   59 Temple Place - Suite 330, Boston, MA  02111-1307, USA.             *
 
19
 ***************************************************************************/
 
20
 
 
21
//Qt includes
 
22
#include <qlayout.h>
 
23
#include <qvgroupbox.h>
 
24
#include <qbuttongroup.h>
 
25
#include <qlabel.h>
 
26
#include <qpushbutton.h>
 
27
#include <qvbox.h>
 
28
#include <qhbox.h>
 
29
 
 
30
//KDE includes
 
31
#include <klocale.h>
 
32
#include <kactioncollection.h>
 
33
#include <kbuttonbox.h>
 
34
#include <klistbox.h>
 
35
#include <kfiledialog.h>
 
36
#include <kurl.h>
 
37
#include <kmessagebox.h>
 
38
#include <kiconloader.h>
 
39
#include <kdebug.h>
 
40
 
 
41
//Project includes
 
42
#include "cronOptions.h"
 
43
#include "ksystemlogConfig.h"
 
44
 
 
45
CronOptions::CronOptions(QWidget *parent) : 
 
46
        QWidget(parent) 
 
47
        {
 
48
 
 
49
        QHBoxLayout *layout = new QHBoxLayout(this);
 
50
        layout->setAutoAdd(true);
 
51
 
 
52
        QString description= i18n("<qt><p>These files will be analyzed to display <b>Cron Logs</b> (i.e. planned tasks logs). This list also determines the order in which the files are read.</p></qt>");
 
53
        fileList=new SpecificFileList(this, description);
 
54
        
 
55
        connect(fileList, SIGNAL(fileListChanged(int)), this, SLOT(slotFileListChanged(int)));
 
56
 
 
57
        readConfig();
 
58
        
 
59
 
 
60
}
 
61
 
 
62
CronOptions::~CronOptions() {
 
63
        //TODO Delete fileList
 
64
}
 
65
 
 
66
bool CronOptions::isValid() {
 
67
        if (fileList->count()>0)
 
68
                return(true);
 
69
        else
 
70
                return(false);
 
71
}
 
72
 
 
73
void CronOptions::slotFileListChanged(int itemLeft) {
 
74
        if (itemLeft==0)
 
75
                emit optionsChanged(false);
 
76
        else
 
77
                emit optionsChanged(true);
 
78
}
 
79
 
 
80
void CronOptions::saveConfig() {
 
81
        kdDebug() << "Saving config from Cron Options..." << endl;
 
82
        
 
83
        QStringList stringList;
 
84
        QValueList<int> valueList;
 
85
                
 
86
        fileList->saveConfig(stringList, valueList);
 
87
        
 
88
        KSystemLogConfig::setCronPaths(stringList);
 
89
        KSystemLogConfig::setCronLevels(valueList);
 
90
}
 
91
 
 
92
void CronOptions::readConfig() {
 
93
        QStringList stringList=KSystemLogConfig::cronPaths();
 
94
        QValueList<int> valueList=KSystemLogConfig::cronLevels();
 
95
        
 
96
        fileList->readConfig(stringList, valueList);
 
97
}
 
98
 
 
99
#include "cronOptions.moc"