@girs/mx-2.0 1.99.4-3.2.7 → 1.99.4-3.2.8

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/mx-2.0.d.ts CHANGED
@@ -376,9 +376,6 @@ module Draggable {
376
376
  // Own constructor properties of Mx-2.0.Mx.Draggable
377
377
 
378
378
  axis?: DragAxis | null
379
- drag_actor?: Clutter.Actor | null
380
- drag_enabled?: boolean | null
381
- drag_threshold?: number | null
382
379
  dragActor?: Clutter.Actor | null
383
380
  dragEnabled?: boolean | null
384
381
  dragThreshold?: number | null
@@ -391,11 +388,8 @@ interface Draggable extends Clutter.Actor {
391
388
  // Own properties of Mx-2.0.Mx.Draggable
392
389
 
393
390
  axis: DragAxis
394
- drag_actor: Clutter.Actor
395
391
  dragActor: Clutter.Actor
396
- drag_enabled: boolean
397
392
  dragEnabled: boolean
398
- drag_threshold: number
399
393
  dragThreshold: number
400
394
 
401
395
  // Owm methods of Mx-2.0.Mx.Draggable
@@ -749,7 +743,6 @@ module Droppable {
749
743
 
750
744
  // Own constructor properties of Mx-2.0.Mx.Droppable
751
745
 
752
- drop_enabled?: boolean | null
753
746
  dropEnabled?: boolean | null
754
747
  }
755
748
 
@@ -759,7 +752,6 @@ interface Droppable extends Clutter.Actor {
759
752
 
760
753
  // Own properties of Mx-2.0.Mx.Droppable
761
754
 
762
- drop_enabled: boolean
763
755
  dropEnabled: boolean
764
756
 
765
757
  // Owm methods of Mx-2.0.Mx.Droppable
@@ -1195,8 +1187,6 @@ module Scrollable {
1195
1187
 
1196
1188
  // Own constructor properties of Mx-2.0.Mx.Scrollable
1197
1189
 
1198
- horizontal_adjustment?: Adjustment | null
1199
- vertical_adjustment?: Adjustment | null
1200
1190
  horizontalAdjustment?: Adjustment | null
1201
1191
  verticalAdjustment?: Adjustment | null
1202
1192
  }
@@ -1207,9 +1197,7 @@ interface Scrollable {
1207
1197
 
1208
1198
  // Own properties of Mx-2.0.Mx.Scrollable
1209
1199
 
1210
- horizontal_adjustment: Adjustment
1211
1200
  horizontalAdjustment: Adjustment
1212
- vertical_adjustment: Adjustment
1213
1201
  verticalAdjustment: Adjustment
1214
1202
 
1215
1203
  // Owm methods of Mx-2.0.Mx.Scrollable
@@ -1281,8 +1269,6 @@ module Stylable {
1281
1269
  // Own constructor properties of Mx-2.0.Mx.Stylable
1282
1270
 
1283
1271
  style?: Style | null
1284
- style_class?: string | null
1285
- style_pseudo_class?: string | null
1286
1272
  styleClass?: string | null
1287
1273
  stylePseudoClass?: string | null
1288
1274
  }
@@ -1294,9 +1280,7 @@ interface Stylable {
1294
1280
  // Own properties of Mx-2.0.Mx.Stylable
1295
1281
 
1296
1282
  style: Style
1297
- style_class: string | null
1298
1283
  styleClass: string | null
1299
- style_pseudo_class: string | null
1300
1284
  stylePseudoClass: string | null
1301
1285
 
1302
1286
  // Owm methods of Mx-2.0.Mx.Stylable
@@ -1557,9 +1541,8 @@ module Action {
1557
1541
  // Own constructor properties of Mx-2.0.Mx.Action
1558
1542
 
1559
1543
  active?: boolean | null
1560
- display_name?: string | null
1561
- icon?: string | null
1562
1544
  displayName?: string | null
1545
+ icon?: string | null
1563
1546
  }
1564
1547
 
1565
1548
  }
@@ -1569,7 +1552,6 @@ interface Action extends Gio.Action {
1569
1552
  // Own properties of Mx-2.0.Mx.Action
1570
1553
 
1571
1554
  active: boolean
1572
- display_name: string | null
1573
1555
  displayName: string | null
1574
1556
  icon: string | null
1575
1557
 
@@ -1783,7 +1765,6 @@ module ActorManager {
1783
1765
  // Own constructor properties of Mx-2.0.Mx.ActorManager
1784
1766
 
1785
1767
  stage?: Clutter.Stage | null
1786
- time_slice?: number | null
1787
1768
  timeSlice?: number | null
1788
1769
  }
1789
1770
 
@@ -1793,10 +1774,8 @@ interface ActorManager {
1793
1774
 
1794
1775
  // Own properties of Mx-2.0.Mx.ActorManager
1795
1776
 
1796
- readonly n_operations: number
1797
1777
  readonly nOperations: number
1798
1778
  readonly stage: Clutter.Stage
1799
- time_slice: number
1800
1779
  timeSlice: number
1801
1780
 
1802
1781
  // Own fields of Mx-2.0.Mx.ActorManager
@@ -2014,18 +1993,14 @@ module Adjustment {
2014
1993
 
2015
1994
  // Own constructor properties of Mx-2.0.Mx.Adjustment
2016
1995
 
2017
- clamp_value?: boolean | null
1996
+ clampValue?: boolean | null
2018
1997
  elastic?: boolean | null
2019
1998
  lower?: number | null
2020
- page_increment?: number | null
2021
- page_size?: number | null
2022
- step_increment?: number | null
2023
- upper?: number | null
2024
- value?: number | null
2025
- clampValue?: boolean | null
2026
1999
  pageIncrement?: number | null
2027
2000
  pageSize?: number | null
2028
2001
  stepIncrement?: number | null
2002
+ upper?: number | null
2003
+ value?: number | null
2029
2004
  }
2030
2005
 
2031
2006
  }
@@ -2034,15 +2009,11 @@ interface Adjustment {
2034
2009
 
2035
2010
  // Own properties of Mx-2.0.Mx.Adjustment
2036
2011
 
2037
- clamp_value: boolean
2038
2012
  clampValue: boolean
2039
2013
  elastic: boolean
2040
2014
  lower: number
2041
- page_increment: number
2042
2015
  pageIncrement: number
2043
- page_size: number
2044
2016
  pageSize: number
2045
- step_increment: number
2046
2017
  stepIncrement: number
2047
2018
  upper: number
2048
2019
  value: number
@@ -2396,22 +2367,6 @@ module Bin {
2396
2367
  * The child #ClutterActor of the #MxBin container.
2397
2368
  */
2398
2369
  child?: Clutter.Actor | null
2399
- /**
2400
- * The horizontal alignment of the #MxBin child.
2401
- */
2402
- x_align: any
2403
- /**
2404
- * Whether the child should fill the horizontal allocation
2405
- */
2406
- x_fill?: boolean | null
2407
- /**
2408
- * The vertical alignment of the #MxBin child.
2409
- */
2410
- y_align: any
2411
- /**
2412
- * Whether the child should fill the vertical allocation
2413
- */
2414
- y_fill?: boolean | null
2415
2370
  /**
2416
2371
  * The horizontal alignment of the #MxBin child.
2417
2372
  */
@@ -2440,34 +2395,18 @@ interface Bin extends Atk.ImplementorIface, Clutter.Animatable, Clutter.Containe
2440
2395
  * The child #ClutterActor of the #MxBin container.
2441
2396
  */
2442
2397
  child: Clutter.Actor
2443
- /**
2444
- * The horizontal alignment of the #MxBin child.
2445
- */
2446
- x_align: any
2447
2398
  /**
2448
2399
  * The horizontal alignment of the #MxBin child.
2449
2400
  */
2450
2401
  xAlign: any
2451
- /**
2452
- * Whether the child should fill the horizontal allocation
2453
- */
2454
- x_fill: boolean
2455
2402
  /**
2456
2403
  * Whether the child should fill the horizontal allocation
2457
2404
  */
2458
2405
  xFill: boolean
2459
- /**
2460
- * The vertical alignment of the #MxBin child.
2461
- */
2462
- y_align: any
2463
2406
  /**
2464
2407
  * The vertical alignment of the #MxBin child.
2465
2408
  */
2466
2409
  yAlign: any
2467
- /**
2468
- * Whether the child should fill the vertical allocation
2469
- */
2470
- y_fill: boolean
2471
2410
  /**
2472
2411
  * Whether the child should fill the vertical allocation
2473
2412
  */
@@ -2854,12 +2793,10 @@ module BoxLayout {
2854
2793
 
2855
2794
  // Own constructor properties of Mx-2.0.Mx.BoxLayout
2856
2795
 
2857
- enable_animations?: boolean | null
2858
- orientation?: Orientation | null
2859
- scroll_to_focused?: boolean | null
2860
- spacing?: number | null
2861
2796
  enableAnimations?: boolean | null
2797
+ orientation?: Orientation | null
2862
2798
  scrollToFocused?: boolean | null
2799
+ spacing?: number | null
2863
2800
  }
2864
2801
 
2865
2802
  }
@@ -2868,10 +2805,8 @@ interface BoxLayout extends Atk.ImplementorIface, Clutter.Animatable, Clutter.Co
2868
2805
 
2869
2806
  // Own properties of Mx-2.0.Mx.BoxLayout
2870
2807
 
2871
- enable_animations: boolean
2872
2808
  enableAnimations: boolean
2873
2809
  orientation: Orientation
2874
- scroll_to_focused: boolean
2875
2810
  scrollToFocused: boolean
2876
2811
  spacing: number
2877
2812
 
@@ -3338,10 +3273,6 @@ module BoxLayoutChild {
3338
3273
  // Own constructor properties of Mx-2.0.Mx.BoxLayoutChild
3339
3274
 
3340
3275
  expand?: boolean | null
3341
- x_align?: Align | null
3342
- x_fill?: boolean | null
3343
- y_align?: Align | null
3344
- y_fill?: boolean | null
3345
3276
  xAlign?: Align | null
3346
3277
  xFill?: boolean | null
3347
3278
  yAlign?: Align | null
@@ -3355,13 +3286,9 @@ interface BoxLayoutChild {
3355
3286
  // Own properties of Mx-2.0.Mx.BoxLayoutChild
3356
3287
 
3357
3288
  expand: boolean
3358
- x_align: Align
3359
3289
  xAlign: Align
3360
- x_fill: boolean
3361
3290
  xFill: boolean
3362
- y_align: Align
3363
3291
  yAlign: Align
3364
- y_fill: boolean
3365
3292
  yFill: boolean
3366
3293
 
3367
3294
  // Class property signals of Mx-2.0.Mx.BoxLayoutChild
@@ -3424,20 +3351,14 @@ module Button {
3424
3351
  // Own constructor properties of Mx-2.0.Mx.Button
3425
3352
 
3426
3353
  action?: Action | null
3427
- icon_name?: string | null
3428
- icon_position?: Position | null
3429
- icon_size?: number | null
3430
- icon_visible?: boolean | null
3431
- is_toggle?: boolean | null
3432
- label?: string | null
3433
- label_visible?: boolean | null
3434
- toggled?: boolean | null
3435
3354
  iconName?: string | null
3436
3355
  iconPosition?: Position | null
3437
3356
  iconSize?: number | null
3438
3357
  iconVisible?: boolean | null
3439
3358
  isToggle?: boolean | null
3359
+ label?: string | null
3440
3360
  labelVisible?: boolean | null
3361
+ toggled?: boolean | null
3441
3362
  }
3442
3363
 
3443
3364
  }
@@ -3447,18 +3368,12 @@ interface Button extends Atk.ImplementorIface, Clutter.Animatable, Clutter.Conta
3447
3368
  // Own properties of Mx-2.0.Mx.Button
3448
3369
 
3449
3370
  action: Action
3450
- icon_name: string | null
3451
3371
  iconName: string | null
3452
- icon_position: Position
3453
3372
  iconPosition: Position
3454
- icon_size: number
3455
3373
  iconSize: number
3456
- icon_visible: boolean
3457
3374
  iconVisible: boolean
3458
- is_toggle: boolean
3459
3375
  isToggle: boolean
3460
3376
  label: string | null
3461
- label_visible: boolean
3462
3377
  labelVisible: boolean
3463
3378
  toggled: boolean
3464
3379
 
@@ -3950,8 +3865,6 @@ module ButtonGroup {
3950
3865
 
3951
3866
  // Own constructor properties of Mx-2.0.Mx.ButtonGroup
3952
3867
 
3953
- active_button?: Button | null
3954
- allow_no_active?: boolean | null
3955
3868
  activeButton?: Button | null
3956
3869
  allowNoActive?: boolean | null
3957
3870
  }
@@ -3962,9 +3875,7 @@ interface ButtonGroup {
3962
3875
 
3963
3876
  // Own properties of Mx-2.0.Mx.ButtonGroup
3964
3877
 
3965
- active_button: Button
3966
3878
  activeButton: Button
3967
- allow_no_active: boolean
3968
3879
  allowNoActive: boolean
3969
3880
 
3970
3881
  // Own fields of Mx-2.0.Mx.ButtonGroup
@@ -4124,11 +4035,9 @@ module ComboBox {
4124
4035
 
4125
4036
  // Own constructor properties of Mx-2.0.Mx.ComboBox
4126
4037
 
4127
- active_icon_name?: string | null
4128
- active_text?: string | null
4129
- index?: number | null
4130
4038
  activeIconName?: string | null
4131
4039
  activeText?: string | null
4040
+ index?: number | null
4132
4041
  }
4133
4042
 
4134
4043
  }
@@ -4137,9 +4046,7 @@ interface ComboBox extends Atk.ImplementorIface, Clutter.Animatable, Clutter.Con
4137
4046
 
4138
4047
  // Own properties of Mx-2.0.Mx.ComboBox
4139
4048
 
4140
- active_icon_name: string | null
4141
4049
  activeIconName: string | null
4142
- active_text: string | null
4143
4050
  activeText: string | null
4144
4051
  index: number
4145
4052
 
@@ -4961,16 +4868,12 @@ module Entry {
4961
4868
 
4962
4869
  // Own constructor properties of Mx-2.0.Mx.Entry
4963
4870
 
4964
- icon_highlight_suffix?: string | null
4965
- password_char?: number | null
4966
- placeholder?: string | null
4967
- primary_icon_tooltip_text?: string | null
4968
- secondary_icon_tooltip_text?: string | null
4969
- text?: string | null
4970
4871
  iconHighlightSuffix?: string | null
4971
4872
  passwordChar?: number | null
4873
+ placeholder?: string | null
4972
4874
  primaryIconTooltipText?: string | null
4973
4875
  secondaryIconTooltipText?: string | null
4876
+ text?: string | null
4974
4877
  }
4975
4878
 
4976
4879
  }
@@ -4979,16 +4882,11 @@ interface Entry extends Atk.ImplementorIface, Clutter.Animatable, Clutter.Contai
4979
4882
 
4980
4883
  // Own properties of Mx-2.0.Mx.Entry
4981
4884
 
4982
- readonly clutter_text: Clutter.Text
4983
4885
  readonly clutterText: Clutter.Text
4984
- icon_highlight_suffix: string | null
4985
4886
  iconHighlightSuffix: string | null
4986
- password_char: number
4987
4887
  passwordChar: number
4988
4888
  placeholder: string | null
4989
- primary_icon_tooltip_text: string | null
4990
4889
  primaryIconTooltipText: string | null
4991
- secondary_icon_tooltip_text: string | null
4992
4890
  secondaryIconTooltipText: string | null
4993
4891
  text: string | null
4994
4892
 
@@ -5827,16 +5725,6 @@ module FadeEffect {
5827
5725
 
5828
5726
  // Own constructor properties of Mx-2.0.Mx.FadeEffect
5829
5727
 
5830
- border_bottom?: number | null
5831
- border_left?: number | null
5832
- border_right?: number | null
5833
- border_top?: number | null
5834
- bounds_height?: number | null
5835
- bounds_width?: number | null
5836
- bounds_x?: number | null
5837
- bounds_y?: number | null
5838
- color?: Clutter.Color | null
5839
- freeze_update?: boolean | null
5840
5728
  borderBottom?: number | null
5841
5729
  borderLeft?: number | null
5842
5730
  borderRight?: number | null
@@ -5845,6 +5733,7 @@ module FadeEffect {
5845
5733
  boundsWidth?: number | null
5846
5734
  boundsX?: number | null
5847
5735
  boundsY?: number | null
5736
+ color?: Clutter.Color | null
5848
5737
  freezeUpdate?: boolean | null
5849
5738
  }
5850
5739
 
@@ -5854,24 +5743,15 @@ interface FadeEffect {
5854
5743
 
5855
5744
  // Own properties of Mx-2.0.Mx.FadeEffect
5856
5745
 
5857
- border_bottom: number
5858
5746
  borderBottom: number
5859
- border_left: number
5860
5747
  borderLeft: number
5861
- border_right: number
5862
5748
  borderRight: number
5863
- border_top: number
5864
5749
  borderTop: number
5865
- bounds_height: number
5866
5750
  boundsHeight: number
5867
- bounds_width: number
5868
5751
  boundsWidth: number
5869
- bounds_x: number
5870
5752
  boundsX: number
5871
- bounds_y: number
5872
5753
  boundsY: number
5873
5754
  color: Clutter.Color
5874
- freeze_update: boolean
5875
5755
  freezeUpdate: boolean
5876
5756
 
5877
5757
  // Own fields of Mx-2.0.Mx.FadeEffect
@@ -6773,15 +6653,6 @@ module Grid {
6773
6653
 
6774
6654
  // Own constructor properties of Mx-2.0.Mx.Grid
6775
6655
 
6776
- child_x_align?: Align | null
6777
- child_y_align?: Align | null
6778
- column_spacing?: number | null
6779
- homogenous_columns?: boolean | null
6780
- homogenous_rows?: boolean | null
6781
- line_alignment?: Align | null
6782
- max_stride?: number | null
6783
- orientation?: Orientation | null
6784
- row_spacing?: number | null
6785
6656
  childXAlign?: Align | null
6786
6657
  childYAlign?: Align | null
6787
6658
  columnSpacing?: number | null
@@ -6789,6 +6660,7 @@ module Grid {
6789
6660
  homogenousRows?: boolean | null
6790
6661
  lineAlignment?: Align | null
6791
6662
  maxStride?: number | null
6663
+ orientation?: Orientation | null
6792
6664
  rowSpacing?: number | null
6793
6665
  }
6794
6666
 
@@ -6798,22 +6670,14 @@ interface Grid extends Atk.ImplementorIface, Clutter.Animatable, Clutter.Contain
6798
6670
 
6799
6671
  // Own properties of Mx-2.0.Mx.Grid
6800
6672
 
6801
- child_x_align: Align
6802
6673
  childXAlign: Align
6803
- child_y_align: Align
6804
6674
  childYAlign: Align
6805
- column_spacing: number
6806
6675
  columnSpacing: number
6807
- homogenous_columns: boolean
6808
6676
  homogenousColumns: boolean
6809
- homogenous_rows: boolean
6810
6677
  homogenousRows: boolean
6811
- line_alignment: Align
6812
6678
  lineAlignment: Align
6813
- max_stride: number
6814
6679
  maxStride: number
6815
6680
  orientation: Orientation
6816
- row_spacing: number
6817
6681
  rowSpacing: number
6818
6682
 
6819
6683
  // Owm methods of Mx-2.0.Mx.Grid
@@ -7194,8 +7058,6 @@ module Icon {
7194
7058
 
7195
7059
  // Own constructor properties of Mx-2.0.Mx.Icon
7196
7060
 
7197
- icon_name?: string | null
7198
- icon_size?: number | null
7199
7061
  iconName?: string | null
7200
7062
  iconSize?: number | null
7201
7063
  }
@@ -7206,9 +7068,7 @@ interface Icon extends Atk.ImplementorIface, Clutter.Animatable, Clutter.Contain
7206
7068
 
7207
7069
  // Own properties of Mx-2.0.Mx.Icon
7208
7070
 
7209
- icon_name: string | null
7210
7071
  iconName: string | null
7211
- icon_size: number
7212
7072
  iconSize: number
7213
7073
 
7214
7074
  // Owm methods of Mx-2.0.Mx.Icon
@@ -7558,7 +7418,6 @@ module IconTheme {
7558
7418
 
7559
7419
  // Own constructor properties of Mx-2.0.Mx.IconTheme
7560
7420
 
7561
- theme_name?: string | null
7562
7421
  themeName?: string | null
7563
7422
  }
7564
7423
 
@@ -7568,7 +7427,6 @@ interface IconTheme {
7568
7427
 
7569
7428
  // Own properties of Mx-2.0.Mx.IconTheme
7570
7429
 
7571
- theme_name: string | null
7572
7430
  themeName: string | null
7573
7431
 
7574
7432
  // Own fields of Mx-2.0.Mx.IconTheme
@@ -7695,15 +7553,8 @@ module Image {
7695
7553
 
7696
7554
  // Own constructor properties of Mx-2.0.Mx.Image
7697
7555
 
7698
- allow_upscale?: boolean | null
7699
- filename?: string | null
7700
- image_rotation?: number | null
7701
- load_async?: boolean | null
7702
- scale_height_threshold?: number | null
7703
- scale_mode?: ImageScaleMode | null
7704
- scale_width_threshold?: number | null
7705
- transition_duration?: number | null
7706
7556
  allowUpscale?: boolean | null
7557
+ filename?: string | null
7707
7558
  imageRotation?: number | null
7708
7559
  loadAsync?: boolean | null
7709
7560
  scaleHeightThreshold?: number | null
@@ -7718,20 +7569,13 @@ interface Image extends Atk.ImplementorIface, Clutter.Animatable, Clutter.Contai
7718
7569
 
7719
7570
  // Own properties of Mx-2.0.Mx.Image
7720
7571
 
7721
- allow_upscale: boolean
7722
7572
  allowUpscale: boolean
7723
7573
  filename: string | null
7724
- image_rotation: number
7725
7574
  imageRotation: number
7726
- load_async: boolean
7727
7575
  loadAsync: boolean
7728
- scale_height_threshold: number
7729
7576
  scaleHeightThreshold: number
7730
- scale_mode: ImageScaleMode
7731
7577
  scaleMode: ImageScaleMode
7732
- scale_width_threshold: number
7733
7578
  scaleWidthThreshold: number
7734
- transition_duration: number
7735
7579
  transitionDuration: number
7736
7580
 
7737
7581
  // Owm methods of Mx-2.0.Mx.Image
@@ -8271,9 +8115,8 @@ module ItemView {
8271
8115
  // Own constructor properties of Mx-2.0.Mx.ItemView
8272
8116
 
8273
8117
  factory?: GObject.Object | null
8274
- item_type?: GObject.GType | null
8275
- model?: Clutter.Model | null
8276
8118
  itemType?: GObject.GType | null
8119
+ model?: Clutter.Model | null
8277
8120
  }
8278
8121
 
8279
8122
  }
@@ -8283,7 +8126,6 @@ interface ItemView extends Atk.ImplementorIface, Clutter.Animatable, Clutter.Con
8283
8126
  // Own properties of Mx-2.0.Mx.ItemView
8284
8127
 
8285
8128
  factory: GObject.Object
8286
- item_type: GObject.GType
8287
8129
  itemType: GObject.GType
8288
8130
  model: Clutter.Model
8289
8131
 
@@ -8714,22 +8556,13 @@ module KineticScrollView {
8714
8556
 
8715
8557
  // Own constructor properties of Mx-2.0.Mx.KineticScrollView
8716
8558
 
8717
- acceleration_factor?: number | null
8718
- clamp_duration?: number | null
8719
- clamp_mode?: number | null
8720
- clamp_to_center?: boolean | null
8721
- deceleration?: number | null
8722
- mouse_button?: number | null
8723
- overshoot?: number | null
8724
- scroll_policy?: ScrollPolicy | null
8725
- snap_on_page?: boolean | null
8726
- use_captured?: boolean | null
8727
- use_grab?: boolean | null
8728
8559
  accelerationFactor?: number | null
8729
8560
  clampDuration?: number | null
8730
8561
  clampMode?: number | null
8731
8562
  clampToCenter?: boolean | null
8563
+ deceleration?: number | null
8732
8564
  mouseButton?: number | null
8565
+ overshoot?: number | null
8733
8566
  scrollPolicy?: ScrollPolicy | null
8734
8567
  snapOnPage?: boolean | null
8735
8568
  useCaptured?: boolean | null
@@ -8742,26 +8575,17 @@ interface KineticScrollView extends Atk.ImplementorIface, Clutter.Animatable, Cl
8742
8575
 
8743
8576
  // Own properties of Mx-2.0.Mx.KineticScrollView
8744
8577
 
8745
- acceleration_factor: number
8746
8578
  accelerationFactor: number
8747
- clamp_duration: number
8748
8579
  clampDuration: number
8749
- clamp_mode: number
8750
8580
  clampMode: number
8751
- clamp_to_center: boolean
8752
8581
  clampToCenter: boolean
8753
8582
  deceleration: number
8754
- mouse_button: number
8755
8583
  mouseButton: number
8756
8584
  overshoot: number
8757
- scroll_policy: ScrollPolicy
8758
8585
  scrollPolicy: ScrollPolicy
8759
- snap_on_page: boolean
8760
8586
  snapOnPage: boolean
8761
8587
  readonly state: KineticScrollViewState
8762
- use_captured: boolean
8763
8588
  useCaptured: boolean
8764
- use_grab: boolean
8765
8589
  useGrab: boolean
8766
8590
 
8767
8591
  // Owm methods of Mx-2.0.Mx.KineticScrollView
@@ -9281,22 +9105,6 @@ module Label {
9281
9105
 
9282
9106
  // Own constructor properties of Mx-2.0.Mx.Label
9283
9107
 
9284
- fade_out?: boolean | null
9285
- /**
9286
- * Whether to wrap the lines of #MxLabel:text if the contents
9287
- * exceed the available allocation.
9288
- */
9289
- line_wrap?: boolean | null
9290
- /**
9291
- * Show a tooltip when there is not enough space to display the text. If set
9292
- * to %TRUE, this will also cause the #ClutterActor:reactive property to be
9293
- * enabled.
9294
- */
9295
- show_tooltip?: boolean | null
9296
- text?: string | null
9297
- use_markup?: boolean | null
9298
- x_align: any
9299
- y_align: any
9300
9108
  fadeOut?: boolean | null
9301
9109
  /**
9302
9110
  * Whether to wrap the lines of #MxLabel:text if the contents
@@ -9309,6 +9117,7 @@ module Label {
9309
9117
  * enabled.
9310
9118
  */
9311
9119
  showTooltip?: boolean | null
9120
+ text?: string | null
9312
9121
  useMarkup?: boolean | null
9313
9122
  xAlign: any
9314
9123
  yAlign: any
@@ -9320,21 +9129,13 @@ interface Label extends Atk.ImplementorIface, Clutter.Animatable, Clutter.Contai
9320
9129
 
9321
9130
  // Own properties of Mx-2.0.Mx.Label
9322
9131
 
9323
- readonly clutter_text: Clutter.Text
9324
9132
  readonly clutterText: Clutter.Text
9325
- fade_out: boolean
9326
9133
  fadeOut: boolean
9327
- /**
9328
- * Whether to wrap the lines of #MxLabel:text if the contents
9329
- * exceed the available allocation.
9330
- */
9331
- line_wrap: boolean
9332
9134
  /**
9333
9135
  * Whether to wrap the lines of #MxLabel:text if the contents
9334
9136
  * exceed the available allocation.
9335
9137
  */
9336
9138
  lineWrap: boolean
9337
- // Has conflict: show_tooltip: boolean
9338
9139
  /**
9339
9140
  * Show a tooltip when there is not enough space to display the text. If set
9340
9141
  * to %TRUE, this will also cause the #ClutterActor:reactive property to be
@@ -9342,11 +9143,8 @@ interface Label extends Atk.ImplementorIface, Clutter.Animatable, Clutter.Contai
9342
9143
  */
9343
9144
  showTooltip: boolean
9344
9145
  text: string | null
9345
- use_markup: boolean
9346
9146
  useMarkup: boolean
9347
- x_align: any
9348
9147
  xAlign: any
9349
- y_align: any
9350
9148
  yAlign: any
9351
9149
 
9352
9150
  // Owm methods of Mx-2.0.Mx.Label
@@ -9824,9 +9622,8 @@ module ListView {
9824
9622
  // Own constructor properties of Mx-2.0.Mx.ListView
9825
9623
 
9826
9624
  factory?: GObject.Object | null
9827
- item_type?: GObject.GType | null
9828
- model?: Clutter.Model | null
9829
9625
  itemType?: GObject.GType | null
9626
+ model?: Clutter.Model | null
9830
9627
  }
9831
9628
 
9832
9629
  }
@@ -9836,7 +9633,6 @@ interface ListView extends Atk.ImplementorIface, Clutter.Animatable, Clutter.Con
9836
9633
  // Own properties of Mx-2.0.Mx.ListView
9837
9634
 
9838
9635
  factory: GObject.Object
9839
- item_type: GObject.GType
9840
9636
  itemType: GObject.GType
9841
9637
  model: Clutter.Model
9842
9638
 
@@ -10656,7 +10452,6 @@ module Notebook {
10656
10452
 
10657
10453
  // Own constructor properties of Mx-2.0.Mx.Notebook
10658
10454
 
10659
- current_page?: Clutter.Actor | null
10660
10455
  currentPage?: Clutter.Actor | null
10661
10456
  }
10662
10457
 
@@ -10666,7 +10461,6 @@ interface Notebook extends Atk.ImplementorIface, Clutter.Animatable, Clutter.Con
10666
10461
 
10667
10462
  // Own properties of Mx-2.0.Mx.Notebook
10668
10463
 
10669
- current_page: Clutter.Actor
10670
10464
  currentPage: Clutter.Actor
10671
10465
 
10672
10466
  // Own fields of Mx-2.0.Mx.Notebook
@@ -11018,9 +10812,6 @@ module Pager {
11018
10812
 
11019
10813
  // Own constructor properties of Mx-2.0.Mx.Pager
11020
10814
 
11021
- edge_previews?: boolean | null
11022
- page_actor?: Clutter.Actor | null
11023
- page_num?: number | null
11024
10815
  edgePreviews?: boolean | null
11025
10816
  pageActor?: Clutter.Actor | null
11026
10817
  pageNum?: number | null
@@ -11032,11 +10823,8 @@ interface Pager extends Atk.ImplementorIface, Clutter.Animatable, Clutter.Contai
11032
10823
 
11033
10824
  // Own properties of Mx-2.0.Mx.Pager
11034
10825
 
11035
- edge_previews: boolean
11036
10826
  edgePreviews: boolean
11037
- page_actor: Clutter.Actor
11038
10827
  pageActor: Clutter.Actor
11039
- page_num: number
11040
10828
  pageNum: number
11041
10829
 
11042
10830
  // Owm methods of Mx-2.0.Mx.Pager
@@ -11415,9 +11203,8 @@ module PathBar {
11415
11203
 
11416
11204
  // Own constructor properties of Mx-2.0.Mx.PathBar
11417
11205
 
11418
- clear_on_change?: boolean | null
11419
- editable?: boolean | null
11420
11206
  clearOnChange?: boolean | null
11207
+ editable?: boolean | null
11421
11208
  }
11422
11209
 
11423
11210
  }
@@ -11426,7 +11213,6 @@ interface PathBar extends Atk.ImplementorIface, Clutter.Animatable, Clutter.Cont
11426
11213
 
11427
11214
  // Own properties of Mx-2.0.Mx.PathBar
11428
11215
 
11429
- clear_on_change: boolean
11430
11216
  clearOnChange: boolean
11431
11217
  editable: boolean
11432
11218
  readonly entry: Entry
@@ -12585,9 +12371,6 @@ module ScrollView {
12585
12371
 
12586
12372
  // Own constructor properties of Mx-2.0.Mx.ScrollView
12587
12373
 
12588
- enable_mouse_scrolling?: boolean | null
12589
- scroll_policy?: ScrollPolicy | null
12590
- scroll_visibility?: ScrollPolicy | null
12591
12374
  enableMouseScrolling?: boolean | null
12592
12375
  scrollPolicy?: ScrollPolicy | null
12593
12376
  scrollVisibility?: ScrollPolicy | null
@@ -12599,11 +12382,8 @@ interface ScrollView extends Atk.ImplementorIface, Clutter.Animatable, Clutter.C
12599
12382
 
12600
12383
  // Own properties of Mx-2.0.Mx.ScrollView
12601
12384
 
12602
- enable_mouse_scrolling: boolean
12603
12385
  enableMouseScrolling: boolean
12604
- scroll_policy: ScrollPolicy
12605
12386
  scrollPolicy: ScrollPolicy
12606
- scroll_visibility: ScrollPolicy
12607
12387
  scrollVisibility: ScrollPolicy
12608
12388
 
12609
12389
  // Owm methods of Mx-2.0.Mx.ScrollView
@@ -12954,12 +12734,6 @@ module Settings {
12954
12734
 
12955
12735
  // Own constructor properties of Mx-2.0.Mx.Settings
12956
12736
 
12957
- drag_threshold?: number | null
12958
- font_name?: string | null
12959
- icon_theme?: string | null
12960
- long_press_timeout?: number | null
12961
- small_screen?: boolean | null
12962
- touch_mode?: boolean | null
12963
12737
  dragThreshold?: number | null
12964
12738
  fontName?: string | null
12965
12739
  iconTheme?: string | null
@@ -12974,17 +12748,11 @@ interface Settings {
12974
12748
 
12975
12749
  // Own properties of Mx-2.0.Mx.Settings
12976
12750
 
12977
- drag_threshold: number
12978
12751
  dragThreshold: number
12979
- font_name: string | null
12980
12752
  fontName: string | null
12981
- icon_theme: string | null
12982
12753
  iconTheme: string | null
12983
- long_press_timeout: number
12984
12754
  longPressTimeout: number
12985
- small_screen: boolean
12986
12755
  smallScreen: boolean
12987
- touch_mode: boolean
12988
12756
  touchMode: boolean
12989
12757
 
12990
12758
  // Own fields of Mx-2.0.Mx.Settings
@@ -13061,9 +12829,8 @@ module Slider {
13061
12829
 
13062
12830
  // Own constructor properties of Mx-2.0.Mx.Slider
13063
12831
 
13064
- buffer_value?: number | null
13065
- value?: number | null
13066
12832
  bufferValue?: number | null
12833
+ value?: number | null
13067
12834
  }
13068
12835
 
13069
12836
  }
@@ -13072,7 +12839,6 @@ interface Slider extends Atk.ImplementorIface, Clutter.Animatable, Clutter.Conta
13072
12839
 
13073
12840
  // Own properties of Mx-2.0.Mx.Slider
13074
12841
 
13075
- buffer_value: number
13076
12842
  bufferValue: number
13077
12843
  value: number
13078
12844
 
@@ -14244,10 +14010,6 @@ module StackChild {
14244
14010
 
14245
14011
  crop?: boolean | null
14246
14012
  fit?: boolean | null
14247
- x_align?: Align | null
14248
- x_fill?: boolean | null
14249
- y_align?: Align | null
14250
- y_fill?: boolean | null
14251
14013
  xAlign?: Align | null
14252
14014
  xFill?: boolean | null
14253
14015
  yAlign?: Align | null
@@ -14262,13 +14024,9 @@ interface StackChild {
14262
14024
 
14263
14025
  crop: boolean
14264
14026
  fit: boolean
14265
- x_align: Align
14266
14027
  xAlign: Align
14267
- x_fill: boolean
14268
14028
  xFill: boolean
14269
- y_align: Align
14270
14029
  yAlign: Align
14271
- y_fill: boolean
14272
14030
  yFill: boolean
14273
14031
 
14274
14032
  // Class property signals of Mx-2.0.Mx.StackChild
@@ -14449,8 +14207,6 @@ module Table {
14449
14207
 
14450
14208
  // Own constructor properties of Mx-2.0.Mx.Table
14451
14209
 
14452
- column_spacing?: number | null
14453
- row_spacing?: number | null
14454
14210
  columnSpacing?: number | null
14455
14211
  rowSpacing?: number | null
14456
14212
  }
@@ -14461,13 +14217,9 @@ interface Table extends Atk.ImplementorIface, Clutter.Animatable, Clutter.Contai
14461
14217
 
14462
14218
  // Own properties of Mx-2.0.Mx.Table
14463
14219
 
14464
- readonly column_count: number
14465
14220
  readonly columnCount: number
14466
- column_spacing: number
14467
14221
  columnSpacing: number
14468
- readonly row_count: number
14469
14222
  readonly rowCount: number
14470
- row_spacing: number
14471
14223
  rowSpacing: number
14472
14224
 
14473
14225
  // Owm methods of Mx-2.0.Mx.Table
@@ -14994,16 +14746,8 @@ module TableChild {
14994
14746
  // Own constructor properties of Mx-2.0.Mx.TableChild
14995
14747
 
14996
14748
  column?: number | null
14997
- column_span?: number | null
14998
- row?: number | null
14999
- row_span?: number | null
15000
- x_align?: Align | null
15001
- x_expand?: boolean | null
15002
- x_fill?: boolean | null
15003
- y_align?: Align | null
15004
- y_expand?: boolean | null
15005
- y_fill?: boolean | null
15006
14749
  columnSpan?: number | null
14750
+ row?: number | null
15007
14751
  rowSpan?: number | null
15008
14752
  xAlign?: Align | null
15009
14753
  xExpand?: boolean | null
@@ -15020,22 +14764,14 @@ interface TableChild {
15020
14764
  // Own properties of Mx-2.0.Mx.TableChild
15021
14765
 
15022
14766
  column: number
15023
- column_span: number
15024
14767
  columnSpan: number
15025
14768
  row: number
15026
- row_span: number
15027
14769
  rowSpan: number
15028
- x_align: Align
15029
14770
  xAlign: Align
15030
- x_expand: boolean
15031
14771
  xExpand: boolean
15032
- x_fill: boolean
15033
14772
  xFill: boolean
15034
- y_align: Align
15035
14773
  yAlign: Align
15036
- y_expand: boolean
15037
14774
  yExpand: boolean
15038
- y_fill: boolean
15039
14775
  yFill: boolean
15040
14776
 
15041
14777
  // Class property signals of Mx-2.0.Mx.TableChild
@@ -15244,10 +14980,9 @@ module TextureFrame {
15244
14980
 
15245
14981
  bottom?: number | null
15246
14982
  left?: number | null
15247
- parent_texture?: Clutter.Texture | null
14983
+ parentTexture?: Clutter.Texture | null
15248
14984
  right?: number | null
15249
14985
  top?: number | null
15250
- parentTexture?: Clutter.Texture | null
15251
14986
  }
15252
14987
 
15253
14988
  }
@@ -15258,7 +14993,6 @@ interface TextureFrame extends Atk.ImplementorIface, Clutter.Animatable, Clutter
15258
14993
 
15259
14994
  bottom: number
15260
14995
  left: number
15261
- parent_texture: Clutter.Texture
15262
14996
  parentTexture: Clutter.Texture
15263
14997
  right: number
15264
14998
  top: number
@@ -15992,7 +15726,6 @@ module Toolbar {
15992
15726
 
15993
15727
  // Own constructor properties of Mx-2.0.Mx.Toolbar
15994
15728
 
15995
- has_close_button?: boolean | null
15996
15729
  hasCloseButton?: boolean | null
15997
15730
  }
15998
15731
 
@@ -16002,7 +15735,6 @@ interface Toolbar extends Atk.ImplementorIface, Clutter.Animatable, Clutter.Cont
16002
15735
 
16003
15736
  // Own properties of Mx-2.0.Mx.Toolbar
16004
15737
 
16005
- has_close_button: boolean
16006
15738
  hasCloseButton: boolean
16007
15739
 
16008
15740
  // Own fields of Mx-2.0.Mx.Toolbar
@@ -16373,7 +16105,6 @@ module Tooltip {
16373
16105
  // Own constructor properties of Mx-2.0.Mx.Tooltip
16374
16106
 
16375
16107
  text?: string | null
16376
- tip_area?: Clutter.Geometry | null
16377
16108
  tipArea?: Clutter.Geometry | null
16378
16109
  }
16379
16110
 
@@ -16384,7 +16115,6 @@ interface Tooltip extends Atk.ImplementorIface, Clutter.Animatable, Clutter.Cont
16384
16115
  // Own properties of Mx-2.0.Mx.Tooltip
16385
16116
 
16386
16117
  text: string | null
16387
- tip_area: Clutter.Geometry
16388
16118
  tipArea: Clutter.Geometry
16389
16119
 
16390
16120
  // Owm methods of Mx-2.0.Mx.Tooltip
@@ -16761,10 +16491,6 @@ module Viewport {
16761
16491
 
16762
16492
  // Own constructor properties of Mx-2.0.Mx.Viewport
16763
16493
 
16764
- sync_adjustments?: boolean | null
16765
- x_origin?: number | null
16766
- y_origin?: number | null
16767
- z_origin?: number | null
16768
16494
  syncAdjustments?: boolean | null
16769
16495
  xOrigin?: number | null
16770
16496
  yOrigin?: number | null
@@ -16777,20 +16503,14 @@ interface Viewport extends Atk.ImplementorIface, Clutter.Animatable, Clutter.Con
16777
16503
 
16778
16504
  // Own properties of Mx-2.0.Mx.Viewport
16779
16505
 
16780
- sync_adjustments: boolean
16781
16506
  syncAdjustments: boolean
16782
- x_origin: number
16783
16507
  xOrigin: number
16784
- y_origin: number
16785
16508
  yOrigin: number
16786
- z_origin: number
16787
16509
  zOrigin: number
16788
16510
 
16789
16511
  // Conflicting properties
16790
16512
 
16791
- x_align: any
16792
16513
  xAlign: any
16793
- y_align: any
16794
16514
  yAlign: any
16795
16515
 
16796
16516
  // Owm methods of Mx-2.0.Mx.Viewport
@@ -17166,11 +16886,6 @@ module Widget {
17166
16886
  * #MxMenu associated with the widget.
17167
16887
  */
17168
16888
  menu?: Menu | null
17169
- tooltip_delay?: number | null
17170
- /**
17171
- * text displayed on the tooltip
17172
- */
17173
- tooltip_text?: string | null
17174
16889
  tooltipDelay?: number | null
17175
16890
  /**
17176
16891
  * text displayed on the tooltip
@@ -17189,12 +16904,7 @@ interface Widget extends Atk.ImplementorIface, Clutter.Animatable, Clutter.Conta
17189
16904
  * #MxMenu associated with the widget.
17190
16905
  */
17191
16906
  menu: Menu
17192
- tooltip_delay: number
17193
16907
  tooltipDelay: number
17194
- /**
17195
- * text displayed on the tooltip
17196
- */
17197
- tooltip_text: string | null
17198
16908
  /**
17199
16909
  * text displayed on the tooltip
17200
16910
  */
@@ -17628,20 +17338,14 @@ module Window {
17628
17338
  // Own constructor properties of Mx-2.0.Mx.Window
17629
17339
 
17630
17340
  child?: Clutter.Actor | null
17631
- clutter_stage?: Clutter.Stage | null
17632
- fullscreen?: boolean | null
17633
- has_toolbar?: boolean | null
17634
- icon_cogl_texture?: string | null
17635
- icon_name?: string | null
17636
- small_screen?: boolean | null
17637
- title?: string | null
17638
- toolbar?: Toolbar | null
17639
- window_rotation?: WindowRotation | null
17640
17341
  clutterStage?: Clutter.Stage | null
17342
+ fullscreen?: boolean | null
17641
17343
  hasToolbar?: boolean | null
17642
17344
  iconCoglTexture?: string | null
17643
17345
  iconName?: string | null
17644
17346
  smallScreen?: boolean | null
17347
+ title?: string | null
17348
+ toolbar?: Toolbar | null
17645
17349
  windowRotation?: WindowRotation | null
17646
17350
  }
17647
17351
 
@@ -17652,24 +17356,16 @@ interface Window {
17652
17356
  // Own properties of Mx-2.0.Mx.Window
17653
17357
 
17654
17358
  child: Clutter.Actor
17655
- readonly clutter_stage: Clutter.Stage
17656
17359
  readonly clutterStage: Clutter.Stage
17657
17360
  fullscreen: boolean
17658
- has_toolbar: boolean
17659
17361
  hasToolbar: boolean
17660
- icon_cogl_texture: string | null
17661
17362
  iconCoglTexture: string | null
17662
- icon_name: string | null
17663
17363
  iconName: string | null
17664
- small_screen: boolean
17665
17364
  smallScreen: boolean
17666
17365
  title: string | null
17667
17366
  toolbar: Toolbar
17668
- window_rotation: WindowRotation
17669
17367
  windowRotation: WindowRotation
17670
- readonly window_rotation_angle: number
17671
17368
  readonly windowRotationAngle: number
17672
- readonly window_rotation_timeline: Clutter.Timeline
17673
17369
  readonly windowRotationTimeline: Clutter.Timeline
17674
17370
 
17675
17371
  // Own fields of Mx-2.0.Mx.Window