Rev 228 | Blame | Last modification | View Log | RSS feed
; ----------------------------------------------------------------------------
;
; AutoIt Version: 3.1.0
; Author: A.N.Other <myemail@nowhere.com>
;
; Script Function:
; Template AutoIt script.
;
; ----------------------------------------------------------------------------
#include <GELfunc.au3>
#include <GUIConstants.au3
; == GUI generated with Koda ==);
$GELinstall_src = GUICreate("GEL source Installer", 622, 442, 389, 119)
$Button1 = GUICtrlCreateButton("Do It!", 32, 384, 320, 41, 0)
$Group3 = GUICtrlCreateGroup("Install Path (where GEL is build and 3rd party libs are copied to)", 32, 32, 553, 89)
$Input1 = GUICtrlCreateInput("c:\GEL", 48, 64, 489, 24)
$Button2 = GUICtrlCreateButton("...", 544, 64, 27, 25, 0)
GUICtrlCreateGroup("", -99, -99, 1, 1)
;$Combo1 = GUICtrlCreateCombo("", 208, 144, 145, 24)
;GUICtrlSetData(-1, "2003|2005", "2003")
;GUICtrlCreateLabel("Visual Studio Version", 32, 144, 131, 20, $SS_CENTERIMAGE)
;GUICtrlCreateLabel("Library Type", 32, 192, 80, 20, $SS_CENTERIMAGE)
GUICtrlCreateLabel("Environment variable scope", 32, 240, 171, 20, $SS_CENTERIMAGE)
;$Combo2 = GUICtrlCreateCombo("", 208, 192, 145, 24)
;GUICtrlSetData(-1, "Separate Libraries|Single Library|CGLA Only", "Separate Libraries")
$Combo3 = GUICtrlCreateCombo("", 208, 240, 145, 24)
GUICtrlSetData(-1, "Current User|System", "Current User")
$Button3 = GUICtrlCreateButton("Close", 368, 384, 192, 41, 0)
;$Checkbox1 = GUICtrlCreateCheckbox("Install Perl", 32, 304, 145, 17)
GUISetState(@SW_SHOW)
While 1
$msg = GuiGetMsg()
Select
Case $msg = $GUI_EVENT_CLOSE
ExitLoop
Case $msg = $Button1
installLibs(GUICtrlRead($Input1), GUICtrlRead($Combo3))
Case $msg = $Button2
updatePath($Input1)
Case $msg = $Button3
ExitLoop
EndSelect
WEnd