diff options
Diffstat (limited to 'shell/e-shortcuts.h')
-rw-r--r-- | shell/e-shortcuts.h | 9 |
1 files changed, 8 insertions, 1 deletions
diff --git a/shell/e-shortcuts.h b/shell/e-shortcuts.h index f450728b51..da4dfc1fa0 100644 --- a/shell/e-shortcuts.h +++ b/shell/e-shortcuts.h @@ -57,7 +57,14 @@ struct _EShortcuts { struct _EShortcutsClass { GtkObjectClass parent_class; -}; + + /* Signals. */ + + void (* new_group) (EShortcuts *shortcuts, int group_num); + void (* remove_group) (EShortcuts *shortcuts, int group_num); + void (* new_shortcut) (EShortcuts *shortcuts, int group_num, int item_num); + void (* remove_shortcut) (EShortcuts *shortcuts, int group_num, int item_num);} +; GtkType e_shortcuts_get_type (void); |