⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 support.tcl

📁 CNC 的开放码,EMC2 V2.2.8版
💻 TCL
字号:
#    This is a component of AXIS, a front-end for emc#    Copyright 2004 Jeff Epler <jepler@unpythonic.net> and#    Chris Radek <chris@timeguy.com>##    This program is free software; you can redistribute it and/or modify#    it under the terms of the GNU General Public License as published by#    the Free Software Foundation; either version 2 of the License, or#    (at your option) any later version.##    This program is distributed in the hope that it will be useful,#    but WITHOUT ANY WARRANTY; without even the implied warranty of#    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the#    GNU General Public License for more details.##    You should have received a copy of the GNU General Public License#    along with this program; if not, write to the Free Software#    Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USAproc make_color { c d } {    if {![catch {winfo rgb . $c}]} {        set d $c    }    proc $c {} [list return $d]}make_color systemwindowtext      #000000make_color systembuttonface      #d9d9d9make_color systemdisabledtext    #a3a3a3make_color systembuttonhighlight #ecececmake_color systemhighlight       #08246bmake_color systemhighlighttext   #ffffffmake_color systemwindow          #ffffffproc control {path args} { eval [concat frame $path $args -class Control] }proc vspace {path args} { eval [concat frame $path $args -class Vspace] }proc hspace {path args} { eval [concat frame $path $args -class Hspace] }proc vrule {path args} { eval [concat frame $path $args -class Vrule] }proc hrule {path args} { eval [concat frame $path $args -class Hrule] }proc tab {path args} { eval [concat frame $path] }proc find_gif {name} {    set initial [string index $name 0]    foreach p $::imagedir {        set q [file join $p ${name}.gif]        if {[file exists $q]} { return $q }        set q [file join $p $initial ${name}.gif]        if {[file exists $q]} { return $q }    }    error "Image $name does not exist"}proc load_image { name {img ""}} {    if {$img == ""} { set img icon_$name }    if {[lsearch [image names] $img] != -1}  { return $img }    set file [find_gif $name]    image create photo $img -format gif -file $file    return $img}

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -