x4js 1.5.16 → 1.5.18
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/lib/cjs/app_sockets.js +74 -0
- package/lib/cjs/index.js +1 -0
- package/lib/cjs/treeview.js +27 -12
- package/lib/cjs/version.js +1 -1
- package/lib/esm/app_sockets.js +70 -0
- package/lib/esm/index.mjs +1 -0
- package/lib/esm/treeview.js +26 -12
- package/lib/esm/version.js +1 -1
- package/lib/{src/version.ts → types/app_sockets.d.ts} +29 -30
- package/lib/types/index.d.ts +1 -0
- package/lib/types/treeview.d.ts +5 -2
- package/lib/types/version.d.ts +1 -1
- package/package.json +1 -4
- package/lib/src/MIT-license.md +0 -14
- package/lib/src/action.ts +0 -88
- package/lib/src/alpha.jpg +0 -0
- package/lib/src/application.ts +0 -251
- package/lib/src/autocomplete.ts +0 -197
- package/lib/src/base64.ts +0 -166
- package/lib/src/base_component.ts +0 -152
- package/lib/src/button.ts +0 -355
- package/lib/src/calendar.ts +0 -328
- package/lib/src/canvas.ts +0 -505
- package/lib/src/cardview.ts +0 -227
- package/lib/src/checkbox.ts +0 -188
- package/lib/src/color.ts +0 -752
- package/lib/src/colorpicker.ts +0 -1639
- package/lib/src/combobox.ts +0 -465
- package/lib/src/component.ts +0 -2329
- package/lib/src/datastore.ts +0 -1322
- package/lib/src/dialog.ts +0 -656
- package/lib/src/dom_events.ts +0 -315
- package/lib/src/drag_manager.ts +0 -199
- package/lib/src/drawtext.ts +0 -355
- package/lib/src/fileupload.ts +0 -213
- package/lib/src/form.ts +0 -375
- package/lib/src/formatters.ts +0 -105
- package/lib/src/gridview.ts +0 -1185
- package/lib/src/i18n.ts +0 -346
- package/lib/src/icon.ts +0 -335
- package/lib/src/image.ts +0 -204
- package/lib/src/index.ts +0 -88
- package/lib/src/input.ts +0 -249
- package/lib/src/label.ts +0 -128
- package/lib/src/layout.ts +0 -430
- package/lib/src/link.ts +0 -86
- package/lib/src/listview.ts +0 -765
- package/lib/src/md5.ts +0 -438
- package/lib/src/menu.ts +0 -425
- package/lib/src/messagebox.ts +0 -224
- package/lib/src/panel.ts +0 -86
- package/lib/src/popup.ts +0 -494
- package/lib/src/property_editor.ts +0 -337
- package/lib/src/radiobtn.ts +0 -197
- package/lib/src/rating.ts +0 -135
- package/lib/src/request.ts +0 -300
- package/lib/src/router.ts +0 -185
- package/lib/src/settings.ts +0 -77
- package/lib/src/sidebarview.ts +0 -103
- package/lib/src/spreadsheet.ts +0 -1449
- package/lib/src/styles.ts +0 -343
- package/lib/src/svgcomponent.ts +0 -577
- package/lib/src/tabbar.ts +0 -151
- package/lib/src/tabview.ts +0 -110
- package/lib/src/textarea.ts +0 -235
- package/lib/src/textedit.ts +0 -544
- package/lib/src/toaster.ts +0 -80
- package/lib/src/tools.ts +0 -1473
- package/lib/src/tooltips.ts +0 -191
- package/lib/src/treeview.ts +0 -696
- package/lib/src/x4.less +0 -2243
- package/lib/src/x4dom.ts +0 -57
- package/lib/src/x4events.ts +0 -585
- package/lib/src/x4react.ts +0 -90
- package/lib/x4.css +0 -1780
package/lib/src/dialog.ts
DELETED
|
@@ -1,656 +0,0 @@
|
|
|
1
|
-
/**
|
|
2
|
-
* ___ ___ __
|
|
3
|
-
* \ \/ / / _
|
|
4
|
-
* \ / /_| |_
|
|
5
|
-
* / \____ _|
|
|
6
|
-
* /__/\__\ |_|
|
|
7
|
-
*
|
|
8
|
-
* @file dialog.ts
|
|
9
|
-
* @author Etienne Cochard
|
|
10
|
-
*
|
|
11
|
-
* Copyright (c) 2019-2022 R-libre ingenierie
|
|
12
|
-
*
|
|
13
|
-
* Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
14
|
-
* of this software and associated documentation files (the "Software"), to deal
|
|
15
|
-
* in the Software without restriction, including without limitation the rights
|
|
16
|
-
* to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies
|
|
17
|
-
* of the Software, and to permit persons to whom the Software is furnished to do so,
|
|
18
|
-
* subject to the following conditions:
|
|
19
|
-
* The above copyright notice and this permission notice shall be included in all copies
|
|
20
|
-
* or substantial portions of the Software.
|
|
21
|
-
*
|
|
22
|
-
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED,
|
|
23
|
-
* INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A
|
|
24
|
-
* PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT
|
|
25
|
-
* HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
|
|
26
|
-
* OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE
|
|
27
|
-
* SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
|
28
|
-
**/
|
|
29
|
-
|
|
30
|
-
import { x4document } from './x4dom'
|
|
31
|
-
|
|
32
|
-
import { Popup, PopupProps, PopupEventMap, EvMove } from './popup'
|
|
33
|
-
import { Icon, IconID } from './icon'
|
|
34
|
-
import { HLayout } from './layout'
|
|
35
|
-
import { Label } from './label'
|
|
36
|
-
import { Form, FormButtons } from './form'
|
|
37
|
-
import { Component, ComponentContent, EvSize, flyWrap } from './component'
|
|
38
|
-
import { BasicEvent, EventCallback } from './x4events'
|
|
39
|
-
import { Rect, getMousePos, isFunction, isTouchDevice, isString, Size } from './tools'
|
|
40
|
-
|
|
41
|
-
interface Geometry {
|
|
42
|
-
left: number;
|
|
43
|
-
top: number;
|
|
44
|
-
width: number;
|
|
45
|
-
height: number;
|
|
46
|
-
minimized: boolean;
|
|
47
|
-
maximized: boolean;
|
|
48
|
-
}
|
|
49
|
-
|
|
50
|
-
// ============================================================================
|
|
51
|
-
// [DIALOG]
|
|
52
|
-
// ============================================================================
|
|
53
|
-
|
|
54
|
-
|
|
55
|
-
export interface EvClose extends BasicEvent {
|
|
56
|
-
}
|
|
57
|
-
|
|
58
|
-
export interface EvBtnClick extends BasicEvent {
|
|
59
|
-
button: string;
|
|
60
|
-
}
|
|
61
|
-
|
|
62
|
-
export function EvBtnClick(button: string) {
|
|
63
|
-
return BasicEvent<EvBtnClick>({ button });
|
|
64
|
-
}
|
|
65
|
-
|
|
66
|
-
|
|
67
|
-
export interface DialogBoxEventMap extends PopupEventMap {
|
|
68
|
-
close: EvClose;
|
|
69
|
-
btnClick: EvBtnClick;
|
|
70
|
-
}
|
|
71
|
-
|
|
72
|
-
export type InitFormCallback = () => Form;
|
|
73
|
-
|
|
74
|
-
export interface DialogProps<E extends DialogBoxEventMap = DialogBoxEventMap> extends PopupProps<E> {
|
|
75
|
-
title?: string;
|
|
76
|
-
icon?: IconID;
|
|
77
|
-
buttons?: FormButtons;
|
|
78
|
-
|
|
79
|
-
btnClick?: EventCallback<EvBtnClick>;
|
|
80
|
-
|
|
81
|
-
closable?: boolean;
|
|
82
|
-
movable?: boolean;
|
|
83
|
-
maximized?: boolean;
|
|
84
|
-
maximizable?: boolean;
|
|
85
|
-
minimizable?: boolean;
|
|
86
|
-
autoClose?: boolean; // if true, close the dialog when a button is clicked
|
|
87
|
-
|
|
88
|
-
width?: number; // when you specify a width here, this is the minimal FORM content width
|
|
89
|
-
height?: number; // when you specify a width here, this is the minimal FORM content heigt
|
|
90
|
-
dlgWidth?: number; // this is the prefered initial dialog width in percent of screen
|
|
91
|
-
dlgHeight?: number; // this is the prefered initial dialog height in percent of screen
|
|
92
|
-
|
|
93
|
-
form?: Form | InitFormCallback;
|
|
94
|
-
disableSuggestions?: boolean;
|
|
95
|
-
}
|
|
96
|
-
|
|
97
|
-
/**
|
|
98
|
-
* Standard dialog class
|
|
99
|
-
*/
|
|
100
|
-
|
|
101
|
-
export class Dialog<P extends DialogProps = DialogProps, E extends DialogBoxEventMap = DialogBoxEventMap> extends Popup<P, E>
|
|
102
|
-
{
|
|
103
|
-
protected m_icon: IconID;
|
|
104
|
-
protected m_title: string;
|
|
105
|
-
protected m_form: Form;
|
|
106
|
-
protected m_buttons: FormButtons;
|
|
107
|
-
protected m_closable: boolean;
|
|
108
|
-
protected m_movable: boolean;
|
|
109
|
-
protected m_maximized: boolean;
|
|
110
|
-
protected m_minimized: boolean;
|
|
111
|
-
protected m_maximizable: boolean;
|
|
112
|
-
protected m_minimizable: boolean;
|
|
113
|
-
|
|
114
|
-
protected m_minFormSize: Size;
|
|
115
|
-
|
|
116
|
-
protected m_rc_max: Rect;
|
|
117
|
-
protected m_rc_min: Rect;
|
|
118
|
-
|
|
119
|
-
protected m_el_title: Component;
|
|
120
|
-
protected m_last_down: number;
|
|
121
|
-
protected m_auto_close: boolean;
|
|
122
|
-
|
|
123
|
-
protected m_ui_title: Label;
|
|
124
|
-
protected m_form_cb: InitFormCallback;
|
|
125
|
-
|
|
126
|
-
constructor(props: P) {
|
|
127
|
-
|
|
128
|
-
let content = props.content;
|
|
129
|
-
props.content = null;
|
|
130
|
-
|
|
131
|
-
let width = props.width;
|
|
132
|
-
let height = props.height;
|
|
133
|
-
|
|
134
|
-
props.width = undefined;
|
|
135
|
-
props.height = undefined;
|
|
136
|
-
|
|
137
|
-
super(props);
|
|
138
|
-
|
|
139
|
-
this.m_minFormSize = { width, height };
|
|
140
|
-
|
|
141
|
-
this.enableMask(true);
|
|
142
|
-
|
|
143
|
-
if (props.form) {
|
|
144
|
-
if (!isFunction(props.form)) {
|
|
145
|
-
this.m_form = props.form;
|
|
146
|
-
this.m_form.on('btnClick', (e) => this._handleClick(e));
|
|
147
|
-
}
|
|
148
|
-
else {
|
|
149
|
-
this.m_form_cb = props.form;
|
|
150
|
-
}
|
|
151
|
-
}
|
|
152
|
-
else {
|
|
153
|
-
this.m_form = new Form({
|
|
154
|
-
content,
|
|
155
|
-
buttons: props.buttons,
|
|
156
|
-
disableSuggestions: props.disableSuggestions,
|
|
157
|
-
btnClick: (e) => this._handleClick(e)
|
|
158
|
-
});
|
|
159
|
-
}
|
|
160
|
-
|
|
161
|
-
this.m_movable = props.movable;
|
|
162
|
-
this.m_auto_close = props.autoClose ?? true;
|
|
163
|
-
|
|
164
|
-
this.m_icon = props.icon;
|
|
165
|
-
this.m_title = props.title;
|
|
166
|
-
this.m_buttons = props.buttons ?? null;
|
|
167
|
-
this.m_closable = props.closable ?? false;
|
|
168
|
-
this.m_last_down = 0;
|
|
169
|
-
|
|
170
|
-
this.on('size', (ev: EvSize) => {
|
|
171
|
-
this.addClass('@resized');
|
|
172
|
-
this.m_form.setStyleValue('width', null);
|
|
173
|
-
this.m_form.setStyleValue('height', null);
|
|
174
|
-
});
|
|
175
|
-
|
|
176
|
-
this.m_maximized = false;
|
|
177
|
-
this.m_minimized = false;
|
|
178
|
-
this.m_maximizable = false;
|
|
179
|
-
this.m_minimizable = false;
|
|
180
|
-
|
|
181
|
-
if (props.maximizable !== undefined) {
|
|
182
|
-
this.m_maximizable = props.maximizable;
|
|
183
|
-
}
|
|
184
|
-
|
|
185
|
-
if (props.minimizable !== undefined) {
|
|
186
|
-
this.m_minimizable = props.minimizable;
|
|
187
|
-
}
|
|
188
|
-
|
|
189
|
-
if (props.maximized == true) {
|
|
190
|
-
this.m_maximizable = true;
|
|
191
|
-
}
|
|
192
|
-
|
|
193
|
-
if( props.btnClick ) {
|
|
194
|
-
this.on( 'btnClick', props.btnClick );
|
|
195
|
-
}
|
|
196
|
-
}
|
|
197
|
-
|
|
198
|
-
/**
|
|
199
|
-
*
|
|
200
|
-
*/
|
|
201
|
-
|
|
202
|
-
componentCreated() // override
|
|
203
|
-
{
|
|
204
|
-
super.componentCreated();
|
|
205
|
-
|
|
206
|
-
if( this.m_minFormSize.width ) {
|
|
207
|
-
this.m_form.setStyle( {
|
|
208
|
-
minWidth: this.m_minFormSize.width,
|
|
209
|
-
width: this.m_minFormSize.width
|
|
210
|
-
} );
|
|
211
|
-
}
|
|
212
|
-
|
|
213
|
-
if( this.m_minFormSize.height ) {
|
|
214
|
-
this.m_form.setStyle( {
|
|
215
|
-
minHeight: this.m_minFormSize.height,
|
|
216
|
-
height: this.m_minFormSize.height
|
|
217
|
-
});
|
|
218
|
-
}
|
|
219
|
-
|
|
220
|
-
const rc = this.getBoundingRect( );
|
|
221
|
-
this.setStyleValue( 'min-width', rc.width );
|
|
222
|
-
this.setStyleValue( 'min-height', rc.height );
|
|
223
|
-
|
|
224
|
-
this.setStyleValue( 'width', rc.width );
|
|
225
|
-
this.setStyleValue( 'height', rc.height );
|
|
226
|
-
|
|
227
|
-
if( this.m_props.dlgWidth ) {
|
|
228
|
-
this.setStyleValue( 'width', this.m_props.dlgWidth+'%' );
|
|
229
|
-
}
|
|
230
|
-
|
|
231
|
-
if( this.m_props.dlgHeight ) {
|
|
232
|
-
this.setStyleValue( 'height', this.m_props.dlgHeight+'%' );
|
|
233
|
-
}
|
|
234
|
-
|
|
235
|
-
this.addClass('@resized');
|
|
236
|
-
|
|
237
|
-
if( this.m_el_title ) {
|
|
238
|
-
this.m_el_title.setStyleValue( "width", "auto" );
|
|
239
|
-
}
|
|
240
|
-
|
|
241
|
-
if (this.m_props.maximized) {
|
|
242
|
-
this._maximize();
|
|
243
|
-
this.emit('size', EvSize(null));
|
|
244
|
-
}
|
|
245
|
-
else {
|
|
246
|
-
this.centerOnScreen( );
|
|
247
|
-
}
|
|
248
|
-
}
|
|
249
|
-
|
|
250
|
-
/**
|
|
251
|
-
*
|
|
252
|
-
*/
|
|
253
|
-
|
|
254
|
-
private _handleClick(ev: EvBtnClick) {
|
|
255
|
-
this.emit('btnClick', ev);
|
|
256
|
-
if (!ev.defaultPrevented) {
|
|
257
|
-
this.close();
|
|
258
|
-
}
|
|
259
|
-
}
|
|
260
|
-
|
|
261
|
-
/**
|
|
262
|
-
* restore the geometry
|
|
263
|
-
*/
|
|
264
|
-
|
|
265
|
-
setGeometry(geom: Geometry) {
|
|
266
|
-
|
|
267
|
-
if (geom.minimized && this.m_minimizable) {
|
|
268
|
-
this._minimize(false);
|
|
269
|
-
this.m_rc_min = new Rect(geom.left, geom.top, geom.width, geom.height);
|
|
270
|
-
this.displayAt(geom.left, geom.top, 'top-left');
|
|
271
|
-
}
|
|
272
|
-
else if (geom.maximized && this.m_maximizable) {
|
|
273
|
-
this._maximize(false);
|
|
274
|
-
this.m_rc_max = new Rect(geom.left, geom.top, geom.width, geom.height);
|
|
275
|
-
}
|
|
276
|
-
else {
|
|
277
|
-
this.setSize(geom.width, geom.height);
|
|
278
|
-
this.displayAt(geom.left, geom.top, 'top-left');
|
|
279
|
-
}
|
|
280
|
-
}
|
|
281
|
-
|
|
282
|
-
/**
|
|
283
|
-
* return the geometry (usefull to save state)
|
|
284
|
-
*/
|
|
285
|
-
|
|
286
|
-
getGeometry(): Geometry {
|
|
287
|
-
|
|
288
|
-
if (this.m_minimized) {
|
|
289
|
-
return {
|
|
290
|
-
left: this.m_rc_min.left,
|
|
291
|
-
top: this.m_rc_min.top,
|
|
292
|
-
width: this.m_rc_min.width,
|
|
293
|
-
height: this.m_rc_min.height,
|
|
294
|
-
minimized: true,
|
|
295
|
-
maximized: false
|
|
296
|
-
}
|
|
297
|
-
}
|
|
298
|
-
else if (this.m_maximized) {
|
|
299
|
-
return {
|
|
300
|
-
left: this.m_rc_max.left,
|
|
301
|
-
top: this.m_rc_max.top,
|
|
302
|
-
width: this.m_rc_max.width,
|
|
303
|
-
height: this.m_rc_max.height,
|
|
304
|
-
minimized: false,
|
|
305
|
-
maximized: true
|
|
306
|
-
}
|
|
307
|
-
}
|
|
308
|
-
|
|
309
|
-
let rc = this.getBoundingRect();
|
|
310
|
-
|
|
311
|
-
return {
|
|
312
|
-
left: rc.left,
|
|
313
|
-
top: rc.top,
|
|
314
|
-
width: rc.width,
|
|
315
|
-
height: rc.height,
|
|
316
|
-
minimized: false,
|
|
317
|
-
maximized: false
|
|
318
|
-
};
|
|
319
|
-
}
|
|
320
|
-
|
|
321
|
-
/**
|
|
322
|
-
* resize the dialog
|
|
323
|
-
* @param width
|
|
324
|
-
* @param height
|
|
325
|
-
*/
|
|
326
|
-
setSize(width: number, height: number) {
|
|
327
|
-
this.setStyle({ width, height });
|
|
328
|
-
this.emit('size', EvSize({ width, height }));
|
|
329
|
-
}
|
|
330
|
-
|
|
331
|
-
/** @ignore */
|
|
332
|
-
render() {
|
|
333
|
-
|
|
334
|
-
if (this.m_form_cb) {
|
|
335
|
-
this.m_form = this.m_form_cb();
|
|
336
|
-
this.m_form.on('btnClick', (e) => this._handleClick(e));
|
|
337
|
-
this.m_form_cb = null;
|
|
338
|
-
}
|
|
339
|
-
|
|
340
|
-
let hasTitle = this.m_icon !== undefined || this.m_closable || this.m_title !== undefined || this.m_movable;
|
|
341
|
-
this.m_el_title = null;
|
|
342
|
-
|
|
343
|
-
if (hasTitle) {
|
|
344
|
-
this.m_el_title = new HLayout({
|
|
345
|
-
cls: 'title',
|
|
346
|
-
content: [
|
|
347
|
-
this.m_icon ? new Icon({ icon: this.m_icon }) : null,
|
|
348
|
-
this.m_ui_title = new Label({ flex: 1, text: this.m_title }),
|
|
349
|
-
this.m_minimizable ? new Icon({ cls: 'min-btn', icon: 'var( --x4-icon-window-minimize )', dom_events: { click: () => this._toggleMin() } }) : null,
|
|
350
|
-
this.m_maximizable ? new Icon({ cls: 'max-btn', icon: 'var( --x4-icon-window-maximize )', dom_events: { click: () => this._toggleMax() } }) : null,
|
|
351
|
-
this.m_maximizable ? new Icon({ cls: 'res-btn', icon: 'var( --x4-icon-window-restore )', dom_events: { click: () => this._toggleMax() } }) : null,
|
|
352
|
-
this.m_closable ? new Icon({ cls: 'close-btn', icon: 'var( --x4-icon-rectangle-times )', dom_events: { click: () => this.close() } }) : null,
|
|
353
|
-
]
|
|
354
|
-
});
|
|
355
|
-
|
|
356
|
-
if (this.m_movable) {
|
|
357
|
-
if( isTouchDevice() ) {
|
|
358
|
-
this.m_el_title.setDomEvent('touchstart', (e) => this._mouseDown(e));
|
|
359
|
-
}
|
|
360
|
-
else {
|
|
361
|
-
this.m_el_title.setDomEvent('mousedown', (e) => this._mouseDown(e));
|
|
362
|
-
}
|
|
363
|
-
}
|
|
364
|
-
}
|
|
365
|
-
|
|
366
|
-
super.setContent([
|
|
367
|
-
this.m_el_title,
|
|
368
|
-
this.m_form
|
|
369
|
-
]);
|
|
370
|
-
}
|
|
371
|
-
|
|
372
|
-
/**
|
|
373
|
-
* change the dialog content
|
|
374
|
-
* @param els
|
|
375
|
-
* @param refreshAll
|
|
376
|
-
*/
|
|
377
|
-
|
|
378
|
-
setContent( els: ComponentContent, refreshAll = true ) {
|
|
379
|
-
this.m_form.setContent( els, refreshAll );
|
|
380
|
-
}
|
|
381
|
-
|
|
382
|
-
/**
|
|
383
|
-
* change the dialog buttons
|
|
384
|
-
* @param buttons
|
|
385
|
-
*/
|
|
386
|
-
|
|
387
|
-
setButtons( buttons: FormButtons ) {
|
|
388
|
-
this.m_form.setButtons( buttons );
|
|
389
|
-
}
|
|
390
|
-
|
|
391
|
-
/**
|
|
392
|
-
* return the dialog form
|
|
393
|
-
*/
|
|
394
|
-
|
|
395
|
-
public get form(): Form {
|
|
396
|
-
return this.m_form;
|
|
397
|
-
}
|
|
398
|
-
|
|
399
|
-
/**
|
|
400
|
-
* close the dialog
|
|
401
|
-
*/
|
|
402
|
-
|
|
403
|
-
public close() {
|
|
404
|
-
this.emit( 'close', {} );
|
|
405
|
-
super.close();
|
|
406
|
-
}
|
|
407
|
-
|
|
408
|
-
/**
|
|
409
|
-
*
|
|
410
|
-
*/
|
|
411
|
-
private _toggleMax() {
|
|
412
|
-
if (!this.m_maximizable) {
|
|
413
|
-
return;
|
|
414
|
-
}
|
|
415
|
-
|
|
416
|
-
if (this.m_maximized) {
|
|
417
|
-
this.removeClass('maximized');
|
|
418
|
-
this.setStyle({
|
|
419
|
-
left: this.m_rc_max.left,
|
|
420
|
-
top: this.m_rc_max.top,
|
|
421
|
-
width: this.m_rc_max.width,
|
|
422
|
-
height: this.m_rc_max.height,
|
|
423
|
-
});
|
|
424
|
-
this.m_maximized = false;
|
|
425
|
-
this.emit( 'size', EvSize(null, 'restore'));
|
|
426
|
-
}
|
|
427
|
-
else {
|
|
428
|
-
this._maximize();
|
|
429
|
-
this.emit( 'size', EvSize(null, 'maximize'));
|
|
430
|
-
}
|
|
431
|
-
}
|
|
432
|
-
|
|
433
|
-
/**
|
|
434
|
-
*
|
|
435
|
-
*/
|
|
436
|
-
|
|
437
|
-
private _toggleMin() {
|
|
438
|
-
if (!this.m_minimizable) {
|
|
439
|
-
return;
|
|
440
|
-
}
|
|
441
|
-
|
|
442
|
-
if (this.m_minimized) {
|
|
443
|
-
this.removeClass('minimized');
|
|
444
|
-
this.setStyle({
|
|
445
|
-
//left: this.m_rc_min.left,
|
|
446
|
-
//top: this.m_rc_min.top,
|
|
447
|
-
width: this.m_rc_min.width,
|
|
448
|
-
height: this.m_rc_min.height,
|
|
449
|
-
});
|
|
450
|
-
this.m_minimized = false;
|
|
451
|
-
this.emit('size', EvSize(null, 'restore'));
|
|
452
|
-
}
|
|
453
|
-
else {
|
|
454
|
-
this._minimize();
|
|
455
|
-
this.emit('size', EvSize(null, 'minimize'));
|
|
456
|
-
}
|
|
457
|
-
}
|
|
458
|
-
|
|
459
|
-
/**
|
|
460
|
-
*
|
|
461
|
-
*/
|
|
462
|
-
|
|
463
|
-
private _mouseDown(event: UIEvent) {
|
|
464
|
-
|
|
465
|
-
let { x, y } = getMousePos(event, true);
|
|
466
|
-
|
|
467
|
-
let wrc = flyWrap(x4document.body).getBoundingRect();
|
|
468
|
-
let rc = this.getBoundingRect(true);
|
|
469
|
-
///let trc = this.m_el_title.getBoundingRect();
|
|
470
|
-
|
|
471
|
-
let dx = x - rc.left,
|
|
472
|
-
dy = y - rc.top;
|
|
473
|
-
|
|
474
|
-
//let cstyle = this.getComputedStyle();
|
|
475
|
-
//let topw = cstyle.parse('marginTop') + cstyle.parse('paddingTop') + cstyle.parse('borderTopWidth');
|
|
476
|
-
//let botw = cstyle.parse('marginBottom') + cstyle.parse('paddingBottom') + cstyle.parse('borderBottomWidth');
|
|
477
|
-
//let lftw = cstyle.parse('marginLeft') + cstyle.parse('paddingLeft') + cstyle.parse('borderLeftWidth');
|
|
478
|
-
//let rgtw = cstyle.parse('marginRight') + cstyle.parse('paddingRight') + cstyle.parse('borderRightWidth');
|
|
479
|
-
|
|
480
|
-
//wrc.top += topw - trc.height;
|
|
481
|
-
//wrc.height -= topw + botw - trc.height;
|
|
482
|
-
|
|
483
|
-
//wrc.left += lftw;
|
|
484
|
-
//wrc.width -= lftw + rgtw;
|
|
485
|
-
|
|
486
|
-
// custom handling double click
|
|
487
|
-
const now = Date.now();
|
|
488
|
-
const delta = now - this.m_last_down;
|
|
489
|
-
|
|
490
|
-
if ( this.m_maximizable && delta < 700) {
|
|
491
|
-
this._toggleMax();
|
|
492
|
-
return;
|
|
493
|
-
}
|
|
494
|
-
|
|
495
|
-
this.m_last_down = now;
|
|
496
|
-
if (this.m_maximized) {
|
|
497
|
-
// cannot move in max state
|
|
498
|
-
return;
|
|
499
|
-
}
|
|
500
|
-
|
|
501
|
-
let __move = (ex, ey) => {
|
|
502
|
-
|
|
503
|
-
if( ex>wrc.right ) {
|
|
504
|
-
ex = wrc.right;
|
|
505
|
-
}
|
|
506
|
-
else if( ex<wrc.left ) {
|
|
507
|
-
ex = wrc.left;
|
|
508
|
-
}
|
|
509
|
-
|
|
510
|
-
if( ey>wrc.bottom ) {
|
|
511
|
-
ey = wrc.bottom;
|
|
512
|
-
}
|
|
513
|
-
else if( ey<wrc.top ) {
|
|
514
|
-
ey = wrc.top;
|
|
515
|
-
}
|
|
516
|
-
|
|
517
|
-
let x = ex - dx,
|
|
518
|
-
y = ey - dy;
|
|
519
|
-
|
|
520
|
-
//if (x + rc.width < wrc.left) {
|
|
521
|
-
// x = wrc.left - rc.width;
|
|
522
|
-
//}
|
|
523
|
-
//else if (x > wrc.right) {
|
|
524
|
-
// x = wrc.right;
|
|
525
|
-
//}
|
|
526
|
-
//
|
|
527
|
-
//if (y < wrc.top) { // title grip is on top
|
|
528
|
-
// y = wrc.top;
|
|
529
|
-
//}
|
|
530
|
-
//else if (y > wrc.bottom) {
|
|
531
|
-
// y = wrc.bottom;
|
|
532
|
-
//}
|
|
533
|
-
|
|
534
|
-
this.setStyle({
|
|
535
|
-
left: x,
|
|
536
|
-
top: y
|
|
537
|
-
});
|
|
538
|
-
}
|
|
539
|
-
|
|
540
|
-
Component.setCapture(this, (ev) => {
|
|
541
|
-
|
|
542
|
-
if (ev.type == 'mousemove') {
|
|
543
|
-
let mev = ev as MouseEvent;
|
|
544
|
-
__move(mev.clientX, mev.clientY);
|
|
545
|
-
}
|
|
546
|
-
else if (ev.type == 'touchmove') {
|
|
547
|
-
let tev = ev as TouchEvent;
|
|
548
|
-
|
|
549
|
-
if (tev.touches.length == 1) {
|
|
550
|
-
__move(tev.touches[0].clientX, tev.touches[0].clientY);
|
|
551
|
-
}
|
|
552
|
-
}
|
|
553
|
-
else if (ev.type == 'mouseup' || ev.type == 'touchend') {
|
|
554
|
-
Component.releaseCapture();
|
|
555
|
-
this.emit( 'move', EvMove(null));
|
|
556
|
-
}
|
|
557
|
-
else if (ev.type == 'mousedown' || ev.type == 'touchstart') {
|
|
558
|
-
|
|
559
|
-
}
|
|
560
|
-
});
|
|
561
|
-
}
|
|
562
|
-
|
|
563
|
-
/**
|
|
564
|
-
* maximize the dialog
|
|
565
|
-
*/
|
|
566
|
-
|
|
567
|
-
public maximize() {
|
|
568
|
-
if (!this.m_maximizable || this.m_maximized) {
|
|
569
|
-
return;
|
|
570
|
-
}
|
|
571
|
-
|
|
572
|
-
this._maximize();
|
|
573
|
-
this.emit('size', EvSize(null));
|
|
574
|
-
}
|
|
575
|
-
|
|
576
|
-
/**
|
|
577
|
-
*
|
|
578
|
-
*/
|
|
579
|
-
|
|
580
|
-
private _maximize(saveRect = true) {
|
|
581
|
-
|
|
582
|
-
if (saveRect) {
|
|
583
|
-
this.m_rc_max = this.getBoundingRect(false);
|
|
584
|
-
}
|
|
585
|
-
|
|
586
|
-
this.addClass('maximized');
|
|
587
|
-
this.m_maximized = true;
|
|
588
|
-
|
|
589
|
-
this.setStyle({
|
|
590
|
-
left: undefined,
|
|
591
|
-
top: undefined,
|
|
592
|
-
width: undefined,
|
|
593
|
-
height: undefined,
|
|
594
|
-
});
|
|
595
|
-
}
|
|
596
|
-
|
|
597
|
-
/**
|
|
598
|
-
* minimize the dialog
|
|
599
|
-
*/
|
|
600
|
-
|
|
601
|
-
public minimize() {
|
|
602
|
-
if (!this.m_minimizable || this.m_minimized) {
|
|
603
|
-
return;
|
|
604
|
-
}
|
|
605
|
-
|
|
606
|
-
this._minimize();
|
|
607
|
-
this.emit('size', EvSize(null));
|
|
608
|
-
}
|
|
609
|
-
|
|
610
|
-
/**
|
|
611
|
-
*
|
|
612
|
-
*/
|
|
613
|
-
|
|
614
|
-
private _minimize(saveRect = true) {
|
|
615
|
-
|
|
616
|
-
if (saveRect) {
|
|
617
|
-
this.m_rc_min = this.getBoundingRect(false);
|
|
618
|
-
}
|
|
619
|
-
|
|
620
|
-
this.addClass('minimized');
|
|
621
|
-
this.m_minimized = true;
|
|
622
|
-
|
|
623
|
-
this.setStyle({
|
|
624
|
-
//left: undefined,
|
|
625
|
-
//top: undefined,
|
|
626
|
-
width: undefined,
|
|
627
|
-
height: undefined,
|
|
628
|
-
});
|
|
629
|
-
|
|
630
|
-
|
|
631
|
-
}
|
|
632
|
-
|
|
633
|
-
/**
|
|
634
|
-
* change the dialog title
|
|
635
|
-
*/
|
|
636
|
-
|
|
637
|
-
set title(title: string) {
|
|
638
|
-
this.m_title = title;
|
|
639
|
-
if (this.m_ui_title) {
|
|
640
|
-
this.m_ui_title.text = title;
|
|
641
|
-
}
|
|
642
|
-
}
|
|
643
|
-
|
|
644
|
-
itemWithName<T extends Component>( name: string ): T {
|
|
645
|
-
let result = <HTMLElement>this.dom.querySelector( `[name="${name}"]` );
|
|
646
|
-
return result ? Component.getElement<T>(result) : null;
|
|
647
|
-
}
|
|
648
|
-
|
|
649
|
-
getValues( ) {
|
|
650
|
-
return this.m_form.getValues( );
|
|
651
|
-
}
|
|
652
|
-
|
|
653
|
-
validate( ) {
|
|
654
|
-
return this.m_form.validate( );
|
|
655
|
-
}
|
|
656
|
-
}
|