Home
last modified time | relevance | path

Searched refs:value_editor (Results 1 – 25 of 26) sorted by relevance

12

/dports/devel/godot-tools/godot-3.2.3-stable/editor/
H A Dproperty_editor.cpp363 value_editor[i]->hide(); in edit()
713 value_editor[0]->set_text(v); in edit()
1579 v = value_editor[0]->get_text(); in _modified()
1768 if (value_editor[i]->has_focus()) { in _focus_enter()
1770 value_editor[i]->select_all(); in _focus_enter()
1794 value_editor[i]->select(0, 0); in _focus_exit()
1857 value_editor[i]->show(); in config_value_editors()
1865 value_editor[i]->hide(); in config_value_editors()
1901 value_editor[i] = memnew(LineEdit); in CustomPropertyEditor()
1902 add_child(value_editor[i]); in CustomPropertyEditor()
[all …]
H A Dproperty_editor.h105 LineEdit *value_editor[MAX_VALUE_EDITORS]; variable
/dports/devel/godot/godot-3.2.3-stable/editor/
H A Dproperty_editor.cpp363 value_editor[i]->hide(); in edit()
713 value_editor[0]->set_text(v); in edit()
1579 v = value_editor[0]->get_text(); in _modified()
1768 if (value_editor[i]->has_focus()) { in _focus_enter()
1770 value_editor[i]->select_all(); in _focus_enter()
1794 value_editor[i]->select(0, 0); in _focus_exit()
1857 value_editor[i]->show(); in config_value_editors()
1865 value_editor[i]->hide(); in config_value_editors()
1901 value_editor[i] = memnew(LineEdit); in CustomPropertyEditor()
1902 add_child(value_editor[i]); in CustomPropertyEditor()
[all …]
H A Dproperty_editor.h105 LineEdit *value_editor[MAX_VALUE_EDITORS]; variable
/dports/games/openclonk/openclonk-release-8.1-src/src/editor/
H A DC4ConsoleQtLocalizeString.cpp70 edited_languages.front().value_editor->setFocus(); // fallback to first editor in C4ConsoleQtLocalizeStringDlg()
73 if (!langs.value_editor->text().length()) in C4ConsoleQtLocalizeStringDlg()
75 langs.value_editor->setFocus(); in C4ConsoleQtLocalizeStringDlg()
96 QLineEdit *value_editor = new QLineEdit(this); in AddEditor() local
97 ui.mainGrid->addWidget(value_editor, row, 1); in AddEditor()
101 new_editor.value_editor = value_editor; in AddEditor()
103 return value_editor; in AddEditor()
113 return langs.value_editor; in GetEditorByLanguage()
130 QString text = langs.value_editor->text(); in done()
H A DC4ConsoleQtLocalizeString.h38 QLineEdit *value_editor; member
/dports/devel/godot2/godot-2.1.6-stable/editor/
H A Dproperty_editor.cpp273 value_editor[i]->hide(); in edit()
443 value_editor[0]->set_text(v); in edit()
1297 v = value_editor[0]->get_text(); in _modified()
1548 if (value_editor[i]->has_focus()) { in _focus_enter()
1550 value_editor[i]->select_all(); in _focus_enter()
1573 value_editor[i]->select(0, 0); in _focus_exit()
1618 value_editor[i]->show(); in config_value_editors()
1626 value_editor[i]->hide(); in config_value_editors()
1660 value_editor[i] = memnew(LineEdit); in CustomPropertyEditor()
1661 add_child(value_editor[i]); in CustomPropertyEditor()
[all …]
H A Dproperty_editor.h92 LineEdit *value_editor[MAX_VALUE_EDITORS]; variable
/dports/devel/godot2-tools/godot-2.1.6-stable/editor/
H A Dproperty_editor.cpp273 value_editor[i]->hide(); in edit()
443 value_editor[0]->set_text(v); in edit()
1297 v = value_editor[0]->get_text(); in _modified()
1548 if (value_editor[i]->has_focus()) { in _focus_enter()
1550 value_editor[i]->select_all(); in _focus_enter()
1573 value_editor[i]->select(0, 0); in _focus_exit()
1618 value_editor[i]->show(); in config_value_editors()
1626 value_editor[i]->hide(); in config_value_editors()
1660 value_editor[i] = memnew(LineEdit); in CustomPropertyEditor()
1661 add_child(value_editor[i]); in CustomPropertyEditor()
[all …]
H A Dproperty_editor.h92 LineEdit *value_editor[MAX_VALUE_EDITORS]; variable
/dports/graphics/py-traitsui/traitsui-7.1.1/traitsui/qt4/
H A Dvalue_editor.py26 from traitsui.editors.value_editor import _ValueEditor, ToolkitEditorFactory
H A Dtoolkit.py675 def value_editor(self, *args, **traits): member in GUIToolkit
676 from . import value_editor as ve
/dports/graphics/py-traitsui/traitsui-7.1.1/traitsui/wx/
H A Dvalue_editor.py26 from traitsui.editors.value_editor import _ValueEditor, ToolkitEditorFactory
/dports/graphics/py-traitsui/traitsui-7.1.1/traitsui/
H A Dtable_filter.py251 value_editor = Instance(EditorFactory) variable in GenericTableFilterRule
278 self.value_editor = filter._object.base_trait(name).get_editor()
392 return object.value_editor
H A Dtoolkit.py571 def value_editor(self, *args, **traits): member in Toolkit
/dports/graphics/py-traitsui/traitsui-7.1.1/
H A Dsetup.cfg47 traitsui/editors/value_editor.py,
117 traitsui/qt4/value_editor.py,
197 traitsui/wx/value_editor.py,
/dports/graphics/py-traitsui/traitsui-7.1.1/traitsui/editors/
H A Dapi.py59 from .value_editor import ValueEditor
/dports/devel/godot2-tools/godot-2.1.6-stable/scene/gui/
H A Dtree.cpp1729 if (value_editor->has_point(value_editor->get_local_mouse_pos())) in _text_editor_modal_close()
1738 value_editor->hide(); in text_editor_enter()
2401 value_editor->show_modal(); in edit_selected()
2403 value_editor->set_min(c.min); in edit_selected()
2404 value_editor->set_max(c.max); in edit_selected()
2405 value_editor->set_step(c.step); in edit_selected()
2406 value_editor->set_val(c.val); in edit_selected()
3468 value_editor = memnew(HSlider); in Tree()
3469 add_child(value_editor); in Tree()
3470 value_editor->set_as_toplevel(true); in Tree()
[all …]
H A Dtree.h318 HSlider *value_editor; variable
/dports/devel/godot2/godot-2.1.6-stable/scene/gui/
H A Dtree.cpp1729 if (value_editor->has_point(value_editor->get_local_mouse_pos())) in _text_editor_modal_close()
1738 value_editor->hide(); in text_editor_enter()
2401 value_editor->show_modal(); in edit_selected()
2403 value_editor->set_min(c.min); in edit_selected()
2404 value_editor->set_max(c.max); in edit_selected()
2405 value_editor->set_step(c.step); in edit_selected()
2406 value_editor->set_val(c.val); in edit_selected()
3468 value_editor = memnew(HSlider); in Tree()
3469 add_child(value_editor); in Tree()
3470 value_editor->set_as_toplevel(true); in Tree()
[all …]
H A Dtree.h318 HSlider *value_editor; variable
/dports/devel/godot-tools/godot-3.2.3-stable/scene/gui/
H A Dtree.cpp2059 if (value_editor->has_point(value_editor->get_local_mouse_position())) in _text_editor_modal_close()
2068 value_editor->hide(); in text_editor_enter()
2835 value_editor->show_modal(); in edit_selected()
2837 value_editor->set_min(c.min); in edit_selected()
2838 value_editor->set_max(c.max); in edit_selected()
2839 value_editor->set_step(c.step); in edit_selected()
2840 value_editor->set_value(c.val); in edit_selected()
4089 value_editor = memnew(HSlider); in Tree()
4090 add_child(value_editor); in Tree()
4091 value_editor->set_as_toplevel(true); in Tree()
[all …]
H A Dtree.h363 HSlider *value_editor; variable
/dports/devel/godot/godot-3.2.3-stable/scene/gui/
H A Dtree.cpp2059 if (value_editor->has_point(value_editor->get_local_mouse_position())) in _text_editor_modal_close()
2068 value_editor->hide(); in text_editor_enter()
2835 value_editor->show_modal(); in edit_selected()
2837 value_editor->set_min(c.min); in edit_selected()
2838 value_editor->set_max(c.max); in edit_selected()
2839 value_editor->set_step(c.step); in edit_selected()
2840 value_editor->set_value(c.val); in edit_selected()
4089 value_editor = memnew(HSlider); in Tree()
4090 add_child(value_editor); in Tree()
4091 value_editor->set_as_toplevel(true); in Tree()
[all …]
H A Dtree.h363 HSlider *value_editor; variable

12