LuaEvents.AdditionalInformationDropdownGatherEntries (Civ5 API)

From Civilization Modding Wiki
Jump to navigationJump to search

This page is a part of the Lua and UI Reference (Civ5).


Function.png This function is a member of LuaEvents.

This is a static method, invoke it with a dot.


Usage

void LuaEvents.AdditionalInformationDropdownGatherEntries(table(int => table) additionalEntries)


Event Type

Regular event: you can subscribe to it through LuaEvents.AdditionalInformationDropdownGatherEntries.Add(<function handler>) or invoke it directly through LuaEvents.AdditionalInformationDropdownGatherEntries(<arguments list>).

Parameters

additionalEntries: No description available.


Source code samples

Redundant occurences have been removed.

DiploCorner.lua

UI/InGame/WorldView/DiploCorner.lua
0045
LuaEvents.AdditionalInformationDropdownGatherEntries(additionalEntries);


EspionageOverview.lua (G&K)

DLC/Expansion/UI/InGame/Popups/EspionageOverview.lua
1687
LuaEvents.AdditionalInformationDropdownGatherEntries.Add(function(entries)
1688
if (not Game.IsOption("GAMEOPTION_NO_ESPIONAGE")) then
1689
table.insert(entries, {
1690
text = Locale.Lookup("TXT_KEY_EO_TITLE"),
1691
call = function()
1692
Events.SerialEventGameMessagePopup{
1693
Type = ButtonPopupTypes.BUTTONPOPUP_ESPIONAGE_OVERVIEW,
1694
};
1695
end,
1696
});
1698
end
1699
end);


ReligionOverview.lua (G&K)

DLC/Expansion/UI/InGame/Popups/ReligionOverview.lua
0804
LuaEvents.AdditionalInformationDropdownGatherEntries.Add(function(entries)
0805
table.insert(entries, {
0806
text=Locale.Lookup("TXT_KEY_RELIGION_OVERVIEW"),
0807
call=function()
0808
Events.SerialEventGameMessagePopup{
0809
Type = ButtonPopupTypes.BUTTONPOPUP_RELIGION_OVERVIEW,
0810
};
0811
end,
0812
});
0813
end);



The initial version of this page was created by the Civ5 API Bot, see the Civ5 API Reference FAQ. Some of the texts come from the 2kgames' wiki and most of code samples are copyrighted to Firaxis.
Functions' signatures were either copied from the 2kgames' wiki, or infered from the Lua source files and the binaries. Errors are possible.
Contributors may find help in the Contributors guide to the Civ5 API.