@girs/mx-2.0 1.99.4-3.2.4 → 1.99.4-3.2.6

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/mx-2.0.d.ts CHANGED
@@ -379,6 +379,9 @@ module Draggable {
379
379
  drag_actor?: Clutter.Actor | null
380
380
  drag_enabled?: boolean | null
381
381
  drag_threshold?: number | null
382
+ dragActor?: Clutter.Actor | null
383
+ dragEnabled?: boolean | null
384
+ dragThreshold?: number | null
382
385
  }
383
386
 
384
387
  }
@@ -389,8 +392,11 @@ interface Draggable extends Clutter.Actor {
389
392
 
390
393
  axis: DragAxis
391
394
  drag_actor: Clutter.Actor
395
+ dragActor: Clutter.Actor
392
396
  drag_enabled: boolean
397
+ dragEnabled: boolean
393
398
  drag_threshold: number
399
+ dragThreshold: number
394
400
 
395
401
  // Owm methods of Mx-2.0.Mx.Draggable
396
402
 
@@ -744,6 +750,7 @@ module Droppable {
744
750
  // Own constructor properties of Mx-2.0.Mx.Droppable
745
751
 
746
752
  drop_enabled?: boolean | null
753
+ dropEnabled?: boolean | null
747
754
  }
748
755
 
749
756
  }
@@ -753,6 +760,7 @@ interface Droppable extends Clutter.Actor {
753
760
  // Own properties of Mx-2.0.Mx.Droppable
754
761
 
755
762
  drop_enabled: boolean
763
+ dropEnabled: boolean
756
764
 
757
765
  // Owm methods of Mx-2.0.Mx.Droppable
758
766
 
@@ -1189,6 +1197,8 @@ module Scrollable {
1189
1197
 
1190
1198
  horizontal_adjustment?: Adjustment | null
1191
1199
  vertical_adjustment?: Adjustment | null
1200
+ horizontalAdjustment?: Adjustment | null
1201
+ verticalAdjustment?: Adjustment | null
1192
1202
  }
1193
1203
 
1194
1204
  }
@@ -1198,7 +1208,9 @@ interface Scrollable {
1198
1208
  // Own properties of Mx-2.0.Mx.Scrollable
1199
1209
 
1200
1210
  horizontal_adjustment: Adjustment
1211
+ horizontalAdjustment: Adjustment
1201
1212
  vertical_adjustment: Adjustment
1213
+ verticalAdjustment: Adjustment
1202
1214
 
1203
1215
  // Owm methods of Mx-2.0.Mx.Scrollable
1204
1216
 
@@ -1271,6 +1283,8 @@ module Stylable {
1271
1283
  style?: Style | null
1272
1284
  style_class?: string | null
1273
1285
  style_pseudo_class?: string | null
1286
+ styleClass?: string | null
1287
+ stylePseudoClass?: string | null
1274
1288
  }
1275
1289
 
1276
1290
  }
@@ -1281,7 +1295,9 @@ interface Stylable {
1281
1295
 
1282
1296
  style: Style
1283
1297
  style_class: string | null
1298
+ styleClass: string | null
1284
1299
  style_pseudo_class: string | null
1300
+ stylePseudoClass: string | null
1285
1301
 
1286
1302
  // Owm methods of Mx-2.0.Mx.Stylable
1287
1303
 
@@ -1543,6 +1559,7 @@ module Action {
1543
1559
  active?: boolean | null
1544
1560
  display_name?: string | null
1545
1561
  icon?: string | null
1562
+ displayName?: string | null
1546
1563
  }
1547
1564
 
1548
1565
  }
@@ -1553,6 +1570,7 @@ interface Action extends Gio.Action {
1553
1570
 
1554
1571
  active: boolean
1555
1572
  display_name: string | null
1573
+ displayName: string | null
1556
1574
  icon: string | null
1557
1575
 
1558
1576
  // Owm methods of Mx-2.0.Mx.Action
@@ -1766,6 +1784,7 @@ module ActorManager {
1766
1784
 
1767
1785
  stage?: Clutter.Stage | null
1768
1786
  time_slice?: number | null
1787
+ timeSlice?: number | null
1769
1788
  }
1770
1789
 
1771
1790
  }
@@ -1775,8 +1794,10 @@ interface ActorManager {
1775
1794
  // Own properties of Mx-2.0.Mx.ActorManager
1776
1795
 
1777
1796
  readonly n_operations: number
1797
+ readonly nOperations: number
1778
1798
  readonly stage: Clutter.Stage
1779
1799
  time_slice: number
1800
+ timeSlice: number
1780
1801
 
1781
1802
  // Own fields of Mx-2.0.Mx.ActorManager
1782
1803
 
@@ -2001,6 +2022,10 @@ module Adjustment {
2001
2022
  step_increment?: number | null
2002
2023
  upper?: number | null
2003
2024
  value?: number | null
2025
+ clampValue?: boolean | null
2026
+ pageIncrement?: number | null
2027
+ pageSize?: number | null
2028
+ stepIncrement?: number | null
2004
2029
  }
2005
2030
 
2006
2031
  }
