ui_control_panel(ui) HP Widgets ui_control_panel(ui)
NAME
ui_control_panel
SUPERCLASS
ui
DESCRIPTION
The ui_panel object provides an interface to the HP
XwformWidgetClass. It is a composite widget where children can be laid out relative to eachother or positioned
using (x,y) coordinates.
INSTANCE VARIABLES
none
MESSAGES
create!
creates the widget.
EXAMPLE
ui create!;
ui_control_panel new: cp
parent= ui
create!;
ui_button new: child1
parent= cp
label = "child1 - button"
create!
@ x : 10
@ y : 10;
ui_title new: child2
parent= cp
title= "child2 - title"
create!
@ "xRefName" : child1
@ "xAddWidth" : 1
@ "yRefName" : child1;
ui on! start!;
SEE ALSO
ui, ui_row_column, ui_popup, ui_button, ui_text, ui_arrow
Please send comments and suggestions toconsult@rpi.edu