mirror of
https://github.com/bsnes-emu/bsnes.git
synced 2025-08-13 18:14:27 +02:00
Update to v106r52 release.
byuu says: I stand corrected, I managed to create and even larger diff than ever. This one weighs in at 309KiB `>__>` I'll have to create a changelog later, I'm too tired right now to go through all of that.
This commit is contained in:
@@ -4,17 +4,17 @@ struct MessageDialog {
|
||||
using type = MessageDialog;
|
||||
|
||||
MessageDialog(const string& text = "");
|
||||
auto error(const string_vector& buttons = {"Ok"}) -> string;
|
||||
auto information(const string_vector& buttons = {"Ok"}) -> string;
|
||||
auto question(const string_vector& buttons = {"Yes", "No"}) -> string;
|
||||
auto error(const vector<string>& buttons = {"Ok"}) -> string;
|
||||
auto information(const vector<string>& buttons = {"Ok"}) -> string;
|
||||
auto question(const vector<string>& buttons = {"Yes", "No"}) -> string;
|
||||
auto setParent(sWindow parent = {}) -> type&;
|
||||
auto setText(const string& text = "") -> type&;
|
||||
auto setTitle(const string& title = "") -> type&;
|
||||
auto warning(const string_vector& buttons = {"Ok"}) -> string;
|
||||
auto warning(const vector<string>& buttons = {"Ok"}) -> string;
|
||||
|
||||
private:
|
||||
struct State {
|
||||
string_vector buttons;
|
||||
vector<string> buttons;
|
||||
vector<uint8_t> icon;
|
||||
sWindow parent;
|
||||
string response;
|
||||
|
Reference in New Issue
Block a user