@@ -2010,11 +2035,15 @@ interface Adjustment {
2010
2035
  // Own properties of Mx-2.0.Mx.Adjustment
2011
2036
 
2012
2037
  clamp_value: boolean
2038
+ clampValue: boolean
2013
2039
  elastic: boolean
2014
2040
  lower: number
2015
2041
  page_increment: number
2042
+ pageIncrement: number
2016
2043
  page_size: number
2044
+ pageSize: number
2017
2045
  step_increment: number
2046
+ stepIncrement: number
2018
2047
  upper: number
2019
2048
  value: number
2020
2049
 
@@ -2383,6 +2412,22 @@ module Bin {
2383
2412
  * Whether the child should fill the vertical allocation
2384
2413
  */
2385
2414
  y_fill?: boolean | null
2415
+ /**
2416
+ * The horizontal alignment of the #MxBin child.
2417
+ */
2418
+ xAlign: any
2419
+ /**
2420
+ * Whether the child should fill the horizontal allocation
2421
+ */
2422
+ xFill?: boolean | null
2423
+ /**
2424
+ * The vertical alignment of the #MxBin child.
2425
+ */
2426
+ yAlign: any
2427
+ /**
2428
+ * Whether the child should fill the vertical allocation
2429
+ */
2430
+ yFill?: boolean | null
2386
2431
  }
2387
2432
 
2388
2433
  }
@@ -2399,18 +2444,34 @@ interface Bin extends Atk.ImplementorIface, Clutter.Animatable, Clutter.Containe
2399
2444
  * The horizontal alignment of the #MxBin child.
2400
2445
  */
2401
2446
  x_align: any
2447
+ /**
2448
+ * The horizontal alignment of the #MxBin child.
2449
+ */
2450
+ xAlign: any
2402
2451
  /**
2403
2452
  * Whether the child should fill the horizontal allocation
2404
2453
  */
2405
2454
  x_fill: boolean
2455
+ /**
2456
+ * Whether the child should fill the horizontal allocation
2457
+ */
2458
+ xFill: boolean
2406
2459
  /**
2407
2460
  * The vertical alignment of the #MxBin child.
2408
2461
  */
2409
2462
  y_align: any
2463
+ /**
2464
+ * The vertical alignment of the #MxBin child.
2465
+ */
2466
+ yAlign: any
2410
2467
  /**
2411
2468
  * Whether the child should fill the vertical allocation
2412
2469
  */
2413
2470
  y_fill: boolean
2471
+ /**
2472
+ * Whether the child should fill the vertical allocation
2473
+ */
2474
+ yFill: boolean
2414
2475
 
2415
2476
  // Owm methods of Mx-2.0.Mx.Bin
2416
2477
 
@@ -2797,6 +2858,8 @@ module BoxLayout {
2797
2858
  orientation?: Orientation | null
2798
2859
  scroll_to_focused?: boolean | null
2799
2860
  spacing?: number | null
2861
+ enableAnimations?: boolean | null
2862
+ scrollToFocused?: boolean | null
2800
2863
  }
2801
2864
 
2802
2865
  }
@@ -2806,8 +2869,10 @@ interface BoxLayout extends Atk.ImplementorIface, Clutter.Animatable, Clutter.Co
2806
2869
  // Own properties of Mx-2.0.Mx.BoxLayout
2807
2870
 
2808
2871
  enable_animations: boolean
2872
+ enableAnimations: boolean
2809
2873
  orientation: Orientation
2810
2874
  scroll_to_focused: boolean
2875
+ scrollToFocused: boolean
2811
2876
  spacing: number
2812
2877
 
2813
2878
  // Owm methods of Mx-2.0.Mx.BoxLayout
@@ -3277,6 +3342,10 @@ module BoxLayoutChild {
3277
3342
  x_fill?: boolean | null
3278
3343
  y_align?: Align | null
3279
3344
  y_fill?: boolean | null
3345
+ xAlign?: Align | null
3346
+ xFill?: boolean | null
3347
+ yAlign?: Align | null
3348
+ yFill?: boolean | null
3280
3349
  }
3281
3350
 
3282
3351
  }
@@ -3287,9 +3356,13 @@ interface BoxLayoutChild {
3287
3356
 
3288
3357
  expand: boolean
3289
3358
  x_align: Align
3359
+ xAlign: Align
3290
3360
  x_fill: boolean
3361
+ xFill: boolean
3291
3362
  y_align: Align
3363
+ yAlign: Align
3292
3364
  y_fill: boolean
3365
+ yFill: boolean
3293
3366
 
3294
3367
  // Class property signals of Mx-2.0.Mx.BoxLayoutChild
3295
3368
 
@@ -3359,6 +3432,12 @@ module Button {
3359
3432
  label?: string | null
3360
3433
  label_visible?: boolean | null
3361
3434
  toggled?: boolean | null
3435
+ iconName?: string | null
3436
+ iconPosition?: Position | null
3437
+ iconSize?: number | null
3438
+ iconVisible?: boolean | null
3439
+ isToggle?: boolean | null
3440
+ labelVisible?: boolean | null
3362
3441
  }
3363
3442
 
3364
3443
  }
@@ -3369,12 +3448,18 @@ interface Button extends Atk.ImplementorIface, Clutter.Animatable, Clutter.Conta
3369
3448
 
