window: exposed "raise()" function from SDL to bring the specified window to the top of the display stack

This commit is contained in:
Lars A. Doucet
2015-08-20 20:57:49 -05:00
parent ea6cac44a6
commit 36538a4b3e
6 changed files with 31 additions and 0 deletions

View File

@@ -27,6 +27,7 @@ namespace lime {
virtual int GetX () = 0;
virtual int GetY () = 0;
virtual void Move (int x, int y) = 0;
virtual void Raise () = 0;
virtual void Resize (int width, int height) = 0;
virtual void SetEnableTextEvents (bool enable) = 0;
virtual bool SetFullscreen (bool fullscreen) = 0;