2012-01-12 20:20:18 +01:00
|
|
|
/*
|
2013-01-08 19:21:54 +01:00
|
|
|
* Copyright (c) 2010-2013 OTClient <https://github.com/edubart/otclient>
|
2012-01-12 20:20:18 +01: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.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include "uigridlayout.h"
|
|
|
|
#include "uiwidget.h"
|
|
|
|
|
2012-04-03 01:09:47 +02:00
|
|
|
#include <framework/core/eventdispatcher.h>
|
|
|
|
|
2012-01-12 20:20:18 +01:00
|
|
|
UIGridLayout::UIGridLayout(UIWidgetPtr parentWidget): UILayout(parentWidget)
|
|
|
|
{
|
|
|
|
m_cellSize = Size(16,16);
|
|
|
|
m_cellSpacing = 0;
|
|
|
|
m_numColumns = 1;
|
2012-04-03 01:09:47 +02:00
|
|
|
m_numLines = 0;
|
2012-01-12 20:20:18 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
void UIGridLayout::applyStyle(const OTMLNodePtr& styleNode)
|
|
|
|
{
|
|
|
|
UILayout::applyStyle(styleNode);
|
|
|
|
|
|
|
|
for(const OTMLNodePtr& node : styleNode->children()) {
|
|
|
|
if(node->tag() == "cell-size")
|
|
|
|
setCellSize(node->value<Size>());
|
|
|
|
else if(node->tag() == "cell-width")
|
|
|
|
setCellWidth(node->value<int>());
|
|
|
|
else if(node->tag() == "cell-height")
|
|
|
|
setCellHeight(node->value<int>());
|
|
|
|
else if(node->tag() == "cell-spacing")
|
|
|
|
setCellSpacing(node->value<int>());
|
|
|
|
else if(node->tag() == "num-columns")
|
|
|
|
setNumColumns(node->value<int>());
|
|
|
|
else if(node->tag() == "num-lines")
|
|
|
|
setNumLines(node->value<int>());
|
2012-04-03 01:09:47 +02:00
|
|
|
else if(node->tag() == "fit-children")
|
|
|
|
setFitChildren(node->value<bool>());
|
|
|
|
else if(node->tag() == "auto-spacing")
|
|
|
|
setAutoSpacing(node->value<bool>());
|
|
|
|
else if(node->tag() == "flow")
|
|
|
|
setFlow(node->value<bool>());
|
2012-01-12 20:20:18 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void UIGridLayout::removeWidget(const UIWidgetPtr& widget)
|
|
|
|
{
|
|
|
|
update();
|
|
|
|
}
|
|
|
|
|
|
|
|
void UIGridLayout::addWidget(const UIWidgetPtr& widget)
|
|
|
|
{
|
|
|
|
update();
|
|
|
|
}
|
|
|
|
|
2012-03-27 20:14:35 +02:00
|
|
|
bool UIGridLayout::internalUpdate()
|
2012-01-12 20:20:18 +01:00
|
|
|
{
|
2012-03-27 20:14:35 +02:00
|
|
|
bool changed = false;
|
2012-01-12 20:20:18 +01:00
|
|
|
UIWidgetPtr parentWidget = getParentWidget();
|
2012-04-09 22:52:39 +02:00
|
|
|
if(!parentWidget)
|
|
|
|
return false;
|
|
|
|
|
2012-01-12 20:20:18 +01:00
|
|
|
UIWidgetList widgets = parentWidget->getChildren();
|
|
|
|
|
2012-06-02 02:38:26 +02:00
|
|
|
Rect clippingRect = parentWidget->getPaddingRect();
|
2012-03-25 19:10:19 +02:00
|
|
|
Point topLeft = clippingRect.topLeft();
|
2012-01-12 20:20:18 +01:00
|
|
|
|
2012-04-03 01:09:47 +02:00
|
|
|
int numColumns = m_numColumns;
|
2012-08-18 07:04:01 +02:00
|
|
|
if(m_flow && m_cellSize.width() > 0) {
|
2013-01-08 21:01:47 +01:00
|
|
|
numColumns = (clippingRect.width() + m_cellSpacing) / (m_cellSize.width() + m_cellSpacing);
|
2012-08-18 07:04:01 +02:00
|
|
|
if(numColumns > 0) {
|
|
|
|
m_numColumns = numColumns;
|
|
|
|
m_numLines = std::ceil(widgets.size() / (float)numColumns);
|
|
|
|
}
|
|
|
|
}
|
2012-04-03 01:09:47 +02:00
|
|
|
|
2012-06-03 21:42:22 +02:00
|
|
|
if(numColumns <= 0)
|
|
|
|
numColumns = 1;
|
|
|
|
|
2012-04-03 01:09:47 +02:00
|
|
|
int cellSpacing = m_cellSpacing;
|
|
|
|
if(m_autoSpacing && numColumns > 1)
|
|
|
|
cellSpacing = (clippingRect.width() - numColumns * m_cellSize.width()) / (numColumns - 1);
|
|
|
|
|
2012-01-12 20:20:18 +01:00
|
|
|
int index = 0;
|
2012-04-03 01:09:47 +02:00
|
|
|
int preferredHeight = 0;
|
2012-01-12 20:20:18 +01:00
|
|
|
for(const UIWidgetPtr& widget : widgets) {
|
|
|
|
if(!widget->isExplicitlyVisible())
|
|
|
|
continue;
|
|
|
|
|
2012-04-03 01:09:47 +02:00
|
|
|
int line = index / numColumns;
|
|
|
|
int column = index % numColumns;
|
|
|
|
Point virtualPos = Point(column * (m_cellSize.width() + cellSpacing), line * (m_cellSize.height() + cellSpacing));
|
|
|
|
preferredHeight = virtualPos.y + m_cellSize.height();
|
|
|
|
Point pos = topLeft + virtualPos - parentWidget->getVirtualOffset();
|
2012-04-30 18:40:12 +02:00
|
|
|
Rect dest = Rect(pos, m_cellSize);
|
|
|
|
dest.expand(-widget->getMarginTop(), -widget->getMarginRight(), -widget->getMarginBottom(), -widget->getMarginLeft());
|
2012-01-12 20:20:18 +01:00
|
|
|
|
2012-04-30 18:40:12 +02:00
|
|
|
if(widget->setRect(dest))
|
2012-03-27 20:14:35 +02:00
|
|
|
changed = true;
|
2012-01-12 20:20:18 +01:00
|
|
|
|
|
|
|
index++;
|
|
|
|
|
2012-04-03 01:09:47 +02:00
|
|
|
if(m_numLines > 0 && index >= m_numColumns * m_numLines)
|
2012-01-12 20:20:18 +01:00
|
|
|
break;
|
|
|
|
}
|
2012-04-03 01:09:47 +02:00
|
|
|
preferredHeight += parentWidget->getPaddingTop() + parentWidget->getPaddingBottom();
|
|
|
|
|
|
|
|
if(m_fitChildren && preferredHeight != parentWidget->getHeight()) {
|
|
|
|
// must set the preferred height later
|
2012-06-26 00:13:30 +02:00
|
|
|
g_dispatcher.addEvent([=] {
|
2012-04-03 01:09:47 +02:00
|
|
|
parentWidget->setHeight(preferredHeight);
|
|
|
|
});
|
|
|
|
}
|
2012-03-27 20:14:35 +02:00
|
|
|
|
|
|
|
return changed;
|
2012-01-12 20:20:18 +01:00
|
|
|
}
|