Name window.notify back to window.alert and unify with simple message box support

This commit is contained in:
Joshua Granick
2015-09-02 09:53:03 -07:00
parent b199e7ac7d
commit dc919adccc
10 changed files with 161 additions and 72 deletions

View File

@@ -19,6 +19,7 @@ namespace lime {
public:
virtual void Alert (int type, const char* title, const char* message) = 0;
virtual void Close () = 0;
virtual void Focus () = 0;
virtual bool GetEnableTextEvents () = 0;
@@ -28,7 +29,6 @@ namespace lime {
virtual int GetX () = 0;
virtual int GetY () = 0;
virtual void Move (int x, int y) = 0;
virtual void Notify () = 0;
virtual void Resize (int width, int height) = 0;
virtual void SetEnableTextEvents (bool enable) = 0;
virtual bool SetFullscreen (bool fullscreen) = 0;