/* 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 . */ #include "UnitempViews.h" #include //Текущий вид static View* view; //Список static VariableItemList* variable_item_list; #define VIEW_ID UnitempViewMainMenu /** * @brief Функция обработки нажатия кнопки "Назад" * * @param context Указатель на данные приложения * @return ID вида в который нужно переключиться */ static uint32_t _exit_callback(void* context) { UNUSED(context); //Возврат в общий вид return UnitempViewGeneral; } /** * @brief Функция обработки нажатия средней кнопки * * @param context Указатель на данные приложения * @param index На каком элементе списка была нажата кнопка */ static void _enter_callback(void* context, uint32_t index) { UNUSED(context); if(index == 0) { //Add new sensor unitemp_SensorsList_switch(); } if(index == 1) { //Settings unitemp_Settings_switch(); } if(index == 2) { unitemp_widget_help_switch(); } if(index == 3) { unitemp_widget_about_switch(); } } /** * @brief Создание списка действий с указанным датчиком */ void unitemp_MainMenu_alloc(void) { variable_item_list = variable_item_list_alloc(); //Сброс всех элементов меню variable_item_list_reset(variable_item_list); variable_item_list_add(variable_item_list, "Add new sensor", 1, NULL, NULL); variable_item_list_add(variable_item_list, "Settings", 1, NULL, NULL); variable_item_list_add(variable_item_list, "Help", 1, NULL, NULL); variable_item_list_add(variable_item_list, "About", 1, NULL, NULL); //Добавление колбека на нажатие средней кнопки 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_MainMenu_switch(void) { //Обнуление последнего выбранного пункта variable_item_list_set_selected_item(variable_item_list, 0); //Переключение в вид view_dispatcher_switch_to_view(app->view_dispatcher, VIEW_ID); } void unitemp_MainMenu_free(void) { //Очистка списка элементов variable_item_list_free(variable_item_list); //Очистка вида view_free(view); //Удаление вида после обработки view_dispatcher_remove_view(app->view_dispatcher, VIEW_ID); }