@girs/mx-1.0 1.4.7-3.2.5 → 1.4.7-3.2.6

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/mx-1.0.d.cts CHANGED
@@ -352,6 +352,9 @@ export module Draggable {
352
352
  drag_actor?: Clutter.Actor | null
353
353
  drag_enabled?: boolean | null
354
354
  drag_threshold?: number | null
355
+ dragActor?: Clutter.Actor | null
356
+ dragEnabled?: boolean | null
357
+ dragThreshold?: number | null
355
358
  }
356
359
 
357
360
  }
@@ -362,8 +365,11 @@ export interface Draggable extends Clutter.Actor {
362
365
 
363
366
  axis: DragAxis
364
367
  drag_actor: Clutter.Actor
368
+ dragActor: Clutter.Actor
365
369
  drag_enabled: boolean
370
+ dragEnabled: boolean
366
371
  drag_threshold: number
372
+ dragThreshold: number
367
373
 
368
374
  // Owm methods of Mx-1.0.Mx.Draggable
369
375
 
@@ -717,6 +723,7 @@ export module Droppable {
717
723
  // Own constructor properties of Mx-1.0.Mx.Droppable
718
724
 
719
725
  drop_enabled?: boolean | null
726
+ dropEnabled?: boolean | null
720
727
  }
721
728
 
722
729
  }
@@ -726,6 +733,7 @@ export interface Droppable extends Clutter.Actor {
726
733
  // Own properties of Mx-1.0.Mx.Droppable
727
734
 
728
735
  drop_enabled: boolean
736
+ dropEnabled: boolean
729
737
 
730
738
  // Owm methods of Mx-1.0.Mx.Droppable
731
739
 
@@ -1162,6 +1170,8 @@ export module Scrollable {
1162
1170
 
1163
1171
  horizontal_adjustment?: Adjustment | null
1164
1172
  vertical_adjustment?: Adjustment | null
1173
+ horizontalAdjustment?: Adjustment | null
1174
+ verticalAdjustment?: Adjustment | null
1165
1175
  }
1166
1176
 
1167
1177
  }
@@ -1171,7 +1181,9 @@ export interface Scrollable {
1171
1181
  // Own properties of Mx-1.0.Mx.Scrollable
1172
1182
 
1173
1183
  horizontal_adjustment: Adjustment
1184
+ horizontalAdjustment: Adjustment
1174
1185
  vertical_adjustment: Adjustment
1186
+ verticalAdjustment: Adjustment
1175
1187
 
1176
1188
  // Owm methods of Mx-1.0.Mx.Scrollable
1177
1189
 
@@ -1244,6 +1256,8 @@ export module Stylable {
1244
1256
  style?: Style | null
1245
1257
  style_class?: string | null
1246
1258
  style_pseudo_class?: string | null
1259
+ styleClass?: string | null
1260
+ stylePseudoClass?: string | null
1247
1261
  }
1248
1262
 
1249
1263
  }
@@ -1254,7 +1268,9 @@ export interface Stylable {
1254
1268
 
1255
1269
  style: Style
1256
1270
  style_class: string | null
1271
+ styleClass: string | null
1257
1272
  style_pseudo_class: string | null
1273
+ stylePseudoClass: string | null
1258
1274
 
1259
1275
  // Owm methods of Mx-1.0.Mx.Stylable
1260
1276
 
@@ -1539,6 +1555,7 @@ export module Action {
1539
1555
  active?: boolean | null
1540
1556
  display_name?: string | null
1541
1557
  icon?: string | null
1558
+ displayName?: string | null
1542
1559
  }
1543
1560
 
1544
1561
  }
@@ -1549,6 +1566,7 @@ export interface Action extends Gio.Action {
1549
1566
 
1550
1567
  active: boolean
1551
1568
  display_name: string | null
1569
+ displayName: string | null
1552
1570
  icon: string | null
1553
1571
 
1554
1572
  // Owm methods of Mx-1.0.Mx.Action
@@ -1762,6 +1780,7 @@ export module ActorManager {
1762
1780
 
1763
1781
  stage?: Clutter.Stage | null
1764
1782
  time_slice?: number | null
1783
+ timeSlice?: number | null
1765
1784
  }
1766
1785
 
1767
1786
  }
@@ -1771,8 +1790,10 @@ export interface ActorManager {
1771
1790
  // Own properties of Mx-1.0.Mx.ActorManager
1772
1791
 
1773
1792
  readonly n_operations: number
1793
+ readonly nOperations: number
1774
1794
  readonly stage: Clutter.Stage
1775
1795
  time_slice: number
1796
+ timeSlice: number
1776
1797
 
1777
1798
  // Own fields of Mx-1.0.Mx.ActorManager
1778
1799
 
@@ -1990,6 +2011,10 @@ export module Adjustment {
1990
2011
  step_increment?: number | null
1991
2012
  upper?: number | null
1992
2013
  value?: number | null
2014
+ clampValue?: boolean | null
2015
+ pageIncrement?: number | null
2016
+ pageSize?: number | null
2017
+ stepIncrement?: number | null
1993
2018
  }
1994
2019
 
1995
2020
  }
@@ -1999,11 +2024,15 @@ export interface Adjustment {
1999
2024
  // Own properties of Mx-1.0.Mx.Adjustment
2000
2025
 
2001
2026
  clamp_value: boolean
2027
+ clampValue: boolean
2002
2028
  elastic: boolean
2003
2029
  lower: number
2004
2030
  page_increment: number
2031
+ pageIncrement: number
2005
2032
  page_size: number
2033
+ pageSize: number
2006
2034
  step_increment: number
2035
+ stepIncrement: number
2007
2036
  upper: number
2008
2037
  value: number
2009
2038
 
@@ -2235,6 +2264,7 @@ export module Application {
2235
2264
 
2236
2265
  application_name?: string | null
2237
2266
  flags?: number | null
2267
+ applicationName?: string | null
2238
2268
  }
2239
2269
 
2240
2270
  }
