@magic-xpa/engine 4.1100.0-dev4110.18 → 4.1100.0-dev4110.182

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.
Files changed (515) hide show
  1. package/{esm2020 → esm2022}/index.mjs +188 -188
  2. package/{esm2020 → esm2022}/magic-xpa-engine.mjs +1 -1
  3. package/esm2022/src/AccessHelper.mjs +15 -0
  4. package/esm2022/src/ClientManager.mjs +399 -0
  5. package/esm2022/src/CommandsProcessorBase.mjs +56 -0
  6. package/esm2022/src/CommandsProcessorManager.mjs +26 -0
  7. package/esm2022/src/CommandsTable.mjs +162 -0
  8. package/esm2022/src/ConstInterface.mjs +516 -0
  9. package/{esm2020 → esm2022}/src/CurrentClientVersion.mjs +2 -2
  10. package/esm2022/src/FlowMonitorInterface.mjs +16 -0
  11. package/esm2022/src/GUIManager.mjs +62 -0
  12. package/esm2022/src/GlobalCommandsManager.mjs +34 -0
  13. package/esm2022/src/GuiEventsProcessor.mjs +154 -0
  14. package/{esm2020 → esm2022}/src/ICommandsTable.mjs +1 -1
  15. package/esm2022/src/ServerConfig.mjs +118 -0
  16. package/{esm2020 → esm2022}/src/bridge/IGuiEvent.mjs +19 -19
  17. package/{esm2020 → esm2022}/src/bridge/MagicBridge.mjs +40 -40
  18. package/esm2022/src/commands/ClientOriginatedCommandTaskTag.mjs +12 -0
  19. package/{esm2020 → esm2022}/src/commands/ClientToServer/AddUserLocateDataViewCommand.mjs +8 -8
  20. package/{esm2020 → esm2022}/src/commands/ClientToServer/AddUserRangeDataviewCommand.mjs +9 -9
  21. package/{esm2020 → esm2022}/src/commands/ClientToServer/AddUserSortDataViewCommand.mjs +9 -9
  22. package/{esm2020 → esm2022}/src/commands/ClientToServer/BrowserEscEventCommand.mjs +23 -23
  23. package/{esm2020 → esm2022}/src/commands/ClientToServer/ClientOriginatedCommand.mjs +14 -14
  24. package/esm2022/src/commands/ClientToServer/ClientOriginatedCommandSerializer.mjs +60 -0
  25. package/{esm2020 → esm2022}/src/commands/ClientToServer/ColumnSortEventCommand.mjs +26 -26
  26. package/esm2022/src/commands/ClientToServer/CommandFactory.mjs +260 -0
  27. package/esm2022/src/commands/ClientToServer/CommandSerializationHelper.mjs +67 -0
  28. package/{esm2020 → esm2022}/src/commands/ClientToServer/ComputeEventCommand.mjs +23 -23
  29. package/{esm2020 → esm2022}/src/commands/ClientToServer/ContextTerminationEventCommand.mjs +20 -20
  30. package/{esm2020 → esm2022}/src/commands/ClientToServer/ContextTimeoutResetCommand.mjs +19 -19
  31. package/{esm2020 → esm2022}/src/commands/ClientToServer/ControlItemsRefreshCommand.mjs +8 -8
  32. package/esm2022/src/commands/ClientToServer/DataViewOutputCommand.mjs +13 -0
  33. package/{esm2020 → esm2022}/src/commands/ClientToServer/DataviewCommand.mjs +44 -44
  34. package/esm2022/src/commands/ClientToServer/EvaluateCommand.mjs +37 -0
  35. package/esm2022/src/commands/ClientToServer/EventCommand.mjs +40 -0
  36. package/esm2022/src/commands/ClientToServer/ExecOperCommand.mjs +67 -0
  37. package/esm2022/src/commands/ClientToServer/FetchDataControlValuesEventCommand.mjs +22 -0
  38. package/{esm2020 → esm2022}/src/commands/ClientToServer/GlobalParamsQueryCommand.mjs +10 -10
  39. package/{esm2020 → esm2022}/src/commands/ClientToServer/ICommandTaskTag.mjs +1 -1
  40. package/{esm2020 → esm2022}/src/commands/ClientToServer/IndexChangeEventCommand.mjs +21 -21
  41. package/esm2022/src/commands/ClientToServer/IniputForceWriteCommand.mjs +23 -0
  42. package/{esm2020 → esm2022}/src/commands/ClientToServer/NonReversibleExitEventCommand.mjs +23 -23
  43. package/{esm2020 → esm2022}/src/commands/ClientToServer/QueryCommand.mjs +20 -20
  44. package/esm2022/src/commands/ClientToServer/RecomputeCommand.mjs +27 -0
  45. package/esm2022/src/commands/ClientToServer/RefreshEventCommand.mjs +27 -0
  46. package/esm2022/src/commands/ClientToServer/RefreshScreenEventCommand.mjs +24 -0
  47. package/esm2022/src/commands/ClientToServer/RollbackEventCommand.mjs +40 -0
  48. package/{esm2020 → esm2022}/src/commands/ClientToServer/SelectProgramCommand.mjs +14 -14
  49. package/{esm2020 → esm2022}/src/commands/ClientToServer/SetTransactionStateDataviewCommand.mjs +9 -9
  50. package/{esm2020 → esm2022}/src/commands/ClientToServer/SubformOpenEventCommand.mjs +21 -21
  51. package/esm2022/src/commands/ClientToServer/SubformRefreshEventCommand.mjs +24 -0
  52. package/esm2022/src/commands/ClientToServer/TransactionCommand.mjs +30 -0
  53. package/{esm2020 → esm2022}/src/commands/ClientToServer/UnloadCommand.mjs +14 -14
  54. package/esm2022/src/commands/ClientToServer/WriteMessageToServerLogCommand.mjs +18 -0
  55. package/esm2022/src/commands/DataViewCommandBase.mjs +8 -0
  56. package/{esm2020 → esm2022}/src/commands/IClientCommand.mjs +1 -1
  57. package/esm2022/src/commands/IClientTargetedCommand.mjs +13 -0
  58. package/{esm2020 → esm2022}/src/commands/IClientToServerCommandInfo.mjs +1 -1
  59. package/esm2022/src/commands/ServerToClient/AbortCommand.mjs +65 -0
  60. package/{esm2020 → esm2022}/src/commands/ServerToClient/AddLocateCommand.mjs +21 -21
  61. package/esm2022/src/commands/ServerToClient/AddRangeCommand.mjs +62 -0
  62. package/esm2022/src/commands/ServerToClient/AddSortCommand.mjs +33 -0
  63. package/esm2022/src/commands/ServerToClient/ClientRefreshCommand.mjs +25 -0
  64. package/esm2022/src/commands/ServerToClient/ClientTargetedCommandBase.mjs +24 -0
  65. package/esm2022/src/commands/ServerToClient/EnhancedVerifyCommand.mjs +45 -0
  66. package/esm2022/src/commands/ServerToClient/OpenURLCommand.mjs +221 -0
  67. package/{esm2020 → esm2022}/src/commands/ServerToClient/ResetLocateCommand.mjs +14 -14
  68. package/{esm2020 → esm2022}/src/commands/ServerToClient/ResetRangeCommand.mjs +14 -14
  69. package/{esm2020 → esm2022}/src/commands/ServerToClient/ResetSortCommand.mjs +14 -14
  70. package/esm2022/src/commands/ServerToClient/ResultCommand.mjs +37 -0
  71. package/esm2022/src/commands/ServerToClient/VerifyCommand.mjs +83 -0
  72. package/esm2022/src/commands/ServerToClient/XMLBasedCommandBuilder.mjs +132 -0
  73. package/{esm2020 → esm2022}/src/communications/IConnectionStateManager.mjs +1 -1
  74. package/esm2022/src/communications/InteractiveCommunicationsFailureHandler.mjs +15 -0
  75. package/{esm2020 → esm2022}/src/data/DataSourceIdKey.mjs +2 -2
  76. package/esm2022/src/data/DataView.mjs +1611 -0
  77. package/{esm2020 → esm2022}/src/data/DataViewBase.mjs +3 -3
  78. package/esm2022/src/data/DataviewManager.mjs +28 -0
  79. package/esm2022/src/data/DataviewManagerBase.mjs +15 -0
  80. package/esm2022/src/data/DvCache.mjs +67 -0
  81. package/esm2022/src/data/Field.mjs +646 -0
  82. package/esm2022/src/data/FieldBase.mjs +15 -0
  83. package/esm2022/src/data/FieldsTable.mjs +103 -0
  84. package/{esm2020 → esm2022}/src/data/IRecordsTable.mjs +1 -1
  85. package/esm2022/src/data/Key.mjs +88 -0
  86. package/esm2022/src/data/Record.mjs +866 -0
  87. package/{esm2020 → esm2022}/src/data/RecordOutOfDataViewException.mjs +15 -15
  88. package/esm2022/src/data/RecordsTable.mjs +267 -0
  89. package/esm2022/src/data/TaskTransactionManager.mjs +103 -0
  90. package/esm2022/src/data/XMLBasedDcValuesBuilder.mjs +74 -0
  91. package/{esm2020 → esm2022}/src/enums.mjs +23 -23
  92. package/esm2022/src/env/EnvVariablesTable.mjs +340 -0
  93. package/esm2022/src/env/Environment.mjs +487 -0
  94. package/{esm2020 → esm2022}/src/env/ILanguageData.mjs +1 -1
  95. package/esm2022/src/env/LanguageData.mjs +226 -0
  96. package/esm2022/src/env/MirrorString.mjs +65 -0
  97. package/esm2022/src/event/ActionManager.mjs +91 -0
  98. package/esm2022/src/event/Event.mjs +1333 -0
  99. package/esm2022/src/event/EventHandler.mjs +766 -0
  100. package/esm2022/src/event/EventHandlerPosition.mjs +204 -0
  101. package/esm2022/src/event/EventsManager.mjs +2975 -0
  102. package/{esm2020 → esm2022}/src/event/IEventsManager.mjs +6 -6
  103. package/esm2022/src/event/RunTimeEvent.mjs +392 -0
  104. package/{esm2020 → esm2022}/src/event/RunTimeEventBase.mjs +3 -3
  105. package/esm2022/src/event/UserEventsTable.mjs +47 -0
  106. package/esm2022/src/exp/ExpTable.mjs +57 -0
  107. package/esm2022/src/exp/Expression.mjs +200 -0
  108. package/esm2022/src/exp/ExpressionDict.mjs +727 -0
  109. package/esm2022/src/exp/ExpressionEvaluator.mjs +4206 -0
  110. package/esm2022/src/exp/ExpressionLocalJpn.mjs +314 -0
  111. package/esm2022/src/exp/GlobalParamsTable.mjs +85 -0
  112. package/esm2022/src/exp/YesNoExp.mjs +36 -0
  113. package/esm2022/src/gui/CreatedFormVector.mjs +23 -0
  114. package/esm2022/src/gui/FormsTable.mjs +66 -0
  115. package/esm2022/src/gui/MgControl.mjs +363 -0
  116. package/esm2022/src/gui/MgForm.mjs +1181 -0
  117. package/esm2022/src/http/HttpManager.mjs +97 -0
  118. package/esm2022/src/http/client/HttpClientAsync.mjs +68 -0
  119. package/esm2022/src/http/client/HttpClientBase.mjs +132 -0
  120. package/esm2022/src/http/client/HttpClientEvents.mjs +39 -0
  121. package/esm2022/src/http/client/HttpClientSync.mjs +42 -0
  122. package/esm2022/src/http/client/HttpUtility.mjs +84 -0
  123. package/{esm2020 → esm2022}/src/http/client/ICommunicationsFailureHandler.mjs +1 -1
  124. package/esm2022/src/remote/AddUserLocateRemoteDataViewCommand.mjs +18 -0
  125. package/esm2022/src/remote/AddUserRangeRemoteDataViewCommand.mjs +18 -0
  126. package/esm2022/src/remote/AddUserSortRemoteDataViewCommand.mjs +18 -0
  127. package/esm2022/src/remote/RemoteCommandsProcessor.mjs +882 -0
  128. package/esm2022/src/remote/RemoteControlItemsRefreshCommand.mjs +25 -0
  129. package/esm2022/src/remote/RemoteDataViewCommandBase.mjs +24 -0
  130. package/esm2022/src/remote/RemoteDataViewCommandFactory.mjs +61 -0
  131. package/{esm2020 → esm2022}/src/remote/RemoteDataViewCommandUpdateNonModifiable.mjs +15 -15
  132. package/{esm2020 → esm2022}/src/remote/RemoteDataviewManager.mjs +17 -17
  133. package/{esm2020 → esm2022}/src/remote/RemoteInitDataViewCommand.mjs +10 -10
  134. package/esm2022/src/remote/ResetUserLocateRemoteDataviewCommand.mjs +17 -0
  135. package/{esm2020 → esm2022}/src/remote/ResetUserRangeRemoteDataviewCommand.mjs +12 -12
  136. package/esm2022/src/remote/ResetUserSortRemoteDataviewCommand.mjs +16 -0
  137. package/esm2022/src/remote/ServerError.mjs +40 -0
  138. package/esm2022/src/remote/SetTransactionStateRemoteDataViewCommand.mjs +20 -0
  139. package/esm2022/src/rt/Argument.mjs +265 -0
  140. package/esm2022/src/rt/ArgumentsList.mjs +103 -0
  141. package/esm2022/src/rt/Boundary.mjs +152 -0
  142. package/esm2022/src/rt/CompMainPrgTable.mjs +63 -0
  143. package/{esm2020 → esm2022}/src/rt/DataviewHeaderBase.mjs +98 -96
  144. package/{esm2020 → esm2022}/src/rt/DataviewHeaderFactory.mjs +6 -6
  145. package/esm2022/src/rt/DataviewHeaders.mjs +53 -0
  146. package/esm2022/src/rt/DataviewHeadersSaxHandler.mjs +38 -0
  147. package/esm2022/src/rt/ExecutionStack.mjs +94 -0
  148. package/{esm2020 → esm2022}/src/rt/ExecutionStackEntry.mjs +17 -17
  149. package/esm2022/src/rt/HandlersTable.mjs +96 -0
  150. package/{esm2020 → esm2022}/src/rt/IDataSourceViewDefinition.mjs +1 -1
  151. package/{esm2020 → esm2022}/src/rt/IDataviewHeader.mjs +1 -1
  152. package/{esm2020 → esm2022}/src/rt/IResultValue.mjs +1 -1
  153. package/esm2022/src/rt/LastFocusedManager.mjs +65 -0
  154. package/esm2022/src/rt/Operation.mjs +735 -0
  155. package/esm2022/src/rt/OperationTable.mjs +67 -0
  156. package/esm2022/src/rt/Recompute.mjs +355 -0
  157. package/esm2022/src/rt/RecomputeTable.mjs +63 -0
  158. package/esm2022/src/rt/RemoteDataviewHeader.mjs +108 -0
  159. package/esm2022/src/rt/ResultValue.mjs +10 -0
  160. package/esm2022/src/rt/TableCache.mjs +177 -0
  161. package/esm2022/src/rt/TableCacheManager.mjs +67 -0
  162. package/esm2022/src/rt/Transaction.mjs +53 -0
  163. package/esm2022/src/security/UserDetails.mjs +71 -0
  164. package/{esm2020 → esm2022}/src/tasks/IMGDataCollection.mjs +1 -1
  165. package/esm2022/src/tasks/MGData.mjs +552 -0
  166. package/esm2022/src/tasks/MGDataCollection.mjs +252 -0
  167. package/esm2022/src/tasks/RCTimer.mjs +63 -0
  168. package/esm2022/src/tasks/RemoteTaskService.mjs +45 -0
  169. package/esm2022/src/tasks/Task.mjs +2497 -0
  170. package/esm2022/src/tasks/TaskBase.mjs +83 -0
  171. package/esm2022/src/tasks/TaskServiceBase.mjs +25 -0
  172. package/esm2022/src/tasks/TasksTable.mjs +80 -0
  173. package/esm2022/src/tasks/sort/Sort.mjs +5 -0
  174. package/esm2022/src/tasks/sort/SortCollection.mjs +67 -0
  175. package/esm2022/src/util/ConstUtils.mjs +14 -0
  176. package/esm2022/src/util/FlowMonitorQueue.mjs +451 -0
  177. package/esm2022/src/util/HeapSort.mjs +70 -0
  178. package/{esm2020 → esm2022}/src/util/IMirrorXML.mjs +1 -1
  179. package/{esm2020 → esm2022}/src/util/IServerConfig.mjs +1 -1
  180. package/{esm2020 → esm2022}/src/util/MgBlockingQueue.mjs +1 -1
  181. package/esm2022/src/util/MgPriorityBlockingQueue.mjs +74 -0
  182. package/esm2022/src/util/MgPriorityQueue.mjs +66 -0
  183. package/{esm2020 → esm2022}/src/util/ParamParseResult.mjs +7 -7
  184. package/esm2022/src/util/PrmMap.mjs +152 -0
  185. package/esm2022/src/util/ReturnResult.mjs +46 -0
  186. package/esm2022/src/util/ReturnResultBase.mjs +18 -0
  187. package/esm2022/src/util/Scrambler.mjs +89 -0
  188. package/esm2022/src/util/UniqueIDUtils.mjs +13 -0
  189. package/esm2022/src/util/cookie.service.mjs +92 -0
  190. package/{fesm2020 → fesm2022}/magic-xpa-engine.mjs +29711 -29693
  191. package/fesm2022/magic-xpa-engine.mjs.map +1 -0
  192. package/index.d.ts +187 -187
  193. package/package.json +8 -14
  194. package/src/AccessHelper.d.ts +20 -20
  195. package/src/ClientManager.d.ts +32 -32
  196. package/src/CommandsProcessorBase.d.ts +23 -23
  197. package/src/CommandsProcessorManager.d.ts +6 -6
  198. package/src/CommandsTable.d.ts +22 -22
  199. package/src/ConstInterface.d.ts +515 -515
  200. package/src/CurrentClientVersion.d.ts +1 -1
  201. package/src/FlowMonitorInterface.d.ts +15 -15
  202. package/src/GUIManager.d.ts +17 -17
  203. package/src/GlobalCommandsManager.d.ts +17 -17
  204. package/src/GuiEventsProcessor.d.ts +24 -24
  205. package/src/ICommandsTable.d.ts +9 -9
  206. package/src/ServerConfig.d.ts +34 -34
  207. package/src/bridge/IGuiEvent.d.ts +19 -19
  208. package/src/bridge/MagicBridge.d.ts +16 -16
  209. package/src/commands/ClientOriginatedCommandTaskTag.d.ts +8 -8
  210. package/src/commands/ClientToServer/AddUserLocateDataViewCommand.d.ts +4 -4
  211. package/src/commands/ClientToServer/AddUserRangeDataviewCommand.d.ts +6 -6
  212. package/src/commands/ClientToServer/AddUserSortDataViewCommand.d.ts +6 -6
  213. package/src/commands/ClientToServer/BrowserEscEventCommand.d.ts +8 -8
  214. package/src/commands/ClientToServer/ClientOriginatedCommand.d.ts +8 -8
  215. package/src/commands/ClientToServer/ClientOriginatedCommandSerializer.d.ts +6 -6
  216. package/src/commands/ClientToServer/ColumnSortEventCommand.d.ts +10 -10
  217. package/src/commands/ClientToServer/CommandFactory.d.ts +64 -64
  218. package/src/commands/ClientToServer/CommandSerializationHelper.d.ts +20 -20
  219. package/src/commands/ClientToServer/ComputeEventCommand.d.ts +8 -8
  220. package/src/commands/ClientToServer/ContextTerminationEventCommand.d.ts +7 -7
  221. package/src/commands/ClientToServer/ContextTimeoutResetCommand.d.ts +7 -7
  222. package/src/commands/ClientToServer/ControlItemsRefreshCommand.d.ts +6 -6
  223. package/src/commands/ClientToServer/DataViewOutputCommand.d.ts +9 -9
  224. package/src/commands/ClientToServer/DataviewCommand.d.ts +32 -32
  225. package/src/commands/ClientToServer/EvaluateCommand.d.ts +15 -15
  226. package/src/commands/ClientToServer/EventCommand.d.ts +15 -15
  227. package/src/commands/ClientToServer/ExecOperCommand.d.ts +23 -23
  228. package/src/commands/ClientToServer/FetchDataControlValuesEventCommand.d.ts +8 -8
  229. package/src/commands/ClientToServer/GlobalParamsQueryCommand.d.ts +5 -5
  230. package/src/commands/ClientToServer/ICommandTaskTag.d.ts +3 -3
  231. package/src/commands/ClientToServer/IndexChangeEventCommand.d.ts +8 -8
  232. package/src/commands/ClientToServer/IniputForceWriteCommand.d.ts +10 -10
  233. package/src/commands/ClientToServer/NonReversibleExitEventCommand.d.ts +8 -8
  234. package/src/commands/ClientToServer/QueryCommand.d.ts +8 -8
  235. package/src/commands/ClientToServer/RecomputeCommand.d.ts +11 -11
  236. package/src/commands/ClientToServer/RefreshEventCommand.d.ts +12 -12
  237. package/src/commands/ClientToServer/RefreshScreenEventCommand.d.ts +10 -10
  238. package/src/commands/ClientToServer/RollbackEventCommand.d.ts +14 -14
  239. package/src/commands/ClientToServer/SelectProgramCommand.d.ts +6 -6
  240. package/src/commands/ClientToServer/SetTransactionStateDataviewCommand.d.ts +5 -5
  241. package/src/commands/ClientToServer/SubformOpenEventCommand.d.ts +8 -8
  242. package/src/commands/ClientToServer/SubformRefreshEventCommand.d.ts +9 -9
  243. package/src/commands/ClientToServer/TransactionCommand.d.ts +12 -12
  244. package/src/commands/ClientToServer/UnloadCommand.d.ts +7 -7
  245. package/src/commands/ClientToServer/WriteMessageToServerLogCommand.d.ts +6 -6
  246. package/src/commands/DataViewCommandBase.d.ts +6 -6
  247. package/src/commands/IClientCommand.d.ts +2 -2
  248. package/src/commands/IClientTargetedCommand.d.ts +12 -12
  249. package/src/commands/IClientToServerCommandInfo.d.ts +3 -3
  250. package/src/commands/ServerToClient/AbortCommand.d.ts +11 -11
  251. package/src/commands/ServerToClient/AddLocateCommand.d.ts +6 -6
  252. package/src/commands/ServerToClient/AddRangeCommand.d.ts +10 -10
  253. package/src/commands/ServerToClient/AddSortCommand.d.ts +9 -9
  254. package/src/commands/ServerToClient/ClientRefreshCommand.d.ts +7 -7
  255. package/src/commands/ServerToClient/ClientTargetedCommandBase.d.ts +12 -12
  256. package/src/commands/ServerToClient/EnhancedVerifyCommand.d.ts +13 -13
  257. package/src/commands/ServerToClient/OpenURLCommand.d.ts +21 -21
  258. package/src/commands/ServerToClient/ResetLocateCommand.d.ts +6 -6
  259. package/src/commands/ServerToClient/ResetRangeCommand.d.ts +6 -6
  260. package/src/commands/ServerToClient/ResetSortCommand.d.ts +6 -6
  261. package/src/commands/ServerToClient/ResultCommand.d.ts +10 -10
  262. package/src/commands/ServerToClient/VerifyCommand.d.ts +17 -17
  263. package/src/commands/ServerToClient/XMLBasedCommandBuilder.d.ts +11 -11
  264. package/src/communications/IConnectionStateManager.d.ts +4 -4
  265. package/src/communications/InteractiveCommunicationsFailureHandler.d.ts +6 -6
  266. package/src/data/DataSourceIdKey.d.ts +2 -2
  267. package/src/data/DataView.d.ts +162 -162
  268. package/src/data/DataViewBase.d.ts +12 -12
  269. package/src/data/DataviewManager.d.ts +14 -14
  270. package/src/data/DataviewManagerBase.d.ts +11 -11
  271. package/src/data/DvCache.d.ts +15 -15
  272. package/src/data/Field.d.ts +103 -103
  273. package/src/data/FieldBase.d.ts +23 -23
  274. package/src/data/FieldsTable.d.ts +27 -27
  275. package/src/data/IRecordsTable.d.ts +7 -7
  276. package/src/data/Key.d.ts +15 -15
  277. package/src/data/Record.d.ts +156 -156
  278. package/src/data/RecordOutOfDataViewException.d.ts +10 -10
  279. package/src/data/RecordsTable.d.ts +38 -38
  280. package/src/data/TaskTransactionManager.d.ts +17 -17
  281. package/src/data/XMLBasedDcValuesBuilder.d.ts +11 -11
  282. package/src/enums.d.ts +21 -21
  283. package/src/env/EnvVariablesTable.d.ts +17 -17
  284. package/src/env/Environment.d.ts +118 -118
  285. package/src/env/ILanguageData.d.ts +3 -3
  286. package/src/env/LanguageData.d.ts +20 -20
  287. package/src/env/MirrorString.d.ts +15 -15
  288. package/src/event/ActionManager.d.ts +14 -14
  289. package/src/event/Event.d.ts +79 -79
  290. package/src/event/EventHandler.d.ts +66 -66
  291. package/src/event/EventHandlerPosition.d.ts +25 -25
  292. package/src/event/EventsManager.d.ts +204 -204
  293. package/src/event/IEventsManager.d.ts +77 -77
  294. package/src/event/RunTimeEvent.d.ts +123 -123
  295. package/src/event/RunTimeEventBase.d.ts +5 -5
  296. package/src/event/UserEventsTable.d.ts +11 -11
  297. package/src/exp/ExpTable.d.ts +11 -11
  298. package/src/exp/Expression.d.ts +37 -37
  299. package/src/exp/ExpressionDict.d.ts +12 -12
  300. package/src/exp/ExpressionEvaluator.d.ts +198 -198
  301. package/src/exp/ExpressionLocalJpn.d.ts +18 -18
  302. package/src/exp/GlobalParamsTable.d.ts +19 -19
  303. package/src/exp/YesNoExp.d.ts +9 -9
  304. package/src/gui/CreatedFormVector.d.ts +10 -10
  305. package/src/gui/FormsTable.d.ts +15 -15
  306. package/src/gui/MgControl.d.ts +60 -60
  307. package/src/gui/MgForm.d.ts +93 -93
  308. package/src/http/HttpManager.d.ts +25 -25
  309. package/src/http/client/HttpClientAsync.d.ts +16 -16
  310. package/src/http/client/HttpClientBase.d.ts +30 -30
  311. package/src/http/client/HttpClientEvents.d.ts +18 -18
  312. package/src/http/client/HttpClientSync.d.ts +17 -17
  313. package/src/http/client/HttpUtility.d.ts +10 -10
  314. package/src/http/client/ICommunicationsFailureHandler.d.ts +5 -5
  315. package/src/remote/AddUserLocateRemoteDataViewCommand.d.ts +8 -8
  316. package/src/remote/AddUserRangeRemoteDataViewCommand.d.ts +8 -8
  317. package/src/remote/AddUserSortRemoteDataViewCommand.d.ts +8 -8
  318. package/src/remote/RemoteCommandsProcessor.d.ts +51 -51
  319. package/src/remote/RemoteControlItemsRefreshCommand.d.ts +8 -8
  320. package/src/remote/RemoteDataViewCommandBase.d.ts +10 -10
  321. package/src/remote/RemoteDataViewCommandFactory.d.ts +6 -6
  322. package/src/remote/RemoteDataViewCommandUpdateNonModifiable.d.ts +8 -8
  323. package/src/remote/RemoteDataviewManager.d.ts +9 -9
  324. package/src/remote/RemoteInitDataViewCommand.d.ts +7 -7
  325. package/src/remote/ResetUserLocateRemoteDataviewCommand.d.ts +7 -7
  326. package/src/remote/ResetUserRangeRemoteDataviewCommand.d.ts +7 -7
  327. package/src/remote/ResetUserSortRemoteDataviewCommand.d.ts +7 -7
  328. package/src/remote/ServerError.d.ts +16 -16
  329. package/src/remote/SetTransactionStateRemoteDataViewCommand.d.ts +8 -8
  330. package/src/rt/Argument.d.ts +36 -36
  331. package/src/rt/ArgumentsList.d.ts +24 -24
  332. package/src/rt/Boundary.d.ts +27 -27
  333. package/src/rt/CompMainPrgTable.d.ts +10 -10
  334. package/src/rt/DataviewHeaderBase.d.ts +34 -34
  335. package/src/rt/DataviewHeaderFactory.d.ts +5 -5
  336. package/src/rt/DataviewHeaders.d.ts +12 -12
  337. package/src/rt/DataviewHeadersSaxHandler.d.ts +10 -10
  338. package/src/rt/ExecutionStack.d.ts +22 -22
  339. package/src/rt/ExecutionStackEntry.d.ts +7 -7
  340. package/src/rt/HandlersTable.d.ts +19 -19
  341. package/src/rt/IDataSourceViewDefinition.d.ts +6 -6
  342. package/src/rt/IDataviewHeader.d.ts +10 -10
  343. package/src/rt/IResultValue.d.ts +4 -4
  344. package/src/rt/LastFocusedManager.d.ts +23 -23
  345. package/src/rt/Operation.d.ts +97 -97
  346. package/src/rt/OperationTable.d.ts +15 -15
  347. package/src/rt/Recompute.d.ts +41 -41
  348. package/src/rt/RecomputeTable.d.ts +9 -9
  349. package/src/rt/RemoteDataviewHeader.d.ts +14 -14
  350. package/src/rt/ResultValue.d.ts +7 -7
  351. package/src/rt/TableCache.d.ts +29 -29
  352. package/src/rt/TableCacheManager.d.ts +10 -10
  353. package/src/rt/Transaction.d.ts +23 -23
  354. package/src/security/UserDetails.d.ts +16 -16
  355. package/src/tasks/IMGDataCollection.d.ts +26 -26
  356. package/src/tasks/MGData.d.ts +63 -63
  357. package/src/tasks/MGDataCollection.d.ts +42 -42
  358. package/src/tasks/RCTimer.d.ts +13 -13
  359. package/src/tasks/RemoteTaskService.d.ts +16 -16
  360. package/src/tasks/Task.d.ts +312 -312
  361. package/src/tasks/TaskBase.d.ts +123 -123
  362. package/src/tasks/TaskServiceBase.d.ts +16 -16
  363. package/src/tasks/TasksTable.d.ts +21 -21
  364. package/src/tasks/sort/Sort.d.ts +4 -4
  365. package/src/tasks/sort/SortCollection.d.ts +11 -11
  366. package/src/util/ConstUtils.d.ts +3 -3
  367. package/src/util/FlowMonitorQueue.d.ts +70 -70
  368. package/src/util/HeapSort.d.ts +6 -6
  369. package/src/util/IMirrorXML.d.ts +6 -6
  370. package/src/util/IServerConfig.d.ts +11 -11
  371. package/src/util/MgBlockingQueue.d.ts +5 -5
  372. package/src/util/MgPriorityBlockingQueue.d.ts +17 -17
  373. package/src/util/MgPriorityQueue.d.ts +13 -13
  374. package/src/util/ParamParseResult.d.ts +6 -6
  375. package/src/util/PrmMap.d.ts +28 -28
  376. package/src/util/ReturnResult.d.ts +18 -18
  377. package/src/util/ReturnResultBase.d.ts +11 -11
  378. package/src/util/Scrambler.d.ts +10 -10
  379. package/src/util/UniqueIDUtils.d.ts +4 -4
  380. package/src/util/cookie.service.d.ts +8 -8
  381. package/esm2020/src/AccessHelper.mjs +0 -9
  382. package/esm2020/src/ClientManager.mjs +0 -399
  383. package/esm2020/src/CommandsProcessorBase.mjs +0 -58
  384. package/esm2020/src/CommandsProcessorManager.mjs +0 -26
  385. package/esm2020/src/CommandsTable.mjs +0 -162
  386. package/esm2020/src/ConstInterface.mjs +0 -516
  387. package/esm2020/src/FlowMonitorInterface.mjs +0 -16
  388. package/esm2020/src/GUIManager.mjs +0 -62
  389. package/esm2020/src/GlobalCommandsManager.mjs +0 -34
  390. package/esm2020/src/GuiEventsProcessor.mjs +0 -154
  391. package/esm2020/src/ServerConfig.mjs +0 -117
  392. package/esm2020/src/commands/ClientOriginatedCommandTaskTag.mjs +0 -11
  393. package/esm2020/src/commands/ClientToServer/ClientOriginatedCommandSerializer.mjs +0 -60
  394. package/esm2020/src/commands/ClientToServer/CommandFactory.mjs +0 -260
  395. package/esm2020/src/commands/ClientToServer/CommandSerializationHelper.mjs +0 -69
  396. package/esm2020/src/commands/ClientToServer/DataViewOutputCommand.mjs +0 -13
  397. package/esm2020/src/commands/ClientToServer/EvaluateCommand.mjs +0 -36
  398. package/esm2020/src/commands/ClientToServer/EventCommand.mjs +0 -40
  399. package/esm2020/src/commands/ClientToServer/ExecOperCommand.mjs +0 -67
  400. package/esm2020/src/commands/ClientToServer/FetchDataControlValuesEventCommand.mjs +0 -22
  401. package/esm2020/src/commands/ClientToServer/IniputForceWriteCommand.mjs +0 -23
  402. package/esm2020/src/commands/ClientToServer/RecomputeCommand.mjs +0 -27
  403. package/esm2020/src/commands/ClientToServer/RefreshEventCommand.mjs +0 -27
  404. package/esm2020/src/commands/ClientToServer/RefreshScreenEventCommand.mjs +0 -24
  405. package/esm2020/src/commands/ClientToServer/RollbackEventCommand.mjs +0 -39
  406. package/esm2020/src/commands/ClientToServer/SubformRefreshEventCommand.mjs +0 -24
  407. package/esm2020/src/commands/ClientToServer/TransactionCommand.mjs +0 -28
  408. package/esm2020/src/commands/ClientToServer/WriteMessageToServerLogCommand.mjs +0 -18
  409. package/esm2020/src/commands/DataViewCommandBase.mjs +0 -10
  410. package/esm2020/src/commands/IClientTargetedCommand.mjs +0 -9
  411. package/esm2020/src/commands/ServerToClient/AbortCommand.mjs +0 -65
  412. package/esm2020/src/commands/ServerToClient/AddRangeCommand.mjs +0 -62
  413. package/esm2020/src/commands/ServerToClient/AddSortCommand.mjs +0 -33
  414. package/esm2020/src/commands/ServerToClient/ClientRefreshCommand.mjs +0 -25
  415. package/esm2020/src/commands/ServerToClient/ClientTargetedCommandBase.mjs +0 -27
  416. package/esm2020/src/commands/ServerToClient/EnhancedVerifyCommand.mjs +0 -45
  417. package/esm2020/src/commands/ServerToClient/OpenURLCommand.mjs +0 -221
  418. package/esm2020/src/commands/ServerToClient/ResultCommand.mjs +0 -37
  419. package/esm2020/src/commands/ServerToClient/VerifyCommand.mjs +0 -83
  420. package/esm2020/src/commands/ServerToClient/XMLBasedCommandBuilder.mjs +0 -132
  421. package/esm2020/src/communications/InteractiveCommunicationsFailureHandler.mjs +0 -17
  422. package/esm2020/src/data/DataView.mjs +0 -1610
  423. package/esm2020/src/data/DataviewManager.mjs +0 -28
  424. package/esm2020/src/data/DataviewManagerBase.mjs +0 -15
  425. package/esm2020/src/data/DvCache.mjs +0 -67
  426. package/esm2020/src/data/Field.mjs +0 -646
  427. package/esm2020/src/data/FieldBase.mjs +0 -18
  428. package/esm2020/src/data/FieldsTable.mjs +0 -103
  429. package/esm2020/src/data/Key.mjs +0 -88
  430. package/esm2020/src/data/Record.mjs +0 -846
  431. package/esm2020/src/data/RecordsTable.mjs +0 -267
  432. package/esm2020/src/data/TaskTransactionManager.mjs +0 -103
  433. package/esm2020/src/data/XMLBasedDcValuesBuilder.mjs +0 -74
  434. package/esm2020/src/env/EnvVariablesTable.mjs +0 -340
  435. package/esm2020/src/env/Environment.mjs +0 -489
  436. package/esm2020/src/env/LanguageData.mjs +0 -226
  437. package/esm2020/src/env/MirrorString.mjs +0 -65
  438. package/esm2020/src/event/ActionManager.mjs +0 -91
  439. package/esm2020/src/event/Event.mjs +0 -1333
  440. package/esm2020/src/event/EventHandler.mjs +0 -766
  441. package/esm2020/src/event/EventHandlerPosition.mjs +0 -204
  442. package/esm2020/src/event/EventsManager.mjs +0 -2975
  443. package/esm2020/src/event/RunTimeEvent.mjs +0 -392
  444. package/esm2020/src/event/UserEventsTable.mjs +0 -47
  445. package/esm2020/src/exp/ExpTable.mjs +0 -59
  446. package/esm2020/src/exp/Expression.mjs +0 -200
  447. package/esm2020/src/exp/ExpressionDict.mjs +0 -727
  448. package/esm2020/src/exp/ExpressionEvaluator.mjs +0 -4212
  449. package/esm2020/src/exp/ExpressionLocalJpn.mjs +0 -314
  450. package/esm2020/src/exp/GlobalParamsTable.mjs +0 -85
  451. package/esm2020/src/exp/YesNoExp.mjs +0 -36
  452. package/esm2020/src/gui/CreatedFormVector.mjs +0 -23
  453. package/esm2020/src/gui/FormsTable.mjs +0 -66
  454. package/esm2020/src/gui/MgControl.mjs +0 -353
  455. package/esm2020/src/gui/MgForm.mjs +0 -1181
  456. package/esm2020/src/http/HttpManager.mjs +0 -97
  457. package/esm2020/src/http/client/HttpClientAsync.mjs +0 -67
  458. package/esm2020/src/http/client/HttpClientBase.mjs +0 -132
  459. package/esm2020/src/http/client/HttpClientEvents.mjs +0 -39
  460. package/esm2020/src/http/client/HttpClientSync.mjs +0 -42
  461. package/esm2020/src/http/client/HttpUtility.mjs +0 -84
  462. package/esm2020/src/remote/AddUserLocateRemoteDataViewCommand.mjs +0 -18
  463. package/esm2020/src/remote/AddUserRangeRemoteDataViewCommand.mjs +0 -18
  464. package/esm2020/src/remote/AddUserSortRemoteDataViewCommand.mjs +0 -18
  465. package/esm2020/src/remote/RemoteCommandsProcessor.mjs +0 -880
  466. package/esm2020/src/remote/RemoteControlItemsRefreshCommand.mjs +0 -25
  467. package/esm2020/src/remote/RemoteDataViewCommandBase.mjs +0 -24
  468. package/esm2020/src/remote/RemoteDataViewCommandFactory.mjs +0 -61
  469. package/esm2020/src/remote/ResetUserLocateRemoteDataviewCommand.mjs +0 -17
  470. package/esm2020/src/remote/ResetUserSortRemoteDataviewCommand.mjs +0 -16
  471. package/esm2020/src/remote/ServerError.mjs +0 -40
  472. package/esm2020/src/remote/SetTransactionStateRemoteDataViewCommand.mjs +0 -20
  473. package/esm2020/src/rt/Argument.mjs +0 -265
  474. package/esm2020/src/rt/ArgumentsList.mjs +0 -103
  475. package/esm2020/src/rt/Boundary.mjs +0 -152
  476. package/esm2020/src/rt/CompMainPrgTable.mjs +0 -65
  477. package/esm2020/src/rt/DataviewHeaders.mjs +0 -53
  478. package/esm2020/src/rt/DataviewHeadersSaxHandler.mjs +0 -38
  479. package/esm2020/src/rt/ExecutionStack.mjs +0 -94
  480. package/esm2020/src/rt/HandlersTable.mjs +0 -96
  481. package/esm2020/src/rt/LastFocusedManager.mjs +0 -67
  482. package/esm2020/src/rt/Operation.mjs +0 -735
  483. package/esm2020/src/rt/OperationTable.mjs +0 -67
  484. package/esm2020/src/rt/Recompute.mjs +0 -355
  485. package/esm2020/src/rt/RecomputeTable.mjs +0 -63
  486. package/esm2020/src/rt/RemoteDataviewHeader.mjs +0 -108
  487. package/esm2020/src/rt/ResultValue.mjs +0 -12
  488. package/esm2020/src/rt/TableCache.mjs +0 -177
  489. package/esm2020/src/rt/TableCacheManager.mjs +0 -67
  490. package/esm2020/src/rt/Transaction.mjs +0 -53
  491. package/esm2020/src/security/UserDetails.mjs +0 -71
  492. package/esm2020/src/tasks/MGData.mjs +0 -552
  493. package/esm2020/src/tasks/MGDataCollection.mjs +0 -252
  494. package/esm2020/src/tasks/RCTimer.mjs +0 -63
  495. package/esm2020/src/tasks/RemoteTaskService.mjs +0 -45
  496. package/esm2020/src/tasks/Task.mjs +0 -2495
  497. package/esm2020/src/tasks/TaskBase.mjs +0 -87
  498. package/esm2020/src/tasks/TaskServiceBase.mjs +0 -25
  499. package/esm2020/src/tasks/TasksTable.mjs +0 -80
  500. package/esm2020/src/tasks/sort/Sort.mjs +0 -7
  501. package/esm2020/src/tasks/sort/SortCollection.mjs +0 -67
  502. package/esm2020/src/util/ConstUtils.mjs +0 -14
  503. package/esm2020/src/util/FlowMonitorQueue.mjs +0 -453
  504. package/esm2020/src/util/HeapSort.mjs +0 -70
  505. package/esm2020/src/util/MgPriorityBlockingQueue.mjs +0 -74
  506. package/esm2020/src/util/MgPriorityQueue.mjs +0 -66
  507. package/esm2020/src/util/PrmMap.mjs +0 -151
  508. package/esm2020/src/util/ReturnResult.mjs +0 -46
  509. package/esm2020/src/util/ReturnResultBase.mjs +0 -18
  510. package/esm2020/src/util/Scrambler.mjs +0 -89
  511. package/esm2020/src/util/UniqueIDUtils.mjs +0 -12
  512. package/esm2020/src/util/cookie.service.mjs +0 -92
  513. package/fesm2015/magic-xpa-engine.mjs +0 -30835
  514. package/fesm2015/magic-xpa-engine.mjs.map +0 -1
  515. package/fesm2020/magic-xpa-engine.mjs.map +0 -1
