forked from aseprite/aseprite
-
Notifications
You must be signed in to change notification settings - Fork 0
/
alert.h
58 lines (42 loc) · 1.16 KB
/
alert.h
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
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
// Aseprite UI Library
// Copyright (C) 2019 Igara Studio S.A.
// Copyright (C) 2001-2018 David Capello
//
// This file is released under the terms of the MIT license.
// Read LICENSE.txt for more information.
#ifndef UI_ALERT_H_INCLUDED
#define UI_ALERT_H_INCLUDED
#pragma once
#include "ui/window.h"
#include <memory>
#include <string>
#include <vector>
namespace ui {
class Box;
class CheckBox;
class Slider;
class Alert;
typedef std::shared_ptr<Alert> AlertPtr;
class Alert : public Window {
public:
Alert();
void setTitle(const std::string& title);
void addLabel(const std::string& text, const int align);
void addSeparator();
void addButton(const std::string& text);
void addProgress();
void setProgress(double progress);
CheckBox* addCheckBox(const std::string& text);
int show();
static AlertPtr create(const std::string& msg);
static int show(const std::string& msg);
private:
void processString(std::string& buf);
Slider* m_progress;
Box* m_labelsPlaceholder;
Box* m_buttonsPlaceholder;
Box* m_progressPlaceholder;
std::vector<Widget*> m_buttons;
};
} // namespace ui
#endif