| 1880 | } |
| 1881 | |
| 1882 | void |
| 1883 | TrackerPanelV1::initializeExtraKnobs() |
| 1884 | { |
| 1885 | if ( !getMainInstance()->isPointTrackerNode() ) { |
| 1886 | return; |
| 1887 | } |
| 1888 | _imp->transformPage = AppManager::createKnob<KnobPage>(this, tr("Transform"), 1, false); |
| 1889 | |
| 1890 | _imp->referenceFrame = AppManager::createKnob<KnobInt>(this, tr("Reference Frame"), 1, false); |
| 1891 | _imp->referenceFrame->setAnimationEnabled(false); |
| 1892 | _imp->referenceFrame->setHintToolTip( tr("This is the frame number at which the transform will be an identity.") ); |
| 1893 | _imp->transformPage->addKnob(_imp->referenceFrame); |
| 1894 | } |
| 1895 | |
| 1896 | void |
| 1897 | TrackerPanelV1::setIconForButton(KnobButton* knob) |
nothing calls this directly
no test coverage detected