Home
last modified time | relevance | path

Searched refs:key_box (Results 1 – 7 of 7) sorted by relevance

/dports/multimedia/quodlibet/quodlibet-4.3.0/quodlibet/ext/songsmenu/fingerprint/
H A D__init__.py78 key_box = Gtk.HBox(spacing=6)
85 key_box.pack_start(label, False, True, 0)
86 key_box.pack_start(entry, True, True, 0)
87 key_box.pack_start(button, False, True, 0)
90 child=key_box), True, True, 0)
/dports/x11/libxfce4menu/libxfce4ui-4.16.1/libxfce4kbd-private/
H A Dxfce-shortcut-dialog.c68 GtkWidget *key_box; member
285 dialog->key_box = gtk_box_new (GTK_ORIENTATION_HORIZONTAL, 12); in xfce_shortcut_dialog_create_contents()
286 gtk_widget_set_halign (dialog->key_box, GTK_ALIGN_CENTER); in xfce_shortcut_dialog_create_contents()
287 gtk_widget_set_hexpand (dialog->key_box, TRUE); in xfce_shortcut_dialog_create_contents()
288 gtk_container_add (GTK_CONTAINER (box), dialog->key_box); in xfce_shortcut_dialog_create_contents()
372 gtk_container_foreach (GTK_CONTAINER (dialog->key_box), in xfce_shortcut_dialog_key_pressed()
375 gtk_widget_show (dialog->key_box); in xfce_shortcut_dialog_key_pressed()
423 gtk_container_add (GTK_CONTAINER (dialog->key_box), key_label); in xfce_shortcut_dialog_key_pressed()
469 gtk_widget_hide (dialog->key_box); in xfce_shortcut_dialog_key_released()
/dports/cad/horizon-eda/horizon-2.1.0/src/imp/
H A Dimp_action.cpp101 auto key_box = Gtk::manage(new Gtk::Box(Gtk::ORIENTATION_HORIZONTAL, 0)); in tool_bar_append_action() local
110 key_box->pack_start(*kl, false, false, 0); in tool_bar_append_action()
115 key_box->show_all(); in tool_bar_append_action()
116 key_box->get_style_context()->add_class("imp-key-box"); in tool_bar_append_action()
118 box->pack_start(*key_box, false, false, 0); in tool_bar_append_action()
/dports/games/garden-of-coloured-lights/garden-1.0.9/src/
H A Dmenu.c51 void key_box (const char ktext[], int command);
610 key_box ("PRESS KEY FOR UP", CKEY_UP); in define_keys()
611 key_box ("PRESS KEY FOR LEFT", CKEY_LEFT); in define_keys()
612 key_box ("PRESS KEY FOR RIGHT", CKEY_RIGHT); in define_keys()
613 key_box ("PRESS KEY FOR DOWN", CKEY_DOWN); in define_keys()
614 key_box ("PRESS KEY FOR FIRE 1", CKEY_FIRE1); in define_keys()
615 key_box ("PRESS KEY FOR FIRE 2", CKEY_FIRE2); in define_keys()
616 key_box ("PRESS KEY FOR FIRE 3", CKEY_FIRE3); in define_keys()
617 key_box ("PRESS KEY FOR SLOW", CKEY_SLOW); in define_keys()
630 void key_box (const char ktext[], int command) in key_box() function
/dports/print/lyx/lyx-2.3.4.2/development/autotests/xvkbd/
H A Dxvkbd.c2805 Widget key_box[NUM_KEY_ROWS]; in MakeKeyboard() local
2820 key_box[0] = None; in MakeKeyboard()
2821 key_box[1] = None; in MakeKeyboard()
2829 key_box[row + 1] = None; in MakeKeyboard()
2831 XtVaSetValues(key_box[row], XtNfromVert, key_box[row - 1], NULL); in MakeKeyboard()
2904 if (appres.keypad) MakeKeypad(form, key_box[0], key_box[1]); in MakeKeyboard()
2908 XtNfromHoriz, key_box[1], in MakeKeyboard()
2936 if (!appres.debug && key_box[first_row] != None) { in MakeKeyboard()
2938 XtVaGetValues(key_box[1], XtNwidth, &max_wd, NULL); in MakeKeyboard()
2942 XtVaGetValues(key_box[row], XtNwidth, &wd, NULL); in MakeKeyboard()
[all …]
/dports/x11/xvkbd/xvkbd-4.1/
H A Dxvkbd.c3279 Widget key_box[NUM_KEY_ROWS]; in MakeKeyboard() local
3298 key_box[0] = None; in MakeKeyboard()
3299 key_box[1] = None; in MakeKeyboard()
3307 key_box[row + 1] = None; in MakeKeyboard()
3309 XtVaSetValues(key_box[row], XtNfromVert, key_box[row - 1], NULL); in MakeKeyboard()
3382 if (appres.keypad) MakeKeypad(form, key_box[0], key_box[1]); in MakeKeyboard()
3386 XtNfromHoriz, key_box[1], in MakeKeyboard()
3414 if (!appres.debug && key_box[first_row] != None) { in MakeKeyboard()
3416 XtVaGetValues(key_box[1], XtNwidth, &max_dwd, NULL); in MakeKeyboard()
3420 XtVaGetValues(key_box[row], XtNwidth, &dwd, NULL); in MakeKeyboard()
[all …]
/dports/games/garden-of-coloured-lights/garden-1.0.9/
H A DChangeLog32 * menu.c (key_box): Made the definition of keys short and sane.