summaryrefslogtreecommitdiff
path: root/lib/tcl/xcircuit.bat.in
blob: 8b78f733ec85c3d26bb6dc593d6d453516a77e88 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
@echo off
rem
rem This script starts xcircuit under the Tcl interpreter,
rem reading commands from a special .wishrc script which
rem launches magic and retains the Tcl interactive interpreter.
rem

set XCIRCUIT_LIB_DIR=XCLIBDIR
set XCIRCUIT_WISH=WISH_EXE

set loclibdir=%XCIRCUIT_LIB_DIR%

set TKCON=1
for %%i in (%*) do (
	if "%%i" == "-noconsole" set TKCON=0
)

if "%TKCON%" == "1" (

   if not exist %loclibdir%/CONSOLE set loclibdir=%loclibdir%/tcl

   start %XCIRCUIT_WISH% %loclibdir%/CONSOLE -eval "source %loclibdir%/CONSOLE_SCRIPT" -slave "package require Tk; set argv [list %*]; set argc [llength argv]; source %loclibdir%/WRAPPER_INIT"

) else (


rem Run the stand-in for wish (xcircexec), which acts exactly like "wish"
rem except that it replaces ~/.wishrc with xcircuit.tcl.  This executable is
rem *only* needed when running without the console; the console itself is
rem capable of sourcing the startup script.

   %loclibdir%/xcircexec -- %*

)