From 0557917aa98c792eb316ce176c97849f3e7bdb3e Mon Sep 17 00:00:00 2001 From: Slávek Banko Date: Thu, 13 Dec 2018 18:35:41 +0100 Subject: Fix structure of directories MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: Slávek Banko --- src/kcpuload.h | 72 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 72 insertions(+) create mode 100644 src/kcpuload.h (limited to 'src/kcpuload.h') diff --git a/src/kcpuload.h b/src/kcpuload.h new file mode 100644 index 0000000..892d7db --- /dev/null +++ b/src/kcpuload.h @@ -0,0 +1,72 @@ + +/*************************************************************************** + * * + * KCPULoad is copyright (c) 1999-2000, Markus Gustavsson * + * (c) 2002, Ben Burton * + * * + * 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. * + * * + ***************************************************************************/ + +#ifndef __KCPULOAD_H +#define __KCPULOAD_H + +#include "statpopup.h" + +class KCPUProc; +class TDEToggleAction; + +/** + * The specific pop-up window used by KCPULoad. + */ +class KCPULoad : public StatPopup { + Q_OBJECT + + +public: + /** + * Constructor and destructor. + */ + KCPULoad(TQWidget *parent = 0, const char *name = 0); + ~KCPULoad(); + +public slots: + /** + * Slots for menu items. + */ + void setSMP(bool); + +protected: + /** + * Overrides from StatPopup. + */ + virtual TQString dockName(int which) const; + virtual TQColor defaultDockColor(int which) const; + virtual void setupCustomActions(); + virtual void insertCustomItems(TDEPopupMenu* menu); + virtual void takeReadingInternal(); + +private: + /** + * Changes the number of readings. + */ + void resizeReadings(int n); + + /** + * Reading raw CPU information. + */ + KCPUProc* proc; + /**< Used to obtain the raw information. */ + bool supportSMP; + /**< Does this system support SMP at all? */ + + /** + * Actions. + */ + TDEToggleAction* actSMP; +}; + +#endif -- cgit v1.2.3