Converted almost everything to use wstring so that it works better with SFML and the unicode/utf8 usage in the system.
This commit is contained in:
parent
47c6bfd531
commit
72951f308f
17 changed files with 156 additions and 162 deletions
|
@ -16,11 +16,11 @@ namespace gui {
|
|||
void click(int x, int y);
|
||||
void show_sprite(string region, string sprite_name);
|
||||
void close_sprite(string region);
|
||||
void show_text(std::string region, std::string content);
|
||||
void update_text(std::string region, std::string content);
|
||||
void show_text(std::string region, std::wstring content);
|
||||
void update_text(std::string region, std::wstring content);
|
||||
void close_text(std::string region);
|
||||
void show_label(std::string region, std::string content);
|
||||
void update_label(std::string region, std::string content);
|
||||
void show_label(std::string region, std::wstring content);
|
||||
void update_label(std::string region, std::wstring content);
|
||||
void close_label(std::string region);
|
||||
};
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue