Changeset 22
- Timestamp:
- 01/24/07 18:55:07 (2 years ago)
- Files:
-
- osso-xterm/trunk/debian/changelog (modified) (1 diff)
- osso-xterm/trunk/src/Makefile.am (modified) (2 diffs)
- osso-xterm/trunk/src/terminal-app.c (modified) (6 diffs)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
osso-xterm/trunk/debian/changelog
r21 r22 1 osso-xterm (0.13.mh18) unstable; urgency=low 2 3 * Create shortcut changing dialog. 4 5 -- Santtu Lakkala <inz@inz.fi> Wed, 24 Jan 2007 18:54:51 +0200 6 1 7 osso-xterm (0.13.mh17) unstable; urgency=low 2 8 osso-xterm/trunk/src/Makefile.am
r1 r22 32 32 terminal-tab-header.h \ 33 33 terminal-widget.h \ 34 terminal-app.h 34 terminal-app.h \ 35 shortcuts.h 35 36 36 37 osso_xterm_SOURCES = \ … … 40 41 terminal-settings.c \ 41 42 terminal-widget.c \ 42 terminal-app.c 43 terminal-app.c \ 44 shortcuts.c 43 45 44 46 clean-local: osso-xterm/trunk/src/terminal-app.c
r20 r22 53 53 #include "terminal-tab-header.h" 54 54 #include "terminal-app.h" 55 #include "shortcuts.h" 55 56 56 57 … … 88 89 static void terminal_app_action_paste (GtkAction *action, 89 90 TerminalApp *app); 91 static void terminal_app_action_edit_shortcuts (GtkAction *action, 92 TerminalApp *app); 90 93 static void terminal_app_action_reverse (GtkToggleAction *action, 91 94 TerminalApp *app); … … 136 139 { "copy", NULL, N_ ("Copy"), NULL, NULL, G_CALLBACK (terminal_app_action_copy), }, 137 140 { "paste", NULL, N_ ("Paste"), NULL, NULL, G_CALLBACK (terminal_app_action_paste), }, 141 { "shortcuts", NULL, N_ ("Shortcuts..."), NULL, NULL, G_CALLBACK (terminal_app_action_edit_shortcuts), }, 138 142 { "view-menu", NULL, N_ ("View"), }, 139 143 { "go-menu", NULL, N_ ("Go"), }, … … 180 184 " <menuitem action='copy'/>" 181 185 " <menuitem action='paste'/>" 186 " <menuitem action='shortcuts'/>" 182 187 " <separator/>" 183 188 " <menuitem action='reverse'/>" … … 268 273 attach_item(parent, actiongroup, accelgroup, "copy"); 269 274 attach_item(parent, actiongroup, accelgroup, "paste"); 275 attach_item(parent, actiongroup, accelgroup, "shortcuts"); 270 276 271 277 parent = attach_menu(menubar, actiongroup, accelgroup, "view-menu"); … … 869 875 } 870 876 877 static void 878 terminal_app_action_edit_shortcuts (GtkAction *action, 879 TerminalApp *app) 880 { 881 (void)action; 882 (void)app; 883 884 update_shortcut_keys(); 885 } 886 871 887 872 888 static void
