summaryrefslogtreecommitdiff
path: root/src/displayapp/screens/settings/SettingSetTime.cpp
AgeCommit message (Collapse)AuthorFilesLines
2023-01-24Fix: uniform date & time settings labeldavidpkj1-1/+1
2023-01-24Fix: uniform date & time settingsdavidpkj1-2/+2
2023-01-22Change: colors & menu itemsdavidpkj1-1/+1
2023-01-14Combine Date and Time Settings (#1465)John Quigley1-8/+4
Replace separate SettingSetDate and SettingSetTime with a combined screenlist. Add DotIndicators. Similar to PageIndicator, but for use when separating screens instead of pages of a list. Co-authored-by: Riku Isokoski <riksu9000@gmail.com>
2023-01-04Update clang-{format,tidy} to 14Finlay Davidson1-0/+1
Also add configuration options only available in 13 and 14. Fixes warning about -fstack-usage in clang-tidy check.
2022-09-17Disable value_strRiku Isokoski1-2/+6
value_str is a way to add text on a button without a separate label. This saves having an extra label object, but uses more memory and is removed in LVGL8
2022-08-16Centralize most color definitions (#1258)Riku Isokoski1-2/+2
2022-07-21Use Counter widget in SettingSetTime plus optimizationsRiku Isokoski1-138/+52
2022-01-31Corrected capitalizationEli Weiss1-4/+4
2022-01-31Corrected code formattingEli Weiss1-3/+28
Corrected formatting and removed unnecessary variable time24H
2022-01-31Changed setHourLabels function to handle 24H tooEli Weiss1-36/+3
Changed setHourLabels function to handle 24 hour time labeling, changed to private
2022-01-31Consolidated label changes, optimizationsEli Weiss1-36/+15
Consolidated 12 hour label changes to function. Removed use of strings, struct.
2022-01-31Consolidated time conversion logicEli Weiss1-65/+74
Consolidated 24 hour to 12 hour time conversion logic into function, addressed formatting issues, cleaned up code.
2022-01-31Removed redundant bracketsEli Weiss1-5/+3
Also corrected orphaned bracket
2022-01-31Cleaned up redundant if statements, spacingEli Weiss1-45/+41
Removed redundant if statements in hour button logic. Spacing is now in line with repo guidelines.
2022-01-31Added 12 hour set timeEli Weiss1-5/+70
2021-11-15Update includes to to be relative to src directoryReinhold Gschweicher1-1/+1
Don't use relative imports like `../foo.h` as those depend on the relative position of both files. Rather than that use imports relative to the `src` directory, which explicitly is part of the include directories.
2021-10-10Setting SetDate/SetTime : replace #defines by constexpr variables, NULL by ↵Jean-François Milants1-35/+28
nullptr and other small cleanings.
2021-10-10Merge with develop and fix conflicts from timaios:set-datetime-manually.Jean-François Milants1-0/+161
2021-07-09Code optimizations in SettingSetDate and SettingSetTimeTim Taenny1-4/+2
Instead of calling lv_obj_align after each button click, the labels have their auto_realign property set.
2021-07-09Code optimizations in SettingSetTimeTim Taenny1-9/+17
The positions of the labels are controlled by #define's, just like in SettingSetDate.
2021-07-09Code optimizations in SettingSetTimeTim Taenny1-24/+10
2021-07-09Added new screen: SettingSetTimetimaios1-0/+174