x4js 2.0.35 → 2.1.0-manual
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +21 -21
- package/package.json +39 -26
- package/src/components/base.scss +25 -89
- package/src/components/boxes/boxes.module.scss +54 -54
- package/src/components/boxes/boxes.ts +513 -513
- package/src/components/breadcrumb/breadcrumb.scss +56 -56
- package/src/components/breadcrumb/breadcrumb.ts +93 -93
- package/src/components/btngroup/btngroup.module.scss +40 -40
- package/src/components/btngroup/btngroup.ts +152 -152
- package/src/components/button/button.module.scss +172 -172
- package/src/components/button/button.ts +232 -232
- package/src/components/calendar/calendar.module.scss +162 -162
- package/src/components/calendar/calendar.ts +326 -326
- package/src/components/canvas/canvas.module.scss +24 -24
- package/src/components/canvas/canvas.ts +195 -195
- package/src/components/canvas/canvas_ex.ts +275 -275
- package/src/components/checkbox/check.svg +3 -3
- package/src/components/checkbox/checkbox.module.scss +141 -141
- package/src/components/checkbox/checkbox.ts +139 -139
- package/src/components/colorinput/colorinput.module.scss +64 -64
- package/src/components/colorinput/colorinput.ts +90 -90
- package/src/components/colorpicker/colorpicker.module.scss +132 -132
- package/src/components/colorpicker/colorpicker.ts +481 -481
- package/src/components/combobox/combobox.module.scss +145 -145
- package/src/components/combobox/combobox.ts +282 -282
- package/src/components/combobox/updown.svg +3 -3
- package/src/components/components.ts +45 -44
- package/src/components/dialog/dialog.module.scss +103 -105
- package/src/components/dialog/dialog.ts +233 -233
- package/src/components/filedrop/filedrop.module.scss +69 -69
- package/src/components/filedrop/filedrop.ts +130 -130
- package/src/components/form/form.module.scss +38 -38
- package/src/components/form/form.ts +172 -172
- package/src/components/gridview/gridview.module.scss +323 -337
- package/src/components/gridview/gridview.ts +1276 -1316
- package/src/components/header/header.module.scss +40 -40
- package/src/components/header/header.ts +141 -141
- package/src/components/icon/icon.module.scss +32 -32
- package/src/components/icon/icon.ts +165 -165
- package/src/components/image/image.module.scss +27 -27
- package/src/components/image/image.ts +168 -168
- package/src/components/input/input.module.scss +74 -74
- package/src/components/input/input.ts +537 -537
- package/src/components/keyboard/keyboard.module.scss +136 -136
- package/src/components/keyboard/keyboard.ts +549 -549
- package/src/components/label/label.module.scss +90 -91
- package/src/components/label/label.ts +101 -101
- package/src/components/link/link.module.scss +44 -44
- package/src/components/link/link.ts +87 -87
- package/src/components/listbox/listbox.module.scss +179 -179
- package/src/components/listbox/listbox.ts +596 -596
- package/src/components/menu/menu.module.scss +128 -128
- package/src/components/menu/menu.ts +174 -174
- package/src/components/messages/messages.module.scss +92 -146
- package/src/components/messages/messages.ts +237 -303
- package/src/components/normalize.scss +391 -391
- package/src/components/notification/notification.module.scss +83 -83
- package/src/components/notification/notification.ts +107 -107
- package/src/components/panel/panel.module.scss +66 -71
- package/src/components/panel/panel.ts +57 -57
- package/src/components/popup/popup.module.scss +51 -51
- package/src/components/popup/popup.ts +457 -457
- package/src/components/progress/progress.module.scss +56 -56
- package/src/components/progress/progress.ts +43 -43
- package/src/components/propgrid/progrid.module.scss +111 -111
- package/src/components/propgrid/propgrid.ts +300 -300
- package/src/components/propgrid/updown.svg +3 -3
- package/src/components/radio/radio.module.scss +163 -163
- package/src/components/radio/radio.svg +3 -3
- package/src/components/radio/radio.ts +141 -141
- package/src/components/rating/rating.module.scss +22 -22
- package/src/components/rating/rating.ts +131 -131
- package/src/components/select/select.module.scss +8 -8
- package/src/components/select/select.ts +134 -134
- package/src/components/shared.scss +141 -71
- package/src/components/sizers/sizer.module.scss +90 -112
- package/src/components/sizers/sizer.ts +131 -155
- package/src/components/slider/slider.module.scss +117 -117
- package/src/components/slider/slider.ts +197 -197
- package/src/components/spreadsheet/spreadsheet.module.scss +307 -307
- package/src/components/spreadsheet/spreadsheet.ts +1223 -1223
- package/src/components/switch/switch.module.scss +126 -126
- package/src/components/switch/switch.ts +61 -61
- package/src/components/tabs/tabs.module.scss +46 -67
- package/src/components/tabs/tabs.ts +229 -234
- package/src/components/textarea/textarea.module.scss +63 -63
- package/src/components/textarea/textarea.ts +131 -131
- package/src/components/textedit/textedit.module.scss +115 -115
- package/src/components/textedit/textedit.ts +122 -122
- package/src/components/themes.scss +90 -90
- package/src/components/tickline/tickline.module.scss +25 -25
- package/src/components/tickline/tickline.ts +81 -81
- package/src/components/tooltips/tooltips.scss +71 -71
- package/src/components/tooltips/tooltips.ts +120 -120
- package/src/components/treeview/treeview.module.scss +192 -192
- package/src/components/treeview/treeview.ts +484 -484
- package/src/components/viewport/viewport.module.scss +31 -31
- package/src/components/viewport/viewport.ts +41 -41
- package/src/core/component.ts +1299 -1299
- package/src/core/core_application.ts +361 -361
- package/src/core/core_colors.ts +512 -512
- package/src/core/core_data.ts +1297 -1310
- package/src/core/core_dom.ts +481 -481
- package/src/core/core_dragdrop.ts +225 -225
- package/src/core/core_element.ts +221 -221
- package/src/core/core_events.ts +214 -214
- package/src/core/core_i18n.ts +395 -395
- package/src/core/core_pdf.ts +454 -454
- package/src/core/core_react.ts +78 -78
- package/src/core/core_router.ts +296 -296
- package/src/core/core_state.ts +62 -62
- package/src/core/core_styles.ts +213 -213
- package/src/core/core_svg.ts +1042 -1042
- package/src/core/core_tools.ts +996 -996
- package/src/types/scss.d.ts +4 -4
- package/src/types/x4react.d.ts +8 -8
- package/src/x4.scss +19 -19
- package/src/x4.ts +36 -36
- package/src/x4tsx.d.ts +26 -26
- package/.vscode/launch.json +0 -14
- package/.vscode/settings.json +0 -2
- package/demo/assets/house-light.svg +0 -1
- package/demo/assets/radio.svg +0 -4
- package/demo/index.html +0 -12
- package/demo/main.scss +0 -23
- package/demo/main.ts +0 -324
- package/demo/package.json +0 -26
- package/demo/scss.d.ts +0 -4
- package/demo/svg.d.ts +0 -1
- package/demo/tsconfig.json +0 -14
- package/src/components/gridview/folder-open.svg +0 -1
- package/src/components/messages/spinner.svg +0 -1
- package/src/x4.d.ts +0 -10
- package/tsconfig.json +0 -11
|
@@ -1,276 +1,276 @@
|
|
|
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
|
-
import { Point } from "../../core/core_tools"
|
|
18
|
-
|
|
19
|
-
export interface CanvasEx extends CanvasRenderingContext2D {
|
|
20
|
-
width: number;
|
|
21
|
-
height: number;
|
|
22
|
-
|
|
23
|
-
smoothLine(points: any[], path: CanvasPath, move: boolean): void;
|
|
24
|
-
smoothLineEx(_points: any[], tension: number, numOfSeg: number, path: CanvasPath, move?: boolean, close?: boolean): void;
|
|
25
|
-
line(x1: number, y1: number, x2: number, y2: number, color: string, lineWidth: number): void;
|
|
26
|
-
roundRect(x: number, y: number, width: number, height: number, radius: number): void;
|
|
27
|
-
calcTextSize(text: string, rounded: boolean): { width: number, height: number };
|
|
28
|
-
setFontSize(fs: number): void;
|
|
29
|
-
circle(x: number, y: number, radius: number): void;
|
|
30
|
-
}
|
|
31
|
-
|
|
32
|
-
export function createPainter(c2d: CanvasRenderingContext2D, w: number, h: number): CanvasEx {
|
|
33
|
-
|
|
34
|
-
let cp = c2d as CanvasEx;
|
|
35
|
-
|
|
36
|
-
cp.width = w;
|
|
37
|
-
cp.height = h;
|
|
38
|
-
|
|
39
|
-
cp.smoothLine = smoothLine;
|
|
40
|
-
cp.smoothLineEx = smoothLineEx;
|
|
41
|
-
cp.line = line;
|
|
42
|
-
cp.roundRect = roundRect;
|
|
43
|
-
cp.calcTextSize = calcTextSize;
|
|
44
|
-
cp.setFontSize = setFontSize;
|
|
45
|
-
cp.circle = circle;
|
|
46
|
-
|
|
47
|
-
return cp;
|
|
48
|
-
}
|
|
49
|
-
|
|
50
|
-
/**
|
|
51
|
-
*
|
|
52
|
-
*/
|
|
53
|
-
|
|
54
|
-
function smoothLine( this: CanvasRenderingContext2D, points: any[], path: CanvasPath = null, move = true) {
|
|
55
|
-
if (points.length < 2) {
|
|
56
|
-
return;
|
|
57
|
-
}
|
|
58
|
-
|
|
59
|
-
if (!path) {
|
|
60
|
-
// eslint-disable-next-line @typescript-eslint/no-this-alias
|
|
61
|
-
path = this;
|
|
62
|
-
}
|
|
63
|
-
|
|
64
|
-
if (points.length == 2) {
|
|
65
|
-
if (move !== false) {
|
|
66
|
-
path.moveTo(points[0].x, points[0].y);
|
|
67
|
-
}
|
|
68
|
-
else {
|
|
69
|
-
path.lineTo(points[0].x, points[0].y);
|
|
70
|
-
}
|
|
71
|
-
|
|
72
|
-
path.lineTo(points[1].x, points[1].y);
|
|
73
|
-
return;
|
|
74
|
-
}
|
|
75
|
-
|
|
76
|
-
function midPointBtw(p1: Point, p2: Point ) {
|
|
77
|
-
return {
|
|
78
|
-
x: p1.x + (p2.x - p1.x) / 2,
|
|
79
|
-
y: p1.y + (p2.y - p1.y) / 2
|
|
80
|
-
};
|
|
81
|
-
}
|
|
82
|
-
|
|
83
|
-
function getQuadraticXY(t: number, sx: number, sy: number, cp1x: number, cp1y: number, ex: number, ey: number) : Point {
|
|
84
|
-
return {
|
|
85
|
-
x: (1 - t) * (1 - t) * sx + 2 * (1 - t) * t * cp1x + t * t * ex,
|
|
86
|
-
y: (1 - t) * (1 - t) * sy + 2 * (1 - t) * t * cp1y + t * t * ey
|
|
87
|
-
};
|
|
88
|
-
}
|
|
89
|
-
|
|
90
|
-
let p1 = points[0],
|
|
91
|
-
p2 = points[1],
|
|
92
|
-
p3 = p1;
|
|
93
|
-
|
|
94
|
-
path.moveTo(p1.x, p1.y);
|
|
95
|
-
|
|
96
|
-
for (let i = 1, len = points.length; i < len; i++) {
|
|
97
|
-
// we pick the point between pi+1 & pi+2 as the
|
|
98
|
-
// end point and p1 as our control point
|
|
99
|
-
let midPoint = midPointBtw(p1, p2);
|
|
100
|
-
//this.quadraticCurveTo(p1.x, p1.y, midPoint.x, midPoint.y);
|
|
101
|
-
for (let i = 0; i < 8; i++) {
|
|
102
|
-
let { x, y } = getQuadraticXY(i / 8, p3.x, p3.y, p1.x, p1.y, midPoint.x, midPoint.y);
|
|
103
|
-
path.lineTo(x, y);
|
|
104
|
-
}
|
|
105
|
-
|
|
106
|
-
p1 = points[i];
|
|
107
|
-
p2 = points[i + 1];
|
|
108
|
-
p3 = midPoint;
|
|
109
|
-
}
|
|
110
|
-
|
|
111
|
-
// Draw last line as a straight line while
|
|
112
|
-
// we wait for the next point to be able to calculate
|
|
113
|
-
// the bezier control point
|
|
114
|
-
|
|
115
|
-
path.lineTo(p1.x, p1.y);
|
|
116
|
-
}
|
|
117
|
-
|
|
118
|
-
function smoothLineEx(this: CanvasRenderingContext2D, _points: any[], tension: number = 0.5, numOfSeg: number = 10, path: CanvasPath = null, move = true, close = false) {
|
|
119
|
-
|
|
120
|
-
let points = [];
|
|
121
|
-
|
|
122
|
-
//pts = points.slice(0);
|
|
123
|
-
for (let p = 0, pc = _points.length; p < pc; p++) {
|
|
124
|
-
points.push(_points[p].x);
|
|
125
|
-
points.push(_points[p].y);
|
|
126
|
-
}
|
|
127
|
-
|
|
128
|
-
let pts,
|
|
129
|
-
i = 1,
|
|
130
|
-
l = points.length,
|
|
131
|
-
rPos = 0,
|
|
132
|
-
rLen = (l - 2) * numOfSeg + 2 + (close ? 2 * numOfSeg : 0),
|
|
133
|
-
res = new Float32Array(rLen),
|
|
134
|
-
cache = new Float32Array((numOfSeg + 2) * 4),
|
|
135
|
-
cachePtr = 4;
|
|
136
|
-
|
|
137
|
-
pts = points.slice(0);
|
|
138
|
-
|
|
139
|
-
if (close) {
|
|
140
|
-
pts.unshift(points[l - 1]); // insert end point as first point
|
|
141
|
-
pts.unshift(points[l - 2]);
|
|
142
|
-
pts.push(points[0], points[1]); // first point as last point
|
|
143
|
-
}
|
|
144
|
-
else {
|
|
145
|
-
pts.unshift(points[1]); // copy 1. point and insert at beginning
|
|
146
|
-
pts.unshift(points[0]);
|
|
147
|
-
pts.push(points[l - 2], points[l - 1]); // duplicate end-points
|
|
148
|
-
}
|
|
149
|
-
|
|
150
|
-
// cache inner-loop calculations as they are based on t alone
|
|
151
|
-
cache[0] = 1; // 1,0,0,0
|
|
152
|
-
|
|
153
|
-
for (; i < numOfSeg; i++) {
|
|
154
|
-
|
|
155
|
-
const st = i / numOfSeg,
|
|
156
|
-
st2 = st * st,
|
|
157
|
-
st3 = st2 * st,
|
|
158
|
-
st23 = st3 * 2,
|
|
159
|
-
st32 = st2 * 3;
|
|
160
|
-
|
|
161
|
-
cache[cachePtr++] = st23 - st32 + 1; // c1
|
|
162
|
-
cache[cachePtr++] = st32 - st23; // c2
|
|
163
|
-
cache[cachePtr++] = st3 - 2 * st2 + st; // c3
|
|
164
|
-
cache[cachePtr++] = st3 - st2; // c4
|
|
165
|
-
}
|
|
166
|
-
|
|
167
|
-
cache[cachePtr] = 1; // 0,1,0,0
|
|
168
|
-
|
|
169
|
-
// calc. points
|
|
170
|
-
parse(pts, cache, l);
|
|
171
|
-
|
|
172
|
-
if (close) {
|
|
173
|
-
//l = points.length;
|
|
174
|
-
pts = [];
|
|
175
|
-
pts.push(points[l - 4], points[l - 3], points[l - 2], points[l - 1]); // second last and last
|
|
176
|
-
pts.push(points[0], points[1], points[2], points[3]); // first and second
|
|
177
|
-
parse(pts, cache, 4);
|
|
178
|
-
}
|
|
179
|
-
|
|
180
|
-
function parse(pts: number[], cache: Float32Array, l: number) {
|
|
181
|
-
|
|
182
|
-
for (let i = 2, t; i < l; i += 2) {
|
|
183
|
-
|
|
184
|
-
let pt1 = pts[i],
|
|
185
|
-
pt2 = pts[i + 1],
|
|
186
|
-
pt3 = pts[i + 2],
|
|
187
|
-
pt4 = pts[i + 3],
|
|
188
|
-
|
|
189
|
-
t1x = (pt3 - pts[i - 2]) * tension,
|
|
190
|
-
t1y = (pt4 - pts[i - 1]) * tension,
|
|
191
|
-
t2x = (pts[i + 4] - pt1) * tension,
|
|
192
|
-
t2y = (pts[i + 5] - pt2) * tension;
|
|
193
|
-
|
|
194
|
-
for (t = 0; t < numOfSeg; t++) {
|
|
195
|
-
|
|
196
|
-
let c = t << 2, //t * 4;
|
|
197
|
-
|
|
198
|
-
c1 = cache[c],
|
|
199
|
-
c2 = cache[c + 1],
|
|
200
|
-
c3 = cache[c + 2],
|
|
201
|
-
c4 = cache[c + 3];
|
|
202
|
-
|
|
203
|
-
res[rPos++] = c1 * pt1 + c2 * pt3 + c3 * t1x + c4 * t2x;
|
|
204
|
-
res[rPos++] = c1 * pt2 + c2 * pt4 + c3 * t1y + c4 * t2y;
|
|
205
|
-
}
|
|
206
|
-
}
|
|
207
|
-
}
|
|
208
|
-
|
|
209
|
-
// add last point
|
|
210
|
-
l = close ? 0 : points.length - 2;
|
|
211
|
-
res[rPos++] = points[l];
|
|
212
|
-
res[rPos] = points[l + 1];
|
|
213
|
-
|
|
214
|
-
if (!path) {
|
|
215
|
-
// eslint-disable-next-line @typescript-eslint/no-this-alias
|
|
216
|
-
path = this;
|
|
217
|
-
}
|
|
218
|
-
|
|
219
|
-
// add lines to path
|
|
220
|
-
for (let i = 0, l = res.length; i < l; i += 2) {
|
|
221
|
-
if (i == 0 && move !== false) {
|
|
222
|
-
path.moveTo(res[i], res[i + 1]);
|
|
223
|
-
}
|
|
224
|
-
else {
|
|
225
|
-
path.lineTo(res[i], res[i + 1]);
|
|
226
|
-
}
|
|
227
|
-
}
|
|
228
|
-
}
|
|
229
|
-
|
|
230
|
-
function line(this: CanvasRenderingContext2D, x1: number, y1: number, x2: number, y2: number, color: string, lineWidth: number = 1) {
|
|
231
|
-
this.save();
|
|
232
|
-
this.beginPath();
|
|
233
|
-
this.moveTo(x1, y1);
|
|
234
|
-
this.lineTo(x2, y2);
|
|
235
|
-
this.lineWidth = lineWidth;
|
|
236
|
-
this.strokeStyle = color;
|
|
237
|
-
this.stroke();
|
|
238
|
-
this.restore();
|
|
239
|
-
}
|
|
240
|
-
|
|
241
|
-
function roundRect(this: CanvasRenderingContext2D, x: number, y: number, width: number, height: number, radius: number) {
|
|
242
|
-
//this.beginPath( );
|
|
243
|
-
this.moveTo(x + radius, y);
|
|
244
|
-
this.lineTo(x + width - radius, y);
|
|
245
|
-
this.quadraticCurveTo(x + width, y, x + width, y + radius);
|
|
246
|
-
this.lineTo(x + width, y + height - radius);
|
|
247
|
-
this.quadraticCurveTo(x + width, y + height, x + width - radius, y + height);
|
|
248
|
-
this.lineTo(x + radius, y + height);
|
|
249
|
-
this.quadraticCurveTo(x, y + height, x, y + height - radius);
|
|
250
|
-
this.lineTo(x, y + radius);
|
|
251
|
-
this.quadraticCurveTo(x, y, x + radius, y);
|
|
252
|
-
this.closePath();
|
|
253
|
-
}
|
|
254
|
-
|
|
255
|
-
function calcTextSize( this: CanvasRenderingContext2D, text: string, rounded = false): { width: number, height: number } {
|
|
256
|
-
|
|
257
|
-
let fh = this.measureText(text);
|
|
258
|
-
let lh = fh.fontBoundingBoxAscent + fh.fontBoundingBoxDescent;
|
|
259
|
-
|
|
260
|
-
if (rounded) {
|
|
261
|
-
return { width: Math.round(fh.width), height: Math.round(lh) };
|
|
262
|
-
}
|
|
263
|
-
else {
|
|
264
|
-
return { width: fh.width, height: lh };
|
|
265
|
-
}
|
|
266
|
-
}
|
|
267
|
-
|
|
268
|
-
function setFontSize( this: CanvasRenderingContext2D, fs: number) {
|
|
269
|
-
let fsize = Math.round(fs) + 'px';
|
|
270
|
-
this.font = this.font.replace(/\d+px/, fsize);
|
|
271
|
-
}
|
|
272
|
-
|
|
273
|
-
function circle( this: CanvasRenderingContext2D, x: number, y: number, radius: number) {
|
|
274
|
-
this.moveTo(x + radius, y);
|
|
275
|
-
this.arc(x, y, radius, 0, Math.PI * 2);
|
|
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
|
+
import { Point } from "../../core/core_tools"
|
|
18
|
+
|
|
19
|
+
export interface CanvasEx extends CanvasRenderingContext2D {
|
|
20
|
+
width: number;
|
|
21
|
+
height: number;
|
|
22
|
+
|
|
23
|
+
smoothLine(points: any[], path: CanvasPath, move: boolean): void;
|
|
24
|
+
smoothLineEx(_points: any[], tension: number, numOfSeg: number, path: CanvasPath, move?: boolean, close?: boolean): void;
|
|
25
|
+
line(x1: number, y1: number, x2: number, y2: number, color: string, lineWidth: number): void;
|
|
26
|
+
roundRect(x: number, y: number, width: number, height: number, radius: number): void;
|
|
27
|
+
calcTextSize(text: string, rounded: boolean): { width: number, height: number };
|
|
28
|
+
setFontSize(fs: number): void;
|
|
29
|
+
circle(x: number, y: number, radius: number): void;
|
|
30
|
+
}
|
|
31
|
+
|
|
32
|
+
export function createPainter(c2d: CanvasRenderingContext2D, w: number, h: number): CanvasEx {
|
|
33
|
+
|
|
34
|
+
let cp = c2d as CanvasEx;
|
|
35
|
+
|
|
36
|
+
cp.width = w;
|
|
37
|
+
cp.height = h;
|
|
38
|
+
|
|
39
|
+
cp.smoothLine = smoothLine;
|
|
40
|
+
cp.smoothLineEx = smoothLineEx;
|
|
41
|
+
cp.line = line;
|
|
42
|
+
cp.roundRect = roundRect;
|
|
43
|
+
cp.calcTextSize = calcTextSize;
|
|
44
|
+
cp.setFontSize = setFontSize;
|
|
45
|
+
cp.circle = circle;
|
|
46
|
+
|
|
47
|
+
return cp;
|
|
48
|
+
}
|
|
49
|
+
|
|
50
|
+
/**
|
|
51
|
+
*
|
|
52
|
+
*/
|
|
53
|
+
|
|
54
|
+
function smoothLine( this: CanvasRenderingContext2D, points: any[], path: CanvasPath = null, move = true) {
|
|
55
|
+
if (points.length < 2) {
|
|
56
|
+
return;
|
|
57
|
+
}
|
|
58
|
+
|
|
59
|
+
if (!path) {
|
|
60
|
+
// eslint-disable-next-line @typescript-eslint/no-this-alias
|
|
61
|
+
path = this;
|
|
62
|
+
}
|
|
63
|
+
|
|
64
|
+
if (points.length == 2) {
|
|
65
|
+
if (move !== false) {
|
|
66
|
+
path.moveTo(points[0].x, points[0].y);
|
|
67
|
+
}
|
|
68
|
+
else {
|
|
69
|
+
path.lineTo(points[0].x, points[0].y);
|
|
70
|
+
}
|
|
71
|
+
|
|
72
|
+
path.lineTo(points[1].x, points[1].y);
|
|
73
|
+
return;
|
|
74
|
+
}
|
|
75
|
+
|
|
76
|
+
function midPointBtw(p1: Point, p2: Point ) {
|
|
77
|
+
return {
|
|
78
|
+
x: p1.x + (p2.x - p1.x) / 2,
|
|
79
|
+
y: p1.y + (p2.y - p1.y) / 2
|
|
80
|
+
};
|
|
81
|
+
}
|
|
82
|
+
|
|
83
|
+
function getQuadraticXY(t: number, sx: number, sy: number, cp1x: number, cp1y: number, ex: number, ey: number) : Point {
|
|
84
|
+
return {
|
|
85
|
+
x: (1 - t) * (1 - t) * sx + 2 * (1 - t) * t * cp1x + t * t * ex,
|
|
86
|
+
y: (1 - t) * (1 - t) * sy + 2 * (1 - t) * t * cp1y + t * t * ey
|
|
87
|
+
};
|
|
88
|
+
}
|
|
89
|
+
|
|
90
|
+
let p1 = points[0],
|
|
91
|
+
p2 = points[1],
|
|
92
|
+
p3 = p1;
|
|
93
|
+
|
|
94
|
+
path.moveTo(p1.x, p1.y);
|
|
95
|
+
|
|
96
|
+
for (let i = 1, len = points.length; i < len; i++) {
|
|
97
|
+
// we pick the point between pi+1 & pi+2 as the
|
|
98
|
+
// end point and p1 as our control point
|
|
99
|
+
let midPoint = midPointBtw(p1, p2);
|
|
100
|
+
//this.quadraticCurveTo(p1.x, p1.y, midPoint.x, midPoint.y);
|
|
101
|
+
for (let i = 0; i < 8; i++) {
|
|
102
|
+
let { x, y } = getQuadraticXY(i / 8, p3.x, p3.y, p1.x, p1.y, midPoint.x, midPoint.y);
|
|
103
|
+
path.lineTo(x, y);
|
|
104
|
+
}
|
|
105
|
+
|
|
106
|
+
p1 = points[i];
|
|
107
|
+
p2 = points[i + 1];
|
|
108
|
+
p3 = midPoint;
|
|
109
|
+
}
|
|
110
|
+
|
|
111
|
+
// Draw last line as a straight line while
|
|
112
|
+
// we wait for the next point to be able to calculate
|
|
113
|
+
// the bezier control point
|
|
114
|
+
|
|
115
|
+
path.lineTo(p1.x, p1.y);
|
|
116
|
+
}
|
|
117
|
+
|
|
118
|
+
function smoothLineEx(this: CanvasRenderingContext2D, _points: any[], tension: number = 0.5, numOfSeg: number = 10, path: CanvasPath = null, move = true, close = false) {
|
|
119
|
+
|
|
120
|
+
let points = [];
|
|
121
|
+
|
|
122
|
+
//pts = points.slice(0);
|
|
123
|
+
for (let p = 0, pc = _points.length; p < pc; p++) {
|
|
124
|
+
points.push(_points[p].x);
|
|
125
|
+
points.push(_points[p].y);
|
|
126
|
+
}
|
|
127
|
+
|
|
128
|
+
let pts,
|
|
129
|
+
i = 1,
|
|
130
|
+
l = points.length,
|
|
131
|
+
rPos = 0,
|
|
132
|
+
rLen = (l - 2) * numOfSeg + 2 + (close ? 2 * numOfSeg : 0),
|
|
133
|
+
res = new Float32Array(rLen),
|
|
134
|
+
cache = new Float32Array((numOfSeg + 2) * 4),
|
|
135
|
+
cachePtr = 4;
|
|
136
|
+
|
|
137
|
+
pts = points.slice(0);
|
|
138
|
+
|
|
139
|
+
if (close) {
|
|
140
|
+
pts.unshift(points[l - 1]); // insert end point as first point
|
|
141
|
+
pts.unshift(points[l - 2]);
|
|
142
|
+
pts.push(points[0], points[1]); // first point as last point
|
|
143
|
+
}
|
|
144
|
+
else {
|
|
145
|
+
pts.unshift(points[1]); // copy 1. point and insert at beginning
|
|
146
|
+
pts.unshift(points[0]);
|
|
147
|
+
pts.push(points[l - 2], points[l - 1]); // duplicate end-points
|
|
148
|
+
}
|
|
149
|
+
|
|
150
|
+
// cache inner-loop calculations as they are based on t alone
|
|
151
|
+
cache[0] = 1; // 1,0,0,0
|
|
152
|
+
|
|
153
|
+
for (; i < numOfSeg; i++) {
|
|
154
|
+
|
|
155
|
+
const st = i / numOfSeg,
|
|
156
|
+
st2 = st * st,
|
|
157
|
+
st3 = st2 * st,
|
|
158
|
+
st23 = st3 * 2,
|
|
159
|
+
st32 = st2 * 3;
|
|
160
|
+
|
|
161
|
+
cache[cachePtr++] = st23 - st32 + 1; // c1
|
|
162
|
+
cache[cachePtr++] = st32 - st23; // c2
|
|
163
|
+
cache[cachePtr++] = st3 - 2 * st2 + st; // c3
|
|
164
|
+
cache[cachePtr++] = st3 - st2; // c4
|
|
165
|
+
}
|
|
166
|
+
|
|
167
|
+
cache[cachePtr] = 1; // 0,1,0,0
|
|
168
|
+
|
|
169
|
+
// calc. points
|
|
170
|
+
parse(pts, cache, l);
|
|
171
|
+
|
|
172
|
+
if (close) {
|
|
173
|
+
//l = points.length;
|
|
174
|
+
pts = [];
|
|
175
|
+
pts.push(points[l - 4], points[l - 3], points[l - 2], points[l - 1]); // second last and last
|
|
176
|
+
pts.push(points[0], points[1], points[2], points[3]); // first and second
|
|
177
|
+
parse(pts, cache, 4);
|
|
178
|
+
}
|
|
179
|
+
|
|
180
|
+
function parse(pts: number[], cache: Float32Array, l: number) {
|
|
181
|
+
|
|
182
|
+
for (let i = 2, t; i < l; i += 2) {
|
|
183
|
+
|
|
184
|
+
let pt1 = pts[i],
|
|
185
|
+
pt2 = pts[i + 1],
|
|
186
|
+
pt3 = pts[i + 2],
|
|
187
|
+
pt4 = pts[i + 3],
|
|
188
|
+
|
|
189
|
+
t1x = (pt3 - pts[i - 2]) * tension,
|
|
190
|
+
t1y = (pt4 - pts[i - 1]) * tension,
|
|
191
|
+
t2x = (pts[i + 4] - pt1) * tension,
|
|
192
|
+
t2y = (pts[i + 5] - pt2) * tension;
|
|
193
|
+
|
|
194
|
+
for (t = 0; t < numOfSeg; t++) {
|
|
195
|
+
|
|
196
|
+
let c = t << 2, //t * 4;
|
|
197
|
+
|
|
198
|
+
c1 = cache[c],
|
|
199
|
+
c2 = cache[c + 1],
|
|
200
|
+
c3 = cache[c + 2],
|
|
201
|
+
c4 = cache[c + 3];
|
|
202
|
+
|
|
203
|
+
res[rPos++] = c1 * pt1 + c2 * pt3 + c3 * t1x + c4 * t2x;
|
|
204
|
+
res[rPos++] = c1 * pt2 + c2 * pt4 + c3 * t1y + c4 * t2y;
|
|
205
|
+
}
|
|
206
|
+
}
|
|
207
|
+
}
|
|
208
|
+
|
|
209
|
+
// add last point
|
|
210
|
+
l = close ? 0 : points.length - 2;
|
|
211
|
+
res[rPos++] = points[l];
|
|
212
|
+
res[rPos] = points[l + 1];
|
|
213
|
+
|
|
214
|
+
if (!path) {
|
|
215
|
+
// eslint-disable-next-line @typescript-eslint/no-this-alias
|
|
216
|
+
path = this;
|
|
217
|
+
}
|
|
218
|
+
|
|
219
|
+
// add lines to path
|
|
220
|
+
for (let i = 0, l = res.length; i < l; i += 2) {
|
|
221
|
+
if (i == 0 && move !== false) {
|
|
222
|
+
path.moveTo(res[i], res[i + 1]);
|
|
223
|
+
}
|
|
224
|
+
else {
|
|
225
|
+
path.lineTo(res[i], res[i + 1]);
|
|
226
|
+
}
|
|
227
|
+
}
|
|
228
|
+
}
|
|
229
|
+
|
|
230
|
+
function line(this: CanvasRenderingContext2D, x1: number, y1: number, x2: number, y2: number, color: string, lineWidth: number = 1) {
|
|
231
|
+
this.save();
|
|
232
|
+
this.beginPath();
|
|
233
|
+
this.moveTo(x1, y1);
|
|
234
|
+
this.lineTo(x2, y2);
|
|
235
|
+
this.lineWidth = lineWidth;
|
|
236
|
+
this.strokeStyle = color;
|
|
237
|
+
this.stroke();
|
|
238
|
+
this.restore();
|
|
239
|
+
}
|
|
240
|
+
|
|
241
|
+
function roundRect(this: CanvasRenderingContext2D, x: number, y: number, width: number, height: number, radius: number) {
|
|
242
|
+
//this.beginPath( );
|
|
243
|
+
this.moveTo(x + radius, y);
|
|
244
|
+
this.lineTo(x + width - radius, y);
|
|
245
|
+
this.quadraticCurveTo(x + width, y, x + width, y + radius);
|
|
246
|
+
this.lineTo(x + width, y + height - radius);
|
|
247
|
+
this.quadraticCurveTo(x + width, y + height, x + width - radius, y + height);
|
|
248
|
+
this.lineTo(x + radius, y + height);
|
|
249
|
+
this.quadraticCurveTo(x, y + height, x, y + height - radius);
|
|
250
|
+
this.lineTo(x, y + radius);
|
|
251
|
+
this.quadraticCurveTo(x, y, x + radius, y);
|
|
252
|
+
this.closePath();
|
|
253
|
+
}
|
|
254
|
+
|
|
255
|
+
function calcTextSize( this: CanvasRenderingContext2D, text: string, rounded = false): { width: number, height: number } {
|
|
256
|
+
|
|
257
|
+
let fh = this.measureText(text);
|
|
258
|
+
let lh = fh.fontBoundingBoxAscent + fh.fontBoundingBoxDescent;
|
|
259
|
+
|
|
260
|
+
if (rounded) {
|
|
261
|
+
return { width: Math.round(fh.width), height: Math.round(lh) };
|
|
262
|
+
}
|
|
263
|
+
else {
|
|
264
|
+
return { width: fh.width, height: lh };
|
|
265
|
+
}
|
|
266
|
+
}
|
|
267
|
+
|
|
268
|
+
function setFontSize( this: CanvasRenderingContext2D, fs: number) {
|
|
269
|
+
let fsize = Math.round(fs) + 'px';
|
|
270
|
+
this.font = this.font.replace(/\d+px/, fsize);
|
|
271
|
+
}
|
|
272
|
+
|
|
273
|
+
function circle( this: CanvasRenderingContext2D, x: number, y: number, radius: number) {
|
|
274
|
+
this.moveTo(x + radius, y);
|
|
275
|
+
this.arc(x, y, radius, 0, Math.PI * 2);
|
|
276
276
|
}
|
|
@@ -1,4 +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>
|
|
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
4
|
</svg>
|