From 1573a8c4cde1cd9528b422b2dcc598e37ffe94a7 Mon Sep 17 00:00:00 2001 From: jacqueline Date: Thu, 2 May 2024 19:12:26 +1000 Subject: WIP merge cyclically dependent components into one big component --- src/ui/include/ui_events.hpp | 54 -------------------------------------------- 1 file changed, 54 deletions(-) delete mode 100644 src/ui/include/ui_events.hpp (limited to 'src/ui/include/ui_events.hpp') diff --git a/src/ui/include/ui_events.hpp b/src/ui/include/ui_events.hpp deleted file mode 100644 index 3d794edc..00000000 --- a/src/ui/include/ui_events.hpp +++ /dev/null @@ -1,54 +0,0 @@ -/* - * Copyright 2023 jacqueline - * - * SPDX-License-Identifier: GPL-3.0-only - */ - -#pragma once - -#include -#include "database.hpp" -#include "gpios.hpp" -#include "index.hpp" -#include "nvs.hpp" -#include "screen.hpp" -#include "tinyfsm.hpp" - -namespace ui { - -// TODO(jacqueline): is this needed? is this good? -/* - * Event emitted by the main task on heartbeat. - */ -struct OnStorageChange : tinyfsm::Event { - bool is_mounted; -}; - -struct OnSystemError : tinyfsm::Event {}; - -struct OnLuaError : tinyfsm::Event { - std::string message; -}; - -struct DumpLuaStack : tinyfsm::Event {}; - -namespace internal { - -struct InitDisplay : tinyfsm::Event { - drivers::IGpios& gpios; - drivers::NvsStorage& nvs; -}; - -struct ReindexDatabase : tinyfsm::Event {}; - -struct BackPressed : tinyfsm::Event {}; -struct ShowNowPlaying : tinyfsm::Event {}; - -struct ModalConfirmPressed : tinyfsm::Event {}; -struct ModalCancelPressed : tinyfsm::Event {}; - -struct DismissAlerts : tinyfsm::Event {}; - -} // namespace internal - -} // namespace ui -- cgit v1.2.3