diff options
author | Anselm R Garbe <garbeam@gmail.com> | 2009-07-10 16:23:11 +0100 |
---|---|---|
committer | Anselm R Garbe <garbeam@gmail.com> | 2009-07-10 16:23:11 +0100 |
commit | cf65699a29683bff9d50187c18b160e21a538f48 (patch) | |
tree | 6400d0554b9249bb4f8dcabefd0d2687c5271f6f /config.h | |
parent | 0a5e5102096d65a3ba8e39ea9b9b0eb89fe30e04 (diff) | |
download | st-cf65699a29683bff9d50187c18b160e21a538f48.tar.gz st-cf65699a29683bff9d50187c18b160e21a538f48.zip |
we definately need pixmaps for the drawing, currently drawing into the window is painfully slow! much more slower than drawing into a pixmap and mapping that when finished -- several optimisations
Diffstat (limited to 'config.h')
-rw-r--r-- | config.h | 22 |
1 files changed, 11 insertions, 11 deletions
@@ -6,7 +6,7 @@ | |||
6 | #define LINESPACE 1 /* additional pixel between each line */ | 6 | #define LINESPACE 1 /* additional pixel between each line */ |
7 | 7 | ||
8 | /* Terminal colors */ | 8 | /* Terminal colors */ |
9 | static char* colorname[] = { | 9 | static const char *colorname[] = { |
10 | "black", | 10 | "black", |
11 | "red", | 11 | "red", |
12 | "green", | 12 | "green", |
@@ -26,14 +26,14 @@ static char* colorname[] = { | |||
26 | 26 | ||
27 | 27 | ||
28 | /* special keys */ | 28 | /* special keys */ |
29 | static Key key[] = { | 29 | static const char *key[] = { |
30 | { XK_Delete, "\033[3~" }, | 30 | [XK_Delete] = "\033[3~", |
31 | { XK_Home, "\033[1~" }, | 31 | [XK_Home] = "\033[1~", |
32 | { XK_End, "\033[4~" }, | 32 | [XK_End] = "\033[4~", |
33 | { XK_Prior, "\033[5~" }, | 33 | [XK_Prior] = "\033[5~", |
34 | { XK_Next, "\033[6~" }, | 34 | [XK_Next] = "\033[6~", |
35 | { XK_Left, "\033[D" }, | 35 | [XK_Left] = "\033[D", |
36 | { XK_Right, "\033[C" }, | 36 | [XK_Right] = "\033[C", |
37 | { XK_Up, "\033[A" }, | 37 | [XK_Up] = "\033[A", |
38 | { XK_Down, "\033[B" }, | 38 | [XK_Down] = "\033[B", |
39 | }; | 39 | }; |