Arma Reforger Explorer 1.7.0.54
Arma Reforger Code Explorer by Zeroy - Thanks to MisterOutofTime
Loading...
Searching...
No Matches
SCR_BIKIExportBasePlugin.c
Go to the documentation of this file.
1#ifdef WORKBENCH
2class SCR_BIKIExportBasePlugin : WorkbenchPlugin
3{
4 //------------------------------------------------------------------------------------------------
5 override void Run()
6 {
7 SCR_WorkbenchHelper.PrintDialog("The Run method has not been overridden", "BIKI Export Base", LogLevel.ERROR);
8 }
9
10 //------------------------------------------------------------------------------------------------
11 protected void ShowResult(string result)
12 {
13 Workbench.ScriptDialog(
14 "BIKI-formatted result",
15 "Use the \"Copy to Clipboard\" button to grab the entire result."
16 + "\nIf you want to manually select and copy parts of the result, EXPAND the field below then copy/paste its full content;"
17 + " copying from the inline field may truncate big data.",
18 new SCR_TextResultWorkbenchDialog(result));
19 }
20
21 //------------------------------------------------------------------------------------------------
22 [ButtonAttribute("OK", true)]
23 protected int ButtonOK()
24 {
25 return 1;
26 }
27
28 //------------------------------------------------------------------------------------------------
29 [ButtonAttribute("Cancel")]
30 protected int ButtonCancel()
31 {
32 return 0;
33 }
34}
35#endif // WORKBENCH
override void Run()
bool ButtonCancel()
bool ButtonOK()
class WorkbenchDialog_AbortRetryIgnore ButtonAttribute("OK", true)
LogLevel
Enum with severity of the logging message.
Definition LogLevel.c:14