Arma Reforger Explorer
1.7.0.54
Arma Reforger Code Explorer by Zeroy - Thanks to MisterOutofTime
Toggle main menu visibility
Loading...
Searching...
No Matches
SCR_BIKIExportBasePlugin.c
Go to the documentation of this file.
1
#ifdef WORKBENCH
2
class
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
Run
override void Run()
Definition
SCR_ImageSetGenerator.c:297
ButtonCancel
bool ButtonCancel()
Definition
SCR_ImageSetGenerator.c:314
ButtonOK
bool ButtonOK()
Definition
SCR_ImageSetGenerator.c:307
ButtonAttribute
class WorkbenchDialog_AbortRetryIgnore ButtonAttribute("OK", true)
Definition
WorkbenchDialogs.c:30
LogLevel
LogLevel
Enum with severity of the logging message.
Definition
LogLevel.c:14
scripts
WorkbenchGame
ResourceManager
BIKI
SCR_BIKIExportBasePlugin.c
Generated by
1.17.0