x4js 2.0.13 → 2.0.14

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 (258) hide show
  1. package/.vscode/launch.json +14 -0
  2. package/README.md +5 -0
  3. package/{lib/src/demo → demo}/main.scss +3 -1
  4. package/{lib/src/demo/main.tsx → demo/main.ts} +37 -36
  5. package/demo/package.json +26 -0
  6. package/demo/scss.d.ts +4 -0
  7. package/demo/svg.d.ts +1 -0
  8. package/demo/tsconfig.json +14 -0
  9. package/lib/README.txt +5 -0
  10. package/lib/cjs/x4.css +1 -1
  11. package/lib/cjs/x4.js +2 -1
  12. package/lib/esm/x4.css +1 -1
  13. package/lib/esm/x4.mjs +2 -1
  14. package/lib/src/components/boxes/boxes.module.scss +17 -0
  15. package/lib/src/components/boxes/boxes.ts +162 -13
  16. package/lib/src/components/breadcrumb/breadcrumb.scss +56 -28
  17. package/lib/src/components/breadcrumb/breadcrumb.ts +93 -84
  18. package/lib/src/components/btngroup/btngroup.module.scss +12 -0
  19. package/lib/src/components/btngroup/btngroup.ts +41 -8
  20. package/lib/src/components/button/button.module.scss +23 -5
  21. package/lib/src/components/button/button.ts +72 -4
  22. package/lib/src/components/canvas/canvas.module.scss +25 -0
  23. package/lib/src/components/canvas/canvas.ts +189 -0
  24. package/lib/src/components/canvas/canvas_ex.ts +269 -0
  25. package/lib/src/components/checkbox/checkbox.ts +18 -4
  26. package/lib/src/components/combobox/combobox.module.scss +24 -15
  27. package/lib/src/components/combobox/combobox.ts +107 -24
  28. package/lib/src/components/components.ts +7 -0
  29. package/lib/src/components/dialog/dialog.module.scss +37 -3
  30. package/lib/src/components/dialog/dialog.ts +149 -31
  31. package/lib/src/components/filedrop/cloud-arrow-up.svg +1 -0
  32. package/lib/src/components/filedrop/filedrop.module.scss +70 -0
  33. package/lib/src/components/filedrop/filedrop.ts +131 -0
  34. package/lib/src/components/form/form.module.scss +4 -0
  35. package/lib/src/components/form/form.ts +137 -6
  36. package/lib/src/components/gridview/arrow-down-light.svg +1 -0
  37. package/lib/src/components/gridview/arrow-up-light.svg +1 -0
  38. package/lib/src/components/gridview/gridview.module.scss +324 -0
  39. package/lib/src/components/gridview/gridview.ts +1175 -0
  40. package/lib/src/components/icon/icon.module.scss +1 -1
  41. package/lib/src/components/icon/icon.ts +4 -1
  42. package/lib/src/components/image/image.module.scss +8 -1
  43. package/lib/src/components/image/image.ts +105 -6
  44. package/lib/src/components/input/input.module.scss +8 -3
  45. package/lib/src/components/input/input.ts +137 -14
  46. package/lib/src/components/keyboard/arrow-up.svg +1 -0
  47. package/lib/src/components/keyboard/delete-left.svg +1 -0
  48. package/lib/src/components/keyboard/eye-slash.svg +1 -0
  49. package/lib/src/components/keyboard/keyboard.module.scss +134 -0
  50. package/lib/src/components/keyboard/keyboard.ts +525 -0
  51. package/lib/src/components/label/label.module.scss +22 -4
  52. package/lib/src/components/label/label.ts +33 -0
  53. package/lib/src/components/link/link.ts +81 -78
  54. package/lib/src/components/listbox/listbox.module.scss +61 -3
  55. package/lib/src/components/listbox/listbox.ts +164 -56
  56. package/lib/src/components/menu/menu.module.scss +10 -1
  57. package/lib/src/components/menu/menu.ts +4 -1
  58. package/lib/src/components/messages/messages.module.scss +44 -0
  59. package/lib/src/components/messages/messages.ts +164 -18
  60. package/lib/src/components/messages/pen-field.svg +1 -0
  61. package/lib/src/components/normalize.scss +5 -0
  62. package/lib/src/components/notification/notification.module.scss +4 -2
  63. package/lib/src/components/notification/notification.ts +2 -4
  64. package/lib/src/components/panel/panel.module.scss +12 -0
  65. package/lib/src/components/popup/popup.module.scss +4 -2
  66. package/lib/src/components/popup/popup.ts +136 -92
  67. package/lib/src/components/propgrid/folder-closed.svg +1 -0
  68. package/lib/src/components/propgrid/folder-open.svg +1 -0
  69. package/lib/src/components/propgrid/progrid.module.scss +108 -0
  70. package/lib/src/components/propgrid/propgrid.ts +271 -0
  71. package/lib/src/components/propgrid/updown.svg +4 -0
  72. package/lib/src/components/radio/radio.module.scss +147 -0
  73. package/lib/src/components/radio/radio.svg +4 -0
  74. package/lib/src/components/radio/radio.ts +142 -0
  75. package/lib/src/components/select/select.module.scss +9 -0
  76. package/lib/src/components/select/select.ts +134 -0
  77. package/lib/src/components/shared.scss +47 -0
  78. package/lib/src/components/sizers/sizer.ts +9 -2
  79. package/lib/src/components/slider/slider.module.scss +77 -30
  80. package/lib/src/components/slider/slider.ts +72 -22
  81. package/lib/src/components/tabs/tabs.module.scss +1 -2
  82. package/lib/src/components/tabs/tabs.ts +43 -12
  83. package/lib/src/components/textarea/textarea.module.scss +6 -2
  84. package/lib/src/components/textarea/textarea.ts +73 -8
  85. package/lib/src/components/textedit/textedit.module.scss +3 -1
  86. package/lib/src/components/textedit/textedit.ts +31 -4
  87. package/lib/src/components/themes.scss +7 -0
  88. package/lib/src/components/tickline/tickline.module.scss +26 -0
  89. package/lib/src/components/tickline/tickline.ts +82 -0
  90. package/lib/src/components/tooltips/comments-question.svg +1 -0
  91. package/lib/src/components/tooltips/tooltips.scss +30 -9
  92. package/lib/src/components/tooltips/tooltips.ts +10 -5
  93. package/lib/src/components/treeview/treeview.module.scss +129 -60
  94. package/lib/src/components/treeview/treeview.ts +47 -12
  95. package/lib/src/components/viewport/viewport.module.scss +7 -0
  96. package/lib/src/core/component.ts +102 -32
  97. package/lib/src/core/core_application.ts +222 -2
  98. package/lib/src/core/core_colors.ts +2 -2
  99. package/lib/src/{components/grid/datastore.ts → core/core_data.ts} +261 -250
  100. package/lib/src/core/core_dragdrop.ts +3 -3
  101. package/lib/src/core/core_element.ts +13 -1
  102. package/lib/src/core/core_events.ts +28 -0
  103. package/lib/src/core/core_i18n.ts +18 -2
  104. package/lib/src/core/core_react.ts +79 -0
  105. package/lib/src/core/core_router.ts +23 -7
  106. package/lib/src/core/core_styles.ts +5 -5
  107. package/lib/src/core/core_svg.ts +173 -12
  108. package/lib/src/core/core_tools.ts +305 -87
  109. package/lib/src/x4tsx.d.ts +25 -0
  110. package/lib/styles/x4.css +1 -1
  111. package/lib/types/x4js.d.ts +767 -92
  112. package/package.json +4 -4
  113. package/scripts/build.mjs +378 -0
  114. package/scripts/prepack.mjs +346 -0
  115. package/src/components/base.scss +25 -0
  116. package/src/components/boxes/boxes.module.scss +54 -0
  117. package/src/components/boxes/boxes.ts +278 -0
  118. package/src/components/breadcrumb/breadcrumb.scss +56 -0
  119. package/src/components/breadcrumb/breadcrumb.ts +93 -0
  120. package/src/components/breadcrumb/chevron-right.svg +1 -0
  121. package/src/components/btngroup/btngroup.module.scss +41 -0
  122. package/src/components/btngroup/btngroup.ts +153 -0
  123. package/src/components/button/button.module.scss +173 -0
  124. package/src/components/button/button.ts +185 -0
  125. package/src/components/calendar/calendar-check-sharp-light.svg +1 -0
  126. package/src/components/calendar/calendar.module.scss +163 -0
  127. package/src/components/calendar/calendar.ts +327 -0
  128. package/src/components/calendar/chevron-left-sharp-light.svg +1 -0
  129. package/src/components/calendar/chevron-right-sharp-light.svg +1 -0
  130. package/src/components/canvas/canvas.module.scss +25 -0
  131. package/src/components/canvas/canvas.ts +189 -0
  132. package/src/components/canvas/canvas_ex.ts +269 -0
  133. package/src/components/checkbox/check.svg +4 -0
  134. package/src/components/checkbox/checkbox.module.scss +142 -0
  135. package/src/components/checkbox/checkbox.ts +140 -0
  136. package/src/components/colorinput/colorinput.module.scss +65 -0
  137. package/src/components/colorinput/colorinput.ts +91 -0
  138. package/src/components/colorinput/crosshairs-simple-sharp-light.svg +1 -0
  139. package/src/components/colorpicker/colorpicker.module.scss +133 -0
  140. package/src/components/colorpicker/colorpicker.ts +482 -0
  141. package/src/components/combobox/combobox.module.scss +133 -0
  142. package/src/components/combobox/combobox.ts +275 -0
  143. package/src/components/combobox/updown.svg +4 -0
  144. package/src/components/components.ts +41 -0
  145. package/src/components/dialog/dialog.module.scss +105 -0
  146. package/src/components/dialog/dialog.ts +212 -0
  147. package/src/components/dialog/xmark-sharp-light.svg +1 -0
  148. package/src/components/filedrop/cloud-arrow-up.svg +1 -0
  149. package/src/components/filedrop/filedrop.module.scss +70 -0
  150. package/src/components/filedrop/filedrop.ts +131 -0
  151. package/src/components/form/form.module.scss +38 -0
  152. package/src/components/form/form.ts +172 -0
  153. package/src/components/gridview/arrow-down-light.svg +1 -0
  154. package/src/components/gridview/arrow-up-light.svg +1 -0
  155. package/src/components/gridview/gridview.module.scss +324 -0
  156. package/src/components/gridview/gridview.ts +1175 -0
  157. package/src/components/header/header.module.scss +40 -0
  158. package/src/components/header/header.ts +130 -0
  159. package/src/components/icon/icon.module.scss +30 -0
  160. package/src/components/icon/icon.ts +139 -0
  161. package/src/components/image/image.module.scss +28 -0
  162. package/src/components/image/image.ts +168 -0
  163. package/src/components/input/input.module.scss +74 -0
  164. package/src/components/input/input.ts +398 -0
  165. package/src/components/keyboard/arrow-up.svg +1 -0
  166. package/src/components/keyboard/delete-left.svg +1 -0
  167. package/src/components/keyboard/eye-slash.svg +1 -0
  168. package/src/components/keyboard/keyboard.module.scss +134 -0
  169. package/src/components/keyboard/keyboard.ts +525 -0
  170. package/src/components/label/label.module.scss +76 -0
  171. package/src/components/label/label.ts +97 -0
  172. package/src/components/link/link.ts +81 -0
  173. package/src/components/listbox/listbox.module.scss +161 -0
  174. package/src/components/listbox/listbox.ts +539 -0
  175. package/src/components/menu/caret-right-solid.svg +1 -0
  176. package/src/components/menu/menu.module.scss +117 -0
  177. package/src/components/menu/menu.ts +174 -0
  178. package/src/components/messages/circle-exclamation.svg +1 -0
  179. package/src/components/messages/messages.module.scss +92 -0
  180. package/src/components/messages/messages.ts +215 -0
  181. package/src/components/messages/pen-field.svg +1 -0
  182. package/src/components/normalize.scss +391 -0
  183. package/src/components/notification/circle-check-solid.svg +1 -0
  184. package/src/components/notification/circle-exclamation-solid.svg +1 -0
  185. package/src/components/notification/circle-notch-light.svg +1 -0
  186. package/src/components/notification/notification.module.scss +84 -0
  187. package/src/components/notification/notification.ts +107 -0
  188. package/src/components/notification/xmark-sharp-light.svg +1 -0
  189. package/src/components/panel/panel.module.scss +60 -0
  190. package/src/components/panel/panel.ts +58 -0
  191. package/src/components/popup/popup.module.scss +45 -0
  192. package/src/components/popup/popup.ts +440 -0
  193. package/src/components/progress/progress.module.scss +57 -0
  194. package/src/components/progress/progress.ts +44 -0
  195. package/src/components/propgrid/folder-closed.svg +1 -0
  196. package/src/components/propgrid/folder-open.svg +1 -0
  197. package/src/components/propgrid/progrid.module.scss +108 -0
  198. package/src/components/propgrid/propgrid.ts +271 -0
  199. package/src/components/propgrid/updown.svg +4 -0
  200. package/src/components/radio/radio.module.scss +147 -0
  201. package/src/components/radio/radio.svg +4 -0
  202. package/src/components/radio/radio.ts +142 -0
  203. package/src/components/rating/rating.module.scss +23 -0
  204. package/src/components/rating/rating.ts +131 -0
  205. package/src/components/rating/star-sharp-light.svg +1 -0
  206. package/src/components/rating/star-sharp-solid.svg +1 -0
  207. package/src/components/select/select.module.scss +9 -0
  208. package/src/components/select/select.ts +134 -0
  209. package/src/components/shared.scss +137 -0
  210. package/src/components/sizers/sizer.module.scss +90 -0
  211. package/src/components/sizers/sizer.ts +131 -0
  212. package/src/components/slider/slider.module.scss +118 -0
  213. package/src/components/slider/slider.ts +198 -0
  214. package/src/components/switch/switch.module.scss +127 -0
  215. package/src/components/switch/switch.ts +62 -0
  216. package/src/components/tabs/tabs.module.scss +45 -0
  217. package/src/components/tabs/tabs.ts +199 -0
  218. package/src/components/textarea/textarea.module.scss +63 -0
  219. package/src/components/textarea/textarea.ts +125 -0
  220. package/src/components/textedit/textedit.module.scss +116 -0
  221. package/src/components/textedit/textedit.ts +110 -0
  222. package/src/components/themes.scss +88 -0
  223. package/src/components/tickline/tickline.module.scss +26 -0
  224. package/src/components/tickline/tickline.ts +82 -0
  225. package/src/components/tooltips/circle-info-sharp-light.svg +1 -0
  226. package/src/components/tooltips/comments-question.svg +1 -0
  227. package/src/components/tooltips/tooltips.scss +72 -0
  228. package/src/components/tooltips/tooltips.ts +109 -0
  229. package/src/components/treeview/chevron-down-light.svg +1 -0
  230. package/src/components/treeview/treeview.module.scss +185 -0
  231. package/src/components/treeview/treeview.ts +445 -0
  232. package/src/components/viewport/viewport.module.scss +32 -0
  233. package/src/components/viewport/viewport.ts +41 -0
  234. package/src/core/component.ts +1072 -0
  235. package/src/core/core_application.ts +264 -0
  236. package/src/core/core_colors.ts +250 -0
  237. package/src/core/core_data.ts +1309 -0
  238. package/src/core/core_dom.ts +471 -0
  239. package/src/core/core_dragdrop.ts +201 -0
  240. package/src/core/core_element.ts +110 -0
  241. package/src/core/core_events.ts +177 -0
  242. package/src/core/core_i18n.ts +393 -0
  243. package/src/core/core_react.ts +79 -0
  244. package/src/core/core_router.ts +237 -0
  245. package/src/core/core_styles.ts +214 -0
  246. package/src/core/core_svg.ts +711 -0
  247. package/src/core/core_tools.ts +906 -0
  248. package/src/types/scss.d.ts +4 -0
  249. package/src/types/svg.d.ts +1 -0
  250. package/src/types/x4react.d.ts +9 -0
  251. package/src/x4.scss +19 -0
  252. package/src/x4tsx.d.ts +25 -0
  253. package/tsconfig.json +14 -0
  254. package/lib/src/components/grid/gridview.ts +0 -1108
  255. package/lib/src/components/grid/memdb.ts +0 -325
  256. /package/{lib/src/demo → demo}/assets/house-light.svg +0 -0
  257. /package/{lib/src/demo → demo}/assets/radio.svg +0 -0
  258. /package/{lib/src/demo → demo}/index.html +0 -0
