Changeset 5639 for trunk


Ignore:
Timestamp:
May 31, 2015, 4:31:19 PM (9 years ago)
Author:
ldelgass
Message:

code style

File:
1 edited

Legend:

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

    r5562 r5639  
    1818
    1919itcl::class Rappture::IsoMarker {
     20    constructor {c obj tf args} {}
     21    destructor {}
     22    public method transferfunc {}
     23    public method activate { bool }
     24    public method visible { bool }
     25    public method screenpos {}
     26    public method absval { {x "-get"} }
     27    public method relval { {x "-get"} }
     28
     29    private method EnterTick {}
     30    private method LeaveTick {}
     31    private method StartDrag { x y }
     32    private method ContinueDrag { x y }
     33    private method StopDrag { x y }
     34
    2035    private variable _value     0.0;    # Absolute value of marker.
    2136    private variable _label     ""
     
    2742    private variable _activeMotion   0
    2843    private variable _activePress    0
     44
    2945    private common   _normalIcon [Rappture::icon nvlegendmark]
    3046    private common   _activeIcon [Rappture::icon nvlegendmark2]
    31     private method EnterTick {}
    32     private method LeaveTick {}
    33     private method StartDrag { x y }
    34     private method ContinueDrag { x y }
    35     private method StopDrag { x y }
    36 
    37     constructor {c obj tf args} {}
    38     destructor {}
    39     public method transferfunc {}
    40     public method activate { bool }
    41     public method visible { bool }
    42     public method screenpos {}
    43     public method absval { {x "-get"} }
    44     public method relval { {x "-get"} }
    4547}
    4648
Note: See TracChangeset for help on using the changeset viewer.