aboutsummaryrefslogtreecommitdiffstats
path: root/src/help.c
diff options
context:
space:
mode:
authorFrederic Culot <calcurse@culot.org>2009-01-04 10:22:10 +0000
committerFrederic Culot <calcurse@culot.org>2009-01-04 10:22:10 +0000
commit21abed5f48d4689285a1ff6eade961b2ce6864c2 (patch)
tree95879e4bde0a18802151837de59b6f2037fbf781 /src/help.c
parent936b6fe3737c760657d82c50fa6b81c3011ffa27 (diff)
downloadcalcurse-21abed5f48d4689285a1ff6eade961b2ce6864c2.tar.gz
calcurse-21abed5f48d4689285a1ff6eade961b2ce6864c2.zip
help page added to describe the cut and paste feature
Diffstat (limited to 'src/help.c')
-rwxr-xr-xsrc/help.c28
1 files changed, 26 insertions, 2 deletions
diff --git a/src/help.c b/src/help.c
index 75d3cd5..8006211 100755
--- a/src/help.c
+++ b/src/help.c
@@ -1,8 +1,8 @@
-/* $calcurse: help.c,v 1.37 2009/01/03 21:32:11 culot Exp $ */
+/* $calcurse: help.c,v 1.38 2009/01/04 10:22:10 culot Exp $ */
/*
* Calcurse - text-based organizer
- * Copyright (c) 2004-2008 Frederic Culot
+ * Copyright (c) 2004-2009 Frederic Culot
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
@@ -52,6 +52,7 @@ typedef enum
HELP_GOTO,
HELP_DELETE,
HELP_ADD,
+ HELP_CUT_PASTE,
HELP_EDIT,
HELP_ENOTE,
HELP_VNOTE,
@@ -116,6 +117,8 @@ help_write_pad (window_t *win, char *title, char *text, keys_e action)
case KEY_GENERIC_PREV_WEEK:
case KEY_GENERIC_GOTO_TODAY:
case KEY_GENERIC_CREDITS:
+ case KEY_GENERIC_CUT:
+ case KEY_GENERIC_PASTE:
break;
default:
bindings = keys_action_allkeys (action);
@@ -246,6 +249,11 @@ wanted_page (int ch)
page = HELP_DELETE;
break;
+ case KEY_GENERIC_CUT:
+ case KEY_GENERIC_PASTE:
+ page = HELP_CUT_PASTE;
+ break;
+
case KEY_EDIT_ITEM:
page = HELP_EDIT;
break;
@@ -506,6 +514,22 @@ help_screen (void)
keys_action_firstkey (KEY_ADD_ITEM),
keys_action_firstkey (KEY_ADD_ITEM));
+ hscr[HELP_CUT_PASTE].title = _("Cut and Paste\n");
+ (void)snprintf (hscr[HELP_CUT_PASTE].text, HELPTEXTSIZ,
+ _("Cut and paste the currently selected item. This is useful to quickly\n"
+ "move an item from one date to another.\n"
+ "To do so, one must first highlight the item that needs to be moved,\n"
+ "then press '%s' to cut this item. It will be removed from the panel.\n"
+ "Once the new date is chosen in the calendar, the appointment panel must\n"
+ "be selected and the '%s' key must be pressed to paste the item.\n"
+ "The item will appear again in the appointment panel, assigned to the\n"
+ "newly selected date.\n\n"
+ "Be careful that if two cuts are performed successively without pasting\n"
+ "between them, the item that was cut at first will be lost, together\n"
+ "with its associated note if it had one."),
+ keys_action_firstkey (KEY_GENERIC_CUT),
+ keys_action_firstkey (KEY_GENERIC_PASTE));
+
hscr[HELP_EDIT].title = _("Edit Item\n");
(void)snprintf (hscr[HELP_EDIT].text, HELPTEXTSIZ,
_("Edit the item which is currently selected.\n"