Changeset View
Changeset View
Standalone View
Standalone View
source/blender/makesrna/intern/rna_screen.c
| Show First 20 Lines • Show All 92 Lines • ▼ Show 20 Lines | |||||
| RNA_def_property_boolean_sdna(prop, NULL, "temp", 1); | RNA_def_property_boolean_sdna(prop, NULL, "temp", 1); | ||||
| RNA_def_property_ui_text(prop, "Temporary", ""); | RNA_def_property_ui_text(prop, "Temporary", ""); | ||||
| prop = RNA_def_property(srna, "show_fullscreen", PROP_BOOLEAN, PROP_NONE); | prop = RNA_def_property(srna, "show_fullscreen", PROP_BOOLEAN, PROP_NONE); | ||||
| RNA_def_property_clear_flag(prop, PROP_EDITABLE); | RNA_def_property_clear_flag(prop, PROP_EDITABLE); | ||||
| RNA_def_property_boolean_funcs(prop, "rna_Screen_fullscreen_get", NULL); | RNA_def_property_boolean_funcs(prop, "rna_Screen_fullscreen_get", NULL); | ||||
| RNA_def_property_ui_text(prop, "Maximize", "An area is maximized, filling this screen"); | RNA_def_property_ui_text(prop, "Maximize", "An area is maximized, filling this screen"); | ||||
| prop = RNA_def_property(srna, "show_toptoolbar", PROP_BOOLEAN, PROP_NONE); | |||||
| RNA_def_property_boolean_negative_sdna(prop, NULL, "flag", SCREEN_SHOW_TOPTOOLBAR); | |||||
| RNA_def_property_ui_text(prop, "Show Top Buttons", "Show Top Button Bar"); | |||||
| RNA_def_property_update(prop, 0, "rna_Screen_bar_update"); | |||||
| /* Status Bar. */ | /* Status Bar. */ | ||||
| prop = RNA_def_property(srna, "show_statusbar", PROP_BOOLEAN, PROP_NONE); | prop = RNA_def_property(srna, "show_statusbar", PROP_BOOLEAN, PROP_NONE); | ||||
| RNA_def_property_boolean_negative_sdna(prop, NULL, "flag", SCREEN_COLLAPSE_STATUSBAR); | RNA_def_property_boolean_negative_sdna(prop, NULL, "flag", SCREEN_COLLAPSE_STATUSBAR); | ||||
| RNA_def_property_ui_text(prop, "Show Status Bar", "Show status bar"); | RNA_def_property_ui_text(prop, "Show Status Bar", "Show status bar"); | ||||
| RNA_def_property_update(prop, 0, "rna_Screen_bar_update"); | RNA_def_property_update(prop, 0, "rna_Screen_bar_update"); | ||||
| func = RNA_def_function(srna, "statusbar_info", "rna_Screen_statusbar_info_get"); | func = RNA_def_function(srna, "statusbar_info", "rna_Screen_statusbar_info_get"); | ||||
| ▲ Show 20 Lines • Show All 60 Lines • Show Last 20 Lines | |||||