KDevelop API Documentation

languages/java/debugger/dbgpsdlg.h

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