summaryrefslogtreecommitdiff
path: root/src/displayapp/screens/settings/SettingWakeUp.cpp
AgeCommit message (Collapse)AuthorFilesLines
2022-04-25Fix warningsRiku Isokoski1-2/+2
2022-01-04Added Shake to wakeTim Keller1-0/+8
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-08-03Merge branch 'develop' into refresh_reworkRiku Isokoski1-1/+1
2021-07-25Add new unique icons for some appsRiku Isokoski1-1/+1
2021-07-19Refresh reworkRiku Isokoski1-4/+0
2021-07-14Multiple wakeup sources (#290)Kozova11-32/+28
* Allow multiple wakeup modes at the same time. This commit adds multiple wakeup modes support. It does so by storing them as a uint8_t bitfield enum. It changes the following functions: Since multiple modes can be on now, older version would not cut it: WakeUpMode getWakeupMode() -> std::bitset<3> getWakeUpModes() Where each bit corresponds to a WakeUpMode We still need a way to check whether a specific wakeup mode is on, so: bool isWakeUpModeOn(const WakeUpMode mode) This function was changed to work correctly with the new implementation. setWakeUpMode(WakeupMode mode, bool enable) Previously, systemtask would exit SystemTask::OnTouchEvent() if the wake up mode was None or RaiseWrist, to prevent waking up when a touch was received. However, after enabling using multiple WakeUpModes, this caused a bug where when RaiseWrist was checked with SingleTap or DoubleTap, the tap detection wouldn't work. This commit fixes that bug. Next commit will update the settings WakeUpMode select UI to reflect these changes. Signed-off-by: Kozova1 <mug66kk@gmail.com> * Updated UI to reflect multiple WakeUp sources being available. Signed-off-by: Kozova1 <mug66kk@gmail.com>
2021-04-24Reformatted all the files according to clang-format styleAvamander1-30/+34
2021-04-04Big UI and navigation RewriteJoaquim1-0/+107
new navigation add some color to the apps redesign menus new settings menu new quick settings code clean up size reduction by converting navigation images to font and more...