Ethan Yonker | 74db157 | 2015-10-28 12:44:49 -0500 | [diff] [blame] | 1 | /* |
| 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 Yonker | 6e8c27a | 2016-12-22 17:55:57 -0600 | [diff] [blame] | 24 | void set_select_fd(); |
| 25 | |
Ethan Yonker | 74db157 | 2015-10-28 12:44:49 -0500 | [diff] [blame] | 26 | void gui_msg(const char* text); |
| 27 | void gui_warn(const char* text); |
| 28 | void gui_err(const char* text); |
| 29 | void gui_highlight(const char* text); |
| 30 | void gui_msg(Message msg); |
Noah Jacobson | 81d638d | 2019-04-28 00:10:07 -0400 | [diff] [blame] | 31 | void gui_err(Message msg); |
Ethan Yonker | 74db157 | 2015-10-28 12:44:49 -0500 | [diff] [blame] | 32 | |
| 33 | std::string gui_parse_text(std::string inText); |
| 34 | std::string gui_lookup(const std::string& resource_name, const std::string& default_value); |
| 35 | |
| 36 | #endif //_GUI_HPP_HEADER |