ui/motif/toolkit.c

changeset 21
012418e7dc90
parent 3
c1a75454b444
child 24
06bceda81a03
equal deleted inserted replaced
20:2dda1ad6dc7a 21:012418e7dc90
77 appclose_fnc(NULL, appclose_udata); 77 appclose_fnc(NULL, appclose_udata);
78 } 78 }
79 } 79 }
80 80
81 void ui_show(UiObject *obj) { 81 void ui_show(UiObject *obj) {
82 uic_check_group_widgets(obj->ctx);
82 XtRealizeWidget(obj->widget); 83 XtRealizeWidget(obj->widget);
83 } 84 }
85
86 void ui_set_enabled(UIWIDGET widget, int enabled) {
87 XtSetSensitive(widget, enabled);
88 }

mercurial