x4js 1.4.2

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 (176) hide show
  1. package/lib/application.d.ts +95 -0
  2. package/lib/application.js +137 -0
  3. package/lib/base64.d.ts +31 -0
  4. package/lib/base64.js +135 -0
  5. package/lib/base_component.d.ts +64 -0
  6. package/lib/base_component.js +77 -0
  7. package/lib/button.d.ts +145 -0
  8. package/lib/button.js +235 -0
  9. package/lib/calendar.d.ts +77 -0
  10. package/lib/calendar.js +236 -0
  11. package/lib/canvas.d.ts +88 -0
  12. package/lib/canvas.js +354 -0
  13. package/lib/cardview.d.ts +83 -0
  14. package/lib/cardview.js +152 -0
  15. package/lib/checkbox.d.ts +72 -0
  16. package/lib/checkbox.js +126 -0
  17. package/lib/color.d.ts +144 -0
  18. package/lib/color.js +584 -0
  19. package/lib/colorpicker.d.ts +98 -0
  20. package/lib/colorpicker.js +1457 -0
  21. package/lib/combobox.d.ts +97 -0
  22. package/lib/combobox.js +246 -0
  23. package/lib/component.d.ts +572 -0
  24. package/lib/component.js +1712 -0
  25. package/lib/datastore.d.ts +392 -0
  26. package/lib/datastore.js +986 -0
  27. package/lib/dialog.d.ts +171 -0
  28. package/lib/dialog.js +468 -0
  29. package/lib/dom_events.d.ts +284 -0
  30. package/lib/dom_events.js +13 -0
  31. package/lib/drag_manager.d.ts +26 -0
  32. package/lib/drag_manager.js +118 -0
  33. package/lib/drawtext.d.ts +43 -0
  34. package/lib/drawtext.js +261 -0
  35. package/lib/fileupload.d.ts +60 -0
  36. package/lib/fileupload.js +158 -0
  37. package/lib/form.d.ts +122 -0
  38. package/lib/form.js +293 -0
  39. package/lib/formatters.d.ts +31 -0
  40. package/lib/formatters.js +75 -0
  41. package/lib/gridview.d.ts +171 -0
  42. package/lib/gridview.js +786 -0
  43. package/lib/hosts/host.d.ts +44 -0
  44. package/lib/hosts/host.js +69 -0
  45. package/lib/i18n.d.ts +67 -0
  46. package/lib/i18n.js +169 -0
  47. package/lib/icon.d.ts +56 -0
  48. package/lib/icon.js +173 -0
  49. package/lib/image.d.ts +51 -0
  50. package/lib/image.js +149 -0
  51. package/lib/index.js +1 -0
  52. package/lib/input.d.ts +86 -0
  53. package/lib/input.js +172 -0
  54. package/lib/label.d.ts +54 -0
  55. package/lib/label.js +86 -0
  56. package/lib/layout.d.ts +77 -0
  57. package/lib/layout.js +261 -0
  58. package/lib/link.d.ts +46 -0
  59. package/lib/link.js +55 -0
  60. package/lib/listview.d.ts +173 -0
  61. package/lib/listview.js +532 -0
  62. package/lib/md5.d.ts +56 -0
  63. package/lib/md5.js +397 -0
  64. package/lib/menu.d.ts +122 -0
  65. package/lib/menu.js +276 -0
  66. package/lib/messagebox.d.ts +64 -0
  67. package/lib/messagebox.js +141 -0
  68. package/lib/panel.d.ts +42 -0
  69. package/lib/panel.js +61 -0
  70. package/lib/popup.d.ts +71 -0
  71. package/lib/popup.js +373 -0
  72. package/lib/property_editor.d.ts +67 -0
  73. package/lib/property_editor.js +247 -0
  74. package/lib/radiobtn.d.ts +68 -0
  75. package/lib/radiobtn.js +131 -0
  76. package/lib/rating.d.ts +49 -0
  77. package/lib/rating.js +93 -0
  78. package/lib/request.d.ts +48 -0
  79. package/lib/request.js +220 -0
  80. package/lib/router.d.ts +13 -0
  81. package/lib/router.js +27 -0
  82. package/lib/settings.d.ts +33 -0
  83. package/lib/settings.js +63 -0
  84. package/lib/sidebarview.d.ts +44 -0
  85. package/lib/sidebarview.js +73 -0
  86. package/lib/smartedit.d.ts +103 -0
  87. package/lib/smartedit.js +381 -0
  88. package/lib/spreadsheet.d.ts +214 -0
  89. package/lib/spreadsheet.js +1073 -0
  90. package/lib/styles.d.ts +81 -0
  91. package/lib/styles.js +262 -0
  92. package/lib/svgcomponent.d.ts +165 -0
  93. package/lib/svgcomponent.js +350 -0
  94. package/lib/tabbar.d.ts +41 -0
  95. package/lib/tabbar.js +66 -0
  96. package/lib/tabview.d.ts +45 -0
  97. package/lib/tabview.js +79 -0
  98. package/lib/textarea.d.ts +59 -0
  99. package/lib/textarea.js +119 -0
  100. package/lib/textedit.d.ts +118 -0
  101. package/lib/textedit.js +406 -0
  102. package/lib/texthiliter.d.ts +56 -0
  103. package/lib/texthiliter.js +219 -0
  104. package/lib/toaster.d.ts +38 -0
  105. package/lib/toaster.js +58 -0
  106. package/lib/tools.d.ts +382 -0
  107. package/lib/tools.js +1096 -0
  108. package/lib/tooltips.d.ts +42 -0
  109. package/lib/tooltips.js +148 -0
  110. package/lib/treeview.d.ts +128 -0
  111. package/lib/treeview.js +490 -0
  112. package/lib/x4_events.d.ts +253 -0
  113. package/lib/x4_events.js +363 -0
  114. package/package.json +21 -0
  115. package/src/README.md +2 -0
  116. package/src/application.ts +191 -0
  117. package/src/base64.ts +162 -0
  118. package/src/base_component.ts +118 -0
  119. package/src/button.ts +327 -0
  120. package/src/calendar.ts +312 -0
  121. package/src/canvas.ts +501 -0
  122. package/src/cardview.ts +220 -0
  123. package/src/checkbox.ts +178 -0
  124. package/src/color.ts +748 -0
  125. package/src/colorpicker.ts +1618 -0
  126. package/src/combobox.ts +348 -0
  127. package/src/component.ts +2330 -0
  128. package/src/datastore.ts +1318 -0
  129. package/src/dialog.ts +631 -0
  130. package/src/dom_events.ts +297 -0
  131. package/src/drag_manager.ts +168 -0
  132. package/src/drawtext.ts +342 -0
  133. package/src/fileupload.ts +208 -0
  134. package/src/form.ts +362 -0
  135. package/src/formatters.ts +96 -0
  136. package/src/gridview.ts +1051 -0
  137. package/src/hosts/electron.ts +161 -0
  138. package/src/hosts/host.ts +100 -0
  139. package/src/hosts/nwjs.ts +141 -0
  140. package/src/hosts/nwjs_types.ts +339 -0
  141. package/src/i18n.ts +205 -0
  142. package/src/icon.ts +237 -0
  143. package/src/image.ts +198 -0
  144. package/src/input.ts +236 -0
  145. package/src/label.ts +124 -0
  146. package/src/layout.ts +366 -0
  147. package/src/link.ts +82 -0
  148. package/src/listview.ts +749 -0
  149. package/src/md5.ts +432 -0
  150. package/src/menu.ts +394 -0
  151. package/src/messagebox.ts +199 -0
  152. package/src/panel.ts +81 -0
  153. package/src/popup.ts +488 -0
  154. package/src/property_editor.ts +333 -0
  155. package/src/radiobtn.ts +190 -0
  156. package/src/rating.ts +131 -0
  157. package/src/request.ts +296 -0
  158. package/src/router.ts +43 -0
  159. package/src/settings.ts +75 -0
  160. package/src/sidebarview.ts +97 -0
  161. package/src/smartedit.ts +532 -0
  162. package/src/spreadsheet.ts +1423 -0
  163. package/src/styles.ts +332 -0
  164. package/src/svgcomponent.ts +440 -0
  165. package/src/tabbar.ts +105 -0
  166. package/src/tabview.ts +106 -0
  167. package/src/textarea.ts +183 -0
  168. package/src/textedit.ts +535 -0
  169. package/src/texthiliter.ts +284 -0
  170. package/src/toaster.ts +76 -0
  171. package/src/tools.ts +1391 -0
  172. package/src/tooltips.ts +185 -0
  173. package/src/treeview.ts +670 -0
  174. package/src/x4.less +1940 -0
  175. package/src/x4_events.ts +558 -0
  176. package/tsconfig.json +14 -0
@@ -0,0 +1,161 @@
1
+ /**
2
+ * @file host/electron.ts
3
+ * @author Etienne Cochard
4
+ * @license
5
+ * Copyright (c) 2019-2021 R-libre ingenierie
6
+ *
7
+ * This program is free software; you can redistribute it and/or modify
8
+ * it under the terms of the GNU General Public License as published by
9
+ * the Free Software Foundation; either version 3 of the License, or
10
+ * (at your option) any later version.
11
+ *
12
+ * This program is distributed in the hope that it will be useful,
13
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
14
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15
+ * GNU General Public License for more details.
16
+ *
17
+ * You should have received a copy of the GNU General Public License along with this program. If not, see <https://www.gnu.org/licenses/>.
18
+ **/
19
+
20
+ import { FileStat, PathType, PartType, Host } from './host'
21
+
22
+ export * from './host';
23
+
24
+ declare const host_require;
25
+ if( !globalThis.host_require ) {
26
+ globalThis.host_require = require;
27
+ }
28
+
29
+ export const fs = host_require( 'fs' );
30
+ export const process = host_require( 'process' );
31
+ export const electron = host_require( 'electron' );
32
+ export const path = host_require( 'path' );
33
+
34
+ //import * as path from 'node:path';
35
+
36
+ export class ElectronHost extends Host {
37
+
38
+ makePath( ...els: string[] ) {
39
+ return path.join( ...els );
40
+ }
41
+
42
+ readBinary( path: string ): Promise<Uint8Array> {
43
+ return new Promise( ( resolve, reject ) => {
44
+ fs.readFile( path, ( err, buff ) => {
45
+ if( err ) { reject( err ); }
46
+ else { resolve( buff ); }
47
+ } );
48
+ } );
49
+ }
50
+
51
+ writeBinary( path: string, data: Uint8Array ): Promise<boolean> {
52
+ return new Promise( ( resolve, reject ) => {
53
+ fs.writeFile( path, data, ( err ) => {
54
+ if( err ) { reject(err); }
55
+ else { resolve( true ); }
56
+ } );
57
+ } );
58
+ }
59
+
60
+ readUtf8( path: string ): Promise<string> {
61
+ return new Promise( ( resolve, reject ) => {
62
+ fs.readFile( path, { encoding: 'utf8' }, ( err, buff ) => {
63
+ if( err ) { reject( err ); }
64
+ else { resolve( buff.toString() ); }
65
+ } );
66
+ } );
67
+ }
68
+
69
+ writeUtf8( path: string, data: string ): Promise<boolean> {
70
+ return new Promise( ( resolve, reject ) => {
71
+ fs.writeFile( path, data, {encoding: 'utf8'}, ( err ) => {
72
+ if( err ) { reject(err); }
73
+ else { resolve( true ); }
74
+ } );
75
+ } );
76
+ }
77
+
78
+ compress( data: Uint8Array ): Promise<Uint8Array> {
79
+ return new Promise( (resolve, reject ) => {
80
+ let zlib = this.require('zlib');
81
+ zlib.gzip( data, ( err, Uint8Array ) => {
82
+ if( err ) { reject( err); }
83
+ else { resolve( Uint8Array); }
84
+ } );
85
+ } );
86
+ }
87
+
88
+ decompress( data: Uint8Array ): Promise<Uint8Array> {
89
+ return new Promise( (resolve, reject ) => {
90
+ let zlib = this.require('zlib');
91
+ zlib.gunzip( data, ( err, Uint8Array ) => {
92
+ if( err ) { reject( err); }
93
+ else { resolve( Uint8Array); }
94
+ } );
95
+ } );
96
+ }
97
+
98
+ readLocalStorage( name: string ): string {
99
+ return localStorage.getItem( name );
100
+ }
101
+
102
+ writeLocalStorage( name: string, data: string ): void {
103
+ localStorage.setItem( name, data );
104
+ }
105
+
106
+ stat( name: string ): FileStat {
107
+ let stat = fs.statSync( name );
108
+ if( !stat ) {
109
+ return null;
110
+ }
111
+
112
+ return {
113
+ atime: stat.atimeMs,
114
+ isDir: stat.isDirectory()
115
+ }
116
+ }
117
+
118
+ readDir( path: string ): Promise<string[]> {
119
+ return new Promise( ( resolve, reject ) => {
120
+ fs.readdir( path, ( err, files ) => {
121
+ if( err ) { reject(err); }
122
+ else { resolve(files); }
123
+ });
124
+ });
125
+ }
126
+
127
+ require( name: string ): any {
128
+ return host_require( name );
129
+ }
130
+
131
+ cwd( ): string {
132
+ return process.cwd( );
133
+ }
134
+
135
+ get ipc( ) {
136
+ return electron.ipcRenderer;
137
+ }
138
+
139
+ getPath( type: PathType ) : string {
140
+ return this.ipc.sendSync( 'getPath', type );
141
+ }
142
+
143
+ getPathPart( pth: string, type: PartType ) : string {
144
+
145
+ let els = path.parse( pth );
146
+ switch ( type ) {
147
+ case 'dirname': return els.dir;
148
+ case 'basename': return els.base;
149
+ case 'filename': return els.name;
150
+ case 'extname': return els.ext;
151
+ }
152
+
153
+ return '';
154
+ }
155
+
156
+ createCanvas = ( ) => {
157
+ return document.createElement('canvas');
158
+ }
159
+ }
160
+
161
+ new ElectronHost( );
@@ -0,0 +1,100 @@
1
+ /**
2
+ * @file host.ts
3
+ * @author Etienne Cochard
4
+ * @license
5
+ * Copyright (c) 2019-2021 R-libre ingenierie
6
+ *
7
+ * This program is free software; you can redistribute it and/or modify
8
+ * it under the terms of the GNU General Public License as published by
9
+ * the Free Software Foundation; either version 3 of the License, or
10
+ * (at your option) any later version.
11
+ *
12
+ * This program is distributed in the hope that it will be useful,
13
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
14
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15
+ * GNU General Public License for more details.
16
+ *
17
+ * You should have received a copy of the GNU General Public License along with this program. If not, see <https://www.gnu.org/licenses/>.
18
+ **/
19
+
20
+ export interface FileStat {
21
+ atime: number;
22
+ isDir: boolean;
23
+ }
24
+
25
+ export type PathType = 'home' | 'appData' | 'userData' | 'cache' | 'temp' | 'exe' | 'desktop' | 'documents' | 'downloads' | 'music'
26
+ | 'pictures'| 'videos' | 'recent' | 'logs' | 'crashDumps';
27
+
28
+ export type PartType = 'filename' | 'extname' | 'basename' | 'dirname';
29
+
30
+ export abstract class Host {
31
+
32
+ constructor( ) {
33
+ host = this;
34
+ }
35
+
36
+ makePath( ...els: string[] ) {
37
+ return els.join( '/' );
38
+ }
39
+
40
+ readBinary( path: string ): Promise<Uint8Array> {
41
+ return Promise.reject( 'not imp' );
42
+ }
43
+
44
+ writeBinary( path: string, data: Uint8Array ): Promise<boolean> {
45
+ return Promise.reject( 'not imp' );
46
+ }
47
+
48
+ readUtf8( path: string ): Promise<string> {
49
+ return Promise.reject( 'not imp' );
50
+ }
51
+
52
+ writeUtf8( path: string, data: string ): Promise<boolean> {
53
+ return Promise.reject( 'not imp' );
54
+ }
55
+
56
+ compress( data: Uint8Array ): Promise<Uint8Array> {
57
+ return Promise.reject( 'not imp' );
58
+ }
59
+
60
+ decompress( data: Uint8Array ): Promise<Uint8Array> {
61
+ return Promise.reject( 'not imp' );
62
+ }
63
+
64
+ readLocalStorage( name: string ): string {
65
+ return localStorage.getItem( name );
66
+ }
67
+
68
+ writeLocalStorage( name: string, data: string ): void {
69
+ localStorage.setItem( name, data );
70
+ }
71
+
72
+ stat( name: string ): FileStat {
73
+ throw 'not imp';
74
+ }
75
+
76
+ readDir( path: string ): Promise<string[]> {
77
+ throw 'not imp';
78
+ }
79
+
80
+ require( name: string ): any {
81
+ throw 'not imp';
82
+ }
83
+
84
+ cwd( ): string {
85
+ throw 'not imp';
86
+ }
87
+
88
+ getPath( type: PathType ) : string {
89
+ throw 'not imp';
90
+ }
91
+
92
+ getPathPart( path: string, type: PartType ) : string {
93
+ throw 'not imp';
94
+ }
95
+
96
+ abstract createCanvas( );
97
+ }
98
+
99
+
100
+ export let host: Host = null;
@@ -0,0 +1,141 @@
1
+ /**
2
+ * @file host/nwjs.ts
3
+ * @author Etienne Cochard
4
+ * @license
5
+ * Copyright (c) 2019-2021 R-libre ingenierie
6
+ *
7
+ * This program is free software; you can redistribute it and/or modify
8
+ * it under the terms of the GNU General Public License as published by
9
+ * the Free Software Foundation; either version 3 of the License, or
10
+ * (at your option) any later version.
11
+ *
12
+ * This program is distributed in the hope that it will be useful,
13
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
14
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15
+ * GNU General Public License for more details.
16
+ *
17
+ * You should have received a copy of the GNU General Public License along with this program. If not, see <https://www.gnu.org/licenses/>.
18
+ **/
19
+
20
+ import { FileStat, PathType, Host } from './host'
21
+
22
+ export * from './host';
23
+
24
+ // to deal with amd modules (that are not comletely compatible with nodejs)
25
+ // globalThis.node_require must be set to require BEFORE polyfill code of amd module.
26
+ // ie. globalThis.node_require = require;
27
+
28
+ declare const host_require;
29
+ if( !globalThis.host_require ) {
30
+ globalThis.host_require = require;
31
+ }
32
+
33
+ const fs = host_require( 'fs' );
34
+ const process = host_require( 'process' );
35
+ const path = host_require( 'path' );
36
+
37
+
38
+
39
+ export class NWJSHost implements Host {
40
+
41
+ makePath( ...els: string[] ) {
42
+ return path.join( ...els );
43
+ }
44
+
45
+ readBinary( path: string ): Promise<Uint8Array> {
46
+ return new Promise( ( resolve, reject ) => {
47
+ fs.readFile( path, ( err, buff ) => {
48
+ if( err ) { reject( err ); }
49
+ else { resolve( buff ); }
50
+ } );
51
+ } );
52
+ }
53
+
54
+ writeBinary( path: string, data: Uint8Array ): Promise<boolean> {
55
+ return new Promise( ( resolve, reject ) => {
56
+ fs.writeFile( path, data, ( err ) => {
57
+ if( err ) { reject(err); }
58
+ else { resolve( true ); }
59
+ } );
60
+ } );
61
+ }
62
+
63
+ readUtf8( path: string ): Promise<string> {
64
+ return new Promise( ( resolve, reject ) => {
65
+ fs.readFile( path, { encoding: 'utf8' }, ( err, buff ) => {
66
+ if( err ) { reject( err ); }
67
+ else { resolve( buff.toString() ); }
68
+ } );
69
+ } );
70
+ }
71
+
72
+ writeUtf8( path: string, data: string ): Promise<boolean> {
73
+ return new Promise( ( resolve, reject ) => {
74
+ fs.writeFile( path, data, {encoding: 'utf8'}, ( err ) => {
75
+ if( err ) { reject(err); }
76
+ else { resolve( true ); }
77
+ } );
78
+ } );
79
+ }
80
+
81
+ compress( data: Uint8Array ): Promise<Uint8Array> {
82
+ return new Promise( (resolve, reject ) => {
83
+ let zlib = host_require('zlib');
84
+ zlib.gzip( data, ( err, Uint8Array ) => {
85
+ if( err ) { reject( err); }
86
+ else { resolve( Uint8Array); }
87
+ } );
88
+ } );
89
+ }
90
+
91
+ decompress( data: Uint8Array ): Promise<Uint8Array> {
92
+ return new Promise( (resolve, reject ) => {
93
+ let zlib = host_require('zlib');
94
+ zlib.gunzip( data, ( err, Uint8Array ) => {
95
+ if( err ) { reject( err); }
96
+ else { resolve( Uint8Array); }
97
+ } );
98
+ } );
99
+ }
100
+
101
+ readLocalStorage( name: string ): string {
102
+ return localStorage.getItem( name );
103
+ }
104
+
105
+ writeLocalStorage( name: string, data: string ): void {
106
+ localStorage.setItem( name, data );
107
+ }
108
+
109
+ stat( name: string ): FileStat {
110
+ let stat = fs.statSync( name );
111
+ if( !stat ) {
112
+ return null;
113
+ }
114
+
115
+ return {
116
+ atime: stat.atimeMs
117
+ }
118
+ }
119
+
120
+ readDir( path: string ): Promise<string[]> {
121
+ return new Promise( ( resolve, reject ) => {
122
+ fs.readdir( path, ( err, files ) => {
123
+ if( err ) { reject(err); }
124
+ else { resolve(files); }
125
+ });
126
+ });
127
+ }
128
+
129
+ require( name: string ): any {
130
+ // your amd module must define window.node_require = require;
131
+ return host_require( name );
132
+ }
133
+
134
+ cwd( ): string {
135
+ return process.cwd( );
136
+ }
137
+
138
+ getPath( type: PathType ) : string {
139
+ throw 'not imp';
140
+ }
141
+ }