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 |