focused           129 lib/widget/button.c         gboolean focused;
focused           131 lib/widget/button.c         focused = widget_get_state (w, WST_FOCUSED);
focused           133 lib/widget/button.c         widget_selectcolor (w, focused, FALSE);
focused           152 lib/widget/button.c         hotkey_draw (w, b->text, focused);
focused            91 lib/widget/check.c         gboolean focused;
focused            93 lib/widget/check.c         focused = widget_get_state (w, WST_FOCUSED);
focused            94 lib/widget/check.c         widget_selectcolor (w, focused, FALSE);
focused            97 lib/widget/check.c         hotkey_draw (w, c->text, focused);
focused           134 lib/widget/listbox.c listbox_draw (WListbox *l, gboolean focused)
focused           151 lib/widget/listbox.c     selc = disabled ? DISABLED_COLOR : colors[focused ? DLG_COLOR_HOT_FOCUS : DLG_COLOR_FOCUS];
focused           161 lib/widget/radio.c         gboolean focused;
focused           163 lib/widget/radio.c         focused = widget_get_state (w, WST_FOCUSED);
focused           167 lib/widget/radio.c             widget_selectcolor (w, i == r->pos && focused, FALSE);
focused           171 lib/widget/radio.c             hotkey_draw (w, r->texts[i], i == r->pos && focused);
focused           262 lib/widget/widget-common.c hotkey_draw (const Widget *w, const hotkey_t hotkey, gboolean focused)
focused           266 lib/widget/widget-common.c         widget_selectcolor (w, focused, FALSE);
focused           272 lib/widget/widget-common.c         widget_selectcolor (w, focused, TRUE);
focused           278 lib/widget/widget-common.c         widget_selectcolor (w, focused, FALSE);
focused           457 lib/widget/widget-common.c widget_selectcolor (const Widget *w, gboolean focused, gboolean hotkey)
focused           467 lib/widget/widget-common.c         color = colors[focused ? DLG_COLOR_HOT_FOCUS : DLG_COLOR_HOT_NORMAL];
focused           469 lib/widget/widget-common.c         color = colors[focused ? DLG_COLOR_FOCUS : DLG_COLOR_NORMAL];
focused           201 lib/widget/widget-common.h void hotkey_draw (const Widget *w, const hotkey_t hotkey, gboolean focused);
focused           216 lib/widget/widget-common.h void widget_selectcolor (const Widget *w, gboolean focused, gboolean hotkey);