summaryrefslogtreecommitdiff
path: root/libs/dgl/ImageSlider.hpp
diff options
context:
space:
mode:
Diffstat (limited to 'libs/dgl/ImageSlider.hpp')
-rw-r--r--libs/dgl/ImageSlider.hpp8
1 files changed, 2 insertions, 6 deletions
diff --git a/libs/dgl/ImageSlider.hpp b/libs/dgl/ImageSlider.hpp
index 613b25c..e6f2716 100644
--- a/libs/dgl/ImageSlider.hpp
+++ b/libs/dgl/ImageSlider.hpp
@@ -36,14 +36,11 @@ public:
virtual void imageSliderValueChanged(ImageSlider* imageSlider, float value) = 0;
};
- explicit ImageSlider(Window& parent, const Image& image, int id = 0) noexcept;
- explicit ImageSlider(Widget* widget, const Image& image, int id = 0) noexcept;
+ explicit ImageSlider(Window& parent, const Image& image) noexcept;
+ explicit ImageSlider(Widget* widget, const Image& image) noexcept;
explicit ImageSlider(const ImageSlider& imageSlider) noexcept;
ImageSlider& operator=(const ImageSlider& imageSlider) noexcept;
- int getId() const noexcept;
- void setId(int id) noexcept;
-
float getValue() const noexcept;
void setStartPos(const Point<int>& startPos) noexcept;
@@ -65,7 +62,6 @@ protected:
private:
Image fImage;
- int fId;
float fMinimum;
float fMaximum;
float fStep;