| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165 |
- /*
- Unitemp - Universal temperature reader
- Copyright (C) 2022-2023 Victor Nikitchuk (https://github.com/quen0n)
- This program is free software: you can redistribute it and/or modify
- it under the terms of the GNU General Public License as published by
- the Free Software Foundation, either version 3 of the License, or
- (at your option) any later version.
- This program is distributed in the hope that it will be useful,
- but WITHOUT ANY WARRANTY; without even the implied warranty of
- MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
- GNU General Public License for more details.
- You should have received a copy of the GNU General Public License
- along with this program. If not, see <https://www.gnu.org/licenses/>.
- */
- #include "UnitempViews.h"
- #include <gui/modules/variable_item_list.h>
- //Текущий вид
- static View* view;
- //Список
- static VariableItemList* variable_item_list;
- static const char states[2][9] = {"Auto", "Infinity"};
- static const char temp_units[UT_TEMP_COUNT][3] = {"*C", "*F"};
- static const char pressure_units[UT_PRESSURE_COUNT][6] = {"mm Hg", "in Hg", "kPa", "hPA"};
- static const char heat_index_bool[2][4] = {"OFF", "ON"};
- //Элемент списка - бесконечная подсветка
- VariableItem* infinity_backlight_item;
- //Единица измерения температуры
- VariableItem* temperature_unit_item;
- //Единица измерения давления
- VariableItem* pressure_unit_item;
- VariableItem* heat_index_item;
- #define VIEW_ID UnitempViewSettings
- /**
- * @brief Функция обработки нажатия кнопки "Назад"
- *
- * @param context Указатель на данные приложения
- * @return ID вида в который нужно переключиться
- */
- static uint32_t _exit_callback(void* context) {
- UNUSED(context);
- //Костыль с зависающей подсветкой
- if((bool)variable_item_get_current_value_index(infinity_backlight_item) !=
- app->settings.infinityBacklight) {
- if((bool)variable_item_get_current_value_index(infinity_backlight_item)) {
- notification_message(app->notifications, &sequence_display_backlight_enforce_on);
- } else {
- notification_message(app->notifications, &sequence_display_backlight_enforce_auto);
- }
- }
- app->settings.infinityBacklight =
- (bool)variable_item_get_current_value_index(infinity_backlight_item);
- app->settings.temp_unit = variable_item_get_current_value_index(temperature_unit_item);
- app->settings.pressure_unit = variable_item_get_current_value_index(pressure_unit_item);
- app->settings.heat_index = variable_item_get_current_value_index(heat_index_item);
- unitemp_saveSettings();
- unitemp_loadSettings();
- //Возврат предыдущий вид
- return UnitempViewMainMenu;
- }
- /**
- * @brief Функция обработки нажатия средней кнопки
- *
- * @param context Указатель на данные приложения
- * @param index На каком элементе списка была нажата кнопка
- */
- static void _enter_callback(void* context, uint32_t index) {
- UNUSED(context);
- UNUSED(index);
- }
- static void _setting_change_callback(VariableItem* item) {
- if(item == infinity_backlight_item) {
- variable_item_set_current_value_text(
- infinity_backlight_item,
- states[variable_item_get_current_value_index(infinity_backlight_item)]);
- }
- if(item == temperature_unit_item) {
- variable_item_set_current_value_text(
- temperature_unit_item,
- temp_units[variable_item_get_current_value_index(temperature_unit_item)]);
- }
- if(item == pressure_unit_item) {
- variable_item_set_current_value_text(
- pressure_unit_item,
- pressure_units[variable_item_get_current_value_index(pressure_unit_item)]);
- }
- if(item == heat_index_item) {
- variable_item_set_current_value_text(
- heat_index_item,
- heat_index_bool[variable_item_get_current_value_index(heat_index_item)]);
- }
- }
- /**
- * @brief Создание меню редактирования настроек
- */
- void unitemp_Settings_alloc(void) {
- variable_item_list = variable_item_list_alloc();
- //Сброс всех элементов меню
- variable_item_list_reset(variable_item_list);
- infinity_backlight_item = variable_item_list_add(
- variable_item_list, "Backlight time", UT_TEMP_COUNT, _setting_change_callback, app);
- temperature_unit_item =
- variable_item_list_add(variable_item_list, "Temp. unit", 2, _setting_change_callback, app);
- pressure_unit_item = variable_item_list_add(
- variable_item_list, "Press. unit", UT_PRESSURE_COUNT, _setting_change_callback, app);
- heat_index_item = variable_item_list_add(
- variable_item_list, "Calc. heat index", 2, _setting_change_callback, app);
- //Добавление колбека на нажатие средней кнопки
- variable_item_list_set_enter_callback(variable_item_list, _enter_callback, app);
- //Создание вида из списка
- view = variable_item_list_get_view(variable_item_list);
- //Добавление колбека на нажатие кнопки "Назад"
- view_set_previous_callback(view, _exit_callback);
- //Добавление вида в диспетчер
- view_dispatcher_add_view(app->view_dispatcher, VIEW_ID, view);
- }
- void unitemp_Settings_switch(void) {
- //Обнуление последнего выбранного пункта
- variable_item_list_set_selected_item(variable_item_list, 0);
- variable_item_set_current_value_index(
- infinity_backlight_item, (uint8_t)app->settings.infinityBacklight);
- variable_item_set_current_value_text(
- infinity_backlight_item,
- states[variable_item_get_current_value_index(infinity_backlight_item)]);
- variable_item_set_current_value_index(temperature_unit_item, (uint8_t)app->settings.temp_unit);
- variable_item_set_current_value_text(
- temperature_unit_item,
- temp_units[variable_item_get_current_value_index(temperature_unit_item)]);
- variable_item_set_current_value_index(
- pressure_unit_item, (uint8_t)app->settings.pressure_unit);
- variable_item_set_current_value_text(
- pressure_unit_item,
- pressure_units[variable_item_get_current_value_index(pressure_unit_item)]);
- variable_item_set_current_value_index(heat_index_item, (uint8_t)app->settings.heat_index);
- variable_item_set_current_value_text(
- heat_index_item, heat_index_bool[variable_item_get_current_value_index(heat_index_item)]);
- view_dispatcher_switch_to_view(app->view_dispatcher, VIEW_ID);
- }
- void unitemp_Settings_free(void) {
- //Удаление вида после обработки
- view_dispatcher_remove_view(app->view_dispatcher, VIEW_ID);
- //Очистка списка элементов
- variable_item_list_free(variable_item_list);
- }
|