@@ -57,6 +57,9 @@ export class DockPanel extends Widget {
57
57
if ( options . addButtonEnabled !== undefined ) {
58
58
this . _addButtonEnabled = options . addButtonEnabled ;
59
59
}
60
+ if ( options . tabScrollingEnabled !== undefined ) {
61
+ this . _tabScrollingEnabled = options . tabScrollingEnabled ;
62
+ }
60
63
61
64
// Toggle the CSS mode attribute.
62
65
this . dataset [ 'mode' ] = this . _mode ;
@@ -258,6 +261,23 @@ export class DockPanel extends Widget {
258
261
} ) ;
259
262
}
260
263
264
+ /**
265
+ * Whether scrolling of tabs in tab bars is enabled.
266
+ */
267
+ get tabScrollingEnabled ( ) : boolean {
268
+ return this . _tabScrollingEnabled ;
269
+ }
270
+
271
+ /**
272
+ * Set whether the add buttons for each tab bar are enabled.
273
+ */
274
+ set tabScrollingEnabled ( value : boolean ) {
275
+ this . _tabScrollingEnabled = value ;
276
+ each ( this . tabBars ( ) , tabbar => {
277
+ tabbar . scrollingEnabled = value ;
278
+ } ) ;
279
+ }
280
+
261
281
/**
262
282
* Whether the dock panel is empty.
263
283
*/
@@ -938,6 +958,7 @@ export class DockPanel extends Widget {
938
958
tabBar . tabsMovable = this . _tabsMovable ;
939
959
tabBar . allowDeselect = false ;
940
960
tabBar . addButtonEnabled = this . _addButtonEnabled ;
961
+ tabBar . scrollingEnabled = this . _tabScrollingEnabled ;
941
962
tabBar . removeBehavior = 'select-previous-tab' ;
942
963
tabBar . insertBehavior = 'select-tab-if-needed' ;
943
964
@@ -1083,6 +1104,7 @@ export class DockPanel extends Widget {
1083
1104
private _tabsMovable : boolean = true ;
1084
1105
private _tabsConstrained : boolean = false ;
1085
1106
private _addButtonEnabled : boolean = false ;
1107
+ private _tabScrollingEnabled : boolean = false ;
1086
1108
private _pressData : Private . IPressData | null = null ;
1087
1109
private _layoutModified = new Signal < this, void > ( this ) ;
1088
1110
@@ -1165,6 +1187,13 @@ export namespace DockPanel {
1165
1187
* The default is `'false'`.
1166
1188
*/
1167
1189
addButtonEnabled ?: boolean ;
1190
+
1191
+ /**
1192
+ * Enable scrolling in each of the dock panel's tab bars.
1193
+ *
1194
+ * The default is `'false'`.
1195
+ */
1196
+ tabScrollingEnabled ?: boolean ;
1168
1197
}
1169
1198
1170
1199
/**
0 commit comments