3370
3449
  action: Action
3371
3450
  icon_name: string | null
3451
+ iconName: string | null
3372
3452
  icon_position: Position
3453
+ iconPosition: Position
3373
3454
  icon_size: number
3455
+ iconSize: number
3374
3456
  icon_visible: boolean
3457
+ iconVisible: boolean
3375
3458
  is_toggle: boolean
3459
+ isToggle: boolean
3376
3460
  label: string | null
3377
3461
  label_visible: boolean
3462
+ labelVisible: boolean
3378
3463
  toggled: boolean
3379
3464
 
3380
3465
  // Owm methods of Mx-2.0.Mx.Button
@@ -3867,6 +3952,8 @@ module ButtonGroup {
3867
3952
 
3868
3953
  active_button?: Button | null
3869
3954
  allow_no_active?: boolean | null
3955
+ activeButton?: Button | null
3956
+ allowNoActive?: boolean | null
3870
3957
  }
3871
3958
 
3872
3959
  }
@@ -3876,7 +3963,9 @@ interface ButtonGroup {
3876
3963
  // Own properties of Mx-2.0.Mx.ButtonGroup
3877
3964
 
3878
3965
  active_button: Button
3966
+ activeButton: Button
3879
3967
  allow_no_active: boolean
3968
+ allowNoActive: boolean
3880
3969
 
3881
3970
  // Own fields of Mx-2.0.Mx.ButtonGroup
3882
3971
 
@@ -4038,6 +4127,8 @@ module ComboBox {
4038
4127
  active_icon_name?: string | null
4039
4128
  active_text?: string | null
4040
4129
  index?: number | null
4130
+ activeIconName?: string | null
4131
+ activeText?: string | null
4041
4132
  }
4042
4133
 
4043
4134
  }
@@ -4047,7 +4138,9 @@ interface ComboBox extends Atk.ImplementorIface, Clutter.Animatable, Clutter.Con
4047
4138
  // Own properties of Mx-2.0.Mx.ComboBox
4048
4139
 
4049
4140
  active_icon_name: string | null
4141
+ activeIconName: string | null
4050
4142
  active_text: string | null
4143
+ activeText: string | null
4051
4144
  index: number
4052
4145
 
4053
4146
  // Owm methods of Mx-2.0.Mx.ComboBox
@@ -4874,6 +4967,10 @@ module Entry {
4874
4967
  primary_icon_tooltip_text?: string | null
4875
4968
  secondary_icon_tooltip_text?: string | null
4876
4969
  text?: string | null
4970
+ iconHighlightSuffix?: string | null
4971
+ passwordChar?: number | null
4972
+ primaryIconTooltipText?: string | null
4973
+ secondaryIconTooltipText?: string | null
4877
4974
  }
4878
4975
 
4879
4976
  }
@@ -4883,11 +4980,16 @@ interface Entry extends Atk.ImplementorIface, Clutter.Animatable, Clutter.Contai
4883
4980
  // Own properties of Mx-2.0.Mx.Entry
4884
4981
 
4885
4982
  readonly clutter_text: Clutter.Text
4983
+ readonly clutterText: Clutter.Text
4886
4984
  icon_highlight_suffix: string | null
4985
+ iconHighlightSuffix: string | null
4887
4986
  password_char: number
4987
+ passwordChar: number
4888
4988
  placeholder: string | null
4889
4989
  primary_icon_tooltip_text: string | null
4990
+ primaryIconTooltipText: string | null
4890
4991
  secondary_icon_tooltip_text: string | null
4992
+ secondaryIconTooltipText: string | null
4891
4993
  text: string | null
4892
4994
 
4893
4995
  // Owm methods of Mx-2.0.Mx.Entry
@@ -5735,6 +5837,15 @@ module FadeEffect {
5735
5837
  bounds_y?: number | null
5736
5838
  color?: Clutter.Color | null
5737
5839
  freeze_update?: boolean | null
5840
+ borderBottom?: number | null
5841
+ borderLeft?: number | null
5842
+ borderRight?: number | null
5843
+ borderTop?: number | null
5844
+ boundsHeight?: number | null
5845
+ boundsWidth?: number | null
5846
+ boundsX?: number | null
5847
+ boundsY?: number | null
5848
+ freezeUpdate?: boolean | null
5738
5849
  }
5739
5850
 
5740
5851
  }
@@ -5744,15 +5855,24 @@ interface FadeEffect {
5744
5855
  // Own properties of Mx-2.0.Mx.FadeEffect
5745
5856
 
5746
5857
  border_bottom: number
5858
+ borderBottom: number
5747
5859
  border_left: number
5860
+ borderLeft: number
5748
5861
  border_right: number
5862
+ borderRight: number
5749
5863
  border_top: number
5864
+ borderTop: number
5750
5865
  bounds_height: number
5866
+ boundsHeight: number
5751
5867
  bounds_width: number
5868
+ boundsWidth: number
5752
5869
  bounds_x: number
5870
+ boundsX: number
5753
5871
  bounds_y: number
5872
+ boundsY: number
5754
5873
  color: Clutter.Color
5755
5874
  freeze_update: boolean
5875
+ freezeUpdate: boolean
5756
5876
 
5757
5877
  // Own fields of Mx-2.0.Mx.FadeEffect
5758
5878
 
@@ -6662,6 +6782,14 @@ module Grid {
6662
6782
  max_stride?: number | null
6663
6783
  orientation?: Orientation | null
6664
6784
  row_spacing?: number | null
6785
+ childXAlign?: Align | null
6786
+ childYAlign?: Align | null
6787
+ columnSpacing?: number | null
6788
+ homogenousColumns?: boolean | null
6789
+ homogenousRows?: boolean | null
6790
+ lineAlignment?: Align | null
6791
+ maxStride?: number | null
6792
+ rowSpacing?: number | null
6665
6793
  }
6666
6794
 
6667
6795
  }
