An Input stacks a Control and Label.
More...
Go to the source code of this file.
An Input stacks a Control and Label.
Definition in file Input.h.
◆ InputOrientation
Input orientation defines the relative positioning of the Label.
Enumerator |
---|
InputOrientationLeft | |
InputOrientationRight | |
InputOrientationAbove | |
InputOrientationBelow | |
Definition at line 38 of file Input.h.
◆ _Input()
Definition at line 212 of file Input.c.
212 {
213 static Class *clazz;
214 static Once once;
215
216 do_once(&once, {
217 clazz = _initialize(&(const ClassDef) {
218 .name = "Input",
220 .instanceSize =
sizeof(
Input),
221 .interfaceOffset = offsetof(
Input, interface),
222 .interfaceSize = sizeof(InputInterface),
224 });
225 });
226
227 return clazz;
228}
Class * _StackView(void)
The StackView archetype.
◆ InputOrientationNames