Skip to content

Commit 9948c47

Browse files
committed
Removed unused variables, some of the commented out code, and added a
license copyright notice to the source and header calendar files.
1 parent 10dbd78 commit 9948c47

File tree

2 files changed

+44
-19
lines changed

2 files changed

+44
-19
lines changed

src/displayapp/screens/Calendar.cpp

+25-16
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,21 @@
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+
119
#include "displayapp/screens/Calendar.h"
220
#include "components/datetime/DateTimeController.h"
321

@@ -14,31 +32,20 @@ Calendar::Calendar(Controllers::DateTime& dateTimeController) : dateTimeControll
1432
// Disable clicks
1533
lv_obj_set_click(calendar, false);
1634

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-
2435
// Set style of today's date
2536
lv_obj_set_style_local_text_color(calendar, LV_CALENDAR_PART_DATE, LV_STATE_FOCUSED, LV_COLOR_RED);
2637

2738
// Set style of inactive month's days
2839
lv_obj_set_style_local_text_color(calendar, LV_CALENDAR_PART_DATE, LV_STATE_DISABLED, lv_color_hex(0x505050));
2940

3041
// 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());
3445

3546
// 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, &current);
48+
lv_calendar_set_showed_date(calendar, &current);
4249
}
4350

4451
bool Calendar::OnTouchEvent(Pinetime::Applications::TouchEvents event) {
@@ -51,6 +58,7 @@ bool Calendar::OnTouchEvent(Pinetime::Applications::TouchEvents event) {
5158
else{
5259
current.month++;
5360
}
61+
5462
lv_calendar_set_showed_date(calendar, &current);
5563
return true;
5664
}
@@ -62,6 +70,7 @@ bool Calendar::OnTouchEvent(Pinetime::Applications::TouchEvents event) {
6270
else{
6371
current.month--;
6472
}
73+
6574
lv_calendar_set_showed_date(calendar, &current);
6675
return true;
6776
}

src/displayapp/screens/Calendar.h

+19-3
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,21 @@
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+
119
#pragma once
220

321
#include "displayapp/apps/Apps.h"
@@ -22,9 +40,7 @@ namespace Pinetime {
2240
private:
2341
bool OnTouchEvent(TouchEvents event);
2442
Controllers::DateTime& dateTimeController;
25-
lv_obj_t* label_time;
26-
lv_obj_t * calendar;
27-
lv_calendar_date_t today;
43+
lv_obj_t* calendar;
2844
lv_calendar_date_t current;
2945
};
3046
}

0 commit comments

Comments
 (0)