@@ -6671,14 +6799,22 @@ interface Grid extends Atk.ImplementorIface, Clutter.Animatable, Clutter.Contain
6671
6799
  // Own properties of Mx-2.0.Mx.Grid
6672
6800
 
6673
6801
  child_x_align: Align
6802
+ childXAlign: Align
6674
6803
  child_y_align: Align
6804
+ childYAlign: Align
6675
6805
  column_spacing: number
6806
+ columnSpacing: number
6676
6807
  homogenous_columns: boolean
6808
+ homogenousColumns: boolean
6677
6809
  homogenous_rows: boolean
6810
+ homogenousRows: boolean
6678
6811
  line_alignment: Align
6812
+ lineAlignment: Align
6679
6813
  max_stride: number
6814
+ maxStride: number
6680
6815
  orientation: Orientation
6681
6816
  row_spacing: number
6817
+ rowSpacing: number
6682
6818
 
6683
6819
  // Owm methods of Mx-2.0.Mx.Grid
6684
6820
 
@@ -7060,6 +7196,8 @@ module Icon {
7060
7196
 
7061
7197
  icon_name?: string | null
7062
7198
  icon_size?: number | null
7199
+ iconName?: string | null
7200
+ iconSize?: number | null
7063
7201
  }
7064
7202
 
7065
7203
  }
@@ -7069,7 +7207,9 @@ interface Icon extends Atk.ImplementorIface, Clutter.Animatable, Clutter.Contain
7069
7207
  // Own properties of Mx-2.0.Mx.Icon
7070
7208
 
7071
7209
  icon_name: string | null
7210
+ iconName: string | null
7072
7211
  icon_size: number
7212
+ iconSize: number
7073
7213
 
7074
7214
  // Owm methods of Mx-2.0.Mx.Icon
7075
7215
 
@@ -7419,6 +7559,7 @@ module IconTheme {
7419
7559
  // Own constructor properties of Mx-2.0.Mx.IconTheme
7420
7560
 
7421
7561
  theme_name?: string | null
7562
+ themeName?: string | null
7422
7563
  }
7423
7564
 
7424
7565
  }
@@ -7428,6 +7569,7 @@ interface IconTheme {
7428
7569
  // Own properties of Mx-2.0.Mx.IconTheme
7429
7570
 
7430
7571
  theme_name: string | null
7572
+ themeName: string | null
7431
7573
 
7432
7574
  // Own fields of Mx-2.0.Mx.IconTheme
7433
7575
 
@@ -7561,6 +7703,13 @@ module Image {
7561
7703
  scale_mode?: ImageScaleMode | null
7562
7704
  scale_width_threshold?: number | null
7563
7705
  transition_duration?: number | null
7706
+ allowUpscale?: boolean | null
7707
+ imageRotation?: number | null
7708
+ loadAsync?: boolean | null
7709
+ scaleHeightThreshold?: number | null
7710
+ scaleMode?: ImageScaleMode | null
7711
+ scaleWidthThreshold?: number | null
7712
+ transitionDuration?: number | null
7564
7713
  }
7565
7714
 
7566
7715
  }
@@ -7570,13 +7719,20 @@ interface Image extends Atk.ImplementorIface, Clutter.Animatable, Clutter.Contai
7570
7719
  // Own properties of Mx-2.0.Mx.Image
7571
7720
 
7572
7721
  allow_upscale: boolean
7722
+ allowUpscale: boolean
7573
7723
  filename: string | null
7574
7724
  image_rotation: number
7725
+ imageRotation: number
7575
7726
  load_async: boolean
7727
+ loadAsync: boolean
7576
7728
  scale_height_threshold: number
7729
+ scaleHeightThreshold: number
7577
7730
  scale_mode: ImageScaleMode
7731
+ scaleMode: ImageScaleMode
7578
7732
  scale_width_threshold: number
7733
+ scaleWidthThreshold: number
7579
7734
  transition_duration: number
7735
+ transitionDuration: number
7580
7736
 
7581
7737
  // Owm methods of Mx-2.0.Mx.Image
7582
7738
 
@@ -8117,6 +8273,7 @@ module ItemView {
8117
8273
  factory?: GObject.Object | null
8118
8274
  item_type?: GObject.GType | null
8119
8275
  model?: Clutter.Model | null
8276
+ itemType?: GObject.GType | null
8120
8277
  }
8121
8278
 
8122
8279
  }
