Ignore:
Timestamp:
Jun 8, 2005 5:37:19 PM (19 years ago)
Author:
mmc
Message:

Many improvements, including a new energy level viewer
for Huckel-IV. Added support for a new <boolean> type.
Fixed the cloud/field stuff so that when a cloud is 1D,
it reverts to BLT vectors so it will plot correctly.
Fixed the install script to work better on Windows.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/gui/scripts/tool.tcl

    r11 r13  
    2424
    2525    public method load {xmlobj}
    26     public method changed {path}
    2726    public method run {args}
    2827    public method abort {}
    2928
    3029    public method widgetfor {path {widget ""}}
     30    public method changed {path}
    3131    public method sync {}
     32    public method tool {}
    3233
    3334    private variable _xmlobj ""      ;# XML overall <run> object
     
    155156# USAGE: widgetfor <path> ?<widget>?
    156157#
    157 # Used by descendents such as a Controls panel to register the
     158# Used by embedded widgets such as a Controls panel to register the
    158159# various controls associated with this page.  That way, this Tool
    159160# knows what widgets to look at when syncing itself to the underlying
     
    227228    }
    228229}
     230
     231# ----------------------------------------------------------------------
     232# USAGE: tool
     233#
     234# Clients use this to figure out which tool is associated with
     235# this object.  Since this is a tool, it returns itself.
     236# ----------------------------------------------------------------------
     237itcl::body Rappture::Tool::tool {} {
     238    return $this
     239}
Note: See TracChangeset for help on using the changeset viewer.