@girs/mx-1.0 1.4.7-3.2.5 → 1.4.7-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 +1 -1
- package/mx-1.0.d.cts +334 -0
- package/mx-1.0.d.ts +334 -0
- package/package.json +19 -19
package/mx-1.0.d.ts
CHANGED
|
@@ -354,6 +354,9 @@ module Draggable {
|
|
|
354
354
|
drag_actor?: Clutter.Actor | null
|
|
355
355
|
drag_enabled?: boolean | null
|
|
356
356
|
drag_threshold?: number | null
|
|
357
|
+
dragActor?: Clutter.Actor | null
|
|
358
|
+
dragEnabled?: boolean | null
|
|
359
|
+
dragThreshold?: number | null
|
|
357
360
|
}
|
|
358
361
|
|
|
359
362
|
}
|
|
@@ -364,8 +367,11 @@ interface Draggable extends Clutter.Actor {
|
|
|
364
367
|
|
|
365
368
|
axis: DragAxis
|
|
366
369
|
drag_actor: Clutter.Actor
|
|
370
|
+
dragActor: Clutter.Actor
|
|
367
371
|
drag_enabled: boolean
|
|
372
|
+
dragEnabled: boolean
|
|
368
373
|
drag_threshold: number
|
|
374
|
+
dragThreshold: number
|
|
369
375
|
|
|
370
376
|
// Owm methods of Mx-1.0.Mx.Draggable
|
|
371
377
|
|
|
@@ -719,6 +725,7 @@ module Droppable {
|
|
|
719
725
|
// Own constructor properties of Mx-1.0.Mx.Droppable
|
|
720
726
|
|
|
721
727
|
drop_enabled?: boolean | null
|
|
728
|
+
dropEnabled?: boolean | null
|
|
722
729
|
}
|
|
723
730
|
|
|
724
731
|
}
|
|
@@ -728,6 +735,7 @@ interface Droppable extends Clutter.Actor {
|
|
|
728
735
|
// Own properties of Mx-1.0.Mx.Droppable
|
|
729
736
|
|
|
730
737
|
drop_enabled: boolean
|
|
738
|
+
dropEnabled: boolean
|
|
731
739
|
|
|
732
740
|
// Owm methods of Mx-1.0.Mx.Droppable
|
|
733
741
|
|
|
@@ -1164,6 +1172,8 @@ module Scrollable {
|
|
|
1164
1172
|
|
|
1165
1173
|
horizontal_adjustment?: Adjustment | null
|
|
1166
1174
|
vertical_adjustment?: Adjustment | null
|
|
1175
|
+
horizontalAdjustment?: Adjustment | null
|
|
1176
|
+
verticalAdjustment?: Adjustment | null
|
|
1167
1177
|
}
|
|
1168
1178
|
|
|
1169
1179
|
}
|
|
@@ -1173,7 +1183,9 @@ interface Scrollable {
|
|
|
1173
1183
|
// Own properties of Mx-1.0.Mx.Scrollable
|
|
1174
1184
|
|
|
1175
1185
|
horizontal_adjustment: Adjustment
|
|
1186
|
+
horizontalAdjustment: Adjustment
|
|
1176
1187
|
vertical_adjustment: Adjustment
|
|
1188
|
+
verticalAdjustment: Adjustment
|
|
1177
1189
|
|
|
1178
1190
|
// Owm methods of Mx-1.0.Mx.Scrollable
|
|
1179
1191
|
|
|
@@ -1246,6 +1258,8 @@ module Stylable {
|
|
|
1246
1258
|
style?: Style | null
|
|
1247
1259
|
style_class?: string | null
|
|
1248
1260
|
style_pseudo_class?: string | null
|
|
1261
|
+
styleClass?: string | null
|
|
1262
|
+
stylePseudoClass?: string | null
|
|
1249
1263
|
}
|
|
1250
1264
|
|
|
1251
1265
|
}
|
|
@@ -1256,7 +1270,9 @@ interface Stylable {
|
|
|
1256
1270
|
|
|
1257
1271
|
style: Style
|
|
1258
1272
|
style_class: string | null
|
|
1273
|
+
styleClass: string | null
|
|
1259
1274
|
style_pseudo_class: string | null
|
|
1275
|
+
stylePseudoClass: string | null
|
|
1260
1276
|
|
|
1261
1277
|
// Owm methods of Mx-1.0.Mx.Stylable
|
|
1262
1278
|
|
|
@@ -1541,6 +1557,7 @@ 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 @@ 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-1.0.Mx.Action
|
|
@@ -1764,6 +1782,7 @@ 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 @@ interface ActorManager {
|
|
|
1773
1792
|
// Own properties of Mx-1.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-1.0.Mx.ActorManager
|
|
1780
1801
|
|
|
@@ -1992,6 +2013,10 @@ module Adjustment {
|
|
|
1992
2013
|
step_increment?: number | null
|
|
1993
2014
|
upper?: number | null
|
|
1994
2015
|
value?: number | null
|
|
2016
|
+
clampValue?: boolean | null
|
|
2017
|
+
pageIncrement?: number | null
|
|
2018
|
+
pageSize?: number | null
|
|
2019
|
+
stepIncrement?: number | null
|
|
1995
2020
|
}
|
|
1996
2021
|
|
|
1997
2022
|
}
|
|
@@ -2001,11 +2026,15 @@ interface Adjustment {
|
|
|
2001
2026
|
// Own properties of Mx-1.0.Mx.Adjustment
|
|
2002
2027
|
|
|
2003
2028
|
clamp_value: boolean
|
|
2029
|
+
clampValue: boolean
|
|
2004
2030
|
elastic: boolean
|
|
2005
2031
|
lower: number
|
|
2006
2032
|
page_increment: number
|
|
2033
|
+
pageIncrement: number
|
|
2007
2034
|
page_size: number
|
|
2035
|
+
pageSize: number
|
|
2008
2036
|
step_increment: number
|
|
2037
|
+
stepIncrement: number
|
|
2009
2038
|
upper: number
|
|
2010
2039
|
value: number
|
|
2011
2040
|
|
|
@@ -2237,6 +2266,7 @@ module Application {
|
|
|
2237
2266
|
|
|
2238
2267
|
application_name?: string | null
|
|
2239
2268
|
flags?: number | null
|
|
2269
|
+
applicationName?: string | null
|
|
2240
2270
|
}
|
|
2241
2271
|
|
|
2242
2272
|
}
|
|
@@ -2246,6 +2276,7 @@ interface Application {
|
|
|
2246
2276
|
// Own properties of Mx-1.0.Mx.Application
|
|
2247
2277
|
|
|
2248
2278
|
readonly application_name: string | null
|
|
2279
|
+
readonly applicationName: string | null
|
|
2249
2280
|
readonly flags: number
|
|
2250
2281
|
|
|
2251
2282
|
// Own fields of Mx-1.0.Mx.Application
|
|
@@ -2430,6 +2461,22 @@ module Bin {
|
|
|
2430
2461
|
* Whether the child should fill the vertical allocation
|
|
2431
2462
|
*/
|
|
2432
2463
|
y_fill?: boolean | null
|
|
2464
|
+
/**
|
|
2465
|
+
* The horizontal alignment of the #MxBin child.
|
|
2466
|
+
*/
|
|
2467
|
+
xAlign: any
|
|
2468
|
+
/**
|
|
2469
|
+
* Whether the child should fill the horizontal allocation
|
|
2470
|
+
*/
|
|
2471
|
+
xFill?: boolean | null
|
|
2472
|
+
/**
|
|
2473
|
+
* The vertical alignment of the #MxBin child.
|
|
2474
|
+
*/
|
|
2475
|
+
yAlign: any
|
|
2476
|
+
/**
|
|
2477
|
+
* Whether the child should fill the vertical allocation
|
|
2478
|
+
*/
|
|
2479
|
+
yFill?: boolean | null
|
|
2433
2480
|
}
|
|
2434
2481
|
|
|
2435
2482
|
}
|
|
@@ -2446,18 +2493,34 @@ interface Bin extends Atk.ImplementorIface, Clutter.Animatable, Clutter.Containe
|
|
|
2446
2493
|
* The horizontal alignment of the #MxBin child.
|
|
2447
2494
|
*/
|
|
2448
2495
|
x_align: any
|
|
2496
|
+
/**
|
|
2497
|
+
* The horizontal alignment of the #MxBin child.
|
|
2498
|
+
*/
|
|
2499
|
+
xAlign: any
|
|
2449
2500
|
/**
|
|
2450
2501
|
* Whether the child should fill the horizontal allocation
|
|
2451
2502
|
*/
|
|
2452
2503
|
x_fill: boolean
|
|
2504
|
+
/**
|
|
2505
|
+
* Whether the child should fill the horizontal allocation
|
|
2506
|
+
*/
|
|
2507
|
+
xFill: boolean
|
|
2453
2508
|
/**
|
|
2454
2509
|
* The vertical alignment of the #MxBin child.
|
|
2455
2510
|
*/
|
|
2456
2511
|
y_align: any
|
|
2512
|
+
/**
|
|
2513
|
+
* The vertical alignment of the #MxBin child.
|
|
2514
|
+
*/
|
|
2515
|
+
yAlign: any
|
|
2457
2516
|
/**
|
|
2458
2517
|
* Whether the child should fill the vertical allocation
|
|
2459
2518
|
*/
|
|
2460
2519
|
y_fill: boolean
|
|
2520
|
+
/**
|
|
2521
|
+
* Whether the child should fill the vertical allocation
|
|
2522
|
+
*/
|
|
2523
|
+
yFill: boolean
|
|
2461
2524
|
|
|
2462
2525
|
// Owm methods of Mx-1.0.Mx.Bin
|
|
2463
2526
|
|
|
@@ -2877,6 +2940,8 @@ module BoxLayout {
|
|
|
2877
2940
|
orientation?: Orientation | null
|
|
2878
2941
|
scroll_to_focused?: boolean | null
|
|
2879
2942
|
spacing?: number | null
|
|
2943
|
+
enableAnimations?: boolean | null
|
|
2944
|
+
scrollToFocused?: boolean | null
|
|
2880
2945
|
}
|
|
2881
2946
|
|
|
2882
2947
|
}
|
|
@@ -2886,8 +2951,10 @@ interface BoxLayout extends Atk.ImplementorIface, Clutter.Animatable, Clutter.Co
|
|
|
2886
2951
|
// Own properties of Mx-1.0.Mx.BoxLayout
|
|
2887
2952
|
|
|
2888
2953
|
enable_animations: boolean
|
|
2954
|
+
enableAnimations: boolean
|
|
2889
2955
|
orientation: Orientation
|
|
2890
2956
|
scroll_to_focused: boolean
|
|
2957
|
+
scrollToFocused: boolean
|
|
2891
2958
|
spacing: number
|
|
2892
2959
|
|
|
2893
2960
|
// Owm methods of Mx-1.0.Mx.BoxLayout
|
|
@@ -3404,6 +3471,10 @@ module BoxLayoutChild {
|
|
|
3404
3471
|
x_fill?: boolean | null
|
|
3405
3472
|
y_align?: Align | null
|
|
3406
3473
|
y_fill?: boolean | null
|
|
3474
|
+
xAlign?: Align | null
|
|
3475
|
+
xFill?: boolean | null
|
|
3476
|
+
yAlign?: Align | null
|
|
3477
|
+
yFill?: boolean | null
|
|
3407
3478
|
}
|
|
3408
3479
|
|
|
3409
3480
|
}
|
|
@@ -3414,9 +3485,13 @@ interface BoxLayoutChild {
|
|
|
3414
3485
|
|
|
3415
3486
|
expand: boolean
|
|
3416
3487
|
x_align: Align
|
|
3488
|
+
xAlign: Align
|
|
3417
3489
|
x_fill: boolean
|
|
3490
|
+
xFill: boolean
|
|
3418
3491
|
y_align: Align
|
|
3492
|
+
yAlign: Align
|
|
3419
3493
|
y_fill: boolean
|
|
3494
|
+
yFill: boolean
|
|
3420
3495
|
|
|
3421
3496
|
// Class property signals of Mx-1.0.Mx.BoxLayoutChild
|
|
3422
3497
|
|
|
@@ -3486,6 +3561,12 @@ module Button {
|
|
|
3486
3561
|
label?: string | null
|
|
3487
3562
|
label_visible?: boolean | null
|
|
3488
3563
|
toggled?: boolean | null
|
|
3564
|
+
iconName?: string | null
|
|
3565
|
+
iconPosition?: Position | null
|
|
3566
|
+
iconSize?: number | null
|
|
3567
|
+
iconVisible?: boolean | null
|
|
3568
|
+
isToggle?: boolean | null
|
|
3569
|
+
labelVisible?: boolean | null
|
|
3489
3570
|
}
|
|
3490
3571
|
|
|
3491
3572
|
}
|
|
@@ -3496,18 +3577,26 @@ interface Button extends Atk.ImplementorIface, Clutter.Animatable, Clutter.Conta
|
|
|
3496
3577
|
|
|
3497
3578
|
action: Action
|
|
3498
3579
|
icon_name: string | null
|
|
3580
|
+
iconName: string | null
|
|
3499
3581
|
icon_position: Position
|
|
3582
|
+
iconPosition: Position
|
|
3500
3583
|
icon_size: number
|
|
3584
|
+
iconSize: number
|
|
3501
3585
|
icon_visible: boolean
|
|
3586
|
+
iconVisible: boolean
|
|
3502
3587
|
is_toggle: boolean
|
|
3588
|
+
isToggle: boolean
|
|
3503
3589
|
label: string | null
|
|
3504
3590
|
label_visible: boolean
|
|
3591
|
+
labelVisible: boolean
|
|
3505
3592
|
toggled: boolean
|
|
3506
3593
|
|
|
3507
3594
|
// Conflicting properties
|
|
3508
3595
|
|
|
3509
3596
|
x_align: any
|
|
3597
|
+
xAlign: any
|
|
3510
3598
|
y_align: any
|
|
3599
|
+
yAlign: any
|
|
3511
3600
|
|
|
3512
3601
|
// Owm methods of Mx-1.0.Mx.Button
|
|
3513
3602
|
|
|
@@ -4041,6 +4130,8 @@ module ButtonGroup {
|
|
|
4041
4130
|
|
|
4042
4131
|
active_button?: Button | null
|
|
4043
4132
|
allow_no_active?: boolean | null
|
|
4133
|
+
activeButton?: Button | null
|
|
4134
|
+
allowNoActive?: boolean | null
|
|
4044
4135
|
}
|
|
4045
4136
|
|
|
4046
4137
|
}
|
|
@@ -4050,7 +4141,9 @@ interface ButtonGroup {
|
|
|
4050
4141
|
// Own properties of Mx-1.0.Mx.ButtonGroup
|
|
4051
4142
|
|
|
4052
4143
|
active_button: Button
|
|
4144
|
+
activeButton: Button
|
|
4053
4145
|
allow_no_active: boolean
|
|
4146
|
+
allowNoActive: boolean
|
|
4054
4147
|
|
|
4055
4148
|
// Own fields of Mx-1.0.Mx.ButtonGroup
|
|
4056
4149
|
|
|
@@ -4212,6 +4305,8 @@ module ComboBox {
|
|
|
4212
4305
|
active_icon_name?: string | null
|
|
4213
4306
|
active_text?: string | null
|
|
4214
4307
|
index?: number | null
|
|
4308
|
+
activeIconName?: string | null
|
|
4309
|
+
activeText?: string | null
|
|
4215
4310
|
}
|
|
4216
4311
|
|
|
4217
4312
|
}
|
|
@@ -4221,7 +4316,9 @@ interface ComboBox extends Atk.ImplementorIface, Clutter.Animatable, Clutter.Con
|
|
|
4221
4316
|
// Own properties of Mx-1.0.Mx.ComboBox
|
|
4222
4317
|
|
|
4223
4318
|
active_icon_name: string | null
|
|
4319
|
+
activeIconName: string | null
|
|
4224
4320
|
active_text: string | null
|
|
4321
|
+
activeText: string | null
|
|
4225
4322
|
index: number
|
|
4226
4323
|
|
|
4227
4324
|
// Owm methods of Mx-1.0.Mx.ComboBox
|
|
@@ -4667,6 +4764,7 @@ module DeformBowTie {
|
|
|
4667
4764
|
|
|
4668
4765
|
flip_back?: boolean | null
|
|
4669
4766
|
period?: number | null
|
|
4767
|
+
flipBack?: boolean | null
|
|
4670
4768
|
}
|
|
4671
4769
|
|
|
4672
4770
|
}
|
|
@@ -4676,6 +4774,7 @@ interface DeformBowTie extends Atk.ImplementorIface, Clutter.Animatable, Clutter
|
|
|
4676
4774
|
// Own properties of Mx-1.0.Mx.DeformBowTie
|
|
4677
4775
|
|
|
4678
4776
|
flip_back: boolean
|
|
4777
|
+
flipBack: boolean
|
|
4679
4778
|
period: number
|
|
4680
4779
|
|
|
4681
4780
|
// Own fields of Mx-1.0.Mx.DeformBowTie
|
|
@@ -5476,6 +5575,8 @@ module DeformTexture {
|
|
|
5476
5575
|
front?: Clutter.Texture | null
|
|
5477
5576
|
tiles_x?: number | null
|
|
5478
5577
|
tiles_y?: number | null
|
|
5578
|
+
tilesX?: number | null
|
|
5579
|
+
tilesY?: number | null
|
|
5479
5580
|
}
|
|
5480
5581
|
|
|
5481
5582
|
}
|
|
@@ -5487,7 +5588,9 @@ interface DeformTexture extends Atk.ImplementorIface, Clutter.Animatable, Clutte
|
|
|
5487
5588
|
back: Clutter.Texture
|
|
5488
5589
|
front: Clutter.Texture
|
|
5489
5590
|
tiles_x: number
|
|
5591
|
+
tilesX: number
|
|
5490
5592
|
tiles_y: number
|
|
5593
|
+
tilesY: number
|
|
5491
5594
|
|
|
5492
5595
|
// Own fields of Mx-1.0.Mx.DeformTexture
|
|
5493
5596
|
|
|
@@ -6315,7 +6418,9 @@ interface Dialog extends Atk.ImplementorIface, Clutter.Animatable, Clutter.Conta
|
|
|
6315
6418
|
// Conflicting properties
|
|
6316
6419
|
|
|
6317
6420
|
x_align: any
|
|
6421
|
+
xAlign: any
|
|
6318
6422
|
y_align: any
|
|
6423
|
+
yAlign: any
|
|
6319
6424
|
|
|
6320
6425
|
// Owm methods of Mx-1.0.Mx.Dialog
|
|
6321
6426
|
|
|
@@ -6772,6 +6877,11 @@ module Entry {
|
|
|
6772
6877
|
primary_icon_tooltip_text?: string | null
|
|
6773
6878
|
secondary_icon_tooltip_text?: string | null
|
|
6774
6879
|
text?: string | null
|
|
6880
|
+
hintText?: string | null
|
|
6881
|
+
iconHighlightSuffix?: string | null
|
|
6882
|
+
passwordChar?: number | null
|
|
6883
|
+
primaryIconTooltipText?: string | null
|
|
6884
|
+
secondaryIconTooltipText?: string | null
|
|
6775
6885
|
}
|
|
6776
6886
|
|
|
6777
6887
|
}
|
|
@@ -6781,11 +6891,17 @@ interface Entry extends Atk.ImplementorIface, Clutter.Animatable, Clutter.Contai
|
|
|
6781
6891
|
// Own properties of Mx-1.0.Mx.Entry
|
|
6782
6892
|
|
|
6783
6893
|
readonly clutter_text: Clutter.Text
|
|
6894
|
+
readonly clutterText: Clutter.Text
|
|
6784
6895
|
hint_text: string | null
|
|
6896
|
+
hintText: string | null
|
|
6785
6897
|
icon_highlight_suffix: string | null
|
|
6898
|
+
iconHighlightSuffix: string | null
|
|
6786
6899
|
password_char: number
|
|
6900
|
+
passwordChar: number
|
|
6787
6901
|
primary_icon_tooltip_text: string | null
|
|
6902
|
+
primaryIconTooltipText: string | null
|
|
6788
6903
|
secondary_icon_tooltip_text: string | null
|
|
6904
|
+
secondaryIconTooltipText: string | null
|
|
6789
6905
|
text: string | null
|
|
6790
6906
|
|
|
6791
6907
|
// Owm methods of Mx-1.0.Mx.Entry
|
|
@@ -7290,7 +7406,9 @@ interface Expander extends Atk.ImplementorIface, Clutter.Animatable, Clutter.Con
|
|
|
7290
7406
|
// Conflicting properties
|
|
7291
7407
|
|
|
7292
7408
|
x_align: any
|
|
7409
|
+
xAlign: any
|
|
7293
7410
|
y_align: any
|
|
7411
|
+
yAlign: any
|
|
7294
7412
|
|
|
7295
7413
|
// Owm methods of Mx-1.0.Mx.Expander
|
|
7296
7414
|
|
|
@@ -7713,6 +7831,15 @@ module FadeEffect {
|
|
|
7713
7831
|
bounds_y?: number | null
|
|
7714
7832
|
color?: Clutter.Color | null
|
|
7715
7833
|
freeze_update?: boolean | null
|
|
7834
|
+
borderBottom?: number | null
|
|
7835
|
+
borderLeft?: number | null
|
|
7836
|
+
borderRight?: number | null
|
|
7837
|
+
borderTop?: number | null
|
|
7838
|
+
boundsHeight?: number | null
|
|
7839
|
+
boundsWidth?: number | null
|
|
7840
|
+
boundsX?: number | null
|
|
7841
|
+
boundsY?: number | null
|
|
7842
|
+
freezeUpdate?: boolean | null
|
|
7716
7843
|
}
|
|
7717
7844
|
|
|
7718
7845
|
}
|
|
@@ -7722,15 +7849,24 @@ interface FadeEffect {
|
|
|
7722
7849
|
// Own properties of Mx-1.0.Mx.FadeEffect
|
|
7723
7850
|
|
|
7724
7851
|
border_bottom: number
|
|
7852
|
+
borderBottom: number
|
|
7725
7853
|
border_left: number
|
|
7854
|
+
borderLeft: number
|
|
7726
7855
|
border_right: number
|
|
7856
|
+
borderRight: number
|
|
7727
7857
|
border_top: number
|
|
7858
|
+
borderTop: number
|
|
7728
7859
|
bounds_height: number
|
|
7860
|
+
boundsHeight: number
|
|
7729
7861
|
bounds_width: number
|
|
7862
|
+
boundsWidth: number
|
|
7730
7863
|
bounds_x: number
|
|
7864
|
+
boundsX: number
|
|
7731
7865
|
bounds_y: number
|
|
7866
|
+
boundsY: number
|
|
7732
7867
|
color: Clutter.Color
|
|
7733
7868
|
freeze_update: boolean
|
|
7869
|
+
freezeUpdate: boolean
|
|
7734
7870
|
|
|
7735
7871
|
// Own fields of Mx-1.0.Mx.FadeEffect
|
|
7736
7872
|
|
|
@@ -8328,7 +8464,9 @@ interface Frame extends Atk.ImplementorIface, Clutter.Animatable, Clutter.Contai
|
|
|
8328
8464
|
// Conflicting properties
|
|
8329
8465
|
|
|
8330
8466
|
x_align: any
|
|
8467
|
+
xAlign: any
|
|
8331
8468
|
y_align: any
|
|
8469
|
+
yAlign: any
|
|
8332
8470
|
|
|
8333
8471
|
// Own fields of Mx-1.0.Mx.Frame
|
|
8334
8472
|
|
|
@@ -8720,6 +8858,14 @@ module Grid {
|
|
|
8720
8858
|
max_stride?: number | null
|
|
8721
8859
|
orientation?: Orientation | null
|
|
8722
8860
|
row_spacing?: number | null
|
|
8861
|
+
childXAlign?: Align | null
|
|
8862
|
+
childYAlign?: Align | null
|
|
8863
|
+
columnSpacing?: number | null
|
|
8864
|
+
homogenousColumns?: boolean | null
|
|
8865
|
+
homogenousRows?: boolean | null
|
|
8866
|
+
lineAlignment?: Align | null
|
|
8867
|
+
maxStride?: number | null
|
|
8868
|
+
rowSpacing?: number | null
|
|
8723
8869
|
}
|
|
8724
8870
|
|
|
8725
8871
|
}
|
|
@@ -8729,14 +8875,22 @@ interface Grid extends Atk.ImplementorIface, Clutter.Animatable, Clutter.Contain
|
|
|
8729
8875
|
// Own properties of Mx-1.0.Mx.Grid
|
|
8730
8876
|
|
|
8731
8877
|
child_x_align: Align
|
|
8878
|
+
childXAlign: Align
|
|
8732
8879
|
child_y_align: Align
|
|
8880
|
+
childYAlign: Align
|
|
8733
8881
|
column_spacing: number
|
|
8882
|
+
columnSpacing: number
|
|
8734
8883
|
homogenous_columns: boolean
|
|
8884
|
+
homogenousColumns: boolean
|
|
8735
8885
|
homogenous_rows: boolean
|
|
8886
|
+
homogenousRows: boolean
|
|
8736
8887
|
line_alignment: Align
|
|
8888
|
+
lineAlignment: Align
|
|
8737
8889
|
max_stride: number
|
|
8890
|
+
maxStride: number
|
|
8738
8891
|
orientation: Orientation
|
|
8739
8892
|
row_spacing: number
|
|
8893
|
+
rowSpacing: number
|
|
8740
8894
|
|
|
8741
8895
|
// Owm methods of Mx-1.0.Mx.Grid
|
|
8742
8896
|
|
|
@@ -9151,6 +9305,8 @@ module Icon {
|
|
|
9151
9305
|
|
|
9152
9306
|
icon_name?: string | null
|
|
9153
9307
|
icon_size?: number | null
|
|
9308
|
+
iconName?: string | null
|
|
9309
|
+
iconSize?: number | null
|
|
9154
9310
|
}
|
|
9155
9311
|
|
|
9156
9312
|
}
|
|
@@ -9160,7 +9316,9 @@ interface Icon extends Atk.ImplementorIface, Clutter.Animatable, Clutter.Contain
|
|
|
9160
9316
|
// Own properties of Mx-1.0.Mx.Icon
|
|
9161
9317
|
|
|
9162
9318
|
icon_name: string | null
|
|
9319
|
+
iconName: string | null
|
|
9163
9320
|
icon_size: number
|
|
9321
|
+
iconSize: number
|
|
9164
9322
|
|
|
9165
9323
|
// Owm methods of Mx-1.0.Mx.Icon
|
|
9166
9324
|
|
|
@@ -9543,6 +9701,7 @@ module IconTheme {
|
|
|
9543
9701
|
// Own constructor properties of Mx-1.0.Mx.IconTheme
|
|
9544
9702
|
|
|
9545
9703
|
theme_name?: string | null
|
|
9704
|
+
themeName?: string | null
|
|
9546
9705
|
}
|
|
9547
9706
|
|
|
9548
9707
|
}
|
|
@@ -9552,6 +9711,7 @@ interface IconTheme {
|
|
|
9552
9711
|
// Own properties of Mx-1.0.Mx.IconTheme
|
|
9553
9712
|
|
|
9554
9713
|
theme_name: string | null
|
|
9714
|
+
themeName: string | null
|
|
9555
9715
|
|
|
9556
9716
|
// Own fields of Mx-1.0.Mx.IconTheme
|
|
9557
9717
|
|
|
@@ -9684,6 +9844,13 @@ module Image {
|
|
|
9684
9844
|
scale_mode?: ImageScaleMode | null
|
|
9685
9845
|
scale_width_threshold?: number | null
|
|
9686
9846
|
transition_duration?: number | null
|
|
9847
|
+
allowUpscale?: boolean | null
|
|
9848
|
+
imageRotation?: number | null
|
|
9849
|
+
loadAsync?: boolean | null
|
|
9850
|
+
scaleHeightThreshold?: number | null
|
|
9851
|
+
scaleMode?: ImageScaleMode | null
|
|
9852
|
+
scaleWidthThreshold?: number | null
|
|
9853
|
+
transitionDuration?: number | null
|
|
9687
9854
|
}
|
|
9688
9855
|
|
|
9689
9856
|
}
|
|
@@ -9693,12 +9860,19 @@ interface Image extends Atk.ImplementorIface, Clutter.Animatable, Clutter.Contai
|
|
|
9693
9860
|
// Own properties of Mx-1.0.Mx.Image
|
|
9694
9861
|
|
|
9695
9862
|
allow_upscale: boolean
|
|
9863
|
+
allowUpscale: boolean
|
|
9696
9864
|
image_rotation: number
|
|
9865
|
+
imageRotation: number
|
|
9697
9866
|
load_async: boolean
|
|
9867
|
+
loadAsync: boolean
|
|
9698
9868
|
scale_height_threshold: number
|
|
9869
|
+
scaleHeightThreshold: number
|
|
9699
9870
|
scale_mode: ImageScaleMode
|
|
9871
|
+
scaleMode: ImageScaleMode
|
|
9700
9872
|
scale_width_threshold: number
|
|
9873
|
+
scaleWidthThreshold: number
|
|
9701
9874
|
transition_duration: number
|
|
9875
|
+
transitionDuration: number
|
|
9702
9876
|
|
|
9703
9877
|
// Owm methods of Mx-1.0.Mx.Image
|
|
9704
9878
|
|
|
@@ -10269,6 +10443,7 @@ module ItemView {
|
|
|
10269
10443
|
factory?: GObject.Object | null
|
|
10270
10444
|
item_type?: GObject.GType | null
|
|
10271
10445
|
model?: Clutter.Model | null
|
|
10446
|
+
itemType?: GObject.GType | null
|
|
10272
10447
|
}
|
|
10273
10448
|
|
|
10274
10449
|
}
|
|
@@ -10279,6 +10454,7 @@ interface ItemView extends Atk.ImplementorIface, Clutter.Animatable, Clutter.Con
|
|
|
10279
10454
|
|
|
10280
10455
|
factory: GObject.Object
|
|
10281
10456
|
item_type: GObject.GType
|
|
10457
|
+
itemType: GObject.GType
|
|
10282
10458
|
model: Clutter.Model
|
|
10283
10459
|
|
|
10284
10460
|
// Owm methods of Mx-1.0.Mx.ItemView
|
|
@@ -10750,6 +10926,13 @@ module KineticScrollView {
|
|
|
10750
10926
|
overshoot?: number | null
|
|
10751
10927
|
scroll_policy?: ScrollPolicy | null
|
|
10752
10928
|
use_captured?: boolean | null
|
|
10929
|
+
accelerationFactor?: number | null
|
|
10930
|
+
clampDuration?: number | null
|
|
10931
|
+
clampMode?: number | null
|
|
10932
|
+
clampToCenter?: boolean | null
|
|
10933
|
+
mouseButton?: number | null
|
|
10934
|
+
scrollPolicy?: ScrollPolicy | null
|
|
10935
|
+
useCaptured?: boolean | null
|
|
10753
10936
|
}
|
|
10754
10937
|
|
|
10755
10938
|
}
|
|
@@ -10759,20 +10942,29 @@ interface KineticScrollView extends Atk.ImplementorIface, Clutter.Animatable, Cl
|
|
|
10759
10942
|
// Own properties of Mx-1.0.Mx.KineticScrollView
|
|
10760
10943
|
|
|
10761
10944
|
acceleration_factor: number
|
|
10945
|
+
accelerationFactor: number
|
|
10762
10946
|
clamp_duration: number
|
|
10947
|
+
clampDuration: number
|
|
10763
10948
|
clamp_mode: number
|
|
10949
|
+
clampMode: number
|
|
10764
10950
|
clamp_to_center: boolean
|
|
10951
|
+
clampToCenter: boolean
|
|
10765
10952
|
deceleration: number
|
|
10766
10953
|
mouse_button: number
|
|
10954
|
+
mouseButton: number
|
|
10767
10955
|
overshoot: number
|
|
10768
10956
|
scroll_policy: ScrollPolicy
|
|
10957
|
+
scrollPolicy: ScrollPolicy
|
|
10769
10958
|
readonly state: KineticScrollViewState
|
|
10770
10959
|
use_captured: boolean
|
|
10960
|
+
useCaptured: boolean
|
|
10771
10961
|
|
|
10772
10962
|
// Conflicting properties
|
|
10773
10963
|
|
|
10774
10964
|
x_align: any
|
|
10965
|
+
xAlign: any
|
|
10775
10966
|
y_align: any
|
|
10967
|
+
yAlign: any
|
|
10776
10968
|
|
|
10777
10969
|
// Owm methods of Mx-1.0.Mx.KineticScrollView
|
|
10778
10970
|
|
|
@@ -11310,6 +11502,21 @@ module Label {
|
|
|
11310
11502
|
use_markup?: boolean | null
|
|
11311
11503
|
x_align: any
|
|
11312
11504
|
y_align: any
|
|
11505
|
+
fadeOut?: boolean | null
|
|
11506
|
+
/**
|
|
11507
|
+
* Whether to wrap the lines of #MxLabel:text if the contents
|
|
11508
|
+
* exceed the available allocation.
|
|
11509
|
+
*/
|
|
11510
|
+
lineWrap?: boolean | null
|
|
11511
|
+
/**
|
|
11512
|
+
* Show a tooltip when there is not enough space to display the text. If set
|
|
11513
|
+
* to %TRUE, this will also cause the #ClutterActor:reactive property to be
|
|
11514
|
+
* enabled.
|
|
11515
|
+
*/
|
|
11516
|
+
showTooltip?: boolean | null
|
|
11517
|
+
useMarkup?: boolean | null
|
|
11518
|
+
xAlign: any
|
|
11519
|
+
yAlign: any
|
|
11313
11520
|
}
|
|
11314
11521
|
|
|
11315
11522
|
}
|
|
@@ -11319,17 +11526,33 @@ interface Label extends Atk.ImplementorIface, Clutter.Animatable, Clutter.Contai
|
|
|
11319
11526
|
// Own properties of Mx-1.0.Mx.Label
|
|
11320
11527
|
|
|
11321
11528
|
readonly clutter_text: Clutter.Text
|
|
11529
|
+
readonly clutterText: Clutter.Text
|
|
11322
11530
|
fade_out: boolean
|
|
11531
|
+
fadeOut: boolean
|
|
11323
11532
|
/**
|
|
11324
11533
|
* Whether to wrap the lines of #MxLabel:text if the contents
|
|
11325
11534
|
* exceed the available allocation.
|
|
11326
11535
|
*/
|
|
11327
11536
|
line_wrap: boolean
|
|
11537
|
+
/**
|
|
11538
|
+
* Whether to wrap the lines of #MxLabel:text if the contents
|
|
11539
|
+
* exceed the available allocation.
|
|
11540
|
+
*/
|
|
11541
|
+
lineWrap: boolean
|
|
11328
11542
|
// Has conflict: show_tooltip: boolean
|
|
11543
|
+
/**
|
|
11544
|
+
* Show a tooltip when there is not enough space to display the text. If set
|
|
11545
|
+
* to %TRUE, this will also cause the #ClutterActor:reactive property to be
|
|
11546
|
+
* enabled.
|
|
11547
|
+
*/
|
|
11548
|
+
showTooltip: boolean
|
|
11329
11549
|
text: string | null
|
|
11330
11550
|
use_markup: boolean
|
|
11551
|
+
useMarkup: boolean
|
|
11331
11552
|
x_align: any
|
|
11553
|
+
xAlign: any
|
|
11332
11554
|
y_align: any
|
|
11555
|
+
yAlign: any
|
|
11333
11556
|
|
|
11334
11557
|
// Owm methods of Mx-1.0.Mx.Label
|
|
11335
11558
|
|
|
@@ -11831,6 +12054,7 @@ module ListView {
|
|
|
11831
12054
|
factory?: GObject.Object | null
|
|
11832
12055
|
item_type?: GObject.GType | null
|
|
11833
12056
|
model?: Clutter.Model | null
|
|
12057
|
+
itemType?: GObject.GType | null
|
|
11834
12058
|
}
|
|
11835
12059
|
|
|
11836
12060
|
}
|
|
@@ -11841,6 +12065,7 @@ interface ListView extends Atk.ImplementorIface, Clutter.Animatable, Clutter.Con
|
|
|
11841
12065
|
|
|
11842
12066
|
factory: GObject.Object
|
|
11843
12067
|
item_type: GObject.GType
|
|
12068
|
+
itemType: GObject.GType
|
|
11844
12069
|
model: Clutter.Model
|
|
11845
12070
|
|
|
11846
12071
|
// Owm methods of Mx-1.0.Mx.ListView
|
|
@@ -12760,6 +12985,8 @@ module Notebook {
|
|
|
12760
12985
|
|
|
12761
12986
|
current_page?: Clutter.Actor | null
|
|
12762
12987
|
enable_gestures?: boolean | null
|
|
12988
|
+
currentPage?: Clutter.Actor | null
|
|
12989
|
+
enableGestures?: boolean | null
|
|
12763
12990
|
}
|
|
12764
12991
|
|
|
12765
12992
|
}
|
|
@@ -12769,7 +12996,9 @@ interface Notebook extends Atk.ImplementorIface, Clutter.Animatable, Clutter.Con
|
|
|
12769
12996
|
// Own properties of Mx-1.0.Mx.Notebook
|
|
12770
12997
|
|
|
12771
12998
|
current_page: Clutter.Actor
|
|
12999
|
+
currentPage: Clutter.Actor
|
|
12772
13000
|
enable_gestures: boolean
|
|
13001
|
+
enableGestures: boolean
|
|
12773
13002
|
|
|
12774
13003
|
// Own fields of Mx-1.0.Mx.Notebook
|
|
12775
13004
|
|
|
@@ -13155,6 +13384,10 @@ module Offscreen {
|
|
|
13155
13384
|
child?: Clutter.Actor | null
|
|
13156
13385
|
pick_child?: boolean | null
|
|
13157
13386
|
redirect_enabled?: boolean | null
|
|
13387
|
+
accumulationEnabled?: boolean | null
|
|
13388
|
+
autoUpdate?: boolean | null
|
|
13389
|
+
pickChild?: boolean | null
|
|
13390
|
+
redirectEnabled?: boolean | null
|
|
13158
13391
|
}
|
|
13159
13392
|
|
|
13160
13393
|
}
|
|
@@ -13164,15 +13397,20 @@ interface Offscreen extends Atk.ImplementorIface, Clutter.Animatable, Clutter.Co
|
|
|
13164
13397
|
// Own properties of Mx-1.0.Mx.Offscreen
|
|
13165
13398
|
|
|
13166
13399
|
accumulation_enabled: boolean
|
|
13400
|
+
accumulationEnabled: boolean
|
|
13167
13401
|
readonly accumulation_material: any
|
|
13402
|
+
readonly accumulationMaterial: any
|
|
13168
13403
|
auto_update: boolean
|
|
13404
|
+
autoUpdate: boolean
|
|
13169
13405
|
/**
|
|
13170
13406
|
* The off-screen buffer used to draw the child.
|
|
13171
13407
|
*/
|
|
13172
13408
|
readonly buffer: any
|
|
13173
13409
|
child: Clutter.Actor
|
|
13174
13410
|
pick_child: boolean
|
|
13411
|
+
pickChild: boolean
|
|
13175
13412
|
redirect_enabled: boolean
|
|
13413
|
+
redirectEnabled: boolean
|
|
13176
13414
|
|
|
13177
13415
|
// Own fields of Mx-1.0.Mx.Offscreen
|
|
13178
13416
|
|
|
@@ -13613,6 +13851,7 @@ module PathBar {
|
|
|
13613
13851
|
|
|
13614
13852
|
clear_on_change?: boolean | null
|
|
13615
13853
|
editable?: boolean | null
|
|
13854
|
+
clearOnChange?: boolean | null
|
|
13616
13855
|
}
|
|
13617
13856
|
|
|
13618
13857
|
}
|
|
@@ -13622,6 +13861,7 @@ interface PathBar extends Atk.ImplementorIface, Clutter.Animatable, Clutter.Cont
|
|
|
13622
13861
|
// Own properties of Mx-1.0.Mx.PathBar
|
|
13623
13862
|
|
|
13624
13863
|
clear_on_change: boolean
|
|
13864
|
+
clearOnChange: boolean
|
|
13625
13865
|
editable: boolean
|
|
13626
13866
|
readonly entry: Entry
|
|
13627
13867
|
readonly level: number
|
|
@@ -14475,7 +14715,9 @@ interface ScrollBar extends Atk.ImplementorIface, Clutter.Animatable, Clutter.Co
|
|
|
14475
14715
|
// Conflicting properties
|
|
14476
14716
|
|
|
14477
14717
|
x_align: any
|
|
14718
|
+
xAlign: any
|
|
14478
14719
|
y_align: any
|
|
14720
|
+
yAlign: any
|
|
14479
14721
|
|
|
14480
14722
|
// Owm methods of Mx-1.0.Mx.ScrollBar
|
|
14481
14723
|
|
|
@@ -14895,6 +15137,9 @@ module ScrollView {
|
|
|
14895
15137
|
enable_gestures?: boolean | null
|
|
14896
15138
|
enable_mouse_scrolling?: boolean | null
|
|
14897
15139
|
scroll_policy?: ScrollPolicy | null
|
|
15140
|
+
enableGestures?: boolean | null
|
|
15141
|
+
enableMouseScrolling?: boolean | null
|
|
15142
|
+
scrollPolicy?: ScrollPolicy | null
|
|
14898
15143
|
}
|
|
14899
15144
|
|
|
14900
15145
|
}
|
|
@@ -14904,13 +15149,18 @@ interface ScrollView extends Atk.ImplementorIface, Clutter.Animatable, Clutter.C
|
|
|
14904
15149
|
// Own properties of Mx-1.0.Mx.ScrollView
|
|
14905
15150
|
|
|
14906
15151
|
enable_gestures: boolean
|
|
15152
|
+
enableGestures: boolean
|
|
14907
15153
|
enable_mouse_scrolling: boolean
|
|
15154
|
+
enableMouseScrolling: boolean
|
|
14908
15155
|
scroll_policy: ScrollPolicy
|
|
15156
|
+
scrollPolicy: ScrollPolicy
|
|
14909
15157
|
|
|
14910
15158
|
// Conflicting properties
|
|
14911
15159
|
|
|
14912
15160
|
x_align: any
|
|
15161
|
+
xAlign: any
|
|
14913
15162
|
y_align: any
|
|
15163
|
+
yAlign: any
|
|
14914
15164
|
|
|
14915
15165
|
// Owm methods of Mx-1.0.Mx.ScrollView
|
|
14916
15166
|
|
|
@@ -15307,6 +15557,11 @@ module Settings {
|
|
|
15307
15557
|
icon_theme?: string | null
|
|
15308
15558
|
long_press_timeout?: number | null
|
|
15309
15559
|
small_screen?: boolean | null
|
|
15560
|
+
dragThreshold?: number | null
|
|
15561
|
+
fontName?: string | null
|
|
15562
|
+
iconTheme?: string | null
|
|
15563
|
+
longPressTimeout?: number | null
|
|
15564
|
+
smallScreen?: boolean | null
|
|
15310
15565
|
}
|
|
15311
15566
|
|
|
15312
15567
|
}
|
|
@@ -15316,10 +15571,15 @@ interface Settings {
|
|
|
15316
15571
|
// Own properties of Mx-1.0.Mx.Settings
|
|
15317
15572
|
|
|
15318
15573
|
drag_threshold: number
|
|
15574
|
+
dragThreshold: number
|
|
15319
15575
|
font_name: string | null
|
|
15576
|
+
fontName: string | null
|
|
15320
15577
|
icon_theme: string | null
|
|
15578
|
+
iconTheme: string | null
|
|
15321
15579
|
long_press_timeout: number
|
|
15580
|
+
longPressTimeout: number
|
|
15322
15581
|
small_screen: boolean
|
|
15582
|
+
smallScreen: boolean
|
|
15323
15583
|
|
|
15324
15584
|
// Own fields of Mx-1.0.Mx.Settings
|
|
15325
15585
|
|
|
@@ -15377,6 +15637,7 @@ module Slider {
|
|
|
15377
15637
|
|
|
15378
15638
|
buffer_value?: number | null
|
|
15379
15639
|
value?: number | null
|
|
15640
|
+
bufferValue?: number | null
|
|
15380
15641
|
}
|
|
15381
15642
|
|
|
15382
15643
|
}
|
|
@@ -15386,6 +15647,7 @@ interface Slider extends Atk.ImplementorIface, Clutter.Animatable, Clutter.Conta
|
|
|
15386
15647
|
// Own properties of Mx-1.0.Mx.Slider
|
|
15387
15648
|
|
|
15388
15649
|
buffer_value: number
|
|
15650
|
+
bufferValue: number
|
|
15389
15651
|
value: number
|
|
15390
15652
|
|
|
15391
15653
|
// Owm methods of Mx-1.0.Mx.Slider
|
|
@@ -16650,6 +16912,10 @@ module StackChild {
|
|
|
16650
16912
|
x_fill?: boolean | null
|
|
16651
16913
|
y_align?: Align | null
|
|
16652
16914
|
y_fill?: boolean | null
|
|
16915
|
+
xAlign?: Align | null
|
|
16916
|
+
xFill?: boolean | null
|
|
16917
|
+
yAlign?: Align | null
|
|
16918
|
+
yFill?: boolean | null
|
|
16653
16919
|
}
|
|
16654
16920
|
|
|
16655
16921
|
}
|
|
@@ -16661,9 +16927,13 @@ interface StackChild {
|
|
|
16661
16927
|
crop: boolean
|
|
16662
16928
|
fit: boolean
|
|
16663
16929
|
x_align: Align
|
|
16930
|
+
xAlign: Align
|
|
16664
16931
|
x_fill: boolean
|
|
16932
|
+
xFill: boolean
|
|
16665
16933
|
y_align: Align
|
|
16934
|
+
yAlign: Align
|
|
16666
16935
|
y_fill: boolean
|
|
16936
|
+
yFill: boolean
|
|
16667
16937
|
|
|
16668
16938
|
// Class property signals of Mx-1.0.Mx.StackChild
|
|
16669
16939
|
|
|
@@ -16835,6 +17105,8 @@ module Table {
|
|
|
16835
17105
|
|
|
16836
17106
|
column_spacing?: number | null
|
|
16837
17107
|
row_spacing?: number | null
|
|
17108
|
+
columnSpacing?: number | null
|
|
17109
|
+
rowSpacing?: number | null
|
|
16838
17110
|
}
|
|
16839
17111
|
|
|
16840
17112
|
}
|
|
@@ -16844,9 +17116,13 @@ interface Table extends Atk.ImplementorIface, Clutter.Animatable, Clutter.Contai
|
|
|
16844
17116
|
// Own properties of Mx-1.0.Mx.Table
|
|
16845
17117
|
|
|
16846
17118
|
readonly column_count: number
|
|
17119
|
+
readonly columnCount: number
|
|
16847
17120
|
column_spacing: number
|
|
17121
|
+
columnSpacing: number
|
|
16848
17122
|
readonly row_count: number
|
|
17123
|
+
readonly rowCount: number
|
|
16849
17124
|
row_spacing: number
|
|
17125
|
+
rowSpacing: number
|
|
16850
17126
|
|
|
16851
17127
|
// Owm methods of Mx-1.0.Mx.Table
|
|
16852
17128
|
|
|
@@ -17422,6 +17698,14 @@ module TableChild {
|
|
|
17422
17698
|
y_align?: Align | null
|
|
17423
17699
|
y_expand?: boolean | null
|
|
17424
17700
|
y_fill?: boolean | null
|
|
17701
|
+
columnSpan?: number | null
|
|
17702
|
+
rowSpan?: number | null
|
|
17703
|
+
xAlign?: Align | null
|
|
17704
|
+
xExpand?: boolean | null
|
|
17705
|
+
xFill?: boolean | null
|
|
17706
|
+
yAlign?: Align | null
|
|
17707
|
+
yExpand?: boolean | null
|
|
17708
|
+
yFill?: boolean | null
|
|
17425
17709
|
}
|
|
17426
17710
|
|
|
17427
17711
|
}
|
|
@@ -17432,14 +17716,22 @@ interface TableChild {
|
|
|
17432
17716
|
|
|
17433
17717
|
column: number
|
|
17434
17718
|
column_span: number
|
|
17719
|
+
columnSpan: number
|
|
17435
17720
|
row: number
|
|
17436
17721
|
row_span: number
|
|
17722
|
+
rowSpan: number
|
|
17437
17723
|
x_align: Align
|
|
17724
|
+
xAlign: Align
|
|
17438
17725
|
x_expand: boolean
|
|
17726
|
+
xExpand: boolean
|
|
17439
17727
|
x_fill: boolean
|
|
17728
|
+
xFill: boolean
|
|
17440
17729
|
y_align: Align
|
|
17730
|
+
yAlign: Align
|
|
17441
17731
|
y_expand: boolean
|
|
17732
|
+
yExpand: boolean
|
|
17442
17733
|
y_fill: boolean
|
|
17734
|
+
yFill: boolean
|
|
17443
17735
|
|
|
17444
17736
|
// Class property signals of Mx-1.0.Mx.TableChild
|
|
17445
17737
|
|
|
@@ -17650,6 +17942,7 @@ module TextureFrame {
|
|
|
17650
17942
|
parent_texture?: Clutter.Texture | null
|
|
17651
17943
|
right?: number | null
|
|
17652
17944
|
top?: number | null
|
|
17945
|
+
parentTexture?: Clutter.Texture | null
|
|
17653
17946
|
}
|
|
17654
17947
|
|
|
17655
17948
|
}
|
|
@@ -17661,6 +17954,7 @@ interface TextureFrame extends Atk.ImplementorIface, Clutter.Animatable, Clutter
|
|
|
17661
17954
|
bottom: number
|
|
17662
17955
|
left: number
|
|
17663
17956
|
parent_texture: Clutter.Texture
|
|
17957
|
+
parentTexture: Clutter.Texture
|
|
17664
17958
|
right: number
|
|
17665
17959
|
top: number
|
|
17666
17960
|
|
|
@@ -18425,6 +18719,7 @@ module Toolbar {
|
|
|
18425
18719
|
// Own constructor properties of Mx-1.0.Mx.Toolbar
|
|
18426
18720
|
|
|
18427
18721
|
has_close_button?: boolean | null
|
|
18722
|
+
hasCloseButton?: boolean | null
|
|
18428
18723
|
}
|
|
18429
18724
|
|
|
18430
18725
|
}
|
|
@@ -18434,11 +18729,14 @@ interface Toolbar extends Atk.ImplementorIface, Clutter.Animatable, Clutter.Cont
|
|
|
18434
18729
|
// Own properties of Mx-1.0.Mx.Toolbar
|
|
18435
18730
|
|
|
18436
18731
|
has_close_button: boolean
|
|
18732
|
+
hasCloseButton: boolean
|
|
18437
18733
|
|
|
18438
18734
|
// Conflicting properties
|
|
18439
18735
|
|
|
18440
18736
|
x_align: any
|
|
18737
|
+
xAlign: any
|
|
18441
18738
|
y_align: any
|
|
18739
|
+
yAlign: any
|
|
18442
18740
|
|
|
18443
18741
|
// Own fields of Mx-1.0.Mx.Toolbar
|
|
18444
18742
|
|
|
@@ -18851,6 +19149,7 @@ module Tooltip {
|
|
|
18851
19149
|
|
|
18852
19150
|
text?: string | null
|
|
18853
19151
|
tip_area?: Clutter.Geometry | null
|
|
19152
|
+
tipArea?: Clutter.Geometry | null
|
|
18854
19153
|
}
|
|
18855
19154
|
|
|
18856
19155
|
}
|
|
@@ -18861,6 +19160,7 @@ interface Tooltip extends Atk.ImplementorIface, Clutter.Animatable, Clutter.Cont
|
|
|
18861
19160
|
|
|
18862
19161
|
text: string | null
|
|
18863
19162
|
tip_area: Clutter.Geometry
|
|
19163
|
+
tipArea: Clutter.Geometry
|
|
18864
19164
|
|
|
18865
19165
|
// Owm methods of Mx-1.0.Mx.Tooltip
|
|
18866
19166
|
|
|
@@ -19273,6 +19573,10 @@ module Viewport {
|
|
|
19273
19573
|
x_origin?: number | null
|
|
19274
19574
|
y_origin?: number | null
|
|
19275
19575
|
z_origin?: number | null
|
|
19576
|
+
syncAdjustments?: boolean | null
|
|
19577
|
+
xOrigin?: number | null
|
|
19578
|
+
yOrigin?: number | null
|
|
19579
|
+
zOrigin?: number | null
|
|
19276
19580
|
}
|
|
19277
19581
|
|
|
19278
19582
|
}
|
|
@@ -19282,14 +19586,20 @@ interface Viewport extends Atk.ImplementorIface, Clutter.Animatable, Clutter.Con
|
|
|
19282
19586
|
// Own properties of Mx-1.0.Mx.Viewport
|
|
19283
19587
|
|
|
19284
19588
|
sync_adjustments: boolean
|
|
19589
|
+
syncAdjustments: boolean
|
|
19285
19590
|
x_origin: number
|
|
19591
|
+
xOrigin: number
|
|
19286
19592
|
y_origin: number
|
|
19593
|
+
yOrigin: number
|
|
19287
19594
|
z_origin: number
|
|
19595
|
+
zOrigin: number
|
|
19288
19596
|
|
|
19289
19597
|
// Conflicting properties
|
|
19290
19598
|
|
|
19291
19599
|
x_align: any
|
|
19600
|
+
xAlign: any
|
|
19292
19601
|
y_align: any
|
|
19602
|
+
yAlign: any
|
|
19293
19603
|
|
|
19294
19604
|
// Owm methods of Mx-1.0.Mx.Viewport
|
|
19295
19605
|
|
|
@@ -19702,6 +20012,11 @@ module Widget {
|
|
|
19702
20012
|
* text displayed on the tooltip
|
|
19703
20013
|
*/
|
|
19704
20014
|
tooltip_text?: string | null
|
|
20015
|
+
tooltipDelay?: number | null
|
|
20016
|
+
/**
|
|
20017
|
+
* text displayed on the tooltip
|
|
20018
|
+
*/
|
|
20019
|
+
tooltipText?: string | null
|
|
19705
20020
|
}
|
|
19706
20021
|
|
|
19707
20022
|
}
|
|
@@ -19716,10 +20031,15 @@ interface Widget extends Atk.ImplementorIface, Clutter.Animatable, Clutter.Conta
|
|
|
19716
20031
|
*/
|
|
19717
20032
|
menu: Menu
|
|
19718
20033
|
tooltip_delay: number
|
|
20034
|
+
tooltipDelay: number
|
|
19719
20035
|
/**
|
|
19720
20036
|
* text displayed on the tooltip
|
|
19721
20037
|
*/
|
|
19722
20038
|
tooltip_text: string | null
|
|
20039
|
+
/**
|
|
20040
|
+
* text displayed on the tooltip
|
|
20041
|
+
*/
|
|
20042
|
+
tooltipText: string | null
|
|
19723
20043
|
|
|
19724
20044
|
// Owm methods of Mx-1.0.Mx.Widget
|
|
19725
20045
|
|
|
@@ -20221,6 +20541,12 @@ module Window {
|
|
|
20221
20541
|
title?: string | null
|
|
20222
20542
|
toolbar?: Toolbar | null
|
|
20223
20543
|
window_rotation?: WindowRotation | null
|
|
20544
|
+
clutterStage?: Clutter.Stage | null
|
|
20545
|
+
hasToolbar?: boolean | null
|
|
20546
|
+
iconCoglTexture?: string | null
|
|
20547
|
+
iconName?: string | null
|
|
20548
|
+
smallScreen?: boolean | null
|
|
20549
|
+
windowRotation?: WindowRotation | null
|
|
20224
20550
|
}
|
|
20225
20551
|
|
|
20226
20552
|
}
|
|
@@ -20231,16 +20557,24 @@ interface Window {
|
|
|
20231
20557
|
|
|
20232
20558
|
child: Clutter.Actor
|
|
20233
20559
|
readonly clutter_stage: Clutter.Stage
|
|
20560
|
+
readonly clutterStage: Clutter.Stage
|
|
20234
20561
|
fullscreen: boolean
|
|
20235
20562
|
has_toolbar: boolean
|
|
20563
|
+
hasToolbar: boolean
|
|
20236
20564
|
icon_cogl_texture: string | null
|
|
20565
|
+
iconCoglTexture: string | null
|
|
20237
20566
|
icon_name: string | null
|
|
20567
|
+
iconName: string | null
|
|
20238
20568
|
small_screen: boolean
|
|
20569
|
+
smallScreen: boolean
|
|
20239
20570
|
title: string | null
|
|
20240
20571
|
toolbar: Toolbar
|
|
20241
20572
|
window_rotation: WindowRotation
|
|
20573
|
+
windowRotation: WindowRotation
|
|
20242
20574
|
readonly window_rotation_angle: number
|
|
20575
|
+
readonly windowRotationAngle: number
|
|
20243
20576
|
readonly window_rotation_timeline: Clutter.Timeline
|
|
20577
|
+
readonly windowRotationTimeline: Clutter.Timeline
|
|
20244
20578
|
|
|
20245
20579
|
// Own fields of Mx-1.0.Mx.Window
|
|
20246
20580
|
|