summaryrefslogtreecommitdiff
path: root/noncore/settings/sysinfo/processinfo.h
authordrw <drw>2002-12-20 01:36:55 (UTC)
committer drw <drw>2002-12-20 01:36:55 (UTC)
commit3e556ed5f8c8b1236b9c6155b609930103d17b21 (patch) (unidiff)
tree859cc1e4f3097276ab77cac4cff5b24fde26ba11 /noncore/settings/sysinfo/processinfo.h
parent876e1a4724a7bd75dc642e295de354241096e028 (diff)
downloadopie-3e556ed5f8c8b1236b9c6155b609930103d17b21.zip
opie-3e556ed5f8c8b1236b9c6155b609930103d17b21.tar.gz
opie-3e556ed5f8c8b1236b9c6155b609930103d17b21.tar.bz2
1. Added check for /sbin/modinfo, and if exists will display module details again. 2. Combined process and module detail viewers into one common class. 3. Move process signal sending to main process tab.
Diffstat (limited to 'noncore/settings/sysinfo/processinfo.h') (more/less context) (ignore whitespace changes)
-rw-r--r--noncore/settings/sysinfo/processinfo.h17
1 files changed, 12 insertions, 5 deletions
diff --git a/noncore/settings/sysinfo/processinfo.h b/noncore/settings/sysinfo/processinfo.h
index 24b190e..687e080 100644
--- a/noncore/settings/sysinfo/processinfo.h
+++ b/noncore/settings/sysinfo/processinfo.h
@@ -20,25 +20,32 @@
20#ifndef PROCESSINFO_H 20#ifndef PROCESSINFO_H
21#define PROCESSINFO_H 21#define PROCESSINFO_H
22 22
23#include <qwidget.h> 23#include <qwidget.h>
24#include <qlistview.h> 24#include <qlistview.h>
25 25
26#include "processdetail.h" 26class Detail;
27class QComboBox;
28class QListView;
29class QListViewItem;
27 30
28class ProcessInfo : public QWidget 31class ProcessInfo : public QWidget
29{ 32{
30 Q_OBJECT 33 Q_OBJECT
31public: 34public:
32 ProcessInfo( QWidget *parent = 0, const char *name = 0, WFlags f = 0 ); 35 ProcessInfo( QWidget *parent = 0, const char *name = 0, WFlags f = 0 );
33 ~ProcessInfo(); 36 ~ProcessInfo();
34 37
38private:
39 QListView* ProcessView;
40 QComboBox* SignalCB;
41 QPushButton* SendButton;
42
43 Detail *ProcessDtl;
44
35private slots: 45private slots:
36 void updateData(); 46 void updateData();
47 void slotSendClicked();
37 void viewProcess( QListViewItem * ); 48 void viewProcess( QListViewItem * );
38
39private:
40 QListView* ProcessView;
41 ProcessDetail *ProcessDtl;
42}; 49};
43 50
44#endif 51#endif