@@ -0,0 +1,269 @@
1
+ /**
2
+ * ___ ___ __
3
+ * \ \/ / / _
4
+ * \ / /_| |_
5
+ * / \____ _|
6
+ * /__/\__\ |_|.2
7
+ *
8
+ * @file canvas_ex.ts
9
+ * @author Etienne Cochard
10
+ *
11
+ * @copyright (c) 2025 R-libre ingenierie
12
+ *
13
+ * Use of this source code is governed by an MIT-style license
14
+ * that can be found in the LICENSE file or at https://opensource.org/licenses/MIT.
15
+ **/
16
+
17
+
18
+ export interface CanvasEx extends CanvasRenderingContext2D {
19
+ width: number;
20
+ height: number;
21
+
22
+ smoothLine(points: any[], path: CanvasPath, move: boolean): void;
23
+ smoothLineEx(_points: any[], tension: number, numOfSeg: number, path: CanvasPath, move?: boolean, close?: boolean): void;
24
+ line(x1: number, y1: number, x2: number, y2: number, color: string, lineWidth: number): void;
25
+ roundRect(x: number, y: number, width: number, height: number, radius: number): void;
26
+ calcTextSize(text: string, rounded: boolean): { width: number, height: number };
27
+ setFontSize(fs: number): void;
28
+ circle(x: number, y: number, radius: number): void;
29
+ }
30
+
31
+ export function createPainter(c2d: CanvasRenderingContext2D, w: number, h: number): CanvasEx {
32
+
33
+ let cp = c2d as CanvasEx;
34
+
35
+ cp.width = w;
36
+ cp.height = h;
37
+
38
+ cp.smoothLine = smoothLine;
39
+ cp.smoothLineEx = smoothLineEx;
40
+ cp.line = line;
41
+ cp.roundRect = roundRect;
42
+ cp.calcTextSize = calcTextSize;
43
+ cp.setFontSize = setFontSize;
44
+ cp.circle = circle;
45
+
46
+ return cp;
47
+ }
48
+
49
+ function smoothLine( this: CanvasRenderingContext2D, points: any[], path: CanvasPath = null, move = true) {
50
+ if (points.length < 2) {
51
+ return;
52
+ }
53
+
54
+ if (!path) {
55
+ path = this;
56
+ }
57
+
58
+ if (points.length == 2) {
59
+ if (move !== false) {
60
+ path.moveTo(points[0].x, points[0].y);
61
+ }
62
+ else {
63
+ path.lineTo(points[0].x, points[0].y);
64
+ }
65
+
66
+ path.lineTo(points[1].x, points[1].y);
67
+ return;
68
+ }
69
+
70
+ function midPointBtw(p1: IPoint, p2: IPoint ) {
71
+ return {
72
+ x: p1.x + (p2.x - p1.x) / 2,
73
+ y: p1.y + (p2.y - p1.y) / 2
74
+ };
75
+ }
76
+
77
+ function getQuadraticXY(t: number, sx: number, sy: number, cp1x: number, cp1y: number, ex: number, ey: number) : IPoint {
78
+ return {
79
+ x: (1 - t) * (1 - t) * sx + 2 * (1 - t) * t * cp1x + t * t * ex,
80
+ y: (1 - t) * (1 - t) * sy + 2 * (1 - t) * t * cp1y + t * t * ey
81
+ };
82
+ }
83
+
84
+ let p1 = points[0],
85
+ p2 = points[1],
86
+ p3 = p1;
87
+
88
+ path.moveTo(p1.x, p1.y);
89
+
90
+ for (let i = 1, len = points.length; i < len; i++) {
91
+ // we pick the point between pi+1 & pi+2 as the
92
+ // end point and p1 as our control point
93
+ let midPoint = midPointBtw(p1, p2);
94
+ //this.quadraticCurveTo(p1.x, p1.y, midPoint.x, midPoint.y);
95
+ for (let i = 0; i < 8; i++) {
96
+ let { x, y } = getQuadraticXY(i / 8, p3.x, p3.y, p1.x, p1.y, midPoint.x, midPoint.y);
97
+ path.lineTo(x, y);
98
+ }
99
+
100
+ p1 = points[i];
101
+ p2 = points[i + 1];
102
+ p3 = midPoint;
103
+ }
104
+
105
+ // Draw last line as a straight line while
106
+ // we wait for the next point to be able to calculate
107
+ // the bezier control point
108
+
109
+ path.lineTo(p1.x, p1.y);
110
+ }
111
+
112
+ function smoothLineEx(this: CanvasRenderingContext2D, _points: any[], tension: number = 0.5, numOfSeg: number = 10, path: CanvasPath = null, move = true, close = false) {
113
+
114
+ let points = [];
115
+
116
+ //pts = points.slice(0);
117
+ for (let p = 0, pc = _points.length; p < pc; p++) {
118
+ points.push(_points[p].x);
119
+ points.push(_points[p].y);
120
+ }
121
+
122
+ let pts,
123
+ i = 1,
124
+ l = points.length,
125
+ rPos = 0,
126
+ rLen = (l - 2) * numOfSeg + 2 + (close ? 2 * numOfSeg : 0),
127
+ res = new Float32Array(rLen),
128
+ cache = new Float32Array((numOfSeg + 2) * 4),
129
+ cachePtr = 4;
130
+
131
+ pts = points.slice(0);
132
+
133
+ if (close) {
134
+ pts.unshift(points[l - 1]); // insert end point as first point
135
+ pts.unshift(points[l - 2]);
136
+ pts.push(points[0], points[1]); // first point as last point
137
+ }
138
+ else {
139
+ pts.unshift(points[1]); // copy 1. point and insert at beginning
140
+ pts.unshift(points[0]);
141
+ pts.push(points[l - 2], points[l - 1]); // duplicate end-points
142
+ }
143
+
144
+ // cache inner-loop calculations as they are based on t alone
145
+ cache[0] = 1; // 1,0,0,0
146
+
147
+ for (; i < numOfSeg; i++) {
148
+
149
+ var st = i / numOfSeg,
150
+ st2 = st * st,
151
+ st3 = st2 * st,
152
+ st23 = st3 * 2,
153
+ st32 = st2 * 3;
154
+
155
+ cache[cachePtr++] = st23 - st32 + 1; // c1
156
+ cache[cachePtr++] = st32 - st23; // c2
157
+ cache[cachePtr++] = st3 - 2 * st2 + st; // c3
158
+ cache[cachePtr++] = st3 - st2; // c4
159
+ }
160
+
161
+ cache[cachePtr] = 1; // 0,1,0,0
162
+
163
+ // calc. points
164
+ parse(pts, cache, l);
165
+
166
+ if (close) {
167
+ //l = points.length;
168
+ pts = [];
169
+ pts.push(points[l - 4], points[l - 3], points[l - 2], points[l - 1]); // second last and last
170
+ pts.push(points[0], points[1], points[2], points[3]); // first and second
171
+ parse(pts, cache, 4);
172
+ }
173
+
174
+ function parse(pts: number[], cache: Float32Array, l: number) {
175
+
176
+ for (var i = 2, t; i < l; i += 2) {
177
+
178
+ var pt1 = pts[i],
179
+ pt2 = pts[i + 1],
180
+ pt3 = pts[i + 2],
181
+ pt4 = pts[i + 3],
182
+
183
+ t1x = (pt3 - pts[i - 2]) * tension,
184
+ t1y = (pt4 - pts[i - 1]) * tension,
185
+ t2x = (pts[i + 4] - pt1) * tension,
186
+ t2y = (pts[i + 5] - pt2) * tension;
187
+
188
+ for (t = 0; t < numOfSeg; t++) {
189
+
190
+ var c = t << 2, //t * 4;
191
+
192
+ c1 = cache[c],
193
+ c2 = cache[c + 1],
194
+ c3 = cache[c + 2],
195
+ c4 = cache[c + 3];
196
+
197
+ res[rPos++] = c1 * pt1 + c2 * pt3 + c3 * t1x + c4 * t2x;
198
+ res[rPos++] = c1 * pt2 + c2 * pt4 + c3 * t1y + c4 * t2y;
199
+ }
200
+ }
201
+ }
202
+
203
+ // add last point
204
+ l = close ? 0 : points.length - 2;
205
+ res[rPos++] = points[l];
206
+ res[rPos] = points[l + 1];
207
+
208
+ if (!path) {
209
+ path = this;
210
+ }
211
+
212
+ // add lines to path
213
+ for (let i = 0, l = res.length; i < l; i += 2) {
214
+ if (i == 0 && move !== false) {
215
+ path.moveTo(res[i], res[i + 1]);
216
+ }
217
+ else {
218
+ path.lineTo(res[i], res[i + 1]);
219
+ }
220
+ }
221
+ }
222
+
223
+ function line(this: CanvasRenderingContext2D, x1: number, y1: number, x2: number, y2: number, color: string, lineWidth: number = 1) {
224
+ this.save();
225
+ this.beginPath();
226
+ this.moveTo(x1, y1);
227
+ this.lineTo(x2, y2);
228
+ this.lineWidth = lineWidth;
229
+ this.strokeStyle = color;
230
+ this.stroke();
231
+ this.restore();
232
+ }
233
+
234
+ function roundRect(this: CanvasRenderingContext2D, x: number, y: number, width: number, height: number, radius: number) {
235
+ //this.beginPath( );
236
+ this.moveTo(x + radius, y);
237
+ this.lineTo(x + width - radius, y);
238
+ this.quadraticCurveTo(x + width, y, x + width, y + radius);
239
+ this.lineTo(x + width, y + height - radius);
240
+ this.quadraticCurveTo(x + width, y + height, x + width - radius, y + height);
241
+ this.lineTo(x + radius, y + height);
242
+ this.quadraticCurveTo(x, y + height, x, y + height - radius);
243
+ this.lineTo(x, y + radius);
244
+ this.quadraticCurveTo(x, y, x + radius, y);
245
+ this.closePath();
246
+ }
247
+
248
+ function calcTextSize( this: CanvasRenderingContext2D, text: string, rounded = false): { width: number, height: number } {
249
+
250
+ let fh = this.measureText(text);
251
+ let lh = fh.fontBoundingBoxAscent + fh.fontBoundingBoxDescent;
252
+
253
+ if (rounded) {
254
+ return { width: Math.round(fh.width), height: Math.round(lh) };
255
+ }
256
+ else {
257
+ return { width: fh.width, height: lh };
258
+ }
259
+ }
260
+
261
+ function setFontSize( this: CanvasRenderingContext2D, fs: number) {
262
+ let fsize = Math.round(fs) + 'px';
263
+ this.font = this.font.replace(/\d+px/, fsize);
264
+ }
265
+
266
+ function circle( this: CanvasRenderingContext2D, x: number, y: number, radius: number) {
267
+ this.moveTo(x + radius, y);
268
+ this.arc(x, y, radius, 0, Math.PI * 2);
269
+ }
@@ -0,0 +1,4 @@
1
+ <svg viewBox="0 0 10 7" fill="none" xmlns="http://www.w3.org/2000/svg" aria-hidden="true">
2
+ <path d="M4 4.586L1.707 2.293A1 1 0 1 0 .293 3.707l3 3a.997.997 0 0 0 1.414 0l5-5A1 1 0 1 0 8.293.293L4 4.586z" fill="currentColor" fill-rule="evenodd" clip-rule="evenodd">
3
+ </path>
4
+ </svg>
@@ -0,0 +1,142 @@
1
+ /**
2
+ * ___ ___ __
3
+ * \ \/ / / _
4
+ * \ / /_| |_
5
+ * / \____ _|
6
+ * /__/\__\ |_|
7
+ *
8
+ * @file checkbox.module.scss
9
+ * @author Etienne Cochard
10
+ *
11
+ * @copyright (c) 2024 R-libre ingenierie
12
+ *
13
+ * Use of this source code is governed by an MIT-style license
14
+ * that can be found in the LICENSE file or at https://opensource.org/licenses/MIT.
15
+ **/
16
+
17
+ @use "../shared.scss";
18
+
19
+ :root {
20
+ --checkbox-background-check: var( --accent-background );
21
+ --checkbox-background-check-hover: var( --accent-background-hover );
22
+ --checkbox-background-disabled: var( --disabled-color );
23
+ --checkbox-background-disabled-check: var( --disabled-background );
24
+ --checkbox-color-disabled: var( --disabled-background );
25
+ --checkbox-check-border: var( --border );
26
+ --checkbox-check-border-hover: var( --border-hover );
27
+ }
28
+
29
+ .x4checkbox {
30
+ @extend .hbox;
31
+
32
+ display: flex;
33
+ flex-direction: row;
34
+ align-items: center;
35
+
36
+ margin: 5px;
37
+ padding: 4px;
38
+ gap: 4px;
39
+ cursor: pointer;
40
+
41
+ .inner {
42
+ height: 1rem;
43
+ width: 1rem;
44
+ color: white;
45
+ position: relative;
46
+ order: 1;
47
+
48
+ input {
49
+ appearance: none;
50
+ outline: none;
51
+
52
+ cursor: pointer;
53
+ display: block;
54
+ margin: 0;
55
+ padding: 0;
56
+ left: 0;
57
+ top: 0;
58
+ width: 100%;
59
+ height: 100%;
60
+ transition: opacity .1s ease;
61
+
62
+ &:checked {
63
+ background-color: var( --checkbox-background-check );
64
+ }
65
+
66
+ &:checked:hover {
67
+ background-color: var( --checkbox-background-check-hover );
68
+ }
69
+
70
+ &:not(:checked) {
71
+ border: 1px solid var( --checkbox-check-border );
72
+ }
73
+
74
+ &:not(:checked):hover {
75
+ border: 1px solid var( --checkbox-check-border-hover );
76
+ }
77
+ }
78
+
79
+ svg {
80
+ margin: auto;
81
+ pointer-events: none;
82
+ position: absolute;
83
+ opacity: 0;
84
+ left: 0;
85
+ right: 0;
86
+ top: 0;
87
+ bottom: 0;
88
+ width: 100%;
89
+ height: 50%;
90
+ }
91
+
92
+ &:has(input:checked) {
93
+ input {
94
+ opacity: 1;
95
+ }
96
+
97
+ svg {
98
+ opacity: 1;
99
+ }
100
+ }
101
+ }
102
+
103
+ &:focus-within {
104
+ label #text {
105
+ text-decoration: underline;
106
+ }
107
+ }
108
+
109
+ &[disabled] {
110
+ &, * {
111
+ cursor: not-allowed;
112
+ }
113
+
114
+ label {
115
+
116
+ pointer-events: none;
117
+ color: var( --checkbox-color-disabled );
118
+ }
119
+
120
+ .inner {
121
+ pointer-events: none;
122
+ input {
123
+ background-color: var( --checkbox-background-disabled );
124
+
125
+ &:checked {
126
+ background-color: var( --checkbox-background-disabled-check );
127
+ }
128
+ }
129
+ }
130
+ }
131
+
132
+ label {
133
+ text-align: right;
134
+ cursor: inherit;
135
+ order: 2;
136
+ }
137
+
138
+ &.left #label {
139
+ order: 0;
140
+ text-align: left;
141
+ }
142
+ }
@@ -0,0 +1,140 @@
1
+ import { Component, ComponentEvents, ComponentProps, EvChange, makeUniqueComponentId } from '../../core/component.js';
2
+ import { EventCallback } from '../../core/core_events.js';
3
+
4
+ import { Input } from '../input/input';
5
+ import { Label } from '../label/label';
6
+
7
+ import { svgLoader } from '../icon/icon.js';
8
+
9
+ import "./checkbox.module.scss"
10
+ import icon from "./check.svg";
11
+ import { class_ns } from '@core/core_tools.js';
12
+
13
+ /**
14
+ * Checkbox events
15
+ */
16
+
17
+ interface CheckBoxEvents extends ComponentEvents {
18
+ change?: EvChange;
19
+ }
20
+
21
+ /**
22
+ * Checkbox properties.
23
+ */
24
+
25
+ interface CheckboxProps extends ComponentProps {
26
+ label: string; // The text label for the checkbox.
27
+ checked?: boolean; // Optional boolean indicating if the checkbox is checked by default.
28
+ value?: boolean | number | string; // Optional value associated with the checkbox.
29
+ name?: string;
30
+ change?: EventCallback<EvChange>;
31
+ }
32
+
33
+ /**
34
+ * Checkbox component that can be checked or unchecked.
35
+ */
36
+
37
+ @class_ns( "x4" )
38
+ export class Checkbox extends Component<CheckboxProps,CheckBoxEvents> {
39
+ readonly _input: Input;
40
+
41
+ /**
42
+ * Creates an instance of the Checkbox component.
43
+ *
44
+ * @param {CheckboxProps} props - The properties for the checkbox component, including label, checked state, and value.
45
+ * @example
46
+ * const checkbox = new Checkbox({ label: 'Accept Terms', checked: true });
47
+ */
48
+
49
+ constructor( props: CheckboxProps ) {
50
+ super( props );
51
+
52
+ const inputId = makeUniqueComponentId( );
53
+
54
+ this.mapPropEvents( props, 'change' );
55
+
56
+ this.setContent( [
57
+ new Component( {
58
+ cls: 'inner',
59
+ content: [
60
+ this._input = new Input( {
61
+ type:"checkbox",
62
+ id: inputId,
63
+ name: props.name,
64
+ checked: props.checked,
65
+ dom_events: {
66
+ change: ( ) => this._on_change( ),
67
+ }
68
+ })
69
+ ]
70
+ }),
71
+ new Label( {
72
+ tag: 'label',
73
+ text: props.label,
74
+ labelFor: inputId,
75
+ id: undefined
76
+ } ),
77
+ ])
78
+
79
+ svgLoader.load( icon ).then( svg => {
80
+ this.query<Label>( '.inner' ).dom.insertAdjacentHTML( "beforeend", svg );
81
+ });
82
+
83
+ this.addDOMEvent('click', (e) => this._on_click(e)); // for outside click
84
+ }
85
+
86
+ /**
87
+ * handle click outside label & input
88
+ */
89
+
90
+ protected _on_click( ev: MouseEvent ) {
91
+ if( ev.target==this.dom ) {
92
+ (this._input.dom as HTMLInputElement).click( );
93
+ ev.preventDefault();
94
+ ev.stopPropagation();
95
+ }
96
+ }
97
+
98
+ /**
99
+ * check state changed
100
+ */
101
+
102
+ private _on_change() {
103
+ this.fire('change', { value:this.getCheck() } );
104
+ }
105
+
106
+ /**
107
+ * @return the checked value
108
+ */
109
+
110
+ public getCheck() {
111
+ return this._input.getCheck();
112
+ }
113
+
114
+ /**
115
+ * change the checked value
116
+ * @param {boolean} ck new checked value
117
+ */
118
+
119
+ public setCheck(ck: boolean) {
120
+ this._input.setCheck( ck );
121
+ }
122
+
123
+ /**
124
+ * change the checkbox label
125
+ * @param text
126
+ */
127
+
128
+ public setLabel(text: string) {
129
+ this.query<Label>('label').setText( text );
130
+ }
131
+
132
+ /**
133
+ * toggle the checkbox
134
+ */
135
+
136
+ public toggle() {
137
+ this.setCheck( !this.getCheck() );
138
+ }
139
+
140
+ }
@@ -0,0 +1,65 @@
1
+ /**
2
+ * ___ ___ __
3
+ * \ \/ / / _
4
+ * \ / /_| |_
5
+ * / \____ _|
6
+ * /__/\__\ |_|
7
+ *
8
+ * @file colorinput.module.scss
9
+ * @author Etienne Cochard
10
+ *
11
+ * @copyright (c) 2024 R-libre ingenierie
12
+ *
13
+ * Use of this source code is governed by an MIT-style license
14
+ * that can be found in the LICENSE file or at https://opensource.org/licenses/MIT.
15
+ **/
16
+
17
+ :root {
18
+ --colorinput-btn-background: inherit;
19
+ --colorinput-btn-color: var( --text-secondary );
20
+ --colorinput-btn-color-hover: var( --text-primary );
21
+ }
22
+
23
+ .x4colorinput {
24
+ margin: 5px;
25
+ border-bottom: 1px solid var( --border );
26
+ outline: none;
27
+
28
+ &:focus-within {
29
+ border-bottom-color: var( --border-focus );
30
+ }
31
+
32
+ .swatch {
33
+ margin: 4px;
34
+ width: 1rem;
35
+ height: 1rem;
36
+ }
37
+
38
+ input {
39
+ outline: none;
40
+ margin: 0;
41
+ height: 100%;
42
+ flex-grow: 1;
43
+ }
44
+
45
+ .x4button {
46
+ margin: 0;
47
+ padding: 0;
48
+ outline: none;
49
+ background-color: var( --combobox-btn-background );
50
+ color: var( --colorinput-btn-color );
51
+
52
+ #icon {
53
+ color: var( --colorinput-btn-color );
54
+ }
55
+
56
+ &:hover, &:hover #icon {
57
+ color: var( --colorinput-btn-color-hover );
58
+ }
59
+
60
+ &:focus {
61
+ //background-color: var( --color-30 );
62
+ //color: var( --color-10 );
63
+ }
64
+ }
65
+ }
@@ -0,0 +1,91 @@
1
+ /**
2
+ * ___ ___ __
3
+ * \ \/ / / _
4
+ * \ / /_| |_
5
+ * / \____ _|
6
+ * /__/\__\ |_|
7
+ *
8
+ * @file colorinput.ts
9
+ * @author Etienne Cochard
10
+ *
11
+ * @copyright (c) 2024 R-libre ingenierie
12
+ *
13
+ * Use of this source code is governed by an MIT-style license
14
+ * that can be found in the LICENSE file or at https://opensource.org/licenses/MIT.
15
+ **/
16
+
17
+ import { Component } from '../../core/component';
18
+ import { isFeatureAvailable, class_ns } from '../../core/core_tools.js';
19
+ import { Color } from '../../core/core_colors';
20
+
21
+ import { BoxProps, HBox } from '../boxes/boxes';
22
+ import { Input } from '../input/input.js';
23
+ import { Button } from '../button/button.js';
24
+
25
+
26
+ import "./colorinput.module.scss"
27
+ import icon from "./crosshairs-simple-sharp-light.svg"
28
+
29
+ //TODO: add swatches
30
+ //TODO: better keyboard handling (selection after cursor)
31
+
32
+ /**
33
+ *
34
+ */
35
+
36
+ interface ColorInputProps extends BoxProps {
37
+ color: Color | string;
38
+ }
39
+
40
+ /**
41
+ *
42
+ */
43
+
44
+ @class_ns( "x4" )
45
+ export class ColorInput extends HBox<ColorInputProps> {
46
+ static "$cls-ns" = "x4";
47
+
48
+ constructor( props: ColorInputProps ) {
49
+ super( props );
50
+
51
+ let swatch: Component;
52
+ let edit: Input;
53
+
54
+ this.setContent( [
55
+ swatch = new Component( { cls: "swatch" } ),
56
+ edit = new Input( { type: "text", value: "", spellcheck: false } ),
57
+
58
+ isFeatureAvailable("eyedropper") ? new Button( { icon: icon, click: ( ) => {
59
+ const eyeDropper = new (window as any).EyeDropper();
60
+ eyeDropper.open( ).then( ( result: any ) => {
61
+ color = new Color( result.sRGBHex );
62
+ updateColor( color );
63
+ });
64
+ } } ) : null
65
+ ])
66
+
67
+ edit.addDOMEvent( "input", ( ) => {
68
+ const txt = edit.getValue( );
69
+ const clr = new Color( txt );
70
+ if( !clr.isInvalid() ) {
71
+ color = clr;
72
+ updateColor( color );
73
+ }
74
+ });
75
+
76
+ const updateColor = ( clr: Color ) => {
77
+ swatch.setStyleValue( "backgroundColor", clr.toRgbString(false) );
78
+ edit.setValue( clr.toRgbString(false) );
79
+ }
80
+
81
+ let color: Color;
82
+ if( props.color instanceof Color ) {
83
+ color = props.color;
84
+ }
85
+ else {
86
+ color = new Color( props.color );
87
+ }
88
+
89
+ updateColor( color );
90
+ }
91
+ }
@@ -0,0 +1 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512" fill="currentColor"><!--!Font Awesome Pro 6.6.0 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license (Commercial License) Copyright 2024 Fonticons, Inc.--><path d="M479.4 240L384 240l-16 0 0 32 16 0 95.4 0C471.6 383 383 471.6 272 479.4l0-95.4 0-16-32 0 0 16 0 95.4C129 471.6 40.4 383 32.6 272l95.4 0 16 0 0-32-16 0-95.4 0C40.4 129 129 40.4 240 32.6l0 95.4 0 16 32 0 0-16 0-95.4C383 40.4 471.6 129 479.4 240zM256 512A256 256 0 1 0 256 0a256 256 0 1 0 0 512z"/></svg>