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             66 lib/widget/check.c         if (c->text.hotkey != NULL)
hotkey             68 lib/widget/check.c             if (g_ascii_tolower ((gchar) c->text.hotkey[0]) == parm)
hotkey            174 lib/widget/check.c     if (check->text.start[0] == '\0' && check->text.hotkey == NULL && check->text.end == NULL)
hotkey            212 lib/widget/listbox.c             if (e->hotkey == key)
hotkey            810 lib/widget/listbox.c listbox_add_item (WListbox * l, listbox_append_t pos, int hotkey, const char *text, void *data,
hotkey            825 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            158 lib/widget/menu.c         if (entry->text.hotkey != NULL)
hotkey            161 lib/widget/menu.c             tty_print_string (entry->text.hotkey);
hotkey            207 lib/widget/menu.c menubar_set_color (const WMenuBar * menubar, gboolean current, gboolean hotkey)
hotkey            212 lib/widget/menu.c         tty_setcolor (hotkey ? MENU_HOTSEL_COLOR : MENU_SELECTED_COLOR);
hotkey            214 lib/widget/menu.c         tty_setcolor (hotkey ? MENU_HOT_COLOR : MENU_ENTRY_COLOR);
hotkey            242 lib/widget/menu.c         if (menu->text.hotkey != NULL)
hotkey            245 lib/widget/menu.c             tty_print_string (menu->text.hotkey);
hotkey            487 lib/widget/menu.c menubar_try_drop_menu (WMenuBar * menubar, int hotkey)
hotkey            495 lib/widget/menu.c         if (menu->text.hotkey != NULL && hotkey == g_ascii_tolower (menu->text.hotkey[0]))
hotkey            508 lib/widget/menu.c menubar_try_exec_menu (WMenuBar * menubar, int hotkey)
hotkey            519 lib/widget/menu.c         if (entry != NULL && entry->text.hotkey != NULL
hotkey            520 lib/widget/menu.c             && hotkey == g_ascii_tolower (entry->text.hotkey[0]))
hotkey            133 lib/widget/radio.c             if (r->texts[i].hotkey != NULL)
hotkey            137 lib/widget/radio.c                 c = g_ascii_tolower ((gchar) r->texts[i].hotkey[0]);
hotkey            212 lib/widget/widget-common.c         result.hotkey = g_strndup (cp, p - cp);
hotkey            220 lib/widget/widget-common.c         result.hotkey = NULL;
hotkey            230 lib/widget/widget-common.c hotkey_free (const hotkey_t hotkey)
hotkey            232 lib/widget/widget-common.c     g_free (hotkey.start);
hotkey            233 lib/widget/widget-common.c     g_free (hotkey.hotkey);
hotkey            234 lib/widget/widget-common.c     g_free (hotkey.end);
hotkey            240 lib/widget/widget-common.c hotkey_width (const hotkey_t hotkey)
hotkey            244 lib/widget/widget-common.c     result = str_term_width1 (hotkey.start);
hotkey            245 lib/widget/widget-common.c     result += (hotkey.hotkey != NULL) ? str_term_width1 (hotkey.hotkey) : 0;
hotkey            246 lib/widget/widget-common.c     result += (hotkey.end != NULL) ? str_term_width1 (hotkey.end) : 0;
hotkey            257 lib/widget/widget-common.c            hotkey_cmp (hotkey1.hotkey, hotkey2.hotkey) &&
hotkey            265 lib/widget/widget-common.c hotkey_draw (const Widget * w, const hotkey_t hotkey, gboolean focused)
hotkey            267 lib/widget/widget-common.c     if (hotkey.start[0] != '\0')
hotkey            270 lib/widget/widget-common.c         tty_print_string (hotkey.start);
hotkey            273 lib/widget/widget-common.c     if (hotkey.hotkey != NULL)
hotkey            276 lib/widget/widget-common.c         tty_print_string (hotkey.hotkey);
hotkey            279 lib/widget/widget-common.c     if (hotkey.end != NULL)
hotkey            282 lib/widget/widget-common.c         tty_print_string (hotkey.end);
hotkey            289 lib/widget/widget-common.c hotkey_get_text (const hotkey_t hotkey)
hotkey            293 lib/widget/widget-common.c     text = g_string_new (hotkey.start);
hotkey            295 lib/widget/widget-common.c     if (hotkey.hotkey != NULL)
hotkey            298 lib/widget/widget-common.c         g_string_append (text, hotkey.hotkey);
hotkey            301 lib/widget/widget-common.c     if (hotkey.end != NULL)
hotkey            302 lib/widget/widget-common.c         g_string_append (text, hotkey.end);
hotkey            460 lib/widget/widget-common.c widget_selectcolor (const Widget * w, gboolean focused, gboolean hotkey)
hotkey            469 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 (const 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 (const Widget * w, gboolean focused, gboolean hotkey);
hotkey             60 src/editor/editmacros.c     return m1->hotkey - m2->hotkey;
hotkey             75 src/editor/editmacros.c edit_get_macro (WEdit * edit, int hotkey)
hotkey             80 src/editor/editmacros.c         .hotkey = hotkey
hotkey            100 src/editor/editmacros.c edit_delete_macro (WEdit * edit, int hotkey)
hotkey            109 src/editor/editmacros.c     while ((indx = edit_get_macro (edit, hotkey)) != -1)
hotkey            125 src/editor/editmacros.c     skeyname = tty_keycode_to_keyname (hotkey);
hotkey            143 src/editor/editmacros.c     int hotkey;
hotkey            152 src/editor/editmacros.c     hotkey =
hotkey            154 src/editor/editmacros.c     if (hotkey == ESC_CHAR)
hotkey            157 src/editor/editmacros.c     tmp_act = keybind_lookup_keymap_command (WIDGET (edit)->keymap, hotkey);
hotkey            163 src/editor/editmacros.c     edit_delete_macro (edit, hotkey);
hotkey            174 src/editor/editmacros.c     skeyname = tty_keycode_to_keyname (hotkey);
hotkey            203 src/editor/editmacros.c         macro.hotkey = hotkey;
hotkey            250 src/editor/editmacros.c         int hotkey;
hotkey            254 src/editor/editmacros.c         hotkey = tty_keyname_to_keycode (*profile_keys, NULL);
hotkey            299 src/editor/editmacros.c                 .hotkey = hotkey,
hotkey            321 src/editor/editmacros.c     int hotkey;
hotkey            323 src/editor/editmacros.c     hotkey = editcmd_dialog_raw_key_query (_("Delete macro"), _("Press macro hotkey:"), TRUE);
hotkey            325 src/editor/editmacros.c     if (hotkey != 0 && !edit_delete_macro (edit, hotkey))
hotkey            374 src/editor/editmacros.c edit_execute_macro (WEdit * edit, int hotkey)
hotkey            378 src/editor/editmacros.c     if (hotkey != 0)
hotkey            382 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           1579 src/filemanager/panel.c     if (*panel->sort_field->hotkey != '\0')
hotkey           1585 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            102 src/selcodepage.c         unsigned char hotkey = get_hotkey (codepages->len);
hotkey            103 src/selcodepage.c         g_snprintf (buffer, sizeof (buffer), "%c  %s", hotkey, _("Other 8 bit"));
hotkey            104 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      },