mirror of
https://github.com/ByteWelder/Tactility.git
synced 2026-02-18 10:53:17 +00:00
## Time & Date - Added time to statusbar widget - Added Time & Date Settings app - Added TimeZone app for selecting TimeZone - Added `tt::time` namespace with timezone code ## Other changes - Added `SystemEvent` to publish/subscribe to system wide (e.g. for init code, but also for time settings changes) - Changed the way the statusbar widget works: now there's only 1 that gets shown/hidden, instead of 1 instance per app instance. - Moved `lowercase()` function to new namespace: `tt::string` - Increased T-Deck flash & PSRAM SPI frequencies to 120 MHz (from 80 MHz) - Temporary work-around (+ TODO item) for LVGL stack size (issue with WiFi app) - Suppress T-Deck keystroke debugging to debug level (privacy issue) - Improved SDL dependency wiring in various `CMakeLists.txt` - `Loader` service had some variables renamed to the newer C++ style (from previous C style)
71 lines
2.2 KiB
C++
71 lines
2.2 KiB
C++
#pragma once
|
|
|
|
#include <bits/stdc++.h>
|
|
#include <cstdio>
|
|
#include <string>
|
|
#include <vector>
|
|
|
|
namespace tt::string {
|
|
|
|
/**
|
|
* Find the last occurrence of a character.
|
|
* @param[in] text the text to search in
|
|
* @param[in] from_index the index to search from (searching from right to left)
|
|
* @param[in] find the character to search for
|
|
* @return the index of the found character, or -1 if none found
|
|
*/
|
|
int findLastIndex(const char* text, size_t from_index, char find);
|
|
|
|
/**
|
|
* Given a filesystem path as input, try and get the parent path.
|
|
* @param[in] path input path
|
|
* @param[out] output an output buffer that is allocated to at least the size of "current"
|
|
* @return true when successful
|
|
*/
|
|
bool getPathParent(const std::string& path, std::string& output);
|
|
|
|
/**
|
|
* Given a filesystem path as input, get the last segment of a path
|
|
* @param[in] path input path
|
|
*/
|
|
std::string getLastPathSegment(const std::string& path);
|
|
|
|
/**
|
|
* Splits the provided input into separate pieces with delimiter as separator text.
|
|
* When the input string is empty, the output list will be empty too.
|
|
*
|
|
* @param input the input to split up
|
|
* @param delimiter a non-empty string to recognize as separator
|
|
*/
|
|
std::vector<std::string> split(const std::string& input, const std::string& delimiter);
|
|
|
|
/**
|
|
* Join a set of tokens into a single string, given a delimiter (separator).
|
|
* If the input is an empty list, the result will be an empty string.
|
|
* The delimeter is only placed inbetween tokens and not appended at the end of the resulting string.
|
|
*
|
|
* @param input the tokens to join together
|
|
* @param delimiter the separator to join with
|
|
*/
|
|
std::string join(const std::vector<std::string>& input, const std::string& delimiter);
|
|
|
|
/**
|
|
* Returns the lowercase value of a string.
|
|
* @param[in] the string with lower and/or uppercase characters
|
|
* @return a string with only lowercase characters
|
|
*/
|
|
template <typename T>
|
|
std::basic_string<T> lowercase(const std::basic_string<T>& input) {
|
|
std::basic_string<T> output = input;
|
|
std::transform(
|
|
output.begin(),
|
|
output.end(),
|
|
output.begin(),
|
|
[](const T character) { return static_cast<T>(std::tolower(character)); }
|
|
);
|
|
return std::move(output);
|
|
}
|
|
|
|
|
|
} // namespace
|