@@ -2244,6 +2274,7 @@ export interface Application {
2244
2274
  // Own properties of Mx-1.0.Mx.Application
2245
2275
 
2246
2276
  readonly application_name: string | null
2277
+ readonly applicationName: string | null
2247
2278
  readonly flags: number
2248
2279
 
2249
2280
  // Own fields of Mx-1.0.Mx.Application
@@ -2428,6 +2459,22 @@ export module Bin {
2428
2459
  * Whether the child should fill the vertical allocation
2429
2460
  */
2430
2461
  y_fill?: boolean | null
2462
+ /**
2463
+ * The horizontal alignment of the #MxBin child.
2464
+ */
2465
+ xAlign: any
2466
+ /**
2467
+ * Whether the child should fill the horizontal allocation
2468
+ */
2469
+ xFill?: boolean | null
2470
+ /**
2471
+ * The vertical alignment of the #MxBin child.
2472
+ */
2473
+ yAlign: any
2474
+ /**
2475
+ * Whether the child should fill the vertical allocation
2476
+ */
2477
+ yFill?: boolean | null
2431
2478
  }
2432
2479
 
2433
2480
  }
@@ -2444,18 +2491,34 @@ export interface Bin extends Atk.ImplementorIface, Clutter.Animatable, Clutter.C
2444
2491
  * The horizontal alignment of the #MxBin child.
2445
2492
  */
2446
2493
  x_align: any
2494
+ /**
2495
+ * The horizontal alignment of the #MxBin child.
2496
+ */
2497
+ xAlign: any
2447
2498
  /**
2448
2499
  * Whether the child should fill the horizontal allocation
2449
2500
  */
2450
2501
  x_fill: boolean
2502
+ /**
2503
+ * Whether the child should fill the horizontal allocation
2504
+ */
2505
+ xFill: boolean
2451
2506
  /**
2452
2507
  * The vertical alignment of the #MxBin child.
2453
2508
  */
2454
2509
  y_align: any
2510
+ /**
2511
+ * The vertical alignment of the #MxBin child.
2512
+ */
2513
+ yAlign: any
2455
2514
  /**
2456
2515
  * Whether the child should fill the vertical allocation
2457
2516
  */
2458
2517
  y_fill: boolean
2518
+ /**
2519
+ * Whether the child should fill the vertical allocation
2520
+ */
2521
+ yFill: boolean
2459
2522
 
2460
2523
  // Owm methods of Mx-1.0.Mx.Bin
2461
2524
 
@@ -2875,6 +2938,8 @@ export module BoxLayout {
2875
2938
  orientation?: Orientation | null
2876
2939
  scroll_to_focused?: boolean | null
2877
2940
  spacing?: number | null
2941
+ enableAnimations?: boolean | null
2942
+ scrollToFocused?: boolean | null
2878
2943
  }
2879
2944
 
2880
2945
  }
@@ -2884,8 +2949,10 @@ export interface BoxLayout extends Atk.ImplementorIface, Clutter.Animatable, Clu
2884
2949
  // Own properties of Mx-1.0.Mx.BoxLayout
2885
2950
 
2886
2951
  enable_animations: boolean
2952
+ enableAnimations: boolean
2887
2953
  orientation: Orientation
2888
2954
  scroll_to_focused: boolean
2955
+ scrollToFocused: boolean
2889
2956
  spacing: number
2890
2957
 
2891
2958
  // Owm methods of Mx-1.0.Mx.BoxLayout
@@ -3402,6 +3469,10 @@ export module BoxLayoutChild {
3402
3469
  x_fill?: boolean | null
3403
3470
  y_align?: Align | null
3404
3471
  y_fill?: boolean | null
3472
+ xAlign?: Align | null
3473
+ xFill?: boolean | null
3474
+ yAlign?: Align | null
3475
+ yFill?: boolean | null
3405
3476
  }
3406
3477
 
3407
3478
  }
@@ -3412,9 +3483,13 @@ export interface BoxLayoutChild {
3412
3483
 
3413
3484
  expand: boolean
3414
3485
  x_align: Align
3486
+ xAlign: Align
3415
3487
  x_fill: boolean
3488
+ xFill: boolean
3416
3489
  y_align: Align
3490
+ yAlign: Align
3417
3491
  y_fill: boolean
3492
+ yFill: boolean
3418
3493
 
3419
3494
  // Class property signals of Mx-1.0.Mx.BoxLayoutChild
3420
3495
 
@@ -3484,6 +3559,12 @@ export module Button {
3484
3559
  label?: string | null
3485
3560
  label_visible?: boolean | null
3486
3561
  toggled?: boolean | null
3562
+ iconName?: string | null
3563
+ iconPosition?: Position | null
3564
+ iconSize?: number | null
3565
+ iconVisible?: boolean | null
3566
+ isToggle?: boolean | null
3567
+ labelVisible?: boolean | null
3487
3568
  }
3488
3569
 
3489
3570
  }
@@ -3494,18 +3575,26 @@ export interface Button extends Atk.ImplementorIface, Clutter.Animatable, Clutte
3494
3575
 
3495
3576
  action: Action
3496
3577
  icon_name: string | null
3578
+ iconName: string | null
3497
3579
  icon_position: Position
3580
+ iconPosition: Position
3498
3581
  icon_size: number
3582
+ iconSize: number
3499
3583
  icon_visible: boolean
3584
+ iconVisible: boolean
3500
3585
  is_toggle: boolean
3586
+ isToggle: boolean
3501
3587
  label: string | null
3502
3588
  label_visible: boolean
3589
+ labelVisible: boolean
3503
3590
  toggled: boolean
