/**************************************************************************/ /* flow_container.cpp */ /**************************************************************************/ /* 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. */ /**************************************************************************/ #include "flow_container.h" #include "scene/gui/texture_rect.h" #include "scene/theme/theme_db.h" struct _LineData { … }; void FlowContainer::_resort() { … } Size2 FlowContainer::get_minimum_size() const { … } Vector<int> FlowContainer::get_allowed_size_flags_horizontal() const { … } Vector<int> FlowContainer::get_allowed_size_flags_vertical() const { … } void FlowContainer::_notification(int p_what) { … } void FlowContainer::_validate_property(PropertyInfo &p_property) const { … } int FlowContainer::get_line_count() const { … } int FlowContainer::get_line_max_child_count() const { … } void FlowContainer::set_alignment(AlignmentMode p_alignment) { … } FlowContainer::AlignmentMode FlowContainer::get_alignment() const { … } void FlowContainer::set_last_wrap_alignment(LastWrapAlignmentMode p_last_wrap_alignment) { … } FlowContainer::LastWrapAlignmentMode FlowContainer::get_last_wrap_alignment() const { … } void FlowContainer::set_vertical(bool p_vertical) { … } bool FlowContainer::is_vertical() const { … } void FlowContainer::set_reverse_fill(bool p_reverse_fill) { … } bool FlowContainer::is_reverse_fill() const { … } FlowContainer::FlowContainer(bool p_vertical) { … } void FlowContainer::_bind_methods() { … }