blob: 7e4ee4ea8993d2c3e708c393186e8344da5d4cf6 [file] [log] [blame]
Ethan Yonker74db1572015-10-28 12:44:49 -05001/*
2 Copyright 2015 bigbiff/Dees_Troy TeamWin
3 This file is part of TWRP/TeamWin Recovery Project.
4
5 TWRP is free software: you can redistribute it and/or modify
6 it under the terms of the GNU General Public License as published by
7 the Free Software Foundation, either version 3 of the License, or
8 (at your option) any later version.
9
10 TWRP is distributed in the hope that it will be useful,
11 but WITHOUT ANY WARRANTY; without even the implied warranty of
12 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13 GNU General Public License for more details.
14
15 You should have received a copy of the GNU General Public License
16 along with TWRP. If not, see <http://www.gnu.org/licenses/>.
17*/
18
19#ifndef _GUI_HPP_HEADER
20#define _GUI_HPP_HEADER
21
22#include "twmsg.h"
23
Ethan Yonker6e8c27a2016-12-22 17:55:57 -060024void set_select_fd();
25
Ethan Yonker74db1572015-10-28 12:44:49 -050026void gui_msg(const char* text);
27void gui_warn(const char* text);
28void gui_err(const char* text);
29void gui_highlight(const char* text);
30void gui_msg(Message msg);
Noah Jacobson5a79f672019-04-28 00:10:07 -040031void gui_err(Message msg);
Ethan Yonker74db1572015-10-28 12:44:49 -050032
33std::string gui_parse_text(std::string inText);
34std::string gui_lookup(const std::string& resource_name, const std::string& default_value);
35
36#endif //_GUI_HPP_HEADER