@girs/mx-2.0 1.99.4-3.2.4 → 1.99.4-3.2.6
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 +14 -1
- package/mx-2.0-ambient.d.ts +4 -1
- package/mx-2.0-import.d.ts +0 -1
- package/mx-2.0.d.cts +309 -0
- package/mx-2.0.d.ts +309 -0
- package/package.json +19 -19
package/mx-2.0.d.cts
CHANGED
|
@@ -377,6 +377,9 @@ export module Draggable {
|
|
|
377
377
|
drag_actor?: Clutter.Actor | null
|
|
378
378
|
drag_enabled?: boolean | null
|
|
379
379
|
drag_threshold?: number | null
|
|
380
|
+
dragActor?: Clutter.Actor | null
|
|
381
|
+
dragEnabled?: boolean | null
|
|
382
|
+
dragThreshold?: number | null
|
|
380
383
|
}
|
|
381
384
|
|
|
382
385
|
}
|
|
@@ -387,8 +390,11 @@ export interface Draggable extends Clutter.Actor {
|
|
|
387
390
|
|
|
388
391
|
axis: DragAxis
|
|
389
392
|
drag_actor: Clutter.Actor
|
|
393
|
+
dragActor: Clutter.Actor
|
|
390
394
|
drag_enabled: boolean
|
|
395
|
+
dragEnabled: boolean
|
|
391
396
|
drag_threshold: number
|
|
397
|
+
dragThreshold: number
|
|
392
398
|
|
|
393
399
|
// Owm methods of Mx-2.0.Mx.Draggable
|
|
394
400
|
|
|
@@ -742,6 +748,7 @@ export module Droppable {
|
|
|
742
748
|
// Own constructor properties of Mx-2.0.Mx.Droppable
|
|
743
749
|
|
|
744
750
|
drop_enabled?: boolean | null
|
|
751
|
+
dropEnabled?: boolean | null
|
|
745
752
|
}
|
|
746
753
|
|
|
747
754
|
}
|
|
@@ -751,6 +758,7 @@ export interface Droppable extends Clutter.Actor {
|
|
|
751
758
|
// Own properties of Mx-2.0.Mx.Droppable
|
|
752
759
|
|
|
753
760
|
drop_enabled: boolean
|
|
761
|
+
dropEnabled: boolean
|
|
754
762
|
|
|
755
763
|
// Owm methods of Mx-2.0.Mx.Droppable
|
|
756
764
|
|
|
@@ -1187,6 +1195,8 @@ export module Scrollable {
|
|
|
1187
1195
|
|
|
1188
1196
|
horizontal_adjustment?: Adjustment | null
|
|
1189
1197
|
vertical_adjustment?: Adjustment | null
|
|
1198
|
+
horizontalAdjustment?: Adjustment | null
|
|
1199
|
+
verticalAdjustment?: Adjustment | null
|
|
1190
1200
|
}
|
|
1191
1201
|
|
|
1192
1202
|
}
|
|
@@ -1196,7 +1206,9 @@ export interface Scrollable {
|
|
|
1196
1206
|
// Own properties of Mx-2.0.Mx.Scrollable
|
|
1197
1207
|
|
|
1198
1208
|
horizontal_adjustment: Adjustment
|
|
1209
|
+
horizontalAdjustment: Adjustment
|
|
1199
1210
|
vertical_adjustment: Adjustment
|
|
1211
|
+
verticalAdjustment: Adjustment
|
|
1200
1212
|
|
|
1201
1213
|
// Owm methods of Mx-2.0.Mx.Scrollable
|
|
1202
1214
|
|
|
@@ -1269,6 +1281,8 @@ export module Stylable {
|
|
|
1269
1281
|
style?: Style | null
|
|
1270
1282
|
style_class?: string | null
|
|
1271
1283
|
style_pseudo_class?: string | null
|
|
1284
|
+
styleClass?: string | null
|
|
1285
|
+
stylePseudoClass?: string | null
|
|
1272
1286
|
}
|
|
1273
1287
|
|
|
1274
1288
|
}
|
|
@@ -1279,7 +1293,9 @@ export interface Stylable {
|
|
|
1279
1293
|
|
|
1280
1294
|
style: Style
|
|
1281
1295
|
style_class: string | null
|
|
1296
|
+
styleClass: string | null
|
|
1282
1297
|
style_pseudo_class: string | null
|
|
1298
|
+
stylePseudoClass: string | null
|
|
1283
1299
|
|
|
1284
1300
|
// Owm methods of Mx-2.0.Mx.Stylable
|
|
1285
1301
|
|
|
@@ -1541,6 +1557,7 @@ export module Action {
|
|
|
1541
1557
|
active?: boolean | null
|
|
1542
1558
|
display_name?: string | null
|
|
1543
1559
|
icon?: string | null
|
|
1560
|
+
displayName?: string | null
|
|
1544
1561
|
}
|
|
1545
1562
|
|
|
1546
1563
|
}
|
|
@@ -1551,6 +1568,7 @@ export interface Action extends Gio.Action {
|
|
|
1551
1568
|
|
|
1552
1569
|
active: boolean
|
|
1553
1570
|
display_name: string | null
|
|
1571
|
+
displayName: string | null
|
|
1554
1572
|
icon: string | null
|
|
1555
1573
|
|
|
1556
1574
|
// Owm methods of Mx-2.0.Mx.Action
|
|
@@ -1764,6 +1782,7 @@ export module ActorManager {
|
|
|
1764
1782
|
|
|
1765
1783
|
stage?: Clutter.Stage | null
|
|
1766
1784
|
time_slice?: number | null
|
|
1785
|
+
timeSlice?: number | null
|
|
1767
1786
|
}
|
|
1768
1787
|
|
|
1769
1788
|
}
|
|
@@ -1773,8 +1792,10 @@ export interface ActorManager {
|
|
|
1773
1792
|
// Own properties of Mx-2.0.Mx.ActorManager
|
|
1774
1793
|
|
|
1775
1794
|
readonly n_operations: number
|
|
1795
|
+
readonly nOperations: number
|
|
1776
1796
|
readonly stage: Clutter.Stage
|
|
1777
1797
|
time_slice: number
|
|
1798
|
+
timeSlice: number
|
|
1778
1799
|
|
|
1779
1800
|
// Own fields of Mx-2.0.Mx.ActorManager
|
|
1780
1801
|
|
|
@@ -1999,6 +2020,10 @@ export module Adjustment {
|
|
|
1999
2020
|
step_increment?: number | null
|
|
2000
2021
|
upper?: number | null
|
|
2001
2022
|
value?: number | null
|
|
2023
|
+
clampValue?: boolean | null
|
|
2024
|
+
pageIncrement?: number | null
|
|
2025
|
+
pageSize?: number | null
|
|
2026
|
+
stepIncrement?: number | null
|
|
2002
2027
|
}
|
|
2003
2028
|
|
|
2004
2029
|
}
|
|
@@ -2008,11 +2033,15 @@ export interface Adjustment {
|
|
|
2008
2033
|
// Own properties of Mx-2.0.Mx.Adjustment
|
|
2009
2034
|
|
|
2010
2035
|
clamp_value: boolean
|
|
2036
|
+
clampValue: boolean
|
|
2011
2037
|
elastic: boolean
|
|
2012
2038
|
lower: number
|
|
2013
2039
|
page_increment: number
|
|
2040
|
+
pageIncrement: number
|
|
2014
2041
|
page_size: number
|
|
2042
|
+
pageSize: number
|
|
2015
2043
|
step_increment: number
|
|
2044
|
+
stepIncrement: number
|
|
2016
2045
|
upper: number
|
|
2017
2046
|
value: number
|
|
2018
2047
|
|
|
@@ -2381,6 +2410,22 @@ export module Bin {
|
|
|
2381
2410
|
* Whether the child should fill the vertical allocation
|
|
2382
2411
|
*/
|
|
2383
2412
|
y_fill?: boolean | null
|
|
2413
|
+
/**
|
|
2414
|
+
* The horizontal alignment of the #MxBin child.
|
|
2415
|
+
*/
|
|
2416
|
+
xAlign: any
|
|
2417
|
+
/**
|
|
2418
|
+
* Whether the child should fill the horizontal allocation
|
|
2419
|
+
*/
|
|
2420
|
+
xFill?: boolean | null
|
|
2421
|
+
/**
|
|
2422
|
+
* The vertical alignment of the #MxBin child.
|
|
2423
|
+
*/
|
|
2424
|
+
yAlign: any
|
|
2425
|
+
/**
|
|
2426
|
+
* Whether the child should fill the vertical allocation
|
|
2427
|
+
*/
|
|
2428
|
+
yFill?: boolean | null
|
|
2384
2429
|
}
|
|
2385
2430
|
|
|
2386
2431
|
}
|
|
@@ -2397,18 +2442,34 @@ export interface Bin extends Atk.ImplementorIface, Clutter.Animatable, Clutter.C
|
|
|
2397
2442
|
* The horizontal alignment of the #MxBin child.
|
|
2398
2443
|
*/
|
|
2399
2444
|
x_align: any
|
|
2445
|
+
/**
|
|
2446
|
+
* The horizontal alignment of the #MxBin child.
|
|
2447
|
+
*/
|
|
2448
|
+
xAlign: any
|
|
2400
2449
|
/**
|
|
2401
2450
|
* Whether the child should fill the horizontal allocation
|
|
2402
2451
|
*/
|
|
2403
2452
|
x_fill: boolean
|
|
2453
|
+
/**
|
|
2454
|
+
* Whether the child should fill the horizontal allocation
|
|
2455
|
+
*/
|
|
2456
|
+
xFill: boolean
|
|
2404
2457
|
/**
|
|
2405
2458
|
* The vertical alignment of the #MxBin child.
|
|
2406
2459
|
*/
|
|
2407
2460
|
y_align: any
|
|
2461
|
+
/**
|
|
2462
|
+
* The vertical alignment of the #MxBin child.
|
|
2463
|
+
*/
|
|
2464
|
+
yAlign: any
|
|
2408
2465
|
/**
|
|
2409
2466
|
* Whether the child should fill the vertical allocation
|
|
2410
2467
|
*/
|
|
2411
2468
|
y_fill: boolean
|
|
2469
|
+
/**
|
|
2470
|
+
* Whether the child should fill the vertical allocation
|
|
2471
|
+
*/
|
|
2472
|
+
yFill: boolean
|
|
2412
2473
|
|
|
2413
2474
|
// Owm methods of Mx-2.0.Mx.Bin
|
|
2414
2475
|
|
|
@@ -2795,6 +2856,8 @@ export module BoxLayout {
|
|
|
2795
2856
|
orientation?: Orientation | null
|
|
2796
2857
|
scroll_to_focused?: boolean | null
|
|
2797
2858
|
spacing?: number | null
|
|
2859
|
+
enableAnimations?: boolean | null
|
|
2860
|
+
scrollToFocused?: boolean | null
|
|
2798
2861
|
}
|
|
2799
2862
|
|
|
2800
2863
|
}
|
|
@@ -2804,8 +2867,10 @@ export interface BoxLayout extends Atk.ImplementorIface, Clutter.Animatable, Clu
|
|
|
2804
2867
|
// Own properties of Mx-2.0.Mx.BoxLayout
|
|
2805
2868
|
|
|
2806
2869
|
enable_animations: boolean
|
|
2870
|
+
enableAnimations: boolean
|
|
2807
2871
|
orientation: Orientation
|
|
2808
2872
|
scroll_to_focused: boolean
|
|
2873
|
+
scrollToFocused: boolean
|
|
2809
2874
|
spacing: number
|
|
2810
2875
|
|
|
2811
2876
|
// Owm methods of Mx-2.0.Mx.BoxLayout
|
|
@@ -3275,6 +3340,10 @@ export module BoxLayoutChild {
|
|
|
3275
3340
|
x_fill?: boolean | null
|
|
3276
3341
|
y_align?: Align | null
|
|
3277
3342
|
y_fill?: boolean | null
|
|
3343
|
+
xAlign?: Align | null
|
|
3344
|
+
xFill?: boolean | null
|
|
3345
|
+
yAlign?: Align | null
|
|
3346
|
+
yFill?: boolean | null
|
|
3278
3347
|
}
|
|
3279
3348
|
|
|
3280
3349
|
}
|
|
@@ -3285,9 +3354,13 @@ export interface BoxLayoutChild {
|
|
|
3285
3354
|
|
|
3286
3355
|
expand: boolean
|
|
3287
3356
|
x_align: Align
|
|
3357
|
+
xAlign: Align
|
|
3288
3358
|
x_fill: boolean
|
|
3359
|
+
xFill: boolean
|
|
3289
3360
|
y_align: Align
|
|
3361
|
+
yAlign: Align
|
|
3290
3362
|
y_fill: boolean
|
|
3363
|
+
yFill: boolean
|
|
3291
3364
|
|
|
3292
3365
|
// Class property signals of Mx-2.0.Mx.BoxLayoutChild
|
|
3293
3366
|
|
|
@@ -3357,6 +3430,12 @@ export module Button {
|
|
|
3357
3430
|
label?: string | null
|
|
3358
3431
|
label_visible?: boolean | null
|
|
3359
3432
|
toggled?: boolean | null
|
|
3433
|
+
iconName?: string | null
|
|
3434
|
+
iconPosition?: Position | null
|
|
3435
|
+
iconSize?: number | null
|
|
3436
|
+
iconVisible?: boolean | null
|
|
3437
|
+
isToggle?: boolean | null
|
|
3438
|
+
labelVisible?: boolean | null
|
|
3360
3439
|
}
|
|
3361
3440
|
|
|
3362
3441
|
}
|
|
@@ -3367,12 +3446,18 @@ export interface Button extends Atk.ImplementorIface, Clutter.Animatable, Clutte
|
|
|
3367
3446
|
|
|
3368
3447
|
action: Action
|
|
3369
3448
|
icon_name: string | null
|
|
3449
|
+
iconName: string | null
|
|
3370
3450
|
icon_position: Position
|
|
3451
|
+
iconPosition: Position
|
|
3371
3452
|
icon_size: number
|
|
3453
|
+
iconSize: number
|
|
3372
3454
|
icon_visible: boolean
|
|
3455
|
+
iconVisible: boolean
|
|
3373
3456
|
is_toggle: boolean
|
|
3457
|
+
isToggle: boolean
|
|
3374
3458
|
label: string | null
|
|
3375
3459
|
label_visible: boolean
|
|
3460
|
+
labelVisible: boolean
|
|
3376
3461
|
toggled: boolean
|
|
3377
3462
|
|
|
3378
3463
|
// Owm methods of Mx-2.0.Mx.Button
|
|
@@ -3865,6 +3950,8 @@ export module ButtonGroup {
|
|
|
3865
3950
|
|
|
3866
3951
|
active_button?: Button | null
|
|
3867
3952
|
allow_no_active?: boolean | null
|
|
3953
|
+
activeButton?: Button | null
|
|
3954
|
+
allowNoActive?: boolean | null
|
|
3868
3955
|
}
|
|
3869
3956
|
|
|
3870
3957
|
}
|
|
@@ -3874,7 +3961,9 @@ export interface ButtonGroup {
|
|
|
3874
3961
|
// Own properties of Mx-2.0.Mx.ButtonGroup
|
|
3875
3962
|
|
|
3876
3963
|
active_button: Button
|
|
3964
|
+
activeButton: Button
|
|
3877
3965
|
allow_no_active: boolean
|
|
3966
|
+
allowNoActive: boolean
|
|
3878
3967
|
|
|
3879
3968
|
// Own fields of Mx-2.0.Mx.ButtonGroup
|
|
3880
3969
|
|
|
@@ -4036,6 +4125,8 @@ export module ComboBox {
|
|
|
4036
4125
|
active_icon_name?: string | null
|
|
4037
4126
|
active_text?: string | null
|
|
4038
4127
|
index?: number | null
|
|
4128
|
+
activeIconName?: string | null
|
|
4129
|
+
activeText?: string | null
|
|
4039
4130
|
}
|
|
4040
4131
|
|
|
4041
4132
|
}
|
|
@@ -4045,7 +4136,9 @@ export interface ComboBox extends Atk.ImplementorIface, Clutter.Animatable, Clut
|
|
|
4045
4136
|
// Own properties of Mx-2.0.Mx.ComboBox
|
|
4046
4137
|
|
|
4047
4138
|
active_icon_name: string | null
|
|
4139
|
+
activeIconName: string | null
|
|
4048
4140
|
active_text: string | null
|
|
4141
|
+
activeText: string | null
|
|
4049
4142
|
index: number
|
|
4050
4143
|
|
|
4051
4144
|
// Owm methods of Mx-2.0.Mx.ComboBox
|
|
@@ -4872,6 +4965,10 @@ export module Entry {
|
|
|
4872
4965
|
primary_icon_tooltip_text?: string | null
|
|
4873
4966
|
secondary_icon_tooltip_text?: string | null
|
|
4874
4967
|
text?: string | null
|
|
4968
|
+
iconHighlightSuffix?: string | null
|
|
4969
|
+
passwordChar?: number | null
|
|
4970
|
+
primaryIconTooltipText?: string | null
|
|
4971
|
+
secondaryIconTooltipText?: string | null
|
|
4875
4972
|
}
|
|
4876
4973
|
|
|
4877
4974
|
}
|
|
@@ -4881,11 +4978,16 @@ export interface Entry extends Atk.ImplementorIface, Clutter.Animatable, Clutter
|
|
|
4881
4978
|
// Own properties of Mx-2.0.Mx.Entry
|
|
4882
4979
|
|
|
4883
4980
|
readonly clutter_text: Clutter.Text
|
|
4981
|
+
readonly clutterText: Clutter.Text
|
|
4884
4982
|
icon_highlight_suffix: string | null
|
|
4983
|
+
iconHighlightSuffix: string | null
|
|
4885
4984
|
password_char: number
|
|
4985
|
+
passwordChar: number
|
|
4886
4986
|
placeholder: string | null
|
|
4887
4987
|
primary_icon_tooltip_text: string | null
|
|
4988
|
+
primaryIconTooltipText: string | null
|
|
4888
4989
|
secondary_icon_tooltip_text: string | null
|
|
4990
|
+
secondaryIconTooltipText: string | null
|
|
4889
4991
|
text: string | null
|
|
4890
4992
|
|
|
4891
4993
|
// Owm methods of Mx-2.0.Mx.Entry
|
|
@@ -5733,6 +5835,15 @@ export module FadeEffect {
|
|
|
5733
5835
|
bounds_y?: number | null
|
|
5734
5836
|
color?: Clutter.Color | null
|
|
5735
5837
|
freeze_update?: boolean | null
|
|
5838
|
+
borderBottom?: number | null
|
|
5839
|
+
borderLeft?: number | null
|
|
5840
|
+
borderRight?: number | null
|
|
5841
|
+
borderTop?: number | null
|
|
5842
|
+
boundsHeight?: number | null
|
|
5843
|
+
boundsWidth?: number | null
|
|
5844
|
+
boundsX?: number | null
|
|
5845
|
+
boundsY?: number | null
|
|
5846
|
+
freezeUpdate?: boolean | null
|
|
5736
5847
|
}
|
|
5737
5848
|
|
|
5738
5849
|
}
|
|
@@ -5742,15 +5853,24 @@ export interface FadeEffect {
|
|
|
5742
5853
|
// Own properties of Mx-2.0.Mx.FadeEffect
|
|
5743
5854
|
|
|
5744
5855
|
border_bottom: number
|
|
5856
|
+
borderBottom: number
|
|
5745
5857
|
border_left: number
|
|
5858
|
+
borderLeft: number
|
|
5746
5859
|
border_right: number
|
|
5860
|
+
borderRight: number
|
|
5747
5861
|
border_top: number
|
|
5862
|
+
borderTop: number
|
|
5748
5863
|
bounds_height: number
|
|
5864
|
+
boundsHeight: number
|
|
5749
5865
|
bounds_width: number
|
|
5866
|
+
boundsWidth: number
|
|
5750
5867
|
bounds_x: number
|
|
5868
|
+
boundsX: number
|
|
5751
5869
|
bounds_y: number
|
|
5870
|
+
boundsY: number
|
|
5752
5871
|
color: Clutter.Color
|
|
5753
5872
|
freeze_update: boolean
|
|
5873
|
+
freezeUpdate: boolean
|
|
5754
5874
|
|
|
5755
5875
|
// Own fields of Mx-2.0.Mx.FadeEffect
|
|
5756
5876
|
|
|
@@ -6660,6 +6780,14 @@ export module Grid {
|
|
|
6660
6780
|
max_stride?: number | null
|
|
6661
6781
|
orientation?: Orientation | null
|
|
6662
6782
|
row_spacing?: number | null
|
|
6783
|
+
childXAlign?: Align | null
|
|
6784
|
+
childYAlign?: Align | null
|
|
6785
|
+
columnSpacing?: number | null
|
|
6786
|
+
homogenousColumns?: boolean | null
|
|
6787
|
+
homogenousRows?: boolean | null
|
|
6788
|
+
lineAlignment?: Align | null
|
|
6789
|
+
maxStride?: number | null
|
|
6790
|
+
rowSpacing?: number | null
|
|
6663
6791
|
}
|
|
6664
6792
|
|
|
6665
6793
|
}
|
|
@@ -6669,14 +6797,22 @@ export interface Grid extends Atk.ImplementorIface, Clutter.Animatable, Clutter.
|
|
|
6669
6797
|
// Own properties of Mx-2.0.Mx.Grid
|
|
6670
6798
|
|
|
6671
6799
|
child_x_align: Align
|
|
6800
|
+
childXAlign: Align
|
|
6672
6801
|
child_y_align: Align
|
|
6802
|
+
childYAlign: Align
|
|
6673
6803
|
column_spacing: number
|
|
6804
|
+
columnSpacing: number
|
|
6674
6805
|
homogenous_columns: boolean
|
|
6806
|
+
homogenousColumns: boolean
|
|
6675
6807
|
homogenous_rows: boolean
|
|
6808
|
+
homogenousRows: boolean
|
|
6676
6809
|
line_alignment: Align
|
|
6810
|
+
lineAlignment: Align
|
|
6677
6811
|
max_stride: number
|
|
6812
|
+
maxStride: number
|
|
6678
6813
|
orientation: Orientation
|
|
6679
6814
|
row_spacing: number
|
|
6815
|
+
rowSpacing: number
|
|
6680
6816
|
|
|
6681
6817
|
// Owm methods of Mx-2.0.Mx.Grid
|
|
6682
6818
|
|
|
@@ -7058,6 +7194,8 @@ export module Icon {
|
|
|
7058
7194
|
|
|
7059
7195
|
icon_name?: string | null
|
|
7060
7196
|
icon_size?: number | null
|
|
7197
|
+
iconName?: string | null
|
|
7198
|
+
iconSize?: number | null
|
|
7061
7199
|
}
|
|
7062
7200
|
|
|
7063
7201
|
}
|
|
@@ -7067,7 +7205,9 @@ export interface Icon extends Atk.ImplementorIface, Clutter.Animatable, Clutter.
|
|
|
7067
7205
|
// Own properties of Mx-2.0.Mx.Icon
|
|
7068
7206
|
|
|
7069
7207
|
icon_name: string | null
|
|
7208
|
+
iconName: string | null
|
|
7070
7209
|
icon_size: number
|
|
7210
|
+
iconSize: number
|
|
7071
7211
|
|
|
7072
7212
|
// Owm methods of Mx-2.0.Mx.Icon
|
|
7073
7213
|
|
|
@@ -7417,6 +7557,7 @@ export module IconTheme {
|
|
|
7417
7557
|
// Own constructor properties of Mx-2.0.Mx.IconTheme
|
|
7418
7558
|
|
|
7419
7559
|
theme_name?: string | null
|
|
7560
|
+
themeName?: string | null
|
|
7420
7561
|
}
|
|
7421
7562
|
|
|
7422
7563
|
}
|
|
@@ -7426,6 +7567,7 @@ export interface IconTheme {
|
|
|
7426
7567
|
// Own properties of Mx-2.0.Mx.IconTheme
|
|
7427
7568
|
|
|
7428
7569
|
theme_name: string | null
|
|
7570
|
+
themeName: string | null
|
|
7429
7571
|
|
|
7430
7572
|
// Own fields of Mx-2.0.Mx.IconTheme
|
|
7431
7573
|
|
|
@@ -7559,6 +7701,13 @@ export module Image {
|
|
|
7559
7701
|
scale_mode?: ImageScaleMode | null
|
|
7560
7702
|
scale_width_threshold?: number | null
|
|
7561
7703
|
transition_duration?: number | null
|
|
7704
|
+
allowUpscale?: boolean | null
|
|
7705
|
+
imageRotation?: number | null
|
|
7706
|
+
loadAsync?: boolean | null
|
|
7707
|
+
scaleHeightThreshold?: number | null
|
|
7708
|
+
scaleMode?: ImageScaleMode | null
|
|
7709
|
+
scaleWidthThreshold?: number | null
|
|
7710
|
+
transitionDuration?: number | null
|
|
7562
7711
|
}
|
|
7563
7712
|
|
|
7564
7713
|
}
|
|
@@ -7568,13 +7717,20 @@ export interface Image extends Atk.ImplementorIface, Clutter.Animatable, Clutter
|
|
|
7568
7717
|
// Own properties of Mx-2.0.Mx.Image
|
|
7569
7718
|
|
|
7570
7719
|
allow_upscale: boolean
|
|
7720
|
+
allowUpscale: boolean
|
|
7571
7721
|
filename: string | null
|
|
7572
7722
|
image_rotation: number
|
|
7723
|
+
imageRotation: number
|
|
7573
7724
|
load_async: boolean
|
|
7725
|
+
loadAsync: boolean
|
|
7574
7726
|
scale_height_threshold: number
|
|
7727
|
+
scaleHeightThreshold: number
|
|
7575
7728
|
scale_mode: ImageScaleMode
|
|
7729
|
+
scaleMode: ImageScaleMode
|
|
7576
7730
|
scale_width_threshold: number
|
|
7731
|
+
scaleWidthThreshold: number
|
|
7577
7732
|
transition_duration: number
|
|
7733
|
+
transitionDuration: number
|
|
7578
7734
|
|
|
7579
7735
|
// Owm methods of Mx-2.0.Mx.Image
|
|
7580
7736
|
|
|
@@ -8115,6 +8271,7 @@ export module ItemView {
|
|
|
8115
8271
|
factory?: GObject.Object | null
|
|
8116
8272
|
item_type?: GObject.GType | null
|
|
8117
8273
|
model?: Clutter.Model | null
|
|
8274
|
+
itemType?: GObject.GType | null
|
|
8118
8275
|
}
|
|
8119
8276
|
|
|
8120
8277
|
}
|
|
@@ -8125,6 +8282,7 @@ export interface ItemView extends Atk.ImplementorIface, Clutter.Animatable, Clut
|
|
|
8125
8282
|
|
|
8126
8283
|
factory: GObject.Object
|
|
8127
8284
|
item_type: GObject.GType
|
|
8285
|
+
itemType: GObject.GType
|
|
8128
8286
|
model: Clutter.Model
|
|
8129
8287
|
|
|
8130
8288
|
// Owm methods of Mx-2.0.Mx.ItemView
|
|
@@ -8565,6 +8723,15 @@ export module KineticScrollView {
|
|
|
8565
8723
|
snap_on_page?: boolean | null
|
|
8566
8724
|
use_captured?: boolean | null
|
|
8567
8725
|
use_grab?: boolean | null
|
|
8726
|
+
accelerationFactor?: number | null
|
|
8727
|
+
clampDuration?: number | null
|
|
8728
|
+
clampMode?: number | null
|
|
8729
|
+
clampToCenter?: boolean | null
|
|
8730
|
+
mouseButton?: number | null
|
|
8731
|
+
scrollPolicy?: ScrollPolicy | null
|
|
8732
|
+
snapOnPage?: boolean | null
|
|
8733
|
+
useCaptured?: boolean | null
|
|
8734
|
+
useGrab?: boolean | null
|
|
8568
8735
|
}
|
|
8569
8736
|
|
|
8570
8737
|
}
|
|
@@ -8574,17 +8741,26 @@ export interface KineticScrollView extends Atk.ImplementorIface, Clutter.Animata
|
|
|
8574
8741
|
// Own properties of Mx-2.0.Mx.KineticScrollView
|
|
8575
8742
|
|
|
8576
8743
|
acceleration_factor: number
|
|
8744
|
+
accelerationFactor: number
|
|
8577
8745
|
clamp_duration: number
|
|
8746
|
+
clampDuration: number
|
|
8578
8747
|
clamp_mode: number
|
|
8748
|
+
clampMode: number
|
|
8579
8749
|
clamp_to_center: boolean
|
|
8750
|
+
clampToCenter: boolean
|
|
8580
8751
|
deceleration: number
|
|
8581
8752
|
mouse_button: number
|
|
8753
|
+
mouseButton: number
|
|
8582
8754
|
overshoot: number
|
|
8583
8755
|
scroll_policy: ScrollPolicy
|
|
8756
|
+
scrollPolicy: ScrollPolicy
|
|
8584
8757
|
snap_on_page: boolean
|
|
8758
|
+
snapOnPage: boolean
|
|
8585
8759
|
readonly state: KineticScrollViewState
|
|
8586
8760
|
use_captured: boolean
|
|
8761
|
+
useCaptured: boolean
|
|
8587
8762
|
use_grab: boolean
|
|
8763
|
+
useGrab: boolean
|
|
8588
8764
|
|
|
8589
8765
|
// Owm methods of Mx-2.0.Mx.KineticScrollView
|
|
8590
8766
|
|
|
@@ -9119,6 +9295,21 @@ export module Label {
|
|
|
9119
9295
|
use_markup?: boolean | null
|
|
9120
9296
|
x_align: any
|
|
9121
9297
|
y_align: any
|
|
9298
|
+
fadeOut?: boolean | null
|
|
9299
|
+
/**
|
|
9300
|
+
* Whether to wrap the lines of #MxLabel:text if the contents
|
|
9301
|
+
* exceed the available allocation.
|
|
9302
|
+
*/
|
|
9303
|
+
lineWrap?: boolean | null
|
|
9304
|
+
/**
|
|
9305
|
+
* Show a tooltip when there is not enough space to display the text. If set
|
|
9306
|
+
* to %TRUE, this will also cause the #ClutterActor:reactive property to be
|
|
9307
|
+
* enabled.
|
|
9308
|
+
*/
|
|
9309
|
+
showTooltip?: boolean | null
|
|
9310
|
+
useMarkup?: boolean | null
|
|
9311
|
+
xAlign: any
|
|
9312
|
+
yAlign: any
|
|
9122
9313
|
}
|
|
9123
9314
|
|
|
9124
9315
|
}
|
|
@@ -9128,17 +9319,33 @@ export interface Label extends Atk.ImplementorIface, Clutter.Animatable, Clutter
|
|
|
9128
9319
|
// Own properties of Mx-2.0.Mx.Label
|
|
9129
9320
|
|
|
9130
9321
|
readonly clutter_text: Clutter.Text
|
|
9322
|
+
readonly clutterText: Clutter.Text
|
|
9131
9323
|
fade_out: boolean
|
|
9324
|
+
fadeOut: boolean
|
|
9132
9325
|
/**
|
|
9133
9326
|
* Whether to wrap the lines of #MxLabel:text if the contents
|
|
9134
9327
|
* exceed the available allocation.
|
|
9135
9328
|
*/
|
|
9136
9329
|
line_wrap: boolean
|
|
9330
|
+
/**
|
|
9331
|
+
* Whether to wrap the lines of #MxLabel:text if the contents
|
|
9332
|
+
* exceed the available allocation.
|
|
9333
|
+
*/
|
|
9334
|
+
lineWrap: boolean
|
|
9137
9335
|
// Has conflict: show_tooltip: boolean
|
|
9336
|
+
/**
|
|
9337
|
+
* Show a tooltip when there is not enough space to display the text. If set
|
|
9338
|
+
* to %TRUE, this will also cause the #ClutterActor:reactive property to be
|
|
9339
|
+
* enabled.
|
|
9340
|
+
*/
|
|
9341
|
+
showTooltip: boolean
|
|
9138
9342
|
text: string | null
|
|
9139
9343
|
use_markup: boolean
|
|
9344
|
+
useMarkup: boolean
|
|
9140
9345
|
x_align: any
|
|
9346
|
+
xAlign: any
|
|
9141
9347
|
y_align: any
|
|
9348
|
+
yAlign: any
|
|
9142
9349
|
|
|
9143
9350
|
// Owm methods of Mx-2.0.Mx.Label
|
|
9144
9351
|
|
|
@@ -9617,6 +9824,7 @@ export module ListView {
|
|
|
9617
9824
|
factory?: GObject.Object | null
|
|
9618
9825
|
item_type?: GObject.GType | null
|
|
9619
9826
|
model?: Clutter.Model | null
|
|
9827
|
+
itemType?: GObject.GType | null
|
|
9620
9828
|
}
|
|
9621
9829
|
|
|
9622
9830
|
}
|
|
@@ -9627,6 +9835,7 @@ export interface ListView extends Atk.ImplementorIface, Clutter.Animatable, Clut
|
|
|
9627
9835
|
|
|
9628
9836
|
factory: GObject.Object
|
|
9629
9837
|
item_type: GObject.GType
|
|
9838
|
+
itemType: GObject.GType
|
|
9630
9839
|
model: Clutter.Model
|
|
9631
9840
|
|
|
9632
9841
|
// Owm methods of Mx-2.0.Mx.ListView
|
|
@@ -10446,6 +10655,7 @@ export module Notebook {
|
|
|
10446
10655
|
// Own constructor properties of Mx-2.0.Mx.Notebook
|
|
10447
10656
|
|
|
10448
10657
|
current_page?: Clutter.Actor | null
|
|
10658
|
+
currentPage?: Clutter.Actor | null
|
|
10449
10659
|
}
|
|
10450
10660
|
|
|
10451
10661
|
}
|
|
@@ -10455,6 +10665,7 @@ export interface Notebook extends Atk.ImplementorIface, Clutter.Animatable, Clut
|
|
|
10455
10665
|
// Own properties of Mx-2.0.Mx.Notebook
|
|
10456
10666
|
|
|
10457
10667
|
current_page: Clutter.Actor
|
|
10668
|
+
currentPage: Clutter.Actor
|
|
10458
10669
|
|
|
10459
10670
|
// Own fields of Mx-2.0.Mx.Notebook
|
|
10460
10671
|
|
|
@@ -10808,6 +11019,9 @@ export module Pager {
|
|
|
10808
11019
|
edge_previews?: boolean | null
|
|
10809
11020
|
page_actor?: Clutter.Actor | null
|
|
10810
11021
|
page_num?: number | null
|
|
11022
|
+
edgePreviews?: boolean | null
|
|
11023
|
+
pageActor?: Clutter.Actor | null
|
|
11024
|
+
pageNum?: number | null
|
|
10811
11025
|
}
|
|
10812
11026
|
|
|
10813
11027
|
}
|
|
@@ -10817,8 +11031,11 @@ export interface Pager extends Atk.ImplementorIface, Clutter.Animatable, Clutter
|
|
|
10817
11031
|
// Own properties of Mx-2.0.Mx.Pager
|
|
10818
11032
|
|
|
10819
11033
|
edge_previews: boolean
|
|
11034
|
+
edgePreviews: boolean
|
|
10820
11035
|
page_actor: Clutter.Actor
|
|
11036
|
+
pageActor: Clutter.Actor
|
|
10821
11037
|
page_num: number
|
|
11038
|
+
pageNum: number
|
|
10822
11039
|
|
|
10823
11040
|
// Owm methods of Mx-2.0.Mx.Pager
|
|
10824
11041
|
|
|
@@ -11198,6 +11415,7 @@ export module PathBar {
|
|
|
11198
11415
|
|
|
11199
11416
|
clear_on_change?: boolean | null
|
|
11200
11417
|
editable?: boolean | null
|
|
11418
|
+
clearOnChange?: boolean | null
|
|
11201
11419
|
}
|
|
11202
11420
|
|
|
11203
11421
|
}
|
|
@@ -11207,6 +11425,7 @@ export interface PathBar extends Atk.ImplementorIface, Clutter.Animatable, Clutt
|
|
|
11207
11425
|
// Own properties of Mx-2.0.Mx.PathBar
|
|
11208
11426
|
|
|
11209
11427
|
clear_on_change: boolean
|
|
11428
|
+
clearOnChange: boolean
|
|
11210
11429
|
editable: boolean
|
|
11211
11430
|
readonly entry: Entry
|
|
11212
11431
|
readonly level: number
|
|
@@ -12367,6 +12586,9 @@ export module ScrollView {
|
|
|
12367
12586
|
enable_mouse_scrolling?: boolean | null
|
|
12368
12587
|
scroll_policy?: ScrollPolicy | null
|
|
12369
12588
|
scroll_visibility?: ScrollPolicy | null
|
|
12589
|
+
enableMouseScrolling?: boolean | null
|
|
12590
|
+
scrollPolicy?: ScrollPolicy | null
|
|
12591
|
+
scrollVisibility?: ScrollPolicy | null
|
|
12370
12592
|
}
|
|
12371
12593
|
|
|
12372
12594
|
}
|
|
@@ -12376,8 +12598,11 @@ export interface ScrollView extends Atk.ImplementorIface, Clutter.Animatable, Cl
|
|
|
12376
12598
|
// Own properties of Mx-2.0.Mx.ScrollView
|
|
12377
12599
|
|
|
12378
12600
|
enable_mouse_scrolling: boolean
|
|
12601
|
+
enableMouseScrolling: boolean
|
|
12379
12602
|
scroll_policy: ScrollPolicy
|
|
12603
|
+
scrollPolicy: ScrollPolicy
|
|
12380
12604
|
scroll_visibility: ScrollPolicy
|
|
12605
|
+
scrollVisibility: ScrollPolicy
|
|
12381
12606
|
|
|
12382
12607
|
// Owm methods of Mx-2.0.Mx.ScrollView
|
|
12383
12608
|
|
|
@@ -12733,6 +12958,12 @@ export module Settings {
|
|
|
12733
12958
|
long_press_timeout?: number | null
|
|
12734
12959
|
small_screen?: boolean | null
|
|
12735
12960
|
touch_mode?: boolean | null
|
|
12961
|
+
dragThreshold?: number | null
|
|
12962
|
+
fontName?: string | null
|
|
12963
|
+
iconTheme?: string | null
|
|
12964
|
+
longPressTimeout?: number | null
|
|
12965
|
+
smallScreen?: boolean | null
|
|
12966
|
+
touchMode?: boolean | null
|
|
12736
12967
|
}
|
|
12737
12968
|
|
|
12738
12969
|
}
|
|
@@ -12742,11 +12973,17 @@ export interface Settings {
|
|
|
12742
12973
|
// Own properties of Mx-2.0.Mx.Settings
|
|
12743
12974
|
|
|
12744
12975
|
drag_threshold: number
|
|
12976
|
+
dragThreshold: number
|
|
12745
12977
|
font_name: string | null
|
|
12978
|
+
fontName: string | null
|
|
12746
12979
|
icon_theme: string | null
|
|
12980
|
+
iconTheme: string | null
|
|
12747
12981
|
long_press_timeout: number
|
|
12982
|
+
longPressTimeout: number
|
|
12748
12983
|
small_screen: boolean
|
|
12984
|
+
smallScreen: boolean
|
|
12749
12985
|
touch_mode: boolean
|
|
12986
|
+
touchMode: boolean
|
|
12750
12987
|
|
|
12751
12988
|
// Own fields of Mx-2.0.Mx.Settings
|
|
12752
12989
|
|
|
@@ -12824,6 +13061,7 @@ export module Slider {
|
|
|
12824
13061
|
|
|
12825
13062
|
buffer_value?: number | null
|
|
12826
13063
|
value?: number | null
|
|
13064
|
+
bufferValue?: number | null
|
|
12827
13065
|
}
|
|
12828
13066
|
|
|
12829
13067
|
}
|
|
@@ -12833,6 +13071,7 @@ export interface Slider extends Atk.ImplementorIface, Clutter.Animatable, Clutte
|
|
|
12833
13071
|
// Own properties of Mx-2.0.Mx.Slider
|
|
12834
13072
|
|
|
12835
13073
|
buffer_value: number
|
|
13074
|
+
bufferValue: number
|
|
12836
13075
|
value: number
|
|
12837
13076
|
|
|
12838
13077
|
// Owm methods of Mx-2.0.Mx.Slider
|
|
@@ -14007,6 +14246,10 @@ export module StackChild {
|
|
|
14007
14246
|
x_fill?: boolean | null
|
|
14008
14247
|
y_align?: Align | null
|
|
14009
14248
|
y_fill?: boolean | null
|
|
14249
|
+
xAlign?: Align | null
|
|
14250
|
+
xFill?: boolean | null
|
|
14251
|
+
yAlign?: Align | null
|
|
14252
|
+
yFill?: boolean | null
|
|
14010
14253
|
}
|
|
14011
14254
|
|
|
14012
14255
|
}
|
|
@@ -14018,9 +14261,13 @@ export interface StackChild {
|
|
|
14018
14261
|
crop: boolean
|
|
14019
14262
|
fit: boolean
|
|
14020
14263
|
x_align: Align
|
|
14264
|
+
xAlign: Align
|
|
14021
14265
|
x_fill: boolean
|
|
14266
|
+
xFill: boolean
|
|
14022
14267
|
y_align: Align
|
|
14268
|
+
yAlign: Align
|
|
14023
14269
|
y_fill: boolean
|
|
14270
|
+
yFill: boolean
|
|
14024
14271
|
|
|
14025
14272
|
// Class property signals of Mx-2.0.Mx.StackChild
|
|
14026
14273
|
|
|
@@ -14202,6 +14449,8 @@ export module Table {
|
|
|
14202
14449
|
|
|
14203
14450
|
column_spacing?: number | null
|
|
14204
14451
|
row_spacing?: number | null
|
|
14452
|
+
columnSpacing?: number | null
|
|
14453
|
+
rowSpacing?: number | null
|
|
14205
14454
|
}
|
|
14206
14455
|
|
|
14207
14456
|
}
|
|
@@ -14211,9 +14460,13 @@ export interface Table extends Atk.ImplementorIface, Clutter.Animatable, Clutter
|
|
|
14211
14460
|
// Own properties of Mx-2.0.Mx.Table
|
|
14212
14461
|
|
|
14213
14462
|
readonly column_count: number
|
|
14463
|
+
readonly columnCount: number
|
|
14214
14464
|
column_spacing: number
|
|
14465
|
+
columnSpacing: number
|
|
14215
14466
|
readonly row_count: number
|
|
14467
|
+
readonly rowCount: number
|
|
14216
14468
|
row_spacing: number
|
|
14469
|
+
rowSpacing: number
|
|
14217
14470
|
|
|
14218
14471
|
// Owm methods of Mx-2.0.Mx.Table
|
|
14219
14472
|
|
|
@@ -14748,6 +15001,14 @@ export module TableChild {
|
|
|
14748
15001
|
y_align?: Align | null
|
|
14749
15002
|
y_expand?: boolean | null
|
|
14750
15003
|
y_fill?: boolean | null
|
|
15004
|
+
columnSpan?: number | null
|
|
15005
|
+
rowSpan?: number | null
|
|
15006
|
+
xAlign?: Align | null
|
|
15007
|
+
xExpand?: boolean | null
|
|
15008
|
+
xFill?: boolean | null
|
|
15009
|
+
yAlign?: Align | null
|
|
15010
|
+
yExpand?: boolean | null
|
|
15011
|
+
yFill?: boolean | null
|
|
14751
15012
|
}
|
|
14752
15013
|
|
|
14753
15014
|
}
|
|
@@ -14758,14 +15019,22 @@ export interface TableChild {
|
|
|
14758
15019
|
|
|
14759
15020
|
column: number
|
|
14760
15021
|
column_span: number
|
|
15022
|
+
columnSpan: number
|
|
14761
15023
|
row: number
|
|
14762
15024
|
row_span: number
|
|
15025
|
+
rowSpan: number
|
|
14763
15026
|
x_align: Align
|
|
15027
|
+
xAlign: Align
|
|
14764
15028
|
x_expand: boolean
|
|
15029
|
+
xExpand: boolean
|
|
14765
15030
|
x_fill: boolean
|
|
15031
|
+
xFill: boolean
|
|
14766
15032
|
y_align: Align
|
|
15033
|
+
yAlign: Align
|
|
14767
15034
|
y_expand: boolean
|
|
15035
|
+
yExpand: boolean
|
|
14768
15036
|
y_fill: boolean
|
|
15037
|
+
yFill: boolean
|
|
14769
15038
|
|
|
14770
15039
|
// Class property signals of Mx-2.0.Mx.TableChild
|
|
14771
15040
|
|
|
@@ -14976,6 +15245,7 @@ export module TextureFrame {
|
|
|
14976
15245
|
parent_texture?: Clutter.Texture | null
|
|
14977
15246
|
right?: number | null
|
|
14978
15247
|
top?: number | null
|
|
15248
|
+
parentTexture?: Clutter.Texture | null
|
|
14979
15249
|
}
|
|
14980
15250
|
|
|
14981
15251
|
}
|
|
@@ -14987,6 +15257,7 @@ export interface TextureFrame extends Atk.ImplementorIface, Clutter.Animatable,
|
|
|
14987
15257
|
bottom: number
|
|
14988
15258
|
left: number
|
|
14989
15259
|
parent_texture: Clutter.Texture
|
|
15260
|
+
parentTexture: Clutter.Texture
|
|
14990
15261
|
right: number
|
|
14991
15262
|
top: number
|
|
14992
15263
|
|
|
@@ -15720,6 +15991,7 @@ export module Toolbar {
|
|
|
15720
15991
|
// Own constructor properties of Mx-2.0.Mx.Toolbar
|
|
15721
15992
|
|
|
15722
15993
|
has_close_button?: boolean | null
|
|
15994
|
+
hasCloseButton?: boolean | null
|
|
15723
15995
|
}
|
|
15724
15996
|
|
|
15725
15997
|
}
|
|
@@ -15729,6 +16001,7 @@ export interface Toolbar extends Atk.ImplementorIface, Clutter.Animatable, Clutt
|
|
|
15729
16001
|
// Own properties of Mx-2.0.Mx.Toolbar
|
|
15730
16002
|
|
|
15731
16003
|
has_close_button: boolean
|
|
16004
|
+
hasCloseButton: boolean
|
|
15732
16005
|
|
|
15733
16006
|
// Own fields of Mx-2.0.Mx.Toolbar
|
|
15734
16007
|
|
|
@@ -16099,6 +16372,7 @@ export module Tooltip {
|
|
|
16099
16372
|
|
|
16100
16373
|
text?: string | null
|
|
16101
16374
|
tip_area?: Clutter.Geometry | null
|
|
16375
|
+
tipArea?: Clutter.Geometry | null
|
|
16102
16376
|
}
|
|
16103
16377
|
|
|
16104
16378
|
}
|
|
@@ -16109,6 +16383,7 @@ export interface Tooltip extends Atk.ImplementorIface, Clutter.Animatable, Clutt
|
|
|
16109
16383
|
|
|
16110
16384
|
text: string | null
|
|
16111
16385
|
tip_area: Clutter.Geometry
|
|
16386
|
+
tipArea: Clutter.Geometry
|
|
16112
16387
|
|
|
16113
16388
|
// Owm methods of Mx-2.0.Mx.Tooltip
|
|
16114
16389
|
|
|
@@ -16488,6 +16763,10 @@ export module Viewport {
|
|
|
16488
16763
|
x_origin?: number | null
|
|
16489
16764
|
y_origin?: number | null
|
|
16490
16765
|
z_origin?: number | null
|
|
16766
|
+
syncAdjustments?: boolean | null
|
|
16767
|
+
xOrigin?: number | null
|
|
16768
|
+
yOrigin?: number | null
|
|
16769
|
+
zOrigin?: number | null
|
|
16491
16770
|
}
|
|
16492
16771
|
|
|
16493
16772
|
}
|
|
@@ -16497,14 +16776,20 @@ export interface Viewport extends Atk.ImplementorIface, Clutter.Animatable, Clut
|
|
|
16497
16776
|
// Own properties of Mx-2.0.Mx.Viewport
|
|
16498
16777
|
|
|
16499
16778
|
sync_adjustments: boolean
|
|
16779
|
+
syncAdjustments: boolean
|
|
16500
16780
|
x_origin: number
|
|
16781
|
+
xOrigin: number
|
|
16501
16782
|
y_origin: number
|
|
16783
|
+
yOrigin: number
|
|
16502
16784
|
z_origin: number
|
|
16785
|
+
zOrigin: number
|
|
16503
16786
|
|
|
16504
16787
|
// Conflicting properties
|
|
16505
16788
|
|
|
16506
16789
|
x_align: any
|
|
16790
|
+
xAlign: any
|
|
16507
16791
|
y_align: any
|
|
16792
|
+
yAlign: any
|
|
16508
16793
|
|
|
16509
16794
|
// Owm methods of Mx-2.0.Mx.Viewport
|
|
16510
16795
|
|
|
@@ -16884,6 +17169,11 @@ export module Widget {
|
|
|
16884
17169
|
* text displayed on the tooltip
|
|
16885
17170
|
*/
|
|
16886
17171
|
tooltip_text?: string | null
|
|
17172
|
+
tooltipDelay?: number | null
|
|
17173
|
+
/**
|
|
17174
|
+
* text displayed on the tooltip
|
|
17175
|
+
*/
|
|
17176
|
+
tooltipText?: string | null
|
|
16887
17177
|
}
|
|
16888
17178
|
|
|
16889
17179
|
}
|
|
@@ -16898,10 +17188,15 @@ export interface Widget extends Atk.ImplementorIface, Clutter.Animatable, Clutte
|
|
|
16898
17188
|
*/
|
|
16899
17189
|
menu: Menu
|
|
16900
17190
|
tooltip_delay: number
|
|
17191
|
+
tooltipDelay: number
|
|
16901
17192
|
/**
|
|
16902
17193
|
* text displayed on the tooltip
|
|
16903
17194
|
*/
|
|
16904
17195
|
tooltip_text: string | null
|
|
17196
|
+
/**
|
|
17197
|
+
* text displayed on the tooltip
|
|
17198
|
+
*/
|
|
17199
|
+
tooltipText: string | null
|
|
16905
17200
|
|
|
16906
17201
|
// Owm methods of Mx-2.0.Mx.Widget
|
|
16907
17202
|
|
|
@@ -17340,6 +17635,12 @@ export module Window {
|
|
|
17340
17635
|
title?: string | null
|
|
17341
17636
|
toolbar?: Toolbar | null
|
|
17342
17637
|
window_rotation?: WindowRotation | null
|
|
17638
|
+
clutterStage?: Clutter.Stage | null
|
|
17639
|
+
hasToolbar?: boolean | null
|
|
17640
|
+
iconCoglTexture?: string | null
|
|
17641
|
+
iconName?: string | null
|
|
17642
|
+
smallScreen?: boolean | null
|
|
17643
|
+
windowRotation?: WindowRotation | null
|
|
17343
17644
|
}
|
|
17344
17645
|
|
|
17345
17646
|
}
|
|
@@ -17350,16 +17651,24 @@ export interface Window {
|
|
|
17350
17651
|
|
|
17351
17652
|
child: Clutter.Actor
|
|
17352
17653
|
readonly clutter_stage: Clutter.Stage
|
|
17654
|
+
readonly clutterStage: Clutter.Stage
|
|
17353
17655
|
fullscreen: boolean
|
|
17354
17656
|
has_toolbar: boolean
|
|
17657
|
+
hasToolbar: boolean
|
|
17355
17658
|
icon_cogl_texture: string | null
|
|
17659
|
+
iconCoglTexture: string | null
|
|
17356
17660
|
icon_name: string | null
|
|
17661
|
+
iconName: string | null
|
|
17357
17662
|
small_screen: boolean
|
|
17663
|
+
smallScreen: boolean
|
|
17358
17664
|
title: string | null
|
|
17359
17665
|
toolbar: Toolbar
|
|
17360
17666
|
window_rotation: WindowRotation
|
|
17667
|
+
windowRotation: WindowRotation
|
|
17361
17668
|
readonly window_rotation_angle: number
|
|
17669
|
+
readonly windowRotationAngle: number
|
|
17362
17670
|
readonly window_rotation_timeline: Clutter.Timeline
|
|
17671
|
+
readonly windowRotationTimeline: Clutter.Timeline
|
|
17363
17672
|
|
|
17364
17673
|
// Own fields of Mx-2.0.Mx.Window
|
|
17365
17674
|
|