3504
3591
 
3505
3592
  // Conflicting properties
3506
3593
 
3507
3594
  x_align: any
3595
+ xAlign: any
3508
3596
  y_align: any
3597
+ yAlign: any
3509
3598
 
3510
3599
  // Owm methods of Mx-1.0.Mx.Button
3511
3600
 
@@ -4039,6 +4128,8 @@ export module ButtonGroup {
4039
4128
 
4040
4129
  active_button?: Button | null
4041
4130
  allow_no_active?: boolean | null
4131
+ activeButton?: Button | null
4132
+ allowNoActive?: boolean | null
4042
4133
  }
4043
4134
 
4044
4135
  }
@@ -4048,7 +4139,9 @@ export interface ButtonGroup {
4048
4139
  // Own properties of Mx-1.0.Mx.ButtonGroup
4049
4140
 
4050
4141
  active_button: Button
4142
+ activeButton: Button
4051
4143
  allow_no_active: boolean
4144
+ allowNoActive: boolean
4052
4145
 
4053
4146
  // Own fields of Mx-1.0.Mx.ButtonGroup
4054
4147
 
@@ -4210,6 +4303,8 @@ export module ComboBox {
4210
4303
  active_icon_name?: string | null
4211
4304
  active_text?: string | null
4212
4305
  index?: number | null
4306
+ activeIconName?: string | null
4307
+ activeText?: string | null
4213
4308
  }
4214
4309
 
4215
4310
  }
@@ -4219,7 +4314,9 @@ export interface ComboBox extends Atk.ImplementorIface, Clutter.Animatable, Clut
4219
4314
  // Own properties of Mx-1.0.Mx.ComboBox
4220
4315
 
4221
4316
  active_icon_name: string | null
4317
+ activeIconName: string | null
4222
4318
  active_text: string | null
4319
+ activeText: string | null
4223
4320
  index: number
4224
4321
 
4225
4322
  // Owm methods of Mx-1.0.Mx.ComboBox
@@ -4665,6 +4762,7 @@ export module DeformBowTie {
4665
4762
 
4666
4763
  flip_back?: boolean | null
4667
4764
  period?: number | null
4765
+ flipBack?: boolean | null
4668
4766
  }
4669
4767
 
4670
4768
  }
@@ -4674,6 +4772,7 @@ export interface DeformBowTie extends Atk.ImplementorIface, Clutter.Animatable,
4674
4772
  // Own properties of Mx-1.0.Mx.DeformBowTie
4675
4773
 
4676
4774
  flip_back: boolean
4775
+ flipBack: boolean
4677
4776
  period: number
4678
4777
 
4679
4778
  // Own fields of Mx-1.0.Mx.DeformBowTie
@@ -5474,6 +5573,8 @@ export module DeformTexture {
5474
5573
  front?: Clutter.Texture | null
5475
5574
  tiles_x?: number | null
5476
5575
  tiles_y?: number | null
5576
+ tilesX?: number | null
5577
+ tilesY?: number | null
5477
5578
  }
5478
5579
 
5479
5580
  }
@@ -5485,7 +5586,9 @@ export interface DeformTexture extends Atk.ImplementorIface, Clutter.Animatable,
5485
5586
  back: Clutter.Texture
5486
5587
  front: Clutter.Texture
5487
5588
  tiles_x: number
5589
+ tilesX: number
5488
5590
  tiles_y: number
5591
+ tilesY: number
5489
5592
 
5490
5593
  // Own fields of Mx-1.0.Mx.DeformTexture
5491
5594
 
@@ -6313,7 +6416,9 @@ export interface Dialog extends Atk.ImplementorIface, Clutter.Animatable, Clutte
6313
6416
  // Conflicting properties
6314
6417
 
6315
6418
  x_align: any
6419
+ xAlign: any
6316
6420
  y_align: any
6421
+ yAlign: any
6317
6422
 
6318
6423
  // Owm methods of Mx-1.0.Mx.Dialog
6319
6424
 
@@ -6770,6 +6875,11 @@ export module Entry {
6770
6875
  primary_icon_tooltip_text?: string | null
6771
6876
  secondary_icon_tooltip_text?: string | null
6772
6877
  text?: string | null
6878
+ hintText?: string | null
6879
+ iconHighlightSuffix?: string | null
6880
+ passwordChar?: number | null
6881
+ primaryIconTooltipText?: string | null
6882
+ secondaryIconTooltipText?: string | null
6773
6883
  }
6774
6884
 
6775
6885
  }
@@ -6779,11 +6889,17 @@ export interface Entry extends Atk.ImplementorIface, Clutter.Animatable, Clutter
6779
6889
  // Own properties of Mx-1.0.Mx.Entry
6780
6890
 
6781
6891
  readonly clutter_text: Clutter.Text
6892
+ readonly clutterText: Clutter.Text
6782
6893
  hint_text: string | null
6894
+ hintText: string | null
6783
6895
  icon_highlight_suffix: string | null
6896
+ iconHighlightSuffix: string | null
6784
6897
  password_char: number
6898
+ passwordChar: number
6785
6899
  primary_icon_tooltip_text: string | null
6900
+ primaryIconTooltipText: string | null
6786
6901
  secondary_icon_tooltip_text: string | null
6902
+ secondaryIconTooltipText: string | null
6787
6903
  text: string | null
6788
6904
 
6789
6905
  // Owm methods of Mx-1.0.Mx.Entry
@@ -7288,7 +7404,9 @@ export interface Expander extends Atk.ImplementorIface, Clutter.Animatable, Clut
7288
7404
  // Conflicting properties
7289
7405
 
7290
7406
  x_align: any
7407
+ xAlign: any
7291
7408
  y_align: any
7409
+ yAlign: any
7292
7410
 
