2014-02-10 01:10:30 +00:00
|
|
|
/*************************************************************************/
|
|
|
|
/* panel_container.cpp */
|
|
|
|
/*************************************************************************/
|
|
|
|
/* 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
|
|
|
/*************************************************************************/
|
2019-01-01 11:53:14 +00:00
|
|
|
/* Copyright (c) 2007-2019 Juan Linietsky, Ariel Manzur. */
|
|
|
|
/* Copyright (c) 2014-2019 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
|
|
|
#include "panel_container.h"
|
|
|
|
|
|
|
|
Size2 PanelContainer::get_minimum_size() const {
|
|
|
|
|
2016-03-12 13:44:12 +00:00
|
|
|
Ref<StyleBox> style;
|
|
|
|
|
|
|
|
if (has_stylebox("panel"))
|
2017-03-05 15:44:50 +00:00
|
|
|
style = get_stylebox("panel");
|
2016-03-12 13:44:12 +00:00
|
|
|
else
|
2017-03-05 15:44:50 +00:00
|
|
|
style = get_stylebox("panel", "PanelContainer");
|
2014-02-10 01:10:30 +00:00
|
|
|
|
|
|
|
Size2 ms;
|
2017-03-05 15:44:50 +00:00
|
|
|
for (int i = 0; i < get_child_count(); i++) {
|
2014-02-10 01:10:30 +00:00
|
|
|
|
2017-08-24 20:58:51 +00:00
|
|
|
Control *c = Object::cast_to<Control>(get_child(i));
|
2017-01-13 13:45:50 +00:00
|
|
|
if (!c || !c->is_visible_in_tree())
|
2014-02-10 01:10:30 +00:00
|
|
|
continue;
|
|
|
|
if (c->is_set_as_toplevel())
|
|
|
|
continue;
|
|
|
|
|
|
|
|
Size2 minsize = c->get_combined_minimum_size();
|
2017-03-05 15:44:50 +00:00
|
|
|
ms.width = MAX(ms.width, minsize.width);
|
|
|
|
ms.height = MAX(ms.height, minsize.height);
|
2014-02-10 01:10:30 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
if (style.is_valid())
|
2017-03-05 15:44:50 +00:00
|
|
|
ms += style->get_minimum_size();
|
2014-02-10 01:10:30 +00:00
|
|
|
return ms;
|
|
|
|
}
|
|
|
|
|
|
|
|
void PanelContainer::_notification(int p_what) {
|
|
|
|
|
2017-03-05 15:44:50 +00:00
|
|
|
if (p_what == NOTIFICATION_DRAW) {
|
2014-02-10 01:10:30 +00:00
|
|
|
|
|
|
|
RID ci = get_canvas_item();
|
|
|
|
Ref<StyleBox> style;
|
|
|
|
|
|
|
|
if (has_stylebox("panel"))
|
2017-03-05 15:44:50 +00:00
|
|
|
style = get_stylebox("panel");
|
2014-02-10 01:10:30 +00:00
|
|
|
else
|
2017-03-05 15:44:50 +00:00
|
|
|
style = get_stylebox("panel", "PanelContainer");
|
2014-02-10 01:10:30 +00:00
|
|
|
|
2017-03-05 15:44:50 +00:00
|
|
|
style->draw(ci, Rect2(Point2(), get_size()));
|
2014-02-10 01:10:30 +00:00
|
|
|
}
|
|
|
|
|
2017-03-05 15:44:50 +00:00
|
|
|
if (p_what == NOTIFICATION_SORT_CHILDREN) {
|
2014-02-10 01:10:30 +00:00
|
|
|
|
|
|
|
Ref<StyleBox> style;
|
|
|
|
|
|
|
|
if (has_stylebox("panel"))
|
2017-03-05 15:44:50 +00:00
|
|
|
style = get_stylebox("panel");
|
2014-02-10 01:10:30 +00:00
|
|
|
else
|
2017-03-05 15:44:50 +00:00
|
|
|
style = get_stylebox("panel", "PanelContainer");
|
2014-02-10 01:10:30 +00:00
|
|
|
|
|
|
|
Size2 size = get_size();
|
|
|
|
Point2 ofs;
|
|
|
|
if (style.is_valid()) {
|
2017-03-05 15:44:50 +00:00
|
|
|
size -= style->get_minimum_size();
|
|
|
|
ofs += style->get_offset();
|
2014-02-10 01:10:30 +00:00
|
|
|
}
|
|
|
|
|
2017-03-05 15:44:50 +00:00
|
|
|
for (int i = 0; i < get_child_count(); i++) {
|
2014-02-10 01:10:30 +00:00
|
|
|
|
2017-08-24 20:58:51 +00:00
|
|
|
Control *c = Object::cast_to<Control>(get_child(i));
|
2017-01-13 13:45:50 +00:00
|
|
|
if (!c || !c->is_visible_in_tree())
|
2014-02-10 01:10:30 +00:00
|
|
|
continue;
|
|
|
|
if (c->is_set_as_toplevel())
|
|
|
|
continue;
|
|
|
|
|
2017-03-05 15:44:50 +00:00
|
|
|
fit_child_in_rect(c, Rect2(ofs, size));
|
2014-02-10 01:10:30 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2017-03-05 15:44:50 +00:00
|
|
|
PanelContainer::PanelContainer() {
|
2014-02-10 01:10:30 +00:00
|
|
|
}
|