-rw-r--r-- | noncore/settings/sysinfo/processinfo.cpp | 9 | ||||
-rw-r--r-- | noncore/settings/sysinfo/processinfo.h | 2 |
2 files changed, 7 insertions, 4 deletions
diff --git a/noncore/settings/sysinfo/processinfo.cpp b/noncore/settings/sysinfo/processinfo.cpp index ad81d7b..0512141 100644 --- a/noncore/settings/sysinfo/processinfo.cpp +++ b/noncore/settings/sysinfo/processinfo.cpp | |||
@@ -16,8 +16,10 @@ | |||
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 | #include <qpe/qpeapplication.h> | ||
21 | |||
20 | #include <qheader.h> | 22 | #include <qheader.h> |
21 | #include <qlistview.h> | 23 | #include <qlistview.h> |
22 | #include <qlayout.h> | 24 | #include <qlayout.h> |
23 | #include <qtimer.h> | 25 | #include <qtimer.h> |
@@ -38,9 +40,11 @@ ProcessInfo::ProcessInfo( QWidget* parent, const char* name, WFlags fl ) | |||
38 | colnum = ProcessView->addColumn( tr( "Status" ) ); | 40 | colnum = ProcessView->addColumn( tr( "Status" ) ); |
39 | colnum = ProcessView->addColumn( tr( "Time" ) ); | 41 | colnum = ProcessView->addColumn( tr( "Time" ) ); |
40 | ProcessView->setColumnAlignment( colnum, Qt::AlignRight ); | 42 | ProcessView->setColumnAlignment( colnum, Qt::AlignRight ); |
41 | ProcessView->setAllColumnsShowFocus( TRUE ); | 43 | ProcessView->setAllColumnsShowFocus( TRUE ); |
42 | connect( ProcessView, SIGNAL( doubleClicked(QListViewItem *) ), this, SLOT( viewProcess(QListViewItem *) ) ); | 44 | QPEApplication::setStylusOperation( ProcessView->viewport(), QPEApplication::RightOnHold ); |
45 | connect( ProcessView, SIGNAL( rightButtonPressed( QListViewItem *, const QPoint &, int ) ), | ||
46 | this, SLOT( viewProcess( QListViewItem * ) ) ); | ||
43 | 47 | ||
44 | layout->addWidget( ProcessView ); | 48 | layout->addWidget( ProcessView ); |
45 | 49 | ||
46 | QTimer *t = new QTimer( this ); | 50 | QTimer *t = new QTimer( this ); |
@@ -106,9 +110,9 @@ void ProcessInfo::updateData() | |||
106 | delete proclist; | 110 | delete proclist; |
107 | delete procdir; | 111 | delete procdir; |
108 | } | 112 | } |
109 | 113 | ||
110 | void ProcessInfo::viewProcess(QListViewItem *process) | 114 | void ProcessInfo::viewProcess( QListViewItem *process ) |
111 | { | 115 | { |
112 | QString pid= process->text( 0 ).stripWhiteSpace(); | 116 | QString pid= process->text( 0 ).stripWhiteSpace(); |
113 | QString command = process->text( 1 ); | 117 | QString command = process->text( 1 ); |
114 | ProcessDtl->setCaption( pid + " - " + command ); | 118 | ProcessDtl->setCaption( pid + " - " + command ); |
@@ -124,7 +128,6 @@ void ProcessInfo::viewProcess(QListViewItem *process) | |||
124 | ProcessDtl->ProcessView->append( line ); | 128 | ProcessDtl->ProcessView->append( line ); |
125 | } | 129 | } |
126 | fclose( statfile ); | 130 | fclose( statfile ); |
127 | } | 131 | } |
128 | |||
129 | ProcessDtl->showMaximized(); | 132 | ProcessDtl->showMaximized(); |
130 | } | 133 | } |
diff --git a/noncore/settings/sysinfo/processinfo.h b/noncore/settings/sysinfo/processinfo.h index 89d1a93..24b190e 100644 --- a/noncore/settings/sysinfo/processinfo.h +++ b/noncore/settings/sysinfo/processinfo.h | |||
@@ -33,9 +33,9 @@ public: | |||
33 | ~ProcessInfo(); | 33 | ~ProcessInfo(); |
34 | 34 | ||
35 | private slots: | 35 | private slots: |
36 | void updateData(); | 36 | void updateData(); |
37 | void viewProcess(QListViewItem *); | 37 | void viewProcess( QListViewItem * ); |
38 | 38 | ||
39 | private: | 39 | private: |
40 | QListView* ProcessView; | 40 | QListView* ProcessView; |
41 | ProcessDetail *ProcessDtl; | 41 | ProcessDetail *ProcessDtl; |