diff options
author | sabetts <sabetts> | 2001-12-21 11:21:08 +0000 |
---|---|---|
committer | sabetts <sabetts> | 2001-12-21 11:21:08 +0000 |
commit | 86866ff113c52e25a7ee7b29433d7641d1c6ed9e (patch) | |
tree | fa4e5f34d0684382feb5c1f02b20dcd121d23a0b /src | |
parent | 872a9e14fae3e28451b04349bdbd6c60407c4b26 (diff) | |
download | ratpoison-86866ff113c52e25a7ee7b29433d7641d1c6ed9e.zip |
* src/input.c (input_history): new static global
(input_num_history_entries): likewise
(get_more_input): cycle through the input history.
* src/conf.h (INPUT_PREV_HISTORY_KEY): new define
(INPUT_PREV_HISTORY_MODIFIER): likewise
(INPUT_NEXT_HISTORY_KEY): likewise
(INPUT_NEXT_HISTORY_MODIFIER): likewise
(INPUT_MAX_HISTORY): likewise
* src/input.c (update_input_window): Draw the cursor in the right place.
Diffstat (limited to 'src')
-rw-r--r-- | src/conf.h | 11 | ||||
-rw-r--r-- | src/input.c | 65 |
2 files changed, 75 insertions, 1 deletions
@@ -32,6 +32,17 @@ #define INPUT_ABORT_KEY XK_g #define INPUT_ABORT_MODIFIER ControlMask +/* This is the previous history entry key when typing input. */ +#define INPUT_PREV_HISTORY_KEY XK_p +#define INPUT_PREV_HISTORY_MODIFIER ControlMask + +/* This is the next history entry key when typing input. */ +#define INPUT_NEXT_HISTORY_KEY XK_n +#define INPUT_NEXT_HISTORY_MODIFIER ControlMask + +/* Number of history items to store. */ +#define INPUT_MAX_HISTORY 50 + /* Treat windows with maxsize hints as if they were a transient window (don't hide the windows underneath, and center them) */ #define MAXSIZE_WINDOWS_ARE_TRANSIENTS diff --git a/src/input.c b/src/input.c index 27d7583..bd264c1 100644 --- a/src/input.c +++ b/src/input.c @@ -28,6 +28,10 @@ #include "ratpoison.h" +/* Variables to keep track of input history. */ +static char *input_history[INPUT_MAX_HISTORY]; +static int input_num_history_entries = 0; + /* Convert an X11 modifier mask to the rp modifier mask equivalent, as best it can (the X server may not have a hyper key defined, for instance). */ @@ -322,8 +326,9 @@ get_more_input (char *prompt, char *preinput) int revert; Window fwin; char *str; + int history_index = input_num_history_entries; - /* Allocate some memory to start with */ + /* Allocate some memory to start with. */ str = (char *) xmalloc ( allocated_len ); /* load in the preinput */ @@ -354,6 +359,46 @@ get_more_input (char *prompt, char *preinput) if (cur_len > 0) cur_len--; update_input_window(s, prompt, str, cur_len); } + else if (ch == INPUT_PREV_HISTORY_KEY + && modifier == INPUT_PREV_HISTORY_MODIFIER) + { + /* Cycle through the history. */ + if (input_num_history_entries > 0) + { + history_index--; + if (history_index < 0) + { + history_index = input_num_history_entries - 1; + } + + free (str); + str = xstrdup (input_history[history_index]); + allocated_len = strlen (str) + 1; + cur_len = allocated_len - 1; + + update_input_window (s, prompt, str, cur_len); + } + } + else if (ch == INPUT_NEXT_HISTORY_KEY + && modifier == INPUT_NEXT_HISTORY_MODIFIER) + { + /* Cycle through the history. */ + if (input_num_history_entries > 0) + { + history_index++; + if (history_index >= input_num_history_entries) + { + history_index = 0; + } + + free (str); + str = xstrdup (input_history[history_index]); + allocated_len = strlen (str) + 1; + cur_len = allocated_len - 1; + + update_input_window (s, prompt, str, cur_len); + } + } else if (ch == INPUT_ABORT_KEY && modifier == INPUT_ABORT_MODIFIER) { /* User aborted. */ @@ -381,6 +426,24 @@ get_more_input (char *prompt, char *preinput) } str[cur_len] = 0; + + /* Push the history entries down. */ + if (input_num_history_entries >= INPUT_MAX_HISTORY) + { + int i; + free (input_history[0]); + for (i=0; i<INPUT_MAX_HISTORY-1; i++) + { + input_history[i] = input_history[i+1]; + } + + input_num_history_entries--; + } + + /* Store the string in the history. */ + input_history[input_num_history_entries] = xstrdup (str); + input_num_history_entries++; + XSetInputFocus (dpy, fwin, RevertToPointerRoot, CurrentTime); XUnmapWindow (dpy, s->input_window); return str; |