@@ -8127,6 +8284,7 @@ interface ItemView extends Atk.ImplementorIface, Clutter.Animatable, Clutter.Con
8127
8284
 
8128
8285
  factory: GObject.Object
8129
8286
  item_type: GObject.GType
8287
+ itemType: GObject.GType
8130
8288
  model: Clutter.Model
8131
8289
 
8132
8290
  // Owm methods of Mx-2.0.Mx.ItemView
@@ -8567,6 +8725,15 @@ module KineticScrollView {
8567
8725
  snap_on_page?: boolean | null
8568
8726
  use_captured?: boolean | null
8569
8727
  use_grab?: boolean | null
8728
+ accelerationFactor?: number | null
8729
+ clampDuration?: number | null
8730
+ clampMode?: number | null
8731
+ clampToCenter?: boolean | null
8732
+ mouseButton?: number | null
8733
+ scrollPolicy?: ScrollPolicy | null
8734
+ snapOnPage?: boolean | null
8735
+ useCaptured?: boolean | null
8736
+ useGrab?: boolean | null
8570
8737
  }
8571
8738
 
8572
8739
  }
@@ -8576,17 +8743,26 @@ interface KineticScrollView extends Atk.ImplementorIface, Clutter.Animatable, Cl
8576
8743
  // Own properties of Mx-2.0.Mx.KineticScrollView
8577
8744
 
8578
8745
  acceleration_factor: number
8746
+ accelerationFactor: number
8579
8747
  clamp_duration: number
8748
+ clampDuration: number
8580
8749
  clamp_mode: number
8750
+ clampMode: number
8581
8751
  clamp_to_center: boolean
8752
+ clampToCenter: boolean
8582
8753
  deceleration: number
8583
8754
  mouse_button: number
8755
+ mouseButton: number
8584
8756
  overshoot: number
8585
8757
  scroll_policy: ScrollPolicy
8758
+ scrollPolicy: ScrollPolicy
8586
8759
  snap_on_page: boolean
8760
+ snapOnPage: boolean
8587
8761
  readonly state: KineticScrollViewState
8588
8762
  use_captured: boolean
8763
+ useCaptured: boolean
8589
8764
  use_grab: boolean
8765
+ useGrab: boolean
8590
8766
 
8591
8767
  // Owm methods of Mx-2.0.Mx.KineticScrollView
8592
8768
 
@@ -9121,6 +9297,21 @@ module Label {
9121
9297
  use_markup?: boolean | null
9122
9298
  x_align: any
9123
9299
  y_align: any
9300
+ fadeOut?: boolean | null
9301
+ /**
9302
+ * Whether to wrap the lines of #MxLabel:text if the contents
9303
+ * exceed the available allocation.
9304
+ */
9305
+ lineWrap?: boolean | null
9306
+ /**
9307
+ * Show a tooltip when there is not enough space to display the text. If set
9308
+ * to %TRUE, this will also cause the #ClutterActor:reactive property to be
9309
+ * enabled.
9310
+ */
9311
+ showTooltip?: boolean | null
9312
+ useMarkup?: boolean | null
9313
+ xAlign: any
9314
+ yAlign: any
9124
9315
  }
9125
9316
 
9126
9317
  }
@@ -9130,17 +9321,33 @@ interface Label extends Atk.ImplementorIface, Clutter.Animatable, Clutter.Contai
9130
9321
  // Own properties of Mx-2.0.Mx.Label
9131
9322
 
9132
9323
  readonly clutter_text: Clutter.Text
9324
+ readonly clutterText: Clutter.Text
9133
9325
  fade_out: boolean
9326
+ fadeOut: boolean
9134
9327
  /**
9135
9328
  * Whether to wrap the lines of #MxLabel:text if the contents
9136
9329
  * exceed the available allocation.
9137
9330
  */
9138
9331
  line_wrap: boolean
9332
+ /**
9333
+ * Whether to wrap the lines of #MxLabel:text if the contents
9334
+ * exceed the available allocation.
9335
+ */
9336
+ lineWrap: boolean
9139
9337
  // Has conflict: show_tooltip: boolean
9338
+ /**
9339
+ * Show a tooltip when there is not enough space to display the text. If set
9340
+ * to %TRUE, this will also cause the #ClutterActor:reactive property to be
9341
+ * enabled.
9342
+ */
9343
+ showTooltip: boolean
9140
9344
  text: string | null
9141
9345
  use_markup: boolean
9346
+ useMarkup: boolean
9142
9347
  x_align: any
9348
+ xAlign: any
9143
9349
  y_align: any
9350
+ yAlign: any
9144
9351
 
9145
9352
  // Owm methods of Mx-2.0.Mx.Label
9146
9353
 
@@ -9619,6 +9826,7 @@ module ListView {
9619
9826
  factory?: GObject.Object | null
9620
9827
  item_type?: GObject.GType | null
9621
9828
  model?: Clutter.Model | null
9829
+ itemType?: GObject.GType | null
9622
9830
  }
9623
9831
 
9624
9832
  }
@@ -9629,6 +9837,7 @@ interface ListView extends Atk.ImplementorIface, Clutter.Animatable, Clutter.Con
9629
9837
 
