-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathUIWindow.cpp
60 lines (51 loc) · 1.6 KB
/
UIWindow.cpp
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
#include "UIWindow.h"
#include "UIBase.h"
using namespace OaktreeLab::M5LiteUI;
OaktreeLab::M5LiteUI::UIWindow::UIWindow( const Rectangle &rect ) : UIElement() {
this->focusedElement = NULL;
this->rectElement.top = rect.top;
this->rectElement.left = rect.left;
this->rectElement.width = rect.width;
this->rectElement.height = rect.height;
}
OaktreeLab::M5LiteUI::UIWindow::~UIWindow() {
}
void OaktreeLab::M5LiteUI::UIWindow::focusNextElement() {
UIElement *element = getNextElement( getFocusedElement(), true );
this->focusedElement = element;
setFocus( this->focusedElement );
}
void OaktreeLab::M5LiteUI::UIWindow::clearFocus() {
setFocus( NULL );
}
void OaktreeLab::M5LiteUI::UIWindow::setFocus( UIElement *element ) {
this->focusedElement = element;
setFocus_inner( this, element );
base->handleFocusChange();
}
void OaktreeLab::M5LiteUI::UIWindow::setFocus_inner( UIElement *element, UIElement *target ) {
if ( element == target && element->canFocus && element->enabled ) {
element->giveFocus();
} else {
if ( element->hasFocus ) {
element->takeFocus();
}
}
for ( int i = 0 ; i < element->children.size() ; i ++ ) {
UIElement *e = element->children[i];
setFocus_inner( e, target );
}
}
UIElement *OaktreeLab::M5LiteUI::UIWindow::getFocusedElement() {
if ( focusedElement != NULL && focusedElement->hasFocus ) {
return focusedElement;
}
return NULL;
}
void OaktreeLab::M5LiteUI::UIWindow::draw( DrawingMode dmode ) {
DrawingContext dc = beginDraw();
if ( dmode == DrawingMode::TotalRedraw ) {
dc.canvas->fillScreen( bgColor );
}
endDraw();
}