mirror of
https://gitea.wildfiregames.com/0ad/0ad
synced 2026-06-16 13:23:56 -07:00
Some checks failed
checkrefs / lfscheck (push) Has been cancelled
checkrefs / checkrefs (push) Has been cancelled
lint / cppcheck (push) Has been cancelled
lint / copyright (push) Has been cancelled
lint / jenkinsfiles (push) Has been cancelled
pre-commit / build (push) Has been cancelled
This shifts the responsibility of updating the actual size more towards IGUIObject, and enables only ever doing it when the value is actually needed. This allows us to remove the delay of size changed notifications, since the value is now already recalculated as infrequently as possible anyways. All of that ensures that the actual size (returned by GetActualSize) is always up-to-date e.g. when reading it from the parent, which was previously broken. Fixes #8200
92 lines
3.1 KiB
C++
92 lines
3.1 KiB
C++
/* Copyright (C) 2026 Wildfire Games.
|
|
* This file is part of 0 A.D.
|
|
*
|
|
* 0 A.D. is free software: you can redistribute it and/or modify
|
|
* it under the terms of the GNU General Public License as published by
|
|
* the Free Software Foundation, either version 2 of the License, or
|
|
* (at your option) any later version.
|
|
*
|
|
* 0 A.D. is distributed in the hope that it will be useful,
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
* GNU General Public License for more details.
|
|
*
|
|
* You should have received a copy of the GNU General Public License
|
|
* along with 0 A.D. If not, see <http://www.gnu.org/licenses/>.
|
|
*/
|
|
|
|
#include "precompiled.h"
|
|
|
|
#include "JSInterface_GUIProxy.h"
|
|
#include "JSInterface_GUIProxy_impl.h"
|
|
|
|
#include "gui/ObjectBases/IGUIObject.h"
|
|
#include "gui/ObjectTypes/CButton.h"
|
|
#include "gui/ObjectTypes/CDropDown.h"
|
|
#include "gui/ObjectTypes/CList.h"
|
|
#include "gui/ObjectTypes/CMiniMap.h"
|
|
#include "gui/ObjectTypes/CScrollPanel.h"
|
|
#include "gui/ObjectTypes/CText.h"
|
|
|
|
#include <string>
|
|
|
|
class CGUIString;
|
|
class ScriptRequest;
|
|
|
|
// Called for every specialization - adds the common interface.
|
|
template<>
|
|
void JSI_GUIProxy<IGUIObject>::CreateFunctions(const ScriptRequest& rq, GUIProxyProps* cache)
|
|
{
|
|
CreateFunction<&IGUIObject::GetName>(rq, cache, "toString");
|
|
CreateFunction<&IGUIObject::GetName>(rq, cache, "toSource");
|
|
CreateFunction<&IGUIObject::SetFocus>(rq, cache, "focus");
|
|
CreateFunction<&IGUIObject::ReleaseFocus>(rq, cache, "blur");
|
|
CreateFunction<&IGUIObject::GetActualSize>(rq, cache, "getComputedSize");
|
|
}
|
|
DECLARE_GUIPROXY(IGUIObject);
|
|
|
|
// Implement derived types below.
|
|
|
|
// CButton
|
|
template<> void JSI_GUIProxy<CButton>::CreateFunctions(const ScriptRequest& rq, GUIProxyProps* cache)
|
|
{
|
|
CreateFunction<&CButton::GetTextSize>(rq, cache, "getTextSize");
|
|
CreateFunction<&CButton::GetPreferredTextSize>(rq, cache, "getPreferredTextSize");
|
|
}
|
|
DECLARE_GUIPROXY(CButton);
|
|
|
|
// CText
|
|
template<> void JSI_GUIProxy<CText>::CreateFunctions(const ScriptRequest& rq, GUIProxyProps* cache)
|
|
{
|
|
CreateFunction<&CText::GetTextSize>(rq, cache, "getTextSize");
|
|
CreateFunction<&CText::GetPreferredTextSize>(rq, cache, "getPreferredTextSize");
|
|
}
|
|
DECLARE_GUIPROXY(CText);
|
|
|
|
// CList
|
|
template<> void JSI_GUIProxy<CList>::CreateFunctions(const ScriptRequest& rq, GUIProxyProps* cache)
|
|
{
|
|
CreateFunction<static_cast<void(CList::*)(const CGUIString&)>(&CList::AddItem)>(rq, cache, "addItem");
|
|
}
|
|
DECLARE_GUIPROXY(CList);
|
|
|
|
// CDropDown
|
|
template<> void JSI_GUIProxy<CDropDown>::CreateFunctions(const ScriptRequest& rq, GUIProxyProps* cache)
|
|
{
|
|
CreateFunction<&CDropDown::GetPreferredHeaderTextSize>(rq, cache, "getPreferredHeaderTextSize");
|
|
}
|
|
DECLARE_GUIPROXY(CDropDown);
|
|
|
|
// CMiniMap
|
|
template<> void JSI_GUIProxy<CMiniMap>::CreateFunctions(const ScriptRequest& rq, GUIProxyProps* cache)
|
|
{
|
|
CreateFunction<&CMiniMap::Flare>(rq, cache, "flare");
|
|
}
|
|
DECLARE_GUIPROXY(CMiniMap);
|
|
|
|
// CScrollPanel
|
|
template<> void JSI_GUIProxy<CScrollPanel>::CreateFunctions(const ScriptRequest& rq, GUIProxyProps* cache)
|
|
{
|
|
CreateFunction<&CScrollPanel::ResetScrollPosition>(rq, cache, "resetScrollPosition");
|
|
}
|
|
DECLARE_GUIPROXY(CScrollPanel);
|