nemiver r912 - in trunk: . src/persp/dbgperspective
- From: dodji svn gnome org
- To: svn-commits-list gnome org
- Subject: nemiver r912 - in trunk: . src/persp/dbgperspective
- Date: Thu, 21 Aug 2008 22:08:20 +0000 (UTC)
Author: dodji
Date: Thu Aug 21 22:08:20 2008
New Revision: 912
URL: http://svn.gnome.org/viewvc/nemiver?rev=912&view=rev
Log:
Close #547169 - Set breakpoint to selected function name by default.
* src/persp/dbgperspective/nmv-dbg-perspective.cc:
(DBGPerspective::set_breakpoint_using_dialog): If a function
name is selected when the user hits <ctrl-b> to set a breakpoint,
make sure the breakpoint is set to that function name by default.
This should close:
#547169 - Set breakpoint to selected function name by default.
Modified:
trunk/ChangeLog
trunk/src/persp/dbgperspective/nmv-dbg-perspective.cc
Modified: trunk/src/persp/dbgperspective/nmv-dbg-perspective.cc
==============================================================================
--- trunk/src/persp/dbgperspective/nmv-dbg-perspective.cc (original)
+++ trunk/src/persp/dbgperspective/nmv-dbg-perspective.cc Thu Aug 21 22:08:20 2008
@@ -5595,12 +5595,40 @@
DBGPerspective::set_breakpoint_using_dialog ()
{
LOG_FUNCTION_SCOPE_NORMAL_DD;
+
SetBreakpointDialog dialog (plugin_path ());
+ // Checkout if the user did select a function number.
+ // If she did, pre-fill the breakpoint setting dialog with the
+ // function name so that if the user hits enter, a breakpoint is set
+ // to that function by default.
+
+ SourceEditor *source_editor = get_current_source_editor ();
+ THROW_IF_FAIL (source_editor);
+ Glib::RefPtr<gtksourceview::SourceBuffer> buffer =
+ source_editor->source_view ().get_source_buffer ();
+ THROW_IF_FAIL (buffer);
+
+ UString function_name;
+ Gtk::TextIter start, end;
+ if (buffer->get_selection_bounds (start, end)) {
+ function_name = buffer->get_slice (start, end);
+ }
+ if (!function_name.empty ()) {
+ // really the default function name to break into, by default.
+ dialog.mode (SetBreakpointDialog::MODE_FUNCTION_NAME);
+ dialog.function (function_name);
+ }
+
+ // Phiew. Enough set up for now. Time to launch the dialog and get the
+ // ball rolling.
int result = dialog.run ();
if (result != Gtk::RESPONSE_OK) {
return;
}
+
+ // Get what the user set in the dialog and really ask the backend
+ // to set the breakpoint accordingly.
set_breakpoint_from_dialog (dialog);
}
[
Date Prev][
Date Next] [
Thread Prev][
Thread Next]
[
Thread Index]
[
Date Index]
[
Author Index]