summaryrefslogtreecommitdiff
path: root/src/ui/include/modal_progress.hpp
blob: 968970295d9a0eedc56bfed0b33bfa4db4dc9ea3 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
/*
 * 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::string title);

 private:
  lv_obj_t* container_;
};

}  // namespace modals
}  // namespace ui