2023-01-10 15:26:54 +01:00
|
|
|
/**************************************************************************/
|
|
|
|
/* scroll_bar.h */
|
|
|
|
/**************************************************************************/
|
|
|
|
/* This file is part of: */
|
|
|
|
/* GODOT ENGINE */
|
|
|
|
/* https://godotengine.org */
|
|
|
|
/**************************************************************************/
|
|
|
|
/* Copyright (c) 2014-present Godot Engine contributors (see AUTHORS.md). */
|
|
|
|
/* Copyright (c) 2007-2014 Juan Linietsky, Ariel Manzur. */
|
|
|
|
/* */
|
|
|
|
/* Permission is hereby granted, free of charge, to any person obtaining */
|
|
|
|
/* a copy of this software and associated documentation files (the */
|
|
|
|
/* "Software"), to deal in the Software without restriction, including */
|
|
|
|
/* without limitation the rights to use, copy, modify, merge, publish, */
|
|
|
|
/* distribute, sublicense, and/or sell copies of the Software, and to */
|
|
|
|
/* permit persons to whom the Software is furnished to do so, subject to */
|
|
|
|
/* the following conditions: */
|
|
|
|
/* */
|
|
|
|
/* The above copyright notice and this permission notice shall be */
|
|
|
|
/* included in all copies or substantial portions of the Software. */
|
|
|
|
/* */
|
|
|
|
/* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, */
|
|
|
|
/* EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF */
|
|
|
|
/* MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. */
|
|
|
|
/* IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY */
|
|
|
|
/* CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, */
|
|
|
|
/* TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE */
|
|
|
|
/* SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. */
|
|
|
|
/**************************************************************************/
|
2018-01-05 00:50:27 +01:00
|
|
|
|
2014-02-10 02:10:30 +01:00
|
|
|
#ifndef SCROLL_BAR_H
|
|
|
|
#define SCROLL_BAR_H
|
|
|
|
|
|
|
|
#include "scene/gui/range.h"
|
|
|
|
|
|
|
|
class ScrollBar : public Range {
|
2017-03-05 16:44:50 +01:00
|
|
|
GDCLASS(ScrollBar, Range);
|
2016-03-09 00:00:52 +01:00
|
|
|
|
2017-05-02 22:13:12 +02:00
|
|
|
enum HighlightStatus {
|
|
|
|
HIGHLIGHT_NONE,
|
|
|
|
HIGHLIGHT_DECR,
|
|
|
|
HIGHLIGHT_RANGE,
|
|
|
|
HIGHLIGHT_INCR,
|
2014-02-10 02:10:30 +01:00
|
|
|
};
|
2016-03-09 00:00:52 +01:00
|
|
|
|
2014-02-10 02:10:30 +01:00
|
|
|
static bool focus_by_default;
|
2016-03-09 00:00:52 +01:00
|
|
|
|
2014-02-10 02:10:30 +01:00
|
|
|
Orientation orientation;
|
|
|
|
Size2 size;
|
|
|
|
float custom_step;
|
2016-03-09 00:00:52 +01:00
|
|
|
|
2017-05-02 22:13:12 +02:00
|
|
|
HighlightStatus highlight;
|
2016-03-09 00:00:52 +01:00
|
|
|
|
2021-08-17 21:06:19 +02:00
|
|
|
bool incr_active = false;
|
|
|
|
bool decr_active = false;
|
|
|
|
|
2014-02-10 02:10:30 +01:00
|
|
|
struct Drag {
|
|
|
|
bool active;
|
|
|
|
float pos_at_click;
|
|
|
|
float value_at_click;
|
|
|
|
} drag;
|
2016-03-09 00:00:52 +01:00
|
|
|
|
2014-02-10 02:10:30 +01:00
|
|
|
double get_grabber_size() const;
|
|
|
|
double get_grabber_min_size() const;
|
|
|
|
double get_area_size() const;
|
|
|
|
double get_area_offset() const;
|
2017-03-05 16:44:50 +01:00
|
|
|
double get_click_pos(const Point2 &p_pos) const;
|
2014-02-10 02:10:30 +01:00
|
|
|
double get_grabber_offset() const;
|
2016-03-09 00:00:52 +01:00
|
|
|
|
|
|
|
static void set_can_focus_by_default(bool p_can_focus);
|
2014-06-17 16:58:35 +02:00
|
|
|
|
2018-09-15 00:55:22 +02:00
|
|
|
Node *drag_node;
|
|
|
|
NodePath drag_node_path;
|
2020-02-19 20:12:07 +01:00
|
|
|
bool drag_node_enabled;
|
2014-06-17 16:58:35 +02:00
|
|
|
|
2018-09-15 00:55:22 +02:00
|
|
|
Vector2 drag_node_speed;
|
|
|
|
Vector2 drag_node_accum;
|
|
|
|
Vector2 drag_node_from;
|
|
|
|
Vector2 last_drag_node_accum;
|
|
|
|
float last_drag_node_time;
|
2014-06-19 07:23:03 +02:00
|
|
|
float time_since_motion;
|
2018-09-15 00:55:22 +02:00
|
|
|
bool drag_node_touching;
|
|
|
|
bool drag_node_touching_deaccel;
|
2014-06-19 07:23:03 +02:00
|
|
|
bool click_handled;
|
|
|
|
|
2017-08-19 16:23:45 +02:00
|
|
|
bool scrolling;
|
|
|
|
double target_scroll;
|
|
|
|
bool smooth_scroll_enabled;
|
|
|
|
|
2018-09-15 00:55:22 +02:00
|
|
|
void _drag_node_exit();
|
|
|
|
void _drag_node_input(const Ref<InputEvent> &p_input);
|
2016-03-09 00:00:52 +01:00
|
|
|
|
2017-05-20 17:38:03 +02:00
|
|
|
void _gui_input(Ref<InputEvent> p_event);
|
2017-03-05 16:44:50 +01:00
|
|
|
|
2016-03-09 00:00:52 +01:00
|
|
|
protected:
|
2014-02-10 02:10:30 +01:00
|
|
|
void _notification(int p_what);
|
|
|
|
|
2016-03-09 00:00:52 +01:00
|
|
|
static void _bind_methods();
|
2014-02-10 02:10:30 +01:00
|
|
|
|
|
|
|
public:
|
|
|
|
void set_custom_step(float p_custom_step);
|
|
|
|
float get_custom_step() const;
|
|
|
|
|
2018-09-15 00:55:22 +02:00
|
|
|
void set_drag_node(const NodePath &p_path);
|
|
|
|
NodePath get_drag_node() const;
|
2020-02-19 20:12:07 +01:00
|
|
|
void set_drag_node_enabled(bool p_enable);
|
2014-06-17 16:58:35 +02:00
|
|
|
|
2017-08-19 16:23:45 +02:00
|
|
|
void set_smooth_scroll_enabled(bool p_enable);
|
|
|
|
bool is_smooth_scroll_enabled() const;
|
|
|
|
|
2016-03-09 00:00:52 +01:00
|
|
|
virtual Size2 get_minimum_size() const;
|
2017-03-05 16:44:50 +01:00
|
|
|
ScrollBar(Orientation p_orientation = VERTICAL);
|
2014-02-10 02:10:30 +01:00
|
|
|
~ScrollBar();
|
|
|
|
};
|
|
|
|
|
|
|
|
class HScrollBar : public ScrollBar {
|
2017-03-05 16:44:50 +01:00
|
|
|
GDCLASS(HScrollBar, ScrollBar);
|
2016-03-09 00:00:52 +01:00
|
|
|
|
2017-03-05 16:44:50 +01:00
|
|
|
public:
|
2017-12-06 21:36:34 +01:00
|
|
|
HScrollBar() :
|
|
|
|
ScrollBar(HORIZONTAL) { set_v_size_flags(0); }
|
2014-02-10 02:10:30 +01:00
|
|
|
};
|
|
|
|
|
|
|
|
class VScrollBar : public ScrollBar {
|
2017-03-05 16:44:50 +01:00
|
|
|
GDCLASS(VScrollBar, ScrollBar);
|
2016-03-09 00:00:52 +01:00
|
|
|
|
2017-03-05 16:44:50 +01:00
|
|
|
public:
|
2017-12-06 21:36:34 +01:00
|
|
|
VScrollBar() :
|
|
|
|
ScrollBar(VERTICAL) { set_h_size_flags(0); }
|
2014-02-10 02:10:30 +01:00
|
|
|
};
|
|
|
|
|
2022-07-25 12:33:41 +02:00
|
|
|
#endif // SCROLL_BAR_H
|