2023-01-05 12:25:55 +00:00
|
|
|
/**************************************************************************/
|
|
|
|
/* subviewport_container.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-04 23:50:27 +00:00
|
|
|
|
2022-07-23 21:41:51 +00:00
|
|
|
#ifndef SUBVIEWPORT_CONTAINER_H
|
|
|
|
#define SUBVIEWPORT_CONTAINER_H
|
2016-10-05 04:26:35 +00:00
|
|
|
|
|
|
|
#include "scene/gui/container.h"
|
|
|
|
|
2020-04-01 18:28:09 +00:00
|
|
|
class SubViewportContainer : public Container {
|
|
|
|
GDCLASS(SubViewportContainer, Container);
|
2016-10-05 04:26:35 +00:00
|
|
|
|
2021-02-09 17:24:36 +00:00
|
|
|
bool stretch = false;
|
|
|
|
int shrink = 1;
|
2022-02-15 21:14:39 +00:00
|
|
|
void _notify_viewports(int p_notification);
|
2022-03-31 10:01:04 +00:00
|
|
|
bool _is_propagated_in_gui_input(const Ref<InputEvent> &p_event);
|
|
|
|
void _send_event_to_viewports(const Ref<InputEvent> &p_event);
|
2016-10-05 04:26:35 +00:00
|
|
|
|
|
|
|
protected:
|
|
|
|
void _notification(int p_what);
|
|
|
|
static void _bind_methods();
|
|
|
|
|
2022-11-23 13:13:07 +00:00
|
|
|
virtual void add_child_notify(Node *p_child) override;
|
|
|
|
virtual void remove_child_notify(Node *p_child) override;
|
|
|
|
|
2017-03-05 15:44:50 +00:00
|
|
|
public:
|
2016-10-05 04:26:35 +00:00
|
|
|
void set_stretch(bool p_enable);
|
|
|
|
bool is_stretch_enabled() const;
|
|
|
|
|
2021-08-22 15:37:22 +00:00
|
|
|
virtual void input(const Ref<InputEvent> &p_event) override;
|
2022-03-31 10:01:04 +00:00
|
|
|
virtual void gui_input(const Ref<InputEvent> &p_event) override;
|
2017-10-31 17:23:25 +00:00
|
|
|
void set_stretch_shrink(int p_shrink);
|
|
|
|
int get_stretch_shrink() const;
|
2023-02-12 23:34:16 +00:00
|
|
|
void recalc_force_viewport_sizes();
|
2017-10-31 17:23:25 +00:00
|
|
|
|
2020-07-10 10:34:39 +00:00
|
|
|
virtual Size2 get_minimum_size() const override;
|
2016-10-05 04:26:35 +00:00
|
|
|
|
2021-11-08 20:53:41 +00:00
|
|
|
virtual Vector<int> get_allowed_size_flags_horizontal() const override;
|
|
|
|
virtual Vector<int> get_allowed_size_flags_vertical() const override;
|
|
|
|
|
2022-09-19 15:43:15 +00:00
|
|
|
PackedStringArray get_configuration_warnings() const override;
|
2022-03-26 18:33:54 +00:00
|
|
|
|
2020-04-01 18:28:09 +00:00
|
|
|
SubViewportContainer();
|
2016-10-05 04:26:35 +00:00
|
|
|
};
|
|
|
|
|
2022-07-23 21:41:51 +00:00
|
|
|
#endif // SUBVIEWPORT_CONTAINER_H
|