25 Window2(
const __FlashStringHelper * name,
int left,
int top,
int width,
int height):
Window(name,left,top,width,height)
30 virtual void Move(
int left,
int top,
int width,
int height)
33 Children()[0]->Move(10, height / 2, width - 20, 40);
Base class for all window objects. Provides basic window functionality.
Definition: Window.h:34
virtual void Move(int left, int top, int width, int height)
Moves and resizes window relativly to the parent window.
Definition: Window2.h:30
static Environment * Get()
Returns singltone instance of environment.
Definition: Environment.h:44
virtual void Move(int left, int top, int width, int height)
Moves and resizes window relativly to the parent window.
Definition: Window.h:149
LinkedList< Window > & Children()
Returns list of children window.
Definition: Window.h:223
Window(const __FlashStringHelper *name, int left, int top, int width, int height)
Constructor.
Definition: Window.h:60
void AddChild(Window *window)
Adds window child window.
Definition: Window.h:194
virtual void SetDecorators(DecoratorList *decorators)
Sets window decorators list.
Definition: Window.h:76
Example window with yellow background.
Definition: Window2.h:22
Implement Label control.
Definition: Label.h:24