2014-02-10 01:10:30 +00:00
|
|
|
/*************************************************************************/
|
|
|
|
/* split_container.h */
|
|
|
|
/*************************************************************************/
|
|
|
|
/* This file is part of: */
|
|
|
|
/* GODOT ENGINE */
|
2017-08-27 12:16:55 +00:00
|
|
|
/* https://godotengine.org */
|
2014-02-10 01:10:30 +00:00
|
|
|
/*************************************************************************/
|
2021-01-01 19:13:46 +00:00
|
|
|
/* Copyright (c) 2007-2021 Juan Linietsky, Ariel Manzur. */
|
|
|
|
/* Copyright (c) 2014-2021 Godot Engine contributors (cf. AUTHORS.md). */
|
2014-02-10 01:10:30 +00:00
|
|
|
/* */
|
|
|
|
/* 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-04 23:50:27 +00:00
|
|
|
|
2014-02-10 01:10:30 +00:00
|
|
|
#ifndef SPLIT_CONTAINER_H
|
|
|
|
#define SPLIT_CONTAINER_H
|
|
|
|
|
|
|
|
#include "scene/gui/container.h"
|
|
|
|
|
|
|
|
class SplitContainer : public Container {
|
2019-03-19 18:35:57 +00:00
|
|
|
GDCLASS(SplitContainer, Container);
|
2017-03-05 15:44:50 +00:00
|
|
|
|
2016-01-17 23:03:57 +00:00
|
|
|
public:
|
|
|
|
enum DraggerVisibility {
|
|
|
|
DRAGGER_VISIBLE,
|
|
|
|
DRAGGER_HIDDEN,
|
|
|
|
DRAGGER_HIDDEN_COLLAPSED
|
|
|
|
};
|
2017-03-05 15:44:50 +00:00
|
|
|
|
2016-01-17 23:03:57 +00:00
|
|
|
private:
|
2018-11-15 15:47:28 +00:00
|
|
|
bool should_clamp_split_offset;
|
2018-01-20 20:03:20 +00:00
|
|
|
int split_offset;
|
2014-02-10 01:10:30 +00:00
|
|
|
int middle_sep;
|
2018-11-15 15:47:28 +00:00
|
|
|
bool vertical;
|
2014-02-10 01:10:30 +00:00
|
|
|
bool dragging;
|
|
|
|
int drag_from;
|
|
|
|
int drag_ofs;
|
|
|
|
bool collapsed;
|
2016-01-17 23:03:57 +00:00
|
|
|
DraggerVisibility dragger_visibility;
|
2014-02-10 01:10:30 +00:00
|
|
|
bool mouse_inside;
|
|
|
|
|
|
|
|
Control *_getch(int p_idx) const;
|
|
|
|
|
|
|
|
void _resort();
|
|
|
|
|
2017-03-05 15:44:50 +00:00
|
|
|
protected:
|
2017-05-20 15:38:03 +00:00
|
|
|
void _gui_input(const Ref<InputEvent> &p_event);
|
2014-02-10 01:10:30 +00:00
|
|
|
void _notification(int p_what);
|
|
|
|
static void _bind_methods();
|
|
|
|
|
2017-03-05 15:44:50 +00:00
|
|
|
public:
|
2014-02-10 01:10:30 +00:00
|
|
|
void set_split_offset(int p_offset);
|
|
|
|
int get_split_offset() const;
|
2018-11-15 15:47:28 +00:00
|
|
|
void clamp_split_offset();
|
2014-02-10 01:10:30 +00:00
|
|
|
|
|
|
|
void set_collapsed(bool p_collapsed);
|
|
|
|
bool is_collapsed() const;
|
|
|
|
|
2016-01-17 23:03:57 +00:00
|
|
|
void set_dragger_visibility(DraggerVisibility p_visibility);
|
|
|
|
DraggerVisibility get_dragger_visibility() const;
|
2014-02-10 01:10:30 +00:00
|
|
|
|
2020-07-10 10:34:39 +00:00
|
|
|
virtual CursorShape get_cursor_shape(const Point2 &p_pos = Point2i()) const override;
|
2014-02-10 01:10:30 +00:00
|
|
|
|
2020-07-10 10:34:39 +00:00
|
|
|
virtual Size2 get_minimum_size() const override;
|
2014-02-10 01:10:30 +00:00
|
|
|
|
2017-03-05 15:44:50 +00:00
|
|
|
SplitContainer(bool p_vertical = false);
|
2014-02-10 01:10:30 +00:00
|
|
|
};
|
|
|
|
|
2016-01-17 23:03:57 +00:00
|
|
|
VARIANT_ENUM_CAST(SplitContainer::DraggerVisibility);
|
2014-02-10 01:10:30 +00:00
|
|
|
|
|
|
|
class HSplitContainer : public SplitContainer {
|
2017-03-05 15:44:50 +00:00
|
|
|
GDCLASS(HSplitContainer, SplitContainer);
|
2014-02-10 01:10:30 +00:00
|
|
|
|
|
|
|
public:
|
2017-12-06 20:36:34 +00:00
|
|
|
HSplitContainer() :
|
2017-12-20 15:55:03 +00:00
|
|
|
SplitContainer(false) {}
|
2014-02-10 01:10:30 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
class VSplitContainer : public SplitContainer {
|
2017-03-05 15:44:50 +00:00
|
|
|
GDCLASS(VSplitContainer, SplitContainer);
|
2014-02-10 01:10:30 +00:00
|
|
|
|
|
|
|
public:
|
2017-12-06 20:36:34 +00:00
|
|
|
VSplitContainer() :
|
2017-12-20 15:55:03 +00:00
|
|
|
SplitContainer(true) {}
|
2014-02-10 01:10:30 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
#endif // SPLIT_CONTAINER_H
|