15 lines
366 B
C++
15 lines
366 B
C++
|
#include "StarImageStretchWidget.hpp"
|
||
|
|
||
|
namespace Star {
|
||
|
|
||
|
ImageStretchWidget::ImageStretchWidget(ImageStretchSet const& imageStretchSet, GuiDirection direction)
|
||
|
: m_imageStretchSet(imageStretchSet), m_direction(direction) {
|
||
|
|
||
|
}
|
||
|
|
||
|
void ImageStretchWidget::renderImpl() {
|
||
|
context()->drawImageStretchSet(m_imageStretchSet, RectF(screenBoundRect()), m_direction);
|
||
|
}
|
||
|
|
||
|
}
|