|
| SensorWindow (const __FlashStringHelper *name, SensorManager *sensorManager, int left, int top, WindowSize size=Big) |
| Constructor. More...
|
|
| SensorWindow (const __FlashStringHelper *name, SensorManager *sensorManager, int left, int top, int width, int height) |
|
bool | IsAwaitTouch () |
| Returns true if window await touch action (like button) or false if touch manager should ignore this window during processing of touch events.
|
|
void | SetDecorators (DecoratorList *decorators) |
| Sets appearance settings.
|
|
virtual bool | OnTouch (int x, int y) |
| Process touch event.
|
|
void | NotifySensorHasData (SensorManager *sensorManager) |
| If sensor data was changed this notification is call.
|
|
| Window (const __FlashStringHelper *name, int left, int top, int width, int height) |
| Constructor. More...
|
|
DecoratorList * | GetDecorators () |
| Returns window decorators list.
|
|
void | AddDecorator (Decorator *decorator) |
| Adds decorator to the decaorator list.
|
|
Dialog * | FindDialog (const __FlashStringHelper *id) |
|
void | RegisterDialog (const __FlashStringHelper *id, Dialog *dlg) |
|
IDialogClosedEventReceiver::DialogResults | DoDialog (Dialog *dlg) |
|
void | RegisterTouchEventReceiver (ITouchEventReceiver *touchEventReceiver) |
| Registers receiver for touch event. More...
|
|
virtual void | OnTouching (DC *dc) |
| Touch manager calls this function in the loop as long as touch action proceeds.
|
|
Window * | RootWindow () |
| Returns pointer to root window. MainWindow does not have any parents.
|
|
virtual void | Move (int left, int top, int width, int height) |
| Moves and resizes window relativly to the parent window. More...
|
|
void | Invalidate () |
| If function is called than the window manager updates the window.
|
|
bool | IsDirty () |
| Returns true if window has to be updated.
|
|
int | Left () |
| Returns window left coordinate relative to the parent window.
|
|
int | Top () |
| Returns window top coordinate relative to the parent window.
|
|
int | Width () |
| Returns window width.
|
|
int | Height () |
| Returns window height.
|
|
void | AddChild (Window *window) |
| Adds window child window.
|
|
Window * | Parent () |
| Returns Parent window.
|
|
void | SetVisible (bool isVisible) |
| Sets window visibility status.
|
|
bool | IsVisible () |
| Returns true if window visible and false is hidden.
|
|
LinkedList< Window > & | Children () |
| Returns list of children window.
|
|
void | Redraw (DC *dc) |
| Performs full window redraw. More...
|
|
Window that visualizes data from sensor in from from text or chart with different time scala (See example Sensors monitor)