9630
9838
  factory: GObject.Object
9631
9839
  item_type: GObject.GType
9840
+ itemType: GObject.GType
9632
9841
  model: Clutter.Model
9633
9842
 
9634
9843
  // Owm methods of Mx-2.0.Mx.ListView
@@ -10448,6 +10657,7 @@ module Notebook {
10448
10657
  // Own constructor properties of Mx-2.0.Mx.Notebook
10449
10658
 
10450
10659
  current_page?: Clutter.Actor | null
10660
+ currentPage?: Clutter.Actor | null
10451
10661
  }
10452
10662
 
10453
10663
  }
@@ -10457,6 +10667,7 @@ interface Notebook extends Atk.ImplementorIface, Clutter.Animatable, Clutter.Con
10457
10667
  // Own properties of Mx-2.0.Mx.Notebook
10458
10668
 
10459
10669
  current_page: Clutter.Actor
10670
+ currentPage: Clutter.Actor
10460
10671
 
10461
10672
  // Own fields of Mx-2.0.Mx.Notebook
10462
10673
 
@@ -10810,6 +11021,9 @@ module Pager {
10810
11021
  edge_previews?: boolean | null
10811
11022
  page_actor?: Clutter.Actor | null
10812
11023
  page_num?: number | null
11024
+ edgePreviews?: boolean | null
11025
+ pageActor?: Clutter.Actor | null
11026
+ pageNum?: number | null
10813
11027
  }
10814
11028
 
10815
11029
  }
@@ -10819,8 +11033,11 @@ interface Pager extends Atk.ImplementorIface, Clutter.Animatable, Clutter.Contai
10819
11033
  // Own properties of Mx-2.0.Mx.Pager
10820
11034
 
10821
11035
  edge_previews: boolean
11036
+ edgePreviews: boolean
10822
11037
  page_actor: Clutter.Actor
11038
+ pageActor: Clutter.Actor
10823
11039
  page_num: number
11040
+ pageNum: number
10824
11041
 
10825
11042
  // Owm methods of Mx-2.0.Mx.Pager
10826
11043
 
@@ -11200,6 +11417,7 @@ module PathBar {
11200
11417
 
11201
11418
  clear_on_change?: boolean | null
11202
11419
  editable?: boolean | null
11420
+ clearOnChange?: boolean | null
11203
11421
  }
11204
11422
 
11205
11423
  }
@@ -11209,6 +11427,7 @@ interface PathBar extends Atk.ImplementorIface, Clutter.Animatable, Clutter.Cont
11209
11427
  // Own properties of Mx-2.0.Mx.PathBar
11210
11428
 
11211
11429
  clear_on_change: boolean
11430
+ clearOnChange: boolean
11212
11431
  editable: boolean
11213
11432
  readonly entry: Entry
11214
11433
  readonly level: number
@@ -12369,6 +12588,9 @@ module ScrollView {
12369
12588
  enable_mouse_scrolling?: boolean | null
12370
12589
  scroll_policy?: ScrollPolicy | null
12371
12590
  scroll_visibility?: ScrollPolicy | null
12591
+ enableMouseScrolling?: boolean | null
12592
+ scrollPolicy?: ScrollPolicy | null
12593
+ scrollVisibility?: ScrollPolicy | null
12372
12594
  }
12373
12595
 
12374
12596
  }
@@ -12378,8 +12600,11 @@ interface ScrollView extends Atk.ImplementorIface, Clutter.Animatable, Clutter.C
12378
12600
  // Own properties of Mx-2.0.Mx.ScrollView
12379
12601
 
12380
12602
  enable_mouse_scrolling: boolean
12603
+ enableMouseScrolling: boolean
12381
12604
  scroll_policy: ScrollPolicy
12605
+ scrollPolicy: ScrollPolicy
12382
12606
  scroll_visibility: ScrollPolicy
12607
+ scrollVisibility: ScrollPolicy
12383
12608
 
12384
12609
  // Owm methods of Mx-2.0.Mx.ScrollView
12385
12610
 
@@ -12735,6 +12960,12 @@ module Settings {
12735
12960
  long_press_timeout?: number | null
12736
12961
  small_screen?: boolean | null
12737
12962
  touch_mode?: boolean | null
12963
+ dragThreshold?: number | null
12964
+ fontName?: string | null
12965
+ iconTheme?: string | null
12966
+ longPressTimeout?: number | null
12967
+ smallScreen?: boolean | null
12968
+ touchMode?: boolean | null
12738
12969
  }
12739
12970
 
12740
12971
  }
@@ -12744,11 +12975,17 @@ interface Settings {
12744
12975
  // Own properties of Mx-2.0.Mx.Settings
12745
12976
 
12746
12977
  drag_threshold: number
12978
+ dragThreshold: number
12747
12979
  font_name: string | null
12980
+ fontName: string | null
12748
12981
  icon_theme: string | null
12982
+ iconTheme: string | null
12749
12983
  long_press_timeout: number
12984
+ longPressTimeout: number
12750
12985
  small_screen: boolean
12986
+ smallScreen: boolean
12751
12987
  touch_mode: boolean
12988
+ touchMode: boolean
12752
12989
 
12753
12990
  // Own fields of Mx-2.0.Mx.Settings
12754
12991
 
@@ -12826,6 +13063,7 @@ module Slider {
12826
13063
 
12827
13064
  buffer_value?: number | null
12828
13065
  value?: number | null
13066
+ bufferValue?: number | null
12829
13067
  }
12830
13068
 
12831
13069
  }
