@magic-xpa/gui 4.1201.0 → 4.1202.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +7 -7
- package/fesm2022/magic-xpa-gui.mjs +6 -0
- package/fesm2022/magic-xpa-gui.mjs.map +1 -1
- package/package.json +5 -5
- package/types/magic-xpa-gui.d.ts +3059 -0
- package/index.d.ts +0 -73
- package/src/Commands.d.ts +0 -40
- package/src/Events.d.ts +0 -157
- package/src/EventsProcessor.d.ts +0 -13
- package/src/FocusManager.d.ts +0 -8
- package/src/GuiConstants.d.ts +0 -65
- package/src/GuiEnums.d.ts +0 -286
- package/src/GuiEnvironment.d.ts +0 -4
- package/src/IFlowMonitorQueue.d.ts +0 -3
- package/src/Manager.d.ts +0 -26
- package/src/UIBridge.d.ts +0 -16
- package/src/env/IEnvironment.d.ts +0 -31
- package/src/gui/ControlBase.d.ts +0 -4
- package/src/gui/GuiMgControl.d.ts +0 -39
- package/src/gui/GuiMgForm.d.ts +0 -3
- package/src/gui/KeyboardItem.d.ts +0 -18
- package/src/gui/LastFocusedVal.d.ts +0 -7
- package/src/gui/MgValue.d.ts +0 -15
- package/src/gui/PropParentInterface.d.ts +0 -13
- package/src/gui/low/DialogHandler.d.ts +0 -4
- package/src/gui/low/GuiCommand.d.ts +0 -37
- package/src/gui/low/GuiCommandQueue.d.ts +0 -13
- package/src/gui/low/GuiInteractive.d.ts +0 -55
- package/src/gui/low/Style.d.ts +0 -19
- package/src/management/RuntimeContextBase.d.ts +0 -23
- package/src/management/data/BlobType.d.ts +0 -29
- package/src/management/data/DcValues.d.ts +0 -33
- package/src/management/data/DcValuesBuilderBase.d.ts +0 -17
- package/src/management/data/FieldDef.d.ts +0 -53
- package/src/management/data/FieldsTable.d.ts +0 -16
- package/src/management/data/GuiDataViewBase.d.ts +0 -27
- package/src/management/data/GuiFieldBase.d.ts +0 -17
- package/src/management/data/IRecord.d.ts +0 -12
- package/src/management/data/IReferencedObject.d.ts +0 -5
- package/src/management/data/NUM_TYPE.d.ts +0 -103
- package/src/management/data/ObjectReferenceBase.d.ts +0 -16
- package/src/management/data/ObjectReferencesCollection.d.ts +0 -10
- package/src/management/data/RecordUtils.d.ts +0 -21
- package/src/management/data/VectorType.d.ts +0 -52
- package/src/management/data/VectorTypeBase.d.ts +0 -8
- package/src/management/events/IActionManager.d.ts +0 -7
- package/src/management/events/IGuiEventsManager.d.ts +0 -20
- package/src/management/exp/ExpressionInterface.d.ts +0 -243
- package/src/management/exp/GuiExpressionEvaluator.d.ts +0 -47
- package/src/management/gui/ControlTable.d.ts +0 -28
- package/src/management/gui/DisplayConvertor.d.ts +0 -103
- package/src/management/gui/FieldValidator.d.ts +0 -35
- package/src/management/gui/GuiControlPropertyAdapter.d.ts +0 -40
- package/src/management/gui/GuiFormPropertyAdapter.d.ts +0 -17
- package/src/management/gui/HebrewDate.d.ts +0 -46
- package/src/management/gui/Helps.d.ts +0 -51
- package/src/management/gui/MgControlBase.d.ts +0 -225
- package/src/management/gui/MgFormBase.d.ts +0 -160
- package/src/management/gui/PIC.d.ts +0 -108
- package/src/management/gui/PropDefaults.d.ts +0 -7
- package/src/management/gui/PropInterface.d.ts +0 -245
- package/src/management/gui/PropTable.d.ts +0 -33
- package/src/management/gui/Property.d.ts +0 -121
- package/src/management/gui/ValidationDetails.d.ts +0 -52
- package/src/management/gui/ValidationDetailsBase.d.ts +0 -14
- package/src/management/gui/WrongFormatException.d.ts +0 -9
- package/src/management/tasks/GuiDataCollection.d.ts +0 -4
- package/src/management/tasks/GuiTaskBase.d.ts +0 -150
- package/src/management/tasks/IMGDataTable.d.ts +0 -10
- package/src/management/tasks/ITask.d.ts +0 -6
- package/src/management/tasks/MgTimer.d.ts +0 -8
- package/src/management/tasks/TaskDefinitionId.d.ts +0 -16
- package/src/management/tasks/TaskDefinitionIdTableSaxHandler.d.ts +0 -7
- package/src/util/MemoryUtil.d.ts +0 -6
- package/src/util/ObjectReference.d.ts +0 -9
- package/src/util/UsernamePasswordCredentials.d.ts +0 -18
|
@@ -1,16 +0,0 @@
|
|
|
1
|
-
import { StackTrace } from "@magic-xpa/mscorelib";
|
|
2
|
-
import { IReferencedObject } from "./IReferencedObject";
|
|
3
|
-
export declare abstract class ObjectReferenceBase {
|
|
4
|
-
private static LastId;
|
|
5
|
-
Referent: IReferencedObject;
|
|
6
|
-
private isDisposed;
|
|
7
|
-
private id;
|
|
8
|
-
_instantiationTrace: StackTrace;
|
|
9
|
-
constructor(referent: IReferencedObject);
|
|
10
|
-
Dispose(): void;
|
|
11
|
-
Dispose(isDisposing: boolean): void;
|
|
12
|
-
private Dispose_0;
|
|
13
|
-
private Dispose_1;
|
|
14
|
-
abstract Clone(): ObjectReferenceBase;
|
|
15
|
-
toString(): string;
|
|
16
|
-
}
|
|
@@ -1,10 +0,0 @@
|
|
|
1
|
-
import { ObjectReferenceBase } from "./ObjectReferenceBase";
|
|
2
|
-
import { List } from "@magic-xpa/mscorelib";
|
|
3
|
-
export declare class ObjectReferencesCollection {
|
|
4
|
-
private _refs;
|
|
5
|
-
get_Item(i: number): ObjectReferenceBase;
|
|
6
|
-
Add(objRef: ObjectReferenceBase): void;
|
|
7
|
-
Dispose(): void;
|
|
8
|
-
Clone(): ObjectReferencesCollection;
|
|
9
|
-
get Refs(): List<ObjectReferenceBase>;
|
|
10
|
-
}
|
|
@@ -1,21 +0,0 @@
|
|
|
1
|
-
import { RefParam, StringBuilder } from "@magic-xpa/mscorelib";
|
|
2
|
-
import { StorageAttribute } from "@magic-xpa/utils";
|
|
3
|
-
export declare class RecordUtils {
|
|
4
|
-
static byteStreamToString(stream: StringBuilder): string;
|
|
5
|
-
static byteStreamToString(stream: string): string;
|
|
6
|
-
private static byteStreamToString_0;
|
|
7
|
-
private static byteStreamToString_1;
|
|
8
|
-
static serializeItemVal(itemVal: string, itemAttr: StorageAttribute, cellAttr: StorageAttribute, toBase64: boolean): string;
|
|
9
|
-
static deSerializeItemVal(itemVal: string, itemAttr: StorageAttribute, itemLen: number, useHex: boolean, cellAttr: StorageAttribute, parsedLen: RefParam<number>): string;
|
|
10
|
-
static getString(str: string, type: StorageAttribute): string;
|
|
11
|
-
static getString(str: string, type: StorageAttribute, useHex: boolean): string;
|
|
12
|
-
static getString(str: string, type: StorageAttribute, useHex: boolean, useEnvCharset: boolean): string;
|
|
13
|
-
private static getString_0;
|
|
14
|
-
private static getString_1;
|
|
15
|
-
static getSpannedField(fldsVal: string, firstSegLen: number, idx: number, type: StorageAttribute, result: StringBuilder, useHex: boolean): number;
|
|
16
|
-
static getSpannedField(fldsVal: Uint8Array, firstSegLen: number, idx: number, type: StorageAttribute, result: StringBuilder, useHex: boolean, noOfPackets: number): number;
|
|
17
|
-
private static getSpannedField_0;
|
|
18
|
-
private static getSpannedField_1;
|
|
19
|
-
static itemValToXML(itemVal: string, itemAttr: StorageAttribute, cellAttr: StorageAttribute, ToBase64: boolean): string;
|
|
20
|
-
static getString_2(str: string, type: StorageAttribute): string;
|
|
21
|
-
}
|
|
@@ -1,52 +0,0 @@
|
|
|
1
|
-
import { FieldDef } from './FieldDef';
|
|
2
|
-
import { StorageAttribute } from '@magic-xpa/utils';
|
|
3
|
-
import { VectorTypeBase } from './VectorTypeBase';
|
|
4
|
-
export declare class VectorType extends VectorTypeBase {
|
|
5
|
-
static VERSION: number;
|
|
6
|
-
static EMPTY_BLOB_PREFIX_LEN: number;
|
|
7
|
-
static BLOB_TYPE_STRUCT_SIZE: number;
|
|
8
|
-
private _cells;
|
|
9
|
-
private _encoding;
|
|
10
|
-
private _allowNull;
|
|
11
|
-
private _cellContentType;
|
|
12
|
-
private _cellSize;
|
|
13
|
-
private _cellsAttr;
|
|
14
|
-
private _cellsDefaultVal;
|
|
15
|
-
private _cellsIsNullDefault;
|
|
16
|
-
private _dataBuf;
|
|
17
|
-
private _initialized;
|
|
18
|
-
private _nullBuf;
|
|
19
|
-
private _originalflatData;
|
|
20
|
-
constructor(cellsType: StorageAttribute, contentType: string, defualt: string, isDefNull: boolean, nullAlowed: boolean, length: number);
|
|
21
|
-
constructor(blobString: string);
|
|
22
|
-
constructor(fld: FieldDef);
|
|
23
|
-
private constructor_0;
|
|
24
|
-
private constructor_1;
|
|
25
|
-
private constructor_2;
|
|
26
|
-
private init;
|
|
27
|
-
toString(): string;
|
|
28
|
-
getCellsAttr(): StorageAttribute;
|
|
29
|
-
getCellSize(): number;
|
|
30
|
-
getVecSize(): number;
|
|
31
|
-
getVecCell(idx: number): string;
|
|
32
|
-
GetCellValues(): string[];
|
|
33
|
-
setVecCell(idx: number, newValue: string, isNull: boolean): boolean;
|
|
34
|
-
adjustToFit(field: FieldDef): void;
|
|
35
|
-
private buildHeadersString;
|
|
36
|
-
private getNullString;
|
|
37
|
-
private getEmptyString;
|
|
38
|
-
private getBlobsBuf;
|
|
39
|
-
static getCellsAttr(blob: string): StorageAttribute;
|
|
40
|
-
static getCellSize(blob: string): number;
|
|
41
|
-
static getVecSize(blob: string): number;
|
|
42
|
-
isUnicode(flatData: string): boolean;
|
|
43
|
-
}
|
|
44
|
-
export declare class CellElement {
|
|
45
|
-
blobFieldPrefix: string;
|
|
46
|
-
data: string;
|
|
47
|
-
isNull: boolean;
|
|
48
|
-
constructor(val: string, is_null: boolean);
|
|
49
|
-
constructor(val: string, is_null: boolean, ctrlData: string);
|
|
50
|
-
private constructor_0;
|
|
51
|
-
private constructor_1;
|
|
52
|
-
}
|
|
@@ -1,8 +0,0 @@
|
|
|
1
|
-
export declare class VectorTypeBase {
|
|
2
|
-
static BLOB_TABLE_STR: string;
|
|
3
|
-
static BLOB_TABLE_STR_LEN: number;
|
|
4
|
-
static VECTOR_STR: string;
|
|
5
|
-
static VECTOR_STR_LEN: number;
|
|
6
|
-
static validateBlobContents(blob: string): boolean;
|
|
7
|
-
static adjustAlphaStringsInFlatData(srcBlob: string): string;
|
|
8
|
-
}
|
|
@@ -1,7 +0,0 @@
|
|
|
1
|
-
export interface IActionManager {
|
|
2
|
-
enable(act: number, enable: boolean): void;
|
|
3
|
-
isEnabled(act: number): boolean;
|
|
4
|
-
getActCount(act: number): number;
|
|
5
|
-
enableList(act: number[], enable: boolean, onlyIfChanged: boolean): void;
|
|
6
|
-
enableNavigationActions(enable: boolean): void;
|
|
7
|
-
}
|
|
@@ -1,20 +0,0 @@
|
|
|
1
|
-
import { MgControlBase } from "../gui/MgControlBase";
|
|
2
|
-
import { Priority } from "@magic-xpa/utils";
|
|
3
|
-
import { MgFormBase } from "../gui/MgFormBase";
|
|
4
|
-
import { Modifiers } from "../../GuiEnums";
|
|
5
|
-
import { ITask } from "../tasks/ITask";
|
|
6
|
-
import { KeyboardItem } from "../../gui/KeyboardItem";
|
|
7
|
-
export interface IGuiEventsManager {
|
|
8
|
-
addInternalEventWithCtrlAndDisplayLineAndCode(ctrl: MgControlBase, DisplayLine: number, code: number): void;
|
|
9
|
-
addInternalEventWithCtrlAndCodeAndPriority(ctrl: MgControlBase, code: number, priority: Priority): void;
|
|
10
|
-
AddKeyboardEvent(form: MgFormBase, ctrl: MgControlBase, modifier: Modifiers, keyCode: number, start: number, end: number, text: string, isActChar: boolean, suggestedValue: string, code: number): void;
|
|
11
|
-
addGuiTriggeredEventWithCtrlAndCodeAndLine(ctrl: MgControlBase, code: number, line: number): void;
|
|
12
|
-
addGuiTriggeredEventWithCtrlAndCodeAndLineAndModifier(ctrl: MgControlBase, code: number, line: number): void;
|
|
13
|
-
addGuiTriggeredEventWithTaskAndCode(task: ITask, code: number): void;
|
|
14
|
-
addGuiTriggeredEventWithTaskAndCodeAndLine(task: ITask, code: number, line: number): void;
|
|
15
|
-
addGuiTriggeredEventWithTaskAndCodeAndOnMultiMark(task: ITask, code: number): void;
|
|
16
|
-
addGuiTriggeredEventTaskAndCodeAndRaisedBy(task: ITask, code: number): void;
|
|
17
|
-
AddColumnClickEvent(columnCtrl: MgControlBase, direction: number, columnHeader: string): void;
|
|
18
|
-
getMatchingAction(kbItm: KeyboardItem): number;
|
|
19
|
-
ignoreUnknownAbort(): boolean;
|
|
20
|
-
}
|
|
@@ -1,243 +0,0 @@
|
|
|
1
|
-
export declare class ExpressionInterface {
|
|
2
|
-
static EXP_OPER_LEN: number;
|
|
3
|
-
static EXP_OPER_FUNC_PTR_LEN: number;
|
|
4
|
-
static EXP_OP_NONE: number;
|
|
5
|
-
static EXP_OP_V: number;
|
|
6
|
-
static EXP_OP_VAR: number;
|
|
7
|
-
static EXP_OP_A: number;
|
|
8
|
-
static EXP_OP_H: number;
|
|
9
|
-
static EXP_OP_N: number;
|
|
10
|
-
static EXP_OP_D: number;
|
|
11
|
-
static EXP_OP_T: number;
|
|
12
|
-
static EXP_OP_L: number;
|
|
13
|
-
static EXP_OP_F: number;
|
|
14
|
-
static EXP_OP_K: number;
|
|
15
|
-
static EXP_OP_P: number;
|
|
16
|
-
static EXP_OP_M: number;
|
|
17
|
-
static EXP_OP_ACT: number;
|
|
18
|
-
static EXP_OP_KBD: number;
|
|
19
|
-
static EXP_OP_ADD: number;
|
|
20
|
-
static EXP_OP_SUB: number;
|
|
21
|
-
static EXP_OP_MUL: number;
|
|
22
|
-
static EXP_OP_DIV: number;
|
|
23
|
-
static EXP_OP_MOD: number;
|
|
24
|
-
static EXP_OP_NEG: number;
|
|
25
|
-
static EXP_OP_FIX: number;
|
|
26
|
-
static EXP_OP_ROUND: number;
|
|
27
|
-
static EXP_OP_EQ: number;
|
|
28
|
-
static EXP_OP_NE: number;
|
|
29
|
-
static EXP_OP_LE: number;
|
|
30
|
-
static EXP_OP_LT: number;
|
|
31
|
-
static EXP_OP_GE: number;
|
|
32
|
-
static EXP_OP_GT: number;
|
|
33
|
-
static EXP_OP_NOT: number;
|
|
34
|
-
static EXP_OP_OR: number;
|
|
35
|
-
static EXP_OP_AND: number;
|
|
36
|
-
static EXP_OP_IF: number;
|
|
37
|
-
static EXP_OP_LEN: number;
|
|
38
|
-
static EXP_OP_CON: number;
|
|
39
|
-
static EXP_OP_MID: number;
|
|
40
|
-
static EXP_OP_LEFT: number;
|
|
41
|
-
static EXP_OP_RIGHT: number;
|
|
42
|
-
static EXP_OP_FILL: number;
|
|
43
|
-
static EXP_OP_INSTR: number;
|
|
44
|
-
static EXP_OP_TRIM: number;
|
|
45
|
-
static EXP_OP_LTRIM: number;
|
|
46
|
-
static EXP_OP_RTRIM: number;
|
|
47
|
-
static EXP_OP_STR: number;
|
|
48
|
-
static EXP_OP_VAL: number;
|
|
49
|
-
static EXP_OP_STAT: number;
|
|
50
|
-
static EXP_OP_LEVEL: number;
|
|
51
|
-
static EXP_OP_COUNTER: number;
|
|
52
|
-
static EXP_OP_VARPREV: number;
|
|
53
|
-
static EXP_OP_VARCURR: number;
|
|
54
|
-
static EXP_OP_VARMOD: number;
|
|
55
|
-
static EXP_OP_VARINP: number;
|
|
56
|
-
static EXP_OP_VARNAME: number;
|
|
57
|
-
static EXP_OP_VIEWMOD: number;
|
|
58
|
-
static EXP_OP_ENV: number;
|
|
59
|
-
static EXP_OP_INIGET: number;
|
|
60
|
-
static EXP_OP_INIPUT: number;
|
|
61
|
-
static EXP_OP_TERM: number;
|
|
62
|
-
static EXP_OP_DATE: number;
|
|
63
|
-
static EXP_OP_TIME: number;
|
|
64
|
-
static EXP_OP_SYS: number;
|
|
65
|
-
static EXP_OP_PROG: number;
|
|
66
|
-
static EXP_OP_PWR: number;
|
|
67
|
-
static EXP_OP_LOG: number;
|
|
68
|
-
static EXP_OP_EXP: number;
|
|
69
|
-
static EXP_OP_ABS: number;
|
|
70
|
-
static EXP_OP_SIN: number;
|
|
71
|
-
static EXP_OP_COS: number;
|
|
72
|
-
static EXP_OP_TAN: number;
|
|
73
|
-
static EXP_OP_ASIN: number;
|
|
74
|
-
static EXP_OP_ACOS: number;
|
|
75
|
-
static EXP_OP_ATAN: number;
|
|
76
|
-
static EXP_OP_RAND: number;
|
|
77
|
-
static EXP_OP_MIN: number;
|
|
78
|
-
static EXP_OP_MAX: number;
|
|
79
|
-
static EXP_OP_RANGE: number;
|
|
80
|
-
static EXP_OP_REP: number;
|
|
81
|
-
static EXP_OP_INS: number;
|
|
82
|
-
static EXP_OP_DEL: number;
|
|
83
|
-
static EXP_OP_FLIP: number;
|
|
84
|
-
static EXP_OP_UPPER: number;
|
|
85
|
-
static EXP_OP_LOWER: number;
|
|
86
|
-
static EXP_OP_CRC: number;
|
|
87
|
-
static EXP_OP_CHKDGT: number;
|
|
88
|
-
static EXP_OP_SOUNDX: number;
|
|
89
|
-
static EXP_OP_HSTR: number;
|
|
90
|
-
static EXP_OP_HVAL: number;
|
|
91
|
-
static EXP_OP_CHR: number;
|
|
92
|
-
static EXP_OP_ASC: number;
|
|
93
|
-
static EXP_OP_MSTR: number;
|
|
94
|
-
static EXP_OP_MVAL: number;
|
|
95
|
-
static EXP_OP_DSTR: number;
|
|
96
|
-
static EXP_OP_DVAL: number;
|
|
97
|
-
static EXP_OP_TSTR: number;
|
|
98
|
-
static EXP_OP_TVAL: number;
|
|
99
|
-
static EXP_OP_DAY: number;
|
|
100
|
-
static EXP_OP_MONTH: number;
|
|
101
|
-
static EXP_OP_YEAR: number;
|
|
102
|
-
static EXP_OP_DOW: number;
|
|
103
|
-
static EXP_OP_CDOW: number;
|
|
104
|
-
static EXP_OP_CMONTH: number;
|
|
105
|
-
static EXP_OP_NDOW: number;
|
|
106
|
-
static EXP_OP_NMONTH: number;
|
|
107
|
-
static EXP_OP_SECOND: number;
|
|
108
|
-
static EXP_OP_MINUTE: number;
|
|
109
|
-
static EXP_OP_HOUR: number;
|
|
110
|
-
static EXP_OP_DELAY: number;
|
|
111
|
-
static EXP_OP_IDLE: number;
|
|
112
|
-
static EXP_OP_LOGICAL: number;
|
|
113
|
-
static EXP_OP_VISUAL: number;
|
|
114
|
-
static EXP_OP_ADDDATE: number;
|
|
115
|
-
static EXP_OP_ADDTIME: number;
|
|
116
|
-
static EXP_OP_OWNER: number;
|
|
117
|
-
static EXP_OP_VARATTR: number;
|
|
118
|
-
static EXP_OP_BOM: number;
|
|
119
|
-
static EXP_OP_BOY: number;
|
|
120
|
-
static EXP_OP_EOM: number;
|
|
121
|
-
static EXP_OP_EOY: number;
|
|
122
|
-
static EXP_OP_RIGHT_LITERAL: number;
|
|
123
|
-
static EXP_OP_ROLLBACK: number;
|
|
124
|
-
static EXP_OP_VARSET: number;
|
|
125
|
-
static EXP_OP_EVALX: number;
|
|
126
|
-
static EXP_OP_IGNORE: number;
|
|
127
|
-
static EXP_OP_NULL: number;
|
|
128
|
-
static EXP_OP_NULL_A: number;
|
|
129
|
-
static EXP_OP_NULL_N: number;
|
|
130
|
-
static EXP_OP_NULL_B: number;
|
|
131
|
-
static EXP_OP_NULL_D: number;
|
|
132
|
-
static EXP_OP_NULL_T: number;
|
|
133
|
-
static EXP_OP_ISNULL: number;
|
|
134
|
-
static EXP_OP_TDEPTH: number;
|
|
135
|
-
static EXP_OP_MINMAGIC: number;
|
|
136
|
-
static EXP_OP_MAXMAGIC: number;
|
|
137
|
-
static EXP_OP_RESMAGIC: number;
|
|
138
|
-
static EXP_OP_FILEDLG: number;
|
|
139
|
-
static EXP_OP_MLS_TRANS: number;
|
|
140
|
-
static EXP_OP_CTRL_NAME: number;
|
|
141
|
-
static EXP_OP_GETLANG: number;
|
|
142
|
-
static EXP_OP_NULL_O: number;
|
|
143
|
-
static EXP_OP_GETPARAM: number;
|
|
144
|
-
static EXP_OP_SETPARAM: number;
|
|
145
|
-
static EXP_OP_CND_RANGE: number;
|
|
146
|
-
static EXP_OP_ISDEFAULT: number;
|
|
147
|
-
static EXP_OP_FORM: number;
|
|
148
|
-
static EXP_OP_STRTOKEN: number;
|
|
149
|
-
static EXP_OP_INIGETLN: number;
|
|
150
|
-
static EXP_OP_EXPCALC: number;
|
|
151
|
-
static EXP_OP_E: number;
|
|
152
|
-
static EXP_OP_WEB_REFERENCE: number;
|
|
153
|
-
static EXP_OP_CASE: number;
|
|
154
|
-
static EXP_OP_LIKE: number;
|
|
155
|
-
static EXP_OP_CALLJS: number;
|
|
156
|
-
static EXP_OP_THIS: number;
|
|
157
|
-
static EXP_OP_REPSTR: number;
|
|
158
|
-
static EXP_OP_DBROUND: number;
|
|
159
|
-
static EXP_OP_VARPIC: number;
|
|
160
|
-
static EXP_OP_STRTOK_CNT: number;
|
|
161
|
-
static EXP_OP_VARCURRN: number;
|
|
162
|
-
static EXP_OP_VARINDEX: number;
|
|
163
|
-
static EXP_OP_JCDOW: number;
|
|
164
|
-
static EXP_OP_JMONTH: number;
|
|
165
|
-
static EXP_OP_JNDOW: number;
|
|
166
|
-
static EXP_OP_JYEAR: number;
|
|
167
|
-
static EXP_OP_JGENGO: number;
|
|
168
|
-
static EXP_OP_HAN: number;
|
|
169
|
-
static EXP_OP_ZEN: number;
|
|
170
|
-
static EXP_OP_ZENS: number;
|
|
171
|
-
static EXP_OP_ZIMEREAD: number;
|
|
172
|
-
static EXP_OP_ZKANA: number;
|
|
173
|
-
static EXP_OP_GOTO_CTRL: number;
|
|
174
|
-
static EXP_OP_TRANSLATE: number;
|
|
175
|
-
static EXP_OP_ASTR: number;
|
|
176
|
-
static EXP_OP_LOOPCOUNTER: number;
|
|
177
|
-
static EXP_OP_VECGET: number;
|
|
178
|
-
static EXP_OP_VECSET: number;
|
|
179
|
-
static EXP_OP_VECSIZE: number;
|
|
180
|
-
static EXP_OP_VECCELLATTR: number;
|
|
181
|
-
static EXP_OP_BLOBSIZE: number;
|
|
182
|
-
static EXP_OP_STRTOKEN_IDX: number;
|
|
183
|
-
static EXP_OP_MTIME: number;
|
|
184
|
-
static EXP_OP_MTVAL: number;
|
|
185
|
-
static EXP_OP_MTSTR: number;
|
|
186
|
-
static EXP_OP_IN: number;
|
|
187
|
-
static EXP_OP_ISCOMPONENT: number;
|
|
188
|
-
static EXP_OP_EXT_A: number;
|
|
189
|
-
static EXP_OP_NULL_U: number;
|
|
190
|
-
static EXP_OP_USER_DEFINED_FUNC: number;
|
|
191
|
-
static EXP_OP_SUBFORM_EXEC_MODE: number;
|
|
192
|
-
static EXP_OP_UNICODEASC: number;
|
|
193
|
-
static EXP_OP_ADDDT: number;
|
|
194
|
-
static EXP_OP_DIFDT: number;
|
|
195
|
-
static EXP_OP_ISFIRSTRECORDCYCLE: number;
|
|
196
|
-
static EXP_OP_MAINLEVEL: number;
|
|
197
|
-
static EXP_OP_MAINDISPLAY: number;
|
|
198
|
-
static EXP_OP_DBVIEWSIZE: number;
|
|
199
|
-
static EXP_OP_DBVIEWROWIDX: number;
|
|
200
|
-
static EXP_OP_PROJECTDIR: number;
|
|
201
|
-
static EXP_OP_FORMSTATECLEAR: number;
|
|
202
|
-
static EXP_OP_PUBLICNAME: number;
|
|
203
|
-
static EXP_OP_TASKID: number;
|
|
204
|
-
static EXP_OP_STR_BUILD: number;
|
|
205
|
-
static EXP_OP_EMPTY_DATA_VIEW: number;
|
|
206
|
-
static EXP_OP_STATUSBARSETTEXT: number;
|
|
207
|
-
static EXP_OP_CLIENT_DIRDLG: number;
|
|
208
|
-
static EXP_OP_CLIENT_REDIRECT: number;
|
|
209
|
-
static EXP_OP_IS_MOBILE_CLIENT: number;
|
|
210
|
-
static EXP_OP_CLIENT_SESSION_STATISTICS_GET: number;
|
|
211
|
-
static EXP_OP_TASKTYPE: number;
|
|
212
|
-
static EXP_OP_CLIENT_FILE_TO_SERVER: number;
|
|
213
|
-
static EXP_OP_RANGE_ADD: number;
|
|
214
|
-
static EXP_OP_RANGE_RESET: number;
|
|
215
|
-
static EXP_OP_LOCATE_ADD: number;
|
|
216
|
-
static EXP_OP_LOCATE_RESET: number;
|
|
217
|
-
static EXP_OP_SORT_ADD: number;
|
|
218
|
-
static EXP_OP_SORT_RESET: number;
|
|
219
|
-
static EXP_OP_TSK_INSTANCE: number;
|
|
220
|
-
static EXP_OP_CLIENTSESSION_SET: number;
|
|
221
|
-
static EXP_OP_UTCDATE: number;
|
|
222
|
-
static EXP_OP_UTCTIME: number;
|
|
223
|
-
static EXP_OP_UTCMTIME: number;
|
|
224
|
-
static EXP_OP_CLIENT_DB_DISCONNECT: number;
|
|
225
|
-
static EXP_OP_DATAVIEW_TO_DATASOURCE: number;
|
|
226
|
-
static EXP_OP_CLIENT_DB_DEL: number;
|
|
227
|
-
static EXP_OP_VARDISPLAYNAME: number;
|
|
228
|
-
static EXP_OP_CONTROL_ITEMS_REFRESH: number;
|
|
229
|
-
static EXP_OP_VARCONTROLID: number;
|
|
230
|
-
static EXP_OP_CONTROLITEMSLIST: number;
|
|
231
|
-
static EXP_OP_CONTROLDISPLAYLIST: number;
|
|
232
|
-
static EXP_OP_CLIENT_SQL_EXECUTE: number;
|
|
233
|
-
static EXP_OP_CONTROL_SELECT_PROGRAM: number;
|
|
234
|
-
static EXP_OP_SET_TITLE: number;
|
|
235
|
-
static EXP_OP_IS_ROW_EDITING: number;
|
|
236
|
-
static EXP_OP_IS_LOGGED_IN: number;
|
|
237
|
-
static EXP_OP_SET_COOKIE: number;
|
|
238
|
-
static EXP_OP_GET_COOKIE: number;
|
|
239
|
-
static EXP_OP_DELETE_COOKIE: number;
|
|
240
|
-
static EXP_OP_ROUTEGET: number;
|
|
241
|
-
static EXP_OP_HASH: number;
|
|
242
|
-
constructor();
|
|
243
|
-
}
|
|
@@ -1,47 +0,0 @@
|
|
|
1
|
-
import { StorageAttribute } from '@magic-xpa/utils';
|
|
2
|
-
import { GuiTaskBase } from '../tasks/GuiTaskBase';
|
|
3
|
-
import { ITask } from '../tasks/ITask';
|
|
4
|
-
import { MgControlBase } from '../gui/MgControlBase';
|
|
5
|
-
import { NUM_TYPE } from '../data/NUM_TYPE';
|
|
6
|
-
import { GuiFieldBase } from '../data/GuiFieldBase';
|
|
7
|
-
import { PIC } from '../gui/PIC';
|
|
8
|
-
export declare abstract class GuiExpressionEvaluator {
|
|
9
|
-
static TRIGGER_TASK: number;
|
|
10
|
-
ExpTask: GuiTaskBase;
|
|
11
|
-
private Events;
|
|
12
|
-
abstract HandleControlGoto(task: ITask, ctrl: MgControlBase, rowNo: number): boolean;
|
|
13
|
-
eval_op_statusbar_set_text(resVal: ExpVal, statusBarText: ExpVal): void;
|
|
14
|
-
IsParallel(): boolean;
|
|
15
|
-
eval_op_ctrl_name(resVal: ExpVal): void;
|
|
16
|
-
eval_op_gotoCtrl(ctrlName: ExpVal, rowNum: ExpVal, generation: ExpVal, retVal: ExpVal): void;
|
|
17
|
-
static GetContextTask(currTask: GuiTaskBase, generation: number): GuiTaskBase;
|
|
18
|
-
GetContextTask(generation: number): GuiTaskBase;
|
|
19
|
-
ConstructMagicNum(resVal: ExpVal, i: number, attr: StorageAttribute): void;
|
|
20
|
-
SetNULL(resVal: ExpVal, attr: StorageAttribute): void;
|
|
21
|
-
GetValidatedValue(currCtrl: MgControlBase, oldValue: string, newValue: string): string;
|
|
22
|
-
SetVal(resVal: ExpVal, type: StorageAttribute, val: string, pic: PIC): void;
|
|
23
|
-
static exp_build_string(val: ExpVal): string;
|
|
24
|
-
static isExpVal(obj: any): boolean;
|
|
25
|
-
private BlobStringConversion;
|
|
26
|
-
eval_op_zimeread(resVal: ExpVal): void;
|
|
27
|
-
ConvertExpVal(val: ExpVal, expectedType: StorageAttribute): void;
|
|
28
|
-
}
|
|
29
|
-
export declare class ExpVal {
|
|
30
|
-
Attr: StorageAttribute;
|
|
31
|
-
IsNull: boolean;
|
|
32
|
-
MgNumVal: NUM_TYPE;
|
|
33
|
-
StrVal: string;
|
|
34
|
-
BoolVal: boolean;
|
|
35
|
-
IncludeBlobPrefix: boolean;
|
|
36
|
-
OriginalNull: boolean;
|
|
37
|
-
VectorField: GuiFieldBase;
|
|
38
|
-
constructor();
|
|
39
|
-
constructor(attr: StorageAttribute, isNull: boolean, mgVal: string);
|
|
40
|
-
private constructor_0;
|
|
41
|
-
private constructor_1;
|
|
42
|
-
Copy(src: ExpVal): void;
|
|
43
|
-
Nullify(): void;
|
|
44
|
-
Init(attr: StorageAttribute, isNull: boolean, mgVal: string): void;
|
|
45
|
-
ToMgVal(): string;
|
|
46
|
-
isEmptyString(): boolean;
|
|
47
|
-
}
|
|
@@ -1,28 +0,0 @@
|
|
|
1
|
-
import { MgControlType, XmlParser } from '@magic-xpa/utils';
|
|
2
|
-
import { MgFormBase } from './MgFormBase';
|
|
3
|
-
import { MgControlBase } from './MgControlBase';
|
|
4
|
-
export declare class ControlTable {
|
|
5
|
-
private _controls;
|
|
6
|
-
private _mgForm;
|
|
7
|
-
constructor();
|
|
8
|
-
fillData(mgForm: MgFormBase, parser: XmlParser): void;
|
|
9
|
-
private initInnerObjects;
|
|
10
|
-
getSize(): number;
|
|
11
|
-
getCtrl(idx: number): MgControlBase;
|
|
12
|
-
getCtrl(ctrlName: string): MgControlBase;
|
|
13
|
-
private getCtrl_0;
|
|
14
|
-
private getCtrl_1;
|
|
15
|
-
getCtrlByName(ctrlName: string, ctrlType: MgControlType): MgControlBase;
|
|
16
|
-
GetControlByIsn(isn: number): MgControlBase;
|
|
17
|
-
GetControl(predicate: (value: MgControlBase) => boolean): MgControlBase;
|
|
18
|
-
filter(callackFuntion: (item: any, index: any, array: any) => boolean): any;
|
|
19
|
-
contains(ctrl: MgControlBase): boolean;
|
|
20
|
-
addControl(ctrl: MgControlBase): void;
|
|
21
|
-
setControlAt(ctrl: MgControlBase, index: number): void;
|
|
22
|
-
deleteControlAt(index: number): void;
|
|
23
|
-
Remove(ctrl: MgControlBase): boolean;
|
|
24
|
-
Remove(idx: number): any;
|
|
25
|
-
private Remove_0;
|
|
26
|
-
private Remove_1;
|
|
27
|
-
getControlIdx(inCtrl: MgControlBase, includeSubs: boolean): number;
|
|
28
|
-
}
|
|
@@ -1,103 +0,0 @@
|
|
|
1
|
-
import { PIC } from './PIC';
|
|
2
|
-
import { List } from '@magic-xpa/mscorelib';
|
|
3
|
-
import { StorageAttribute } from '@magic-xpa/utils';
|
|
4
|
-
export declare class DisplayConvertor {
|
|
5
|
-
private _environment;
|
|
6
|
-
private DATECHAR;
|
|
7
|
-
private static _instance;
|
|
8
|
-
static get Instance(): DisplayConvertor;
|
|
9
|
-
constructor();
|
|
10
|
-
getNewDateBreakParams(): DateBreakParams;
|
|
11
|
-
getNewTimeBreakParams(): TimeBreakParams;
|
|
12
|
-
mg2disp(mgValue: string, rangeStr: string, pic: PIC, useNative: boolean, compIdx: number, time_date_pic_Z_edt: boolean): any;
|
|
13
|
-
mg2disp(mgValue: string, rangeStr: string, pic: PIC, useNative: boolean, alwaysFill: boolean, compIdx: number, time_date_pic_Z_edt: boolean): any;
|
|
14
|
-
mg2disp(mgValue: string, rangeStr: string, pic: PIC, useNative: boolean, alwaysFill: boolean, compIdx: number, convertCase: boolean, time_date_num_pic_Z_edt: boolean): any;
|
|
15
|
-
private mg2disp_0;
|
|
16
|
-
private mg2disp_1;
|
|
17
|
-
mg2disp_2(mgValue: string, rangeStr: string, pic: PIC, useNative: boolean, alwaysFill: boolean, compIdx: number, convertCase: boolean, time_date_num_pic_Z_edt: boolean): any;
|
|
18
|
-
disp2mg(dispValue: any, pic: PIC, compIdx: number, blobContentType: string): string;
|
|
19
|
-
fromNum(mgValue: string, pic: PIC): string;
|
|
20
|
-
private fromAlpha;
|
|
21
|
-
private caseConvertedChar;
|
|
22
|
-
private win_data_cpy;
|
|
23
|
-
private win_data_cpy_0;
|
|
24
|
-
private win_data_cpy_1;
|
|
25
|
-
fromDate(dataStr: string, pic: PIC, compIdx: number, time_date_pic_Z_edt: boolean): string;
|
|
26
|
-
fromTime(dataStr: string, pic: PIC, time_date_pic_Z_edt: boolean): string;
|
|
27
|
-
fromMgDateToNativeDate(dataStr: string, pic: PIC, compIdx: number): Date;
|
|
28
|
-
fromNativeDateToMgDateNumber(nativeDate: Date, pic: PIC): number;
|
|
29
|
-
fromNativeDateToMgDate(nativeDate: Date, pic: PIC): string;
|
|
30
|
-
to_a_pic_datemode(outStr: string, out_len: number, date: number, pic: PIC, date_pic_Z_edt: boolean, ignore_dt_fmt: boolean, compIdx: number): string;
|
|
31
|
-
date_break_datemode(breakParams: DateBreakParams, date: number, ignore_dt_fmt: boolean, compIdx: number): void;
|
|
32
|
-
private int_2_a;
|
|
33
|
-
private lib_a_fill;
|
|
34
|
-
private date_i_2_nm;
|
|
35
|
-
private date_i_2_nm_bytemode;
|
|
36
|
-
private date_msk_cnt;
|
|
37
|
-
private date_2_DDDD;
|
|
38
|
-
fromMgTimeToNativeTime(dataStr: string, pic: PIC): Date;
|
|
39
|
-
private time_2_a_pic;
|
|
40
|
-
static time_break(breakParams: TimeBreakParams, time: number): void;
|
|
41
|
-
private fromMgLogicalToNativeLogical;
|
|
42
|
-
private fromNativeLogicalToMgLogical;
|
|
43
|
-
private win_rng_bool;
|
|
44
|
-
toNum(dispValue: string, pic: PIC, compIdx: number): string;
|
|
45
|
-
a_2_date_pic_datemode(str: string[], str_len: number, pic: PIC, mask: string[], compIdx: number): number;
|
|
46
|
-
private date_a_2_i;
|
|
47
|
-
private date_a_2_i_0;
|
|
48
|
-
private move_date;
|
|
49
|
-
private move_date_0;
|
|
50
|
-
private date_MMM_2_m;
|
|
51
|
-
date_sys(): DateBreakParams;
|
|
52
|
-
date_magic(utcDate: boolean): number;
|
|
53
|
-
time_magic(utcTime: boolean): number;
|
|
54
|
-
mtime_magic(utcTime: boolean): number;
|
|
55
|
-
date_4_calender(year: number, month: number, day: number, doy: number, usedoy: boolean): number;
|
|
56
|
-
fromNativeTimeToMgTime(dispValue: Date): string;
|
|
57
|
-
fromNativeTimeToMgTimeNumber(dispValue: Date): number;
|
|
58
|
-
a_2_time(Ascii: string, pic: PIC, milliSeconds: boolean): number;
|
|
59
|
-
a_2_time(Ascii: string, AsciiL: number, mask: string[], milliSeconds: boolean): number;
|
|
60
|
-
private a_2_time_0;
|
|
61
|
-
private a_2_time_1;
|
|
62
|
-
time_2_int(hour: number, minute: number, second: number): number;
|
|
63
|
-
static toBoolean(boolStr: string): boolean;
|
|
64
|
-
a_2_date(str: string, Format: string, compIdx: number): number;
|
|
65
|
-
a_2_date_pic(str: string, pic: PIC, mask: string, compIdx: number): number;
|
|
66
|
-
to_a(outVal: string, out_len: number, date: number, Format: string, compIdx: number): string;
|
|
67
|
-
private a_2_date_datemode;
|
|
68
|
-
private to_a_datemode;
|
|
69
|
-
private date_a_2_i_1;
|
|
70
|
-
private move_date_1;
|
|
71
|
-
time_2_a(Ascii: string, AsciiL: number, time: number, Format: string, compIdx: number, milliSeconds: boolean): string;
|
|
72
|
-
toLogical(dispValue: string, pic: PIC, rangeStr: string): string;
|
|
73
|
-
private disp_2_logical;
|
|
74
|
-
private toAlpha;
|
|
75
|
-
static isAlphaPositionalDirective(toCheck: string): boolean;
|
|
76
|
-
private fillAlphaByRange;
|
|
77
|
-
fillAlphaByDiscreteRangeValues(discreteRangeValues: List<string>, newValue: string): string;
|
|
78
|
-
fillAlphaByContinuousRangeValues(ContinuousRangeValues: List<string>, newValue: string): string;
|
|
79
|
-
completeAlphaByRange(discreteRangeValues: List<string>, newValue: string): string;
|
|
80
|
-
setDateChar(dateChar: number): void;
|
|
81
|
-
getDateChar(): number;
|
|
82
|
-
static StringValueToMgValue(value: string, storageAttribute: StorageAttribute, filler: string, length: number): any;
|
|
83
|
-
}
|
|
84
|
-
export declare class TimeBreakParams {
|
|
85
|
-
hour: number;
|
|
86
|
-
minute: number;
|
|
87
|
-
second: number;
|
|
88
|
-
constructor();
|
|
89
|
-
constructor(hour_: number, minute_: number, second_: number);
|
|
90
|
-
private constructor_0;
|
|
91
|
-
private constructor_1;
|
|
92
|
-
}
|
|
93
|
-
export declare class DateBreakParams {
|
|
94
|
-
day: number;
|
|
95
|
-
dow: number;
|
|
96
|
-
doy: number;
|
|
97
|
-
month: number;
|
|
98
|
-
year: number;
|
|
99
|
-
constructor();
|
|
100
|
-
constructor(year_: number, month_: number, day_: number, doy_: number, dow_: number);
|
|
101
|
-
private constructor_0;
|
|
102
|
-
private constructor_1;
|
|
103
|
-
}
|
|
@@ -1,35 +0,0 @@
|
|
|
1
|
-
import { ValidationDetails } from './ValidationDetails';
|
|
2
|
-
export declare class FieldValidator {
|
|
3
|
-
private _newvalue;
|
|
4
|
-
private _oldvalue;
|
|
5
|
-
private _pictureReal;
|
|
6
|
-
private _pictureEnable;
|
|
7
|
-
private _valDet;
|
|
8
|
-
private _picture;
|
|
9
|
-
private _decimal;
|
|
10
|
-
private _environment;
|
|
11
|
-
constructor();
|
|
12
|
-
checkVal(valDet: ValidationDetails): ValidationDetails;
|
|
13
|
-
private checkAlphaField;
|
|
14
|
-
private isPossibleAlphaLetter;
|
|
15
|
-
private fillAlphaByRange;
|
|
16
|
-
private CompleteAlphaByRange;
|
|
17
|
-
private checkLogicalField;
|
|
18
|
-
private checkNumericField;
|
|
19
|
-
private checkNumericLeft;
|
|
20
|
-
private checkNumericRight;
|
|
21
|
-
private checkNumericPicture;
|
|
22
|
-
private fillNumericByRange;
|
|
23
|
-
private setNumericValueWithoutPicture;
|
|
24
|
-
private checkNumericInDecFormat;
|
|
25
|
-
private checkDateField;
|
|
26
|
-
private fillDateByRange;
|
|
27
|
-
private checkTimeField;
|
|
28
|
-
private fillTimeByRange;
|
|
29
|
-
private printMessage;
|
|
30
|
-
private changeStringInside;
|
|
31
|
-
private init;
|
|
32
|
-
private setValidationFailed;
|
|
33
|
-
private digitsBeforeDelimeter;
|
|
34
|
-
private isNullDisplayVal;
|
|
35
|
-
}
|
|
@@ -1,40 +0,0 @@
|
|
|
1
|
-
import { StorageAttribute } from "@magic-xpa/utils";
|
|
2
|
-
import { PIC } from "./PIC";
|
|
3
|
-
import { GuiFieldBase } from "../data/GuiFieldBase";
|
|
4
|
-
import { CommandType } from "../../GuiEnums";
|
|
5
|
-
import { GuiMgControl } from "../../gui/GuiMgControl";
|
|
6
|
-
import { GuiFormPropertyAdapter } from "./GuiFormPropertyAdapter";
|
|
7
|
-
export declare abstract class GuiControlPropertyAdapter extends GuiMgControl {
|
|
8
|
-
DataType: StorageAttribute;
|
|
9
|
-
InControl: boolean;
|
|
10
|
-
abstract setPicStr(format: string, expId: number): void;
|
|
11
|
-
abstract setRange(newRange: string): void;
|
|
12
|
-
abstract setValExp(expId: number): void;
|
|
13
|
-
abstract setField(fieldOrFieldStrID: any): void;
|
|
14
|
-
abstract getForm(): GuiFormPropertyAdapter;
|
|
15
|
-
abstract getLayer(): number;
|
|
16
|
-
abstract computePIC(picExpResult: string): PIC;
|
|
17
|
-
abstract setImageList(url: string): void;
|
|
18
|
-
abstract setImageWithFileName(fileName: string): void;
|
|
19
|
-
abstract isDescendentOfControl(control: GuiControlPropertyAdapter): boolean;
|
|
20
|
-
abstract getLinkedParent(checkSubformFather: boolean): GuiControlPropertyAdapter;
|
|
21
|
-
abstract SetEnabled(val: boolean): void;
|
|
22
|
-
updatePropertyLogicNesting(propId: number, commandType: CommandType, val: boolean, updateThis: boolean): Promise<void>;
|
|
23
|
-
abstract IsDateTimePicture(): boolean;
|
|
24
|
-
abstract GetCurrReadOnly(): boolean;
|
|
25
|
-
abstract SetCurrReadOnly(newVal: boolean): void;
|
|
26
|
-
abstract getDisplayLine(useLineForItems: boolean): number;
|
|
27
|
-
refreshAndSetItemsList(line: number, execComputeChoice: boolean): Promise<void>;
|
|
28
|
-
refreshTabForLayerList(line: number): Promise<void>;
|
|
29
|
-
abstract getPIC(): PIC;
|
|
30
|
-
abstract resetPrevVal(): void;
|
|
31
|
-
abstract getField(): GuiFieldBase;
|
|
32
|
-
abstract expressionSetAsData(): boolean;
|
|
33
|
-
abstract clearRange(line: number): void;
|
|
34
|
-
ComputeAndRefreshDisplayValue(forceRefresh: boolean): Promise<void>;
|
|
35
|
-
refreshDispRange(execComputeChoice: boolean): Promise<string[]>;
|
|
36
|
-
abstract isPropertyRepeatable(propId: number): boolean;
|
|
37
|
-
abstract isVisible(): boolean;
|
|
38
|
-
abstract getProp(propId: number): any;
|
|
39
|
-
isParkable(checkEnabledAndVisible: boolean): Promise<boolean>;
|
|
40
|
-
}
|
|
@@ -1,17 +0,0 @@
|
|
|
1
|
-
import { GuiMgForm } from "../../gui/GuiMgForm";
|
|
2
|
-
import { GuiTaskBase } from "../tasks/GuiTaskBase";
|
|
3
|
-
import { GuiControlPropertyAdapter } from "./GuiControlPropertyAdapter";
|
|
4
|
-
import { MgControlType } from "@magic-xpa/utils";
|
|
5
|
-
export declare abstract class GuiFormPropertyAdapter extends GuiMgForm {
|
|
6
|
-
static IsFormTag(tagName: string): boolean;
|
|
7
|
-
static IsEndFormTag(tagName: string): boolean;
|
|
8
|
-
abstract getTask(): GuiTaskBase;
|
|
9
|
-
abstract isRefreshRepeatableAllowed(): boolean;
|
|
10
|
-
abstract isSubForm(): boolean;
|
|
11
|
-
abstract getSubFormCtrl(): GuiControlPropertyAdapter;
|
|
12
|
-
abstract getCtrlByName(ctrlName: string, ctrlType: MgControlType): GuiControlPropertyAdapter;
|
|
13
|
-
abstract getTableItemsCount(): number;
|
|
14
|
-
abstract fillName(formTag: string): void;
|
|
15
|
-
abstract checkAndCreateRow(idx: number): void;
|
|
16
|
-
abstract set DisplayLine(value: number);
|
|
17
|
-
}
|