diff options
Diffstat (limited to 'mixgtk')
-rw-r--r-- | mixgtk/mixgtk.glade | 138 | ||||
-rw-r--r-- | mixgtk/mixgtk_gen_handlers.c | 9 | ||||
-rw-r--r-- | mixgtk/mixgtk_gen_handlers.h | 5 |
3 files changed, 89 insertions, 63 deletions
diff --git a/mixgtk/mixgtk.glade b/mixgtk/mixgtk.glade index 0d30282..ced029b 100644 --- a/mixgtk/mixgtk.glade +++ b/mixgtk/mixgtk.glade @@ -141,6 +141,24 @@ <label>_Next</label> <right_justify>False</right_justify> </widget> + + <widget> + <class>GtkMenuItem</class> + <name>clear_breakpoints</name> + <tooltip>Clear all set breakpoints</tooltip> + <accelerator> + <modifiers>GDK_MOD1_MASK</modifiers> + <key>GDK_C</key> + <signal>activate</signal> + </accelerator> + <signal> + <name>activate</name> + <handler>on_clear_breakpoints_activate</handler> + <last_modification_time>Thu, 15 Mar 2001 23:26:49 GMT</last_modification_time> + </signal> + <label>_Clear breakpoints</label> + <right_justify>False</right_justify> + </widget> </widget> </widget> @@ -762,6 +780,66 @@ </widget> <widget> + <class>GtkRadioButton</class> + <name>lesser_radio</name> + <x>264</x> + <y>128</y> + <width>35</width> + <height>24</height> + <tooltip>Comparison flag: lesser</tooltip> + <can_focus>True</can_focus> + <signal> + <name>toggled</name> + <handler>on_cmp_l_toggled</handler> + <last_modification_time>Tue, 06 Mar 2001 21:21:51 GMT</last_modification_time> + </signal> + <label>L</label> + <active>False</active> + <draw_indicator>True</draw_indicator> + <group>cmp_group</group> + </widget> + + <widget> + <class>GtkRadioButton</class> + <name>equal_radio</name> + <x>304</x> + <y>128</y> + <width>31</width> + <height>24</height> + <tooltip>Comparison flag: equal</tooltip> + <can_focus>True</can_focus> + <signal> + <name>toggled</name> + <handler>on_cmp_e_toggled</handler> + <last_modification_time>Tue, 06 Mar 2001 21:22:04 GMT</last_modification_time> + </signal> + <label>E</label> + <active>False</active> + <draw_indicator>True</draw_indicator> + <group>cmp_group</group> + </widget> + + <widget> + <class>GtkRadioButton</class> + <name>greater_radio</name> + <x>336</x> + <y>128</y> + <width>32</width> + <height>24</height> + <tooltip>Comparison flag: greater</tooltip> + <can_focus>True</can_focus> + <signal> + <name>toggled</name> + <handler>on_cmp_g_toggled</handler> + <last_modification_time>Tue, 06 Mar 2001 21:21:40 GMT</last_modification_time> + </signal> + <label>G</label> + <active>False</active> + <draw_indicator>True</draw_indicator> + <group>cmp_group</group> + </widget> + + <widget> <class>GtkScrolledWindow</class> <name>memory_scroll</name> <x>398</x> @@ -824,66 +902,6 @@ </widget> </widget> </widget> - - <widget> - <class>GtkRadioButton</class> - <name>lesser_radio</name> - <x>264</x> - <y>128</y> - <width>35</width> - <height>24</height> - <tooltip>Comparison flag: lesser</tooltip> - <can_focus>True</can_focus> - <signal> - <name>toggled</name> - <handler>on_cmp_l_toggled</handler> - <last_modification_time>Tue, 06 Mar 2001 21:21:51 GMT</last_modification_time> - </signal> - <label>L</label> - <active>False</active> - <draw_indicator>True</draw_indicator> - <group>cmp_group</group> - </widget> - - <widget> - <class>GtkRadioButton</class> - <name>equal_radio</name> - <x>304</x> - <y>128</y> - <width>31</width> - <height>24</height> - <tooltip>Comparison flag: equal</tooltip> - <can_focus>True</can_focus> - <signal> - <name>toggled</name> - <handler>on_cmp_e_toggled</handler> - <last_modification_time>Tue, 06 Mar 2001 21:22:04 GMT</last_modification_time> - </signal> - <label>E</label> - <active>False</active> - <draw_indicator>True</draw_indicator> - <group>cmp_group</group> - </widget> - - <widget> - <class>GtkRadioButton</class> - <name>greater_radio</name> - <x>336</x> - <y>128</y> - <width>32</width> - <height>24</height> - <tooltip>Comparison flag: greater</tooltip> - <can_focus>True</can_focus> - <signal> - <name>toggled</name> - <handler>on_cmp_g_toggled</handler> - <last_modification_time>Tue, 06 Mar 2001 21:21:40 GMT</last_modification_time> - </signal> - <label>G</label> - <active>False</active> - <draw_indicator>True</draw_indicator> - <group>cmp_group</group> - </widget> </widget> <widget> diff --git a/mixgtk/mixgtk_gen_handlers.c b/mixgtk/mixgtk_gen_handlers.c index eefeae3..9f23310 100644 --- a/mixgtk/mixgtk_gen_handlers.c +++ b/mixgtk/mixgtk_gen_handlers.c @@ -1,7 +1,7 @@ /* -*-c-*- -------------- mixgtk_gen_handlers.c : * Implementation of the functions declared in mixgtk_gen_handlers.h * ------------------------------------------------------------------ - * Last change: Time-stamp: "01/03/10 15:51:47 jose" + * Last change: Time-stamp: "01/03/16 00:30:40 jose" * ------------------------------------------------------------------ * Copyright (C) 2001 Free Software Foundation, Inc. * @@ -86,3 +86,10 @@ on_file_exit_activate (GtkWidget *w, gpointer data) gtk_main_quit (); } + +void +on_clear_breakpoints_activate (GtkWidget *w, gpointer data) +{ + mixgtk_cmd_dispatcher_dispatch (mix_vm_command_to_string (MIX_CMD_CABP)); +} + diff --git a/mixgtk/mixgtk_gen_handlers.h b/mixgtk/mixgtk_gen_handlers.h index 5b1d788..6e0a45d 100644 --- a/mixgtk/mixgtk_gen_handlers.h +++ b/mixgtk/mixgtk_gen_handlers.h @@ -1,7 +1,7 @@ /* -*-c-*- ---------------- mixgtk_gen_handlers.h : * general signal handlers declarations * ------------------------------------------------------------------ - * Last change: Time-stamp: <01/03/07 23:23:25 jose> + * Last change: Time-stamp: <01/03/16 00:29:45 jose> * ------------------------------------------------------------------ * Copyright (C) 2001 Free Software Foundation, Inc. * @@ -36,7 +36,8 @@ on_file_open_activate (GtkWidget *w, gpointer data); extern void on_file_exit_activate (GtkWidget *w, gpointer data); - +extern void +on_clear_breakpoints_activate (GtkWidget *w, gpointer data); |