blob: cdc4f468bc070f73fc3a21a8eb9a84f06e3154c4 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
|
#pragma once
#include "StarWidget.hpp"
namespace Star {
STAR_CLASS(ImageStretchWidget);
class ImageStretchWidget : public Widget {
public:
ImageStretchWidget(ImageStretchSet const& imageStretchSet, GuiDirection direction);
virtual ~ImageStretchWidget() {}
protected:
virtual void renderImpl();
private:
ImageStretchSet m_imageStretchSet;
GuiDirection m_direction;
};
}
|