2011-08-28 15:17:58 +02:00
|
|
|
/*
|
2012-01-02 17:58:37 +01:00
|
|
|
* Copyright (c) 2010-2012 OTClient <https://github.com/edubart/otclient>
|
2011-08-28 15:17:58 +02: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.
|
|
|
|
*/
|
|
|
|
|
2011-08-26 17:06:52 +02:00
|
|
|
#include "uiverticallayout.h"
|
|
|
|
#include "uiwidget.h"
|
2012-01-08 23:32:55 +01:00
|
|
|
#include <framework/core/eventdispatcher.h>
|
2011-08-26 17:06:52 +02:00
|
|
|
|
2011-11-04 00:34:32 +01:00
|
|
|
void UIVerticalLayout::applyStyle(const OTMLNodePtr& styleNode)
|
|
|
|
{
|
2012-01-15 14:57:42 +01:00
|
|
|
UIBoxLayout::applyStyle(styleNode);
|
2011-11-04 00:34:32 +01:00
|
|
|
|
|
|
|
for(const OTMLNodePtr& node : styleNode->children()) {
|
2011-11-17 22:41:02 +01:00
|
|
|
if(node->tag() == "align-bottom")
|
2012-01-02 21:46:40 +01:00
|
|
|
setAlignBottom(node->value<bool>());
|
2011-11-04 00:34:32 +01:00
|
|
|
}
|
2011-08-26 17:06:52 +02:00
|
|
|
}
|
|
|
|
|
2012-01-08 23:32:55 +01:00
|
|
|
void UIVerticalLayout::internalUpdate()
|
2011-08-26 17:06:52 +02:00
|
|
|
{
|
|
|
|
UIWidgetPtr parentWidget = getParentWidget();
|
2012-01-23 14:47:15 +01:00
|
|
|
if(!parentWidget)
|
|
|
|
return;
|
|
|
|
|
2011-08-26 17:06:52 +02:00
|
|
|
UIWidgetList widgets = parentWidget->getChildren();
|
2011-11-03 13:48:48 +01:00
|
|
|
|
2011-11-04 00:34:32 +01:00
|
|
|
if(m_alignBottom)
|
|
|
|
std::reverse(widgets.begin(), widgets.end());
|
|
|
|
|
2012-03-25 19:10:19 +02:00
|
|
|
Rect clippingRect = parentWidget->getClippingRect();
|
|
|
|
Point pos = (m_alignBottom) ? clippingRect.bottomLeft() : clippingRect.topLeft();
|
2012-01-02 21:46:40 +01:00
|
|
|
int prefferedHeight = 0;
|
|
|
|
int gap;
|
2011-11-04 00:34:32 +01:00
|
|
|
|
2011-08-26 17:06:52 +02:00
|
|
|
for(const UIWidgetPtr& widget : widgets) {
|
2011-11-14 09:13:48 +01:00
|
|
|
if(!widget->isExplicitlyVisible())
|
|
|
|
continue;
|
2011-11-14 09:46:27 +01:00
|
|
|
|
2011-08-26 17:06:52 +02:00
|
|
|
Size size = widget->getSize();
|
2012-01-02 21:46:40 +01:00
|
|
|
|
|
|
|
gap = (m_alignBottom) ? -(widget->getMarginBottom()+widget->getHeight()) : widget->getMarginTop();
|
|
|
|
pos.y += gap;
|
|
|
|
prefferedHeight += gap;
|
|
|
|
|
2012-01-10 23:13:40 +01:00
|
|
|
if(widget->isFixedSize()) {
|
2012-01-02 21:46:40 +01:00
|
|
|
// center it
|
2012-03-25 19:10:19 +02:00
|
|
|
pos.x = clippingRect.left() + (clippingRect.width() - (widget->getMarginLeft() + widget->getWidth() + widget->getMarginRight()))/2;
|
2011-08-26 17:06:52 +02:00
|
|
|
pos.x = std::max(pos.x, parentWidget->getX());
|
|
|
|
} else {
|
2012-01-02 21:46:40 +01:00
|
|
|
// expand width
|
2012-03-25 19:10:19 +02:00
|
|
|
size.setWidth(clippingRect.width() - (widget->getMarginLeft() + widget->getMarginRight()));
|
|
|
|
pos.x = clippingRect.left() + (clippingRect.width() - size.width())/2;
|
2011-08-26 17:06:52 +02:00
|
|
|
}
|
2012-01-02 21:46:40 +01:00
|
|
|
|
2012-03-26 15:34:43 +02:00
|
|
|
widget->setRect(Rect(pos - parentWidget->getVirtualOffset(), size));
|
2012-01-02 21:46:40 +01:00
|
|
|
|
|
|
|
gap = (m_alignBottom) ? -widget->getMarginTop() : (widget->getHeight() + widget->getMarginBottom());
|
|
|
|
gap += m_spacing;
|
|
|
|
pos.y += gap;
|
|
|
|
prefferedHeight += gap;
|
2011-08-26 17:06:52 +02:00
|
|
|
}
|
2012-01-02 21:46:40 +01:00
|
|
|
|
|
|
|
prefferedHeight -= m_spacing;
|
2012-01-09 19:45:28 +01:00
|
|
|
prefferedHeight += parentWidget->getPaddingTop() + parentWidget->getPaddingBottom();
|
2012-01-02 21:46:40 +01:00
|
|
|
|
2012-01-15 14:57:42 +01:00
|
|
|
if(m_fitChildren && prefferedHeight != parentWidget->getHeight()) {
|
2012-01-08 23:32:55 +01:00
|
|
|
// must set the preffered width later
|
2012-03-14 19:45:15 +01:00
|
|
|
g_eventDispatcher.addEvent([=] {
|
2012-01-08 23:32:55 +01:00
|
|
|
parentWidget->setHeight(prefferedHeight);
|
|
|
|
});
|
|
|
|
}
|
2012-01-15 14:57:42 +01:00
|
|
|
}
|