Arma Reforger Explorer 1.7.0.54
Arma Reforger Code Explorer by Zeroy - Thanks to MisterOutofTime
Loading...
Searching...
No Matches
SCR_VotingUIInfo.c
Go to the documentation of this file.
3{
4 [Attribute(desc: "Text used when starting a vote about something.")]
6
7 [Attribute("", desc: "Text used when canceling your vote about something.")]
9
10 [Attribute("", desc: "Text used when currently abstaining but want to revote to yes. Leave empty to use normal vote string")]
12
13 [Attribute("", desc: "When a vote is in progress and the player has not yet voted or abstained.")]
15
16 [Attribute(desc: "Text shown consistently when the vote is active. %1 is player that is voted for")]
18
19 [Attribute(desc: "Text shown with the name of the author of the vote")]
21
22 [Attribute(ENotification.UNKNOWN.ToString(), desc: "The Start notification id to which the voting type is linked. Leave UNKNOWN to not have a notification", uiwidget: UIWidgets.SearchComboBox, enumType: ENotification)]
24
25 [Attribute(ENotification.UNKNOWN.ToString(), desc: "The Succeed notification id to which the voting type is linked. Leave UNKNOWN to not have a notification", uiwidget: UIWidgets.SearchComboBox, enumType: ENotification)]
27
28 [Attribute(ENotification.UNKNOWN.ToString(), desc: "The Fail notification id to which the voting type is linked. Leave UNKNOWN to not have a notification", uiwidget: UIWidgets.SearchComboBox, enumType: ENotification)]
30
31 [Attribute(ENotification.UNKNOWN.ToString(), desc: "Notification that is meant to be shown as an alternative text for the result of the vote", uiwidget: UIWidgets.SearchComboBox, enumType: ENotification)]
33
34 [Attribute(ENotification.UNKNOWN.ToString(), desc: "Local notification send when player casts vote. Leave UNKNOWN to not have a notification", uiwidget: UIWidgets.SearchComboBox, enumType: ENotification)]
36
37 [Attribute(ENotification.UNKNOWN.ToString(), desc: "Local notification send when player abstains from voting. Leave UNKNOWN to not have a notification", uiwidget: UIWidgets.SearchComboBox, enumType: ENotification)]
39
40 //------------------------------------------------------------------------------------------------
43 {
45 return m_sStartVotingName;
46 else
47 return "ERROR MISSING START VOTE IN UIINFO";
48 }
49
50 //------------------------------------------------------------------------------------------------
53 {
56 else
57 return "ERROR MISSING CANCEL VOTE IN UIINFO";
58 }
59
60 //------------------------------------------------------------------------------------------------
63 {
65 return m_sRevoteName;
66 else
67 return GetName();
68 }
69
70 //------------------------------------------------------------------------------------------------
73 {
75 return m_sAbstainVoteName;
76 else
77 return "ERROR MISSING ABSTAIN VOTE IN UIINFO";
78 }
79
80 //------------------------------------------------------------------------------------------------
87
88 //------------------------------------------------------------------------------------------------
95
96 //------------------------------------------------------------------------------------------------
103
104 //------------------------------------------------------------------------------------------------
111
112 //------------------------------------------------------------------------------------------------
119
120 //------------------------------------------------------------------------------------------------
127
128 //------------------------------------------------------------------------------------------------
135
136 //------------------------------------------------------------------------------------------------
143}
ENotification
SCR_AIAnimation_Loitering BaseContainerProps
Commanding menu commanding element class.
SCR_PlayerCommandingConfigActionPair Managed SCR_BaseContainerLocalizedTitleField("m_sCommandName")
UI Textures DeployMenu Briefing conflict_HintBanner_1_UI desc
static bool IsEmptyOrWhiteSpace(string input)
LocalizedString GetName()
Definition SCR_UIName.c:31
ENotification GetVotingSucceedNotification()
ENotification m_eVoteAbstainedLocalNotification
ENotification m_iSucceededNotificationId
ENotification m_iStartNotificationId
ENotification GetVotingStartNotification()
string GetStartVotingName()
string GetCancelVotingName()
ENotification m_iFailedNotificationId
LocalizedString m_sRevoteName
LocalizedString m_sCancelVotingName
ENotification m_iAlternativeNotificationId
LocalizedString m_sStickyNotificationText
ENotification GetLocalVoteCastNotification()
ENotification m_eVoteCastedLocalNotification
LocalizedString m_sAbstainVoteName
LocalizedString m_sStartVotingName
LocalizedString m_sVoteAuthorText
ENotification GetVotingAlternativeNotification()
LocalizedString GetAuthorText()
string GetAbstainVoteName()
string GetStickyNotificationText()
ENotification GetLocalVoteAbstainedNotification()
ENotification GetVotingFailNotification()
SCR_FieldOfViewSettings Attribute