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
00017
00018 #ifndef _DBGPSDLG_H_
00019 #define _DBGPSDLG_H_
00020
00021 #include <kdialog.h>
00022
00023 class QListBox;
00024 class KProcess;
00025 class QLabel;
00026
00027
00028
00029 namespace JAVADebugger
00030 {
00031
00032 class Dbg_PS_Dialog : public KDialog
00033 {
00034 Q_OBJECT
00035
00036 public:
00037 Dbg_PS_Dialog( QWidget *parent=0, const char *name=0 );
00038 ~Dbg_PS_Dialog();
00039
00040 int pidSelected();
00041
00042 private slots:
00043 void slotReceivedOutput(KProcess *proc, char *buffer, int buflen);
00044 void slotProcessExited();
00045
00046 private:
00047 KProcess* psProc_;
00048 QListBox* pids_;
00049 QLabel* heading_;
00050 QString pidLines_;
00051 QString pidCmd_;
00052 };
00053 }
00054
00055 #endif
This file is part of the documentation for KDevelop Version 3.1.2.