Changes between Version 5 and Version 6 of UTGBCore/CreateYourOwnTrack


Ignore:
Timestamp:
10/12/07 22:03:03 (18 years ago)
Author:
leo
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • UTGBCore/CreateYourOwnTrack

    v5 v6  
    192192
    193193  * Set the default size of your track
    194    * via getDefaultHight() method (pixel size)
    195 
    196    
     194   * via getDefaultWindowHight() method (pixel size)
     195
     196  * Override draw() method when rewrite of your track is necessary
     197   * This method is used for updating track content on changes of track group properties
     198
     199  * To detect sequence location change, override onChangeTrackWindow() method.
     200  * To detect other track group property change, override onChangeTrackGroupProperty() method.
     201
     202  * To add option configuration panel, create an instance of TrackConfig, then override getTrackConfig() method.
     203   * If this method returns non-null instance, configuration button appears in your track frame.
     204 
     205  * Put all initialization codes of your track into setUp(...) method
    197206
    198207 * Edit the TrackFactorySetup class as as to this class can instantiate your Track class.