breakpointdlg.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
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
This file is part of the documentation for KDevelop Version 3.1.2.