KDevelop API Documentation

languages/cpp/debugger/dbgpsdlg.h

Go to the documentation of this file.
00001 /*************************************************************************** 00002 begin : Mon Sep 20 1999 00003 copyright : (C) 1999 by John Birch 00004 email : jbb@kdevelop.org 00005 ***************************************************************************/ 00006 00007 /*************************************************************************** 00008 * * 00009 * This program is free software; you can redistribute it and/or modify * 00010 * it under the terms of the GNU General Public License as published by * 00011 * the Free Software Foundation; either version 2 of the License, or * 00012 * (at your option) any later version. * 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
KDE Logo
This file is part of the documentation for KDevelop Version 3.0.4.
Documentation copyright © 1996-2004 the KDE developers.
Generated on Wed Oct 6 17:39:01 2004 by doxygen 1.3.7 written by Dimitri van Heesch, © 1997-2003