diff options
author | Juan Pablo Ugarte <jpu@src.gnome.org> | 2007-06-27 20:23:01 +0000 |
---|---|---|
committer | Juan Pablo Ugarte <jpu@src.gnome.org> | 2007-06-27 20:23:01 +0000 |
commit | 312c7bca0c37850f374625633a313e09e04db6b8 (patch) | |
tree | ab72bc493b62624f8478c5dec0bd6873d9669992 /gladeui/glade-popup.h | |
parent | 7b0823643b71f0cd8e4c9fb194e2ca9c2ff0f7ec (diff) | |
download | glade-312c7bca0c37850f374625633a313e09e04db6b8.tar.gz |
gladeui/glade-popup.[ch] - added packing actions to placeholders
* gladeui/glade-popup.[ch]
- added packing actions to placeholders
* gladeui/glade-widget-action.[ch]: added "important" flag to GWActionClass
* gladeui/glade-widget-adaptor.[ch]:
- parse important tag in gwa_action_update_from_node()
- added new "important" parameter to glade_widget_adaptor_pack_action_add() and
glade_widget_adaptor_action_add()
* gladeui/glade-xml-utils.h: addded GLADE_TAG_IMPORTANT tag
* plugins/gtk+/gtk+.xml.in: marked launch_editor actions as important
* gladeui/glade-inspector.c: make inspector popup include only normal actions.
* src/glade-project-window.c: added important actions to the toolbar.
svn path=/trunk/; revision=1403
Diffstat (limited to 'gladeui/glade-popup.h')
-rw-r--r-- | gladeui/glade-popup.h | 18 |
1 files changed, 14 insertions, 4 deletions
diff --git a/gladeui/glade-popup.h b/gladeui/glade-popup.h index 8a1025ef..313240b7 100644 --- a/gladeui/glade-popup.h +++ b/gladeui/glade-popup.h @@ -4,10 +4,20 @@ G_BEGIN_DECLS -void glade_popup_widget_pop (GladeWidget *widget, GdkEventButton *event); -void glade_popup_placeholder_pop (GladePlaceholder *placeholder, GdkEventButton *event); -void glade_popup_clipboard_pop (GladeWidget *widget, GdkEventButton *event); -gint glade_popup_action_populate_menu (GtkWidget *menu, GladeWidget *widget, GladeWidgetAction *action); +void glade_popup_widget_pop (GladeWidget *widget, + GdkEventButton *event, + gboolean packing); + +void glade_popup_placeholder_pop (GladePlaceholder *placeholder, + GdkEventButton *event); + +void glade_popup_clipboard_pop (GladeWidget *widget, + GdkEventButton *event); + +gint glade_popup_action_populate_menu (GtkWidget *menu, + GladeWidget *widget, + GladeWidgetAction *action, + gboolean packing); G_END_DECLS |