Code/Resource
Windows Develop
Linux-Unix program
Internet-Socket-Network
Web Server
Browser Client
Ftp Server
Ftp Client
Browser Plugins
Proxy Server
Email Server
Email Client
WEB Mail
Firewall-Security
Telnet Server
Telnet Client
ICQ-IM-Chat
Search Engine
Sniffer Package capture
Remote Control
xml-soap-webservice
P2P
WEB(ASP,PHP,...)
TCP/IP Stack
SNMP
Grid Computing
SilverLight
DNS
Cluster Service
Network Security
Communication-Mobile
Game Program
Editor
Multimedia program
Graph program
Compiler program
Compress-Decompress algrithms
Crypt_Decrypt algrithms
Mathimatics-Numerical algorithms
MultiLanguage
Disk/Storage
Java Develop
assembly language
Applications
Other systems
Database system
Embeded-SCM Develop
FlashMX/Flex
source in ebook
Delphi VCL
OS Develop
MiddleWare
MPI
MacOS develop
LabView
ELanguage
Software/Tools
E-Books
Artical/Document
organize.tcl
Upload User: kellyonhid
Upload Date: 2013-10-12
Package Size: 932k
Code Size: 1k
Category:
3D Graphic
Development Platform:
Visual C++
- # organize.tcl
- # 5/30/2000 magi@cs.stanford.edu
- proc OrganizeScansDialog {} {
- if {[window_Activate .organizeScans]} { return }
- # create UI window
- set org [toplevel .organizeScans]
- wm title $org "Organize scan hierarchy"
- window_Register $org
- set f [frame $org.cmd]
- label $f.l -text "Commands:"
- set l [frame $f.line1]
- button $l.create -text "Create group:"
- entry $l.name -textvariable __org_name
- packchildren $l -side left
- button $f.delete -text "Delete group"
- packchildren $f -side top -fill x
- set f [frame $org.groups]
- # need to display hierarchy
- # for each line, need radiobutton for theMesh,
- # its name, and a --> button (for groups only)
- # that sets theMesh as a child of this group
- # Otherwise, very much like MeshControls window,
- # and should share code.
- # OR -- should we have this as a fold-out second column/pane
- # of MeshControls window itself? (with separate scrollbar)
- packchildren $org -side top
- }