diff options
author | tpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da> | 2010-02-19 20:40:48 +0000 |
---|---|---|
committer | tpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da> | 2010-02-19 20:40:48 +0000 |
commit | be4fc77c294a41a0db46ba692fbe45b2045b66c3 (patch) | |
tree | 4e930029faf4f131514b080217ad080fd3a5acb8 /src/detaileddialog.h | |
download | kpowersave-be4fc77c294a41a0db46ba692fbe45b2045b66c3.tar.gz kpowersave-be4fc77c294a41a0db46ba692fbe45b2045b66c3.zip |
Added KDE3 version of kpowersave
git-svn-id: svn://anonsvn.kde.org/home/kde/branches/trinity/applications/kpowersave@1092957 283d02a7-25f6-0310-bc7c-ecb5cbfe19da
Diffstat (limited to 'src/detaileddialog.h')
-rw-r--r-- | src/detaileddialog.h | 113 |
1 files changed, 113 insertions, 0 deletions
diff --git a/src/detaileddialog.h b/src/detaileddialog.h new file mode 100644 index 0000000..3873030 --- /dev/null +++ b/src/detaileddialog.h @@ -0,0 +1,113 @@ +/*************************************************************************** + * Copyright (C) 2006 by Daniel Gollub * + * <dgollub@suse.de> * + * Danny Kukawka * + * <dkukawka@suse.de>, <danny.kukawka@web.de> * + * * + * This program is free software; you can redistribute it and/or modify * + * it under the terms of version 2 of the GNU General Public License * + * 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. * + ***************************************************************************/ + +#ifndef DETAILEDDIALOG_H +#define DETAILEDDIALOG_H + +// own headers: +#include "detailed_Dialog.h" + +// KDE headers: +#include <kprogress.h> + +// other QT headers: +#include <qpixmap.h> + +// own headers: +#include "hardware.h" +#include "hardware_cpu.h" +#include "settings.h" +#include "hardware_batteryCollection.h" + +/*! +* \file detaileddialog.h +* \brief Headerfile for detaileddialog.cpp and the class \ref detaileddialog. +*/ + /*! + * \class detaileddialog + * \brief The class for the detailed information dialog + * \author Daniel Gollub, <dgollub@suse.de> + * \author Danny Kukawka, <dkukawka@suse.de>, <danny.kukawka@web.de> + * \date 2006 + */ +class detaileddialog: public detailed_Dialog { + + Q_OBJECT + +public: + //! default constructor + detaileddialog(HardwareInfo *_hwinfo, QPixmap *_pixmap, Settings *_set, QWidget *parent = 0, const char *name = 0); + //! default destructor + ~detaileddialog(); + +private slots: + //! to close the dialog + void closeDetailedDlg(); + //! to setup the battery progress widgets + void setBattery(); + //! to setup the current power consumtion widgets + void setPowerConsumption(); + //! to setup the CPU progress widgets + void setProcessor(); + //! to setup the Throttling CPU progress widgets + void setProcessorThrottling(); + //! to set the state AC KLed + void setAC(); + //! to set all other information + void setInfos(); + +private: + //! pointer to class HardwareInfo to get cpu/battey/AC information + HardwareInfo *hwinfo; + //! pointer to class CPUInfo to get CPU information + CPUInfo *cpuInfo; + //! pointer to hardware information about the primary batteries. + BatteryCollection *primaryBatteries; + //! pointer to class settinfs to get the current settings + Settings *config; + + //! pointer to the kpowersave class + QPixmap *pixmap; + + //! the numbers of CPUs in the system + int numOfCPUs; + + //! list of progressbars for battery information + /*! + * This QValueList with type KProgress contains the list + * of battery progress widgets. Each element represent + * one battery or batteryslot + */ + QValueList<KProgress *> BatteryPBar; + //! list of progressbars for CPU information + /*! + * This QValueList with type KProgress contains the list + * of CPU progress widgets. Each element represent one CPU. + */ + QValueList<KProgress *> ProcessorPBar; + + //! QGridLayout for Battery progress widgets + QGridLayout* BatteryGridLayout; + //! QGridLayout for Processor progress widgets + QGridLayout* ProcessorGridLayout; +}; + +#endif |