summaryrefslogtreecommitdiffstats
path: root/library/demos/tree.tcl
diff options
context:
space:
mode:
authorjenglish <jenglish@flightlab.com>2008-12-11 18:13:08 (GMT)
committerjenglish <jenglish@flightlab.com>2008-12-11 18:13:08 (GMT)
commitb23f1c5ccb5f2a971132b9348cfa8fbfd5829087 (patch)
tree7d4298babc6ca0316cbf781038ced8ceb74d5eea /library/demos/tree.tcl
parentd8ecde2c07db2bec3692edaf1c3b5dcfcaf467f9 (diff)
downloadtk-b23f1c5ccb5f2a971132b9348cfa8fbfd5829087.zip
tk-b23f1c5ccb5f2a971132b9348cfa8fbfd5829087.tar.gz
tk-b23f1c5ccb5f2a971132b9348cfa8fbfd5829087.tar.bz2
library/demos/*.tcl: Omit contraindicated [package require Ttk].
Remove logic that switches [ttk::scrollbar]s to [tk::scrollbar]s based on [tk windowingsystem]; this is already handled in library/ttk/scrollbar.tcl.
Diffstat (limited to 'library/demos/tree.tcl')
-rw-r--r--library/demos/tree.tcl12
1 files changed, 3 insertions, 9 deletions
diff --git a/library/demos/tree.tcl b/library/demos/tree.tcl
index b46943a..828560d 100644
--- a/library/demos/tree.tcl
+++ b/library/demos/tree.tcl
@@ -3,14 +3,13 @@
# This demonstration script creates a toplevel window containing a Ttk
# tree widget.
#
-# RCS: @(#) $Id: tree.tcl,v 1.4 2007/12/13 15:27:07 dgp Exp $
+# RCS: @(#) $Id: tree.tcl,v 1.5 2008/12/11 18:13:08 jenglish Exp $
if {![info exists widgetDemo]} {
error "This script should be run from the \"widget\" demo."
}
package require Tk
-package require Ttk
set w .tree
catch {destroy $w}
@@ -74,13 +73,8 @@ proc populateTree {tree node} {
## Create the tree and set it up
ttk::treeview $w.tree -columns {fullpath type size} -displaycolumns {size} \
-yscroll "$w.vsb set" -xscroll "$w.hsb set"
-if {[tk windowingsystem] ne "aqua"} {
- ttk::scrollbar $w.vsb -orient vertical -command "$w.tree yview"
- ttk::scrollbar $w.hsb -orient horizontal -command "$w.tree xview"
-} else {
- scrollbar $w.vsb -orient vertical -command "$w.tree yview"
- scrollbar $w.hsb -orient horizontal -command "$w.tree xview"
-}
+ttk::scrollbar $w.vsb -orient vertical -command "$w.tree yview"
+ttk::scrollbar $w.hsb -orient horizontal -command "$w.tree xview"
$w.tree heading \#0 -text "Directory Structure"
$w.tree heading size -text "File Size"
$w.tree column size -stretch 0 -width 70