7293
7411
  // Owm methods of Mx-1.0.Mx.Expander
7294
7412
 
@@ -7711,6 +7829,15 @@ export module FadeEffect {
7711
7829
  bounds_y?: number | null
7712
7830
  color?: Clutter.Color | null
7713
7831
  freeze_update?: boolean | null
7832
+ borderBottom?: number | null
7833
+ borderLeft?: number | null
7834
+ borderRight?: number | null
7835
+ borderTop?: number | null
7836
+ boundsHeight?: number | null
7837
+ boundsWidth?: number | null
7838
+ boundsX?: number | null
7839
+ boundsY?: number | null
7840
+ freezeUpdate?: boolean | null
7714
7841
  }
7715
7842
 
7716
7843
  }
@@ -7720,15 +7847,24 @@ export interface FadeEffect {
7720
7847
  // Own properties of Mx-1.0.Mx.FadeEffect
7721
7848
 
7722
7849
  border_bottom: number
7850
+ borderBottom: number
7723
7851
  border_left: number
7852
+ borderLeft: number
7724
7853
  border_right: number
7854
+ borderRight: number
7725
7855
  border_top: number
7856
+ borderTop: number
7726
7857
  bounds_height: number
7858
+ boundsHeight: number
7727
7859
  bounds_width: number
7860
+ boundsWidth: number
7728
7861
  bounds_x: number
7862
+ boundsX: number
7729
7863
  bounds_y: number
7864
+ boundsY: number
7730
7865
  color: Clutter.Color
7731
7866
  freeze_update: boolean
7867
+ freezeUpdate: boolean
7732
7868
 
7733
7869
  // Own fields of Mx-1.0.Mx.FadeEffect
7734
7870
 
@@ -8326,7 +8462,9 @@ export interface Frame extends Atk.ImplementorIface, Clutter.Animatable, Clutter
8326
8462
  // Conflicting properties
8327
8463
 
8328
8464
  x_align: any
8465
+ xAlign: any
8329
8466
  y_align: any
8467
+ yAlign: any
8330
8468
 
8331
8469
  // Own fields of Mx-1.0.Mx.Frame
8332
8470
 
@@ -8718,6 +8856,14 @@ export module Grid {
8718
8856
  max_stride?: number | null
8719
8857
  orientation?: Orientation | null
8720
8858
  row_spacing?: number | null
8859
+ childXAlign?: Align | null
8860
+ childYAlign?: Align | null
8861
+ columnSpacing?: number | null
8862
+ homogenousColumns?: boolean | null
8863
+ homogenousRows?: boolean | null
8864
+ lineAlignment?: Align | null
8865
+ maxStride?: number | null
8866
+ rowSpacing?: number | null
8721
8867
  }
8722
8868
 
8723
8869
  }
@@ -8727,14 +8873,22 @@ export interface Grid extends Atk.ImplementorIface, Clutter.Animatable, Clutter.
8727
8873
  // Own properties of Mx-1.0.Mx.Grid
8728
8874
 
8729
8875
  child_x_align: Align
8876
+ childXAlign: Align
8730
8877
  child_y_align: Align
8878
+ childYAlign: Align
8731
8879
  column_spacing: number
8880
+ columnSpacing: number
8732
8881
  homogenous_columns: boolean
8882
+ homogenousColumns: boolean
8733
8883
  homogenous_rows: boolean
8884
+ homogenousRows: boolean
8734
8885
  line_alignment: Align
8886
+ lineAlignment: Align
8735
8887
  max_stride: number
8888
+ maxStride: number
8736
8889
  orientation: Orientation
8737
8890
  row_spacing: number
8891
+ rowSpacing: number
8738
8892
 
8739
8893
  // Owm methods of Mx-1.0.Mx.Grid
8740
8894
 
@@ -9149,6 +9303,8 @@ export module Icon {
9149
9303
 
9150
9304
  icon_name?: string | null
9151
9305
  icon_size?: number | null
9306
+ iconName?: string | null
9307
+ iconSize?: number | null
9152
9308
  }
9153
9309
 
9154
9310
  }
@@ -9158,7 +9314,9 @@ export interface Icon extends Atk.ImplementorIface, Clutter.Animatable, Clutter.
9158
9314
  // Own properties of Mx-1.0.Mx.Icon
9159
9315
 
9160
9316
  icon_name: string | null
9317
+ iconName: string | null
9161
9318
  icon_size: number
9319
+ iconSize: number
9162
9320
 
9163
9321
  // Owm methods of Mx-1.0.Mx.Icon
9164
9322
 
@@ -9541,6 +9699,7 @@ export module IconTheme {
9541
9699
  // Own constructor properties of Mx-1.0.Mx.IconTheme
9542
9700
 
9543
9701
  theme_name?: string | null
9702
+ themeName?: string | null
9544
9703
  }
9545
9704
 
9546
9705
  }
@@ -9550,6 +9709,7 @@ export interface IconTheme {
9550
9709
  // Own properties of Mx-1.0.Mx.IconTheme
9551
9710
 
9552
9711
  theme_name: string | null
9712
+ themeName: string | null
9553
9713
 
9554
9714
  // Own fields of Mx-1.0.Mx.IconTheme
9555
9715
 
@@ -9682,6 +9842,13 @@ export module Image {
9682
9842
  scale_mode?: ImageScaleMode | null
9683
9843
  scale_width_threshold?: number | null
9684
9844
  transition_duration?: number | null
9845
+ allowUpscale?: boolean | null
9846
+ imageRotation?: number | null
9847
+ loadAsync?: boolean | null
9848
+ scaleHeightThreshold?: number | null
9849
+ scaleMode?: ImageScaleMode | null
9850
+ scaleWidthThreshold?: number | null
9851
+ transitionDuration?: number | null
9685
9852
  }
9686
9853
 
9687
9854
  }
