dbgpsdlg.h
Go to the documentation of this file.00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00015
00016 #ifndef _DBGPSDLG_H_
00017 #define _DBGPSDLG_H_
00018
00019 #include <kdialog.h>
00020
00021 class QListBox;
00022 class KProcess;
00023 class QLabel;
00024
00025 namespace GDBDebugger
00026 {
00027
00028
00029
00030 class Dbg_PS_Dialog : public KDialog
00031 {
00032 Q_OBJECT
00033
00034 public:
00035 Dbg_PS_Dialog( QWidget *parent=0, const char *name=0 );
00036 ~Dbg_PS_Dialog();
00037
00038 int pidSelected();
00039
00040 private slots:
00041 void slotReceivedOutput(KProcess *proc, char *buffer, int buflen);
00042 void slotProcessExited();
00043
00044 private:
00045 KProcess* psProc_;
00046 QListBox* pids_;
00047 QLabel* heading_;
00048 QString pidLines_;
00049 QString pidCmd_;
00050 };
00051
00052 }
00053
00054 #endif
This file is part of the documentation for KDevelop Version 3.1.2.