|
@@ -14,6 +14,7 @@ CONST
|
|
DefaultShowLineNumbers = FALSE;
|
|
DefaultShowLineNumbers = FALSE;
|
|
DefaultIndicateTabs = FALSE;
|
|
DefaultIndicateTabs = FALSE;
|
|
DefaultCurrentLineColor = 0;
|
|
DefaultCurrentLineColor = 0;
|
|
|
|
+ DefaultBackgroundColor = WMGraphics.White;
|
|
DefaultCompilerName = \"Fox"\;
|
|
DefaultCompilerName = \"Fox"\;
|
|
DefaultCompilerCaption = \"Compile"\;
|
|
DefaultCompilerCaption = \"Compile"\;
|
|
DefaultCompilerOptions = \"-b=AMD --warnings"\;
|
|
DefaultCompilerOptions = \"-b=AMD --warnings"\;
|
|
@@ -66,6 +67,7 @@ TYPE
|
|
showLineNumbers: BOOLEAN;
|
|
showLineNumbers: BOOLEAN;
|
|
indicateTabs: BOOLEAN;
|
|
indicateTabs: BOOLEAN;
|
|
currentLineColor: LONGINT;
|
|
currentLineColor: LONGINT;
|
|
|
|
+ backgroundColor: LONGINT;
|
|
defaultCompilerOptions: CompilerOptions;
|
|
defaultCompilerOptions: CompilerOptions;
|
|
defaultCompilerSettings: CompilerSettings;
|
|
defaultCompilerSettings: CompilerSettings;
|
|
compilers: ARRAY MaxNbrOfCompilers OF CompilerSettings;
|
|
compilers: ARRAY MaxNbrOfCompilers OF CompilerSettings;
|
|
@@ -282,6 +284,7 @@ VAR
|
|
StrScratchPanel, StrPETPanel: Strings.String;
|
|
StrScratchPanel, StrPETPanel: Strings.String;
|
|
timeout: BOOLEAN;
|
|
timeout: BOOLEAN;
|
|
|
|
|
|
|
|
+ PROCEDURE ^ FindOpenedFile*(CONST filename: ARRAY OF CHAR): BOOLEAN;
|
|
PROCEDURE ^ Open*(context: Commands.Context);
|
|
PROCEDURE ^ Open*(context: Commands.Context);
|
|
PROCEDURE ^ OpenState*(context: Commands.Context);
|
|
PROCEDURE ^ OpenState*(context: Commands.Context);
|
|
PROCEDURE ^ Restore*(context: WMRestorable.Context);
|
|
PROCEDURE ^ Restore*(context: WMRestorable.Context);
|