summaryrefslogtreecommitdiff
Unidiff
Diffstat (more/less context) (ignore whitespace changes)
-rw-r--r--noncore/settings/sysinfo/processdetail.cpp4
1 files changed, 4 insertions, 0 deletions
diff --git a/noncore/settings/sysinfo/processdetail.cpp b/noncore/settings/sysinfo/processdetail.cpp
index ef612e6..5c0d335 100644
--- a/noncore/settings/sysinfo/processdetail.cpp
+++ b/noncore/settings/sysinfo/processdetail.cpp
@@ -28,33 +28,37 @@
28#include <qlayout.h> 28#include <qlayout.h>
29#include <qlistview.h> 29#include <qlistview.h>
30#include <qmessagebox.h> 30#include <qmessagebox.h>
31 31
32ProcessDetail::ProcessDetail( QWidget* parent, const char* name, WFlags fl ) 32ProcessDetail::ProcessDetail( QWidget* parent, const char* name, WFlags fl )
33 : QWidget( parent, name, fl ) 33 : QWidget( parent, name, fl )
34{ 34{
35 pid = 0; 35 pid = 0;
36 36
37 QGridLayout *layout = new QGridLayout( this ); 37 QGridLayout *layout = new QGridLayout( this );
38 layout->setSpacing( 4 ); 38 layout->setSpacing( 4 );
39 layout->setMargin( 4 ); 39 layout->setMargin( 4 );
40 40
41 SignalCB = new QComboBox( FALSE, this, "SignalCB" ); 41 SignalCB = new QComboBox( FALSE, this, "SignalCB" );
42 SignalCB->insertItem( " 1: SIGHUP" ); 42 SignalCB->insertItem( " 1: SIGHUP" );
43 SignalCB->insertItem( " 2: SIGINT" ); 43 SignalCB->insertItem( " 2: SIGINT" );
44 SignalCB->insertItem( " 3: SIGQUIT" );
45 SignalCB->insertItem( " 5: SIGTRAP" );
46 SignalCB->insertItem( " 6: SIGABRT" );
44 SignalCB->insertItem( " 9: SIGKILL" ); 47 SignalCB->insertItem( " 9: SIGKILL" );
48 SignalCB->insertItem( "14: SIGALRM" );
45 SignalCB->insertItem( "15: SIGTERM" ); 49 SignalCB->insertItem( "15: SIGTERM" );
46 SignalCB->insertItem( "18: SIGCONT" ); 50 SignalCB->insertItem( "18: SIGCONT" );
47 SignalCB->insertItem( "19: SIGSTOP" ); 51 SignalCB->insertItem( "19: SIGSTOP" );
48 layout->addWidget( SignalCB, 1, 0 ); 52 layout->addWidget( SignalCB, 1, 0 );
49 53
50 ProcessView = new QTextView( this, "ProcessView" ); 54 ProcessView = new QTextView( this, "ProcessView" );
51 layout->addMultiCellWidget( ProcessView, 0, 0, 0, 1 ); 55 layout->addMultiCellWidget( ProcessView, 0, 0, 0, 1 );
52 56
53 SendButton = new QPushButton( this, "SendButton" ); 57 SendButton = new QPushButton( this, "SendButton" );
54 SendButton->setMinimumSize( QSize( 50, 24 ) ); 58 SendButton->setMinimumSize( QSize( 50, 24 ) );
55 SendButton->setMaximumSize( QSize( 50, 24 ) ); 59 SendButton->setMaximumSize( QSize( 50, 24 ) );
56 SendButton->setText( tr( "Send" ) ); 60 SendButton->setText( tr( "Send" ) );
57 connect( SendButton, SIGNAL( clicked() ), this, SLOT( slotSendClicked() ) ); 61 connect( SendButton, SIGNAL( clicked() ), this, SLOT( slotSendClicked() ) );
58 layout->addWidget( SendButton, 1, 1 ); 62 layout->addWidget( SendButton, 1, 1 );
59} 63}
60 64