@@ -9691,12 +9858,19 @@ export interface Image extends Atk.ImplementorIface, Clutter.Animatable, Clutter
9691
9858
  // Own properties of Mx-1.0.Mx.Image
9692
9859
 
9693
9860
  allow_upscale: boolean
9861
+ allowUpscale: boolean
9694
9862
  image_rotation: number
9863
+ imageRotation: number
9695
9864
  load_async: boolean
9865
+ loadAsync: boolean
9696
9866
  scale_height_threshold: number
9867
+ scaleHeightThreshold: number
9697
9868
  scale_mode: ImageScaleMode
9869
+ scaleMode: ImageScaleMode
9698
9870
  scale_width_threshold: number
9871
+ scaleWidthThreshold: number
9699
9872
  transition_duration: number
9873
+ transitionDuration: number
9700
9874
 
9701
9875
  // Owm methods of Mx-1.0.Mx.Image
9702
9876
 
@@ -10267,6 +10441,7 @@ export module ItemView {
10267
10441
  factory?: GObject.Object | null
10268
10442
  item_type?: GObject.GType | null
10269
10443
  model?: Clutter.Model | null
10444
+ itemType?: GObject.GType | null
10270
10445
  }
10271
10446
 
10272
10447
  }
@@ -10277,6 +10452,7 @@ export interface ItemView extends Atk.ImplementorIface, Clutter.Animatable, Clut
10277
10452
 
10278
10453
  factory: GObject.Object
10279
10454
  item_type: GObject.GType
10455
+ itemType: GObject.GType
10280
10456
  model: Clutter.Model
10281
10457
 
10282
10458
  // Owm methods of Mx-1.0.Mx.ItemView
@@ -10748,6 +10924,13 @@ export module KineticScrollView {
10748
10924
  overshoot?: number | null
10749
10925
  scroll_policy?: ScrollPolicy | null
10750
10926
  use_captured?: boolean | null
10927
+ accelerationFactor?: number | null
10928
+ clampDuration?: number | null
10929
+ clampMode?: number | null
10930
+ clampToCenter?: boolean | null
10931
+ mouseButton?: number | null
10932
+ scrollPolicy?: ScrollPolicy | null
10933
+ useCaptured?: boolean | null
10751
10934
  }
10752
10935
 
10753
10936
  }
@@ -10757,20 +10940,29 @@ export interface KineticScrollView extends Atk.ImplementorIface, Clutter.Animata
10757
10940
  // Own properties of Mx-1.0.Mx.KineticScrollView
10758
10941
 
10759
10942
  acceleration_factor: number
10943
+ accelerationFactor: number
10760
10944
  clamp_duration: number
10945
+ clampDuration: number
10761
10946
  clamp_mode: number
10947
+ clampMode: number
10762
10948
  clamp_to_center: boolean
10949
+ clampToCenter: boolean
10763
10950
  deceleration: number
10764
10951
  mouse_button: number
10952
+ mouseButton: number
10765
10953
  overshoot: number
10766
10954
  scroll_policy: ScrollPolicy
10955
+ scrollPolicy: ScrollPolicy
10767
10956
  readonly state: KineticScrollViewState
10768
10957
  use_captured: boolean
10958
+ useCaptured: boolean
10769
10959
 
10770
10960
  // Conflicting properties
10771
10961
 
10772
10962
  x_align: any
10963
+ xAlign: any
10773
10964
  y_align: any
10965
+ yAlign: any
10774
10966
 
10775
10967
  // Owm methods of Mx-1.0.Mx.KineticScrollView
10776
10968
 
@@ -11308,6 +11500,21 @@ export module Label {
11308
11500
  use_markup?: boolean | null
11309
11501
  x_align: any
11310
11502
  y_align: any
11503
+ fadeOut?: boolean | null
11504
+ /**
11505
+ * Whether to wrap the lines of #MxLabel:text if the contents
11506
+ * exceed the available allocation.
11507
+ */
11508
+ lineWrap?: boolean | null
11509
+ /**
11510
+ * Show a tooltip when there is not enough space to display the text. If set
11511
+ * to %TRUE, this will also cause the #ClutterActor:reactive property to be
11512
+ * enabled.
11513
+ */
11514
+ showTooltip?: boolean | null
11515
+ useMarkup?: boolean | null
11516
+ xAlign: any
11517
+ yAlign: any
11311
11518
  }
11312
11519
 
11313
11520
  }
@@ -11317,17 +11524,33 @@ export interface Label extends Atk.ImplementorIface, Clutter.Animatable, Clutter
11317
11524
  // Own properties of Mx-1.0.Mx.Label
11318
11525
 
11319
11526
  readonly clutter_text: Clutter.Text
11527
+ readonly clutterText: Clutter.Text
11320
11528
  fade_out: boolean
11529
+ fadeOut: boolean
11321
11530
  /**
11322
11531
  * Whether to wrap the lines of #MxLabel:text if the contents
11323
11532
  * exceed the available allocation.
11324
11533
  */
11325
11534
  line_wrap: boolean
11535
+ /**
11536
+ * Whether to wrap the lines of #MxLabel:text if the contents
11537
+ * exceed the available allocation.
11538
+ */
11539
+ lineWrap: boolean
11326
11540
  // Has conflict: show_tooltip: boolean
11541
+ /**
11542
+ * Show a tooltip when there is not enough space to display the text. If set
11543
+ * to %TRUE, this will also cause the #ClutterActor:reactive property to be
11544
+ * enabled.
11545
+ */
11546
+ showTooltip: boolean
11327
11547
  text: string | null
11328
11548
  use_markup: boolean
11549
+ useMarkup: boolean
11329
11550
  x_align: any
11551
+ xAlign: any
11330
11552
  y_align: any
