2011-08-28 15:17:58 +02:00
|
|
|
/*
|
2013-01-08 19:21:54 +01:00
|
|
|
* Copyright (c) 2010-2013 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 "uilayout.h"
|
2012-03-25 19:10:19 +02:00
|
|
|
#include "uiwidget.h"
|
2012-01-08 23:32:55 +01:00
|
|
|
|
|
|
|
#include <framework/core/eventdispatcher.h>
|
|
|
|
|
|
|
|
void UILayout::update()
|
|
|
|
{
|
2012-04-09 22:52:39 +02:00
|
|
|
//logTraceCounter();
|
2012-07-29 05:34:40 +02:00
|
|
|
if(!m_parentWidget)
|
2012-04-09 23:44:33 +02:00
|
|
|
return;
|
|
|
|
|
|
|
|
/*
|
|
|
|
UIWidgetPtr parent = parentWidget;
|
|
|
|
do {
|
|
|
|
UILayoutPtr ownerLayout = parent->getLayout();
|
|
|
|
if(ownerLayout && ownerLayout->isUpdateDisabled())
|
|
|
|
return;
|
|
|
|
parent = parent->getParent();
|
|
|
|
} while(parent);
|
|
|
|
*/
|
|
|
|
|
2012-01-10 23:13:40 +01:00
|
|
|
if(m_updateDisabled)
|
|
|
|
return;
|
|
|
|
|
2012-03-25 19:10:19 +02:00
|
|
|
if(m_updating) {
|
|
|
|
updateLater();
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2012-01-08 23:32:55 +01:00
|
|
|
m_updating = true;
|
|
|
|
internalUpdate();
|
2012-07-29 05:34:40 +02:00
|
|
|
m_parentWidget->onLayoutUpdate();
|
2012-01-08 23:32:55 +01:00
|
|
|
m_updating = false;
|
|
|
|
}
|
|
|
|
|
|
|
|
void UILayout::updateLater()
|
|
|
|
{
|
2012-01-10 23:13:40 +01:00
|
|
|
if(m_updateDisabled || m_updateScheduled)
|
2012-01-08 23:32:55 +01:00
|
|
|
return;
|
|
|
|
|
2012-01-09 06:23:39 +01:00
|
|
|
if(!getParentWidget())
|
|
|
|
return;
|
|
|
|
|
2012-08-01 09:49:09 +02:00
|
|
|
auto self = static_self_cast<UILayout>();
|
2012-06-26 00:13:30 +02:00
|
|
|
g_dispatcher.addEvent([self] {
|
2012-01-08 23:32:55 +01:00
|
|
|
self->m_updateScheduled = false;
|
|
|
|
self->update();
|
|
|
|
});
|
|
|
|
m_updateScheduled = true;
|
|
|
|
}
|