This repository has been archived by the owner on Sep 7, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 19
Window Function
eyeyunianto edited this page Jan 2, 2014
·
4 revisions
How to customize window function on IGN SDK.
Some API that be used to management window IGN SDK
-
.windowMaximized(bool)
used to maximize application window.
example : ign.windowsMaximized(bool)
-
.widgetSizeMax(width,height)
use to maximize application window with custom size.
example : ign.widgetSizeMax(300,100)
-
.widgetSizeMin(width,height)
use to minimize application window with custom size.
example : ign.widgetSizeMin(300,100)
-
.widgetSize(width,height)
used to set default size application window with custom size.
example: ign.widgetSize(300,100)
-
.getFullScreen(bool)
used to get fullscreen application window depend a set value.
example : ign.getFullScreen(bool)
-
.getToggleFullScreen()
used to get fullscreen application window with toggle.
example : ign.getToggleFullScreen()
-
.showMaximized()
is used to show maximize application window.
example : ign.showMaximized()
-
.showMinimized()
is used to show minimize application window.
example : ign.showMinimized()
-
.widgetNoTaskbar()
is used to hide taskbar from application .
example : ign.widgetNoTaskbar()