-
Notifications
You must be signed in to change notification settings - Fork 213
Expand file tree
/
Copy pathModel.ts
More file actions
executable file
·705 lines (633 loc) · 27.6 KB
/
Copy pathModel.ts
File metadata and controls
executable file
·705 lines (633 loc) · 27.6 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
import { Attribute } from "../Attribute";
import { AttributeDefinitions } from "../AttributeDefinitions";
import { DockLocation } from "../DockLocation";
import { DropInfo } from "../DropInfo";
import { Rect } from "../Rect";
import { Action } from "./Action";
import { Actions } from "./Actions";
import { BorderNode } from "./BorderNode";
import { BorderSet } from "./BorderSet";
import { IDraggable } from "./IDraggable";
import { IDropTarget } from "./IDropTarget";
import { IJsonModel, IJsonPopout, ITabSetAttributes } from "./IJsonModel";
import { Node } from "./Node";
import { RowNode } from "./RowNode";
import { TabNode } from "./TabNode";
import { TabSetNode } from "./TabSetNode";
import { randomUUID } from "./Utils";
import { LayoutWindow } from "./LayoutWindow";
/** @internal */
export const DefaultMin = 0;
/** @internal */
export const DefaultMax = 99999;
/**
* Class containing the Tree of Nodes used by the FlexLayout component
*/
export class Model {
static MAIN_WINDOW_ID = "__main_window_id__";
/** @internal */
private static attributeDefinitions: AttributeDefinitions = Model.createAttributeDefinitions();
/** @internal */
private attributes: Record<string, any>;
/** @internal */
private idMap: Map<string, Node>;
/** @internal */
private changeListeners: ((action: Action) => void)[];
/** @internal */
private borders: BorderSet;
/** @internal */
private onAllowDrop?: (dragNode: Node, dropInfo: DropInfo) => boolean;
/** @internal */
private onCreateTabSet?: (tabNode?: TabNode) => ITabSetAttributes;
/** @internal */
private windows: Map<string, LayoutWindow>;
/** @internal */
private rootWindow: LayoutWindow;
/**
* 'private' constructor. Use the static method Model.fromJson(json) to create a model
* @internal
*/
protected constructor() {
this.attributes = {};
this.idMap = new Map();
this.borders = new BorderSet(this);
this.windows = new Map<string, LayoutWindow>();
this.rootWindow = new LayoutWindow(Model.MAIN_WINDOW_ID, Rect.empty());
this.windows.set(Model.MAIN_WINDOW_ID, this.rootWindow);
this.changeListeners = [];
}
/**
* Update the node tree by performing the given action,
* Actions should be generated via static methods on the Actions class
* @param action the action to perform
* @returns added Node for Actions.addNode, windowId for createWindow
*/
doAction(action: Action): any {
let returnVal = undefined;
// console.log(action);
switch (action.type) {
case Actions.ADD_NODE: {
const newNode = new TabNode(this, action.data.json, true);
const toNode = this.idMap.get(action.data.toNode) as Node & IDraggable;
if (toNode instanceof TabSetNode || toNode instanceof BorderNode || toNode instanceof RowNode) {
toNode.drop(newNode, DockLocation.getByName(action.data.location), action.data.index, action.data.select);
returnVal = newNode;
}
break;
}
case Actions.MOVE_NODE: {
const fromNode = this.idMap.get(action.data.fromNode) as Node & IDraggable;
if (fromNode instanceof TabNode || fromNode instanceof TabSetNode || fromNode instanceof RowNode) {
if (fromNode === this.getMaximizedTabset(fromNode.getWindowId())) {
const fromWindow = this.windows.get(fromNode.getWindowId())!;
fromWindow.maximizedTabSet = undefined;
}
const toNode = this.idMap.get(action.data.toNode) as Node & IDropTarget;
if (toNode instanceof TabSetNode || toNode instanceof BorderNode || toNode instanceof RowNode) {
toNode.drop(fromNode, DockLocation.getByName(action.data.location), action.data.index, action.data.select);
}
}
this.removeEmptyWindows();
break;
}
case Actions.DELETE_TAB: {
const node = this.idMap.get(action.data.node);
if (node instanceof TabNode) {
node.delete();
}
this.removeEmptyWindows();
break;
}
case Actions.DELETE_TABSET: {
const node = this.idMap.get(action.data.node);
if (node instanceof TabSetNode) {
// first delete all child tabs that are closeable
const children = [...node.getChildren()];
for (let i = 0; i < children.length; i++) {
const child = children[i];
if ((child as TabNode).isEnableClose()) {
(child as TabNode).delete();
}
}
if (node.getChildren().length === 0) {
node.delete();
}
this.tidy();
}
this.removeEmptyWindows();
break;
}
case Actions.POPOUT_TABSET: {
const node = this.idMap.get(action.data.node);
if (node instanceof TabSetNode) {
const isMaximized = node.isMaximized();
const oldLayoutWindow = this.windows.get(node.getWindowId())!;
const windowId = randomUUID()
const layoutWindow = new LayoutWindow(windowId, oldLayoutWindow.toScreenRectFunction(node.getRect()));
const json = {
type: "row",
children: []
}
const row = RowNode.fromJson(json, this, layoutWindow);
layoutWindow.root = row;
this.windows.set(windowId, layoutWindow);
row.drop(node, DockLocation.CENTER, 0);
if (isMaximized) {
this.rootWindow.maximizedTabSet = undefined;
}
}
this.removeEmptyWindows();
break;
}
case Actions.POPOUT_TAB: {
const node = this.idMap.get(action.data.node);
if (node instanceof TabNode) {
const windowId = randomUUID()
let r = Rect.empty();
if (node.getParent() instanceof TabSetNode) {
r = node.getParent()!.getRect();
} else {
r = (node.getParent() as BorderNode).getContentRect();
}
const oldLayoutWindow = this.windows.get(node.getWindowId())!;
const layoutWindow = new LayoutWindow(windowId, oldLayoutWindow.toScreenRectFunction(r));
const tabsetId = randomUUID();
const json = {
type: "row",
children: [
{ type: "tabset", id: tabsetId }
]
}
const row = RowNode.fromJson(json, this, layoutWindow);
layoutWindow.root = row;
this.windows.set(windowId, layoutWindow);
const tabset = this.idMap.get(tabsetId) as TabSetNode & IDropTarget;
tabset.drop(node, DockLocation.CENTER, 0, true);
}
this.removeEmptyWindows();
break;
}
case Actions.CLOSE_WINDOW: {
const window = this.windows.get(action.data.windowId);
if (window) {
this.rootWindow.root?.drop(window?.root!, DockLocation.CENTER, -1);
this.rootWindow.visitNodes((node, level) => {
if (node instanceof RowNode) {
node.setWindowId(Model.MAIN_WINDOW_ID);
}
})
// this.getFirstTabSet().drop(window?.root!,DockLocation.CENTER, -1);
this.windows.delete(action.data.windowId);
}
break;
}
case Actions.CREATE_WINDOW: {
const windowId = randomUUID();
const layoutWindow = new LayoutWindow(windowId, Rect.fromJson(action.data.rect));
const row = RowNode.fromJson(action.data.layout, this, layoutWindow);
layoutWindow.root = row;
this.windows.set(windowId, layoutWindow);
returnVal = windowId;
break;
}
case Actions.RENAME_TAB: {
const node = this.idMap.get(action.data.node);
if (node instanceof TabNode) {
node.setName(action.data.text);
}
break;
}
case Actions.SELECT_TAB: {
const tabNode = this.idMap.get(action.data.tabNode);
const windowId = action.data.windowId ? action.data.windowId : Model.MAIN_WINDOW_ID;
const window = this.windows.get(windowId)!;
if (tabNode instanceof TabNode) {
const parent = tabNode.getParent() as Node;
const pos = parent.getChildren().indexOf(tabNode);
if (parent instanceof BorderNode) {
if (parent.getSelected() === pos) {
parent.setSelected(-1);
} else {
parent.setSelected(pos);
}
} else if (parent instanceof TabSetNode) {
if (parent.getSelected() !== pos) {
parent.setSelected(pos);
}
window.activeTabSet = parent;
}
}
break;
}
case Actions.SET_ACTIVE_TABSET: {
const windowId = action.data.windowId ? action.data.windowId : Model.MAIN_WINDOW_ID;
const window = this.windows.get(windowId)!;
if (action.data.tabsetNode === undefined) {
window.activeTabSet = undefined;
} else {
const tabsetNode = this.idMap.get(action.data.tabsetNode);
if (tabsetNode instanceof TabSetNode) {
window.activeTabSet = tabsetNode;
}
}
break;
}
case Actions.ADJUST_WEIGHTS: {
const row = this.idMap.get(action.data.nodeId) as RowNode;
const c = row.getChildren();
for (let i = 0; i < c.length; i++) {
const n = c[i] as TabSetNode | RowNode;
n.setWeight(action.data.weights[i]);
}
break;
}
case Actions.ADJUST_BORDER_SPLIT: {
const node = this.idMap.get(action.data.node);
if (node instanceof BorderNode) {
node.setSize(action.data.pos);
}
break;
}
case Actions.MAXIMIZE_TOGGLE: {
const windowId = action.data.windowId ? action.data.windowId : Model.MAIN_WINDOW_ID;
const window = this.windows.get(windowId)!;
const node = this.idMap.get(action.data.node);
if (node instanceof TabSetNode) {
if (node === window.maximizedTabSet) {
window.maximizedTabSet = undefined;
} else {
window.maximizedTabSet = node;
window.activeTabSet = node;
}
}
break;
}
case Actions.UPDATE_MODEL_ATTRIBUTES: {
this.updateAttrs(action.data.json);
break;
}
case Actions.UPDATE_NODE_ATTRIBUTES: {
const node = this.idMap.get(action.data.node)!;
node.updateAttrs(action.data.json);
break;
}
default:
break;
}
this.updateIdMap();
for (const listener of this.changeListeners) {
listener(action);
}
return returnVal;
}
/**
* Get the currently active tabset node
*/
getActiveTabset(windowId: string = Model.MAIN_WINDOW_ID) {
const window = this.windows.get(windowId);
if (window && window.activeTabSet && this.getNodeById(window.activeTabSet.getId())) {
return window.activeTabSet;
} else {
return undefined;
}
}
/**
* Get the currently maximized tabset node
*/
getMaximizedTabset(windowId: string = Model.MAIN_WINDOW_ID) {
return this.windows.get(windowId)!.maximizedTabSet;
}
/**
* Gets the root RowNode of the model
* @returns {RowNode}
*/
getRoot(windowId: string = Model.MAIN_WINDOW_ID) {
return this.windows.get(windowId)!.root!;
}
isRootOrientationVertical() {
return this.attributes.rootOrientationVertical as boolean;
}
isEnableRotateBorderIcons() {
return this.attributes.enableRotateBorderIcons as boolean;
}
/**
* Gets the
* @returns {BorderSet|*}
*/
getBorderSet() {
return this.borders;
}
getwindowsMap() {
return this.windows;
}
/**
* Visits all the nodes in the model and calls the given function for each
* @param fn a function that takes visited node and a integer level as parameters
*/
visitNodes(fn: (node: Node, level: number) => void) {
this.borders.forEachNode(fn);
for (const [_, w] of this.windows) {
w.root!.forEachNode(fn, 0);
}
}
visitWindowNodes(windowId: string, fn: (node: Node, level: number) => void) {
if (this.windows.has(windowId)) {
if (windowId === Model.MAIN_WINDOW_ID) {
this.borders.forEachNode(fn);
}
this.windows.get(windowId)!.visitNodes(fn);
}
}
/**
* Gets a node by its id
* @param id the id to find
*/
getNodeById(id: string): Node | undefined {
return this.idMap.get(id);
}
/**
* Finds the first/top left tab set of the given node.
* @param node The top node you want to begin searching from, deafults to the root node
* @returns The first Tab Set
*/
getFirstTabSet(node = this.windows.get(Model.MAIN_WINDOW_ID)!.root as Node): TabSetNode {
const child = node.getChildren()[0];
if (child instanceof TabSetNode) {
return child;
}
else {
return this.getFirstTabSet(child);
}
}
/**
* Loads the model from the given json object
* @param json the json model to load
* @returns {Model} a new Model object
*/
static fromJson(json: IJsonModel) {
const model = new Model();
Model.attributeDefinitions.fromJson(json.global, model.attributes);
if (json.borders) {
model.borders = BorderSet.fromJson(json.borders, model);
}
if (json.popouts) {
for (const windowId in json.popouts) {
const windowJson = json.popouts[windowId];
const layoutWindow = LayoutWindow.fromJson(windowJson, model, windowId);
model.windows.set(windowId, layoutWindow);
}
}
model.rootWindow.root = RowNode.fromJson(json.layout, model, model.getwindowsMap().get(Model.MAIN_WINDOW_ID)!);
model.tidy(); // initial tidy of node tree
return model;
}
/**
* Converts the model to a json object
* @returns {IJsonModel} json object that represents this model
*/
toJson(): IJsonModel {
const global: any = {};
Model.attributeDefinitions.toJson(global, this.attributes);
// save state of nodes
this.visitNodes((node) => {
node.fireEvent("save", {});
});
const windows: Record<string, IJsonPopout> = {};
for (const [id, window] of this.windows) {
if (id !== Model.MAIN_WINDOW_ID) {
windows[id] = window.toJson();
}
}
return {
global,
borders: this.borders.toJson(),
layout: this.rootWindow.root!.toJson(),
popouts: windows
};
}
getSplitterSize() {
return this.attributes.splitterSize as number;
}
getSplitterExtra() {
return this.attributes.splitterExtra as number;
}
isEnableEdgeDock() {
return this.attributes.enableEdgeDock as boolean;
}
isSplitterEnableHandle() {
return this.attributes.splitterEnableHandle as boolean;
}
/**
* Sets a function to allow/deny dropping a node
* @param onAllowDrop function that takes the drag node and DropInfo and returns true if the drop is allowed
*/
setOnAllowDrop(onAllowDrop: (dragNode: Node, dropInfo: DropInfo) => boolean) {
this.onAllowDrop = onAllowDrop;
}
/**
* set callback called when a new TabSet is created.
* The tabNode can be undefined if it's the auto created first tabset in the root row (when the last
* tab is deleted, the root tabset can be recreated)
* @param onCreateTabSet
*/
setOnCreateTabSet(onCreateTabSet: (tabNode?: TabNode) => ITabSetAttributes) {
this.onCreateTabSet = onCreateTabSet;
}
addChangeListener(listener: ((action: Action) => void)) {
this.changeListeners.push(listener);
}
removeChangeListener(listener: ((action: Action) => void)) {
const pos = this.changeListeners.findIndex(l => l === listener);
if (pos !== -1) {
this.changeListeners.splice(pos, 1);
}
}
toString() {
return JSON.stringify(this.toJson());
}
/***********************internal ********************************/
/** @internal */
removeEmptyWindows() {
const emptyWindows = new Set<string>();
for (const [windowId] of this.windows) {
if (windowId !== Model.MAIN_WINDOW_ID) {
let count = 0;
this.visitWindowNodes(windowId, (node) => {
if (node instanceof TabNode) {
count++;
}
});
if (count === 0) {
emptyWindows.add(windowId);
}
}
}
for (const windowId of emptyWindows) {
this.windows.delete(windowId);
}
}
/** @internal */
setActiveTabset(tabsetNode: TabSetNode | undefined, windowId: string) {
const window = this.windows.get(windowId);
if (window) {
if (tabsetNode) {
window.activeTabSet = tabsetNode;
} else {
window.activeTabSet = undefined;
}
}
}
/** @internal */
setMaximizedTabset(tabsetNode: (TabSetNode | undefined), windowId: string) {
const window = this.windows.get(windowId);
if (window) {
if (tabsetNode) {
window.maximizedTabSet = tabsetNode;
} else {
window.maximizedTabSet = undefined;
}
}
}
/** @internal */
updateIdMap() {
// regenerate idMap to stop it building up
this.idMap.clear();
this.visitNodes((node) => {
this.idMap.set(node.getId(), node)
// if (node instanceof RowNode) {
// node.normalizeWeights();
// }
});
// console.log(JSON.stringify(Object.keys(this._idMap)));
}
/** @internal */
addNode(node: Node) {
const id = node.getId();
if (this.idMap.has(id)) {
throw new Error(`Error: each node must have a unique id, duplicate id:${node.getId()}`);
}
this.idMap.set(id, node);
}
/** @internal */
findDropTargetNode(windowId: string, dragNode: Node & IDraggable, x: number, y: number) {
let node = (this.windows.get(windowId)!.root as RowNode).findDropTargetNode(windowId, dragNode, x, y);
if (node === undefined && windowId === Model.MAIN_WINDOW_ID) {
node = this.borders.findDropTargetNode(dragNode, x, y);
}
return node;
}
/** @internal */
tidy() {
// console.log("before _tidy", this.toString());
for (const [_, window] of this.windows) {
window.root!.tidy();
}
// console.log("after _tidy", this.toString());
}
/** @internal */
updateAttrs(json: any) {
Model.attributeDefinitions.update(json, this.attributes);
}
/** @internal */
nextUniqueId() {
return '#' + randomUUID();
}
/** @internal */
getAttribute(name: string): any {
return this.attributes[name];
}
/** @internal */
getOnAllowDrop() {
return this.onAllowDrop;
}
/** @internal */
getOnCreateTabSet() {
return this.onCreateTabSet;
}
static toTypescriptInterfaces() {
Model.attributeDefinitions.pairAttributes("RowNode", RowNode.getAttributeDefinitions());
Model.attributeDefinitions.pairAttributes("TabSetNode", TabSetNode.getAttributeDefinitions());
Model.attributeDefinitions.pairAttributes("TabNode", TabNode.getAttributeDefinitions());
Model.attributeDefinitions.pairAttributes("BorderNode", BorderNode.getAttributeDefinitions());
let sb = [];
sb.push(Model.attributeDefinitions.toTypescriptInterface("Global", undefined));
sb.push(RowNode.getAttributeDefinitions().toTypescriptInterface("Row", Model.attributeDefinitions));
sb.push(TabSetNode.getAttributeDefinitions().toTypescriptInterface("TabSet", Model.attributeDefinitions));
sb.push(TabNode.getAttributeDefinitions().toTypescriptInterface("Tab", Model.attributeDefinitions));
sb.push(BorderNode.getAttributeDefinitions().toTypescriptInterface("Border", Model.attributeDefinitions));
console.log(sb.join("\n"));
}
/** @internal */
private static createAttributeDefinitions(): AttributeDefinitions {
const attributeDefinitions = new AttributeDefinitions();
attributeDefinitions.add("enableEdgeDock", true).setType(Attribute.BOOLEAN).setDescription(
`enable docking to the edges of the layout, this will show the edge indicators`
);
attributeDefinitions.add("rootOrientationVertical", false).setType(Attribute.BOOLEAN).setDescription(
`the top level 'row' will layout horizontally by default, set this option true to make it layout vertically`
);
attributeDefinitions.add("enableRotateBorderIcons", true).setType(Attribute.BOOLEAN).setDescription(
`boolean indicating if tab icons should rotate with the text in the left and right borders`
);
// splitter
attributeDefinitions.add("splitterSize", 8).setType(Attribute.NUMBER).setDescription(
`width in pixels of all splitters between tabsets/borders`
);
attributeDefinitions.add("splitterExtra", 0).setType(Attribute.NUMBER).setDescription(
`additional width in pixels of the splitter hit test area`
);
attributeDefinitions.add("splitterEnableHandle", false).setType(Attribute.BOOLEAN).setDescription(
`enable a small centralized handle on all splitters`
);
// tab
attributeDefinitions.add("tabEnableClose", true).setType(Attribute.BOOLEAN);
attributeDefinitions.add("tabCloseType", 1).setType("ICloseType");
attributeDefinitions.add("tabEnablePopout", false).setType(Attribute.BOOLEAN).setAlias("tabEnableFloat");
attributeDefinitions.add("tabEnablePopoutIcon", true).setType(Attribute.BOOLEAN);
attributeDefinitions.add("tabEnablePopoutOverlay", false).setType(Attribute.BOOLEAN);
attributeDefinitions.add("tabEnableDrag", true).setType(Attribute.BOOLEAN);
attributeDefinitions.add("tabEnableRename", true).setType(Attribute.BOOLEAN);
attributeDefinitions.add("tabContentClassName", undefined).setType(Attribute.STRING);
attributeDefinitions.add("tabClassName", undefined).setType(Attribute.STRING);
attributeDefinitions.add("tabIcon", undefined).setType(Attribute.STRING);
attributeDefinitions.add("tabEnableRenderOnDemand", true).setType(Attribute.BOOLEAN);
attributeDefinitions.add("tabDragSpeed", 0.3).setType(Attribute.NUMBER);
attributeDefinitions.add("tabBorderWidth", -1).setType(Attribute.NUMBER);
attributeDefinitions.add("tabBorderHeight", -1).setType(Attribute.NUMBER);
// tabset
attributeDefinitions.add("tabSetEnableDeleteWhenEmpty", true).setType(Attribute.BOOLEAN);
attributeDefinitions.add("tabSetEnableHideWhenEmpty", false).setType(Attribute.BOOLEAN);
attributeDefinitions.add("tabSetEnableDrop", true).setType(Attribute.BOOLEAN);
attributeDefinitions.add("tabSetEnableDrag", true).setType(Attribute.BOOLEAN);
attributeDefinitions.add("tabSetEnableDivide", true).setType(Attribute.BOOLEAN);
attributeDefinitions.add("tabSetEnableMaximize", true).setType(Attribute.BOOLEAN);
attributeDefinitions.add("tabSetEnableClose", false).setType(Attribute.BOOLEAN);
attributeDefinitions.add("tabSetEnableSingleTabStretch", false).setType(Attribute.BOOLEAN);
attributeDefinitions.add("tabSetAutoSelectTab", true).setType(Attribute.BOOLEAN);
attributeDefinitions.add("tabSetEnableActiveIcon", false).setType(Attribute.BOOLEAN);
attributeDefinitions.add("tabSetClassNameTabStrip", undefined).setType(Attribute.STRING);
attributeDefinitions.add("tabSetEnableTabStrip", true).setType(Attribute.BOOLEAN);
attributeDefinitions.add("tabSetEnableTabWrap", false).setType(Attribute.BOOLEAN);
attributeDefinitions.add("tabSetTabLocation", "top").setType("ITabLocation");
attributeDefinitions.add("tabMinWidth", DefaultMin).setType(Attribute.NUMBER);
attributeDefinitions.add("tabMinHeight", DefaultMin).setType(Attribute.NUMBER);
attributeDefinitions.add("tabSetMinWidth", DefaultMin).setType(Attribute.NUMBER);
attributeDefinitions.add("tabSetMinHeight", DefaultMin).setType(Attribute.NUMBER);
attributeDefinitions.add("tabMaxWidth", DefaultMax).setType(Attribute.NUMBER);
attributeDefinitions.add("tabMaxHeight", DefaultMax).setType(Attribute.NUMBER);
attributeDefinitions.add("tabSetMaxWidth", DefaultMax).setType(Attribute.NUMBER);
attributeDefinitions.add("tabSetMaxHeight", DefaultMax).setType(Attribute.NUMBER);
attributeDefinitions.add("tabSetEnableTabScrollbar", false).setType(Attribute.BOOLEAN);
// border
attributeDefinitions.add("borderSize", 200).setType(Attribute.NUMBER);
attributeDefinitions.add("borderMinSize", DefaultMin).setType(Attribute.NUMBER);
attributeDefinitions.add("borderMaxSize", DefaultMax).setType(Attribute.NUMBER);
attributeDefinitions.add("borderEnableDrop", true).setType(Attribute.BOOLEAN);
attributeDefinitions.add("borderAutoSelectTabWhenOpen", true).setType(Attribute.BOOLEAN);
attributeDefinitions.add("borderAutoSelectTabWhenClosed", false).setType(Attribute.BOOLEAN);
attributeDefinitions.add("borderClassName", undefined).setType(Attribute.STRING);
attributeDefinitions.add("borderEnableAutoHide", false).setType(Attribute.BOOLEAN);
attributeDefinitions.add("borderEnableTabScrollbar", false).setType(Attribute.BOOLEAN);
return attributeDefinitions;
}
}