parent
176b50575b
commit
645d8d0f19
@ -0,0 +1,7 @@
|
|||||||
|
INCLUDES = -I$(top_srcdir)/ksystemlog/src -I$(top_builddir)/ksystemlog/src/config $(all_includes)
|
||||||
|
METASOURCES = AUTO
|
||||||
|
|
||||||
|
noinst_LTLIBRARIES = libksystemlog_mail.la
|
||||||
|
libksystemlog_mail_la_LDFLAGS = $(all_libraries)
|
||||||
|
libksystemlog_mail_la_SOURCES = mailOptions.cpp
|
||||||
|
noinst_HEADERS = mailOptions.h
|
@ -0,0 +1,100 @@
|
|||||||
|
/***************************************************************************
|
||||||
|
* Copyright (C) 2005 by Nicolas Ternisien *
|
||||||
|
* nicolas.ternisien@gmail.com *
|
||||||
|
* *
|
||||||
|
* 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., *
|
||||||
|
* 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. *
|
||||||
|
***************************************************************************/
|
||||||
|
|
||||||
|
//TQt includes
|
||||||
|
#include <tqlayout.h>
|
||||||
|
#include <tqvgroupbox.h>
|
||||||
|
#include <tqbuttongroup.h>
|
||||||
|
#include <tqlabel.h>
|
||||||
|
#include <tqpushbutton.h>
|
||||||
|
#include <tqvbox.h>
|
||||||
|
#include <tqhbox.h>
|
||||||
|
|
||||||
|
//KDE includes
|
||||||
|
#include <klocale.h>
|
||||||
|
#include <kactioncollection.h>
|
||||||
|
#include <kbuttonbox.h>
|
||||||
|
#include <klistbox.h>
|
||||||
|
#include <kfiledialog.h>
|
||||||
|
#include <kurl.h>
|
||||||
|
#include <kmessagebox.h>
|
||||||
|
#include <kiconloader.h>
|
||||||
|
|
||||||
|
#include <kdebug.h>
|
||||||
|
|
||||||
|
//Project includes
|
||||||
|
#include "mailOptions.h"
|
||||||
|
#include "ksystemlogConfig.h"
|
||||||
|
|
||||||
|
MailOptions::MailOptions(TQWidget *parent) :
|
||||||
|
TQWidget(parent)
|
||||||
|
{
|
||||||
|
|
||||||
|
TQHBoxLayout *layout = new TQHBoxLayout(this);
|
||||||
|
layout->setAutoAdd(true);
|
||||||
|
|
||||||
|
TQString description= i18n("<qt><p>These files will be analyzed to display <b>Mail Logs</b>. This list also determine the order in which the files are read.</p></qt>");
|
||||||
|
fileList=new SpecificFileList(this, description);
|
||||||
|
|
||||||
|
connect(fileList, TQT_SIGNAL(fileListChanged(int)), this, TQT_SLOT(slotFileListChanged(int)));
|
||||||
|
|
||||||
|
readConfig();
|
||||||
|
|
||||||
|
|
||||||
|
}
|
||||||
|
|
||||||
|
MailOptions::~MailOptions() {
|
||||||
|
|
||||||
|
}
|
||||||
|
|
||||||
|
bool MailOptions::isValid() {
|
||||||
|
if (fileList->count()>0)
|
||||||
|
return(true);
|
||||||
|
else
|
||||||
|
return(false);
|
||||||
|
}
|
||||||
|
|
||||||
|
void MailOptions::slotFileListChanged(int itemLeft) {
|
||||||
|
if (itemLeft==0)
|
||||||
|
emit optionsChanged(false);
|
||||||
|
else
|
||||||
|
emit optionsChanged(true);
|
||||||
|
}
|
||||||
|
|
||||||
|
void MailOptions::saveConfig() {
|
||||||
|
kdDebug() << "Saving config from Daemon Options..." << endl;
|
||||||
|
|
||||||
|
TQStringList stringList;
|
||||||
|
TQValueList<int> valueList;
|
||||||
|
|
||||||
|
fileList->saveConfig(stringList, valueList);
|
||||||
|
|
||||||
|
KSystemLogConfig::setMailPaths(stringList);
|
||||||
|
KSystemLogConfig::setMailLevels(valueList);
|
||||||
|
}
|
||||||
|
|
||||||
|
void MailOptions::readConfig() {
|
||||||
|
TQStringList stringList=KSystemLogConfig::mailPaths();
|
||||||
|
TQValueList<int> valueList=KSystemLogConfig::mailLevels();
|
||||||
|
|
||||||
|
fileList->readConfig(stringList, valueList);
|
||||||
|
}
|
||||||
|
|
||||||
|
#include "mailOptions.moc"
|
@ -0,0 +1,60 @@
|
|||||||
|
/***************************************************************************
|
||||||
|
* Copyright (C) 2005 by Nicolas Ternisien *
|
||||||
|
* nicolas.ternisien@gmail.com *
|
||||||
|
* *
|
||||||
|
* 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., *
|
||||||
|
* 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. *
|
||||||
|
***************************************************************************/
|
||||||
|
|
||||||
|
#ifndef _MAIL_OPTIONS_H_
|
||||||
|
#define _MAIL_OPTIONS_H_
|
||||||
|
|
||||||
|
#include <tqframe.h>
|
||||||
|
#include <tqspinbox.h>
|
||||||
|
|
||||||
|
#include <kpopupmenu.h>
|
||||||
|
#include <kconfig.h>
|
||||||
|
#include <kdialogbase.h>
|
||||||
|
#include <kurlrequester.h>
|
||||||
|
#include <kurl.h>
|
||||||
|
#include <kaction.h>
|
||||||
|
|
||||||
|
#include "globals.h"
|
||||||
|
#include "specificFileList.h"
|
||||||
|
#include "logLevel.h"
|
||||||
|
|
||||||
|
class MailOptions : public TQWidget {
|
||||||
|
Q_OBJECT
|
||||||
|
TQ_OBJECT
|
||||||
|
public:
|
||||||
|
MailOptions(TQWidget *parent = 0);
|
||||||
|
~MailOptions();
|
||||||
|
|
||||||
|
bool isValid();
|
||||||
|
public slots:
|
||||||
|
void saveConfig();
|
||||||
|
void readConfig();
|
||||||
|
|
||||||
|
void slotFileListChanged(int itemLeft);
|
||||||
|
|
||||||
|
signals:
|
||||||
|
void optionsChanged(bool valid);
|
||||||
|
|
||||||
|
private:
|
||||||
|
|
||||||
|
SpecificFileList* fileList;
|
||||||
|
};
|
||||||
|
|
||||||
|
#endif
|
Loading…
Reference in new issue