aboutsummaryrefslogtreecommitdiffstats
path: root/shell/e-shortcuts.h
diff options
context:
space:
mode:
authorEttore Perazzoli <ettore@src.gnome.org>2001-07-01 15:12:56 +0800
committerEttore Perazzoli <ettore@src.gnome.org>2001-07-01 15:12:56 +0800
commit8fc1cb82feb23034360af987834f6bce8aebe0f3 (patch)
treec0b0045ee2e03dc09364de2107ac63b8b467f358 /shell/e-shortcuts.h
parent6077a94d84eb66bd81e52a92d3703db72ab5614a (diff)
downloadgsoc2013-evolution-8fc1cb82feb23034360af987834f6bce8aebe0f3.tar
gsoc2013-evolution-8fc1cb82feb23034360af987834f6bce8aebe0f3.tar.gz
gsoc2013-evolution-8fc1cb82feb23034360af987834f6bce8aebe0f3.tar.bz2
gsoc2013-evolution-8fc1cb82feb23034360af987834f6bce8aebe0f3.tar.lz
gsoc2013-evolution-8fc1cb82feb23034360af987834f6bce8aebe0f3.tar.xz
gsoc2013-evolution-8fc1cb82feb23034360af987834f6bce8aebe0f3.tar.zst
gsoc2013-evolution-8fc1cb82feb23034360af987834f6bce8aebe0f3.zip
Implemented a "Rename Group" command. Unfortunately, it doesn't work
very well due to EShortcutBar breakage. But we'll fix that later. svn path=/trunk/; revision=10653
Diffstat (limited to 'shell/e-shortcuts.h')
-rw-r--r--shell/e-shortcuts.h7
1 files changed, 6 insertions, 1 deletions
diff --git a/shell/e-shortcuts.h b/shell/e-shortcuts.h
index 8d08586c47..2a9836e2a0 100644
--- a/shell/e-shortcuts.h
+++ b/shell/e-shortcuts.h
@@ -65,6 +65,8 @@ struct _EShortcutsClass {
void (* new_group) (EShortcuts *shortcuts, int group_num);
void (* remove_group) (EShortcuts *shortcuts, int group_num);
+ void (* rename_group) (EShortcuts *shortcuts, int group_num, const char *new_title);
+
void (* new_shortcut) (EShortcuts *shortcuts, int group_num, int item_num);
void (* remove_shortcut) (EShortcuts *shortcuts, int group_num, int item_num);
void (* update_shortcut) (EShortcuts *shortcuts, int group_num, int item_num);
@@ -118,7 +120,10 @@ void e_shortcuts_remove_group (EShortcuts *shortcuts,
int group_num);
void e_shortcuts_add_group (EShortcuts *shortcuts,
int group_num,
- const char *group_name);
+ const char *group_title);
+void e_shortcuts_rename_group (EShortcuts *shortcuts,
+ int group_name,
+ const char *new_title);
#ifdef __cplusplus
}