Code::Blocks  SVN r11506
editbreakpointdlg.h
Go to the documentation of this file.
1 /*
2  * This file is part of the Code::Blocks IDE and licensed under the GNU General Public License, version 3
3  * http://www.gnu.org/licenses/gpl-3.0.html
4  */
5 
6 #ifndef EDITBREAKPOINT_H
7 #define EDITBREAKPOINT_H
8 
9 #include "scrollingdialog.h"
10 #include "debugger_defs.h"
11 
13 {
14  public:
15  EditBreakpointDlg(const DebuggerBreakpoint &breakpoint, wxWindow* parent = 0);
16  virtual ~EditBreakpointDlg();
17 
18  const DebuggerBreakpoint& GetBreakpoint() const { return m_breakpoint; }
19  protected:
20  void OnUpdateUI(wxUpdateUIEvent& event);
21  void EndModal(int retCode);
22 
24  private:
25  DECLARE_EVENT_TABLE()
26 };
27 
28 #endif // EDITBREAKPOINT_H
Debugger breakpoint interface.
const DebuggerBreakpoint & GetBreakpoint() const
DebuggerBreakpoint m_breakpoint
EditBreakpointDlg(const DebuggerBreakpoint &breakpoint, wxWindow *parent=0)
void OnUpdateUI(wxUpdateUIEvent &event)
void EndModal(int retCode)