hotkey 90 lib/widget/button.c if (b->text.hotkey != NULL && g_ascii_tolower ((gchar) b->text.hotkey[0]) == parm) hotkey 223 lib/widget/button.c b->hotpos = (b->text.hotkey != NULL) ? str_term_width1 (b->text.start) : -1; hotkey 253 lib/widget/button.c b->hotpos = (b->text.hotkey != NULL) ? str_term_width1 (b->text.start) : -1; hotkey 62 lib/widget/check.c if (c->text.hotkey != NULL) hotkey 64 lib/widget/check.c if (g_ascii_tolower ((gchar) c->text.hotkey[0]) == parm) hotkey 170 lib/widget/check.c if (check->text.start[0] == '\0' && check->text.hotkey == NULL && check->text.end == NULL) hotkey 208 lib/widget/listbox.c if (e->hotkey == key) hotkey 806 lib/widget/listbox.c listbox_add_item (WListbox * l, listbox_append_t pos, int hotkey, const char *text, void *data, hotkey 821 lib/widget/listbox.c entry->hotkey = hotkey; hotkey 39 lib/widget/listbox.h int hotkey; hotkey 77 lib/widget/listbox.h char *listbox_add_item (WListbox * l, listbox_append_t pos, int hotkey, const char *text, hotkey 155 lib/widget/menu.c if (entry->text.hotkey != NULL) hotkey 158 lib/widget/menu.c tty_print_string (entry->text.hotkey); hotkey 205 lib/widget/menu.c menubar_set_color (const WMenuBar * menubar, gboolean current, gboolean hotkey) hotkey 210 lib/widget/menu.c tty_setcolor (hotkey ? MENU_HOTSEL_COLOR : MENU_SELECTED_COLOR); hotkey 212 lib/widget/menu.c tty_setcolor (hotkey ? MENU_HOT_COLOR : MENU_ENTRY_COLOR); hotkey 240 lib/widget/menu.c if (menu->text.hotkey != NULL) hotkey 243 lib/widget/menu.c tty_print_string (menu->text.hotkey); hotkey 485 lib/widget/menu.c menubar_try_drop_menu (WMenuBar * menubar, int hotkey) hotkey 493 lib/widget/menu.c if (menu->text.hotkey != NULL && hotkey == g_ascii_tolower (menu->text.hotkey[0])) hotkey 506 lib/widget/menu.c menubar_try_exec_menu (WMenuBar * menubar, int hotkey) hotkey 517 lib/widget/menu.c if (entry != NULL && entry->text.hotkey != NULL hotkey 518 lib/widget/menu.c && hotkey == g_ascii_tolower (entry->text.hotkey[0])) hotkey 131 lib/widget/radio.c if (r->texts[i].hotkey != NULL) hotkey 135 lib/widget/radio.c c = g_ascii_tolower ((gchar) r->texts[i].hotkey[0]); hotkey 210 lib/widget/widget-common.c result.hotkey = g_strndup (cp, p - cp); hotkey 218 lib/widget/widget-common.c result.hotkey = NULL; hotkey 228 lib/widget/widget-common.c hotkey_free (const hotkey_t hotkey) hotkey 230 lib/widget/widget-common.c g_free (hotkey.start); hotkey 231 lib/widget/widget-common.c g_free (hotkey.hotkey); hotkey 232 lib/widget/widget-common.c g_free (hotkey.end); hotkey 238 lib/widget/widget-common.c hotkey_width (const hotkey_t hotkey) hotkey 242 lib/widget/widget-common.c result = str_term_width1 (hotkey.start); hotkey 243 lib/widget/widget-common.c result += (hotkey.hotkey != NULL) ? str_term_width1 (hotkey.hotkey) : 0; hotkey 244 lib/widget/widget-common.c result += (hotkey.end != NULL) ? str_term_width1 (hotkey.end) : 0; hotkey 255 lib/widget/widget-common.c hotkey_cmp (hotkey1.hotkey, hotkey2.hotkey) && hotkey 263 lib/widget/widget-common.c hotkey_draw (Widget * w, const hotkey_t hotkey, gboolean focused) hotkey 265 lib/widget/widget-common.c if (hotkey.start[0] != '\0') hotkey 268 lib/widget/widget-common.c tty_print_string (hotkey.start); hotkey 271 lib/widget/widget-common.c if (hotkey.hotkey != NULL) hotkey 274 lib/widget/widget-common.c tty_print_string (hotkey.hotkey); hotkey 277 lib/widget/widget-common.c if (hotkey.end != NULL) hotkey 280 lib/widget/widget-common.c tty_print_string (hotkey.end); hotkey 287 lib/widget/widget-common.c hotkey_get_text (const hotkey_t hotkey) hotkey 291 lib/widget/widget-common.c text = g_string_new (hotkey.start); hotkey 293 lib/widget/widget-common.c if (hotkey.hotkey != NULL) hotkey 296 lib/widget/widget-common.c g_string_append (text, hotkey.hotkey); hotkey 299 lib/widget/widget-common.c if (hotkey.end != NULL) hotkey 300 lib/widget/widget-common.c g_string_append (text, hotkey.end); hotkey 461 lib/widget/widget-common.c widget_selectcolor (Widget * w, gboolean focused, gboolean hotkey) hotkey 470 lib/widget/widget-common.c else if (hotkey) hotkey 184 lib/widget/widget-common.h char *hotkey; /* can be NULL */ hotkey 195 lib/widget/widget-common.h void hotkey_free (const hotkey_t hotkey); hotkey 197 lib/widget/widget-common.h int hotkey_width (const hotkey_t hotkey); hotkey 201 lib/widget/widget-common.h void hotkey_draw (Widget * w, const hotkey_t hotkey, gboolean focused); hotkey 203 lib/widget/widget-common.h char *hotkey_get_text (const hotkey_t hotkey); hotkey 216 lib/widget/widget-common.h void widget_selectcolor (Widget * w, gboolean focused, gboolean hotkey); hotkey 58 src/editor/editmacros.c return m1->hotkey - m2->hotkey; hotkey 73 src/editor/editmacros.c edit_get_macro (WEdit * edit, int hotkey) hotkey 78 src/editor/editmacros.c .hotkey = hotkey hotkey 98 src/editor/editmacros.c edit_delete_macro (WEdit * edit, int hotkey) hotkey 107 src/editor/editmacros.c while ((indx = edit_get_macro (edit, hotkey) != -1)) hotkey 124 src/editor/editmacros.c skeyname = lookup_key_by_code (hotkey); hotkey 142 src/editor/editmacros.c int hotkey; hotkey 151 src/editor/editmacros.c hotkey = hotkey 153 src/editor/editmacros.c if (hotkey == ESC_CHAR) hotkey 156 src/editor/editmacros.c tmp_act = keybind_lookup_keymap_command (WIDGET (edit)->keymap, hotkey); hotkey 162 src/editor/editmacros.c edit_delete_macro (edit, hotkey); hotkey 173 src/editor/editmacros.c skeyname = lookup_key_by_code (hotkey); hotkey 202 src/editor/editmacros.c macro.hotkey = hotkey; hotkey 249 src/editor/editmacros.c int hotkey; hotkey 254 src/editor/editmacros.c hotkey = lookup_key (*profile_keys, NULL); hotkey 298 src/editor/editmacros.c macro.hotkey = hotkey; hotkey 318 src/editor/editmacros.c int hotkey; hotkey 320 src/editor/editmacros.c hotkey = editcmd_dialog_raw_key_query (_("Delete macro"), _("Press macro hotkey:"), TRUE); hotkey 322 src/editor/editmacros.c if (hotkey != 0 && !edit_delete_macro (edit, hotkey)) hotkey 371 src/editor/editmacros.c edit_execute_macro (WEdit * edit, int hotkey) hotkey 375 src/editor/editmacros.c if (hotkey != 0) hotkey 379 src/editor/editmacros.c indx = edit_get_macro (edit, hotkey); hotkey 18 src/editor/editmacros.h gboolean edit_execute_macro (WEdit * edit, int hotkey); hotkey 1525 src/filemanager/panel.c if (*panel->sort_field->hotkey != '\0') hotkey 1531 src/filemanager/panel.c str = g_strdup_printf ("%s%s", sort_sign, Q_ (panel->sort_field->hotkey)); hotkey 67 src/filemanager/panel.h const char *hotkey; hotkey 100 src/selcodepage.c unsigned char hotkey = get_hotkey (codepages->len); hotkey 101 src/selcodepage.c g_snprintf (buffer, sizeof (buffer), "%c %s", hotkey, _("Other 8 bit")); hotkey 102 src/selcodepage.c LISTBOX_APPEND_TEXT (listbox, hotkey, buffer, NULL, FALSE); hotkey 68 src/setup.h int hotkey; hotkey 63 tests/lib/widget/hotkey_equal.c { .start = C ("abc"), .hotkey = NULL, .end = NULL }, hotkey 64 tests/lib/widget/hotkey_equal.c { .start = C ("abc"), .hotkey = NULL, .end = NULL }, hotkey 69 tests/lib/widget/hotkey_equal.c { .start = C (""), .hotkey = C (""), .end = C ("") }, hotkey 70 tests/lib/widget/hotkey_equal.c { .start = C (""), .hotkey = C (""), .end = C ("") }, hotkey 75 tests/lib/widget/hotkey_equal.c { .start = C ("abc"), .hotkey = C ("d"), .end = C ("efg") }, hotkey 76 tests/lib/widget/hotkey_equal.c { .start = C ("abc"), .hotkey = C ("d"), .end = C ("efg") }, hotkey 81 tests/lib/widget/hotkey_equal.c { .start = C ("abc"), .hotkey = NULL, .end = C ("efg") }, hotkey 82 tests/lib/widget/hotkey_equal.c { .start = C ("abc"), .hotkey = NULL, .end = C ("efg") }, hotkey 87 tests/lib/widget/hotkey_equal.c { .start = C ("abc"), .hotkey = C ("d"), .end = NULL }, hotkey 88 tests/lib/widget/hotkey_equal.c { .start = C ("abc"), .hotkey = C ("d"), .end = NULL }, hotkey 93 tests/lib/widget/hotkey_equal.c { .start = C ("abc"), .hotkey = C ("d"), .end = C ("efg") }, hotkey 94 tests/lib/widget/hotkey_equal.c { .start = C ("_bc"), .hotkey = C ("d"), .end = C ("efg") }, hotkey 99 tests/lib/widget/hotkey_equal.c { .start = C ("abc"), .hotkey = C ("d"), .end = C ("efg") }, hotkey 100 tests/lib/widget/hotkey_equal.c { .start = C ("abc"), .hotkey = C ("_"), .end = C ("efg") }, hotkey 105 tests/lib/widget/hotkey_equal.c { .start = C ("abc"), .hotkey = C ("d"), .end = C ("efg") }, hotkey 106 tests/lib/widget/hotkey_equal.c { .start = C ("abc"), .hotkey = C ("d"), .end = C ("_fg") }, hotkey 111 tests/lib/widget/hotkey_equal.c { .start = C ("abc"), .hotkey = C ("d"), .end = C ("efg") }, hotkey 112 tests/lib/widget/hotkey_equal.c { .start = C ("adc"), .hotkey = NULL, .end = C ("efg") }, hotkey 117 tests/lib/widget/hotkey_equal.c { .start = C ("abc"), .hotkey = C ("d"), .end = C ("efg") }, hotkey 118 tests/lib/widget/hotkey_equal.c { .start = C ("abc"), .hotkey = C ("d"), .end = NULL }, hotkey 123 tests/lib/widget/hotkey_equal.c { .start = C ("abc"), .hotkey = C ("d"), .end = C ("efg") }, hotkey 124 tests/lib/widget/hotkey_equal.c { .start = C ("abc"), .hotkey = NULL, .end = NULL },