@girs/mx-1.0 1.4.7-3.2.7 → 1.4.7-3.2.8
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-ambient.js +2 -0
- package/mx-1.0-import.js +3 -0
- package/mx-1.0.d.cts +27 -356
- package/mx-1.0.d.ts +27 -356
- package/package.json +28 -22
package/mx-1.0.d.ts
CHANGED
|
@@ -351,9 +351,6 @@ module Draggable {
|
|
|
351
351
|
// Own constructor properties of Mx-1.0.Mx.Draggable
|
|
352
352
|
|
|
353
353
|
axis?: DragAxis | null
|
|
354
|
-
drag_actor?: Clutter.Actor | null
|
|
355
|
-
drag_enabled?: boolean | null
|
|
356
|
-
drag_threshold?: number | null
|
|
357
354
|
dragActor?: Clutter.Actor | null
|
|
358
355
|
dragEnabled?: boolean | null
|
|
359
356
|
dragThreshold?: number | null
|
|
@@ -366,11 +363,8 @@ interface Draggable extends Clutter.Actor {
|
|
|
366
363
|
// Own properties of Mx-1.0.Mx.Draggable
|
|
367
364
|
|
|
368
365
|
axis: DragAxis
|
|
369
|
-
drag_actor: Clutter.Actor
|
|
370
366
|
dragActor: Clutter.Actor
|
|
371
|
-
drag_enabled: boolean
|
|
372
367
|
dragEnabled: boolean
|
|
373
|
-
drag_threshold: number
|
|
374
368
|
dragThreshold: number
|
|
375
369
|
|
|
376
370
|
// Owm methods of Mx-1.0.Mx.Draggable
|
|
@@ -724,7 +718,6 @@ module Droppable {
|
|
|
724
718
|
|
|
725
719
|
// Own constructor properties of Mx-1.0.Mx.Droppable
|
|
726
720
|
|
|
727
|
-
drop_enabled?: boolean | null
|
|
728
721
|
dropEnabled?: boolean | null
|
|
729
722
|
}
|
|
730
723
|
|
|
@@ -734,7 +727,6 @@ interface Droppable extends Clutter.Actor {
|
|
|
734
727
|
|
|
735
728
|
// Own properties of Mx-1.0.Mx.Droppable
|
|
736
729
|
|
|
737
|
-
drop_enabled: boolean
|
|
738
730
|
dropEnabled: boolean
|
|
739
731
|
|
|
740
732
|
// Owm methods of Mx-1.0.Mx.Droppable
|
|
@@ -1170,8 +1162,6 @@ module Scrollable {
|
|
|
1170
1162
|
|
|
1171
1163
|
// Own constructor properties of Mx-1.0.Mx.Scrollable
|
|
1172
1164
|
|
|
1173
|
-
horizontal_adjustment?: Adjustment | null
|
|
1174
|
-
vertical_adjustment?: Adjustment | null
|
|
1175
1165
|
horizontalAdjustment?: Adjustment | null
|
|
1176
1166
|
verticalAdjustment?: Adjustment | null
|
|
1177
1167
|
}
|
|
@@ -1182,9 +1172,7 @@ interface Scrollable {
|
|
|
1182
1172
|
|
|
1183
1173
|
// Own properties of Mx-1.0.Mx.Scrollable
|
|
1184
1174
|
|
|
1185
|
-
horizontal_adjustment: Adjustment
|
|
1186
1175
|
horizontalAdjustment: Adjustment
|
|
1187
|
-
vertical_adjustment: Adjustment
|
|
1188
1176
|
verticalAdjustment: Adjustment
|
|
1189
1177
|
|
|
1190
1178
|
// Owm methods of Mx-1.0.Mx.Scrollable
|
|
@@ -1256,8 +1244,6 @@ module Stylable {
|
|
|
1256
1244
|
// Own constructor properties of Mx-1.0.Mx.Stylable
|
|
1257
1245
|
|
|
1258
1246
|
style?: Style | null
|
|
1259
|
-
style_class?: string | null
|
|
1260
|
-
style_pseudo_class?: string | null
|
|
1261
1247
|
styleClass?: string | null
|
|
1262
1248
|
stylePseudoClass?: string | null
|
|
1263
1249
|
}
|
|
@@ -1269,9 +1255,7 @@ interface Stylable {
|
|
|
1269
1255
|
// Own properties of Mx-1.0.Mx.Stylable
|
|
1270
1256
|
|
|
1271
1257
|
style: Style
|
|
1272
|
-
style_class: string | null
|
|
1273
1258
|
styleClass: string | null
|
|
1274
|
-
style_pseudo_class: string | null
|
|
1275
1259
|
stylePseudoClass: string | null
|
|
1276
1260
|
|
|
1277
1261
|
// Owm methods of Mx-1.0.Mx.Stylable
|
|
@@ -1555,9 +1539,8 @@ module Action {
|
|
|
1555
1539
|
// Own constructor properties of Mx-1.0.Mx.Action
|
|
1556
1540
|
|
|
1557
1541
|
active?: boolean | null
|
|
1558
|
-
display_name?: string | null
|
|
1559
|
-
icon?: string | null
|
|
1560
1542
|
displayName?: string | null
|
|
1543
|
+
icon?: string | null
|
|
1561
1544
|
}
|
|
1562
1545
|
|
|
1563
1546
|
}
|
|
@@ -1567,7 +1550,6 @@ interface Action extends Gio.Action {
|
|
|
1567
1550
|
// Own properties of Mx-1.0.Mx.Action
|
|
1568
1551
|
|
|
1569
1552
|
active: boolean
|
|
1570
|
-
display_name: string | null
|
|
1571
1553
|
displayName: string | null
|
|
1572
1554
|
icon: string | null
|
|
1573
1555
|
|
|
@@ -1781,7 +1763,6 @@ module ActorManager {
|
|
|
1781
1763
|
// Own constructor properties of Mx-1.0.Mx.ActorManager
|
|
1782
1764
|
|
|
1783
1765
|
stage?: Clutter.Stage | null
|
|
1784
|
-
time_slice?: number | null
|
|
1785
1766
|
timeSlice?: number | null
|
|
1786
1767
|
}
|
|
1787
1768
|
|
|
@@ -1791,10 +1772,8 @@ interface ActorManager {
|
|
|
1791
1772
|
|
|
1792
1773
|
// Own properties of Mx-1.0.Mx.ActorManager
|
|
1793
1774
|
|
|
1794
|
-
readonly n_operations: number
|
|
1795
1775
|
readonly nOperations: number
|
|
1796
1776
|
readonly stage: Clutter.Stage
|
|
1797
|
-
time_slice: number
|
|
1798
1777
|
timeSlice: number
|
|
1799
1778
|
|
|
1800
1779
|
// Own fields of Mx-1.0.Mx.ActorManager
|
|
@@ -2005,18 +1984,14 @@ module Adjustment {
|
|
|
2005
1984
|
|
|
2006
1985
|
// Own constructor properties of Mx-1.0.Mx.Adjustment
|
|
2007
1986
|
|
|
2008
|
-
|
|
1987
|
+
clampValue?: boolean | null
|
|
2009
1988
|
elastic?: boolean | null
|
|
2010
1989
|
lower?: number | null
|
|
2011
|
-
page_increment?: number | null
|
|
2012
|
-
page_size?: number | null
|
|
2013
|
-
step_increment?: number | null
|
|
2014
|
-
upper?: number | null
|
|
2015
|
-
value?: number | null
|
|
2016
|
-
clampValue?: boolean | null
|
|
2017
1990
|
pageIncrement?: number | null
|
|
2018
1991
|
pageSize?: number | null
|
|
2019
1992
|
stepIncrement?: number | null
|
|
1993
|
+
upper?: number | null
|
|
1994
|
+
value?: number | null
|
|
2020
1995
|
}
|
|
2021
1996
|
|
|
2022
1997
|
}
|
|
@@ -2025,15 +2000,11 @@ interface Adjustment {
|
|
|
2025
2000
|
|
|
2026
2001
|
// Own properties of Mx-1.0.Mx.Adjustment
|
|
2027
2002
|
|
|
2028
|
-
clamp_value: boolean
|
|
2029
2003
|
clampValue: boolean
|
|
2030
2004
|
elastic: boolean
|
|
2031
2005
|
lower: number
|
|
2032
|
-
page_increment: number
|
|
2033
2006
|
pageIncrement: number
|
|
2034
|
-
page_size: number
|
|
2035
2007
|
pageSize: number
|
|
2036
|
-
step_increment: number
|
|
2037
2008
|
stepIncrement: number
|
|
2038
2009
|
upper: number
|
|
2039
2010
|
value: number
|
|
@@ -2264,9 +2235,8 @@ module Application {
|
|
|
2264
2235
|
|
|
2265
2236
|
// Own constructor properties of Mx-1.0.Mx.Application
|
|
2266
2237
|
|
|
2267
|
-
application_name?: string | null
|
|
2268
|
-
flags?: number | null
|
|
2269
2238
|
applicationName?: string | null
|
|
2239
|
+
flags?: number | null
|
|
2270
2240
|
}
|
|
2271
2241
|
|
|
2272
2242
|
}
|
|
@@ -2275,7 +2245,6 @@ interface Application {
|
|
|
2275
2245
|
|
|
2276
2246
|
// Own properties of Mx-1.0.Mx.Application
|
|
2277
2247
|
|
|
2278
|
-
readonly application_name: string | null
|
|
2279
2248
|
readonly applicationName: string | null
|
|
2280
2249
|
readonly flags: number
|
|
2281
2250
|
|
|
@@ -2445,22 +2414,6 @@ module Bin {
|
|
|
2445
2414
|
* The child #ClutterActor of the #MxBin container.
|
|
2446
2415
|
*/
|
|
2447
2416
|
child?: Clutter.Actor | null
|
|
2448
|
-
/**
|
|
2449
|
-
* The horizontal alignment of the #MxBin child.
|
|
2450
|
-
*/
|
|
2451
|
-
x_align: any
|
|
2452
|
-
/**
|
|
2453
|
-
* Whether the child should fill the horizontal allocation
|
|
2454
|
-
*/
|
|
2455
|
-
x_fill?: boolean | null
|
|
2456
|
-
/**
|
|
2457
|
-
* The vertical alignment of the #MxBin child.
|
|
2458
|
-
*/
|
|
2459
|
-
y_align: any
|
|
2460
|
-
/**
|
|
2461
|
-
* Whether the child should fill the vertical allocation
|
|
2462
|
-
*/
|
|
2463
|
-
y_fill?: boolean | null
|
|
2464
2417
|
/**
|
|
2465
2418
|
* The horizontal alignment of the #MxBin child.
|
|
2466
2419
|
*/
|
|
@@ -2489,34 +2442,18 @@ interface Bin extends Atk.ImplementorIface, Clutter.Animatable, Clutter.Containe
|
|
|
2489
2442
|
* The child #ClutterActor of the #MxBin container.
|
|
2490
2443
|
*/
|
|
2491
2444
|
child: Clutter.Actor
|
|
2492
|
-
/**
|
|
2493
|
-
* The horizontal alignment of the #MxBin child.
|
|
2494
|
-
*/
|
|
2495
|
-
x_align: any
|
|
2496
2445
|
/**
|
|
2497
2446
|
* The horizontal alignment of the #MxBin child.
|
|
2498
2447
|
*/
|
|
2499
2448
|
xAlign: any
|
|
2500
|
-
/**
|
|
2501
|
-
* Whether the child should fill the horizontal allocation
|
|
2502
|
-
*/
|
|
2503
|
-
x_fill: boolean
|
|
2504
2449
|
/**
|
|
2505
2450
|
* Whether the child should fill the horizontal allocation
|
|
2506
2451
|
*/
|
|
2507
2452
|
xFill: boolean
|
|
2508
|
-
/**
|
|
2509
|
-
* The vertical alignment of the #MxBin child.
|
|
2510
|
-
*/
|
|
2511
|
-
y_align: any
|
|
2512
2453
|
/**
|
|
2513
2454
|
* The vertical alignment of the #MxBin child.
|
|
2514
2455
|
*/
|
|
2515
2456
|
yAlign: any
|
|
2516
|
-
/**
|
|
2517
|
-
* Whether the child should fill the vertical allocation
|
|
2518
|
-
*/
|
|
2519
|
-
y_fill: boolean
|
|
2520
2457
|
/**
|
|
2521
2458
|
* Whether the child should fill the vertical allocation
|
|
2522
2459
|
*/
|
|
@@ -2936,12 +2873,10 @@ module BoxLayout {
|
|
|
2936
2873
|
|
|
2937
2874
|
// Own constructor properties of Mx-1.0.Mx.BoxLayout
|
|
2938
2875
|
|
|
2939
|
-
enable_animations?: boolean | null
|
|
2940
|
-
orientation?: Orientation | null
|
|
2941
|
-
scroll_to_focused?: boolean | null
|
|
2942
|
-
spacing?: number | null
|
|
2943
2876
|
enableAnimations?: boolean | null
|
|
2877
|
+
orientation?: Orientation | null
|
|
2944
2878
|
scrollToFocused?: boolean | null
|
|
2879
|
+
spacing?: number | null
|
|
2945
2880
|
}
|
|
2946
2881
|
|
|
2947
2882
|
}
|
|
@@ -2950,10 +2885,8 @@ interface BoxLayout extends Atk.ImplementorIface, Clutter.Animatable, Clutter.Co
|
|
|
2950
2885
|
|
|
2951
2886
|
// Own properties of Mx-1.0.Mx.BoxLayout
|
|
2952
2887
|
|
|
2953
|
-
enable_animations: boolean
|
|
2954
2888
|
enableAnimations: boolean
|
|
2955
2889
|
orientation: Orientation
|
|
2956
|
-
scroll_to_focused: boolean
|
|
2957
2890
|
scrollToFocused: boolean
|
|
2958
2891
|
spacing: number
|
|
2959
2892
|
|
|
@@ -3467,10 +3400,6 @@ module BoxLayoutChild {
|
|
|
3467
3400
|
// Own constructor properties of Mx-1.0.Mx.BoxLayoutChild
|
|
3468
3401
|
|
|
3469
3402
|
expand?: boolean | null
|
|
3470
|
-
x_align?: Align | null
|
|
3471
|
-
x_fill?: boolean | null
|
|
3472
|
-
y_align?: Align | null
|
|
3473
|
-
y_fill?: boolean | null
|
|
3474
3403
|
xAlign?: Align | null
|
|
3475
3404
|
xFill?: boolean | null
|
|
3476
3405
|
yAlign?: Align | null
|
|
@@ -3484,13 +3413,9 @@ interface BoxLayoutChild {
|
|
|
3484
3413
|
// Own properties of Mx-1.0.Mx.BoxLayoutChild
|
|
3485
3414
|
|
|
3486
3415
|
expand: boolean
|
|
3487
|
-
x_align: Align
|
|
3488
3416
|
xAlign: Align
|
|
3489
|
-
x_fill: boolean
|
|
3490
3417
|
xFill: boolean
|
|
3491
|
-
y_align: Align
|
|
3492
3418
|
yAlign: Align
|
|
3493
|
-
y_fill: boolean
|
|
3494
3419
|
yFill: boolean
|
|
3495
3420
|
|
|
3496
3421
|
// Class property signals of Mx-1.0.Mx.BoxLayoutChild
|
|
@@ -3553,20 +3478,14 @@ module Button {
|
|
|
3553
3478
|
// Own constructor properties of Mx-1.0.Mx.Button
|
|
3554
3479
|
|
|
3555
3480
|
action?: Action | null
|
|
3556
|
-
icon_name?: string | null
|
|
3557
|
-
icon_position?: Position | null
|
|
3558
|
-
icon_size?: number | null
|
|
3559
|
-
icon_visible?: boolean | null
|
|
3560
|
-
is_toggle?: boolean | null
|
|
3561
|
-
label?: string | null
|
|
3562
|
-
label_visible?: boolean | null
|
|
3563
|
-
toggled?: boolean | null
|
|
3564
3481
|
iconName?: string | null
|
|
3565
3482
|
iconPosition?: Position | null
|
|
3566
3483
|
iconSize?: number | null
|
|
3567
3484
|
iconVisible?: boolean | null
|
|
3568
3485
|
isToggle?: boolean | null
|
|
3486
|
+
label?: string | null
|
|
3569
3487
|
labelVisible?: boolean | null
|
|
3488
|
+
toggled?: boolean | null
|
|
3570
3489
|
}
|
|
3571
3490
|
|
|
3572
3491
|
}
|
|
@@ -3576,26 +3495,18 @@ interface Button extends Atk.ImplementorIface, Clutter.Animatable, Clutter.Conta
|
|
|
3576
3495
|
// Own properties of Mx-1.0.Mx.Button
|
|
3577
3496
|
|
|
3578
3497
|
action: Action
|
|
3579
|
-
icon_name: string | null
|
|
3580
3498
|
iconName: string | null
|
|
3581
|
-
icon_position: Position
|
|
3582
3499
|
iconPosition: Position
|
|
3583
|
-
icon_size: number
|
|
3584
3500
|
iconSize: number
|
|
3585
|
-
icon_visible: boolean
|
|
3586
3501
|
iconVisible: boolean
|
|
3587
|
-
is_toggle: boolean
|
|
3588
3502
|
isToggle: boolean
|
|
3589
3503
|
label: string | null
|
|
3590
|
-
label_visible: boolean
|
|
3591
3504
|
labelVisible: boolean
|
|
3592
3505
|
toggled: boolean
|
|
3593
3506
|
|
|
3594
3507
|
// Conflicting properties
|
|
3595
3508
|
|
|
3596
|
-
x_align: any
|
|
3597
3509
|
xAlign: any
|
|
3598
|
-
y_align: any
|
|
3599
3510
|
yAlign: any
|
|
3600
3511
|
|
|
3601
3512
|
// Owm methods of Mx-1.0.Mx.Button
|
|
@@ -4128,8 +4039,6 @@ module ButtonGroup {
|
|
|
4128
4039
|
|
|
4129
4040
|
// Own constructor properties of Mx-1.0.Mx.ButtonGroup
|
|
4130
4041
|
|
|
4131
|
-
active_button?: Button | null
|
|
4132
|
-
allow_no_active?: boolean | null
|
|
4133
4042
|
activeButton?: Button | null
|
|
4134
4043
|
allowNoActive?: boolean | null
|
|
4135
4044
|
}
|
|
@@ -4140,9 +4049,7 @@ interface ButtonGroup {
|
|
|
4140
4049
|
|
|
4141
4050
|
// Own properties of Mx-1.0.Mx.ButtonGroup
|
|
4142
4051
|
|
|
4143
|
-
active_button: Button
|
|
4144
4052
|
activeButton: Button
|
|
4145
|
-
allow_no_active: boolean
|
|
4146
4053
|
allowNoActive: boolean
|
|
4147
4054
|
|
|
4148
4055
|
// Own fields of Mx-1.0.Mx.ButtonGroup
|
|
@@ -4302,11 +4209,9 @@ module ComboBox {
|
|
|
4302
4209
|
|
|
4303
4210
|
// Own constructor properties of Mx-1.0.Mx.ComboBox
|
|
4304
4211
|
|
|
4305
|
-
active_icon_name?: string | null
|
|
4306
|
-
active_text?: string | null
|
|
4307
|
-
index?: number | null
|
|
4308
4212
|
activeIconName?: string | null
|
|
4309
4213
|
activeText?: string | null
|
|
4214
|
+
index?: number | null
|
|
4310
4215
|
}
|
|
4311
4216
|
|
|
4312
4217
|
}
|
|
@@ -4315,9 +4220,7 @@ interface ComboBox extends Atk.ImplementorIface, Clutter.Animatable, Clutter.Con
|
|
|
4315
4220
|
|
|
4316
4221
|
// Own properties of Mx-1.0.Mx.ComboBox
|
|
4317
4222
|
|
|
4318
|
-
active_icon_name: string | null
|
|
4319
4223
|
activeIconName: string | null
|
|
4320
|
-
active_text: string | null
|
|
4321
4224
|
activeText: string | null
|
|
4322
4225
|
index: number
|
|
4323
4226
|
|
|
@@ -4762,9 +4665,8 @@ module DeformBowTie {
|
|
|
4762
4665
|
|
|
4763
4666
|
// Own constructor properties of Mx-1.0.Mx.DeformBowTie
|
|
4764
4667
|
|
|
4765
|
-
flip_back?: boolean | null
|
|
4766
|
-
period?: number | null
|
|
4767
4668
|
flipBack?: boolean | null
|
|
4669
|
+
period?: number | null
|
|
4768
4670
|
}
|
|
4769
4671
|
|
|
4770
4672
|
}
|
|
@@ -4773,7 +4675,6 @@ interface DeformBowTie extends Atk.ImplementorIface, Clutter.Animatable, Clutter
|
|
|
4773
4675
|
|
|
4774
4676
|
// Own properties of Mx-1.0.Mx.DeformBowTie
|
|
4775
4677
|
|
|
4776
|
-
flip_back: boolean
|
|
4777
4678
|
flipBack: boolean
|
|
4778
4679
|
period: number
|
|
4779
4680
|
|
|
@@ -5573,8 +5474,6 @@ module DeformTexture {
|
|
|
5573
5474
|
|
|
5574
5475
|
back?: Clutter.Texture | null
|
|
5575
5476
|
front?: Clutter.Texture | null
|
|
5576
|
-
tiles_x?: number | null
|
|
5577
|
-
tiles_y?: number | null
|
|
5578
5477
|
tilesX?: number | null
|
|
5579
5478
|
tilesY?: number | null
|
|
5580
5479
|
}
|
|
@@ -5587,9 +5486,7 @@ interface DeformTexture extends Atk.ImplementorIface, Clutter.Animatable, Clutte
|
|
|
5587
5486
|
|
|
5588
5487
|
back: Clutter.Texture
|
|
5589
5488
|
front: Clutter.Texture
|
|
5590
|
-
tiles_x: number
|
|
5591
5489
|
tilesX: number
|
|
5592
|
-
tiles_y: number
|
|
5593
5490
|
tilesY: number
|
|
5594
5491
|
|
|
5595
5492
|
// Own fields of Mx-1.0.Mx.DeformTexture
|
|
@@ -6417,9 +6314,7 @@ interface Dialog extends Atk.ImplementorIface, Clutter.Animatable, Clutter.Conta
|
|
|
6417
6314
|
|
|
6418
6315
|
// Conflicting properties
|
|
6419
6316
|
|
|
6420
|
-
x_align: any
|
|
6421
6317
|
xAlign: any
|
|
6422
|
-
y_align: any
|
|
6423
6318
|
yAlign: any
|
|
6424
6319
|
|
|
6425
6320
|
// Owm methods of Mx-1.0.Mx.Dialog
|
|
@@ -6871,17 +6766,12 @@ module Entry {
|
|
|
6871
6766
|
|
|
6872
6767
|
// Own constructor properties of Mx-1.0.Mx.Entry
|
|
6873
6768
|
|
|
6874
|
-
hint_text?: string | null
|
|
6875
|
-
icon_highlight_suffix?: string | null
|
|
6876
|
-
password_char?: number | null
|
|
6877
|
-
primary_icon_tooltip_text?: string | null
|
|
6878
|
-
secondary_icon_tooltip_text?: string | null
|
|
6879
|
-
text?: string | null
|
|
6880
6769
|
hintText?: string | null
|
|
6881
6770
|
iconHighlightSuffix?: string | null
|
|
6882
6771
|
passwordChar?: number | null
|
|
6883
6772
|
primaryIconTooltipText?: string | null
|
|
6884
6773
|
secondaryIconTooltipText?: string | null
|
|
6774
|
+
text?: string | null
|
|
6885
6775
|
}
|
|
6886
6776
|
|
|
6887
6777
|
}
|
|
@@ -6890,17 +6780,11 @@ interface Entry extends Atk.ImplementorIface, Clutter.Animatable, Clutter.Contai
|
|
|
6890
6780
|
|
|
6891
6781
|
// Own properties of Mx-1.0.Mx.Entry
|
|
6892
6782
|
|
|
6893
|
-
readonly clutter_text: Clutter.Text
|
|
6894
6783
|
readonly clutterText: Clutter.Text
|
|
6895
|
-
hint_text: string | null
|
|
6896
6784
|
hintText: string | null
|
|
6897
|
-
icon_highlight_suffix: string | null
|
|
6898
6785
|
iconHighlightSuffix: string | null
|
|
6899
|
-
password_char: number
|
|
6900
6786
|
passwordChar: number
|
|
6901
|
-
primary_icon_tooltip_text: string | null
|
|
6902
6787
|
primaryIconTooltipText: string | null
|
|
6903
|
-
secondary_icon_tooltip_text: string | null
|
|
6904
6788
|
secondaryIconTooltipText: string | null
|
|
6905
6789
|
text: string | null
|
|
6906
6790
|
|
|
@@ -7405,9 +7289,7 @@ interface Expander extends Atk.ImplementorIface, Clutter.Animatable, Clutter.Con
|
|
|
7405
7289
|
|
|
7406
7290
|
// Conflicting properties
|
|
7407
7291
|
|
|
7408
|
-
x_align: any
|
|
7409
7292
|
xAlign: any
|
|
7410
|
-
y_align: any
|
|
7411
7293
|
yAlign: any
|
|
7412
7294
|
|
|
7413
7295
|
// Owm methods of Mx-1.0.Mx.Expander
|
|
@@ -7821,16 +7703,6 @@ module FadeEffect {
|
|
|
7821
7703
|
|
|
7822
7704
|
// Own constructor properties of Mx-1.0.Mx.FadeEffect
|
|
7823
7705
|
|
|
7824
|
-
border_bottom?: number | null
|
|
7825
|
-
border_left?: number | null
|
|
7826
|
-
border_right?: number | null
|
|
7827
|
-
border_top?: number | null
|
|
7828
|
-
bounds_height?: number | null
|
|
7829
|
-
bounds_width?: number | null
|
|
7830
|
-
bounds_x?: number | null
|
|
7831
|
-
bounds_y?: number | null
|
|
7832
|
-
color?: Clutter.Color | null
|
|
7833
|
-
freeze_update?: boolean | null
|
|
7834
7706
|
borderBottom?: number | null
|
|
7835
7707
|
borderLeft?: number | null
|
|
7836
7708
|
borderRight?: number | null
|
|
@@ -7839,6 +7711,7 @@ module FadeEffect {
|
|
|
7839
7711
|
boundsWidth?: number | null
|
|
7840
7712
|
boundsX?: number | null
|
|
7841
7713
|
boundsY?: number | null
|
|
7714
|
+
color?: Clutter.Color | null
|
|
7842
7715
|
freezeUpdate?: boolean | null
|
|
7843
7716
|
}
|
|
7844
7717
|
|
|
@@ -7848,24 +7721,15 @@ interface FadeEffect {
|
|
|
7848
7721
|
|
|
7849
7722
|
// Own properties of Mx-1.0.Mx.FadeEffect
|
|
7850
7723
|
|
|
7851
|
-
border_bottom: number
|
|
7852
7724
|
borderBottom: number
|
|
7853
|
-
border_left: number
|
|
7854
7725
|
borderLeft: number
|
|
7855
|
-
border_right: number
|
|
7856
7726
|
borderRight: number
|
|
7857
|
-
border_top: number
|
|
7858
7727
|
borderTop: number
|
|
7859
|
-
bounds_height: number
|
|
7860
7728
|
boundsHeight: number
|
|
7861
|
-
bounds_width: number
|
|
7862
7729
|
boundsWidth: number
|
|
7863
|
-
bounds_x: number
|
|
7864
7730
|
boundsX: number
|
|
7865
|
-
bounds_y: number
|
|
7866
7731
|
boundsY: number
|
|
7867
7732
|
color: Clutter.Color
|
|
7868
|
-
freeze_update: boolean
|
|
7869
7733
|
freezeUpdate: boolean
|
|
7870
7734
|
|
|
7871
7735
|
// Own fields of Mx-1.0.Mx.FadeEffect
|
|
@@ -8463,9 +8327,7 @@ interface Frame extends Atk.ImplementorIface, Clutter.Animatable, Clutter.Contai
|
|
|
8463
8327
|
|
|
8464
8328
|
// Conflicting properties
|
|
8465
8329
|
|
|
8466
|
-
x_align: any
|
|
8467
8330
|
xAlign: any
|
|
8468
|
-
y_align: any
|
|
8469
8331
|
yAlign: any
|
|
8470
8332
|
|
|
8471
8333
|
// Own fields of Mx-1.0.Mx.Frame
|
|
@@ -8849,15 +8711,6 @@ module Grid {
|
|
|
8849
8711
|
|
|
8850
8712
|
// Own constructor properties of Mx-1.0.Mx.Grid
|
|
8851
8713
|
|
|
8852
|
-
child_x_align?: Align | null
|
|
8853
|
-
child_y_align?: Align | null
|
|
8854
|
-
column_spacing?: number | null
|
|
8855
|
-
homogenous_columns?: boolean | null
|
|
8856
|
-
homogenous_rows?: boolean | null
|
|
8857
|
-
line_alignment?: Align | null
|
|
8858
|
-
max_stride?: number | null
|
|
8859
|
-
orientation?: Orientation | null
|
|
8860
|
-
row_spacing?: number | null
|
|
8861
8714
|
childXAlign?: Align | null
|
|
8862
8715
|
childYAlign?: Align | null
|
|
8863
8716
|
columnSpacing?: number | null
|
|
@@ -8865,6 +8718,7 @@ module Grid {
|
|
|
8865
8718
|
homogenousRows?: boolean | null
|
|
8866
8719
|
lineAlignment?: Align | null
|
|
8867
8720
|
maxStride?: number | null
|
|
8721
|
+
orientation?: Orientation | null
|
|
8868
8722
|
rowSpacing?: number | null
|
|
8869
8723
|
}
|
|
8870
8724
|
|
|
@@ -8874,22 +8728,14 @@ interface Grid extends Atk.ImplementorIface, Clutter.Animatable, Clutter.Contain
|
|
|
8874
8728
|
|
|
8875
8729
|
// Own properties of Mx-1.0.Mx.Grid
|
|
8876
8730
|
|
|
8877
|
-
child_x_align: Align
|
|
8878
8731
|
childXAlign: Align
|
|
8879
|
-
child_y_align: Align
|
|
8880
8732
|
childYAlign: Align
|
|
8881
|
-
column_spacing: number
|
|
8882
8733
|
columnSpacing: number
|
|
8883
|
-
homogenous_columns: boolean
|
|
8884
8734
|
homogenousColumns: boolean
|
|
8885
|
-
homogenous_rows: boolean
|
|
8886
8735
|
homogenousRows: boolean
|
|
8887
|
-
line_alignment: Align
|
|
8888
8736
|
lineAlignment: Align
|
|
8889
|
-
max_stride: number
|
|
8890
8737
|
maxStride: number
|
|
8891
8738
|
orientation: Orientation
|
|
8892
|
-
row_spacing: number
|
|
8893
8739
|
rowSpacing: number
|
|
8894
8740
|
|
|
8895
8741
|
// Owm methods of Mx-1.0.Mx.Grid
|
|
@@ -9303,8 +9149,6 @@ module Icon {
|
|
|
9303
9149
|
|
|
9304
9150
|
// Own constructor properties of Mx-1.0.Mx.Icon
|
|
9305
9151
|
|
|
9306
|
-
icon_name?: string | null
|
|
9307
|
-
icon_size?: number | null
|
|
9308
9152
|
iconName?: string | null
|
|
9309
9153
|
iconSize?: number | null
|
|
9310
9154
|
}
|
|
@@ -9315,9 +9159,7 @@ interface Icon extends Atk.ImplementorIface, Clutter.Animatable, Clutter.Contain
|
|
|
9315
9159
|
|
|
9316
9160
|
// Own properties of Mx-1.0.Mx.Icon
|
|
9317
9161
|
|
|
9318
|
-
icon_name: string | null
|
|
9319
9162
|
iconName: string | null
|
|
9320
|
-
icon_size: number
|
|
9321
9163
|
iconSize: number
|
|
9322
9164
|
|
|
9323
9165
|
// Owm methods of Mx-1.0.Mx.Icon
|
|
@@ -9700,7 +9542,6 @@ module IconTheme {
|
|
|
9700
9542
|
|
|
9701
9543
|
// Own constructor properties of Mx-1.0.Mx.IconTheme
|
|
9702
9544
|
|
|
9703
|
-
theme_name?: string | null
|
|
9704
9545
|
themeName?: string | null
|
|
9705
9546
|
}
|
|
9706
9547
|
|
|
@@ -9710,7 +9551,6 @@ interface IconTheme {
|
|
|
9710
9551
|
|
|
9711
9552
|
// Own properties of Mx-1.0.Mx.IconTheme
|
|
9712
9553
|
|
|
9713
|
-
theme_name: string | null
|
|
9714
9554
|
themeName: string | null
|
|
9715
9555
|
|
|
9716
9556
|
// Own fields of Mx-1.0.Mx.IconTheme
|
|
@@ -9837,13 +9677,6 @@ module Image {
|
|
|
9837
9677
|
|
|
9838
9678
|
// Own constructor properties of Mx-1.0.Mx.Image
|
|
9839
9679
|
|
|
9840
|
-
allow_upscale?: boolean | null
|
|
9841
|
-
image_rotation?: number | null
|
|
9842
|
-
load_async?: boolean | null
|
|
9843
|
-
scale_height_threshold?: number | null
|
|
9844
|
-
scale_mode?: ImageScaleMode | null
|
|
9845
|
-
scale_width_threshold?: number | null
|
|
9846
|
-
transition_duration?: number | null
|
|
9847
9680
|
allowUpscale?: boolean | null
|
|
9848
9681
|
imageRotation?: number | null
|
|
9849
9682
|
loadAsync?: boolean | null
|
|
@@ -9859,19 +9692,12 @@ interface Image extends Atk.ImplementorIface, Clutter.Animatable, Clutter.Contai
|
|
|
9859
9692
|
|
|
9860
9693
|
// Own properties of Mx-1.0.Mx.Image
|
|
9861
9694
|
|
|
9862
|
-
allow_upscale: boolean
|
|
9863
9695
|
allowUpscale: boolean
|
|
9864
|
-
image_rotation: number
|
|
9865
9696
|
imageRotation: number
|
|
9866
|
-
load_async: boolean
|
|
9867
9697
|
loadAsync: boolean
|
|
9868
|
-
scale_height_threshold: number
|
|
9869
9698
|
scaleHeightThreshold: number
|
|
9870
|
-
scale_mode: ImageScaleMode
|
|
9871
9699
|
scaleMode: ImageScaleMode
|
|
9872
|
-
scale_width_threshold: number
|
|
9873
9700
|
scaleWidthThreshold: number
|
|
9874
|
-
transition_duration: number
|
|
9875
9701
|
transitionDuration: number
|
|
9876
9702
|
|
|
9877
9703
|
// Owm methods of Mx-1.0.Mx.Image
|
|
@@ -10441,9 +10267,8 @@ module ItemView {
|
|
|
10441
10267
|
// Own constructor properties of Mx-1.0.Mx.ItemView
|
|
10442
10268
|
|
|
10443
10269
|
factory?: GObject.Object | null
|
|
10444
|
-
item_type?: GObject.GType | null
|
|
10445
|
-
model?: Clutter.Model | null
|
|
10446
10270
|
itemType?: GObject.GType | null
|
|
10271
|
+
model?: Clutter.Model | null
|
|
10447
10272
|
}
|
|
10448
10273
|
|
|
10449
10274
|
}
|
|
@@ -10453,7 +10278,6 @@ interface ItemView extends Atk.ImplementorIface, Clutter.Animatable, Clutter.Con
|
|
|
10453
10278
|
// Own properties of Mx-1.0.Mx.ItemView
|
|
10454
10279
|
|
|
10455
10280
|
factory: GObject.Object
|
|
10456
|
-
item_type: GObject.GType
|
|
10457
10281
|
itemType: GObject.GType
|
|
10458
10282
|
model: Clutter.Model
|
|
10459
10283
|
|
|
@@ -10917,20 +10741,13 @@ module KineticScrollView {
|
|
|
10917
10741
|
|
|
10918
10742
|
// Own constructor properties of Mx-1.0.Mx.KineticScrollView
|
|
10919
10743
|
|
|
10920
|
-
acceleration_factor?: number | null
|
|
10921
|
-
clamp_duration?: number | null
|
|
10922
|
-
clamp_mode?: number | null
|
|
10923
|
-
clamp_to_center?: boolean | null
|
|
10924
|
-
deceleration?: number | null
|
|
10925
|
-
mouse_button?: number | null
|
|
10926
|
-
overshoot?: number | null
|
|
10927
|
-
scroll_policy?: ScrollPolicy | null
|
|
10928
|
-
use_captured?: boolean | null
|
|
10929
10744
|
accelerationFactor?: number | null
|
|
10930
10745
|
clampDuration?: number | null
|
|
10931
10746
|
clampMode?: number | null
|
|
10932
10747
|
clampToCenter?: boolean | null
|
|
10748
|
+
deceleration?: number | null
|
|
10933
10749
|
mouseButton?: number | null
|
|
10750
|
+
overshoot?: number | null
|
|
10934
10751
|
scrollPolicy?: ScrollPolicy | null
|
|
10935
10752
|
useCaptured?: boolean | null
|
|
10936
10753
|
}
|
|
@@ -10941,29 +10758,20 @@ interface KineticScrollView extends Atk.ImplementorIface, Clutter.Animatable, Cl
|
|
|
10941
10758
|
|
|
10942
10759
|
// Own properties of Mx-1.0.Mx.KineticScrollView
|
|
10943
10760
|
|
|
10944
|
-
acceleration_factor: number
|
|
10945
10761
|
accelerationFactor: number
|
|
10946
|
-
clamp_duration: number
|
|
10947
10762
|
clampDuration: number
|
|
10948
|
-
clamp_mode: number
|
|
10949
10763
|
clampMode: number
|
|
10950
|
-
clamp_to_center: boolean
|
|
10951
10764
|
clampToCenter: boolean
|
|
10952
10765
|
deceleration: number
|
|
10953
|
-
mouse_button: number
|
|
10954
10766
|
mouseButton: number
|
|
10955
10767
|
overshoot: number
|
|
10956
|
-
scroll_policy: ScrollPolicy
|
|
10957
10768
|
scrollPolicy: ScrollPolicy
|
|
10958
10769
|
readonly state: KineticScrollViewState
|
|
10959
|
-
use_captured: boolean
|
|
10960
10770
|
useCaptured: boolean
|
|
10961
10771
|
|
|
10962
10772
|
// Conflicting properties
|
|
10963
10773
|
|
|
10964
|
-
x_align: any
|
|
10965
10774
|
xAlign: any
|
|
10966
|
-
y_align: any
|
|
10967
10775
|
yAlign: any
|
|
10968
10776
|
|
|
10969
10777
|
// Owm methods of Mx-1.0.Mx.KineticScrollView
|
|
@@ -11486,22 +11294,6 @@ module Label {
|
|
|
11486
11294
|
|
|
11487
11295
|
// Own constructor properties of Mx-1.0.Mx.Label
|
|
11488
11296
|
|
|
11489
|
-
fade_out?: boolean | null
|
|
11490
|
-
/**
|
|
11491
|
-
* Whether to wrap the lines of #MxLabel:text if the contents
|
|
11492
|
-
* exceed the available allocation.
|
|
11493
|
-
*/
|
|
11494
|
-
line_wrap?: boolean | null
|
|
11495
|
-
/**
|
|
11496
|
-
* Show a tooltip when there is not enough space to display the text. If set
|
|
11497
|
-
* to %TRUE, this will also cause the #ClutterActor:reactive property to be
|
|
11498
|
-
* enabled.
|
|
11499
|
-
*/
|
|
11500
|
-
show_tooltip?: boolean | null
|
|
11501
|
-
text?: string | null
|
|
11502
|
-
use_markup?: boolean | null
|
|
11503
|
-
x_align: any
|
|
11504
|
-
y_align: any
|
|
11505
11297
|
fadeOut?: boolean | null
|
|
11506
11298
|
/**
|
|
11507
11299
|
* Whether to wrap the lines of #MxLabel:text if the contents
|
|
@@ -11514,6 +11306,7 @@ module Label {
|
|
|
11514
11306
|
* enabled.
|
|
11515
11307
|
*/
|
|
11516
11308
|
showTooltip?: boolean | null
|
|
11309
|
+
text?: string | null
|
|
11517
11310
|
useMarkup?: boolean | null
|
|
11518
11311
|
xAlign: any
|
|
11519
11312
|
yAlign: any
|
|
@@ -11525,21 +11318,13 @@ interface Label extends Atk.ImplementorIface, Clutter.Animatable, Clutter.Contai
|
|
|
11525
11318
|
|
|
11526
11319
|
// Own properties of Mx-1.0.Mx.Label
|
|
11527
11320
|
|
|
11528
|
-
readonly clutter_text: Clutter.Text
|
|
11529
11321
|
readonly clutterText: Clutter.Text
|
|
11530
|
-
fade_out: boolean
|
|
11531
11322
|
fadeOut: boolean
|
|
11532
|
-
/**
|
|
11533
|
-
* Whether to wrap the lines of #MxLabel:text if the contents
|
|
11534
|
-
* exceed the available allocation.
|
|
11535
|
-
*/
|
|
11536
|
-
line_wrap: boolean
|
|
11537
11323
|
/**
|
|
11538
11324
|
* Whether to wrap the lines of #MxLabel:text if the contents
|
|
11539
11325
|
* exceed the available allocation.
|
|
11540
11326
|
*/
|
|
11541
11327
|
lineWrap: boolean
|
|
11542
|
-
// Has conflict: show_tooltip: boolean
|
|
11543
11328
|
/**
|
|
11544
11329
|
* Show a tooltip when there is not enough space to display the text. If set
|
|
11545
11330
|
* to %TRUE, this will also cause the #ClutterActor:reactive property to be
|
|
@@ -11547,11 +11332,8 @@ interface Label extends Atk.ImplementorIface, Clutter.Animatable, Clutter.Contai
|
|
|
11547
11332
|
*/
|
|
11548
11333
|
showTooltip: boolean
|
|
11549
11334
|
text: string | null
|
|
11550
|
-
use_markup: boolean
|
|
11551
11335
|
useMarkup: boolean
|
|
11552
|
-
x_align: any
|
|
11553
11336
|
xAlign: any
|
|
11554
|
-
y_align: any
|
|
11555
11337
|
yAlign: any
|
|
11556
11338
|
|
|
11557
11339
|
// Owm methods of Mx-1.0.Mx.Label
|
|
@@ -12052,9 +11834,8 @@ module ListView {
|
|
|
12052
11834
|
// Own constructor properties of Mx-1.0.Mx.ListView
|
|
12053
11835
|
|
|
12054
11836
|
factory?: GObject.Object | null
|
|
12055
|
-
item_type?: GObject.GType | null
|
|
12056
|
-
model?: Clutter.Model | null
|
|
12057
11837
|
itemType?: GObject.GType | null
|
|
11838
|
+
model?: Clutter.Model | null
|
|
12058
11839
|
}
|
|
12059
11840
|
|
|
12060
11841
|
}
|
|
@@ -12064,7 +11845,6 @@ interface ListView extends Atk.ImplementorIface, Clutter.Animatable, Clutter.Con
|
|
|
12064
11845
|
// Own properties of Mx-1.0.Mx.ListView
|
|
12065
11846
|
|
|
12066
11847
|
factory: GObject.Object
|
|
12067
|
-
item_type: GObject.GType
|
|
12068
11848
|
itemType: GObject.GType
|
|
12069
11849
|
model: Clutter.Model
|
|
12070
11850
|
|
|
@@ -12983,8 +12763,6 @@ module Notebook {
|
|
|
12983
12763
|
|
|
12984
12764
|
// Own constructor properties of Mx-1.0.Mx.Notebook
|
|
12985
12765
|
|
|
12986
|
-
current_page?: Clutter.Actor | null
|
|
12987
|
-
enable_gestures?: boolean | null
|
|
12988
12766
|
currentPage?: Clutter.Actor | null
|
|
12989
12767
|
enableGestures?: boolean | null
|
|
12990
12768
|
}
|
|
@@ -12995,9 +12773,7 @@ interface Notebook extends Atk.ImplementorIface, Clutter.Animatable, Clutter.Con
|
|
|
12995
12773
|
|
|
12996
12774
|
// Own properties of Mx-1.0.Mx.Notebook
|
|
12997
12775
|
|
|
12998
|
-
current_page: Clutter.Actor
|
|
12999
12776
|
currentPage: Clutter.Actor
|
|
13000
|
-
enable_gestures: boolean
|
|
13001
12777
|
enableGestures: boolean
|
|
13002
12778
|
|
|
13003
12779
|
// Own fields of Mx-1.0.Mx.Notebook
|
|
@@ -13379,13 +13155,9 @@ module Offscreen {
|
|
|
13379
13155
|
|
|
13380
13156
|
// Own constructor properties of Mx-1.0.Mx.Offscreen
|
|
13381
13157
|
|
|
13382
|
-
accumulation_enabled?: boolean | null
|
|
13383
|
-
auto_update?: boolean | null
|
|
13384
|
-
child?: Clutter.Actor | null
|
|
13385
|
-
pick_child?: boolean | null
|
|
13386
|
-
redirect_enabled?: boolean | null
|
|
13387
13158
|
accumulationEnabled?: boolean | null
|
|
13388
13159
|
autoUpdate?: boolean | null
|
|
13160
|
+
child?: Clutter.Actor | null
|
|
13389
13161
|
pickChild?: boolean | null
|
|
13390
13162
|
redirectEnabled?: boolean | null
|
|
13391
13163
|
}
|
|
@@ -13396,20 +13168,15 @@ interface Offscreen extends Atk.ImplementorIface, Clutter.Animatable, Clutter.Co
|
|
|
13396
13168
|
|
|
13397
13169
|
// Own properties of Mx-1.0.Mx.Offscreen
|
|
13398
13170
|
|
|
13399
|
-
accumulation_enabled: boolean
|
|
13400
13171
|
accumulationEnabled: boolean
|
|
13401
|
-
readonly accumulation_material: any
|
|
13402
13172
|
readonly accumulationMaterial: any
|
|
13403
|
-
auto_update: boolean
|
|
13404
13173
|
autoUpdate: boolean
|
|
13405
13174
|
/**
|
|
13406
13175
|
* The off-screen buffer used to draw the child.
|
|
13407
13176
|
*/
|
|
13408
13177
|
readonly buffer: any
|
|
13409
13178
|
child: Clutter.Actor
|
|
13410
|
-
pick_child: boolean
|
|
13411
13179
|
pickChild: boolean
|
|
13412
|
-
redirect_enabled: boolean
|
|
13413
13180
|
redirectEnabled: boolean
|
|
13414
13181
|
|
|
13415
13182
|
// Own fields of Mx-1.0.Mx.Offscreen
|
|
@@ -13849,9 +13616,8 @@ module PathBar {
|
|
|
13849
13616
|
|
|
13850
13617
|
// Own constructor properties of Mx-1.0.Mx.PathBar
|
|
13851
13618
|
|
|
13852
|
-
clear_on_change?: boolean | null
|
|
13853
|
-
editable?: boolean | null
|
|
13854
13619
|
clearOnChange?: boolean | null
|
|
13620
|
+
editable?: boolean | null
|
|
13855
13621
|
}
|
|
13856
13622
|
|
|
13857
13623
|
}
|
|
@@ -13860,7 +13626,6 @@ interface PathBar extends Atk.ImplementorIface, Clutter.Animatable, Clutter.Cont
|
|
|
13860
13626
|
|
|
13861
13627
|
// Own properties of Mx-1.0.Mx.PathBar
|
|
13862
13628
|
|
|
13863
|
-
clear_on_change: boolean
|
|
13864
13629
|
clearOnChange: boolean
|
|
13865
13630
|
editable: boolean
|
|
13866
13631
|
readonly entry: Entry
|
|
@@ -14714,9 +14479,7 @@ interface ScrollBar extends Atk.ImplementorIface, Clutter.Animatable, Clutter.Co
|
|
|
14714
14479
|
|
|
14715
14480
|
// Conflicting properties
|
|
14716
14481
|
|
|
14717
|
-
x_align: any
|
|
14718
14482
|
xAlign: any
|
|
14719
|
-
y_align: any
|
|
14720
14483
|
yAlign: any
|
|
14721
14484
|
|
|
14722
14485
|
// Owm methods of Mx-1.0.Mx.ScrollBar
|
|
@@ -15134,9 +14897,6 @@ module ScrollView {
|
|
|
15134
14897
|
|
|
15135
14898
|
// Own constructor properties of Mx-1.0.Mx.ScrollView
|
|
15136
14899
|
|
|
15137
|
-
enable_gestures?: boolean | null
|
|
15138
|
-
enable_mouse_scrolling?: boolean | null
|
|
15139
|
-
scroll_policy?: ScrollPolicy | null
|
|
15140
14900
|
enableGestures?: boolean | null
|
|
15141
14901
|
enableMouseScrolling?: boolean | null
|
|
15142
14902
|
scrollPolicy?: ScrollPolicy | null
|
|
@@ -15148,18 +14908,13 @@ interface ScrollView extends Atk.ImplementorIface, Clutter.Animatable, Clutter.C
|
|
|
15148
14908
|
|
|
15149
14909
|
// Own properties of Mx-1.0.Mx.ScrollView
|
|
15150
14910
|
|
|
15151
|
-
enable_gestures: boolean
|
|
15152
14911
|
enableGestures: boolean
|
|
15153
|
-
enable_mouse_scrolling: boolean
|
|
15154
14912
|
enableMouseScrolling: boolean
|
|
15155
|
-
scroll_policy: ScrollPolicy
|
|
15156
14913
|
scrollPolicy: ScrollPolicy
|
|
15157
14914
|
|
|
15158
14915
|
// Conflicting properties
|
|
15159
14916
|
|
|
15160
|
-
x_align: any
|
|
15161
14917
|
xAlign: any
|
|
15162
|
-
y_align: any
|
|
15163
14918
|
yAlign: any
|
|
15164
14919
|
|
|
15165
14920
|
// Owm methods of Mx-1.0.Mx.ScrollView
|
|
@@ -15552,11 +15307,6 @@ module Settings {
|
|
|
15552
15307
|
|
|
15553
15308
|
// Own constructor properties of Mx-1.0.Mx.Settings
|
|
15554
15309
|
|
|
15555
|
-
drag_threshold?: number | null
|
|
15556
|
-
font_name?: string | null
|
|
15557
|
-
icon_theme?: string | null
|
|
15558
|
-
long_press_timeout?: number | null
|
|
15559
|
-
small_screen?: boolean | null
|
|
15560
15310
|
dragThreshold?: number | null
|
|
15561
15311
|
fontName?: string | null
|
|
15562
15312
|
iconTheme?: string | null
|
|
@@ -15570,15 +15320,10 @@ interface Settings {
|
|
|
15570
15320
|
|
|
15571
15321
|
// Own properties of Mx-1.0.Mx.Settings
|
|
15572
15322
|
|
|
15573
|
-
drag_threshold: number
|
|
15574
15323
|
dragThreshold: number
|
|
15575
|
-
font_name: string | null
|
|
15576
15324
|
fontName: string | null
|
|
15577
|
-
icon_theme: string | null
|
|
15578
15325
|
iconTheme: string | null
|
|
15579
|
-
long_press_timeout: number
|
|
15580
15326
|
longPressTimeout: number
|
|
15581
|
-
small_screen: boolean
|
|
15582
15327
|
smallScreen: boolean
|
|
15583
15328
|
|
|
15584
15329
|
// Own fields of Mx-1.0.Mx.Settings
|
|
@@ -15635,9 +15380,8 @@ module Slider {
|
|
|
15635
15380
|
|
|
15636
15381
|
// Own constructor properties of Mx-1.0.Mx.Slider
|
|
15637
15382
|
|
|
15638
|
-
buffer_value?: number | null
|
|
15639
|
-
value?: number | null
|
|
15640
15383
|
bufferValue?: number | null
|
|
15384
|
+
value?: number | null
|
|
15641
15385
|
}
|
|
15642
15386
|
|
|
15643
15387
|
}
|
|
@@ -15646,7 +15390,6 @@ interface Slider extends Atk.ImplementorIface, Clutter.Animatable, Clutter.Conta
|
|
|
15646
15390
|
|
|
15647
15391
|
// Own properties of Mx-1.0.Mx.Slider
|
|
15648
15392
|
|
|
15649
|
-
buffer_value: number
|
|
15650
15393
|
bufferValue: number
|
|
15651
15394
|
value: number
|
|
15652
15395
|
|
|
@@ -16908,10 +16651,6 @@ module StackChild {
|
|
|
16908
16651
|
|
|
16909
16652
|
crop?: boolean | null
|
|
16910
16653
|
fit?: boolean | null
|
|
16911
|
-
x_align?: Align | null
|
|
16912
|
-
x_fill?: boolean | null
|
|
16913
|
-
y_align?: Align | null
|
|
16914
|
-
y_fill?: boolean | null
|
|
16915
16654
|
xAlign?: Align | null
|
|
16916
16655
|
xFill?: boolean | null
|
|
16917
16656
|
yAlign?: Align | null
|
|
@@ -16926,13 +16665,9 @@ interface StackChild {
|
|
|
16926
16665
|
|
|
16927
16666
|
crop: boolean
|
|
16928
16667
|
fit: boolean
|
|
16929
|
-
x_align: Align
|
|
16930
16668
|
xAlign: Align
|
|
16931
|
-
x_fill: boolean
|
|
16932
16669
|
xFill: boolean
|
|
16933
|
-
y_align: Align
|
|
16934
16670
|
yAlign: Align
|
|
16935
|
-
y_fill: boolean
|
|
16936
16671
|
yFill: boolean
|
|
16937
16672
|
|
|
16938
16673
|
// Class property signals of Mx-1.0.Mx.StackChild
|
|
@@ -17103,8 +16838,6 @@ module Table {
|
|
|
17103
16838
|
|
|
17104
16839
|
// Own constructor properties of Mx-1.0.Mx.Table
|
|
17105
16840
|
|
|
17106
|
-
column_spacing?: number | null
|
|
17107
|
-
row_spacing?: number | null
|
|
17108
16841
|
columnSpacing?: number | null
|
|
17109
16842
|
rowSpacing?: number | null
|
|
17110
16843
|
}
|
|
@@ -17115,13 +16848,9 @@ interface Table extends Atk.ImplementorIface, Clutter.Animatable, Clutter.Contai
|
|
|
17115
16848
|
|
|
17116
16849
|
// Own properties of Mx-1.0.Mx.Table
|
|
17117
16850
|
|
|
17118
|
-
readonly column_count: number
|
|
17119
16851
|
readonly columnCount: number
|
|
17120
|
-
column_spacing: number
|
|
17121
16852
|
columnSpacing: number
|
|
17122
|
-
readonly row_count: number
|
|
17123
16853
|
readonly rowCount: number
|
|
17124
|
-
row_spacing: number
|
|
17125
16854
|
rowSpacing: number
|
|
17126
16855
|
|
|
17127
16856
|
// Owm methods of Mx-1.0.Mx.Table
|
|
@@ -17689,16 +17418,8 @@ module TableChild {
|
|
|
17689
17418
|
// Own constructor properties of Mx-1.0.Mx.TableChild
|
|
17690
17419
|
|
|
17691
17420
|
column?: number | null
|
|
17692
|
-
column_span?: number | null
|
|
17693
|
-
row?: number | null
|
|
17694
|
-
row_span?: number | null
|
|
17695
|
-
x_align?: Align | null
|
|
17696
|
-
x_expand?: boolean | null
|
|
17697
|
-
x_fill?: boolean | null
|
|
17698
|
-
y_align?: Align | null
|
|
17699
|
-
y_expand?: boolean | null
|
|
17700
|
-
y_fill?: boolean | null
|
|
17701
17421
|
columnSpan?: number | null
|
|
17422
|
+
row?: number | null
|
|
17702
17423
|
rowSpan?: number | null
|
|
17703
17424
|
xAlign?: Align | null
|
|
17704
17425
|
xExpand?: boolean | null
|
|
@@ -17715,22 +17436,14 @@ interface TableChild {
|
|
|
17715
17436
|
// Own properties of Mx-1.0.Mx.TableChild
|
|
17716
17437
|
|
|
17717
17438
|
column: number
|
|
17718
|
-
column_span: number
|
|
17719
17439
|
columnSpan: number
|
|
17720
17440
|
row: number
|
|
17721
|
-
row_span: number
|
|
17722
17441
|
rowSpan: number
|
|
17723
|
-
x_align: Align
|
|
17724
17442
|
xAlign: Align
|
|
17725
|
-
x_expand: boolean
|
|
17726
17443
|
xExpand: boolean
|
|
17727
|
-
x_fill: boolean
|
|
17728
17444
|
xFill: boolean
|
|
17729
|
-
y_align: Align
|
|
17730
17445
|
yAlign: Align
|
|
17731
|
-
y_expand: boolean
|
|
17732
17446
|
yExpand: boolean
|
|
17733
|
-
y_fill: boolean
|
|
17734
17447
|
yFill: boolean
|
|
17735
17448
|
|
|
17736
17449
|
// Class property signals of Mx-1.0.Mx.TableChild
|
|
@@ -17939,10 +17652,9 @@ module TextureFrame {
|
|
|
17939
17652
|
|
|
17940
17653
|
bottom?: number | null
|
|
17941
17654
|
left?: number | null
|
|
17942
|
-
|
|
17655
|
+
parentTexture?: Clutter.Texture | null
|
|
17943
17656
|
right?: number | null
|
|
17944
17657
|
top?: number | null
|
|
17945
|
-
parentTexture?: Clutter.Texture | null
|
|
17946
17658
|
}
|
|
17947
17659
|
|
|
17948
17660
|
}
|
|
@@ -17953,7 +17665,6 @@ interface TextureFrame extends Atk.ImplementorIface, Clutter.Animatable, Clutter
|
|
|
17953
17665
|
|
|
17954
17666
|
bottom: number
|
|
17955
17667
|
left: number
|
|
17956
|
-
parent_texture: Clutter.Texture
|
|
17957
17668
|
parentTexture: Clutter.Texture
|
|
17958
17669
|
right: number
|
|
17959
17670
|
top: number
|
|
@@ -18718,7 +18429,6 @@ module Toolbar {
|
|
|
18718
18429
|
|
|
18719
18430
|
// Own constructor properties of Mx-1.0.Mx.Toolbar
|
|
18720
18431
|
|
|
18721
|
-
has_close_button?: boolean | null
|
|
18722
18432
|
hasCloseButton?: boolean | null
|
|
18723
18433
|
}
|
|
18724
18434
|
|
|
@@ -18728,14 +18438,11 @@ interface Toolbar extends Atk.ImplementorIface, Clutter.Animatable, Clutter.Cont
|
|
|
18728
18438
|
|
|
18729
18439
|
// Own properties of Mx-1.0.Mx.Toolbar
|
|
18730
18440
|
|
|
18731
|
-
has_close_button: boolean
|
|
18732
18441
|
hasCloseButton: boolean
|
|
18733
18442
|
|
|
18734
18443
|
// Conflicting properties
|
|
18735
18444
|
|
|
18736
|
-
x_align: any
|
|
18737
18445
|
xAlign: any
|
|
18738
|
-
y_align: any
|
|
18739
18446
|
yAlign: any
|
|
18740
18447
|
|
|
18741
18448
|
// Own fields of Mx-1.0.Mx.Toolbar
|
|
@@ -19148,7 +18855,6 @@ module Tooltip {
|
|
|
19148
18855
|
// Own constructor properties of Mx-1.0.Mx.Tooltip
|
|
19149
18856
|
|
|
19150
18857
|
text?: string | null
|
|
19151
|
-
tip_area?: Clutter.Geometry | null
|
|
19152
18858
|
tipArea?: Clutter.Geometry | null
|
|
19153
18859
|
}
|
|
19154
18860
|
|
|
@@ -19159,7 +18865,6 @@ interface Tooltip extends Atk.ImplementorIface, Clutter.Animatable, Clutter.Cont
|
|
|
19159
18865
|
// Own properties of Mx-1.0.Mx.Tooltip
|
|
19160
18866
|
|
|
19161
18867
|
text: string | null
|
|
19162
|
-
tip_area: Clutter.Geometry
|
|
19163
18868
|
tipArea: Clutter.Geometry
|
|
19164
18869
|
|
|
19165
18870
|
// Owm methods of Mx-1.0.Mx.Tooltip
|
|
@@ -19569,10 +19274,6 @@ module Viewport {
|
|
|
19569
19274
|
|
|
19570
19275
|
// Own constructor properties of Mx-1.0.Mx.Viewport
|
|
19571
19276
|
|
|
19572
|
-
sync_adjustments?: boolean | null
|
|
19573
|
-
x_origin?: number | null
|
|
19574
|
-
y_origin?: number | null
|
|
19575
|
-
z_origin?: number | null
|
|
19576
19277
|
syncAdjustments?: boolean | null
|
|
19577
19278
|
xOrigin?: number | null
|
|
19578
19279
|
yOrigin?: number | null
|
|
@@ -19585,20 +19286,14 @@ interface Viewport extends Atk.ImplementorIface, Clutter.Animatable, Clutter.Con
|
|
|
19585
19286
|
|
|
19586
19287
|
// Own properties of Mx-1.0.Mx.Viewport
|
|
19587
19288
|
|
|
19588
|
-
sync_adjustments: boolean
|
|
19589
19289
|
syncAdjustments: boolean
|
|
19590
|
-
x_origin: number
|
|
19591
19290
|
xOrigin: number
|
|
19592
|
-
y_origin: number
|
|
19593
19291
|
yOrigin: number
|
|
19594
|
-
z_origin: number
|
|
19595
19292
|
zOrigin: number
|
|
19596
19293
|
|
|
19597
19294
|
// Conflicting properties
|
|
19598
19295
|
|
|
19599
|
-
x_align: any
|
|
19600
19296
|
xAlign: any
|
|
19601
|
-
y_align: any
|
|
19602
19297
|
yAlign: any
|
|
19603
19298
|
|
|
19604
19299
|
// Owm methods of Mx-1.0.Mx.Viewport
|
|
@@ -20007,11 +19702,6 @@ module Widget {
|
|
|
20007
19702
|
* #MxMenu associated with the widget.
|
|
20008
19703
|
*/
|
|
20009
19704
|
menu?: Menu | null
|
|
20010
|
-
tooltip_delay?: number | null
|
|
20011
|
-
/**
|
|
20012
|
-
* text displayed on the tooltip
|
|
20013
|
-
*/
|
|
20014
|
-
tooltip_text?: string | null
|
|
20015
19705
|
tooltipDelay?: number | null
|
|
20016
19706
|
/**
|
|
20017
19707
|
* text displayed on the tooltip
|
|
@@ -20030,12 +19720,7 @@ interface Widget extends Atk.ImplementorIface, Clutter.Animatable, Clutter.Conta
|
|
|
20030
19720
|
* #MxMenu associated with the widget.
|
|
20031
19721
|
*/
|
|
20032
19722
|
menu: Menu
|
|
20033
|
-
tooltip_delay: number
|
|
20034
19723
|
tooltipDelay: number
|
|
20035
|
-
/**
|
|
20036
|
-
* text displayed on the tooltip
|
|
20037
|
-
*/
|
|
20038
|
-
tooltip_text: string | null
|
|
20039
19724
|
/**
|
|
20040
19725
|
* text displayed on the tooltip
|
|
20041
19726
|
*/
|
|
@@ -20532,20 +20217,14 @@ module Window {
|
|
|
20532
20217
|
// Own constructor properties of Mx-1.0.Mx.Window
|
|
20533
20218
|
|
|
20534
20219
|
child?: Clutter.Actor | null
|
|
20535
|
-
clutter_stage?: Clutter.Stage | null
|
|
20536
|
-
fullscreen?: boolean | null
|
|
20537
|
-
has_toolbar?: boolean | null
|
|
20538
|
-
icon_cogl_texture?: string | null
|
|
20539
|
-
icon_name?: string | null
|
|
20540
|
-
small_screen?: boolean | null
|
|
20541
|
-
title?: string | null
|
|
20542
|
-
toolbar?: Toolbar | null
|
|
20543
|
-
window_rotation?: WindowRotation | null
|
|
20544
20220
|
clutterStage?: Clutter.Stage | null
|
|
20221
|
+
fullscreen?: boolean | null
|
|
20545
20222
|
hasToolbar?: boolean | null
|
|
20546
20223
|
iconCoglTexture?: string | null
|
|
20547
20224
|
iconName?: string | null
|
|
20548
20225
|
smallScreen?: boolean | null
|
|
20226
|
+
title?: string | null
|
|
20227
|
+
toolbar?: Toolbar | null
|
|
20549
20228
|
windowRotation?: WindowRotation | null
|
|
20550
20229
|
}
|
|
20551
20230
|
|
|
@@ -20556,24 +20235,16 @@ interface Window {
|
|
|
20556
20235
|
// Own properties of Mx-1.0.Mx.Window
|
|
20557
20236
|
|
|
20558
20237
|
child: Clutter.Actor
|
|
20559
|
-
readonly clutter_stage: Clutter.Stage
|
|
20560
20238
|
readonly clutterStage: Clutter.Stage
|
|
20561
20239
|
fullscreen: boolean
|
|
20562
|
-
has_toolbar: boolean
|
|
20563
20240
|
hasToolbar: boolean
|
|
20564
|
-
icon_cogl_texture: string | null
|
|
20565
20241
|
iconCoglTexture: string | null
|
|
20566
|
-
icon_name: string | null
|
|
20567
20242
|
iconName: string | null
|
|
20568
|
-
small_screen: boolean
|
|
20569
20243
|
smallScreen: boolean
|
|
20570
20244
|
title: string | null
|
|
20571
20245
|
toolbar: Toolbar
|
|
20572
|
-
window_rotation: WindowRotation
|
|
20573
20246
|
windowRotation: WindowRotation
|
|
20574
|
-
readonly window_rotation_angle: number
|
|
20575
20247
|
readonly windowRotationAngle: number
|
|
20576
|
-
readonly window_rotation_timeline: Clutter.Timeline
|
|
20577
20248
|
readonly windowRotationTimeline: Clutter.Timeline
|
|
20578
20249
|
|
|
20579
20250
|
// Own fields of Mx-1.0.Mx.Window
|