diff options
| author | jacqueline <me@jacqueline.id.au> | 2023-11-24 15:13:10 +1100 |
|---|---|---|
| committer | jacqueline <me@jacqueline.id.au> | 2023-11-24 15:13:10 +1100 |
| commit | 7c6eb2997cbba350e7384151e13659271508e08f (patch) | |
| tree | b6f95a4843521e69b24cbf4c126d84442d19fc23 /src/ui/include/screen_onboarding.hpp | |
| parent | 230721cd6271f3239b42e1d2471f8db15bebd712 (diff) | |
| download | tangara-fw-7c6eb2997cbba350e7384151e13659271508e08f.tar.gz | |
Migrate 'now playing' screen to lua
Diffstat (limited to 'src/ui/include/screen_onboarding.hpp')
| -rw-r--r-- | src/ui/include/screen_onboarding.hpp | 63 |
1 files changed, 0 insertions, 63 deletions
diff --git a/src/ui/include/screen_onboarding.hpp b/src/ui/include/screen_onboarding.hpp deleted file mode 100644 index 0c3c61fb..00000000 --- a/src/ui/include/screen_onboarding.hpp +++ /dev/null @@ -1,63 +0,0 @@ -/* - * Copyright 2023 jacqueline <me@jacqueline.id.au> - * - * SPDX-License-Identifier: GPL-3.0-only - */ - -#pragma once - -#include <memory> -#include <vector> - -#include "lvgl.h" - -#include "screen.hpp" - -namespace ui { -namespace screens { - -class Onboarding : public Screen { - public: - Onboarding(const std::pmr::string& title, bool show_prev, bool show_next); - - private: - lv_obj_t* window_; - lv_obj_t* title_; - lv_obj_t* next_button_; - lv_obj_t* prev_button_; - - protected: - lv_obj_t* content_; -}; - -namespace onboarding { - -class LinkToManual : public Onboarding { - public: - LinkToManual(); -}; - -class Controls : public Onboarding { - public: - Controls(); -}; - -class MissingSdCard : public Onboarding { - public: - MissingSdCard(); -}; - -class FormatSdCard : public Onboarding { - public: - FormatSdCard(); -}; - -class InitDatabase : public Onboarding { - public: - InitDatabase(); -}; - -} // namespace onboarding - -} // namespace screens -} // namespace ui |
