initial commit
[ld42_outofspace] / src / goatkit / slider.h
1 /*
2 GoatKit - a themable/animated widget toolkit for games
3 Copyright (C) 2014-2018  John Tsiombikas <nuclear@member.fsf.org>
4
5 This program is free software: you can redistribute it and/or modify
6 it under the terms of the GNU Lesser General Public License as published by
7 the Free Software Foundation, either version 3 of the License, or
8 (at your option) any later version.
9
10 This program is distributed in the hope that it will be useful,
11 but WITHOUT ANY WARRANTY; without even the implied warranty of
12 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
13 GNU Lesser General Public License for more details.
14
15 You should have received a copy of the GNU Lesser General Public License
16 along with this program.  If not, see <http://www.gnu.org/licenses/>.
17 */
18 #ifndef GOATKIT_SLIDER_H_
19 #define GOATKIT_SLIDER_H_
20
21 #include "widget.h"
22
23 namespace goatkit {
24
25 struct SliderImpl;
26
27 class Slider : public Widget {
28 private:
29         SliderImpl *slider;
30
31 public:
32         Slider();
33         virtual ~Slider();
34
35         virtual const char *get_type_name() const;
36
37         virtual void set_value(float val);
38         virtual float get_value() const;
39
40         virtual void set_value_norm(float val);
41         virtual float get_value_norm() const;
42
43         virtual void set_padding(float pad);
44         virtual float get_padding() const;
45
46         virtual void set_continuous_change(bool cont);
47         virtual bool get_continuous_change() const;
48
49         virtual void set_range(float min, float max);
50         virtual float get_range_min() const;
51         virtual float get_range_max() const;
52
53         virtual void set_step(float step);
54         virtual float get_step() const;
55
56         virtual void on_mouse_button(const ButtonEvent &ev);
57         virtual void on_mouse_motion(const MotionEvent &ev);
58 };
59
60 }       // namespace goatkit
61
62 #endif  // GOATKIT_SLIDER_H_