Rename to window.notify (should have a more robust notification system in the future)

This commit is contained in:
Joshua Granick
2015-09-02 09:01:04 -07:00
parent 5504d409c0
commit b199e7ac7d
9 changed files with 94 additions and 68 deletions

View File

@@ -28,13 +28,13 @@ 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;
virtual void SetIcon (ImageBuffer *imageBuffer) = 0;
virtual bool SetMinimized (bool minimized) = 0;
virtual const char* SetTitle (const char* title) = 0;
virtual void Alert (int count, int speed, bool stop_on_foreground) = 0;
Application* currentApplication;
int flags;