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.
tdeutils/ksim/monitors/disk/ksimdisk.h

157 lines
3.7 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 KSIMDISK_H
#define KSIMDISK_H
#include <tqvaluelist.h>
#include <pluginmodule.h>
#include <stdio.h>
#include <tqptrlist.h>
#include <tqstringlist.h>
#include <tqvaluevector.h>
class TQTextStream;
class TQTimer;
class TDEListView;
class TQVBoxLayout;
class TQVButtonGroup;
class TQRadioButton;
class TQPushButton;
namespace KSim
{
class Chart;
class Progress;
}
class DiskPlugin : public KSim::PluginObject
{
public:
DiskPlugin(const char *name);
~DiskPlugin();
virtual KSim::PluginView *createView(const char *);
virtual KSim::PluginPage *createConfigPage(const char *);
virtual void showAbout();
};
class DiskView : public KSim::PluginView
{
TQ_OBJECT
public:
DiskView(KSim::PluginObject *parent, const char *name);
~DiskView();
virtual void reparseConfig();
private slots:
void updateDisplay();
private:
class DiskData
{
public:
DiskData()
{
major = minor = readIO = readBlocks =
writeIO = writeBlocks = 0;
}
DiskData &operator+=(const DiskData &rhs)
{
total += rhs.total;
readIO += rhs.readIO;
readBlocks += rhs.readBlocks;
writeIO += rhs.writeIO;
writeBlocks += rhs.writeBlocks;
return *this;
}
DiskData &operator-=(const DiskData &rhs)
{
total -= rhs.total;
readIO -= rhs.readIO;
readBlocks -= rhs.readBlocks;
writeIO -= rhs.writeIO;
writeBlocks -= rhs.writeBlocks;
return *this;
}
TQString name;
int major;
int minor;
unsigned long total;
unsigned long readIO;
unsigned long readBlocks;
unsigned long writeIO;
unsigned long writeBlocks;
};
typedef TQValueList<DiskData> DiskList;
typedef TQPair<KSim::Chart *, KSim::Progress *> DiskPair;
void updateData(DiskList &disks);
TQString diskName( int, int ) const;
DiskPair *addDisk();
DiskData findDiskData(const DiskList& diskList, TQString diskName);
void init();
void cleanup();
TQValueVector<TQPair<DiskData, DiskData> > m_data;
TQTimer *m_timer;
bool m_bLinux24;
FILE *m_procFile;
TQTextStream *m_procStream;
TQVBoxLayout *m_layout;
TQPtrList<DiskPair> m_diskList;
int m_firstTime;
bool m_useSeperatly;
TQStringList m_list;
bool m_addAll;
};
class DiskConfig : public KSim::PluginPage
{
TQ_OBJECT
public:
DiskConfig(KSim::PluginObject *parent, const char *name);
~DiskConfig();
virtual void saveConfig();
virtual void readConfig();
private slots:
void addItem();
void removeItem();
private:
TQVBoxLayout *m_layout;
TDEListView *m_listview;
TQPushButton *m_add;
TQPushButton *m_remove;
TQVButtonGroup *m_buttonBox;
TQRadioButton *m_totalButton;
TQRadioButton *m_bothButton;
};
#endif