KDevelop API Documentation

languages/java/debugger/breakpointdlg.h

Go to the documentation of this file.
00001 /*************************************************************************** 00002 breakpointdialog.h - description 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 00019 #ifndef BREAKPOINTDIALOG_H 00020 #define BREAKPOINTDIALOG_H 00021 00022 #include <klineedit.h> 00023 #include <knuminput.h> 00024 #include <kdialog.h> 00025 00026 #include <qcheckbox.h> 00027 00028 namespace JAVADebugger 00029 { 00030 00031 class Breakpoint; 00032 00037 class BPDialog : public KDialog 00038 { 00039 Q_OBJECT 00040 00041 public: 00042 BPDialog( Breakpoint *breakpoint, QWidget *parent=0, const char *name=0 ); 00043 ~BPDialog(); 00044 00045 QString getConditional() { return conditional_->text(); } 00046 int getIgnoreCount() { return ignoreCount_->value(); } 00047 bool isEnabled() { return enabled_->isChecked(); } 00048 00049 private: 00050 QCheckBox *enabled_; 00051 KLineEdit *conditional_; 00052 KIntNumInput *ignoreCount_; 00053 }; 00054 00055 } 00056 00057 #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:43 2004 by doxygen 1.3.7 written by Dimitri van Heesch, © 1997-2003