@syncfusion/ej2-image-editor 22.2.10 → 23.1.36
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/CHANGELOG.md +18 -0
- package/dist/ej2-image-editor.umd.min.js +2 -2
- package/dist/ej2-image-editor.umd.min.js.map +1 -1
- package/dist/es6/ej2-image-editor.es2015.js +4272 -687
- package/dist/es6/ej2-image-editor.es2015.js.map +1 -1
- package/dist/es6/ej2-image-editor.es5.js +4234 -640
- package/dist/es6/ej2-image-editor.es5.js.map +1 -1
- package/dist/global/ej2-image-editor.min.js +2 -2
- package/dist/global/ej2-image-editor.min.js.map +1 -1
- package/dist/global/index.d.ts +1 -1
- package/package.json +12 -12
- package/src/image-editor/action/crop.js +47 -30
- package/src/image-editor/action/draw.d.ts +16 -0
- package/src/image-editor/action/draw.js +827 -81
- package/src/image-editor/action/export.d.ts +3 -0
- package/src/image-editor/action/export.js +84 -20
- package/src/image-editor/action/filter.d.ts +0 -1
- package/src/image-editor/action/filter.js +28 -41
- package/src/image-editor/action/freehand-draw.js +45 -32
- package/src/image-editor/action/selection.d.ts +6 -0
- package/src/image-editor/action/selection.js +380 -66
- package/src/image-editor/action/shape.d.ts +8 -0
- package/src/image-editor/action/shape.js +286 -91
- package/src/image-editor/action/transform.d.ts +9 -0
- package/src/image-editor/action/transform.js +402 -52
- package/src/image-editor/action/undo-redo.d.ts +1 -0
- package/src/image-editor/action/undo-redo.js +138 -10
- package/src/image-editor/base/enum.d.ts +38 -1
- package/src/image-editor/base/enum.js +39 -0
- package/src/image-editor/base/image-editor-model.d.ts +16 -2
- package/src/image-editor/base/image-editor.d.ts +134 -7
- package/src/image-editor/base/image-editor.js +611 -69
- package/src/image-editor/base/interface.d.ts +233 -2
- package/src/image-editor/renderer/toolbar.d.ts +25 -0
- package/src/image-editor/renderer/toolbar.js +1273 -72
- package/styles/bootstrap-dark.css +68 -1
- package/styles/bootstrap.css +68 -1
- package/styles/bootstrap4.css +68 -1
- package/styles/bootstrap5-dark.css +68 -1
- package/styles/bootstrap5.css +68 -1
- package/styles/fabric-dark.css +68 -1
- package/styles/fabric.css +68 -1
- package/styles/fluent-dark.css +68 -1
- package/styles/fluent.css +68 -1
- package/styles/highcontrast-light.css +70 -3
- package/styles/highcontrast.css +69 -7
- package/styles/image-editor/_bootstrap-dark-definition.scss +1 -0
- package/styles/image-editor/_bootstrap-definition.scss +1 -0
- package/styles/image-editor/_bootstrap4-definition.scss +1 -0
- package/styles/image-editor/_bootstrap5-definition.scss +1 -0
- package/styles/image-editor/_fabric-dark-definition.scss +1 -0
- package/styles/image-editor/_fabric-definition.scss +1 -0
- package/styles/image-editor/_fluent-definition.scss +1 -0
- package/styles/image-editor/_fusionnew-definition.scss +1 -0
- package/styles/image-editor/_highcontrast-definition.scss +2 -1
- package/styles/image-editor/_highcontrast-light-definition.scss +2 -1
- package/styles/image-editor/_layout.scss +92 -0
- package/styles/image-editor/_material-dark-definition.scss +1 -0
- package/styles/image-editor/_material-definition.scss +1 -0
- package/styles/image-editor/_material3-definition.scss +2 -1
- package/styles/image-editor/_tailwind-definition.scss +1 -0
- package/styles/image-editor/_theme.scss +4 -2
- package/styles/image-editor/bootstrap-dark.css +68 -1
- package/styles/image-editor/bootstrap-dark.scss +1 -1
- package/styles/image-editor/bootstrap.css +68 -1
- package/styles/image-editor/bootstrap.scss +1 -1
- package/styles/image-editor/bootstrap4.css +68 -1
- package/styles/image-editor/bootstrap4.scss +1 -1
- package/styles/image-editor/bootstrap5-dark.css +68 -1
- package/styles/image-editor/bootstrap5-dark.scss +1 -1
- package/styles/image-editor/bootstrap5.css +68 -1
- package/styles/image-editor/bootstrap5.scss +1 -1
- package/styles/image-editor/fabric-dark.css +68 -1
- package/styles/image-editor/fabric-dark.scss +1 -1
- package/styles/image-editor/fabric.css +68 -1
- package/styles/image-editor/fabric.scss +1 -1
- package/styles/image-editor/fluent-dark.css +68 -1
- package/styles/image-editor/fluent-dark.scss +1 -1
- package/styles/image-editor/fluent.css +68 -1
- package/styles/image-editor/fluent.scss +1 -1
- package/styles/image-editor/highcontrast-light.css +70 -3
- package/styles/image-editor/highcontrast-light.scss +1 -1
- package/styles/image-editor/highcontrast.css +69 -7
- package/styles/image-editor/highcontrast.scss +1 -1
- package/styles/image-editor/icons/_bootstrap-dark.scss +1 -0
- package/styles/image-editor/icons/_bootstrap.scss +1 -0
- package/styles/image-editor/icons/_bootstrap4.scss +1 -0
- package/styles/image-editor/icons/_bootstrap5.scss +1 -0
- package/styles/image-editor/icons/_fabric-dark.scss +1 -0
- package/styles/image-editor/icons/_fabric.scss +1 -0
- package/styles/image-editor/icons/_fluent.scss +1 -0
- package/styles/image-editor/icons/_fusionnew.scss +1 -0
- package/styles/image-editor/icons/_highcontrast-light.scss +1 -0
- package/styles/image-editor/icons/_highcontrast.scss +1 -0
- package/styles/image-editor/icons/_material-dark.scss +1 -0
- package/styles/image-editor/icons/_material.scss +1 -0
- package/styles/image-editor/icons/_material3.scss +1 -0
- package/styles/image-editor/icons/_tailwind.scss +1 -0
- package/styles/image-editor/material-dark.css +68 -2
- package/styles/image-editor/material-dark.scss +1 -1
- package/styles/image-editor/material.css +68 -2
- package/styles/image-editor/material.scss +1 -1
- package/styles/image-editor/material3-dark.css +73 -4
- package/styles/image-editor/material3-dark.scss +1 -1
- package/styles/image-editor/material3.css +73 -4
- package/styles/image-editor/material3.scss +1 -1
- package/styles/image-editor/tailwind-dark.css +68 -2
- package/styles/image-editor/tailwind-dark.scss +1 -1
- package/styles/image-editor/tailwind.css +68 -2
- package/styles/image-editor/tailwind.scss +1 -1
- package/styles/material-dark.css +68 -2
- package/styles/material.css +68 -2
- package/styles/material3-dark.css +73 -4
- package/styles/material3-dark.scss +1 -1
- package/styles/material3.css +73 -4
- package/styles/material3.scss +1 -1
- package/styles/tailwind-dark.css +68 -2
- package/styles/tailwind.css +68 -2
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { FileType, ShapeType, ImageFinetuneOption, ImageFilterOption } from '../index';
|
|
1
|
+
import { FileType, ShapeType, ImageFinetuneOption, ImageFilterOption, FrameType, FrameLineStyle } from '../index';
|
|
2
2
|
import { ItemModel } from '@syncfusion/ej2-navigations';
|
|
3
3
|
/**
|
|
4
4
|
* This interface is used to specify settings for image finetuning operations, including minimum and maximum values, as well as default values.
|
|
@@ -389,6 +389,14 @@ export interface ShapeSettings {
|
|
|
389
389
|
* Returns the points collection of freehand drawing.
|
|
390
390
|
*/
|
|
391
391
|
points?: Point[];
|
|
392
|
+
/**
|
|
393
|
+
* Returns the degree of rotated shape.
|
|
394
|
+
*/
|
|
395
|
+
degree?: number;
|
|
396
|
+
/**
|
|
397
|
+
* Returns the imageData of the image annotation.
|
|
398
|
+
*/
|
|
399
|
+
imageData?: string | ImageData;
|
|
392
400
|
}
|
|
393
401
|
/**
|
|
394
402
|
* Interface for filter option for the image.
|
|
@@ -451,6 +459,35 @@ export interface ImageEditorClickEventArgs {
|
|
|
451
459
|
*/
|
|
452
460
|
point: Point;
|
|
453
461
|
}
|
|
462
|
+
/**
|
|
463
|
+
* The Interface which contains the properties for resize action in the Image Editor.
|
|
464
|
+
*/
|
|
465
|
+
export interface ResizeEventArgs {
|
|
466
|
+
/**
|
|
467
|
+
* Defines whether to cancel the resizing action of image editor.
|
|
468
|
+
*/
|
|
469
|
+
cancel: boolean;
|
|
470
|
+
/**
|
|
471
|
+
* Returns the width of the image before resizing can be performed.
|
|
472
|
+
*/
|
|
473
|
+
previousWidth: number;
|
|
474
|
+
/**
|
|
475
|
+
* Returns the height of the image before resizing can be performed.
|
|
476
|
+
*/
|
|
477
|
+
previousHeight: number;
|
|
478
|
+
/**
|
|
479
|
+
* Returns the width of the image after resizing can be performed.
|
|
480
|
+
*/
|
|
481
|
+
width: number;
|
|
482
|
+
/**
|
|
483
|
+
* Returns the height of the image after resizing can be performed.
|
|
484
|
+
*/
|
|
485
|
+
height: number;
|
|
486
|
+
/**
|
|
487
|
+
* Returns whether the resizing action should be an aspect ratio resizing or not.
|
|
488
|
+
*/
|
|
489
|
+
isAspectRatio: boolean;
|
|
490
|
+
}
|
|
454
491
|
/**
|
|
455
492
|
* Interface for quick access toolbar for the image.
|
|
456
493
|
*
|
|
@@ -477,10 +514,117 @@ export interface QuickAccessToolbarEventArgs {
|
|
|
477
514
|
*/
|
|
478
515
|
toolbarItems: (string | ItemModel)[];
|
|
479
516
|
/**
|
|
480
|
-
* Returns the type of shape to be selected such as Rectangle, Text, Line, Ellipse, Arrow, Path, or Freehand draw.
|
|
517
|
+
* Returns the type of shape to be selected such as Rectangle, Text, Line, Ellipse, Arrow, Path, Image, or Freehand draw.
|
|
481
518
|
*/
|
|
482
519
|
shape?: string;
|
|
483
520
|
}
|
|
521
|
+
/**
|
|
522
|
+
* The Interface which contains the properties for frame action in the Image Editor.
|
|
523
|
+
*/
|
|
524
|
+
export interface FrameChangeEventArgs {
|
|
525
|
+
/**
|
|
526
|
+
* Defines whether to cancel the frame changing action of image editor.
|
|
527
|
+
*/
|
|
528
|
+
cancel: boolean;
|
|
529
|
+
/**
|
|
530
|
+
* Returns the previous frame settings applied on the image.
|
|
531
|
+
*/
|
|
532
|
+
previousFrameSetting: FrameSettings;
|
|
533
|
+
/**
|
|
534
|
+
* Defines the current frame settings to be applied on the image.
|
|
535
|
+
*/
|
|
536
|
+
currentFrameSetting: FrameSettings;
|
|
537
|
+
}
|
|
538
|
+
/**
|
|
539
|
+
* Interface for a class FrameSettings
|
|
540
|
+
*/
|
|
541
|
+
export interface FrameSettings {
|
|
542
|
+
/**
|
|
543
|
+
* Specifies the frame option such as None, Mat, Bevel, Line, Inset, and Hook.
|
|
544
|
+
*
|
|
545
|
+
* @type {FrameType}
|
|
546
|
+
*
|
|
547
|
+
*/
|
|
548
|
+
type: FrameType;
|
|
549
|
+
/**
|
|
550
|
+
* Specifies the color of a frame.
|
|
551
|
+
* A string value specifying the color of the frame. The color can be provided in various formats, including named colors ("red", "blue") and hexadecimal notation.
|
|
552
|
+
*
|
|
553
|
+
* @type {string}
|
|
554
|
+
*
|
|
555
|
+
*/
|
|
556
|
+
color: string;
|
|
557
|
+
/**
|
|
558
|
+
* Specifies the color of a frame.
|
|
559
|
+
* A string value specifying the gradient color of the frame. The color can be provided in various formats, including named colors ("red", "blue") and hexadecimal notation.
|
|
560
|
+
*
|
|
561
|
+
* @type {string}
|
|
562
|
+
*
|
|
563
|
+
*/
|
|
564
|
+
gradientColor: string;
|
|
565
|
+
/**
|
|
566
|
+
* Specifies the size of a frame.
|
|
567
|
+
* A number value specifying the size of the frame as a percentage. The size value indicates how much of the image's dimensions the frame occupies.
|
|
568
|
+
*
|
|
569
|
+
* @type {number}
|
|
570
|
+
*
|
|
571
|
+
*/
|
|
572
|
+
size: number;
|
|
573
|
+
/**
|
|
574
|
+
* Specifies the inset value of a frame.
|
|
575
|
+
* A number value specifying the inset of the frame as a percentage. The inset value determines how far the frame is drawn inside the image boundaries.
|
|
576
|
+
*
|
|
577
|
+
* @remarks
|
|
578
|
+
* The Inset value only be available for Line, Inset, and Hook frames.
|
|
579
|
+
*
|
|
580
|
+
* @type {number}
|
|
581
|
+
*
|
|
582
|
+
*/
|
|
583
|
+
inset: number;
|
|
584
|
+
/**
|
|
585
|
+
* Specifies the offset value of a frame.
|
|
586
|
+
* A number value specifying the inset of the frame as a percentage. The inset value determines how far the frame is drawn inside the image boundaries.
|
|
587
|
+
*
|
|
588
|
+
* @remarks
|
|
589
|
+
* The Inset value only be available for Line, Inset, and Hook frames.
|
|
590
|
+
*
|
|
591
|
+
* @type {number}
|
|
592
|
+
*
|
|
593
|
+
*/
|
|
594
|
+
offset: number;
|
|
595
|
+
/**
|
|
596
|
+
* Specifies the radius value for line-type frame.
|
|
597
|
+
* A number value that specifies the border radius of the frame as a percentage. The border radius controls the curvature of the frame's corners or edges.
|
|
598
|
+
*
|
|
599
|
+
* @remarks
|
|
600
|
+
* The radius value only be available for Line and Bevel frames.
|
|
601
|
+
*
|
|
602
|
+
* @type {number}
|
|
603
|
+
*
|
|
604
|
+
*/
|
|
605
|
+
borderRadius: number;
|
|
606
|
+
/**
|
|
607
|
+
* Specifies the type of line to be drawn for line-type frame.
|
|
608
|
+
* A FrameLineStyle enumeration value that specifies the type of line to be applied as a frame.
|
|
609
|
+
*
|
|
610
|
+
* @remarks
|
|
611
|
+
* The FrameLineStyle value only be available for Line frames.
|
|
612
|
+
*
|
|
613
|
+
* @type {FrameLineStyle}
|
|
614
|
+
*
|
|
615
|
+
*/
|
|
616
|
+
frameLineStyle: FrameLineStyle;
|
|
617
|
+
/**
|
|
618
|
+
* Specifies the number of lines to be drawn for line-type frame.
|
|
619
|
+
*
|
|
620
|
+
* @remarks
|
|
621
|
+
* The lineCount value only be available for Line frame.
|
|
622
|
+
*
|
|
623
|
+
* @type {number}
|
|
624
|
+
*
|
|
625
|
+
*/
|
|
626
|
+
lineCount: number;
|
|
627
|
+
}
|
|
484
628
|
/**
|
|
485
629
|
* Interface for active object in the imageEditor.
|
|
486
630
|
*
|
|
@@ -586,6 +730,22 @@ export interface CurrentObject {
|
|
|
586
730
|
* Specifies the brightness finetune is adjusted or not for the image in Image Editor.
|
|
587
731
|
*/
|
|
588
732
|
isBrightAdjust: boolean;
|
|
733
|
+
/**
|
|
734
|
+
* Specifies the width of image to be resized in Image Editor.
|
|
735
|
+
*/
|
|
736
|
+
aspectWidth: number;
|
|
737
|
+
/**
|
|
738
|
+
* Specifies the height of image to be resized in Image Editor.
|
|
739
|
+
*/
|
|
740
|
+
aspectHeight: number;
|
|
741
|
+
/**
|
|
742
|
+
* Specifies the frame to be drawn in the image in Image Editor.
|
|
743
|
+
*/
|
|
744
|
+
frame: string;
|
|
745
|
+
/**
|
|
746
|
+
* Specifies the frame object to be drawn on the image in Image Editor.
|
|
747
|
+
*/
|
|
748
|
+
frameObj?: FrameValue;
|
|
589
749
|
/**
|
|
590
750
|
* Specifies the object collection in Image Editor.
|
|
591
751
|
*/
|
|
@@ -882,6 +1042,10 @@ export interface Adjustment {
|
|
|
882
1042
|
* Gets blur level of image.
|
|
883
1043
|
*/
|
|
884
1044
|
blur: number;
|
|
1045
|
+
/**
|
|
1046
|
+
* Gets transparency level of image.
|
|
1047
|
+
*/
|
|
1048
|
+
transparency: number;
|
|
885
1049
|
/**
|
|
886
1050
|
* Gets sharpness level of image.
|
|
887
1051
|
*/
|
|
@@ -954,6 +1118,49 @@ export interface Interaction {
|
|
|
954
1118
|
*/
|
|
955
1119
|
isResize: boolean;
|
|
956
1120
|
}
|
|
1121
|
+
/**
|
|
1122
|
+
* Interface for frame support in the Image Editor.
|
|
1123
|
+
*
|
|
1124
|
+
* @private
|
|
1125
|
+
*/
|
|
1126
|
+
export interface FrameValue {
|
|
1127
|
+
/**
|
|
1128
|
+
* Gets type of the frame.
|
|
1129
|
+
*/
|
|
1130
|
+
type: string;
|
|
1131
|
+
/**
|
|
1132
|
+
* Gets color of the frame.
|
|
1133
|
+
*/
|
|
1134
|
+
color: string;
|
|
1135
|
+
/**
|
|
1136
|
+
* Gets size of the frame.
|
|
1137
|
+
*/
|
|
1138
|
+
size: number;
|
|
1139
|
+
/**
|
|
1140
|
+
* Gets inset value of the frame.
|
|
1141
|
+
*/
|
|
1142
|
+
inset: number;
|
|
1143
|
+
/**
|
|
1144
|
+
* Gets offset value of the frame.
|
|
1145
|
+
*/
|
|
1146
|
+
offset: number;
|
|
1147
|
+
/**
|
|
1148
|
+
* Gets radius of the frame.
|
|
1149
|
+
*/
|
|
1150
|
+
radius: number;
|
|
1151
|
+
/**
|
|
1152
|
+
* Gets amount of the frame.
|
|
1153
|
+
*/
|
|
1154
|
+
amount: number;
|
|
1155
|
+
/**
|
|
1156
|
+
* Gets line type of the frame.
|
|
1157
|
+
*/
|
|
1158
|
+
border: string;
|
|
1159
|
+
/**
|
|
1160
|
+
* Gets gradient color of the frame.
|
|
1161
|
+
*/
|
|
1162
|
+
gradientColor: string;
|
|
1163
|
+
}
|
|
957
1164
|
/**
|
|
958
1165
|
* Interface for Selection Object in the Image Editor.
|
|
959
1166
|
*
|
|
@@ -1132,4 +1339,28 @@ export interface SelectionPoint {
|
|
|
1132
1339
|
* Gets the end type of arrow shape.
|
|
1133
1340
|
*/
|
|
1134
1341
|
end?: string;
|
|
1342
|
+
/**
|
|
1343
|
+
* Gets the canvas of image shape.
|
|
1344
|
+
*/
|
|
1345
|
+
imageCanvas?: HTMLCanvasElement;
|
|
1346
|
+
/**
|
|
1347
|
+
* Gets the image element of image shape.
|
|
1348
|
+
*/
|
|
1349
|
+
imageElement?: HTMLImageElement;
|
|
1350
|
+
/**
|
|
1351
|
+
* Gets the image element is flipped in horizontal or not.
|
|
1352
|
+
*/
|
|
1353
|
+
isHorImageFlip?: boolean;
|
|
1354
|
+
/**
|
|
1355
|
+
* Gets the image element is flipped in vertical or not.
|
|
1356
|
+
*/
|
|
1357
|
+
isVerImageFlip?: boolean;
|
|
1358
|
+
/**
|
|
1359
|
+
* Gets the image transparency value.
|
|
1360
|
+
*/
|
|
1361
|
+
imageTransparency?: number;
|
|
1362
|
+
/**
|
|
1363
|
+
* Gets the transform collection values.
|
|
1364
|
+
*/
|
|
1365
|
+
rotateFlipColl?: any;
|
|
1135
1366
|
}
|
|
@@ -11,10 +11,14 @@ export declare class ToolbarModule {
|
|
|
11
11
|
private currentToolbar;
|
|
12
12
|
private selFhdColor;
|
|
13
13
|
private preventEnableDisableUr;
|
|
14
|
+
private isAspectRatio;
|
|
15
|
+
private isFrameToolbar;
|
|
14
16
|
private lowerContext;
|
|
15
17
|
private upperContext;
|
|
16
18
|
private inMemoryCanvas;
|
|
17
19
|
private inMemoryContext;
|
|
20
|
+
imageWidth: number;
|
|
21
|
+
imageHeight: number;
|
|
18
22
|
constructor(parent: ImageEditor);
|
|
19
23
|
destroy(): void;
|
|
20
24
|
private addEventListener;
|
|
@@ -40,6 +44,11 @@ export declare class ToolbarModule {
|
|
|
40
44
|
private processToolbar;
|
|
41
45
|
private processSubToolbar;
|
|
42
46
|
private wireZoomBtnEvents;
|
|
47
|
+
private widthAspectRatio;
|
|
48
|
+
private heightAspectRatio;
|
|
49
|
+
private getResizeToolbarItem;
|
|
50
|
+
private initResizeToolbar;
|
|
51
|
+
private wireResizeBtnEvents;
|
|
43
52
|
private enableDisableTbrBtn;
|
|
44
53
|
private createLeftToolbarControls;
|
|
45
54
|
private fileSelect;
|
|
@@ -63,6 +72,7 @@ export declare class ToolbarModule {
|
|
|
63
72
|
private createTextBtn;
|
|
64
73
|
private refreshToolbar;
|
|
65
74
|
private getAdjustmentToolbarItem;
|
|
75
|
+
private getFrameToolbarItem;
|
|
66
76
|
private getFilterToolbarItem;
|
|
67
77
|
private getPenToolbarItem;
|
|
68
78
|
private initPenToolbarItem;
|
|
@@ -70,7 +80,17 @@ export declare class ToolbarModule {
|
|
|
70
80
|
private createPenBtn;
|
|
71
81
|
private getPenStroke;
|
|
72
82
|
private initAdjustmentToolbarItem;
|
|
83
|
+
private initFrameToolbarItem;
|
|
84
|
+
private createFrameGradientColor;
|
|
85
|
+
private createFrameColor;
|
|
86
|
+
private createFrameSize;
|
|
87
|
+
private createFrameInset;
|
|
88
|
+
private createFrameOffset;
|
|
89
|
+
private createFrameRadius;
|
|
90
|
+
private createFrameAmount;
|
|
91
|
+
private createFrameBorder;
|
|
73
92
|
private initFilterToolbarItem;
|
|
93
|
+
private drawDashedLine;
|
|
74
94
|
private createCanvasFilter;
|
|
75
95
|
private updateFilterCanvas;
|
|
76
96
|
private getQuickAccessToolbarItem;
|
|
@@ -80,6 +100,10 @@ export declare class ToolbarModule {
|
|
|
80
100
|
private quickAccessToolbarClicked;
|
|
81
101
|
private defToolbarClicked;
|
|
82
102
|
private performDefTbrClick;
|
|
103
|
+
private frameToolbarClick;
|
|
104
|
+
private zoomToFrameRange;
|
|
105
|
+
private resizeClick;
|
|
106
|
+
private callFrameToolbar;
|
|
83
107
|
private contextualToolbarClicked;
|
|
84
108
|
private refreshShapeDrawing;
|
|
85
109
|
private zoomInBtnClickHandler;
|
|
@@ -95,6 +119,7 @@ export declare class ToolbarModule {
|
|
|
95
119
|
private unselectBtn;
|
|
96
120
|
private openSlider;
|
|
97
121
|
private refreshSlider;
|
|
122
|
+
private unselectFrameBtn;
|
|
98
123
|
private updateToolbarItems;
|
|
99
124
|
private getStrokeWidth;
|
|
100
125
|
private cancelPan;
|