blob: afcd9b0a900c3b972ffa3f0c3aa00e0d72663eb1 [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
24void gui_msg(const char* text);
25void gui_warn(const char* text);
26void gui_err(const char* text);
27void gui_highlight(const char* text);
28void gui_msg(Message msg);
29
30std::string gui_parse_text(std::string inText);
31std::string gui_lookup(const std::string& resource_name, const std::string& default_value);
32
33#endif //_GUI_HPP_HEADER