Arma Reforger Explorer 1.7.0.54
Arma Reforger Code Explorer by Zeroy - Thanks to MisterOutofTime
Loading...
Searching...
No Matches
SCR_BasicCodeFormatterSpellCheckConfig.c
Go to the documentation of this file.
1#ifdef WORKBENCH // this config is only related to a Workbench plugin (SCR_BasicCodeFormatterPlugin)
2[BaseContainerProps(configRoot: true)]
3class SCR_BasicCodeFormatterSpellCheckConfig
4{
5 [Attribute(desc: "Commonly misspelt words and their potential fix", category: "SpellCheck and Forbidden Words")]
6 ref array<ref SCR_BasicCodeFormatterSpellCheckConfig_ForbiddenWordEntry> m_aEntries;
7}
8
9[BaseContainerProps(), SCR_BaseContainerCustomTitleFields({ "m_sMistake", "m_sCorrection" }, "%1 → %2")]
10class SCR_BasicCodeFormatterSpellCheckConfig_ForbiddenWordEntry
11{
12 [Attribute(defvalue: "1", desc: "Whether this check should be considered or not")]
13 bool m_bEnabled;
14
15 [Attribute(defvalue: "misspelled", desc: "Word that should not be present; case-insensitive, only alphanumerical characters are processed\n- word is exact word search\n- word* is begins with search\n- *word* is middle of word search\n- *word is ends with search")]
16 string m_sMistake;
17
18 [Attribute(defvalue: "misspelt", desc: "Word(s) that should replace the mistake; can be left empty")]
19 string m_sCorrection;
20
21 [Attribute(defvalue: "", desc: "Explanation, if any")]
22 string m_sComment;
23}
24#endif
SCR_AIAnimation_Loitering BaseContainerProps
Commanding menu commanding element class.
UI Textures DeployMenu Briefing conflict_HintBanner_1_UI desc
ref array< ref SCR_VONEntry > m_aEntries
allow to define multiple fields (string or ResourceName) - up to 5 elements
Definition Attributes.c:74
SCR_FieldOfViewSettings Attribute