| 334 | |
| 335 | template <class ImageType> |
| 336 | ImageBaseKnob<ImageType>::ImageBaseKnob(Widget* const parentWidget, |
| 337 | const ImageType& image, |
| 338 | const Orientation orientation) noexcept |
| 339 | : SubWidget(parentWidget), |
| 340 | KnobEventHandler(this), |
| 341 | pData(new PrivateData(image)) |
| 342 | { |
| 343 | KnobEventHandler::setCallback(pData); |
| 344 | setOrientation(orientation); |
| 345 | setSize(pData->imgLayerWidth, pData->imgLayerHeight); |
| 346 | } |
| 347 | |
| 348 | template <class ImageType> |
| 349 | ImageBaseKnob<ImageType>::ImageBaseKnob(const ImageBaseKnob<ImageType>& imageKnob) |
nothing calls this directly
no test coverage detected