2025-06-06 15:38:09 -07:00
|
|
|
/* Copyright (C) 2025 Wildfire Games.
|
2023-12-02 16:30:12 -08:00
|
|
|
* This file is part of 0 A.D.
|
2021-04-09 11:01:47 -07:00
|
|
|
*
|
2023-12-02 16:30:12 -08:00
|
|
|
* 0 A.D. is free software: you can redistribute it and/or modify
|
2021-04-09 11:01:47 -07:00
|
|
|
* 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.
|
|
|
|
|
*
|
2023-12-02 16:30:12 -08:00
|
|
|
* 0 A.D. is distributed in the hope that it will be useful,
|
2021-04-09 11:01:47 -07:00
|
|
|
* 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
|
2023-12-02 16:30:12 -08:00
|
|
|
* along with 0 A.D. If not, see <http://www.gnu.org/licenses/>.
|
2021-04-09 11:01:47 -07:00
|
|
|
*/
|
|
|
|
|
|
|
|
|
|
#include "precompiled.h"
|
|
|
|
|
|
|
|
|
|
#include "JSInterface_GUIProxy_impl.h"
|
|
|
|
|
|
|
|
|
|
#include "gui/ObjectBases/IGUIObject.h"
|
|
|
|
|
#include "gui/ObjectTypes/CButton.h"
|
|
|
|
|
#include "gui/ObjectTypes/CList.h"
|
2021-06-05 10:37:18 -07:00
|
|
|
#include "gui/ObjectTypes/CMiniMap.h"
|
2024-10-19 11:17:30 -07:00
|
|
|
#include "gui/ObjectTypes/CScrollPanel.h"
|
2021-04-09 11:01:47 -07:00
|
|
|
#include "gui/ObjectTypes/CText.h"
|
|
|
|
|
|
|
|
|
|
// 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::GetComputedSize>(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");
|
2025-06-06 15:38:09 -07:00
|
|
|
CreateFunction<&CButton::GetPreferredTextSize>(rq, cache, "getPreferredTextSize");
|
2021-04-09 11:01:47 -07:00
|
|
|
}
|
|
|
|
|
DECLARE_GUIPROXY(CButton);
|
|
|
|
|
|
|
|
|
|
// CText
|
|
|
|
|
template<> void JSI_GUIProxy<CText>::CreateFunctions(const ScriptRequest& rq, GUIProxyProps* cache)
|
|
|
|
|
{
|
|
|
|
|
CreateFunction<&CText::GetTextSize>(rq, cache, "getTextSize");
|
2025-06-06 15:38:09 -07:00
|
|
|
CreateFunction<&CText::GetPreferredTextSize>(rq, cache, "getPreferredTextSize");
|
2021-04-09 11:01:47 -07:00
|
|
|
}
|
|
|
|
|
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);
|
2021-06-05 10:37:18 -07:00
|
|
|
|
|
|
|
|
// CMiniMap
|
|
|
|
|
template<> void JSI_GUIProxy<CMiniMap>::CreateFunctions(const ScriptRequest& rq, GUIProxyProps* cache)
|
|
|
|
|
{
|
|
|
|
|
CreateFunction<&CMiniMap::Flare>(rq, cache, "flare");
|
|
|
|
|
}
|
|
|
|
|
DECLARE_GUIPROXY(CMiniMap);
|
2024-10-19 11:17:30 -07:00
|
|
|
|
|
|
|
|
// CScrollPanel
|
|
|
|
|
template<> void JSI_GUIProxy<CScrollPanel>::CreateFunctions(const ScriptRequest& rq, GUIProxyProps* cache)
|
|
|
|
|
{
|
|
|
|
|
CreateFunction<&CScrollPanel::ResetScrollPosition>(rq, cache, "resetScrollPosition");
|
|
|
|
|
}
|
|
|
|
|
DECLARE_GUIPROXY(CScrollPanel);
|