You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
114 lines
3.3 KiB
114 lines
3.3 KiB
/* ksim - a system monitor for kde
|
|
*
|
|
* Copyright (C) 2001 Robbie Ward <linuxphreak@gmx.co.uk>
|
|
*
|
|
* 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 KSIMPREF_H
|
|
#define KSIMPREF_H
|
|
|
|
#include <kdialogbase.h>
|
|
#include <kdelibs_export.h>
|
|
|
|
class TQFrame;
|
|
class KDesktopFile;
|
|
namespace KSim
|
|
{
|
|
class Config;
|
|
class Plugin;
|
|
class MonitorPrefs;
|
|
class GeneralPrefs;
|
|
class ClockPrefs;
|
|
class UptimePrefs;
|
|
class MemoryPrefs;
|
|
class SwapPrefs;
|
|
class ThemePrefs;
|
|
|
|
class ChangedPlugin
|
|
{
|
|
public:
|
|
ChangedPlugin() : m_name(0) {}
|
|
ChangedPlugin(bool enabled, const TQCString &libname,
|
|
const TQString &name, const TQString &file) : m_enabled(enabled),
|
|
m_libname(libname), m_name(name), m_file(file) {}
|
|
ChangedPlugin(bool enabled, const TQCString &libname,
|
|
const TQString &name, const TQString &file, bool oldState)
|
|
: m_enabled(enabled), m_libname(libname), m_name(name),
|
|
m_file(file), m_oldState(oldState) {}
|
|
|
|
bool isEnabled() const { return m_enabled; }
|
|
bool isDifferent() const { return m_enabled != m_oldState; }
|
|
const TQCString &libName() const { return m_libname; }
|
|
const TQString &name() const { return m_name; }
|
|
const TQString &filename() const { return m_file; }
|
|
|
|
private:
|
|
bool m_enabled;
|
|
TQCString m_libname;
|
|
TQString m_name;
|
|
TQString m_file;
|
|
bool m_oldState;
|
|
};
|
|
|
|
class ChangedPluginList : public TQValueList<ChangedPlugin>
|
|
{
|
|
public:
|
|
ChangedPluginList() {}
|
|
~ChangedPluginList() {}
|
|
};
|
|
|
|
class KDE_EXPORT ConfigDialog : public KDialogBase
|
|
{
|
|
Q_OBJECT
|
|
TQ_OBJECT
|
|
public:
|
|
ConfigDialog(KSim::Config *config, TQWidget *parent, const char *name = 0);
|
|
~ConfigDialog();
|
|
|
|
public slots:
|
|
void removePage(const TQCString &name);
|
|
void createPage(const TQCString &name); // overload
|
|
void createPage(const KSim::Plugin &plugin);
|
|
|
|
signals:
|
|
void reparse(bool, const KSim::ChangedPluginList &);
|
|
|
|
private slots:
|
|
void reload();
|
|
void savePrefs();
|
|
void saveConfig(bool);
|
|
void readConfig();
|
|
void closePrefs();
|
|
void loadPluginConfig();
|
|
void enableButtons();
|
|
void disableButtons();
|
|
|
|
private:
|
|
const KSim::ChangedPlugin &findPlugin(const TQString &name) const;
|
|
|
|
ChangedPluginList m_currentPlugins;
|
|
KSim::MonitorPrefs *m_monPage;
|
|
KSim::GeneralPrefs *m_generalPage;
|
|
KSim::ClockPrefs *m_clockPage;
|
|
KSim::UptimePrefs *m_uptimePage;
|
|
KSim::MemoryPrefs *m_memoryPage;
|
|
KSim::SwapPrefs *m_swapPage;
|
|
KSim::ThemePrefs *m_themePage;
|
|
KSim::Config *m_config;
|
|
};
|
|
}
|
|
#endif
|