summaryrefslogtreecommitdiff
path: root/src/ui/include/modal_progress.hpp
diff options
context:
space:
mode:
authorjacqueline <me@jacqueline.id.au>2024-01-15 12:31:20 +1100
committerjacqueline <me@jacqueline.id.au>2024-01-15 12:31:20 +1100
commit7cdcd44e0ca10ebdc796638190ed1d9b45d99ef0 (patch)
tree637b43848d17c9dbdc1688cb4733eb235f223e37 /src/ui/include/modal_progress.hpp
parent0e04eb918ec976017276306181282769d8896c83 (diff)
downloadtangara-fw-7cdcd44e0ca10ebdc796638190ed1d9b45d99ef0.tar.gz
Begin migration of remaining screens to Lua
Diffstat (limited to 'src/ui/include/modal_progress.hpp')
-rw-r--r--src/ui/include/modal_progress.hpp34
1 files changed, 0 insertions, 34 deletions
diff --git a/src/ui/include/modal_progress.hpp b/src/ui/include/modal_progress.hpp
deleted file mode 100644
index 2ccb671a..00000000
--- a/src/ui/include/modal_progress.hpp
+++ /dev/null
@@ -1,34 +0,0 @@
-/*
- * Copyright 2023 jacqueline <me@jacqueline.id.au>
- *
- * SPDX-License-Identifier: GPL-3.0-only
- */
-
-#pragma once
-
-#include <memory>
-#include <vector>
-
-#include "index.hpp"
-#include "lvgl.h"
-
-#include "modal.hpp"
-
-namespace ui {
-namespace modals {
-
-class Progress : public Modal {
- public:
- Progress(Screen*, std::pmr::string title, std::pmr::string subtitle = "");
-
- void title(const std::pmr::string&);
- void subtitle(const std::pmr::string&);
-
- private:
- lv_obj_t* container_;
- lv_obj_t* title_;
- lv_obj_t* subtitle_;
-};
-
-} // namespace modals
-} // namespace ui