@@ -12835,6 +13073,7 @@ interface Slider extends Atk.ImplementorIface, Clutter.Animatable, Clutter.Conta
12835
13073
  // Own properties of Mx-2.0.Mx.Slider
12836
13074
 
12837
13075
  buffer_value: number
13076
+ bufferValue: number
12838
13077
  value: number
12839
13078
 
12840
13079
  // Owm methods of Mx-2.0.Mx.Slider
@@ -14009,6 +14248,10 @@ module StackChild {
14009
14248
  x_fill?: boolean | null
14010
14249
  y_align?: Align | null
14011
14250
  y_fill?: boolean | null
14251
+ xAlign?: Align | null
14252
+ xFill?: boolean | null
14253
+ yAlign?: Align | null
14254
+ yFill?: boolean | null
14012
14255
  }
14013
14256
 
14014
14257
  }
@@ -14020,9 +14263,13 @@ interface StackChild {
14020
14263
  crop: boolean
14021
14264
  fit: boolean
14022
14265
  x_align: Align
14266
+ xAlign: Align
14023
14267
  x_fill: boolean
14268
+ xFill: boolean
14024
14269
  y_align: Align
14270
+ yAlign: Align
14025
14271
  y_fill: boolean
14272
+ yFill: boolean
14026
14273
 
14027
14274
  // Class property signals of Mx-2.0.Mx.StackChild
14028
14275
 
@@ -14204,6 +14451,8 @@ module Table {
14204
14451
 
14205
14452
  column_spacing?: number | null
14206
14453
  row_spacing?: number | null
14454
+ columnSpacing?: number | null
14455
+ rowSpacing?: number | null
14207
14456
  }
14208
14457
 
14209
14458
  }
@@ -14213,9 +14462,13 @@ interface Table extends Atk.ImplementorIface, Clutter.Animatable, Clutter.Contai
14213
14462
  // Own properties of Mx-2.0.Mx.Table
14214
14463
 
14215
14464
  readonly column_count: number
14465
+ readonly columnCount: number
14216
14466
  column_spacing: number
14467
+ columnSpacing: number
14217
14468
  readonly row_count: number
14469
+ readonly rowCount: number
14218
14470
  row_spacing: number
14471
+ rowSpacing: number
14219
14472
 
14220
14473
  // Owm methods of Mx-2.0.Mx.Table
14221
14474
 
@@ -14750,6 +15003,14 @@ module TableChild {
14750
15003
  y_align?: Align | null
14751
15004
  y_expand?: boolean | null
14752
15005
  y_fill?: boolean | null
15006
+ columnSpan?: number | null
15007
+ rowSpan?: number | null
15008
+ xAlign?: Align | null
15009
+ xExpand?: boolean | null
15010
+ xFill?: boolean | null
15011
+ yAlign?: Align | null
15012
+ yExpand?: boolean | null
15013
+ yFill?: boolean | null
14753
15014
  }
14754
15015
 
14755
15016
  }
@@ -14760,14 +15021,22 @@ interface TableChild {
14760
15021
 
14761
15022
  column: number
14762
15023
  column_span: number
15024
+ columnSpan: number
14763
15025
  row: number
14764
15026
  row_span: number
15027
+ rowSpan: number
14765
15028
  x_align: Align
15029
+ xAlign: Align
14766
15030
  x_expand: boolean
15031
+ xExpand: boolean
14767
15032
  x_fill: boolean
15033
+ xFill: boolean
14768
15034
  y_align: Align
15035
+ yAlign: Align
14769
15036
  y_expand: boolean
15037
+ yExpand: boolean
14770
15038
  y_fill: boolean
15039
+ yFill: boolean
14771
15040
 
14772
15041
  // Class property signals of Mx-2.0.Mx.TableChild
14773
15042
 
@@ -14978,6 +15247,7 @@ module TextureFrame {
14978
15247
  parent_texture?: Clutter.Texture | null
14979
15248
  right?: number | null
14980
15249
  top?: number | null
15250
+ parentTexture?: Clutter.Texture | null
14981
15251
  }
14982
15252
 
14983
15253
  }
@@ -14989,6 +15259,7 @@ interface TextureFrame extends Atk.ImplementorIface, Clutter.Animatable, Clutter
14989
15259
  bottom: number
14990
15260
  left: number
14991
15261
  parent_texture: Clutter.Texture
15262
+ parentTexture: Clutter.Texture
14992
15263
  right: number
14993
15264
  top: number
14994
15265
 
@@ -15722,6 +15993,7 @@ module Toolbar {
15722
15993
  // Own constructor properties of Mx-2.0.Mx.Toolbar
15723
15994
 
15724
15995
  has_close_button?: boolean | null
15996
+ hasCloseButton?: boolean | null
15725
15997
  }
15726
15998
 
15727
15999
  }
