@girs/mx-1.0 1.4.7-3.2.7 → 1.4.7-3.2.9
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.d.ts +0 -4
- 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.cts
CHANGED
|
@@ -349,9 +349,6 @@ export module Draggable {
|
|
|
349
349
|
// Own constructor properties of Mx-1.0.Mx.Draggable
|
|
350
350
|
|
|
351
351
|
axis?: DragAxis | null
|
|
352
|
-
drag_actor?: Clutter.Actor | null
|
|
353
|
-
drag_enabled?: boolean | null
|
|
354
|
-
drag_threshold?: number | null
|
|
355
352
|
dragActor?: Clutter.Actor | null
|
|
356
353
|
dragEnabled?: boolean | null
|
|
357
354
|
dragThreshold?: number | null
|
|
@@ -364,11 +361,8 @@ export interface Draggable extends Clutter.Actor {
|
|
|
364
361
|
// Own properties of Mx-1.0.Mx.Draggable
|
|
365
362
|
|
|
366
363
|
axis: DragAxis
|
|
367
|
-
drag_actor: Clutter.Actor
|
|
368
364
|
dragActor: Clutter.Actor
|
|
369
|
-
drag_enabled: boolean
|
|
370
365
|
dragEnabled: boolean
|
|
371
|
-
drag_threshold: number
|
|
372
366
|
dragThreshold: number
|
|
373
367
|
|
|
374
368
|
// Owm methods of Mx-1.0.Mx.Draggable
|
|
@@ -722,7 +716,6 @@ export module Droppable {
|
|
|
722
716
|
|
|
723
717
|
// Own constructor properties of Mx-1.0.Mx.Droppable
|
|
724
718
|
|
|
725
|
-
drop_enabled?: boolean | null
|
|
726
719
|
dropEnabled?: boolean | null
|
|
727
720
|
}
|
|
728
721
|
|
|
@@ -732,7 +725,6 @@ export interface Droppable extends Clutter.Actor {
|
|
|
732
725
|
|
|
733
726
|
// Own properties of Mx-1.0.Mx.Droppable
|
|
734
727
|
|
|
735
|
-
drop_enabled: boolean
|
|
736
728
|
dropEnabled: boolean
|
|
737
729
|
|
|
738
730
|
// Owm methods of Mx-1.0.Mx.Droppable
|
|
@@ -1168,8 +1160,6 @@ export module Scrollable {
|
|
|
1168
1160
|
|
|
1169
1161
|
// Own constructor properties of Mx-1.0.Mx.Scrollable
|
|
1170
1162
|
|
|
1171
|
-
horizontal_adjustment?: Adjustment | null
|
|
1172
|
-
vertical_adjustment?: Adjustment | null
|
|
1173
1163
|
horizontalAdjustment?: Adjustment | null
|
|
1174
1164
|
verticalAdjustment?: Adjustment | null
|
|
1175
1165
|
}
|
|
@@ -1180,9 +1170,7 @@ export interface Scrollable {
|
|
|
1180
1170
|
|
|
1181
1171
|
// Own properties of Mx-1.0.Mx.Scrollable
|
|
1182
1172
|
|
|
1183
|
-
horizontal_adjustment: Adjustment
|
|
1184
1173
|
horizontalAdjustment: Adjustment
|
|
1185
|
-
vertical_adjustment: Adjustment
|
|
1186
1174
|
verticalAdjustment: Adjustment
|
|
1187
1175
|
|
|
1188
1176
|
// Owm methods of Mx-1.0.Mx.Scrollable
|
|
@@ -1254,8 +1242,6 @@ export module Stylable {
|
|
|
1254
1242
|
// Own constructor properties of Mx-1.0.Mx.Stylable
|
|
1255
1243
|
|
|
1256
1244
|
style?: Style | null
|
|
1257
|
-
style_class?: string | null
|
|
1258
|
-
style_pseudo_class?: string | null
|
|
1259
1245
|
styleClass?: string | null
|
|
1260
1246
|
stylePseudoClass?: string | null
|
|
1261
1247
|
}
|
|
@@ -1267,9 +1253,7 @@ export interface Stylable {
|
|
|
1267
1253
|
// Own properties of Mx-1.0.Mx.Stylable
|
|
1268
1254
|
|
|
1269
1255
|
style: Style
|
|
1270
|
-
style_class: string | null
|
|
1271
1256
|
styleClass: string | null
|
|
1272
|
-
style_pseudo_class: string | null
|
|
1273
1257
|
stylePseudoClass: string | null
|
|
1274
1258
|
|
|
1275
1259
|
// Owm methods of Mx-1.0.Mx.Stylable
|
|
@@ -1553,9 +1537,8 @@ export module Action {
|
|
|
1553
1537
|
// Own constructor properties of Mx-1.0.Mx.Action
|
|
1554
1538
|
|
|
1555
1539
|
active?: boolean | null
|
|
1556
|
-
display_name?: string | null
|
|
1557
|
-
icon?: string | null
|
|
1558
1540
|
displayName?: string | null
|
|
1541
|
+
icon?: string | null
|
|
1559
1542
|
}
|
|
1560
1543
|
|
|
1561
1544
|
}
|
|
@@ -1565,7 +1548,6 @@ export interface Action extends Gio.Action {
|
|
|
1565
1548
|
// Own properties of Mx-1.0.Mx.Action
|
|
1566
1549
|
|
|
1567
1550
|
active: boolean
|
|
1568
|
-
display_name: string | null
|
|
1569
1551
|
displayName: string | null
|
|
1570
1552
|
icon: string | null
|
|
1571
1553
|
|
|
@@ -1779,7 +1761,6 @@ export module ActorManager {
|
|
|
1779
1761
|
// Own constructor properties of Mx-1.0.Mx.ActorManager
|
|
1780
1762
|
|
|
1781
1763
|
stage?: Clutter.Stage | null
|
|
1782
|
-
time_slice?: number | null
|
|
1783
1764
|
timeSlice?: number | null
|
|
1784
1765
|
}
|
|
1785
1766
|
|
|
@@ -1789,10 +1770,8 @@ export interface ActorManager {
|
|
|
1789
1770
|
|
|
1790
1771
|
// Own properties of Mx-1.0.Mx.ActorManager
|
|
1791
1772
|
|
|
1792
|
-
readonly n_operations: number
|
|
1793
1773
|
readonly nOperations: number
|
|
1794
1774
|
readonly stage: Clutter.Stage
|
|
1795
|
-
time_slice: number
|
|
1796
1775
|
timeSlice: number
|
|
1797
1776
|
|
|
1798
1777
|
// Own fields of Mx-1.0.Mx.ActorManager
|
|
@@ -2003,18 +1982,14 @@ export module Adjustment {
|
|
|
2003
1982
|
|
|
2004
1983
|
// Own constructor properties of Mx-1.0.Mx.Adjustment
|
|
2005
1984
|
|
|
2006
|
-
|
|
1985
|
+
clampValue?: boolean | null
|
|
2007
1986
|
elastic?: boolean | null
|
|
2008
1987
|
lower?: number | null
|
|
2009
|
-
page_increment?: number | null
|
|
2010
|
-
page_size?: number | null
|
|
2011
|
-
step_increment?: number | null
|
|
2012
|
-
upper?: number | null
|
|
2013
|
-
value?: number | null
|
|
2014
|
-
clampValue?: boolean | null
|
|
2015
1988
|
pageIncrement?: number | null
|
|
2016
1989
|
pageSize?: number | null
|
|
2017
1990
|
stepIncrement?: number | null
|
|
1991
|
+
upper?: number | null
|
|
1992
|
+
value?: number | null
|
|
2018
1993
|
}
|
|
2019
1994
|
|
|
2020
1995
|
}
|
|
@@ -2023,15 +1998,11 @@ export interface Adjustment {
|
|
|
2023
1998
|
|
|
2024
1999
|
// Own properties of Mx-1.0.Mx.Adjustment
|
|
2025
2000
|
|
|
2026
|
-
clamp_value: boolean
|
|
2027
2001
|
clampValue: boolean
|
|
2028
2002
|
elastic: boolean
|
|
2029
2003
|
lower: number
|
|
2030
|
-
page_increment: number
|
|
2031
2004
|
pageIncrement: number
|
|
2032
|
-
page_size: number
|
|
2033
2005
|
pageSize: number
|
|
2034
|
-
step_increment: number
|
|
2035
2006
|
stepIncrement: number
|
|
2036
2007
|
upper: number
|
|
2037
2008
|
value: number
|
|
@@ -2262,9 +2233,8 @@ export module Application {
|
|
|
2262
2233
|
|
|
2263
2234
|
// Own constructor properties of Mx-1.0.Mx.Application
|
|
2264
2235
|
|
|
2265
|
-
application_name?: string | null
|
|
2266
|
-
flags?: number | null
|
|
2267
2236
|
applicationName?: string | null
|
|
2237
|
+
flags?: number | null
|
|
2268
2238
|
}
|
|
2269
2239
|
|
|
2270
2240
|
}
|
|
@@ -2273,7 +2243,6 @@ export interface Application {
|
|
|
2273
2243
|
|
|
2274
2244
|
// Own properties of Mx-1.0.Mx.Application
|
|
2275
2245
|
|
|
2276
|
-
readonly application_name: string | null
|
|
2277
2246
|
readonly applicationName: string | null
|
|
2278
2247
|
readonly flags: number
|
|
2279
2248
|
|
|
@@ -2443,22 +2412,6 @@ export module Bin {
|
|
|
2443
2412
|
* The child #ClutterActor of the #MxBin container.
|
|
2444
2413
|
*/
|
|
2445
2414
|
child?: Clutter.Actor | null
|
|
2446
|
-
/**
|
|
2447
|
-
* The horizontal alignment of the #MxBin child.
|
|
2448
|
-
*/
|
|
2449
|
-
x_align: any
|
|
2450
|
-
/**
|
|
2451
|
-
* Whether the child should fill the horizontal allocation
|
|
2452
|
-
*/
|
|
2453
|
-
x_fill?: boolean | null
|
|
2454
|
-
/**
|
|
2455
|
-
* The vertical alignment of the #MxBin child.
|
|
2456
|
-
*/
|
|
2457
|
-
y_align: any
|
|
2458
|
-
/**
|
|
2459
|
-
* Whether the child should fill the vertical allocation
|
|
2460
|
-
*/
|
|
2461
|
-
y_fill?: boolean | null
|
|
2462
2415
|
/**
|
|
2463
2416
|
* The horizontal alignment of the #MxBin child.
|
|
2464
2417
|
*/
|
|
@@ -2487,34 +2440,18 @@ export interface Bin extends Atk.ImplementorIface, Clutter.Animatable, Clutter.C
|
|
|
2487
2440
|
* The child #ClutterActor of the #MxBin container.
|
|
2488
2441
|
*/
|
|
2489
2442
|
child: Clutter.Actor
|
|
2490
|
-
/**
|
|
2491
|
-
* The horizontal alignment of the #MxBin child.
|
|
2492
|
-
*/
|
|
2493
|
-
x_align: any
|
|
2494
2443
|
/**
|
|
2495
2444
|
* The horizontal alignment of the #MxBin child.
|
|
2496
2445
|
*/
|
|
2497
2446
|
xAlign: any
|
|
2498
|
-
/**
|
|
2499
|
-
* Whether the child should fill the horizontal allocation
|
|
2500
|
-
*/
|
|
2501
|
-
x_fill: boolean
|
|
2502
2447
|
/**
|
|
2503
2448
|
* Whether the child should fill the horizontal allocation
|
|
2504
2449
|
*/
|
|
2505
2450
|
xFill: boolean
|
|
2506
|
-
/**
|
|
2507
|
-
* The vertical alignment of the #MxBin child.
|
|
2508
|
-
*/
|
|
2509
|
-
y_align: any
|
|
2510
2451
|
/**
|
|
2511
2452
|
* The vertical alignment of the #MxBin child.
|
|
2512
2453
|
*/
|
|
2513
2454
|
yAlign: any
|
|
2514
|
-
/**
|
|
2515
|
-
* Whether the child should fill the vertical allocation
|
|
2516
|
-
*/
|
|
2517
|
-
y_fill: boolean
|
|
2518
2455
|
/**
|
|
2519
2456
|
* Whether the child should fill the vertical allocation
|
|
2520
2457
|
*/
|
|
@@ -2934,12 +2871,10 @@ export module BoxLayout {
|
|
|
2934
2871
|
|
|
2935
2872
|
// Own constructor properties of Mx-1.0.Mx.BoxLayout
|
|
2936
2873
|
|
|
2937
|
-
enable_animations?: boolean | null
|
|
2938
|
-
orientation?: Orientation | null
|
|
2939
|
-
scroll_to_focused?: boolean | null
|
|
2940
|
-
spacing?: number | null
|
|
2941
2874
|
enableAnimations?: boolean | null
|
|
2875
|
+
orientation?: Orientation | null
|
|
2942
2876
|
scrollToFocused?: boolean | null
|
|
2877
|
+
spacing?: number | null
|
|
2943
2878
|
}
|
|
2944
2879
|
|
|
2945
2880
|
}
|
|
@@ -2948,10 +2883,8 @@ export interface BoxLayout extends Atk.ImplementorIface, Clutter.Animatable, Clu
|
|
|
2948
2883
|
|
|
2949
2884
|
// Own properties of Mx-1.0.Mx.BoxLayout
|
|
2950
2885
|
|
|
2951
|
-
enable_animations: boolean
|
|
2952
2886
|
enableAnimations: boolean
|
|
2953
2887
|
orientation: Orientation
|
|
2954
|
-
scroll_to_focused: boolean
|
|
2955
2888
|
scrollToFocused: boolean
|
|
2956
2889
|
spacing: number
|
|
2957
2890
|
|
|
@@ -3465,10 +3398,6 @@ export module BoxLayoutChild {
|
|
|
3465
3398
|
// Own constructor properties of Mx-1.0.Mx.BoxLayoutChild
|
|
3466
3399
|
|
|
3467
3400
|
expand?: boolean | null
|
|
3468
|
-
x_align?: Align | null
|
|
3469
|
-
x_fill?: boolean | null
|
|
3470
|
-
y_align?: Align | null
|
|
3471
|
-
y_fill?: boolean | null
|
|
3472
3401
|
xAlign?: Align | null
|
|
3473
3402
|
xFill?: boolean | null
|
|
3474
3403
|
yAlign?: Align | null
|
|
@@ -3482,13 +3411,9 @@ export interface BoxLayoutChild {
|
|
|
3482
3411
|
// Own properties of Mx-1.0.Mx.BoxLayoutChild
|
|
3483
3412
|
|
|
3484
3413
|
expand: boolean
|
|
3485
|
-
x_align: Align
|
|
3486
3414
|
xAlign: Align
|
|
3487
|
-
x_fill: boolean
|
|
3488
3415
|
xFill: boolean
|
|
3489
|
-
y_align: Align
|
|
3490
3416
|
yAlign: Align
|
|
3491
|
-
y_fill: boolean
|
|
3492
3417
|
yFill: boolean
|
|
3493
3418
|
|
|
3494
3419
|
// Class property signals of Mx-1.0.Mx.BoxLayoutChild
|
|
@@ -3551,20 +3476,14 @@ export module Button {
|
|
|
3551
3476
|
// Own constructor properties of Mx-1.0.Mx.Button
|
|
3552
3477
|
|
|
3553
3478
|
action?: Action | null
|
|
3554
|
-
icon_name?: string | null
|
|
3555
|
-
icon_position?: Position | null
|
|
3556
|
-
icon_size?: number | null
|
|
3557
|
-
icon_visible?: boolean | null
|
|
3558
|
-
is_toggle?: boolean | null
|
|
3559
|
-
label?: string | null
|
|
3560
|
-
label_visible?: boolean | null
|
|
3561
|
-
toggled?: boolean | null
|
|
3562
3479
|
iconName?: string | null
|
|
3563
3480
|
iconPosition?: Position | null
|
|
3564
3481
|
iconSize?: number | null
|
|
3565
3482
|
iconVisible?: boolean | null
|
|
3566
3483
|
isToggle?: boolean | null
|
|
3484
|
+
label?: string | null
|
|
3567
3485
|
labelVisible?: boolean | null
|
|
3486
|
+
toggled?: boolean | null
|
|
3568
3487
|
}
|
|
3569
3488
|
|
|
3570
3489
|
}
|
|
@@ -3574,26 +3493,18 @@ export interface Button extends Atk.ImplementorIface, Clutter.Animatable, Clutte
|
|
|
3574
3493
|
// Own properties of Mx-1.0.Mx.Button
|
|
3575
3494
|
|
|
3576
3495
|
action: Action
|
|
3577
|
-
icon_name: string | null
|
|
3578
3496
|
iconName: string | null
|
|
3579
|
-
icon_position: Position
|
|
3580
3497
|
iconPosition: Position
|
|
3581
|
-
icon_size: number
|
|
3582
3498
|
iconSize: number
|
|
3583
|
-
icon_visible: boolean
|
|
3584
3499
|
iconVisible: boolean
|
|
3585
|
-
is_toggle: boolean
|
|
3586
3500
|
isToggle: boolean
|
|
3587
3501
|
label: string | null
|
|
3588
|
-
label_visible: boolean
|
|
3589
3502
|
labelVisible: boolean
|
|
3590
3503
|
toggled: boolean
|
|
3591
3504
|
|
|
3592
3505
|
// Conflicting properties
|
|
3593
3506
|
|
|
3594
|
-
x_align: any
|
|
3595
3507
|
xAlign: any
|
|
3596
|
-
y_align: any
|
|
3597
3508
|
yAlign: any
|
|
3598
3509
|
|
|
3599
3510
|
// Owm methods of Mx-1.0.Mx.Button
|
|
@@ -4126,8 +4037,6 @@ export module ButtonGroup {
|
|
|
4126
4037
|
|
|
4127
4038
|
// Own constructor properties of Mx-1.0.Mx.ButtonGroup
|
|
4128
4039
|
|
|
4129
|
-
active_button?: Button | null
|
|
4130
|
-
allow_no_active?: boolean | null
|
|
4131
4040
|
activeButton?: Button | null
|
|
4132
4041
|
allowNoActive?: boolean | null
|
|
4133
4042
|
}
|
|
@@ -4138,9 +4047,7 @@ export interface ButtonGroup {
|
|
|
4138
4047
|
|
|
4139
4048
|
// Own properties of Mx-1.0.Mx.ButtonGroup
|
|
4140
4049
|
|
|
4141
|
-
active_button: Button
|
|
4142
4050
|
activeButton: Button
|
|
4143
|
-
allow_no_active: boolean
|
|
4144
4051
|
allowNoActive: boolean
|
|
4145
4052
|
|
|
4146
4053
|
// Own fields of Mx-1.0.Mx.ButtonGroup
|
|
@@ -4300,11 +4207,9 @@ export module ComboBox {
|
|
|
4300
4207
|
|
|
4301
4208
|
// Own constructor properties of Mx-1.0.Mx.ComboBox
|
|
4302
4209
|
|
|
4303
|
-
active_icon_name?: string | null
|
|
4304
|
-
active_text?: string | null
|
|
4305
|
-
index?: number | null
|
|
4306
4210
|
activeIconName?: string | null
|
|
4307
4211
|
activeText?: string | null
|
|
4212
|
+
index?: number | null
|
|
4308
4213
|
}
|
|
4309
4214
|
|
|
4310
4215
|
}
|
|
@@ -4313,9 +4218,7 @@ export interface ComboBox extends Atk.ImplementorIface, Clutter.Animatable, Clut
|
|
|
4313
4218
|
|
|
4314
4219
|
// Own properties of Mx-1.0.Mx.ComboBox
|
|
4315
4220
|
|
|
4316
|
-
active_icon_name: string | null
|
|
4317
4221
|
activeIconName: string | null
|
|
4318
|
-
active_text: string | null
|
|
4319
4222
|
activeText: string | null
|
|
4320
4223
|
index: number
|
|
4321
4224
|
|
|
@@ -4760,9 +4663,8 @@ export module DeformBowTie {
|
|
|
4760
4663
|
|
|
4761
4664
|
// Own constructor properties of Mx-1.0.Mx.DeformBowTie
|
|
4762
4665
|
|
|
4763
|
-
flip_back?: boolean | null
|
|
4764
|
-
period?: number | null
|
|
4765
4666
|
flipBack?: boolean | null
|
|
4667
|
+
period?: number | null
|
|
4766
4668
|
}
|
|
4767
4669
|
|
|
4768
4670
|
}
|
|
@@ -4771,7 +4673,6 @@ export interface DeformBowTie extends Atk.ImplementorIface, Clutter.Animatable,
|
|
|
4771
4673
|
|
|
4772
4674
|
// Own properties of Mx-1.0.Mx.DeformBowTie
|
|
4773
4675
|
|
|
4774
|
-
flip_back: boolean
|
|
4775
4676
|
flipBack: boolean
|
|
4776
4677
|
period: number
|
|
4777
4678
|
|
|
@@ -5571,8 +5472,6 @@ export module DeformTexture {
|
|
|
5571
5472
|
|
|
5572
5473
|
back?: Clutter.Texture | null
|
|
5573
5474
|
front?: Clutter.Texture | null
|
|
5574
|
-
tiles_x?: number | null
|
|
5575
|
-
tiles_y?: number | null
|
|
5576
5475
|
tilesX?: number | null
|
|
5577
5476
|
tilesY?: number | null
|
|
5578
5477
|
}
|
|
@@ -5585,9 +5484,7 @@ export interface DeformTexture extends Atk.ImplementorIface, Clutter.Animatable,
|
|
|
5585
5484
|
|
|
5586
5485
|
back: Clutter.Texture
|
|
5587
5486
|
front: Clutter.Texture
|
|
5588
|
-
tiles_x: number
|
|
5589
5487
|
tilesX: number
|
|
5590
|
-
tiles_y: number
|
|
5591
5488
|
tilesY: number
|
|
5592
5489
|
|
|
5593
5490
|
// Own fields of Mx-1.0.Mx.DeformTexture
|
|
@@ -6415,9 +6312,7 @@ export interface Dialog extends Atk.ImplementorIface, Clutter.Animatable, Clutte
|
|
|
6415
6312
|
|
|
6416
6313
|
// Conflicting properties
|
|
6417
6314
|
|
|
6418
|
-
x_align: any
|
|
6419
6315
|
xAlign: any
|
|
6420
|
-
y_align: any
|
|
6421
6316
|
yAlign: any
|
|
6422
6317
|
|
|
6423
6318
|
// Owm methods of Mx-1.0.Mx.Dialog
|
|
@@ -6869,17 +6764,12 @@ export module Entry {
|
|
|
6869
6764
|
|
|
6870
6765
|
// Own constructor properties of Mx-1.0.Mx.Entry
|
|
6871
6766
|
|
|
6872
|
-
hint_text?: string | null
|
|
6873
|
-
icon_highlight_suffix?: string | null
|
|
6874
|
-
password_char?: number | null
|
|
6875
|
-
primary_icon_tooltip_text?: string | null
|
|
6876
|
-
secondary_icon_tooltip_text?: string | null
|
|
6877
|
-
text?: string | null
|
|
6878
6767
|
hintText?: string | null
|
|
6879
6768
|
iconHighlightSuffix?: string | null
|
|
6880
6769
|
passwordChar?: number | null
|
|
6881
6770
|
primaryIconTooltipText?: string | null
|
|
6882
6771
|
secondaryIconTooltipText?: string | null
|
|
6772
|
+
text?: string | null
|
|
6883
6773
|
}
|
|
6884
6774
|
|
|
6885
6775
|
}
|
|
@@ -6888,17 +6778,11 @@ export interface Entry extends Atk.ImplementorIface, Clutter.Animatable, Clutter
|
|
|
6888
6778
|
|
|
6889
6779
|
// Own properties of Mx-1.0.Mx.Entry
|
|
6890
6780
|
|
|
6891
|
-
readonly clutter_text: Clutter.Text
|
|
6892
6781
|
readonly clutterText: Clutter.Text
|
|
6893
|
-
hint_text: string | null
|
|
6894
6782
|
hintText: string | null
|
|
6895
|
-
icon_highlight_suffix: string | null
|
|
6896
6783
|
iconHighlightSuffix: string | null
|
|
6897
|
-
password_char: number
|
|
6898
6784
|
passwordChar: number
|
|
6899
|
-
primary_icon_tooltip_text: string | null
|
|
6900
6785
|
primaryIconTooltipText: string | null
|
|
6901
|
-
secondary_icon_tooltip_text: string | null
|
|
6902
6786
|
secondaryIconTooltipText: string | null
|
|
6903
6787
|
text: string | null
|
|
6904
6788
|
|
|
@@ -7403,9 +7287,7 @@ export interface Expander extends Atk.ImplementorIface, Clutter.Animatable, Clut
|
|
|
7403
7287
|
|
|
7404
7288
|
// Conflicting properties
|
|
7405
7289
|
|
|
7406
|
-
x_align: any
|
|
7407
7290
|
xAlign: any
|
|
7408
|
-
y_align: any
|
|
7409
7291
|
yAlign: any
|
|
7410
7292
|
|
|
7411
7293
|
// Owm methods of Mx-1.0.Mx.Expander
|
|
@@ -7819,16 +7701,6 @@ export module FadeEffect {
|
|
|
7819
7701
|
|
|
7820
7702
|
// Own constructor properties of Mx-1.0.Mx.FadeEffect
|
|
7821
7703
|
|
|
7822
|
-
border_bottom?: number | null
|
|
7823
|
-
border_left?: number | null
|
|
7824
|
-
border_right?: number | null
|
|
7825
|
-
border_top?: number | null
|
|
7826
|
-
bounds_height?: number | null
|
|
7827
|
-
bounds_width?: number | null
|
|
7828
|
-
bounds_x?: number | null
|
|
7829
|
-
bounds_y?: number | null
|
|
7830
|
-
color?: Clutter.Color | null
|
|
7831
|
-
freeze_update?: boolean | null
|
|
7832
7704
|
borderBottom?: number | null
|
|
7833
7705
|
borderLeft?: number | null
|
|
7834
7706
|
borderRight?: number | null
|
|
@@ -7837,6 +7709,7 @@ export module FadeEffect {
|
|
|
7837
7709
|
boundsWidth?: number | null
|
|
7838
7710
|
boundsX?: number | null
|
|
7839
7711
|
boundsY?: number | null
|
|
7712
|
+
color?: Clutter.Color | null
|
|
7840
7713
|
freezeUpdate?: boolean | null
|
|
7841
7714
|
}
|
|
7842
7715
|
|
|
@@ -7846,24 +7719,15 @@ export interface FadeEffect {
|
|
|
7846
7719
|
|
|
7847
7720
|
// Own properties of Mx-1.0.Mx.FadeEffect
|
|
7848
7721
|
|
|
7849
|
-
border_bottom: number
|
|
7850
7722
|
borderBottom: number
|
|
7851
|
-
border_left: number
|
|
7852
7723
|
borderLeft: number
|
|
7853
|
-
border_right: number
|
|
7854
7724
|
borderRight: number
|
|
7855
|
-
border_top: number
|
|
7856
7725
|
borderTop: number
|
|
7857
|
-
bounds_height: number
|
|
7858
7726
|
boundsHeight: number
|
|
7859
|
-
bounds_width: number
|
|
7860
7727
|
boundsWidth: number
|
|
7861
|
-
bounds_x: number
|
|
7862
7728
|
boundsX: number
|
|
7863
|
-
bounds_y: number
|
|
7864
7729
|
boundsY: number
|
|
7865
7730
|
color: Clutter.Color
|
|
7866
|
-
freeze_update: boolean
|
|
7867
7731
|
freezeUpdate: boolean
|
|
7868
7732
|
|
|
7869
7733
|
// Own fields of Mx-1.0.Mx.FadeEffect
|
|
@@ -8461,9 +8325,7 @@ export interface Frame extends Atk.ImplementorIface, Clutter.Animatable, Clutter
|
|
|
8461
8325
|
|
|
8462
8326
|
// Conflicting properties
|
|
8463
8327
|
|
|
8464
|
-
x_align: any
|
|
8465
8328
|
xAlign: any
|
|
8466
|
-
y_align: any
|
|
8467
8329
|
yAlign: any
|
|
8468
8330
|
|
|
8469
8331
|
// Own fields of Mx-1.0.Mx.Frame
|
|
@@ -8847,15 +8709,6 @@ export module Grid {
|
|
|
8847
8709
|
|
|
8848
8710
|
// Own constructor properties of Mx-1.0.Mx.Grid
|
|
8849
8711
|
|
|
8850
|
-
child_x_align?: Align | null
|
|
8851
|
-
child_y_align?: Align | null
|
|
8852
|
-
column_spacing?: number | null
|
|
8853
|
-
homogenous_columns?: boolean | null
|
|
8854
|
-
homogenous_rows?: boolean | null
|
|
8855
|
-
line_alignment?: Align | null
|
|
8856
|
-
max_stride?: number | null
|
|
8857
|
-
orientation?: Orientation | null
|
|
8858
|
-
row_spacing?: number | null
|
|
8859
8712
|
childXAlign?: Align | null
|
|
8860
8713
|
childYAlign?: Align | null
|
|
8861
8714
|
columnSpacing?: number | null
|
|
@@ -8863,6 +8716,7 @@ export module Grid {
|
|
|
8863
8716
|
homogenousRows?: boolean | null
|
|
8864
8717
|
lineAlignment?: Align | null
|
|
8865
8718
|
maxStride?: number | null
|
|
8719
|
+
orientation?: Orientation | null
|
|
8866
8720
|
rowSpacing?: number | null
|
|
8867
8721
|
}
|
|
8868
8722
|
|
|
@@ -8872,22 +8726,14 @@ export interface Grid extends Atk.ImplementorIface, Clutter.Animatable, Clutter.
|
|
|
8872
8726
|
|
|
8873
8727
|
// Own properties of Mx-1.0.Mx.Grid
|
|
8874
8728
|
|
|
8875
|
-
child_x_align: Align
|
|
8876
8729
|
childXAlign: Align
|
|
8877
|
-
child_y_align: Align
|
|
8878
8730
|
childYAlign: Align
|
|
8879
|
-
column_spacing: number
|
|
8880
8731
|
columnSpacing: number
|
|
8881
|
-
homogenous_columns: boolean
|
|
8882
8732
|
homogenousColumns: boolean
|
|
8883
|
-
homogenous_rows: boolean
|
|
8884
8733
|
homogenousRows: boolean
|
|
8885
|
-
line_alignment: Align
|
|
8886
8734
|
lineAlignment: Align
|
|
8887
|
-
max_stride: number
|
|
8888
8735
|
maxStride: number
|
|
8889
8736
|
orientation: Orientation
|
|
8890
|
-
row_spacing: number
|
|
8891
8737
|
rowSpacing: number
|
|
8892
8738
|
|
|
8893
8739
|
// Owm methods of Mx-1.0.Mx.Grid
|
|
@@ -9301,8 +9147,6 @@ export module Icon {
|
|
|
9301
9147
|
|
|
9302
9148
|
// Own constructor properties of Mx-1.0.Mx.Icon
|
|
9303
9149
|
|
|
9304
|
-
icon_name?: string | null
|
|
9305
|
-
icon_size?: number | null
|
|
9306
9150
|
iconName?: string | null
|
|
9307
9151
|
iconSize?: number | null
|
|
9308
9152
|
}
|
|
@@ -9313,9 +9157,7 @@ export interface Icon extends Atk.ImplementorIface, Clutter.Animatable, Clutter.
|
|
|
9313
9157
|
|
|
9314
9158
|
// Own properties of Mx-1.0.Mx.Icon
|
|
9315
9159
|
|
|
9316
|
-
icon_name: string | null
|
|
9317
9160
|
iconName: string | null
|
|
9318
|
-
icon_size: number
|
|
9319
9161
|
iconSize: number
|
|
9320
9162
|
|
|
9321
9163
|
// Owm methods of Mx-1.0.Mx.Icon
|
|
@@ -9698,7 +9540,6 @@ export module IconTheme {
|
|
|
9698
9540
|
|
|
9699
9541
|
// Own constructor properties of Mx-1.0.Mx.IconTheme
|
|
9700
9542
|
|
|
9701
|
-
theme_name?: string | null
|
|
9702
9543
|
themeName?: string | null
|
|
9703
9544
|
}
|
|
9704
9545
|
|
|
@@ -9708,7 +9549,6 @@ export interface IconTheme {
|
|
|
9708
9549
|
|
|
9709
9550
|
// Own properties of Mx-1.0.Mx.IconTheme
|
|
9710
9551
|
|
|
9711
|
-
theme_name: string | null
|
|
9712
9552
|
themeName: string | null
|
|
9713
9553
|
|
|
9714
9554
|
// Own fields of Mx-1.0.Mx.IconTheme
|
|
@@ -9835,13 +9675,6 @@ export module Image {
|
|
|
9835
9675
|
|
|
9836
9676
|
// Own constructor properties of Mx-1.0.Mx.Image
|
|
9837
9677
|
|
|
9838
|
-
allow_upscale?: boolean | null
|
|
9839
|
-
image_rotation?: number | null
|
|
9840
|
-
load_async?: boolean | null
|
|
9841
|
-
scale_height_threshold?: number | null
|
|
9842
|
-
scale_mode?: ImageScaleMode | null
|
|
9843
|
-
scale_width_threshold?: number | null
|
|
9844
|
-
transition_duration?: number | null
|
|
9845
9678
|
allowUpscale?: boolean | null
|
|
9846
9679
|
imageRotation?: number | null
|
|
9847
9680
|
loadAsync?: boolean | null
|
|
@@ -9857,19 +9690,12 @@ export interface Image extends Atk.ImplementorIface, Clutter.Animatable, Clutter
|
|
|
9857
9690
|
|
|
9858
9691
|
// Own properties of Mx-1.0.Mx.Image
|
|
9859
9692
|
|
|
9860
|
-
allow_upscale: boolean
|
|
9861
9693
|
allowUpscale: boolean
|
|
9862
|
-
image_rotation: number
|
|
9863
9694
|
imageRotation: number
|
|
9864
|
-
load_async: boolean
|
|
9865
9695
|
loadAsync: boolean
|
|
9866
|
-
scale_height_threshold: number
|
|
9867
9696
|
scaleHeightThreshold: number
|
|
9868
|
-
scale_mode: ImageScaleMode
|
|
9869
9697
|
scaleMode: ImageScaleMode
|
|
9870
|
-
scale_width_threshold: number
|
|
9871
9698
|
scaleWidthThreshold: number
|
|
9872
|
-
transition_duration: number
|
|
9873
9699
|
transitionDuration: number
|
|
9874
9700
|
|
|
9875
9701
|
// Owm methods of Mx-1.0.Mx.Image
|
|
@@ -10439,9 +10265,8 @@ export module ItemView {
|
|
|
10439
10265
|
// Own constructor properties of Mx-1.0.Mx.ItemView
|
|
10440
10266
|
|
|
10441
10267
|
factory?: GObject.Object | null
|
|
10442
|
-
item_type?: GObject.GType | null
|
|
10443
|
-
model?: Clutter.Model | null
|
|
10444
10268
|
itemType?: GObject.GType | null
|
|
10269
|
+
model?: Clutter.Model | null
|
|
10445
10270
|
}
|
|
10446
10271
|
|
|
10447
10272
|
}
|
|
@@ -10451,7 +10276,6 @@ export interface ItemView extends Atk.ImplementorIface, Clutter.Animatable, Clut
|
|
|
10451
10276
|
// Own properties of Mx-1.0.Mx.ItemView
|
|
10452
10277
|
|
|
10453
10278
|
factory: GObject.Object
|
|
10454
|
-
item_type: GObject.GType
|
|
10455
10279
|
itemType: GObject.GType
|
|
10456
10280
|
model: Clutter.Model
|
|
10457
10281
|
|
|
@@ -10915,20 +10739,13 @@ export module KineticScrollView {
|
|
|
10915
10739
|
|
|
10916
10740
|
// Own constructor properties of Mx-1.0.Mx.KineticScrollView
|
|
10917
10741
|
|
|
10918
|
-
acceleration_factor?: number | null
|
|
10919
|
-
clamp_duration?: number | null
|
|
10920
|
-
clamp_mode?: number | null
|
|
10921
|
-
clamp_to_center?: boolean | null
|
|
10922
|
-
deceleration?: number | null
|
|
10923
|
-
mouse_button?: number | null
|
|
10924
|
-
overshoot?: number | null
|
|
10925
|
-
scroll_policy?: ScrollPolicy | null
|
|
10926
|
-
use_captured?: boolean | null
|
|
10927
10742
|
accelerationFactor?: number | null
|
|
10928
10743
|
clampDuration?: number | null
|
|
10929
10744
|
clampMode?: number | null
|
|
10930
10745
|
clampToCenter?: boolean | null
|
|
10746
|
+
deceleration?: number | null
|
|
10931
10747
|
mouseButton?: number | null
|
|
10748
|
+
overshoot?: number | null
|
|
10932
10749
|
scrollPolicy?: ScrollPolicy | null
|
|
10933
10750
|
useCaptured?: boolean | null
|
|
10934
10751
|
}
|
|
@@ -10939,29 +10756,20 @@ export interface KineticScrollView extends Atk.ImplementorIface, Clutter.Animata
|
|
|
10939
10756
|
|
|
10940
10757
|
// Own properties of Mx-1.0.Mx.KineticScrollView
|
|
10941
10758
|
|
|
10942
|
-
acceleration_factor: number
|
|
10943
10759
|
accelerationFactor: number
|
|
10944
|
-
clamp_duration: number
|
|
10945
10760
|
clampDuration: number
|
|
10946
|
-
clamp_mode: number
|
|
10947
10761
|
clampMode: number
|
|
10948
|
-
clamp_to_center: boolean
|
|
10949
10762
|
clampToCenter: boolean
|
|
10950
10763
|
deceleration: number
|
|
10951
|
-
mouse_button: number
|
|
10952
10764
|
mouseButton: number
|
|
10953
10765
|
overshoot: number
|
|
10954
|
-
scroll_policy: ScrollPolicy
|
|
10955
10766
|
scrollPolicy: ScrollPolicy
|
|
10956
10767
|
readonly state: KineticScrollViewState
|
|
10957
|
-
use_captured: boolean
|
|
10958
10768
|
useCaptured: boolean
|
|
10959
10769
|
|
|
10960
10770
|
// Conflicting properties
|
|
10961
10771
|
|
|
10962
|
-
x_align: any
|
|
10963
10772
|
xAlign: any
|
|
10964
|
-
y_align: any
|
|
10965
10773
|
yAlign: any
|
|
10966
10774
|
|
|
10967
10775
|
// Owm methods of Mx-1.0.Mx.KineticScrollView
|
|
@@ -11484,22 +11292,6 @@ export module Label {
|
|
|
11484
11292
|
|
|
11485
11293
|
// Own constructor properties of Mx-1.0.Mx.Label
|
|
11486
11294
|
|
|
11487
|
-
fade_out?: boolean | null
|
|
11488
|
-
/**
|
|
11489
|
-
* Whether to wrap the lines of #MxLabel:text if the contents
|
|
11490
|
-
* exceed the available allocation.
|
|
11491
|
-
*/
|
|
11492
|
-
line_wrap?: boolean | null
|
|
11493
|
-
/**
|
|
11494
|
-
* Show a tooltip when there is not enough space to display the text. If set
|
|
11495
|
-
* to %TRUE, this will also cause the #ClutterActor:reactive property to be
|
|
11496
|
-
* enabled.
|
|
11497
|
-
*/
|
|
11498
|
-
show_tooltip?: boolean | null
|
|
11499
|
-
text?: string | null
|
|
11500
|
-
use_markup?: boolean | null
|
|
11501
|
-
x_align: any
|
|
11502
|
-
y_align: any
|
|
11503
11295
|
fadeOut?: boolean | null
|
|
11504
11296
|
/**
|
|
11505
11297
|
* Whether to wrap the lines of #MxLabel:text if the contents
|
|
@@ -11512,6 +11304,7 @@ export module Label {
|
|
|
11512
11304
|
* enabled.
|
|
11513
11305
|
*/
|
|
11514
11306
|
showTooltip?: boolean | null
|
|
11307
|
+
text?: string | null
|
|
11515
11308
|
useMarkup?: boolean | null
|
|
11516
11309
|
xAlign: any
|
|
11517
11310
|
yAlign: any
|
|
@@ -11523,21 +11316,13 @@ export interface Label extends Atk.ImplementorIface, Clutter.Animatable, Clutter
|
|
|
11523
11316
|
|
|
11524
11317
|
// Own properties of Mx-1.0.Mx.Label
|
|
11525
11318
|
|
|
11526
|
-
readonly clutter_text: Clutter.Text
|
|
11527
11319
|
readonly clutterText: Clutter.Text
|
|
11528
|
-
fade_out: boolean
|
|
11529
11320
|
fadeOut: boolean
|
|
11530
|
-
/**
|
|
11531
|
-
* Whether to wrap the lines of #MxLabel:text if the contents
|
|
11532
|
-
* exceed the available allocation.
|
|
11533
|
-
*/
|
|
11534
|
-
line_wrap: boolean
|
|
11535
11321
|
/**
|
|
11536
11322
|
* Whether to wrap the lines of #MxLabel:text if the contents
|
|
11537
11323
|
* exceed the available allocation.
|
|
11538
11324
|
*/
|
|
11539
11325
|
lineWrap: boolean
|
|
11540
|
-
// Has conflict: show_tooltip: boolean
|
|
11541
11326
|
/**
|
|
11542
11327
|
* Show a tooltip when there is not enough space to display the text. If set
|
|
11543
11328
|
* to %TRUE, this will also cause the #ClutterActor:reactive property to be
|
|
@@ -11545,11 +11330,8 @@ export interface Label extends Atk.ImplementorIface, Clutter.Animatable, Clutter
|
|
|
11545
11330
|
*/
|
|
11546
11331
|
showTooltip: boolean
|
|
11547
11332
|
text: string | null
|
|
11548
|
-
use_markup: boolean
|
|
11549
11333
|
useMarkup: boolean
|
|
11550
|
-
x_align: any
|
|
11551
11334
|
xAlign: any
|
|
11552
|
-
y_align: any
|
|
11553
11335
|
yAlign: any
|
|
11554
11336
|
|
|
11555
11337
|
// Owm methods of Mx-1.0.Mx.Label
|
|
@@ -12050,9 +11832,8 @@ export module ListView {
|
|
|
12050
11832
|
// Own constructor properties of Mx-1.0.Mx.ListView
|
|
12051
11833
|
|
|
12052
11834
|
factory?: GObject.Object | null
|
|
12053
|
-
item_type?: GObject.GType | null
|
|
12054
|
-
model?: Clutter.Model | null
|
|
12055
11835
|
itemType?: GObject.GType | null
|
|
11836
|
+
model?: Clutter.Model | null
|
|
12056
11837
|
}
|
|
12057
11838
|
|
|
12058
11839
|
}
|
|
@@ -12062,7 +11843,6 @@ export interface ListView extends Atk.ImplementorIface, Clutter.Animatable, Clut
|
|
|
12062
11843
|
// Own properties of Mx-1.0.Mx.ListView
|
|
12063
11844
|
|
|
12064
11845
|
factory: GObject.Object
|
|
12065
|
-
item_type: GObject.GType
|
|
12066
11846
|
itemType: GObject.GType
|
|
12067
11847
|
model: Clutter.Model
|
|
12068
11848
|
|
|
@@ -12981,8 +12761,6 @@ export module Notebook {
|
|
|
12981
12761
|
|
|
12982
12762
|
// Own constructor properties of Mx-1.0.Mx.Notebook
|
|
12983
12763
|
|
|
12984
|
-
current_page?: Clutter.Actor | null
|
|
12985
|
-
enable_gestures?: boolean | null
|
|
12986
12764
|
currentPage?: Clutter.Actor | null
|
|
12987
12765
|
enableGestures?: boolean | null
|
|
12988
12766
|
}
|
|
@@ -12993,9 +12771,7 @@ export interface Notebook extends Atk.ImplementorIface, Clutter.Animatable, Clut
|
|
|
12993
12771
|
|
|
12994
12772
|
// Own properties of Mx-1.0.Mx.Notebook
|
|
12995
12773
|
|
|
12996
|
-
current_page: Clutter.Actor
|
|
12997
12774
|
currentPage: Clutter.Actor
|
|
12998
|
-
enable_gestures: boolean
|
|
12999
12775
|
enableGestures: boolean
|
|
13000
12776
|
|
|
13001
12777
|
// Own fields of Mx-1.0.Mx.Notebook
|
|
@@ -13377,13 +13153,9 @@ export module Offscreen {
|
|
|
13377
13153
|
|
|
13378
13154
|
// Own constructor properties of Mx-1.0.Mx.Offscreen
|
|
13379
13155
|
|
|
13380
|
-
accumulation_enabled?: boolean | null
|
|
13381
|
-
auto_update?: boolean | null
|
|
13382
|
-
child?: Clutter.Actor | null
|
|
13383
|
-
pick_child?: boolean | null
|
|
13384
|
-
redirect_enabled?: boolean | null
|
|
13385
13156
|
accumulationEnabled?: boolean | null
|
|
13386
13157
|
autoUpdate?: boolean | null
|
|
13158
|
+
child?: Clutter.Actor | null
|
|
13387
13159
|
pickChild?: boolean | null
|
|
13388
13160
|
redirectEnabled?: boolean | null
|
|
13389
13161
|
}
|
|
@@ -13394,20 +13166,15 @@ export interface Offscreen extends Atk.ImplementorIface, Clutter.Animatable, Clu
|
|
|
13394
13166
|
|
|
13395
13167
|
// Own properties of Mx-1.0.Mx.Offscreen
|
|
13396
13168
|
|
|
13397
|
-
accumulation_enabled: boolean
|
|
13398
13169
|
accumulationEnabled: boolean
|
|
13399
|
-
readonly accumulation_material: any
|
|
13400
13170
|
readonly accumulationMaterial: any
|
|
13401
|
-
auto_update: boolean
|
|
13402
13171
|
autoUpdate: boolean
|
|
13403
13172
|
/**
|
|
13404
13173
|
* The off-screen buffer used to draw the child.
|
|
13405
13174
|
*/
|
|
13406
13175
|
readonly buffer: any
|
|
13407
13176
|
child: Clutter.Actor
|
|
13408
|
-
pick_child: boolean
|
|
13409
13177
|
pickChild: boolean
|
|
13410
|
-
redirect_enabled: boolean
|
|
13411
13178
|
redirectEnabled: boolean
|
|
13412
13179
|
|
|
13413
13180
|
// Own fields of Mx-1.0.Mx.Offscreen
|
|
@@ -13847,9 +13614,8 @@ export module PathBar {
|
|
|
13847
13614
|
|
|
13848
13615
|
// Own constructor properties of Mx-1.0.Mx.PathBar
|
|
13849
13616
|
|
|
13850
|
-
clear_on_change?: boolean | null
|
|
13851
|
-
editable?: boolean | null
|
|
13852
13617
|
clearOnChange?: boolean | null
|
|
13618
|
+
editable?: boolean | null
|
|
13853
13619
|
}
|
|
13854
13620
|
|
|
13855
13621
|
}
|
|
@@ -13858,7 +13624,6 @@ export interface PathBar extends Atk.ImplementorIface, Clutter.Animatable, Clutt
|
|
|
13858
13624
|
|
|
13859
13625
|
// Own properties of Mx-1.0.Mx.PathBar
|
|
13860
13626
|
|
|
13861
|
-
clear_on_change: boolean
|
|
13862
13627
|
clearOnChange: boolean
|
|
13863
13628
|
editable: boolean
|
|
13864
13629
|
readonly entry: Entry
|
|
@@ -14712,9 +14477,7 @@ export interface ScrollBar extends Atk.ImplementorIface, Clutter.Animatable, Clu
|
|
|
14712
14477
|
|
|
14713
14478
|
// Conflicting properties
|
|
14714
14479
|
|
|
14715
|
-
x_align: any
|
|
14716
14480
|
xAlign: any
|
|
14717
|
-
y_align: any
|
|
14718
14481
|
yAlign: any
|
|
14719
14482
|
|
|
14720
14483
|
// Owm methods of Mx-1.0.Mx.ScrollBar
|
|
@@ -15132,9 +14895,6 @@ export module ScrollView {
|
|
|
15132
14895
|
|
|
15133
14896
|
// Own constructor properties of Mx-1.0.Mx.ScrollView
|
|
15134
14897
|
|
|
15135
|
-
enable_gestures?: boolean | null
|
|
15136
|
-
enable_mouse_scrolling?: boolean | null
|
|
15137
|
-
scroll_policy?: ScrollPolicy | null
|
|
15138
14898
|
enableGestures?: boolean | null
|
|
15139
14899
|
enableMouseScrolling?: boolean | null
|
|
15140
14900
|
scrollPolicy?: ScrollPolicy | null
|
|
@@ -15146,18 +14906,13 @@ export interface ScrollView extends Atk.ImplementorIface, Clutter.Animatable, Cl
|
|
|
15146
14906
|
|
|
15147
14907
|
// Own properties of Mx-1.0.Mx.ScrollView
|
|
15148
14908
|
|
|
15149
|
-
enable_gestures: boolean
|
|
15150
14909
|
enableGestures: boolean
|
|
15151
|
-
enable_mouse_scrolling: boolean
|
|
15152
14910
|
enableMouseScrolling: boolean
|
|
15153
|
-
scroll_policy: ScrollPolicy
|
|
15154
14911
|
scrollPolicy: ScrollPolicy
|
|
15155
14912
|
|
|
15156
14913
|
// Conflicting properties
|
|
15157
14914
|
|
|
15158
|
-
x_align: any
|
|
15159
14915
|
xAlign: any
|
|
15160
|
-
y_align: any
|
|
15161
14916
|
yAlign: any
|
|
15162
14917
|
|
|
15163
14918
|
// Owm methods of Mx-1.0.Mx.ScrollView
|
|
@@ -15550,11 +15305,6 @@ export module Settings {
|
|
|
15550
15305
|
|
|
15551
15306
|
// Own constructor properties of Mx-1.0.Mx.Settings
|
|
15552
15307
|
|
|
15553
|
-
drag_threshold?: number | null
|
|
15554
|
-
font_name?: string | null
|
|
15555
|
-
icon_theme?: string | null
|
|
15556
|
-
long_press_timeout?: number | null
|
|
15557
|
-
small_screen?: boolean | null
|
|
15558
15308
|
dragThreshold?: number | null
|
|
15559
15309
|
fontName?: string | null
|
|
15560
15310
|
iconTheme?: string | null
|
|
@@ -15568,15 +15318,10 @@ export interface Settings {
|
|
|
15568
15318
|
|
|
15569
15319
|
// Own properties of Mx-1.0.Mx.Settings
|
|
15570
15320
|
|
|
15571
|
-
drag_threshold: number
|
|
15572
15321
|
dragThreshold: number
|
|
15573
|
-
font_name: string | null
|
|
15574
15322
|
fontName: string | null
|
|
15575
|
-
icon_theme: string | null
|
|
15576
15323
|
iconTheme: string | null
|
|
15577
|
-
long_press_timeout: number
|
|
15578
15324
|
longPressTimeout: number
|
|
15579
|
-
small_screen: boolean
|
|
15580
15325
|
smallScreen: boolean
|
|
15581
15326
|
|
|
15582
15327
|
// Own fields of Mx-1.0.Mx.Settings
|
|
@@ -15633,9 +15378,8 @@ export module Slider {
|
|
|
15633
15378
|
|
|
15634
15379
|
// Own constructor properties of Mx-1.0.Mx.Slider
|
|
15635
15380
|
|
|
15636
|
-
buffer_value?: number | null
|
|
15637
|
-
value?: number | null
|
|
15638
15381
|
bufferValue?: number | null
|
|
15382
|
+
value?: number | null
|
|
15639
15383
|
}
|
|
15640
15384
|
|
|
15641
15385
|
}
|
|
@@ -15644,7 +15388,6 @@ export interface Slider extends Atk.ImplementorIface, Clutter.Animatable, Clutte
|
|
|
15644
15388
|
|
|
15645
15389
|
// Own properties of Mx-1.0.Mx.Slider
|
|
15646
15390
|
|
|
15647
|
-
buffer_value: number
|
|
15648
15391
|
bufferValue: number
|
|
15649
15392
|
value: number
|
|
15650
15393
|
|
|
@@ -16906,10 +16649,6 @@ export module StackChild {
|
|
|
16906
16649
|
|
|
16907
16650
|
crop?: boolean | null
|
|
16908
16651
|
fit?: boolean | null
|
|
16909
|
-
x_align?: Align | null
|
|
16910
|
-
x_fill?: boolean | null
|
|
16911
|
-
y_align?: Align | null
|
|
16912
|
-
y_fill?: boolean | null
|
|
16913
16652
|
xAlign?: Align | null
|
|
16914
16653
|
xFill?: boolean | null
|
|
16915
16654
|
yAlign?: Align | null
|
|
@@ -16924,13 +16663,9 @@ export interface StackChild {
|
|
|
16924
16663
|
|
|
16925
16664
|
crop: boolean
|
|
16926
16665
|
fit: boolean
|
|
16927
|
-
x_align: Align
|
|
16928
16666
|
xAlign: Align
|
|
16929
|
-
x_fill: boolean
|
|
16930
16667
|
xFill: boolean
|
|
16931
|
-
y_align: Align
|
|
16932
16668
|
yAlign: Align
|
|
16933
|
-
y_fill: boolean
|
|
16934
16669
|
yFill: boolean
|
|
16935
16670
|
|
|
16936
16671
|
// Class property signals of Mx-1.0.Mx.StackChild
|
|
@@ -17101,8 +16836,6 @@ export module Table {
|
|
|
17101
16836
|
|
|
17102
16837
|
// Own constructor properties of Mx-1.0.Mx.Table
|
|
17103
16838
|
|
|
17104
|
-
column_spacing?: number | null
|
|
17105
|
-
row_spacing?: number | null
|
|
17106
16839
|
columnSpacing?: number | null
|
|
17107
16840
|
rowSpacing?: number | null
|
|
17108
16841
|
}
|
|
@@ -17113,13 +16846,9 @@ export interface Table extends Atk.ImplementorIface, Clutter.Animatable, Clutter
|
|
|
17113
16846
|
|
|
17114
16847
|
// Own properties of Mx-1.0.Mx.Table
|
|
17115
16848
|
|
|
17116
|
-
readonly column_count: number
|
|
17117
16849
|
readonly columnCount: number
|
|
17118
|
-
column_spacing: number
|
|
17119
16850
|
columnSpacing: number
|
|
17120
|
-
readonly row_count: number
|
|
17121
16851
|
readonly rowCount: number
|
|
17122
|
-
row_spacing: number
|
|
17123
16852
|
rowSpacing: number
|
|
17124
16853
|
|
|
17125
16854
|
// Owm methods of Mx-1.0.Mx.Table
|
|
@@ -17687,16 +17416,8 @@ export module TableChild {
|
|
|
17687
17416
|
// Own constructor properties of Mx-1.0.Mx.TableChild
|
|
17688
17417
|
|
|
17689
17418
|
column?: number | null
|
|
17690
|
-
column_span?: number | null
|
|
17691
|
-
row?: number | null
|
|
17692
|
-
row_span?: number | null
|
|
17693
|
-
x_align?: Align | null
|
|
17694
|
-
x_expand?: boolean | null
|
|
17695
|
-
x_fill?: boolean | null
|
|
17696
|
-
y_align?: Align | null
|
|
17697
|
-
y_expand?: boolean | null
|
|
17698
|
-
y_fill?: boolean | null
|
|
17699
17419
|
columnSpan?: number | null
|
|
17420
|
+
row?: number | null
|
|
17700
17421
|
rowSpan?: number | null
|
|
17701
17422
|
xAlign?: Align | null
|
|
17702
17423
|
xExpand?: boolean | null
|
|
@@ -17713,22 +17434,14 @@ export interface TableChild {
|
|
|
17713
17434
|
// Own properties of Mx-1.0.Mx.TableChild
|
|
17714
17435
|
|
|
17715
17436
|
column: number
|
|
17716
|
-
column_span: number
|
|
17717
17437
|
columnSpan: number
|
|
17718
17438
|
row: number
|
|
17719
|
-
row_span: number
|
|
17720
17439
|
rowSpan: number
|
|
17721
|
-
x_align: Align
|
|
17722
17440
|
xAlign: Align
|
|
17723
|
-
x_expand: boolean
|
|
17724
17441
|
xExpand: boolean
|
|
17725
|
-
x_fill: boolean
|
|
17726
17442
|
xFill: boolean
|
|
17727
|
-
y_align: Align
|
|
17728
17443
|
yAlign: Align
|
|
17729
|
-
y_expand: boolean
|
|
17730
17444
|
yExpand: boolean
|
|
17731
|
-
y_fill: boolean
|
|
17732
17445
|
yFill: boolean
|
|
17733
17446
|
|
|
17734
17447
|
// Class property signals of Mx-1.0.Mx.TableChild
|
|
@@ -17937,10 +17650,9 @@ export module TextureFrame {
|
|
|
17937
17650
|
|
|
17938
17651
|
bottom?: number | null
|
|
17939
17652
|
left?: number | null
|
|
17940
|
-
|
|
17653
|
+
parentTexture?: Clutter.Texture | null
|
|
17941
17654
|
right?: number | null
|
|
17942
17655
|
top?: number | null
|
|
17943
|
-
parentTexture?: Clutter.Texture | null
|
|
17944
17656
|
}
|
|
17945
17657
|
|
|
17946
17658
|
}
|
|
@@ -17951,7 +17663,6 @@ export interface TextureFrame extends Atk.ImplementorIface, Clutter.Animatable,
|
|
|
17951
17663
|
|
|
17952
17664
|
bottom: number
|
|
17953
17665
|
left: number
|
|
17954
|
-
parent_texture: Clutter.Texture
|
|
17955
17666
|
parentTexture: Clutter.Texture
|
|
17956
17667
|
right: number
|
|
17957
17668
|
top: number
|
|
@@ -18716,7 +18427,6 @@ export module Toolbar {
|
|
|
18716
18427
|
|
|
18717
18428
|
// Own constructor properties of Mx-1.0.Mx.Toolbar
|
|
18718
18429
|
|
|
18719
|
-
has_close_button?: boolean | null
|
|
18720
18430
|
hasCloseButton?: boolean | null
|
|
18721
18431
|
}
|
|
18722
18432
|
|
|
@@ -18726,14 +18436,11 @@ export interface Toolbar extends Atk.ImplementorIface, Clutter.Animatable, Clutt
|
|
|
18726
18436
|
|
|
18727
18437
|
// Own properties of Mx-1.0.Mx.Toolbar
|
|
18728
18438
|
|
|
18729
|
-
has_close_button: boolean
|
|
18730
18439
|
hasCloseButton: boolean
|
|
18731
18440
|
|
|
18732
18441
|
// Conflicting properties
|
|
18733
18442
|
|
|
18734
|
-
x_align: any
|
|
18735
18443
|
xAlign: any
|
|
18736
|
-
y_align: any
|
|
18737
18444
|
yAlign: any
|
|
18738
18445
|
|
|
18739
18446
|
// Own fields of Mx-1.0.Mx.Toolbar
|
|
@@ -19146,7 +18853,6 @@ export module Tooltip {
|
|
|
19146
18853
|
// Own constructor properties of Mx-1.0.Mx.Tooltip
|
|
19147
18854
|
|
|
19148
18855
|
text?: string | null
|
|
19149
|
-
tip_area?: Clutter.Geometry | null
|
|
19150
18856
|
tipArea?: Clutter.Geometry | null
|
|
19151
18857
|
}
|
|
19152
18858
|
|
|
@@ -19157,7 +18863,6 @@ export interface Tooltip extends Atk.ImplementorIface, Clutter.Animatable, Clutt
|
|
|
19157
18863
|
// Own properties of Mx-1.0.Mx.Tooltip
|
|
19158
18864
|
|
|
19159
18865
|
text: string | null
|
|
19160
|
-
tip_area: Clutter.Geometry
|
|
19161
18866
|
tipArea: Clutter.Geometry
|
|
19162
18867
|
|
|
19163
18868
|
// Owm methods of Mx-1.0.Mx.Tooltip
|
|
@@ -19567,10 +19272,6 @@ export module Viewport {
|
|
|
19567
19272
|
|
|
19568
19273
|
// Own constructor properties of Mx-1.0.Mx.Viewport
|
|
19569
19274
|
|
|
19570
|
-
sync_adjustments?: boolean | null
|
|
19571
|
-
x_origin?: number | null
|
|
19572
|
-
y_origin?: number | null
|
|
19573
|
-
z_origin?: number | null
|
|
19574
19275
|
syncAdjustments?: boolean | null
|
|
19575
19276
|
xOrigin?: number | null
|
|
19576
19277
|
yOrigin?: number | null
|
|
@@ -19583,20 +19284,14 @@ export interface Viewport extends Atk.ImplementorIface, Clutter.Animatable, Clut
|
|
|
19583
19284
|
|
|
19584
19285
|
// Own properties of Mx-1.0.Mx.Viewport
|
|
19585
19286
|
|
|
19586
|
-
sync_adjustments: boolean
|
|
19587
19287
|
syncAdjustments: boolean
|
|
19588
|
-
x_origin: number
|
|
19589
19288
|
xOrigin: number
|
|
19590
|
-
y_origin: number
|
|
19591
19289
|
yOrigin: number
|
|
19592
|
-
z_origin: number
|
|
19593
19290
|
zOrigin: number
|
|
19594
19291
|
|
|
19595
19292
|
// Conflicting properties
|
|
19596
19293
|
|
|
19597
|
-
x_align: any
|
|
19598
19294
|
xAlign: any
|
|
19599
|
-
y_align: any
|
|
19600
19295
|
yAlign: any
|
|
19601
19296
|
|
|
19602
19297
|
// Owm methods of Mx-1.0.Mx.Viewport
|
|
@@ -20005,11 +19700,6 @@ export module Widget {
|
|
|
20005
19700
|
* #MxMenu associated with the widget.
|
|
20006
19701
|
*/
|
|
20007
19702
|
menu?: Menu | null
|
|
20008
|
-
tooltip_delay?: number | null
|
|
20009
|
-
/**
|
|
20010
|
-
* text displayed on the tooltip
|
|
20011
|
-
*/
|
|
20012
|
-
tooltip_text?: string | null
|
|
20013
19703
|
tooltipDelay?: number | null
|
|
20014
19704
|
/**
|
|
20015
19705
|
* text displayed on the tooltip
|
|
@@ -20028,12 +19718,7 @@ export interface Widget extends Atk.ImplementorIface, Clutter.Animatable, Clutte
|
|
|
20028
19718
|
* #MxMenu associated with the widget.
|
|
20029
19719
|
*/
|
|
20030
19720
|
menu: Menu
|
|
20031
|
-
tooltip_delay: number
|
|
20032
19721
|
tooltipDelay: number
|
|
20033
|
-
/**
|
|
20034
|
-
* text displayed on the tooltip
|
|
20035
|
-
*/
|
|
20036
|
-
tooltip_text: string | null
|
|
20037
19722
|
/**
|
|
20038
19723
|
* text displayed on the tooltip
|
|
20039
19724
|
*/
|
|
@@ -20530,20 +20215,14 @@ export module Window {
|
|
|
20530
20215
|
// Own constructor properties of Mx-1.0.Mx.Window
|
|
20531
20216
|
|
|
20532
20217
|
child?: Clutter.Actor | null
|
|
20533
|
-
clutter_stage?: Clutter.Stage | null
|
|
20534
|
-
fullscreen?: boolean | null
|
|
20535
|
-
has_toolbar?: boolean | null
|
|
20536
|
-
icon_cogl_texture?: string | null
|
|
20537
|
-
icon_name?: string | null
|
|
20538
|
-
small_screen?: boolean | null
|
|
20539
|
-
title?: string | null
|
|
20540
|
-
toolbar?: Toolbar | null
|
|
20541
|
-
window_rotation?: WindowRotation | null
|
|
20542
20218
|
clutterStage?: Clutter.Stage | null
|
|
20219
|
+
fullscreen?: boolean | null
|
|
20543
20220
|
hasToolbar?: boolean | null
|
|
20544
20221
|
iconCoglTexture?: string | null
|
|
20545
20222
|
iconName?: string | null
|
|
20546
20223
|
smallScreen?: boolean | null
|
|
20224
|
+
title?: string | null
|
|
20225
|
+
toolbar?: Toolbar | null
|
|
20547
20226
|
windowRotation?: WindowRotation | null
|
|
20548
20227
|
}
|
|
20549
20228
|
|
|
@@ -20554,24 +20233,16 @@ export interface Window {
|
|
|
20554
20233
|
// Own properties of Mx-1.0.Mx.Window
|
|
20555
20234
|
|
|
20556
20235
|
child: Clutter.Actor
|
|
20557
|
-
readonly clutter_stage: Clutter.Stage
|
|
20558
20236
|
readonly clutterStage: Clutter.Stage
|
|
20559
20237
|
fullscreen: boolean
|
|
20560
|
-
has_toolbar: boolean
|
|
20561
20238
|
hasToolbar: boolean
|
|
20562
|
-
icon_cogl_texture: string | null
|
|
20563
20239
|
iconCoglTexture: string | null
|
|
20564
|
-
icon_name: string | null
|
|
20565
20240
|
iconName: string | null
|
|
20566
|
-
small_screen: boolean
|
|
20567
20241
|
smallScreen: boolean
|
|
20568
20242
|
title: string | null
|
|
20569
20243
|
toolbar: Toolbar
|
|
20570
|
-
window_rotation: WindowRotation
|
|
20571
20244
|
windowRotation: WindowRotation
|
|
20572
|
-
readonly window_rotation_angle: number
|
|
20573
20245
|
readonly windowRotationAngle: number
|
|
20574
|
-
readonly window_rotation_timeline: Clutter.Timeline
|
|
20575
20246
|
readonly windowRotationTimeline: Clutter.Timeline
|
|
20576
20247
|
|
|
20577
20248
|
// Own fields of Mx-1.0.Mx.Window
|