Home
last modified time | relevance | path

Searched refs:combo (Results 226 – 250 of 15938) sorted by relevance

12345678910>>...638

/dports/graphics/gimp-app/gimp-2.10.30/app/tools/
H A Dgimpcloneoptions-gui.c58 GtkWidget *combo; in gimp_clone_options_gui() local
69 combo = gimp_prop_enum_combo_box_new (config, "clone-type", 0, 0); in gimp_clone_options_gui()
70 gimp_int_combo_box_set_label (GIMP_INT_COMBO_BOX (combo), _("Source")); in gimp_clone_options_gui()
71 g_object_set (combo, "ellipsize", PANGO_ELLIPSIZE_END, NULL); in gimp_clone_options_gui()
72 gtk_frame_set_label_widget (GTK_FRAME (frame), combo); in gimp_clone_options_gui()
73 gtk_widget_show (combo); in gimp_clone_options_gui()
101 combo = gimp_prop_enum_combo_box_new (config, "align-mode", 0, 0); in gimp_clone_options_gui()
102 gimp_int_combo_box_set_label (GIMP_INT_COMBO_BOX (combo), _("Alignment")); in gimp_clone_options_gui()
103 g_object_set (combo, "ellipsize", PANGO_ELLIPSIZE_END, NULL); in gimp_clone_options_gui()
104 gtk_box_pack_start (GTK_BOX (vbox), combo, TRUE, TRUE, 0); in gimp_clone_options_gui()
[all …]
/dports/security/fwbuilder/fwbuilder-5.3.7/src/libgui/
H A DDynamicGroupDialog.cpp69 return combo; in createEditor()
91 combo->clear(); in setEditorData()
95 combo->setCurrentIndex(0); in setEditorData()
99 combo->setCurrentIndex(combo->count() - 1); in setEditorData()
102 combo->insertSeparator(2); in setEditorData()
108 combo->setCurrentIndex(combo->count() - 1); in setEditorData()
114 combo->setCurrentIndex(0); in setEditorData()
119 combo->setCurrentIndex(combo->count() - 1); in setEditorData()
121 combo->insertSeparator(2); in setEditorData()
134 combo->setCurrentIndex(combo->count() - 1); in setEditorData()
[all …]
/dports/x11-toolkits/guile-gnome-platform/guile-gnome-platform-2.16.5/gtk/doc/gtk/
H A Dsection-gtkcombobox.xml.texi9 A @code{<gtk-combo-box>} is a widget that allows the user to choose from a list
10 of valid choices. The @code{<gtk-combo-box>} displays the selected choice. When
11 activated, the @code{<gtk-combo-box>} displays a popup which allows the user to
14 @code{<gtk-option-menu>}, or similar to a Windows-style combo box.
16 Unlike its predecessors @code{<gtk-combo>} and @code{<gtk-option-menu>}, the
20 view. This is possible since @code{<gtk-combo-box>} implements the
25 In addition to the model-view API, @code{<gtk-combo-box>} offers a simple API
26 which is suitable for text-only combo boxes, and hides the complexity of
28 @code{gtk-combo-box-new-text}, @code{gtk-combo-box-append-text},
29 @code{gtk-combo-box-insert-text}, @code{gtk-combo-box-prepend-text},
[all …]
/dports/deskutils/gnome-todo/gnome-todo-41.0/subprojects/libadwaita/src/stylesheet/widgets/
H A D_dropdowns.scss31 button.combo { @extend %button_basic_drop_active; }
61 // the combo is a composite widget so the way we do button linking doesn't
67 &:not(:first-child) > box > button.combo { @extend %linked_not_left; }
68 &:not(:last-child) > box > button.combo { @extend %linked_not_right; }
72 &:not(:first-child) > box > button.combo { @extend %linked_not_right; }
73 &:not(:last-child) > box > button.combo { @extend %linked_not_left; }
78 &:not(:first-child) > box > button.combo { @extend %linked_not_top; }
79 &:not(:last-child) > box > button.combo { @extend %linked_not_bottom; }
90 &:not(:last-child) > combobox > box > button.combo { @extend %linked_not_left; }
95 &:not(:first-child) > combobox > box > button.combo { @extend %linked_not_top; }
[all …]
/dports/devel/qtcreator/qt-creator-opensource-src-5.0.3/src/plugins/scxmleditor/plugin_interface/
H A Dscattributeitemdelegate.cpp45 auto combo = new QComboBox(parent); in createEditor() local
46 combo->setFocusPolicy(Qt::StrongFocus); in createEditor()
47 return combo; in createEditor()
78 auto combo = qobject_cast<QComboBox*>(editor); in setEditorData() local
79 if (combo) { in setEditorData()
80 combo->clear(); in setEditorData()
84 combo->addItem(val); in setEditorData()
86 combo->setCurrentText(index.data().toString()); in setEditorData()
100 auto combo = qobject_cast<QComboBox*>(editor); in setModelData() local
101 if (combo) { in setModelData()
[all …]
/dports/java/eclipse/eclipse.platform.releng.aggregator-R4_16/eclipse.platform.ui/tests/org.eclipse.jface.tests.databinding/src/org/eclipse/jface/tests/internal/databinding/swt/
H A DCComboObservableValueSelectionTest.java45 private CCombo combo; field in CComboObservableValueSelectionTest
51 combo = delegate.combo; in setUp()
66 combo.select(0); in testSelection_NotifiesObservable()
79 /* package */CCombo combo; field in CComboObservableValueSelectionTest.Delegate
84 combo = new CCombo(shell, SWT.NONE); in setUp()
85 combo.add("a"); in setUp()
86 combo.add("b"); in setUp()
96 return WidgetProperties.widgetSelection().observe(realm, combo); in createObservableValue()
114 switch (combo.getSelectionIndex()) { in createValue()
118 return combo.getItem(0); in createValue()
[all …]
/dports/graphics/krita/krita-4.4.8/libs/ui/input/config/
H A Dkis_input_mode_delegate.cpp47 KComboBox *combo = new KComboBox(parent); in createEditor() local
50 combo->addItems(sorted); in createEditor()
51 return combo; in createEditor()
56 KComboBox *combo = qobject_cast<KComboBox *>(editor); in setEditorData() local
57 Q_ASSERT(combo); in setEditorData()
59 int i = combo->findText(d->action->shortcutIndexes().key(index.data(Qt::EditRole).toUInt())); in setEditorData()
60 combo->setCurrentIndex(i); in setEditorData()
65 KComboBox *combo = qobject_cast<KComboBox *>(editor); in setModelData() local
66 Q_ASSERT(combo); in setModelData()
68 int i = d->action->shortcutIndexes().value(combo->currentText()); in setModelData()
/dports/java/eclipse/eclipse.platform.releng.aggregator-R4_16/eclipse.platform.swt/examples/org.eclipse.swt.snippets/src/org/eclipse/swt/snippets/
H A DSnippet289.java33 final Combo combo = new Combo(shell, SWT.NONE); in main() local
34 combo.setItems("1111", "2222", "3333", "4444"); in main()
35 combo.setText(combo.getItem(0)); in main()
36 combo.addVerifyListener(e -> { in main()
37 String text = combo.getText(); in main()
45 combo.addTraverseListener(e -> { in main()
49 String newText = combo.getText(); in main()
52 combo.add(newText); in main()
53 combo.setSelection(new Point(0, newText.length())); in main()
/dports/editors/pluma/pluma-1.26.0/pluma/
H A Dpluma-status-combo-box.h52 void (*changed) (PlumaStatusComboBox *combo,
59 const gchar *pluma_status_combo_box_get_label (PlumaStatusComboBox *combo);
60 void pluma_status_combo_box_set_label (PlumaStatusComboBox *combo,
63 void pluma_status_combo_box_add_item (PlumaStatusComboBox *combo,
66 void pluma_status_combo_box_remove_item (PlumaStatusComboBox *combo,
69 GList *pluma_status_combo_box_get_items (PlumaStatusComboBox *combo);
70 const gchar *pluma_status_combo_box_get_item_text (PlumaStatusComboBox *combo,
72 void pluma_status_combo_box_set_item_text (PlumaStatusComboBox *combo,
76 void pluma_status_combo_box_set_item (PlumaStatusComboBox *combo,
79 GtkLabel *pluma_status_combo_box_get_item_label (PlumaStatusComboBox *combo);
/dports/java/eclipse/eclipse.platform.releng.aggregator-R4_16/eclipse.platform.ui/bundles/org.eclipse.ui.browser/src/org/eclipse/ui/internal/browser/
H A DTextAction.java52 Point selection = browser.combo.getSelection(); in copy()
80 Point selection = browser.combo.getSelection(); in cut()
92 Point selection = browser.combo.getSelection(); in delete()
93 String text = browser.combo.getText(); in delete()
97 browser.combo.setText(text); in delete()
98 browser.combo.setSelection(new Point(selection.x, selection.x)); in delete()
117 Point selection = browser.combo.getSelection(); in paste()
118 String text = browser.combo.getText(); in paste()
123 browser.combo.setText(text); in paste()
127 browser.combo.setSelection(new Point(x, x)); in paste()
[all …]
/dports/x11-toolkits/gnocl/gnocl-0.9.96/demo/
H A Dtest-comboEntry.tcl14 set combo [gnocl::comboEntry]
28 $combo configure $opt $val
35 $combo configure $opt $val
41 $combo configure -items $val
45 $combo delete
63 $left add [gnocl::label -text "%__ComboEntry" -mnemonicWidget $combo]
64 $left add $combo
68 -onToggled "$combo configure -sensitive %v"]
70 -onToggled "$combo configure -visible %v"]
111 $combo configure -value Bird
[all …]
/dports/net/libksieve/libksieve-21.12.3/src/ksieveui/autocreatescripts/sieveconditions/
H A Dsieveconditionsize.cpp31 auto combo = new QComboBox; in createParamWidget() local
32 combo->setObjectName(QStringLiteral("combosize")); in createParamWidget()
33 combo->addItem(i18n("under"), QStringLiteral(":under")); in createParamWidget()
34 combo->addItem(i18n("over"), QStringLiteral(":over")); in createParamWidget()
35 lay->addWidget(combo); in createParamWidget()
36 connect(combo, &QComboBox::activated, this, &SieveConditionSize::valueChanged); in createParamWidget()
48 const QComboBox *combo = w->findChild<QComboBox *>(QStringLiteral("combosize")); in code() local
49 const QString comparison = combo->itemData(combo->currentIndex()).toString(); in code()
68 auto combo = w->findChild<QComboBox *>(QStringLiteral("combosize")); in setParamWidgetValue() local
69 const int index = combo->findData(AutoCreateScriptUtil::tagValue(tagValue)); in setParamWidgetValue()
[all …]
/dports/java/phpeclipse/plugins/net.sourceforge.phpeclipse.webbrowser/src/net/sourceforge/phpeclipse/webbrowser/internal/
H A DTextAction.java57 Point selection = browser.combo.getSelection(); in copy()
63 browser.clipboard.setContents(new String[] { browser.combo in copy()
89 Point selection = browser.combo.getSelection(); in cut()
102 Point selection = browser.combo.getSelection(); in delete()
103 String text = browser.combo.getText(); in delete()
107 browser.combo.setText(text); in delete()
129 Point selection = browser.combo.getSelection(); in paste()
130 String text = browser.combo.getText(); in paste()
136 browser.combo.setText(text); in paste()
140 browser.combo.setSelection(new Point(x, x)); in paste()
[all …]
/dports/editors/lazarus-devel/lazarus-6df7e8756882f7d7f28f662011ee72f21746c580/components/printers/unix/
H A Dcupslcl.pas46 combo.Tag:=-1;
47 combo.Enabled:=false;
72 j := combo.items.AddObject(choice^.Text, TObject(Choice));
74 combo.Tag := j;
78 combo.ItemIndex := combo.Tag;
79 combo.Enabled := combo.Items.Count > 0;
81 if not combo.Enabled then
83 combo.Items.Text := p4lrsNotAvailable;
84 combo.ItemIndex := 0;
88 DebugLn(' SelValue="%s" ItemIndex=%d',[St,combo.ItemIndex]);
/dports/editors/lazarus-qt5-devel/lazarus-6df7e8756882f7d7f28f662011ee72f21746c580/components/printers/unix/
H A Dcupslcl.pas46 combo.Tag:=-1;
47 combo.Enabled:=false;
72 j := combo.items.AddObject(choice^.Text, TObject(Choice));
74 combo.Tag := j;
78 combo.ItemIndex := combo.Tag;
79 combo.Enabled := combo.Items.Count > 0;
81 if not combo.Enabled then
83 combo.Items.Text := p4lrsNotAvailable;
84 combo.ItemIndex := 0;
88 DebugLn(' SelValue="%s" ItemIndex=%d',[St,combo.ItemIndex]);
/dports/net/gupnp-tools/gupnp-tools-0.10.2/src/av-cp/
H A Drenderer-combo.c55 GtkComboBox *combo; in get_selected_av_transport() local
59 combo = GTK_COMBO_BOX (renderer_combo); in get_selected_av_transport()
90 GtkComboBox *combo; in get_selected_rendering_control() local
113 GtkComboBox *combo; in get_selected_renderer_volume() local
138 GtkComboBox *combo; in get_selected_renderer_state() local
221 is_iter_active (GtkComboBox *combo, in is_iter_active() argument
452 GtkComboBox *combo; in clear_selected_renderer_state() local
472 GtkComboBox *combo; in append_media_renderer_to_tree() local
834 GtkComboBox *combo; in remove_media_renderer() local
860 GtkComboBox *combo; in on_renderer_combo_changed() local
[all …]
/dports/net/cloudquery/cloudquery-0.16.0/pkg/module/drift/
H A Dmodel.go138 var combo struct {
162 transform(r, r.Extra, &combo.Extra)
163 transform(r, r.Equal, &combo.Equal)
181 combo.Extra,
187 combo.Missing,
193 combo.Different,
199 combo.Equal,
205 combo.DeepEqual,
251 for _, l := range [][]combined{combo.Equal, combo.DeepEqual, combo.Different} {
269 for _, t := range append(append(combo.Equal, combo.DeepEqual...), combo.Different...) {
[all …]
/dports/devel/hs-threadscope/threadscope-0.2.14/_cabal_deps/gtk-0.15.5/demo/menu/
H A DComboDemo.hs15 combo <- comboBoxNewWithEntry
16 comboBoxSetModelText combo
18 mapM_ (comboBoxAppendText combo)
22 comboBoxSetActive combo 0
25 (Just w) <- binGetChild combo
32 store <- comboBoxGetModelText combo
34 comboBoxSetActive combo (-1)
38 comboBoxSetActive combo idx
41 containerAdd win combo
/dports/x11/conlecterm/conlecterm-1.4.3.0/_cabal_deps/gtk3-0.15.5/demo/menu/
H A DComboDemo.hs15 combo <- comboBoxNewWithEntry
16 comboBoxSetModelText combo
18 mapM_ (comboBoxAppendText combo)
22 comboBoxSetActive combo 0
25 (Just w) <- binGetChild combo
32 store <- comboBoxGetModelText combo
34 comboBoxSetActive combo (-1)
38 comboBoxSetActive combo idx
41 containerAdd win combo
/dports/x11-toolkits/wxgtk30/wxWidgets-3.0.5.1/samples/combo/
H A Dcombo.dsp7 CFG=combo - Win32 Debug
11 !MESSAGE NMAKE /f "combo.mak".
16 !MESSAGE NMAKE /f "combo.mak" CFG="combo - Win32 Debug"
34 !IF "$(CFG)" == "combo - Win32 DLL Release"
44 # PROP Intermediate_Dir "vc_mswudll\combo"
94 # PROP Intermediate_Dir "vc_mswu\combo"
138 # Name "combo - Win32 DLL Release"
139 # Name "combo - Win32 DLL Debug"
140 # Name "combo - Win32 Release"
141 # Name "combo - Win32 Debug"
[all …]
/dports/x11-toolkits/py-wxPython40/wxPython-4.0.7/ext/wxWidgets/samples/combo/
H A Dcombo.dsp7 CFG=combo - Win32 Debug
11 !MESSAGE NMAKE /f "combo.mak".
16 !MESSAGE NMAKE /f "combo.mak" CFG="combo - Win32 Debug"
34 !IF "$(CFG)" == "combo - Win32 DLL Release"
44 # PROP Intermediate_Dir "vc_mswudll\combo"
94 # PROP Intermediate_Dir "vc_mswu\combo"
138 # Name "combo - Win32 DLL Release"
139 # Name "combo - Win32 DLL Debug"
140 # Name "combo - Win32 Release"
141 # Name "combo - Win32 Debug"
[all …]
/dports/x11-toolkits/gtkada/gtkada-2.24.4.0/src/gtkextra/
H A Dgtkcolorcombo.c161 GtkColorCombo *combo; in gtk_color_combo_destroy() local
164 if(combo && combo->button) /* patched by Mario Motta <mmotta@guest.net> */ in gtk_color_combo_destroy()
167 if(combo->button[i*combo->ncols+j]){ in gtk_color_combo_destroy()
168 gtk_widget_destroy(combo->button[i*combo->ncols+j]); in gtk_color_combo_destroy()
169 combo->button[i*combo->ncols+j] = NULL; in gtk_color_combo_destroy()
172 if(combo->button){ in gtk_color_combo_destroy()
174 combo->button = NULL; in gtk_color_combo_destroy()
177 if(combo->colors){ in gtk_color_combo_destroy()
280 GtkColorCombo *combo; in pick_color() local
322 if(combo->row == -1 || combo->column == -1) return FALSE; in gtk_color_combo_customize()
[all …]
/dports/www/bluefish/bluefish-2.2.12/src/plugin_htmlbar/
H A Dhtml.c741 gtk_widget_grab_focus(dg->combo[2]); in quickanchor_dialog()
1265 dg->combo[1] = NULL; in body_dialog()
1266 dg->combo[2] = NULL; in body_dialog()
1267 dg->combo[3] = NULL; in body_dialog()
1268 dg->combo[4] = NULL; in body_dialog()
1269 dg->combo[5] = NULL; in body_dialog()
2393 gtk_widget_set_sensitive(dg->combo[0], FALSE); in columnwidth_auto_toggled_lcb()
2396 gtk_widget_set_sensitive(dg->combo[0], TRUE); in columnwidth_auto_toggled_lcb()
2408 gtk_widget_set_sensitive(dg->combo[1], TRUE); in columngap_normal_clicked_lcb()
2420 gtk_widget_set_sensitive(dg->combo[4], TRUE); in columnrulewidth_changed_lcb()
[all …]
/dports/net-mgmt/nagios-check_bacula11/bacula-11.0.5/src/qt-console/util/
H A Dcomboutil.h30 void comboSel(QComboBox *combo, const QString &val);
34 void comboCond(QStringList &cndlist, const QComboBox *combo, const char *fldname);
44 void boolComboFill(QComboBox *combo);
45 void boolComboCond(QStringList &cndlist, const QComboBox *combo, const char *fldname);
48 void levelComboFill(QComboBox *combo);
49 void levelComboCond(QStringList &cndlist, const QComboBox *combo, const char *fldname);
52 void jobStatusComboFill(QComboBox *combo);
53 void jobStatusComboCond(QStringList &cndlist, const QComboBox *combo, const char *fldname);
/dports/net-mgmt/nagios-check_bacula9/bacula-9.6.7/src/qt-console/util/
H A Dcomboutil.h30 void comboSel(QComboBox *combo, const QString &val);
34 void comboCond(QStringList &cndlist, const QComboBox *combo, const char *fldname);
44 void boolComboFill(QComboBox *combo);
45 void boolComboCond(QStringList &cndlist, const QComboBox *combo, const char *fldname);
48 void levelComboFill(QComboBox *combo);
49 void levelComboCond(QStringList &cndlist, const QComboBox *combo, const char *fldname);
52 void jobStatusComboFill(QComboBox *combo);
53 void jobStatusComboCond(QStringList &cndlist, const QComboBox *combo, const char *fldname);

12345678910>>...638