X-Git-Url: https://git.danieliu.xyz/?a=blobdiff_plain;f=config.h;h=151bbf41d8949bef035fc27e42141eebae4006d2;hb=d934d9c80b24debe4c0b6102ea0416c25a991c80;hp=9406e4842ca223c678d3beb4c89a1a80edf74ec8;hpb=80d33d696d73c14c81da6e35ab06ee97517c9852;p=surf.git diff --git a/config.h b/config.h index 9406e48..151bbf4 100644 --- a/config.h +++ b/config.h @@ -1,46 +1,27 @@ /* modifier 0 means no modifier */ -static Key searchbar_keys[] = { - /* modifier keyval function arg stop event */ - { 0, GDK_Escape, hidesearch, {0}, TRUE }, - { 0, GDK_Return, searchtext, {.b = TRUE}, TRUE }, - { GDK_SHIFT_MASK, GDK_Return, searchtext, {.b = FALSE}, TRUE }, - { GDK_SHIFT_MASK, GDK_Left, NULL, {0}, FALSE }, - { GDK_SHIFT_MASK, GDK_Right, NULL, {0}, FALSE }, -}; - -static Key urlbar_keys[] = { - /* modifier keyval function arg stop event */ - { 0, GDK_Escape, hideurl, {0}, TRUE }, - /* able to "chain" commands; by setting stop event to FALSE */ - { 0, GDK_Return, loaduri, {.v = NULL}, FALSE }, - { 0, GDK_Return, hideurl, {0}, TRUE }, - { GDK_SHIFT_MASK, GDK_Left, NULL, {0}, FALSE }, - { GDK_SHIFT_MASK, GDK_Right, NULL, {0}, FALSE }, -}; - -static Key general_keys[] = { - /* modifier keyval function arg stop event */ - { GDK_CONTROL_MASK, GDK_p, clipboard, {.b = TRUE }, TRUE }, - { GDK_CONTROL_MASK, GDK_y, clipboard, {.b = FALSE}, TRUE }, - { GDK_CONTROL_MASK, GDK_R, reload, {.b = TRUE}, TRUE }, - { GDK_CONTROL_MASK, GDK_r, reload, {.b = FALSE}, TRUE }, - { GDK_CONTROL_MASK, GDK_b, NULL, {0}, TRUE }, - { GDK_CONTROL_MASK, GDK_g, showurl, {0}, TRUE }, - { GDK_CONTROL_MASK, GDK_slash, showsearch, {0}, TRUE }, - { GDK_CONTROL_MASK, GDK_plus, zoompage, {0}, TRUE }, - { GDK_CONTROL_MASK, GDK_minus, zoompage, {.f = -1.0 }, TRUE }, - { GDK_CONTROL_MASK, GDK_0, zoompage, {.f = +1.0 }, TRUE }, - { GDK_CONTROL_MASK, GDK_n, searchtext, {.b = TRUE}, TRUE }, - { GDK_CONTROL_MASK, GDK_N, searchtext, {.b = FALSE}, TRUE }, - { GDK_CONTROL_MASK, GDK_Right, navigate, {.b = TRUE}, TRUE }, - { GDK_CONTROL_MASK, GDK_Left, navigate, {.b = FALSE}, TRUE }, - { 0, GDK_Escape, stop, {0}, TRUE }, -}; - -/* Sequence of Keys to match against a keypress */ -static KeySet keysets[] = { - /* keyset (Key[]) numkeys focusedwidget/mode */ - { searchbar_keys, LENGTH(searchbar_keys), SEARCHBAR }, - { urlbar_keys, LENGTH(urlbar_keys), URLBAR }, - { general_keys, LENGTH(general_keys), NONE }, +static Key keys[] = { + /* modifier keyval function arg Focus */ + { 0, GDK_Escape, hidesearch, {0}, ALWAYS }, + { 0, GDK_Escape, hideurl, {0}, ALWAYS }, + { GDK_CONTROL_MASK, GDK_P, print, {0}, ALWAYS }, + { 0, GDK_Return, searchtext, {.b = TRUE}, SEARCHBAR }, + { GDK_SHIFT_MASK, GDK_Return, searchtext, {.b = FALSE}, SEARCHBAR }, + { GDK_CONTROL_MASK, GDK_n, searchtext, {.b = TRUE}, BROWSER|SEARCHBAR }, + { GDK_CONTROL_MASK, GDK_N, searchtext, {.b = FALSE}, BROWSER|SEARCHBAR }, + { 0 }, + { GDK_CONTROL_MASK, GDK_R, reload, {.b = TRUE}, ALWAYS }, + { GDK_CONTROL_MASK, GDK_r, reload, {.b = FALSE}, ALWAYS }, + { GDK_CONTROL_MASK, GDK_g, showurl, {0}, ALWAYS }, + { GDK_CONTROL_MASK, GDK_slash, showsearch, {0}, ALWAYS }, + { 0, GDK_Return, loaduri, {.v = NULL}, URLBAR }, + { 0, GDK_Return, hideurl, {0}, URLBAR }, + { GDK_CONTROL_MASK, GDK_p, clipboard, {.b = TRUE }, BROWSER }, + { GDK_CONTROL_MASK, GDK_y, clipboard, {.b = FALSE}, BROWSER }, + { GDK_CONTROL_MASK, GDK_equal, zoom, {.i = +1 }, BROWSER }, + { GDK_CONTROL_MASK, GDK_plus, zoom, {.i = +1 }, BROWSER }, + { GDK_CONTROL_MASK, GDK_minus, zoom, {.i = -1 }, BROWSER }, + { GDK_CONTROL_MASK, GDK_0, zoom, {.i = 0 }, BROWSER }, + { GDK_CONTROL_MASK, GDK_l, navigate, {.i = +1}, BROWSER }, + { GDK_CONTROL_MASK, GDK_h, navigate, {.i = -1}, BROWSER }, + { 0, GDK_Escape, stop, {0}, BROWSER }, };