Implement window.fullscreen and window.minimize, add onWindow minimize, restore, fullscreen events

This commit is contained in:
Joshua Granick
2015-03-19 16:55:38 -07:00
parent 580e8d426d
commit 138e3f6703
15 changed files with 437 additions and 30 deletions

View File

@@ -21,7 +21,9 @@ namespace lime {
virtual void Close () = 0;
virtual void Move (int x, int y) = 0;
virtual void Resize (int width, int height) = 0;
virtual bool SetFullscreen (bool fullscreen) = 0;
virtual void SetIcon (ImageBuffer *imageBuffer) = 0;
virtual bool SetMinimized (bool minimized) = 0;
Application* currentApplication;
int flags;