RosettaCodeData/Task/GUI-Maximum-window-dimensions/Phix/gui-maximum-window-dimensions.phix

16 lines
385 B
Text
Raw Permalink Normal View History

2017-09-23 10:01:46 +02:00
include pGUI.e
IupOpen()
string scrnFullSize = IupGetGlobal("FULLSIZE")
string scrnSize = IupGetGlobal("SCREENSIZE")
string scrnMInfo = IupGetGlobal("MONITORSINFO")
string scrnVScreen = IupGetGlobal("VIRTUALSCREEN")
Ihandle dlg = IupDialog(NULL,"SIZE=FULL")
string scrnXSize = IupGetAttribute(dlg,"MAXSIZE")
?{scrnFullSize, scrnSize, scrnMInfo, scrnVScreen, scrnXSize}
IupClose()