Eval » Historie » Version 25
Maximilian Seesslen, 24.08.2022 13:51
1 | 1 | Maximilian Seesslen | h1. Eval |
---|---|---|---|
2 | |||
3 | h2. Widgets |
||
4 | |||
5 | 3 | Maximilian Seesslen | There is a ODesktop that holds a list of OScreens (or only the curent). |
6 | 1 | Maximilian Seesslen | There is a OScreen that holds a list of OWidgets. |
7 | When the touch is pressed, the corresponding button can be determined. |
||
8 | An signal can be emmited. |
||
9 | An press-event can be queued, An release-event can be queued. An click-event can be queued if current button matches original pressed button. |
||
10 | |||
11 | * OButton::draw(): completely draws the widget |
||
12 | * OButton::update(): only draw status-relevant items, e.g. pressed, released, time changed... |
||
13 | |||
14 | 2 | Maximilian Seesslen | All screens can be prepared at start. |
15 | 1 | Maximilian Seesslen | A Screen can be active or inactive. |
16 | 3 | Maximilian Seesslen | |
17 | 12 | Maximilian Seesslen | Only one screen is active plus an navigation-screen? |
18 | |||
19 | 3 | Maximilian Seesslen | h2. Touch |
20 | |||
21 | 16 | Maximilian Seesslen | There is an touch class that helps converting raw values to X-Y-coordinates. [[Biwak:touch]] |
22 | 17 | Maximilian Seesslen | CTouch will emit signals "pressed, released, clicked" that can be connected to libocelli. |
23 | 2 | Maximilian Seesslen | |
24 | 1 | Maximilian Seesslen | h2. Watch |
25 | |||
26 | 5 | Maximilian Seesslen | * the OWatch class shows an clock with specific style, analog or digital |
27 | 1 | Maximilian Seesslen | |
28 | 6 | Maximilian Seesslen | h2. Example: Minutnik |
29 | 1 | Maximilian Seesslen | |
30 | * Main screen; CWatch, Add-Button |
||
31 | * Add-Screen |
||
32 | ** Espresso, Weisswurst, Weiches Ei, Hartes Ei, Nudeln, Pizza, Waschmaschine, Cancel; Height 32 |
||
33 | * Alarm Screen |
||
34 | * Logo, Splash screen at boot time and stand-by-screen |
||
35 | 7 | Maximilian Seesslen | * Release v2.0.0: Mode-Screen: Minutnik, Clock, StopWatch |
36 | 6 | Maximilian Seesslen | |
37 | 7 | Maximilian Seesslen | h2. Example: CANDis |
38 | 1 | Maximilian Seesslen | |
39 | 7 | Maximilian Seesslen | * Main screen |
40 | 10 | Maximilian Seesslen | ** Button for Light, Sensemux-Diagram, Activity (TV, Musik, Solder, Off), Miniminutnik |
41 | 7 | Maximilian Seesslen | ** Header with Clock |
42 | 8 | Maximilian Seesslen | * Light-Screen |
43 | ** Power-Widget |
||
44 | ** Ok-Button |
||
45 | 7 | Maximilian Seesslen | * Clock-Screen (Screen saver) |
46 | 9 | Maximilian Seesslen | ** Clock, Date, Temperature, Quick-Access-Buttons |
47 | 18 | Maximilian Seesslen | |
48 | h2. Pointers |
||
49 | |||
50 | Like in Qt an widget has an parent. |
||
51 | |||
52 | h2. Single App class vs. Screens |
||
53 | |||
54 | Having everything in an single class may be confusing. It may be split to per-Screen-classes. |
||
55 | 19 | Maximilian Seesslen | <pre><code class="cpp"> |
56 | 18 | Maximilian Seesslen | |
57 | 25 | Maximilian Seesslen | class OWidget |
58 | { |
||
59 | static GDisplay *m_display; |
||
60 | public: |
||
61 | CSignal signalClicked(); |
||
62 | |||
63 | virtual pressed(int x, int y); |
||
64 | virtual released(int x, int y); |
||
65 | virtual clicked(int x, int y); |
||
66 | } |
||
67 | |||
68 | OWidget::m_display=nullptr; |
||
69 | |||
70 | 24 | Maximilian Seesslen | class OScreen |
71 | { |
||
72 | CColor background; |
||
73 | 25 | Maximilian Seesslen | CList <OWidget *>m_widgets; |
74 | 1 | Maximilian Seesslen | public: |
75 | 25 | Maximilian Seesslen | virtual clicked(int x,int y) |
76 | { |
||
77 | OWidget *widget=getWidget(x,y); |
||
78 | if(widget) |
||
79 | widget->clicked( x, y); |
||
80 | } |
||
81 | 22 | Maximilian Seesslen | } |
82 | |||
83 | class Ocelli |
||
84 | { |
||
85 | OScreen *currentScreen; |
||
86 | OScreen *previousScreen; |
||
87 | 1 | Maximilian Seesslen | public: |
88 | 25 | Maximilian Seesslen | Ocelli(CGDisplay &display, CTouch &touch) |
89 | { |
||
90 | OWidget::m_pDisplay=&display; |
||
91 | touch.signalClicked.connect( this, Ocelli::clicked ) |
||
92 | } |
||
93 | 18 | Maximilian Seesslen | setCurrentScreen(OScreen *screen); |
94 | 1 | Maximilian Seesslen | setPreviousScreen(); |
95 | 25 | Maximilian Seesslen | clicked( int x, int y) |
96 | { |
||
97 | if(currentScreen) |
||
98 | { |
||
99 | currentScreen->clicked( x, y); |
||
100 | } |
||
101 | } |
||
102 | 21 | Maximilian Seesslen | } |
103 | 22 | Maximilian Seesslen | |
104 | 24 | Maximilian Seesslen | class CApp: Ocelli |
105 | 1 | Maximilian Seesslen | { |
106 | 24 | Maximilian Seesslen | public: |
107 | 1 | Maximilian Seesslen | |
108 | // OScreen *screens[3]; |
||
109 | 25 | Maximilian Seesslen | CScreenMain *screenMain; |
110 | CScreenAlarm *screenAlarm; |
||
111 | 21 | Maximilian Seesslen | CApp() |
112 | 24 | Maximilian Seesslen | { |
113 | 25 | Maximilian Seesslen | addScreen( screenMain = new CScreenMain() ); |
114 | 21 | Maximilian Seesslen | } |
115 | 1 | Maximilian Seesslen | } |
116 | |||
117 | 25 | Maximilian Seesslen | class CScreenClock: public OScreen |
118 | 1 | Maximilian Seesslen | { |
119 | 23 | Maximilian Seesslen | CApp &app; |
120 | 18 | Maximilian Seesslen | OButton buttonAddTimer; |
121 | 25 | Maximilian Seesslen | OLabel labelTime; |
122 | OLabel labelDate; |
||
123 | 24 | Maximilian Seesslen | |
124 | 20 | Maximilian Seesslen | public: |
125 | |||
126 | 1 | Maximilian Seesslen | CScreenMain() |
127 | buttonAddTimer(this) |
||
128 | { |
||
129 | } |
||
130 | 25 | Maximilian Seesslen | virtual clicked(int x,int y) |
131 | { |
||
132 | app.m_pwmBacklight.setPwmValue(800); |
||
133 | } |
||
134 | void eventLoop() |
||
135 | { |
||
136 | app.m_pwmBacklight.setPwmValue(100); |
||
137 | } |
||
138 | 18 | Maximilian Seesslen | addItemPressed() |
139 | 1 | Maximilian Seesslen | { |
140 | app.switchScreen( eDesktopItems ); |
||
141 | 18 | Maximilian Seesslen | } |
142 | 24 | Maximilian Seesslen | } |
143 | 23 | Maximilian Seesslen | |
144 | 1 | Maximilian Seesslen | class CScreenMain: public OScreen |
145 | { |
||
146 | 24 | Maximilian Seesslen | CApp &app; |
147 | |||
148 | public: |
||
149 | |||
150 | virtual clicked(int x,int y); |
||
151 | } |
||
152 | |||
153 | class CScreenAlarm: public OScreen |
||
154 | { |
||
155 | CApp &app; |
||
156 | OLabel alarmText; |
||
157 | lrtimer_t activationTimer; |
||
158 | |||
159 | public: |
||
160 | CScreenAlarm() |
||
161 | :alarmText("-", centerX, centerY-200) |
||
162 | { |
||
163 | } |
||
164 | virtual avctivate() override |
||
165 | { |
||
166 | 1 | Maximilian Seesslen | app.m_buzzer.setBeepMode(alarm); |
167 | 24 | Maximilian Seesslen | activationTimer=lrNow(); |
168 | } |
||
169 | virtual clicked(int x,int y) override |
||
170 | { |
||
171 | 25 | Maximilian Seesslen | if( ! lrElapsed(lrtimer_t, MSECS_PER_SEC / 2 ) ) |
172 | 24 | Maximilian Seesslen | { |
173 | return; |
||
174 | } |
||
175 | app.m_buzzer.setBeepMode(nullptr); |
||
176 | app.setPreviousScreen(); |
||
177 | } |
||
178 | 18 | Maximilian Seesslen | } |
179 | 19 | Maximilian Seesslen | </code></pre> |