11553
+ yAlign: any
11331
11554
 
11332
11555
  // Owm methods of Mx-1.0.Mx.Label
11333
11556
 
@@ -11829,6 +12052,7 @@ export module ListView {
11829
12052
  factory?: GObject.Object | null
11830
12053
  item_type?: GObject.GType | null
11831
12054
  model?: Clutter.Model | null
12055
+ itemType?: GObject.GType | null
11832
12056
  }
11833
12057
 
11834
12058
  }
@@ -11839,6 +12063,7 @@ export interface ListView extends Atk.ImplementorIface, Clutter.Animatable, Clut
11839
12063
 
11840
12064
  factory: GObject.Object
11841
12065
  item_type: GObject.GType
12066
+ itemType: GObject.GType
11842
12067
  model: Clutter.Model
11843
12068
 
11844
12069
  // Owm methods of Mx-1.0.Mx.ListView
@@ -12758,6 +12983,8 @@ export module Notebook {
12758
12983
 
12759
12984
  current_page?: Clutter.Actor | null
12760
12985
  enable_gestures?: boolean | null
12986
+ currentPage?: Clutter.Actor | null
12987
+ enableGestures?: boolean | null
12761
12988
  }
12762
12989
 
12763
12990
  }
@@ -12767,7 +12994,9 @@ export interface Notebook extends Atk.ImplementorIface, Clutter.Animatable, Clut
12767
12994
  // Own properties of Mx-1.0.Mx.Notebook
12768
12995
 
12769
12996
  current_page: Clutter.Actor
12997
+ currentPage: Clutter.Actor
12770
12998
  enable_gestures: boolean
12999
+ enableGestures: boolean
12771
13000
 
12772
13001
  // Own fields of Mx-1.0.Mx.Notebook
12773
13002
 
@@ -13153,6 +13382,10 @@ export module Offscreen {
13153
13382
  child?: Clutter.Actor | null
13154
13383
  pick_child?: boolean | null
13155
13384
  redirect_enabled?: boolean | null
13385
+ accumulationEnabled?: boolean | null
13386
+ autoUpdate?: boolean | null
13387
+ pickChild?: boolean | null
13388
+ redirectEnabled?: boolean | null
13156
13389
  }
13157
13390
 
13158
13391
  }
@@ -13162,15 +13395,20 @@ export interface Offscreen extends Atk.ImplementorIface, Clutter.Animatable, Clu
13162
13395
  // Own properties of Mx-1.0.Mx.Offscreen
13163
13396
 
13164
13397
  accumulation_enabled: boolean
13398
+ accumulationEnabled: boolean
13165
13399
  readonly accumulation_material: any
13400
+ readonly accumulationMaterial: any
13166
13401
  auto_update: boolean
13402
+ autoUpdate: boolean
13167
13403
  /**
13168
13404
  * The off-screen buffer used to draw the child.
13169
13405
  */
13170
13406
  readonly buffer: any
13171
13407
  child: Clutter.Actor
13172
13408
  pick_child: boolean
13409
+ pickChild: boolean
13173
13410
  redirect_enabled: boolean
13411
+ redirectEnabled: boolean
13174
13412
 
13175
13413
  // Own fields of Mx-1.0.Mx.Offscreen
13176
13414
 
@@ -13611,6 +13849,7 @@ export module PathBar {
13611
13849
 
13612
13850
  clear_on_change?: boolean | null
13613
13851
  editable?: boolean | null
13852
+ clearOnChange?: boolean | null
13614
13853
  }
13615
13854
 
13616
13855
  }
@@ -13620,6 +13859,7 @@ export interface PathBar extends Atk.ImplementorIface, Clutter.Animatable, Clutt
13620
13859
  // Own properties of Mx-1.0.Mx.PathBar
13621
13860
 
13622
13861
  clear_on_change: boolean
13862
+ clearOnChange: boolean
13623
13863
  editable: boolean
13624
13864
  readonly entry: Entry
13625
13865
  readonly level: number
@@ -14473,7 +14713,9 @@ export interface ScrollBar extends Atk.ImplementorIface, Clutter.Animatable, Clu
14473
14713
  // Conflicting properties
14474
14714
 
14475
14715
  x_align: any
14716
+ xAlign: any
14476
14717
  y_align: any
14718
+ yAlign: any
14477
14719
 
14478
14720
  // Owm methods of Mx-1.0.Mx.ScrollBar
14479
14721
 
@@ -14893,6 +15135,9 @@ export module ScrollView {
14893
15135
  enable_gestures?: boolean | null
14894
15136
  enable_mouse_scrolling?: boolean | null
14895
15137
  scroll_policy?: ScrollPolicy | null
15138
+ enableGestures?: boolean | null
15139
+ enableMouseScrolling?: boolean | null
15140
+ scrollPolicy?: ScrollPolicy | null
14896
15141
  }
14897
15142
 
14898
15143
  }
@@ -14902,13 +15147,18 @@ export interface ScrollView extends Atk.ImplementorIface, Clutter.Animatable, Cl
14902
15147
  // Own properties of Mx-1.0.Mx.ScrollView
14903
15148
 
14904
15149
  enable_gestures: boolean
15150
+ enableGestures: boolean
14905
15151
  enable_mouse_scrolling: boolean
15152
+ enableMouseScrolling: boolean
14906
15153
  scroll_policy: ScrollPolicy
15154
+ scrollPolicy: ScrollPolicy
14907
15155
 
14908
15156
  // Conflicting properties
14909
15157
 
14910
15158
  x_align: any
15159
+ xAlign: any
14911
15160
  y_align: any
15161
+ yAlign: any
14912
15162
 
14913
15163
  // Owm methods of Mx-1.0.Mx.ScrollView
14914
15164
 
