author | bipolar <bipolar> | 2002-03-04 23:55:15 (UTC) |
---|---|---|
committer | bipolar <bipolar> | 2002-03-04 23:55:15 (UTC) |
commit | 25be6fb98284dfa0c549d30db5b64c09798ee36d (patch) (unidiff) | |
tree | 6dd94effc974c4dbbdd3bf92ebcf120e96f246e5 | |
parent | ac86cb5631879684a1211c34659dc19f3d79c6d9 (diff) | |
download | opie-25be6fb98284dfa0c549d30db5b64c09798ee36d.zip opie-25be6fb98284dfa0c549d30db5b64c09798ee36d.tar.gz opie-25be6fb98284dfa0c549d30db5b64c09798ee36d.tar.bz2 |
committed by ljp: took out mulitple instances of the same class
-rw-r--r-- | noncore/settings/sysinfo/processinfo.h | 82 |
1 files changed, 0 insertions, 82 deletions
diff --git a/noncore/settings/sysinfo/processinfo.h b/noncore/settings/sysinfo/processinfo.h index f2eedc9..e5bacca 100644 --- a/noncore/settings/sysinfo/processinfo.h +++ b/noncore/settings/sysinfo/processinfo.h | |||
@@ -1,123 +1,41 @@ | |||
1 | /********************************************************************** | 1 | /********************************************************************** |
2 | ** ProcessInfo | 2 | ** ProcessInfo |
3 | ** | 3 | ** |
4 | ** Display process information | 4 | ** Display process information |
5 | ** | 5 | ** |
6 | ** Copyright (C) 2002, Dan Williams | 6 | ** Copyright (C) 2002, Dan Williams |
7 | ** williamsdr@acm.org | 7 | ** williamsdr@acm.org |
8 | ** http://draknor.net | 8 | ** http://draknor.net |
9 | ** | 9 | ** |
10 | ** This file may be distributed and/or modified under the terms of the | 10 | ** This file may be distributed and/or modified under the terms of the |
11 | ** GNU General Public License version 2 as published by the Free Software | 11 | ** GNU General Public License version 2 as published by the Free Software |
12 | ** Foundation and appearing in the file LICENSE.GPL included in the | 12 | ** Foundation and appearing in the file LICENSE.GPL included in the |
13 | ** packaging of this file. | 13 | ** packaging of this file. |
14 | ** | 14 | ** |
15 | ** This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING THE | 15 | ** This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING THE |
16 | ** WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. | 16 | ** WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. |
17 | ** | 17 | ** |
18 | **********************************************************************/ | 18 | **********************************************************************/ |
19 | 19 | ||
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 | class ProcessInfo : public QWidget | 26 | class ProcessInfo : public QWidget |
27 | { | 27 | { |
28 | Q_OBJECT | 28 | Q_OBJECT |
29 | public: | 29 | public: |
30 | ProcessInfo( QWidget *parent = 0, const char *name = 0, WFlags f = 0 ); | 30 | ProcessInfo( QWidget *parent = 0, const char *name = 0, WFlags f = 0 ); |
31 | ~ProcessInfo(); | 31 | ~ProcessInfo(); |
32 | 32 | ||
33 | private slots: | 33 | private slots: |
34 | void updateData(); | 34 | void updateData(); |
35 | void viewProcess(QListViewItem *); | 35 | void viewProcess(QListViewItem *); |
36 | 36 | ||
37 | private: | 37 | private: |
38 | QListView* ProcessView; | 38 | QListView* ProcessView; |
39 | }; | 39 | }; |
40 | 40 | ||
41 | #endif | 41 | #endif |
42 | /********************************************************************** | ||
43 | ** ProcessInfo | ||
44 | ** | ||
45 | ** Display process information | ||
46 | ** | ||
47 | ** Copyright (C) 2002, Dan Williams | ||
48 | ** williamsdr@acm.org | ||
49 | ** http://draknor.net | ||
50 | ** | ||
51 | ** This file may be distributed and/or modified under the terms of the | ||
52 | ** GNU General Public License version 2 as published by the Free Software | ||
53 | ** Foundation and appearing in the file LICENSE.GPL included in the | ||
54 | ** packaging of this file. | ||
55 | ** | ||
56 | ** This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING THE | ||
57 | ** WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. | ||
58 | ** | ||
59 | **********************************************************************/ | ||
60 | |||
61 | #ifndef PROCESSINFO_H | ||
62 | #define PROCESSINFO_H | ||
63 | |||
64 | #include <qwidget.h> | ||
65 | #include <qlistview.h> | ||
66 | |||
67 | class ProcessInfo : public QWidget | ||
68 | { | ||
69 | Q_OBJECT | ||
70 | public: | ||
71 | ProcessInfo( QWidget *parent = 0, const char *name = 0, WFlags f = 0 ); | ||
72 | ~ProcessInfo(); | ||
73 | |||
74 | private slots: | ||
75 | void updateData(); | ||
76 | void viewProcess(QListViewItem *); | ||
77 | |||
78 | private: | ||
79 | QListView* ProcessView; | ||
80 | }; | ||
81 | |||
82 | #endif | ||
83 | /********************************************************************** | ||
84 | ** ProcessInfo | ||
85 | ** | ||
86 | ** Display process information | ||
87 | ** | ||
88 | ** Copyright (C) 2002, Dan Williams | ||
89 | ** williamsdr@acm.org | ||
90 | ** http://draknor.net | ||
91 | ** | ||
92 | ** This file may be distributed and/or modified under the terms of the | ||
93 | ** GNU General Public License version 2 as published by the Free Software | ||
94 | ** Foundation and appearing in the file LICENSE.GPL included in the | ||
95 | ** packaging of this file. | ||
96 | ** | ||
97 | ** This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING THE | ||
98 | ** WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. | ||
99 | ** | ||
100 | **********************************************************************/ | ||
101 | |||
102 | #ifndef PROCESSINFO_H | ||
103 | #define PROCESSINFO_H | ||
104 | |||
105 | #include <qwidget.h> | ||
106 | #include <qlistview.h> | ||
107 | |||
108 | class ProcessInfo : public QWidget | ||
109 | { | ||
110 | Q_OBJECT | ||
111 | public: | ||
112 | ProcessInfo( QWidget *parent = 0, const char *name = 0, WFlags f = 0 ); | ||
113 | ~ProcessInfo(); | ||
114 | |||
115 | private slots: | ||
116 | void updateData(); | ||
117 | void viewProcess(QListViewItem *); | ||
118 | |||
119 | private: | ||
120 | QListView* ProcessView; | ||
121 | }; | ||
122 | |||
123 | #endif | ||