@@ -15731,6 +16003,7 @@ interface Toolbar extends Atk.ImplementorIface, Clutter.Animatable, Clutter.Cont
15731
16003
  // Own properties of Mx-2.0.Mx.Toolbar
15732
16004
 
15733
16005
  has_close_button: boolean
16006
+ hasCloseButton: boolean
15734
16007
 
15735
16008
  // Own fields of Mx-2.0.Mx.Toolbar
15736
16009
 
@@ -16101,6 +16374,7 @@ module Tooltip {
16101
16374
 
16102
16375
  text?: string | null
16103
16376
  tip_area?: Clutter.Geometry | null
16377
+ tipArea?: Clutter.Geometry | null
16104
16378
  }
16105
16379
 
16106
16380
  }
@@ -16111,6 +16385,7 @@ interface Tooltip extends Atk.ImplementorIface, Clutter.Animatable, Clutter.Cont
16111
16385
 
16112
16386
  text: string | null
16113
16387
  tip_area: Clutter.Geometry
16388
+ tipArea: Clutter.Geometry
16114
16389
 
16115
16390
  // Owm methods of Mx-2.0.Mx.Tooltip
16116
16391
 
@@ -16490,6 +16765,10 @@ module Viewport {
16490
16765
  x_origin?: number | null
16491
16766
  y_origin?: number | null
16492
16767
  z_origin?: number | null
16768
+ syncAdjustments?: boolean | null
16769
+ xOrigin?: number | null
16770
+ yOrigin?: number | null
16771
+ zOrigin?: number | null
16493
16772
  }
16494
16773
 
16495
16774
  }
@@ -16499,14 +16778,20 @@ interface Viewport extends Atk.ImplementorIface, Clutter.Animatable, Clutter.Con
16499
16778
  // Own properties of Mx-2.0.Mx.Viewport
16500
16779
 
16501
16780
  sync_adjustments: boolean
16781
+ syncAdjustments: boolean
16502
16782
  x_origin: number
16783
+ xOrigin: number
16503
16784
  y_origin: number
16785
+ yOrigin: number
16504
16786
  z_origin: number
16787
+ zOrigin: number
16505
16788
 
16506
16789
  // Conflicting properties
16507
16790
 
16508
16791
  x_align: any
16792
+ xAlign: any
16509
16793
  y_align: any
16794
+ yAlign: any
16510
16795
 
16511
16796
  // Owm methods of Mx-2.0.Mx.Viewport
16512
16797
 
@@ -16886,6 +17171,11 @@ module Widget {
16886
17171
  * text displayed on the tooltip
16887
17172
  */
16888
17173
  tooltip_text?: string | null
17174
+ tooltipDelay?: number | null
17175
+ /**
17176
+ * text displayed on the tooltip
17177
+ */
17178
+ tooltipText?: string | null
16889
17179
  }
16890
17180
 
16891
17181
  }
@@ -16900,10 +17190,15 @@ interface Widget extends Atk.ImplementorIface, Clutter.Animatable, Clutter.Conta
16900
17190
  */
16901
17191
  menu: Menu
16902
17192
  tooltip_delay: number
17193
+ tooltipDelay: number
16903
17194
  /**
16904
17195
  * text displayed on the tooltip
16905
17196
  */
16906
17197
  tooltip_text: string | null
17198
+ /**
17199
+ * text displayed on the tooltip
17200
+ */
17201
+ tooltipText: string | null
16907
17202
 
16908
17203
  // Owm methods of Mx-2.0.Mx.Widget
16909
17204
 
@@ -17342,6 +17637,12 @@ module Window {
17342
17637
  title?: string | null
17343
17638
  toolbar?: Toolbar | null
17344
17639
  window_rotation?: WindowRotation | null
17640
+ clutterStage?: Clutter.Stage | null
17641
+ hasToolbar?: boolean | null
17642
+ iconCoglTexture?: string | null
17643
+ iconName?: string | null
17644
+ smallScreen?: boolean | null
17645
+ windowRotation?: WindowRotation | null
17345
17646
  }
17346
17647
 
17347
17648
  }
@@ -17352,16 +17653,24 @@ interface Window {
17352
17653
 
17353
17654
  child: Clutter.Actor
17354
17655
  readonly clutter_stage: Clutter.Stage
17656
+ readonly clutterStage: Clutter.Stage
17355
17657
  fullscreen: boolean
17356
17658
  has_toolbar: boolean
17659
+ hasToolbar: boolean
17357
17660
  icon_cogl_texture: string | null
17661
+ iconCoglTexture: string | null
17358
17662
  icon_name: string | null
17663
+ iconName: string | null
17359
17664
  small_screen: boolean
17665
+ smallScreen: boolean
17360
17666
  title: string | null
17361
17667
  toolbar: Toolbar
17362
17668
  window_rotation: WindowRotation
17669
+ windowRotation: WindowRotation
17363
17670
  readonly window_rotation_angle: number
17671
+ readonly windowRotationAngle: number
17364
17672
  readonly window_rotation_timeline: Clutter.Timeline
17673
+ readonly windowRotationTimeline: Clutter.Timeline
17365
17674
 
17366
17675
  // Own fields of Mx-2.0.Mx.Window
17367
17676