@@ -15305,6 +15555,11 @@ export module Settings {
15305
15555
  icon_theme?: string | null
15306
15556
  long_press_timeout?: number | null
15307
15557
  small_screen?: boolean | null
15558
+ dragThreshold?: number | null
15559
+ fontName?: string | null
15560
+ iconTheme?: string | null
15561
+ longPressTimeout?: number | null
15562
+ smallScreen?: boolean | null
15308
15563
  }
15309
15564
 
15310
15565
  }
@@ -15314,10 +15569,15 @@ export interface Settings {
15314
15569
  // Own properties of Mx-1.0.Mx.Settings
15315
15570
 
15316
15571
  drag_threshold: number
15572
+ dragThreshold: number
15317
15573
  font_name: string | null
15574
+ fontName: string | null
15318
15575
  icon_theme: string | null
15576
+ iconTheme: string | null
15319
15577
  long_press_timeout: number
15578
+ longPressTimeout: number
15320
15579
  small_screen: boolean
15580
+ smallScreen: boolean
15321
15581
 
15322
15582
  // Own fields of Mx-1.0.Mx.Settings
15323
15583
 
@@ -15375,6 +15635,7 @@ export module Slider {
15375
15635
 
15376
15636
  buffer_value?: number | null
15377
15637
  value?: number | null
15638
+ bufferValue?: number | null
15378
15639
  }
15379
15640
 
15380
15641
  }
@@ -15384,6 +15645,7 @@ export interface Slider extends Atk.ImplementorIface, Clutter.Animatable, Clutte
15384
15645
  // Own properties of Mx-1.0.Mx.Slider
15385
15646
 
15386
15647
  buffer_value: number
15648
+ bufferValue: number
15387
15649
  value: number
15388
15650
 
15389
15651
  // Owm methods of Mx-1.0.Mx.Slider
@@ -16648,6 +16910,10 @@ export module StackChild {
16648
16910
  x_fill?: boolean | null
16649
16911
  y_align?: Align | null
16650
16912
  y_fill?: boolean | null
16913
+ xAlign?: Align | null
16914
+ xFill?: boolean | null
16915
+ yAlign?: Align | null
16916
+ yFill?: boolean | null
16651
16917
  }
16652
16918
 
16653
16919
  }
@@ -16659,9 +16925,13 @@ export interface StackChild {
16659
16925
  crop: boolean
16660
16926
  fit: boolean
16661
16927
  x_align: Align
16928
+ xAlign: Align
16662
16929
  x_fill: boolean
16930
+ xFill: boolean
16663
16931
  y_align: Align
16932
+ yAlign: Align
16664
16933
  y_fill: boolean
16934
+ yFill: boolean
16665
16935
 
16666
16936
  // Class property signals of Mx-1.0.Mx.StackChild
16667
16937
 
@@ -16833,6 +17103,8 @@ export module Table {
16833
17103
 
16834
17104
  column_spacing?: number | null
16835
17105
  row_spacing?: number | null
17106
+ columnSpacing?: number | null
17107
+ rowSpacing?: number | null
16836
17108
  }
16837
17109
 
16838
17110
  }
@@ -16842,9 +17114,13 @@ export interface Table extends Atk.ImplementorIface, Clutter.Animatable, Clutter
16842
17114
  // Own properties of Mx-1.0.Mx.Table
16843
17115
 
16844
17116
  readonly column_count: number
17117
+ readonly columnCount: number
16845
17118
  column_spacing: number
17119
+ columnSpacing: number
16846
17120
  readonly row_count: number
17121
+ readonly rowCount: number
16847
17122
  row_spacing: number
17123
+ rowSpacing: number
16848
17124
 
16849
17125
  // Owm methods of Mx-1.0.Mx.Table
16850
17126
 
@@ -17420,6 +17696,14 @@ export module TableChild {
17420
17696
  y_align?: Align | null
17421
17697
  y_expand?: boolean | null
17422
17698
  y_fill?: boolean | null
17699
+ columnSpan?: number | null
17700
+ rowSpan?: number | null
17701
+ xAlign?: Align | null
17702
+ xExpand?: boolean | null
17703
+ xFill?: boolean | null
17704
+ yAlign?: Align | null
17705
+ yExpand?: boolean | null
17706
+ yFill?: boolean | null
17423
17707
  }
17424
17708
 
17425
17709
  }
@@ -17430,14 +17714,22 @@ export interface TableChild {
17430
17714
 
17431
17715
  column: number
17432
17716
  column_span: number
17717
+ columnSpan: number
17433
17718
  row: number
17434
17719
  row_span: number
17720
+ rowSpan: number
17435
17721
  x_align: Align
17722
+ xAlign: Align
17436
17723
  x_expand: boolean
17724
+ xExpand: boolean
17437
17725
  x_fill: boolean
17726
+ xFill: boolean
17438
17727
  y_align: Align
17728
+ yAlign: Align
17439
17729
  y_expand: boolean
17730
+ yExpand: boolean
17440
17731
  y_fill: boolean
17732
+ yFill: boolean
17441
17733
 
17442
17734
  // Class property signals of Mx-1.0.Mx.TableChild
17443
17735
 
@@ -17648,6 +17940,7 @@ export module TextureFrame {
17648
17940
  parent_texture?: Clutter.Texture | null
17649
17941
  right?: number | null
17650
17942
  top?: number | null
17943
+ parentTexture?: Clutter.Texture | null
17651
17944
  }
17652
17945
 
17653
17946
  }
@@ -17659,6 +17952,7 @@ export interface TextureFrame extends Atk.ImplementorIface, Clutter.Animatable,
17659
17952
  bottom: number
17660
17953
  left: number
17661
17954
  parent_texture: Clutter.Texture
17955
+ parentTexture: Clutter.Texture
17662
17956
  right: number
