minwin
app
button
canvas
combo
component
dialog
event
font
geometry
group
icon
image
label
layout
listbox
menu
multidg
paint
peer
peerimpl
scroll
text
window
|
minwin.group
A Group is a lightweight component (meaning it has
no peer) that contains and lays out other components.
A GroupBox is a potentially heavyweight component that
puts a box and label around other components.
- class Group: minwin.component.Component;
- A lightweight (meaning it has no peer) group of components layed out in a rectanguluar area.
- this(Component parent, char[] name = "");
- Construct an empty group with given parent and name.
- bool visible;
- Read/write property to show or hide all the components in the group. The group is visible if any of the children are visible.
- bool enabled;
- Read/write property to enable or disable all the components in the group. The group is enabled if any of the children are enabled.
- class GroupBox: minwin.component.WindowChild;
- A group of components layed out in a rectanguluar area with a border and title around the edge.
- this(Component parent, char[] text, char[] name = "");
- Construct an empty GroupBox with given parent, title and name.
The title is usually placed in the top left corner and a border is drawn around the contents of the GroupBox.
- char[] text;
- Read/write property for the text label displayed at the top of the box.
|