1
+ /* Copyright (C) 2024 thnikk, Boteium, JustScott
2
+
3
+ This file is part of InfiniTime.
4
+
5
+ InfiniTime is free software: you can redistribute it and/or modify
6
+ it under the terms of the GNU General Public License as published
7
+ by the Free Software Foundation, either version 3 of the License, or
8
+ (at your option) any later version.
9
+
10
+ InfiniTime is distributed in the hope that it will be useful,
11
+ but WITHOUT ANY WARRANTY; without even the implied warranty of
12
+ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13
+ GNU General Public License for more details.
14
+
15
+ You should have received a copy of the GNU General Public License
16
+ along with this program. If not, see <https://www.gnu.org/licenses/>.
17
+ */
18
+
1
19
#include " displayapp/screens/Calendar.h"
2
20
#include " components/datetime/DateTimeController.h"
3
21
@@ -14,31 +32,20 @@ Calendar::Calendar(Controllers::DateTime& dateTimeController) : dateTimeControll
14
32
// Disable clicks
15
33
lv_obj_set_click (calendar, false );
16
34
17
- // Set background of today's date
18
- /*
19
- lv_obj_set_style_local_bg_opa(calendar, LV_CALENDAR_PART_DATE, LV_STATE_FOCUSED, LV_OPA_COVER);
20
- lv_obj_set_style_local_bg_color(calendar, LV_CALENDAR_PART_DATE, LV_STATE_FOCUSED, LV_COLOR_WHITE);
21
- lv_obj_set_style_local_radius(calendar, LV_CALENDAR_PART_DATE, LV_STATE_FOCUSED, 3);
22
- */
23
-
24
35
// Set style of today's date
25
36
lv_obj_set_style_local_text_color (calendar, LV_CALENDAR_PART_DATE, LV_STATE_FOCUSED, LV_COLOR_RED);
26
37
27
38
// Set style of inactive month's days
28
39
lv_obj_set_style_local_text_color (calendar, LV_CALENDAR_PART_DATE, LV_STATE_DISABLED, lv_color_hex (0x505050 ));
29
40
30
41
// Get today's date
31
- today .year = static_cast <int >(dateTimeController.Year ());
32
- today .month = static_cast <int >(dateTimeController.Month ());
33
- today .day = static_cast <int >(dateTimeController.Day ());
42
+ current .year = static_cast <int >(dateTimeController.Year ());
43
+ current .month = static_cast <int >(dateTimeController.Month ());
44
+ current .day = static_cast <int >(dateTimeController.Day ());
34
45
35
46
// Set today's date
36
- lv_calendar_set_today_date (calendar, &today);
37
- lv_calendar_set_showed_date (calendar, &today);
38
-
39
- // Use today's date as a reference for which month to show if moved
40
- current = today;
41
-
47
+ lv_calendar_set_today_date (calendar, ¤t);
48
+ lv_calendar_set_showed_date (calendar, ¤t);
42
49
}
43
50
44
51
bool Calendar::OnTouchEvent (Pinetime::Applications::TouchEvents event) {
@@ -51,6 +58,7 @@ bool Calendar::OnTouchEvent(Pinetime::Applications::TouchEvents event) {
51
58
else {
52
59
current.month ++;
53
60
}
61
+
54
62
lv_calendar_set_showed_date (calendar, ¤t);
55
63
return true ;
56
64
}
@@ -62,6 +70,7 @@ bool Calendar::OnTouchEvent(Pinetime::Applications::TouchEvents event) {
62
70
else {
63
71
current.month --;
64
72
}
73
+
65
74
lv_calendar_set_showed_date (calendar, ¤t);
66
75
return true ;
67
76
}
0 commit comments