17663
17957
  top: number
17664
17958
 
@@ -18423,6 +18717,7 @@ export module Toolbar {
18423
18717
  // Own constructor properties of Mx-1.0.Mx.Toolbar
18424
18718
 
18425
18719
  has_close_button?: boolean | null
18720
+ hasCloseButton?: boolean | null
18426
18721
  }
18427
18722
 
18428
18723
  }
@@ -18432,11 +18727,14 @@ export interface Toolbar extends Atk.ImplementorIface, Clutter.Animatable, Clutt
18432
18727
  // Own properties of Mx-1.0.Mx.Toolbar
18433
18728
 
18434
18729
  has_close_button: boolean
18730
+ hasCloseButton: boolean
18435
18731
 
18436
18732
  // Conflicting properties
18437
18733
 
18438
18734
  x_align: any
18735
+ xAlign: any
18439
18736
  y_align: any
18737
+ yAlign: any
18440
18738
 
18441
18739
  // Own fields of Mx-1.0.Mx.Toolbar
18442
18740
 
@@ -18849,6 +19147,7 @@ export module Tooltip {
18849
19147
 
18850
19148
  text?: string | null
18851
19149
  tip_area?: Clutter.Geometry | null
19150
+ tipArea?: Clutter.Geometry | null
18852
19151
  }
18853
19152
 
18854
19153
  }
@@ -18859,6 +19158,7 @@ export interface Tooltip extends Atk.ImplementorIface, Clutter.Animatable, Clutt
18859
19158
 
18860
19159
  text: string | null
18861
19160
  tip_area: Clutter.Geometry
19161
+ tipArea: Clutter.Geometry
18862
19162
 
18863
19163
  // Owm methods of Mx-1.0.Mx.Tooltip
18864
19164
 
@@ -19271,6 +19571,10 @@ export module Viewport {
19271
19571
  x_origin?: number | null
19272
19572
  y_origin?: number | null
19273
19573
  z_origin?: number | null
19574
+ syncAdjustments?: boolean | null
19575
+ xOrigin?: number | null
19576
+ yOrigin?: number | null
19577
+ zOrigin?: number | null
19274
19578
  }
19275
19579
 
19276
19580
  }
@@ -19280,14 +19584,20 @@ export interface Viewport extends Atk.ImplementorIface, Clutter.Animatable, Clut
19280
19584
  // Own properties of Mx-1.0.Mx.Viewport
19281
19585
 
19282
19586
  sync_adjustments: boolean
19587
+ syncAdjustments: boolean
19283
19588
  x_origin: number
19589
+ xOrigin: number
19284
19590
  y_origin: number
19591
+ yOrigin: number
19285
19592
  z_origin: number
19593
+ zOrigin: number
19286
19594
 
19287
19595
  // Conflicting properties
19288
19596
 
19289
19597
  x_align: any
19598
+ xAlign: any
19290
19599
  y_align: any
19600
+ yAlign: any
19291
19601
 
19292
19602
  // Owm methods of Mx-1.0.Mx.Viewport
19293
19603
 
@@ -19700,6 +20010,11 @@ export module Widget {
19700
20010
  * text displayed on the tooltip
19701
20011
  */
19702
20012
  tooltip_text?: string | null
20013
+ tooltipDelay?: number | null
20014
+ /**
20015
+ * text displayed on the tooltip
20016
+ */
20017
+ tooltipText?: string | null
19703
20018
  }
19704
20019
 
19705
20020
  }
@@ -19714,10 +20029,15 @@ export interface Widget extends Atk.ImplementorIface, Clutter.Animatable, Clutte
19714
20029
  */
19715
20030
  menu: Menu
19716
20031
  tooltip_delay: number
20032
+ tooltipDelay: number
19717
20033
  /**
19718
20034
  * text displayed on the tooltip
19719
20035
  */
19720
20036
  tooltip_text: string | null
20037
+ /**
20038
+ * text displayed on the tooltip
20039
+ */
20040
+ tooltipText: string | null
19721
20041
 
19722
20042
  // Owm methods of Mx-1.0.Mx.Widget
19723
20043
 
@@ -20219,6 +20539,12 @@ export module Window {
20219
20539
  title?: string | null
20220
20540
  toolbar?: Toolbar | null
20221
20541
  window_rotation?: WindowRotation | null
20542
+ clutterStage?: Clutter.Stage | null
20543
+ hasToolbar?: boolean | null
20544
+ iconCoglTexture?: string | null
20545
+ iconName?: string | null
20546
+ smallScreen?: boolean | null
20547
+ windowRotation?: WindowRotation | null
20222
20548
  }
20223
20549
 
20224
20550
  }
@@ -20229,16 +20555,24 @@ export interface Window {
20229
20555
 
20230
20556
  child: Clutter.Actor
20231
20557
  readonly clutter_stage: Clutter.Stage
20558
+ readonly clutterStage: Clutter.Stage
20232
20559
  fullscreen: boolean
20233
20560
  has_toolbar: boolean
20561
+ hasToolbar: boolean
20234
20562
  icon_cogl_texture: string | null
20563
+ iconCoglTexture: string | null
20235
20564
  icon_name: string | null
20565
+ iconName: string | null
20236
20566
  small_screen: boolean
20567
+ smallScreen: boolean
20237
20568
  title: string | null
20238
20569
  toolbar: Toolbar
20239
20570
  window_rotation: WindowRotation
20571
+ windowRotation: WindowRotation
20240
20572
  readonly window_rotation_angle: number
20573
+ readonly windowRotationAngle: number
20241
20574
  readonly window_rotation_timeline: Clutter.Timeline
20575
+ readonly windowRotationTimeline: Clutter.Timeline
20242
20576
 
20243
20577
  // Own fields of Mx-1.0.Mx.Window
20244
20578