Home
last modified time | relevance | path

Searched refs:checkboxWidget (Results 1 – 3 of 3) sorted by relevance

/dports/games/openrct2/OpenRCT2-0.3.5.1/src/openrct2-ui/windows/
H A DNewsOptions.cpp187 rct_widget* checkboxWidget = &w->widgets[checkboxWidgetIndex]; in window_news_options_invalidate() local
196 checkboxWidget->type = WindowWidgetType::Checkbox; in window_news_options_invalidate()
197 checkboxWidget->left = baseCheckBox.left; in window_news_options_invalidate()
198 checkboxWidget->right = baseCheckBox.right; in window_news_options_invalidate()
199 checkboxWidget->top = y; in window_news_options_invalidate()
200 checkboxWidget->bottom = checkboxWidget->top + LIST_ROW_HEIGHT + 3; in window_news_options_invalidate()
201 checkboxWidget->text = ndef->caption; in window_news_options_invalidate()
207 checkboxWidget++; in window_news_options_invalidate()
212 while (checkboxWidget->type != WindowWidgetType::Last) in window_news_options_invalidate()
216 checkboxWidget->type = WindowWidgetType::Empty; in window_news_options_invalidate()
[all …]
/dports/graphics/xournalpp/xournalpp-1.1.0/src/gui/dialog/
H A DSettingsDialog.cpp261 GtkWidget* checkboxWidget = get(checkboxId); in enableWithCheckbox() local
262 bool enabled = gtk_toggle_button_get_active(GTK_TOGGLE_BUTTON(checkboxWidget)); in enableWithCheckbox()
267 GtkWidget* checkboxWidget = get(checkboxId); in disableWithCheckbox() local
268 bool enabled = gtk_toggle_button_get_active(GTK_TOGGLE_BUTTON(checkboxWidget)); in disableWithCheckbox()
/dports/devel/newt/newt-0.52.21/
H A Dsnack.c52 static snackWidget * checkboxWidget(PyObject * s, PyObject * args);
91 { "checkbox", (PyCFunction) checkboxWidget, METH_VARARGS, NULL },
866 static snackWidget * checkboxWidget(PyObject * s, PyObject * args) { in checkboxWidget() function