1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-05-31 18:28:12 +00:00

GSlider: Make the knob width proportional to the range, if in that mode (#288)

Regardless of mode, made the knob container clickable so the knob position
can be moved without dragging the knob itself.

Added a 3rd GSlider to the WidgetGallery showing the proportional mode in
action.
This commit is contained in:
Lawrence Manning 2019-07-11 15:31:43 +01:00 committed by Andreas Kling
parent eb64a4ca60
commit 01998a10e3
3 changed files with 39 additions and 10 deletions

9
Libraries/LibGUI/GSlider.h Normal file → Executable file
View file

@ -4,6 +4,8 @@
class GSlider : public GWidget {
public:
enum class KnobSizeMode { Fixed, Proportional };
explicit GSlider(GWidget*);
virtual ~GSlider() override;
@ -17,8 +19,11 @@ public:
void set_min(int min) { set_range(min, max()); }
void set_max(int max) { set_range(min(), max); }
void set_knob_size_mode(KnobSizeMode mode) { m_knob_size_mode = mode; }
KnobSizeMode knob_size_mode() const { return m_knob_size_mode; }
int track_height() const { return 2; }
int knob_width() const { return 8; }
int knob_fixed_width() const { return 8; }
int knob_height() const { return 20; }
Rect knob_rect() const;
@ -45,4 +50,6 @@ private:
bool m_dragging { false };
int m_drag_origin_value { 0 };
Point m_drag_origin;
KnobSizeMode m_knob_size_mode { KnobSizeMode::Fixed };
};