@@ -1 +1 @@
1
- export declare let CurrentClientVersion: string;
1
+ export declare let CurrentClientVersion: string;
@@ -1,15 +1,15 @@
1
- export declare class FlowMonitorInterface {
2
- static FLWMTR_START: number;
3
- static FLWMTR_END: number;
4
- static FLWMTR_PROPAGATE: number;
5
- static FLWMTR_EVENT: number;
6
- static FLWMTR_CHNG_MODE: number;
7
- static FLWMTR_PREFIX: number;
8
- static FLWMTR_SUFFIX: number;
9
- static FLWMTR_CTRL_PREFIX: number;
10
- static FLWMTR_CTRL_SUFFIX: number;
11
- static FLWMTR_TSK_HANDLER: number;
12
- static FLWMTR_RECOMP: number;
13
- static FLWMTR_DATA_OPER: number;
14
- static FLWMTR_VARCHG_VALUE: number;
15
- }
1
+ export declare class FlowMonitorInterface {
2
+ static FLWMTR_START: number;
3
+ static FLWMTR_END: number;
4
+ static FLWMTR_PROPAGATE: number;
5
+ static FLWMTR_EVENT: number;
6
+ static FLWMTR_CHNG_MODE: number;
7
+ static FLWMTR_PREFIX: number;
8
+ static FLWMTR_SUFFIX: number;
9
+ static FLWMTR_CTRL_PREFIX: number;
10
+ static FLWMTR_CTRL_SUFFIX: number;
11
+ static FLWMTR_TSK_HANDLER: number;
12
+ static FLWMTR_RECOMP: number;
13
+ static FLWMTR_DATA_OPER: number;
14
+ static FLWMTR_VARCHG_VALUE: number;
15
+ }
@@ -1,17 +1,17 @@
1
- import { MGData } from './tasks/MGData';
2
- import { MgForm } from './gui/MgForm';
3
- export declare class GUIManager {
4
- private static _instance;
5
- static get Instance(): GUIManager;
6
- execGuiCommandQueue(): void;
7
- startTimer(mgData: MGData, seconds: number, isIdleTimer: boolean): void;
8
- stopTimer(mgData: MGData, seconds: number, isIdleTimer: boolean): void;
9
- abort(form: MgForm): void;
10
- abort(): void;
11
- private abort_0;
12
- private abort_1;
13
- MessageBox(title: string, msg: string, style: number): Promise<number>;
14
- writeToMessageBox(titleId: string, msgId: string, style: number): Promise<number>;
15
- confirm(msgId: string, style: number): Promise<number>;
16
- confirm_bool(msgId: string): Promise<boolean>;
17
- }
1
+ import { MGData } from './tasks/MGData';
2
+ import { MgForm } from './gui/MgForm';
3
+ export declare class GUIManager {
4
+ private static _instance;
5
+ static get Instance(): GUIManager;
6
+ execGuiCommandQueue(): void;
7
+ startTimer(mgData: MGData, seconds: number, isIdleTimer: boolean): void;
8
+ stopTimer(mgData: MGData, seconds: number, isIdleTimer: boolean): void;
9
+ abort(form: MgForm): void;
10
+ abort(): void;
11
+ private abort_0;
12
+ private abort_1;
13
+ MessageBox(title: string, msg: string, style: number): Promise<number>;
14
+ writeToMessageBox(titleId: string, msgId: string, style: number): Promise<number>;
15
+ confirm(msgId: string, style: number): Promise<number>;
16
+ confirm_bool(msgId: string): Promise<boolean>;
17
+ }
@@ -1,17 +1,17 @@
1
- import { List } from "@magic-xpa/mscorelib";
2
- import { IClientTargetedCommand } from "./commands/IClientTargetedCommand";
3
- import { IClientCommand } from "./commands/IClientCommand";
4
- export declare class GlobalCommandsManager {
5
- static Instance: GlobalCommandsManager;
6
- private constructor();
7
- private _CommandsExecutedAfterTaskStarted;
8
- private _cmdFrame;
9
- private _unframedCmds;
10
- getCommandsExecutedAfterTaskStarted(): List<IClientTargetedCommand>;
11
- addCommandsExecutedAfterTaskStarted(cmd: IClientTargetedCommand): void;
12
- removeCommandsExecutedAfterTaskStarted(cmd: IClientTargetedCommand): void;
13
- add1toCmdFrame(): void;
14
- getCmdFrame(): number;
15
- addUnframedCmd(cmd: IClientCommand): void;
16
- getUnframedCmds(): List<IClientCommand>;
17
- }
1
+ import { List } from "@magic-xpa/mscorelib";
2
+ import { IClientTargetedCommand } from "./commands/IClientTargetedCommand";
3
+ import { IClientCommand } from "./commands/IClientCommand";
4
+ export declare class GlobalCommandsManager {
5
+ static Instance: GlobalCommandsManager;
6
+ private constructor();
7
+ private _CommandsExecutedAfterTaskStarted;
8
+ private _cmdFrame;
9
+ private _unframedCmds;
10
+ getCommandsExecutedAfterTaskStarted(): List<IClientTargetedCommand>;
11
+ addCommandsExecutedAfterTaskStarted(cmd: IClientTargetedCommand): void;
12
+ removeCommandsExecutedAfterTaskStarted(cmd: IClientTargetedCommand): void;
13
+ add1toCmdFrame(): void;
14
+ getCmdFrame(): number;
15
+ addUnframedCmd(cmd: IClientCommand): void;
16
+ getUnframedCmds(): List<IClientCommand>;
17
+ }
@@ -1,24 +1,24 @@
1
- import { EventsProcessor, GuiMgControl, GuiMgForm, Modifiers } from '@magic-xpa/gui';
2
- export declare class GuiEventsProcessor extends EventsProcessor {
3
- RegisterSubclassHandlers(): void;
4
- constructor();
5
- private static processCtrlFocus;
6
- private static processFocus;
7
- private static processFocusOnNonMagicControl;
8
- private static processMouseUp;
9
- private static processDispose;
10
- private static ProcessTimer;
11
- private static processTableResize;
12
- private static processGetRowsData;
13
- private static OnNonParkableLastParkedCtrl;
14
- private static processSelection;
15
- processKeyDown(guiMgForm: GuiMgForm, guiMgCtrl: GuiMgControl, modifier: Modifiers, keyCode: number, start: number, end: number, text: string, isActChar: boolean, suggestedValue: string, handled: boolean): boolean;
16
- private static peekEndOfWork;
17
- private static getMainProgram;
18
- private static GetRuntimeContext;
19
- private static SaveLastClickedControlName;
20
- private static SaveLastClickInfo;
21
- private static IsLogonRTL;
22
- private static ShowSessionStatistics;
23
- private static ShouldAddEnterAsKeyEvent;
24
- }
1
+ import { EventsProcessor, GuiMgControl, GuiMgForm, Modifiers } from '@magic-xpa/gui';
2
+ export declare class GuiEventsProcessor extends EventsProcessor {
3
+ RegisterSubclassHandlers(): void;
4
+ constructor();
5
+ private static processCtrlFocus;
6
+ private static processFocus;
7
+ private static processFocusOnNonMagicControl;
8
+ private static processMouseUp;
9
+ private static processDispose;
10
+ private static ProcessTimer;
11
+ private static processTableResize;
12
+ private static processGetRowsData;
13
+ private static OnNonParkableLastParkedCtrl;
14
+ private static processSelection;
15
+ processKeyDown(guiMgForm: GuiMgForm, guiMgCtrl: GuiMgControl, modifier: Modifiers, keyCode: number, start: number, end: number, text: string, isActChar: boolean, suggestedValue: string, handled: boolean): boolean;
16
+ private static peekEndOfWork;
17
+ private static getMainProgram;
18
+ private static GetRuntimeContext;
19
+ private static SaveLastClickedControlName;
20
+ private static SaveLastClickInfo;
21
+ private static IsLogonRTL;
22
+ private static ShowSessionStatistics;
23
+ private static ShouldAddEnterAsKeyEvent;
24
+ }
@@ -1,9 +1,9 @@
1
- import { StringBuilder } from "@magic-xpa/mscorelib";
2
- import { XmlParser } from "@magic-xpa/utils";
3
- import { IClientCommand } from "./commands/IClientCommand";
4
- export interface ICommandsTable {
5
- fillData(parser: XmlParser): void;
6
- buildXML(message: StringBuilder): void;
7
- Add(cmd: IClientCommand): void;
8
- Clear(): void;
9
- }
1
+ import { StringBuilder } from "@magic-xpa/mscorelib";
2
+ import { XmlParser } from "@magic-xpa/utils";
3
+ import { IClientCommand } from "./commands/IClientCommand";
4
+ export interface ICommandsTable {
5
+ fillData(parser: XmlParser): void;
6
+ buildXML(message: StringBuilder): void;
7
+ Add(cmd: IClientCommand): void;
8
+ Clear(): void;
9
+ }
@@ -1,34 +1,34 @@
1
- import { IServerConfig } from './util/IServerConfig';
2
- export declare class ServerConfig {
3
- static Instance: ServerConfig;
4
- private constructor();
5
- private _executionProps;
6
- private _protocol;
7
- private _server;
8
- private _httpReq;
9
- private _appName;
10
- private _serverUrl;
11
- Init(obj: IServerConfig): void;
12
- ShouldDisplayGenericError(): boolean;
13
- setUsername(username: string): void;
14
- setPassword(password: string): void;
15
- setSkipAuthenticationDialog(value: boolean): void;
16
- setGlobalParams(val: string): void;
17
- getGlobalParams(): string;
18
- getProtocol(): string;
19
- getServer(): string;
20
- getHttpReq(): string;
21
- getAppName(): string;
22
- getInternalLogLevel(): string;
23
- setInternalLogLevel(value: string): void;
24
- getInternalLogSync(): string;
25
- getUsername(): string;
26
- getPassword(): string;
27
- getCtxGroup(): string;
28
- setCtxGroup(CtxGroup: string): void;
29
- getSkipAuthenticationDialog(): boolean;
30
- GetFirstHttpRequestTimeout(): number;
31
- GetExecutionProperty(propName: string): string;
32
- getServerURL(): string;
33
- IsLogonRTL(): boolean;
34
- }
1
+ import { IServerConfig } from './util/IServerConfig';
2
+ export declare class ServerConfig {
3
+ static Instance: ServerConfig;
4
+ private constructor();
5
+ private _executionProps;
6
+ private _protocol;
7
+ private _server;
8
+ private _httpReq;
9
+ private _appName;
10
+ private _serverUrl;
11
+ Init(obj: IServerConfig): void;
12
+ ShouldDisplayGenericError(): boolean;
13
+ setUsername(username: string): void;
14
+ setPassword(password: string): void;
15
+ setSkipAuthenticationDialog(value: boolean): void;
16
+ setGlobalParams(val: string): void;
17
+ getGlobalParams(): string;
18
+ getProtocol(): string;
19
+ getServer(): string;
20
+ getHttpReq(): string;
21
+ getAppName(): string;
22
+ getInternalLogLevel(): string;
23
+ setInternalLogLevel(value: string): void;
24
+ getInternalLogSync(): string;
25
+ getUsername(): string;
26
+ getPassword(): string;
27
+ getCtxGroup(): string;
28
+ setCtxGroup(CtxGroup: string): void;
29
+ getSkipAuthenticationDialog(): boolean;
30
+ GetFirstHttpRequestTimeout(): number;
31
+ GetExecutionProperty(propName: string): string;
32
+ getServerURL(): string;
33
+ IsLogonRTL(): boolean;
34
+ }
@@ -1,19 +1,19 @@
1
- import { List } from "@magic-xpa/mscorelib";
2
- import { Modifiers } from "@magic-xpa/gui";
3
- export interface IGuiEvent {
4
- EventType: string;
5
- TaskID: string;
6
- ControlName: string;
7
- Line: number;
8
- PageSize: number;
9
- Value: string;
10
- RouterPath: string;
11
- RouterOutletName: any;
12
- RouterParams: List<any>;
13
- modifiers: Modifiers;
14
- keyCode: number;
15
- externalValue: any;
16
- param: any;
17
- fromButton: boolean;
18
- }
19
- export declare function getGuiEventObj(eventType: string, controlName: string, line: number, fromButton?: boolean): IGuiEvent;
1
+ import { List } from "@magic-xpa/mscorelib";
2
+ import { Modifiers } from "@magic-xpa/gui";
3
+ export interface IGuiEvent {
4
+ EventType: string;
5
+ TaskID: string;
6
+ ControlName: string;
7
+ Line: number;
8
+ PageSize: number;
9
+ Value: string;
10
+ RouterPath: string;
11
+ RouterOutletName: any;
12
+ RouterParams: List<any>;
13
+ modifiers: Modifiers;
14
+ keyCode: number;
15
+ externalValue: any;
16
+ param: any;
17
+ fromButton: boolean;
18
+ }
19
+ export declare function getGuiEventObj(eventType: string, controlName: string, line: number, fromButton?: boolean): IGuiEvent;
@@ -1,16 +1,16 @@
1
- import { IGuiEvent } from "./IGuiEvent";
2
- import { HttpClient } from "@angular/common/http";
3
- export declare class MagicBridge {
4
- static Initialize(httpClient: HttpClient): void;
5
- static TerminateMagic(): Promise<void>;
6
- static registerExecuteCommandsCallback(cb: any): void;
7
- static registerInteractiveCallback(cb: any): void;
8
- static insertEvent(guiEvent: IGuiEvent): void;
9
- static GetControlPictureMask(taskId: string, controlName: string): any;
10
- static GetFormattedValue(taskId: string, controlName: string, value: any, rowId?: string): string;
11
- static GetRangedValue(taskId: string, controlName: string, value: string): string;
12
- static ValidateControlValue(taskId: string, controlName: string, value: any): string;
13
- static GetFldRanges(taskId: string, controlName: string): string;
14
- static TransCacheExists(): boolean;
15
- static TerminateContextUsingFetchAPI(): void;
16
- }
1
+ import { IGuiEvent } from "./IGuiEvent";
2
+ import { HttpClient } from "@angular/common/http";
3
+ export declare class MagicBridge {
4
+ static Initialize(httpClient: HttpClient): void;
5
+ static TerminateMagic(): Promise<void>;
6
+ static registerExecuteCommandsCallback(cb: any): void;
7
+ static registerInteractiveCallback(cb: any): void;
8
+ static insertEvent(guiEvent: IGuiEvent): void;
9
+ static GetControlPictureMask(taskId: string, controlName: string): any;
10
+ static GetFormattedValue(taskId: string, controlName: string, value: any, rowId?: string): string;
11
+ static GetRangedValue(taskId: string, controlName: string, value: string): string;
12
+ static ValidateControlValue(taskId: string, controlName: string, value: any): string;
13
+ static GetFldRanges(taskId: string, controlName: string): string;
14
+ static TransCacheExists(): boolean;
15
+ static TerminateContextUsingFetchAPI(): void;
16
+ }
@@ -1,8 +1,8 @@
1
- import { ClientOriginatedCommand } from "./ClientToServer/ClientOriginatedCommand";
2
- import { ICommandTaskTag } from "./ClientToServer/ICommandTaskTag";
3
- import { Task } from "../..";
4
- export declare abstract class ClientOriginatedCommandTaskTag extends ClientOriginatedCommand implements ICommandTaskTag {
5
- TaskTag: string;
6
- constructor();
7
- get Task(): Task;
8
- }
1
+ import { ClientOriginatedCommand } from "./ClientToServer/ClientOriginatedCommand";
2
+ import { ICommandTaskTag } from "./ClientToServer/ICommandTaskTag";
3
+ import { Task } from "../..";
4
+ export declare abstract class ClientOriginatedCommandTaskTag extends ClientOriginatedCommand implements ICommandTaskTag {
5
+ TaskTag: string;
6
+ constructor();
7
+ get Task(): Task;
8
+ }
@@ -1,4 +1,4 @@
1
- import { AddUserRangeDataviewCommand } from "./AddUserRangeDataviewCommand";
2
- export declare class AddUserLocateDataViewCommand extends AddUserRangeDataviewCommand {
3
- constructor();
4
- }
1
+ import { AddUserRangeDataviewCommand } from "./AddUserRangeDataviewCommand";
2
+ export declare class AddUserLocateDataViewCommand extends AddUserRangeDataviewCommand {
3
+ constructor();
4
+ }
@@ -1,6 +1,6 @@
1
- import { DataviewCommand } from "./DataviewCommand";
2
- import { UserRange } from "../../tasks/TaskBase";
3
- export declare class AddUserRangeDataviewCommand extends DataviewCommand {
4
- Range: UserRange;
5
- constructor();
6
- }
1
+ import { DataviewCommand } from "./DataviewCommand";
2
+ import { UserRange } from "../../tasks/TaskBase";
3
+ export declare class AddUserRangeDataviewCommand extends DataviewCommand {
4
+ Range: UserRange;
5
+ constructor();
6
+ }
@@ -1,6 +1,6 @@
1
- import { DataviewCommand } from "./DataviewCommand";
2
- import { Sort } from "../../tasks/sort/Sort";
3
- export declare class AddUserSortDataViewCommand extends DataviewCommand {
4
- Sort: Sort;
5
- constructor();
6
- }
1
+ import { DataviewCommand } from "./DataviewCommand";
2
+ import { Sort } from "../../tasks/sort/Sort";
3
+ export declare class AddUserSortDataViewCommand extends DataviewCommand {
4
+ Sort: Sort;
5
+ constructor();
6
+ }
@@ -1,8 +1,8 @@
1
- import { EventCommand } from './EventCommand';
2
- import { IClientToServerCommandInfo } from '../IClientToServerCommandInfo';
3
- export declare class BrowserEscEventCommand extends EventCommand implements IClientToServerCommandInfo {
4
- CloseSubformOnly: boolean;
5
- constructor();
6
- SerializeCommandData(): string;
7
- getCommandInfo(): string;
8
- }
1
+ import { EventCommand } from './EventCommand';
2
+ import { IClientToServerCommandInfo } from '../IClientToServerCommandInfo';
3
+ export declare class BrowserEscEventCommand extends EventCommand implements IClientToServerCommandInfo {
4
+ CloseSubformOnly: boolean;
5
+ constructor();
6
+ SerializeCommandData(): string;
7
+ getCommandInfo(): string;
8
+ }
@@ -1,8 +1,8 @@
1
- import { IClientCommand } from "../IClientCommand";
2
- export declare abstract class ClientOriginatedCommand implements IClientCommand {
3
- abstract get CommandTypeAttribute(): string;
4
- get ShouldSerialize(): boolean;
5
- get ShouldSerializeRecords(): boolean;
6
- SerializeCommandData(): string;
7
- SerializeDataAfterCommand(): string;
8
- }
1
+ import { IClientCommand } from "../IClientCommand";
2
+ export declare abstract class ClientOriginatedCommand implements IClientCommand {
3
+ abstract get CommandTypeAttribute(): string;
4
+ get ShouldSerialize(): boolean;
5
+ get ShouldSerializeRecords(): boolean;
6
+ SerializeCommandData(): string;
7
+ SerializeDataAfterCommand(): string;
8
+ }
@@ -1,6 +1,6 @@
1
- import { MGData } from "../../tasks/MGData";
2
- import { ClientOriginatedCommand } from "./ClientOriginatedCommand";
3
- export declare class ClientOriginatedCommandSerializer {
4
- static Serialize(cmd: ClientOriginatedCommand, currMGData: MGData): string;
5
- static SerializeRecords(currMGData: MGData): string;
6
- }
1
+ import { MGData } from "../../tasks/MGData";
2
+ import { ClientOriginatedCommand } from "./ClientOriginatedCommand";
3
+ export declare class ClientOriginatedCommandSerializer {
4
+ static Serialize(cmd: ClientOriginatedCommand, currMGData: MGData): string;
5
+ static SerializeRecords(currMGData: MGData): string;
6
+ }
@@ -1,10 +1,10 @@
1
- import { EventCommand } from './EventCommand';
2
- import { IClientToServerCommandInfo } from '../IClientToServerCommandInfo';
3
- export declare class ColumnSortEventCommand extends EventCommand implements IClientToServerCommandInfo {
4
- FldId: number;
5
- DitIdx: number;
6
- Direction: number;
7
- constructor();
8
- SerializeCommandData(): string;
9
- getCommandInfo(): string;
10
- }
1
+ import { EventCommand } from './EventCommand';
2
+ import { IClientToServerCommandInfo } from '../IClientToServerCommandInfo';
3
+ export declare class ColumnSortEventCommand extends EventCommand implements IClientToServerCommandInfo {
4
+ FldId: number;
5
+ DitIdx: number;
6
+ Direction: number;
7
+ constructor();
8
+ SerializeCommandData(): string;
9
+ getCommandInfo(): string;
10
+ }
@@ -1,64 +1,64 @@
1
- import { MgControlBase } from '@magic-xpa/gui';
2
- import { StorageAttribute } from '@magic-xpa/utils';
3
- import { EventCommand } from './EventCommand';
4
- import { RollbackEventCommand, RollbackEventCommand_RollbackType } from './RollbackEventCommand';
5
- import { DataviewCommand, DataViewCommandType } from './DataviewCommand';
6
- import { Task } from '../../tasks/Task';
7
- import { UserRange } from '../../tasks/TaskBase';
8
- import { AddUserRangeDataviewCommand } from './AddUserRangeDataviewCommand';
9
- import { Sort } from '../../tasks/sort/Sort';
10
- import { AddUserSortDataViewCommand } from './AddUserSortDataViewCommand';
11
- import { AddUserLocateDataViewCommand } from './AddUserLocateDataViewCommand';
12
- import { SetTransactionStateDataviewCommand } from './SetTransactionStateDataviewCommand';
13
- import { RefreshEventCommand } from './RefreshEventCommand';
14
- import { ArgumentsList } from '../../rt/ArgumentsList';
15
- import { FetchDataControlValuesEventCommand } from './FetchDataControlValuesEventCommand';
16
- import { SubformRefreshEventCommand } from './SubformRefreshEventCommand';
17
- import { BrowserEscEventCommand } from './BrowserEscEventCommand';
18
- import { IndexChangeEventCommand } from './IndexChangeEventCommand';
19
- import { ColumnSortEventCommand } from './ColumnSortEventCommand';
20
- import { RefreshScreenEventCommand } from './RefreshScreenEventCommand';
21
- import { SubformOpenEventCommand } from './SubformOpenEventCommand';
22
- import { ComputeEventCommand } from './ComputeEventCommand';
23
- import { NonReversibleExitEventCommand } from './NonReversibleExitEventCommand';
24
- import { RecomputeCommand } from './RecomputeCommand';
25
- import { TransactionCommand } from './TransactionCommand';
26
- import { UnloadCommand } from './UnloadCommand';
27
- import { ExecOperCommand } from './ExecOperCommand';
28
- import { EvaluateCommand } from './EvaluateCommand';
29
- import { GlobalParamsQueryCommand } from './GlobalParamsQueryCommand';
30
- import { IniputForceWriteCommand } from './IniputForceWriteCommand';
31
- import { ContextTerminationEventCommand } from './ContextTerminationEventCommand';
32
- import { ContextTimeoutResetCommand } from './ContextTimeoutResetCommand';
33
- import { ControlItemsRefreshCommand } from './ControlItemsRefreshCommand';
34
- export declare class CommandFactory {
35
- static CreateEventCommand(taskTag: string, magicEvent: number): EventCommand;
36
- static CreateRollbackEventCommand(taskTag: string, rollbackType: RollbackEventCommand_RollbackType): RollbackEventCommand;
37
- static CreateDataViewCommand(taskId: string, commandType: DataViewCommandType): DataviewCommand;
38
- static CreateControlItemsRefreshCommand(taskId: string, control: MgControlBase): ControlItemsRefreshCommand;
39
- static CreateAddUserRangeDataviewCommand(taskId: string, userRange: UserRange): AddUserRangeDataviewCommand;
40
- static CreateAddUserSortDataviewCommand(taskId: string, sort: Sort): AddUserSortDataViewCommand;
41
- static CreateAddUserLocateDataviewCommand(taskId: string, userRange: UserRange): AddUserLocateDataViewCommand;
42
- static CreateSetTransactionStateDataviewCommand(taskId: string, transactionIsOpened: boolean): SetTransactionStateDataviewCommand;
43
- static CreateInternalRefreshCommand(taskId: string, magicEvent: number, currentRecId: number, currentRow: number): RefreshEventCommand;
44
- static CreateRealRefreshCommand(taskId: string, magicEvent: number, currentRow: number, argList: ArgumentsList, currentRecId: number): Promise<RefreshEventCommand>;
45
- static CreatecFetchDataControlValuesCommand(taskTag: string, controlName: string): FetchDataControlValuesEventCommand;
46
- static CreateSubformRefreshCommand(taskTag: string, subformTaskTag: string, explicitSubformRefresh: boolean): SubformRefreshEventCommand;
47
- static CreateSubformOpenCommand(taskTag: string, subformDitIdx: number): SubformOpenEventCommand;
48
- static CreateScreenRefreshCommand(taskTag: string, topRecIdx: number, clientRecId: number): RefreshScreenEventCommand;
49
- static CreateColumnSortCommand(taskTag: string, direction: number, ditIdx: number, fieldId: number, recId: number): ColumnSortEventCommand;
50
- static CreateIndexChangeCommand(taskTag: string, recId: number, argList: ArgumentsList): Promise<IndexChangeEventCommand>;
51
- static CreateBrowserEscEventCommand(taskTag: string, closeSubformOnly: boolean): BrowserEscEventCommand;
52
- static CreateComputeEventCommand(taskTag: string, subforms: boolean, clientRecId: number): ComputeEventCommand;
53
- static CreateContextTerminationEventCommand(taskTag: string): ContextTerminationEventCommand;
54
- static CreateContextTimeoutResetEventCommand(): ContextTimeoutResetCommand;
55
- static CreateNonReversibleExitCommand(taskTag: string, closeSubformOnly: boolean): NonReversibleExitEventCommand;
56
- static CreateRecomputeCommand(taskTag: string, fieldId: number, ignoreSubformRecompute: boolean): RecomputeCommand;
57
- static CreateTransactionCommand(oper: string, taskTag: string, cReversibleExit: boolean, level: string): TransactionCommand;
58
- static CreateUnloadCommand(): UnloadCommand;
59
- static CreateExecOperCommand(taskTag: string, handlerId: string, operIdx: number, ditIdx: number, value: string): ExecOperCommand;
60
- static CreateSelectProgramCommand(taskTag: string, handlerId: string, operIdx: number, ditIdx: number, value: string): ExecOperCommand;
61
- static CreateEvaluateCommand(taskTag: string, expType: StorageAttribute, expIdx: number, expValLen: number, mprgCreator: Task): EvaluateCommand;
62
- static CreateQueryGlobalParamsCommand(): GlobalParamsQueryCommand;
63
- static CreateIniputForceWriteCommand(param: string): IniputForceWriteCommand;
64
- }
1
+ import { MgControlBase } from '@magic-xpa/gui';
2
+ import { StorageAttribute } from '@magic-xpa/utils';
3
+ import { EventCommand } from './EventCommand';
4
+ import { RollbackEventCommand, RollbackEventCommand_RollbackType } from './RollbackEventCommand';
5
+ import { DataviewCommand, DataViewCommandType } from './DataviewCommand';
6
+ import { Task } from '../../tasks/Task';
7
+ import { UserRange } from '../../tasks/TaskBase';
8
+ import { AddUserRangeDataviewCommand } from './AddUserRangeDataviewCommand';
9
+ import { Sort } from '../../tasks/sort/Sort';
10
+ import { AddUserSortDataViewCommand } from './AddUserSortDataViewCommand';
11
+ import { AddUserLocateDataViewCommand } from './AddUserLocateDataViewCommand';
12
+ import { SetTransactionStateDataviewCommand } from './SetTransactionStateDataviewCommand';
13
+ import { RefreshEventCommand } from './RefreshEventCommand';
14
+ import { ArgumentsList } from '../../rt/ArgumentsList';
15
+ import { FetchDataControlValuesEventCommand } from './FetchDataControlValuesEventCommand';
16
+ import { SubformRefreshEventCommand } from './SubformRefreshEventCommand';
17
+ import { BrowserEscEventCommand } from './BrowserEscEventCommand';
18
+ import { IndexChangeEventCommand } from './IndexChangeEventCommand';
19
+ import { ColumnSortEventCommand } from './ColumnSortEventCommand';
20
+ import { RefreshScreenEventCommand } from './RefreshScreenEventCommand';
21
+ import { SubformOpenEventCommand } from './SubformOpenEventCommand';
22
+ import { ComputeEventCommand } from './ComputeEventCommand';
23
+ import { NonReversibleExitEventCommand } from './NonReversibleExitEventCommand';
24
+ import { RecomputeCommand } from './RecomputeCommand';
25
+ import { TransactionCommand } from './TransactionCommand';
26
+ import { UnloadCommand } from './UnloadCommand';
27
+ import { ExecOperCommand } from './ExecOperCommand';
28
+ import { EvaluateCommand } from './EvaluateCommand';
29
+ import { GlobalParamsQueryCommand } from './GlobalParamsQueryCommand';
30
+ import { IniputForceWriteCommand } from './IniputForceWriteCommand';
31
+ import { ContextTerminationEventCommand } from './ContextTerminationEventCommand';
32
+ import { ContextTimeoutResetCommand } from './ContextTimeoutResetCommand';
33
+ import { ControlItemsRefreshCommand } from './ControlItemsRefreshCommand';
34
+ export declare class CommandFactory {
35
+ static CreateEventCommand(taskTag: string, magicEvent: number): EventCommand;
36
+ static CreateRollbackEventCommand(taskTag: string, rollbackType: RollbackEventCommand_RollbackType): RollbackEventCommand;
37
+ static CreateDataViewCommand(taskId: string, commandType: DataViewCommandType): DataviewCommand;
38
+ static CreateControlItemsRefreshCommand(taskId: string, control: MgControlBase): ControlItemsRefreshCommand;
39
+ static CreateAddUserRangeDataviewCommand(taskId: string, userRange: UserRange): AddUserRangeDataviewCommand;
40
+ static CreateAddUserSortDataviewCommand(taskId: string, sort: Sort): AddUserSortDataViewCommand;
41
+ static CreateAddUserLocateDataviewCommand(taskId: string, userRange: UserRange): AddUserLocateDataViewCommand;
42
+ static CreateSetTransactionStateDataviewCommand(taskId: string, transactionIsOpened: boolean): SetTransactionStateDataviewCommand;
43
+ static CreateInternalRefreshCommand(taskId: string, magicEvent: number, currentRecId: number, currentRow: number): RefreshEventCommand;
44
+ static CreateRealRefreshCommand(taskId: string, magicEvent: number, currentRow: number, argList: ArgumentsList, currentRecId: number): Promise<RefreshEventCommand>;
45
+ static CreatecFetchDataControlValuesCommand(taskTag: string, controlName: string): FetchDataControlValuesEventCommand;
46
+ static CreateSubformRefreshCommand(taskTag: string, subformTaskTag: string, explicitSubformRefresh: boolean): SubformRefreshEventCommand;
47
+ static CreateSubformOpenCommand(taskTag: string, subformDitIdx: number): SubformOpenEventCommand;
48
+ static CreateScreenRefreshCommand(taskTag: string, topRecIdx: number, clientRecId: number): RefreshScreenEventCommand;
49
+ static CreateColumnSortCommand(taskTag: string, direction: number, ditIdx: number, fieldId: number, recId: number): ColumnSortEventCommand;
50
+ static CreateIndexChangeCommand(taskTag: string, recId: number, argList: ArgumentsList): Promise<IndexChangeEventCommand>;
51
+ static CreateBrowserEscEventCommand(taskTag: string, closeSubformOnly: boolean): BrowserEscEventCommand;
52
+ static CreateComputeEventCommand(taskTag: string, subforms: boolean, clientRecId: number): ComputeEventCommand;
53
+ static CreateContextTerminationEventCommand(taskTag: string): ContextTerminationEventCommand;
54
+ static CreateContextTimeoutResetEventCommand(): ContextTimeoutResetCommand;
55
+ static CreateNonReversibleExitCommand(taskTag: string, closeSubformOnly: boolean): NonReversibleExitEventCommand;
56
+ static CreateRecomputeCommand(taskTag: string, fieldId: number, ignoreSubformRecompute: boolean): RecomputeCommand;
57
+ static CreateTransactionCommand(oper: string, taskTag: string, cReversibleExit: boolean, level: string): TransactionCommand;
58
+ static CreateUnloadCommand(): UnloadCommand;
59
+ static CreateExecOperCommand(taskTag: string, handlerId: string, operIdx: number, ditIdx: number, value: string): ExecOperCommand;
60
+ static CreateSelectProgramCommand(taskTag: string, handlerId: string, operIdx: number, ditIdx: number, value: string): ExecOperCommand;
61
+ static CreateEvaluateCommand(taskTag: string, expType: StorageAttribute, expIdx: number, expValLen: number, mprgCreator: Task): EvaluateCommand;
62
+ static CreateQueryGlobalParamsCommand(): GlobalParamsQueryCommand;
63
+ static CreateIniputForceWriteCommand(param: string): IniputForceWriteCommand;
64
+ }
@@ -1,20 +1,20 @@
1
- import { ViewRefreshMode } from "@magic-xpa/utils";
2
- import { Operation } from "../../rt/Operation";
3
- export declare class CommandSerializationHelper {
4
- private message;
5
- GetString(): string;
6
- SerializeTaskTag(taskTag: string): void;
7
- SerializeFldId(fldId: number): void;
8
- SerializeDitIdx(ditIdx: number): void;
9
- SerializeRouteParams(operation: Operation): void;
10
- SerializeRefreshMode(refreshMode: ViewRefreshMode): void;
11
- SerializeMagicEvent(magicEvent: number): void;
12
- SerializeCloseSubformOnly(closeSubformOnly: boolean): void;
13
- SerializeKeyIndex(keyIndex: number): void;
14
- SerializeAttribute(attribute: string, value: string): void;
15
- SerializeAttribute(attribute: string, value: number): void;
16
- SerializeAttribute(attribute: string, value: string): void;
17
- private SerializeAttribute_0;
18
- private SerializeAttribute_1;
19
- private SerializeAttribute_2;
20
- }
1
+ import { ViewRefreshMode } from "@magic-xpa/utils";
2
+ import { Operation } from "../../rt/Operation";
3
+ export declare class CommandSerializationHelper {
4
+ private message;
5
+ GetString(): string;
6
+ SerializeTaskTag(taskTag: string): void;
7
+ SerializeFldId(fldId: number): void;
8
+ SerializeDitIdx(ditIdx: number): void;
9
+ SerializeRouteParams(operation: Operation): void;
10
+ SerializeRefreshMode(refreshMode: ViewRefreshMode): void;
11
+ SerializeMagicEvent(magicEvent: number): void;
12
+ SerializeCloseSubformOnly(closeSubformOnly: boolean): void;
13
+ SerializeKeyIndex(keyIndex: number): void;
14
+ SerializeAttribute(attribute: string, value: string): void;
15
+ SerializeAttribute(attribute: string, value: number): void;
16
+ SerializeAttribute(attribute: string, value: string): void;
17
+ private SerializeAttribute_0;
18
+ private SerializeAttribute_1;
19
+ private SerializeAttribute_2;
20
+ }