Nemiver  0.3
nmv-breakpoints-view.h
Go to the documentation of this file.
1 //Author: Jonathon Jongsma
2 /*
3  *This file is part of the Nemiver project
4  *
5  *Nemiver is free software; you can redistribute
6  *it and/or modify it under the terms of
7  *the GNU General Public License as published by the
8  *Free Software Foundation; either version 2,
9  *or (at your option) any later version.
10  *
11  *Nemiver is distributed in the hope that it will
12  *be useful, but WITHOUT ANY WARRANTY;
13  *without even the implied warranty of
14  *MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
15  *See the GNU General Public License for more details.
16  *
17  *You should have received a copy of the
18  *GNU General Public License along with Nemiver;
19  *see the file COPYING.
20  *If not, write to the Free Software Foundation,
21  *Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
22  *
23  *See COPYRIGHT file copyright information.
24  */
25 #ifndef __NMV_BREAKPOINTS_VIEW_H__
26 #define __NMV_BREAKPOINTS_VIEW_H__
27 
28 #include <list>
29 #include <gtkmm/widget.h>
30 #include "common/nmv-object.h"
32 #include "nmv-i-debugger.h"
33 
34 namespace Gtk {
35 class UIManager;
36 }
37 
38 NEMIVER_BEGIN_NAMESPACE (nemiver)
39 
40 class IWorkbench;
41 class IPerspective;
42 
44  //non copyable
47 
48  struct Priv;
50 
51 public:
52 
53  BreakpointsView (IWorkbench& a_workbench,
54  IPerspective& a_perspective,
55  IDebuggerSafePtr& a_debugger);
56  virtual ~BreakpointsView ();
57  Gtk::Widget& widget () const;
58  void set_breakpoints
59  (const std::map<string, IDebugger::Breakpoint> &a_breakpoints);
60  void clear ();
61  void re_init ();
62  sigc::signal<void,
63  const IDebugger::Breakpoint&>&
64  go_to_breakpoint_signal () const;
65 
66 };//end BreakpointsView
67 
68 NEMIVER_END_NAMESPACE (nemiver)
69 
70 #endif //__NMV_BREAKPOINTS_VIEW_H__
71 
72 
nmv-safe-ptr-utils.h
nemiver::common::Object
Definition: nmv-object.h:43
nemiver
Definition: nmv-address.h:31
nemiver::IWorkbench
the interface of the Workbench. The workbench is what you see graphically when you use Nemiver....
Definition: nmv-i-workbench.h:93
NEMIVER_API
#define NEMIVER_API
Definition: nmv-api-macros.h:53
nemiver::common::Object::operator=
Object & operator=(Object const &)
nemiver::common::Object::m_priv
SafePtr< ObjectPriv > m_priv
Definition: nmv-object.h:47
Gtk
Definition: nmv-asm-utils.h:30
nmv-i-debugger.h
nemiver::IDebugger::Breakpoint
a breakpoint descriptor
Definition: nmv-i-debugger.h:90
nemiver::IPerspective
Definition: nmv-i-perspective.h:54
nmv-object.h
nemiver::common::SafePtr< Priv >
nemiver::BreakpointsView
Definition: nmv-breakpoints-view.h:43