organize.tcl
上传用户:kellyonhid
上传日期:2013-10-12
资源大小:932k
文件大小:1k
源码类别:

3D图形编程

开发平台:

Visual C++

  1. # organize.tcl
  2. # 5/30/2000 magi@cs.stanford.edu
  3. proc OrganizeScansDialog {} {
  4.     if {[window_Activate .organizeScans]} { return }
  5.     # create UI window
  6.     set org [toplevel .organizeScans]
  7.     wm title $org "Organize scan hierarchy"
  8.     window_Register $org
  9.     set f [frame $org.cmd]
  10.     label $f.l -text "Commands:"
  11.     set l [frame $f.line1]
  12.     button $l.create -text "Create group:"
  13.     entry $l.name -textvariable __org_name
  14.     packchildren $l -side left
  15.     button $f.delete -text "Delete group"
  16.     packchildren $f -side top -fill x
  17.     set f [frame $org.groups]
  18.     # need to display hierarchy
  19.     # for each line, need radiobutton for theMesh,
  20.     # its name, and a --> button (for groups only)
  21.     # that sets theMesh as a child of this group
  22.     # Otherwise, very much like MeshControls window,
  23.     # and should share code.
  24.     # OR -- should we have this as a fold-out second column/pane
  25.     # of MeshControls window itself?  (with separate scrollbar)
  26.     packchildren $org -side top
  27. }