@girs/mx-2.0 1.99.4-3.2.6 → 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
@@ -289,10 +289,10 @@ const VERSION_HEX: number
289
289
  * The full version of the Mx library, in string form (suited for
290
290
  * string concatenation)
291
291
  */
292
- const VERSION_S: string | null
292
+ const VERSION_S: string
293
293
  function actor_box_clamp_to_pixels(box: Clutter.ActorBox): void
294
294
  function allocate_align_fill(child: Clutter.Actor, childbox: Clutter.ActorBox, x_alignment: Align, y_alignment: Align, x_fill: boolean, y_fill: boolean): void
295
- function border_image_set_from_string(value: any, str: string | null, filename: string | null): void
295
+ function border_image_set_from_string(value: any, str: string, filename: string): void
296
296
  /**
297
297
  * Transforms a focus direction to a focus hint. This is a convenience
298
298
  * function for actors that implement the #MxFocusable interface, to
@@ -310,7 +310,7 @@ function border_image_set_from_string(value: any, str: string | null, filename:
310
310
  * @returns A #MxFocusHint
311
311
  */
312
312
  function focus_hint_from_direction(direction: FocusDirection): FocusHint
313
- function font_weight_set_from_string(value: any, str: string | null): void
313
+ function font_weight_set_from_string(value: any, str: string): void
314
314
  function image_error_quark(): GLib.Quark
315
315
  /**
316
316
  * Initializes internationalization support for Mx. If MxApplication is
@@ -341,7 +341,7 @@ interface ActionCallbackFunc {
341
341
  * @param text text from the clipboard
342
342
  */
343
343
  interface ClipboardCallbackFunc {
344
- (clipboard: Clipboard, text: string | null): void
344
+ (clipboard: Clipboard, text: string): void
345
345
  }
346
346
  module Draggable {
347
347
 
@@ -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
@@ -1310,14 +1294,14 @@ interface Stylable {
1310
1294
  * @param property_name the name of the property to find
1311
1295
  * @returns a #GParamSpec for the given property, or %NULL if no property with that name was found
1312
1296
  */
1313
- find_property(property_name: string | null): GObject.ParamSpec
1297
+ find_property(property_name: string): GObject.ParamSpec
1314
1298
  /**
1315
1299
  * Query `stylable` for the default value of property `property_name` and
1316
1300
  * fill `value_out` with the result.
1317
1301
  * @param property_name name of the property to query
1318
1302
  * @returns %TRUE if property @property_name exists and the default value has been returned.
1319
1303
  */
1320
- get_default_value(property_name: string | null): [ /* returnType */ boolean, /* value_out */ any ]
1304
+ get_default_value(property_name: string): [ /* returnType */ boolean, /* value_out */ any ]
1321
1305
  /**
1322
1306
  * Retrieves the #MxStyle used by `stylable`. This function does not
1323
1307
  * alter the reference count of the returned object.
@@ -1328,19 +1312,19 @@ interface Stylable {
1328
1312
  * Get the current style class name
1329
1313
  * @returns the class name string. The string is owned by the #MxWidget and should not be modified or freed.
1330
1314
  */
1331
- get_style_class(): string | null
1315
+ get_style_class(): string
1332
1316
  /**
1333
1317
  * Retrieves the value of `property_name` for `stylable,` and puts it
1334
1318
  * into `value`.
1335
1319
  * @param property_name the name of the property
1336
1320
  */
1337
- get_style_property(property_name: string | null): /* value */ any
1321
+ get_style_property(property_name: string): /* value */ any
1338
1322
  /**
1339
1323
  * Get the current style pseudo class. This can contain multiple pseudo class
1340
1324
  * names, separated by ':'.
1341
1325
  * @returns the pseudo class string. The string is owned by the #MxWidget and should not be modified or freed.
1342
1326
  */
1343
- get_style_pseudo_class(): string | null
1327
+ get_style_pseudo_class(): string
1344
1328
  /**
1345
1329
  * Retrieves all the #GParamSpec<!-- -->s installed by `stylable`.
1346
1330
  * @returns an array of #GParamSpec<!-- -->s. Free it with g_free() when done.
@@ -1360,13 +1344,13 @@ interface Stylable {
1360
1344
  * Set the style class name
1361
1345
  * @param style_class a new style class string
1362
1346
  */
1363
- set_style_class(style_class: string | null): void
1347
+ set_style_class(style_class: string): void
1364
1348
  /**
1365
1349
  * Set the style pseudo class. The string can contain multiple pseudo class
1366
1350
  * names, separated by ':'.
1367
1351
  * @param pseudo_class a new pseudo class string
1368
1352
  */
1369
- set_style_pseudo_class(pseudo_class: string | null): void
1353
+ set_style_pseudo_class(pseudo_class: string): void
1370
1354
  /**
1371
1355
  * Emit the "style-changed" signal on `stylable` to notify it that one or more
1372
1356
  * of the style properties has changed.
@@ -1382,20 +1366,20 @@ interface Stylable {
1382
1366
  * #MxStylable:style-pseudo-class property.
1383
1367
  * @param new_class A pseudo-class name to add
1384
1368
  */
1385
- style_pseudo_class_add(new_class: string | null): void
1369
+ style_pseudo_class_add(new_class: string): void
1386
1370
  /**
1387
1371
  * Check if the given pseudo-class name is contained in the list of
1388
1372
  * set pseudo classes on this #MxStylable object.
1389
1373
  * @param pseudo_class A pseudo-class name
1390
1374
  * @returns %TRUE if the given pseudo-class is set, %FALSE otherwise
1391
1375
  */
1392
- style_pseudo_class_contains(pseudo_class: string | null): boolean
1376
+ style_pseudo_class_contains(pseudo_class: string): boolean
1393
1377
  /**
1394
1378
  * Remove the specified pseudo class name from the list of pseudo classes
1395
1379
  * contained in the #MxStylable:style-pseudo-class property.
1396
1380
  * @param remove_class A pseudo class name to remove
1397
1381
  */
1398
- style_pseudo_class_remove(remove_class: string | null): void
1382
+ style_pseudo_class_remove(remove_class: string): void
1399
1383
 
1400
1384
  // Own virtual methods of Mx-2.0.Mx.Stylable
1401
1385
 
@@ -1411,14 +1395,14 @@ interface Stylable {
1411
1395
  * @virtual
1412
1396
  * @returns the class name string. The string is owned by the #MxWidget and should not be modified or freed.
1413
1397
  */
1414
- vfunc_get_style_class(): string | null
1398
+ vfunc_get_style_class(): string
1415
1399
  /**
1416
1400
  * Get the current style pseudo class. This can contain multiple pseudo class
1417
1401
  * names, separated by ':'.
1418
1402
  * @virtual
1419
1403
  * @returns the pseudo class string. The string is owned by the #MxWidget and should not be modified or freed.
1420
1404
  */
1421
- vfunc_get_style_pseudo_class(): string | null
1405
+ vfunc_get_style_pseudo_class(): string
1422
1406
  /**
1423
1407
  * Sets `style` as the new #MxStyle to be used by `stylable`.
1424
1408
  *
@@ -1435,14 +1419,14 @@ interface Stylable {
1435
1419
  * @virtual
1436
1420
  * @param style_class a new style class string
1437
1421
  */
1438
- vfunc_set_style_class(style_class: string | null): void
1422
+ vfunc_set_style_class(style_class: string): void
1439
1423
  /**
1440
1424
  * Set the style pseudo class. The string can contain multiple pseudo class
1441
1425
  * names, separated by ':'.
1442
1426
  * @virtual
1443
1427
  * @param pseudo_class a new pseudo class string
1444
1428
  */
1445
- vfunc_set_style_pseudo_class(pseudo_class: string | null): void
1429
+ vfunc_set_style_pseudo_class(pseudo_class: string): void
1446
1430
  /**
1447
1431
  * Emit the "style-changed" signal on `stylable` to notify it that one or more
1448
1432
  * of the style properties has changed.
@@ -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
 
@@ -1584,17 +1566,17 @@ interface Action extends Gio.Action {
1584
1566
  * Get the display name of the action
1585
1567
  * @returns display-name of the action, owned by MxAction
1586
1568
  */
1587
- get_display_name(): string | null
1569
+ get_display_name(): string
1588
1570
  /**
1589
1571
  * Get the icon of the action
1590
1572
  * @returns icon of the action, owned by MxAction
1591
1573
  */
1592
- get_icon(): string | null
1574
+ get_icon(): string
1593
1575
  /**
1594
1576
  * Get the name of the action
1595
1577
  * @returns name of the action, owned by MxAction
1596
1578
  */
1597
- get_name(): string | null
1579
+ get_name(): string
1598
1580
  /**
1599
1581
  * Set the value of the active property
1600
1582
  * @param active the value to set
@@ -1604,17 +1586,17 @@ interface Action extends Gio.Action {
1604
1586
  * Set the name of the action to display to the user
1605
1587
  * @param name new display name to set
1606
1588
  */
1607
- set_display_name(name: string | null): void
1589
+ set_display_name(name: string): void
1608
1590
  /**
1609
1591
  * The icon to be used in a visual representation of an action.
1610
1592
  * @param name new icon to set
1611
1593
  */
1612
- set_icon(name: string | null): void
1594
+ set_icon(name: string): void
1613
1595
  /**
1614
1596
  * Set the name of the action
1615
1597
  * @param name new name to set
1616
1598
  */
1617
- set_name(name: string | null): void
1599
+ set_name(name: string): void
1618
1600
 
1619
1601
  // Own virtual methods of Mx-2.0.Mx.Action
1620
1602
 
@@ -1696,7 +1678,7 @@ class Action extends GObject.InitiallyUnowned {
1696
1678
  * @param activated_cb callback to connect to the activated signal
1697
1679
  * @returns a newly allocated #MxAction
1698
1680
  */
1699
- static new_full(name: string | null, display_name: string | null, activated_cb: ActionCallbackFunc | null): Action
1681
+ static new_full(name: string, display_name: string, activated_cb: ActionCallbackFunc | null): Action
1700
1682
  /**
1701
1683
  * Creates a new stateful action.
1702
1684
  *
@@ -1708,7 +1690,7 @@ class Action extends GObject.InitiallyUnowned {
1708
1690
  * @param state the initial state of the action
1709
1691
  * @returns a new #MxAction
1710
1692
  */
1711
- static new_stateful(name: string | null, parameter_type: GLib.VariantType | null, state: GLib.Variant): Action
1693
+ static new_stateful(name: string, parameter_type: GLib.VariantType | null, state: GLib.Variant): Action
1712
1694
  /**
1713
1695
  * Creates a new action with a parameter.
1714
1696
  *
@@ -1718,7 +1700,7 @@ class Action extends GObject.InitiallyUnowned {
1718
1700
  * @param parameter_type the type of parameter to the activate function
1719
1701
  * @returns a new #MxAction
1720
1702
  */
1721
- static new_with_parameter(name: string | null, parameter_type?: GLib.VariantType | null): Action
1703
+ static new_with_parameter(name: string, parameter_type?: GLib.VariantType | null): Action
1722
1704
  _init(config?: Action.ConstructorProperties): void
1723
1705
  }
1724
1706
 
@@ -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
@@ -2286,7 +2257,7 @@ interface Application extends Gio.ActionGroup, Gio.ActionMap {
2286
2257
  * @param window_title Title for the new window
2287
2258
  * @returns The newly created MxWindow
2288
2259
  */
2289
- create_window(window_title: string | null): Window
2260
+ create_window(window_title: string): Window
2290
2261
  /**
2291
2262
  * Retrieves all windows added to `application`.
2292
2263
  * @returns a list of #MxWindow<!-- -->s. The returned list is owned by @application and must not be altered.
@@ -2354,7 +2325,7 @@ class Application extends Gio.Application {
2354
2325
  * @param flags Application flags.
2355
2326
  * @returns the #MxApplication singleton.
2356
2327
  */
2357
- constructor(application_id: string | null, flags: Gio.ApplicationFlags)
2328
+ constructor(application_id: string, flags: Gio.ApplicationFlags)
2358
2329
  /**
2359
2330
  * Intialises everything needed to operate Clutter and use #MxApplication.
2360
2331
  * See clutter_init().
@@ -2363,7 +2334,7 @@ class Application extends Gio.Application {
2363
2334
  * @param flags Application flags.
2364
2335
  * @returns the #MxApplication singleton.
2365
2336
  */
2366
- static new(application_id: string | null, flags: Gio.ApplicationFlags): Application
2337
+ static new(application_id: string, flags: Gio.ApplicationFlags): Application
2367
2338
 
2368
2339
  // Overloads of new
2369
2340
 
@@ -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
 
@@ -3478,12 +3393,12 @@ interface Button extends Atk.ImplementorIface, Clutter.Animatable, Clutter.Conta
3478
3393
  * @param name the name of the action to retrieve
3479
3394
  * @returns a #ClutterAction for the given name, or %NULL. The returned #ClutterAction is owned by the actor and it should not be unreferenced directly
3480
3395
  */
3481
- get_action(name: string | null): Clutter.Action
3396
+ get_action(name: string): Clutter.Action
3482
3397
  /**
3483
3398
  * Get the icon-name being used on the button.
3484
3399
  * @returns the icon-name. This must not be freed by the application. %NULL if no icon has been set
3485
3400
  */
3486
- get_icon_name(): string | null
3401
+ get_icon_name(): string
3487
3402
  /**
3488
3403
  * Retrieves the icon's relative position to the text.
3489
3404
  * @returns A #MxPosition
@@ -3508,7 +3423,7 @@ interface Button extends Atk.ImplementorIface, Clutter.Animatable, Clutter.Conta
3508
3423
  * Get the text displayed on the button
3509
3424
  * @returns the text for the button. This must not be freed by the application
3510
3425
  */
3511
- get_label(): string | null
3426
+ get_label(): string
3512
3427
  /**
3513
3428
  * Retrieves the visibility of the text associated with the button's action.
3514
3429
  * @returns %TRUE if the text is visible, %FALSE otherwise
@@ -3559,7 +3474,7 @@ interface Button extends Atk.ImplementorIface, Clutter.Animatable, Clutter.Conta
3559
3474
  * Sets the text displayed on the button
3560
3475
  * @param text text to set the label to
3561
3476
  */
3562
- set_label(text: string | null): void
3477
+ set_label(text: string): void
3563
3478
  /**
3564
3479
  * Sets the visibility of the text associated with the button's action.
3565
3480
  * @param visible %TRUE if the text should be visible
@@ -3938,7 +3853,7 @@ class Button extends Widget {
3938
3853
  * @param text text to set the label to
3939
3854
  * @returns a new #MxButton
3940
3855
  */
3941
- static new_with_label(text: string | null): Button
3856
+ static new_with_label(text: string): Button
3942
3857
  _init(config?: Button.ConstructorProperties): void
3943
3858
  }
3944
3859
 
@@ -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
@@ -4083,7 +3994,7 @@ interface Clipboard {
4083
3994
  * Sets text as the current contents of the clipboard.
4084
3995
  * @param text text to copy to the clipboard
4085
3996
  */
4086
- set_text(text: string | null): void
3997
+ set_text(text: string): void
4087
3998
 
4088
3999
  // Class property signals of Mx-2.0.Mx.Clipboard
4089
4000
 
@@ -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
 
@@ -4149,17 +4056,17 @@ interface ComboBox extends Atk.ImplementorIface, Clutter.Animatable, Clutter.Con
4149
4056
  * Append an item to the combo box list
4150
4057
  * @param text name of the item
4151
4058
  */
4152
- append_text(text: string | null): void
4059
+ append_text(text: string): void
4153
4060
  /**
4154
4061
  * Get the name of the icon displayed in the combo box
4155
4062
  * @returns the text string of the name of the displayed icon, owned by the combo box, or %NULL if there is no active icon.
4156
4063
  */
4157
- get_active_icon_name(): string | null
4064
+ get_active_icon_name(): string
4158
4065
  /**
4159
4066
  * Get the text displayed in the combo box
4160
4067
  * @returns the text string, owned by the combo box
4161
4068
  */
4162
- get_active_text(): string | null
4069
+ get_active_text(): string
4163
4070
  /**
4164
4071
  * Get the index of the last item selected
4165
4072
  * @returns gint
@@ -4170,19 +4077,19 @@ interface ComboBox extends Atk.ImplementorIface, Clutter.Animatable, Clutter.Con
4170
4077
  * @param position zero indexed position to insert the item at
4171
4078
  * @param text name of the item
4172
4079
  */
4173
- insert_text(position: number, text: string | null): void
4080
+ insert_text(position: number, text: string): void
4174
4081
  /**
4175
4082
  * Insert an item with text and an icon into the combo box list.
4176
4083
  * @param position zero indexed position to insert the item at
4177
4084
  * @param text name of the item
4178
4085
  * @param icon name of an icon from the icon theme
4179
4086
  */
4180
- insert_text_with_icon(position: number, text: string | null, icon: string | null): void
4087
+ insert_text_with_icon(position: number, text: string, icon: string): void
4181
4088
  /**
4182
4089
  * Prepend an item to the combo box list
4183
4090
  * @param text name of the item
4184
4091
  */
4185
- prepend_text(text: string | null): void
4092
+ prepend_text(text: string): void
4186
4093
  /**
4187
4094
  * Remove all the items of `box`
4188
4095
  */
@@ -4201,7 +4108,7 @@ interface ComboBox extends Atk.ImplementorIface, Clutter.Animatable, Clutter.Con
4201
4108
  * Set the text displayed in the combo box
4202
4109
  * @param text text to display
4203
4110
  */
4204
- set_active_text(text: string | null): void
4111
+ set_active_text(text: string): void
4205
4112
  /**
4206
4113
  * Set the current combo box text from the item at `index` in the list.
4207
4114
  * @param index the index of the list item to set
@@ -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
 
@@ -5004,7 +4902,7 @@ interface Entry extends Atk.ImplementorIface, Clutter.Animatable, Clutter.Contai
5004
4902
  * of the icon.
5005
4903
  * @returns the highlight filename suffix. This string is owned by the #MxEntry and should not be freed or modified.
5006
4904
  */
5007
- get_icon_highlight_suffix(): string | null
4905
+ get_icon_highlight_suffix(): string
5008
4906
  /**
5009
4907
  * Gets the character to display instead of the text.
5010
4908
  * @returns a character, or 0 if input should not be hidden.
@@ -5014,12 +4912,12 @@ interface Entry extends Atk.ImplementorIface, Clutter.Animatable, Clutter.Contai
5014
4912
  * Gets the text that is displayed when the entry is empty and unfocused
5015
4913
  * @returns the current value of the placeholder property. This string is owned by the #MxEntry and should not be freed or modified.
5016
4914
  */
5017
- get_placeholder(): string | null
4915
+ get_placeholder(): string
5018
4916
  /**
5019
4917
  * Get the text displayed on the entry
5020
4918
  * @returns the text for the entry. This must not be freed by the application
5021
4919
  */
5022
- get_text(): string | null
4920
+ get_text(): string
5023
4921
  /**
5024
4922
  * Sets the suffix appended to the filename to use for the highlighted version
5025
4923
  * of the icon. e.g. if you have set your primay icon to "primary-icon.png"
@@ -5027,7 +4925,7 @@ interface Entry extends Atk.ImplementorIface, Clutter.Animatable, Clutter.Contai
5027
4925
  * "primary-icon-highlight.png"
5028
4926
  * @param suffix the suffix to append to the filename for the highlight version
5029
4927
  */
5030
- set_icon_highlight_suffix(suffix: string | null): void
4928
+ set_icon_highlight_suffix(suffix: string): void
5031
4929
  /**
5032
4930
  * Sets the character to display instead of the text. Use 0 to display
5033
4931
  * the actual text.
@@ -5040,24 +4938,24 @@ interface Entry extends Atk.ImplementorIface, Clutter.Animatable, Clutter.Contai
5040
4938
  * A value of NULL unsets the hint.
5041
4939
  * @param text text to set as the entry hint
5042
4940
  */
5043
- set_placeholder(text: string | null): void
4941
+ set_placeholder(text: string): void
5044
4942
  /**
5045
4943
  * Set the primary icon of the entry to the given filename
5046
4944
  * @param filename filename of an icon
5047
4945
  */
5048
- set_primary_icon_from_file(filename: string | null): void
5049
- set_primary_icon_tooltip_text(text: string | null): void
4946
+ set_primary_icon_from_file(filename: string): void
4947
+ set_primary_icon_tooltip_text(text: string): void
5050
4948
  /**
5051
4949
  * Set the primary icon of the entry to the given filename
5052
4950
  * @param filename filename of an icon
5053
4951
  */
5054
- set_secondary_icon_from_file(filename: string | null): void
5055
- set_secondary_icon_tooltip_text(text: string | null): void
4952
+ set_secondary_icon_from_file(filename: string): void
4953
+ set_secondary_icon_tooltip_text(text: string): void
5056
4954
  /**
5057
4955
  * Sets the text displayed on the entry
5058
4956
  * @param text text to set the entry to
5059
4957
  */
5060
- set_text(text: string | null): void
4958
+ set_text(text: string): void
5061
4959
 
5062
4960
  // Conflicting methods
5063
4961
 
@@ -5423,7 +5321,7 @@ class Entry extends Widget {
5423
5321
  * @param text text to set the entry to
5424
5322
  * @returns a new #MxEntry
5425
5323
  */
5426
- static new_with_text(text: string | null): Entry
5324
+ static new_with_text(text: string): Entry
5427
5325
  _init(config?: Entry.ConstructorProperties): void
5428
5326
  }
5429
5327
 
@@ -5475,7 +5373,7 @@ interface Expander extends Atk.ImplementorIface, Clutter.Animatable, Clutter.Con
5475
5373
  * Sets the text displayed as the title of the expander
5476
5374
  * @param label string to set as the expander label
5477
5375
  */
5478
- set_label(label: string | null): void
5376
+ set_label(label: string): void
5479
5377
 
5480
5378
  // Conflicting methods
5481
5379
 
@@ -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,16 +7068,14 @@ 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
7215
7075
 
7216
- get_icon_name(): string | null
7076
+ get_icon_name(): string
7217
7077
  get_icon_size(): number
7218
- set_icon_name(icon_name: string | null): void
7078
+ set_icon_name(icon_name: string): void
7219
7079
  set_icon_size(size: number): void
7220
7080
 
7221
7081
  // Conflicting methods
@@ -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
@@ -7587,22 +7445,22 @@ interface IconTheme {
7587
7445
  * Get the value of the #MxIconTheme:theme-name property.
7588
7446
  * @returns the current value of the "theme-name" property.
7589
7447
  */
7590
- get_theme_name(): string | null
7591
- has_icon(icon_name: string | null): boolean
7448
+ get_theme_name(): string
7449
+ has_icon(icon_name: string): boolean
7592
7450
  /**
7593
7451
  * If the icon is available, returns a #CoglHandle of the icon.
7594
7452
  * @param icon_name The name of the icon
7595
7453
  * @param size The desired size of the icon
7596
7454
  * @returns a #CoglHandle of the icon, or %NULL.
7597
7455
  */
7598
- lookup(icon_name: string | null, size: number): Cogl.Handle
7456
+ lookup(icon_name: string, size: number): Cogl.Handle
7599
7457
  /**
7600
7458
  * If the icon is available, returns a #ClutterTexture of the icon.
7601
7459
  * @param icon_name The name of the icon
7602
7460
  * @param size The desired size of the icon
7603
7461
  * @returns a #ClutterTexture of the icon, or %NULL.
7604
7462
  */
7605
- lookup_texture(icon_name: string | null, size: number): Clutter.Texture
7463
+ lookup_texture(icon_name: string, size: number): Clutter.Texture
7606
7464
  /**
7607
7465
  * Sets the directories the #MxIconTheme will search in to find icons.
7608
7466
  * By default, it will look in the default system and local icon
@@ -7620,7 +7478,7 @@ interface IconTheme {
7620
7478
  * icon theme, this function can be called with a %NULL `theme_name` argument.
7621
7479
  * @param theme_name the name of an icon theme to load, or %NULL
7622
7480
  */
7623
- set_theme_name(theme_name: string | null): void
7481
+ set_theme_name(theme_name: string): void
7624
7482
 
7625
7483
  // Class property signals of Mx-2.0.Mx.IconTheme
7626
7484
 
@@ -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
@@ -7840,7 +7684,7 @@ interface Image extends Atk.ImplementorIface, Clutter.Animatable, Clutter.Contai
7840
7684
  * @param filename Filename to read the file from
7841
7685
  * @returns #TRUE if the image was successfully updated
7842
7686
  */
7843
- set_from_file(filename: string | null): boolean
7687
+ set_from_file(filename: string): boolean
7844
7688
  /**
7845
7689
  * Set the image data from an image file, and scale the image during loading.
7846
7690
  * In case of failure, #FALSE is returned and `error` is set. The aspect ratio
@@ -7850,7 +7694,7 @@ interface Image extends Atk.ImplementorIface, Clutter.Animatable, Clutter.Contai
7850
7694
  * @param height Height to scale the image to, or -1
7851
7695
  * @returns #TRUE if the image was successfully updated
7852
7696
  */
7853
- set_from_file_at_size(filename: string | null, width: number, height: number): boolean
7697
+ set_from_file_at_size(filename: string, width: number, height: number): boolean
7854
7698
  /**
7855
7699
  * Set the MxImage:image-rotation property.
7856
7700
  * @param rotation Rotation angle in degrees
@@ -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
 
@@ -8295,7 +8137,7 @@ interface ItemView extends Atk.ImplementorIface, Clutter.Animatable, Clutter.Con
8295
8137
  * @param attribute Name of the attribute
8296
8138
  * @param column Column number
8297
8139
  */
8298
- add_attribute(attribute: string | null, column: number): void
8140
+ add_attribute(attribute: string, column: number): void
8299
8141
  /**
8300
8142
  * Freeze the view. This means that the view will not act on changes to the
8301
8143
  * model until it is thawed. Call #mx_item_view_thaw to thaw the view
@@ -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
@@ -9380,7 +9178,7 @@ interface Label extends Atk.ImplementorIface, Clutter.Animatable, Clutter.Contai
9380
9178
  * Get the text displayed on the label
9381
9179
  * @returns the text for the label. This must not be freed by the application
9382
9180
  */
9383
- get_text(): string | null
9181
+ get_text(): string
9384
9182
  /**
9385
9183
  * Determines whether the text of the label is being treated as Pango markup.
9386
9184
  * @returns %TRUE if the text of the label is treated as Pango markup, %FALSE otherwise.
@@ -9433,7 +9231,7 @@ interface Label extends Atk.ImplementorIface, Clutter.Animatable, Clutter.Contai
9433
9231
  * Sets the text displayed on the label
9434
9232
  * @param text text to set the label to
9435
9233
  */
9436
- set_text(text: string | null): void
9234
+ set_text(text: string): void
9437
9235
  /**
9438
9236
  * Sets whether the text of the label should be treated as Pango markup.
9439
9237
  * @param use_markup %TRUE to use Pango markup, %FALSE otherwise
@@ -9811,7 +9609,7 @@ class Label extends Widget {
9811
9609
  * @param text text to set the label to
9812
9610
  * @returns a new #MxLabel
9813
9611
  */
9814
- static new_with_text(text: string | null): Label
9612
+ static new_with_text(text: string): Label
9815
9613
  _init(config?: Label.ConstructorProperties): void
9816
9614
  }
9817
9615
 
@@ -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
 
@@ -9848,7 +9644,7 @@ interface ListView extends Atk.ImplementorIface, Clutter.Animatable, Clutter.Con
9848
9644
  * @param attribute Name of the attribute
9849
9645
  * @param column Column number
9850
9646
  */
9851
- add_attribute(attribute: string | null, column: number): void
9647
+ add_attribute(attribute: string, column: number): void
9852
9648
  /**
9853
9649
  * Freeze the view. This means that the view will not act on changes to the
9854
9650
  * model until it is thawed. Call #mx_list_view_thaw to thaw the view.
@@ -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
@@ -11458,11 +11244,11 @@ interface PathBar extends Atk.ImplementorIface, Clutter.Animatable, Clutter.Cont
11458
11244
  * @returns MxEntry *
11459
11245
  */
11460
11246
  get_entry(): Entry
11461
- get_label(level: number): string | null
11247
+ get_label(level: number): string
11462
11248
  get_level(): number
11463
- get_text(): string | null
11249
+ get_text(): string
11464
11250
  pop(): number
11465
- push(name: string | null): number
11251
+ push(name: string): number
11466
11252
  /**
11467
11253
  * Set theh value of the #MxPathBar:clear-on-change property
11468
11254
  * @param clear_on_change the new value of the property
@@ -11478,12 +11264,12 @@ interface PathBar extends Atk.ImplementorIface, Clutter.Animatable, Clutter.Cont
11478
11264
  * @param level A #gint
11479
11265
  * @param label A #gchar
11480
11266
  */
11481
- set_label(level: number, label: string | null): void
11267
+ set_label(level: number, label: string): void
11482
11268
  /**
11483
11269
  * Set the text in the editable area of the #MxPathBar
11484
11270
  * @param text string to set the editable text to.
11485
11271
  */
11486
- set_text(text: string | null): void
11272
+ set_text(text: string): void
11487
11273
 
11488
11274
  // Conflicting methods
11489
11275
 
@@ -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
@@ -14367,7 +14125,7 @@ interface Style {
14367
14125
  * @param property_name the name of the property to get
14368
14126
  * @param value return location for the property value
14369
14127
  */
14370
- get_property(property_name: string | null, value: any): void
14128
+ get_property(property_name: string, value: any): void
14371
14129
  /**
14372
14130
  * Load style information from `data,` using `id` to identify the stylesheet.
14373
14131
  * `id` is usually the file name of the style sheet, which is used in the search
@@ -14376,14 +14134,14 @@ interface Style {
14376
14134
  * @param data CSS data to parse
14377
14135
  * @returns TRUE if the style information was loaded successfully. Returns FALSE on error.
14378
14136
  */
14379
- load_from_data(id: string | null, data: string | null): boolean
14137
+ load_from_data(id: string, data: string): boolean
14380
14138
  /**
14381
14139
  * Load style information from the specified file.
14382
14140
  * @param filename filename of the style sheet to load
14383
14141
  * @returns TRUE if the style information was loaded successfully. Returns FALSE on error.
14384
14142
  */
14385
- load_from_file(filename: string | null): boolean
14386
- load_from_resource(path: string | null): boolean
14143
+ load_from_file(filename: string): boolean
14144
+ load_from_resource(path: string): boolean
14387
14145
 
14388
14146
  // Own virtual methods of Mx-2.0.Mx.Style
14389
14147
 
@@ -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
@@ -15113,7 +14849,7 @@ interface TextureCache {
15113
14849
  * @param uri A URI or path to an image file
15114
14850
  * @returns %TRUE if the image exists, %FALSE otherwise
15115
14851
  */
15116
- contains(uri: string | null): boolean
14852
+ contains(uri: string): boolean
15117
14853
  /**
15118
14854
  * Checks whether there are any textures associated with the given URI by
15119
14855
  * the given identifier.
@@ -15121,14 +14857,14 @@ interface TextureCache {
15121
14857
  * @param ident A unique identifier
15122
14858
  * @returns %TRUE if the data exists, %FALSE otherwise
15123
14859
  */
15124
- contains_meta(uri: string | null, ident: any): boolean
14860
+ contains_meta(uri: string, ident: any): boolean
15125
14861
  /**
15126
14862
  * This is a wrapper around mx_texture_cache_get_texture() which returns
15127
14863
  * a ClutterActor.
15128
14864
  * @param uri A URI or path to a image file
15129
14865
  * @returns a newly created ClutterTexture
15130
14866
  */
15131
- get_actor(uri: string | null): Clutter.Actor
14867
+ get_actor(uri: string): Clutter.Actor
15132
14868
  /**
15133
14869
  * Create a #CoglHandle representing a texture of the specified image. Adds
15134
14870
  * the image to the cache if the image had not been previously loaded.
@@ -15137,7 +14873,7 @@ interface TextureCache {
15137
14873
  * @param uri A URI or path to an image file
15138
14874
  * @returns a #CoglHandle to the cached texture
15139
14875
  */
15140
- get_cogl_texture(uri: string | null): Cogl.Handle
14876
+ get_cogl_texture(uri: string): Cogl.Handle
15141
14877
  /**
15142
14878
  * Retrieves the #CoglHandle of the previously added image associated
15143
14879
  * with the given unique identifier.
@@ -15147,7 +14883,7 @@ interface TextureCache {
15147
14883
  * @param ident A unique identifier
15148
14884
  * @returns A #CoglHandle to a texture, with an added reference. %NULL if no image was found.
15149
14885
  */
15150
- get_meta_cogl_texture(uri: string | null, ident: any): Cogl.Handle
14886
+ get_meta_cogl_texture(uri: string, ident: any): Cogl.Handle
15151
14887
  /**
15152
14888
  * Create a new ClutterTexture using the previously added image associated
15153
14889
  * with the given unique identifier.
@@ -15157,7 +14893,7 @@ interface TextureCache {
15157
14893
  * @param ident A unique identifier
15158
14894
  * @returns A newly allocated #ClutterTexture, or %NULL if no image was found
15159
14895
  */
15160
- get_meta_texture(uri: string | null, ident: any): Clutter.Texture
14896
+ get_meta_texture(uri: string, ident: any): Clutter.Texture
15161
14897
  /**
15162
14898
  * Returns the number of items in the texture cache
15163
14899
  * @returns the current size of the cache
@@ -15171,7 +14907,7 @@ interface TextureCache {
15171
14907
  * @param uri A URI or path to a image file
15172
14908
  * @returns a newly created ClutterTexture
15173
14909
  */
15174
- get_texture(uri: string | null): Clutter.Texture
14910
+ get_texture(uri: string): Clutter.Texture
15175
14911
  /**
15176
14912
  * Inserts a texture into the texture cache. This can be useful if you
15177
14913
  * want to cache a texture from a custom or unhandled URI type, or you
@@ -15182,7 +14918,7 @@ interface TextureCache {
15182
14918
  * @param uri A URI or local file path
15183
14919
  * @param texture A #CoglHandle to a texture
15184
14920
  */
15185
- insert(uri: string | null, texture: Cogl.Handle): void
14921
+ insert(uri: string, texture: Cogl.Handle): void
15186
14922
  /**
15187
14923
  * Inserts a texture that's associated with a URI into the cache.
15188
14924
  * If the metadata already exists for this URI, it will be replaced.
@@ -15194,13 +14930,13 @@ interface TextureCache {
15194
14930
  * @param texture A #CoglHandle to a texture
15195
14931
  * @param destroy_func An optional destruction function for `ident`
15196
14932
  */
15197
- insert_meta(uri: string | null, ident: any, texture: Cogl.Handle, destroy_func: GLib.DestroyNotify): void
15198
- load_cache(filename: string | null): void
14933
+ insert_meta(uri: string, ident: any, texture: Cogl.Handle, destroy_func: GLib.DestroyNotify): void
14934
+ load_cache(filename: string): void
15199
14935
 
15200
14936
  // Own virtual methods of Mx-2.0.Mx.TextureCache
15201
14937
 
15202
14938
  vfunc_error_loading(error: GLib.Error): void
15203
- vfunc_loaded(uri: string | null, texture: Clutter.Texture): void
14939
+ vfunc_loaded(uri: string, texture: Clutter.Texture): void
15204
14940
 
15205
14941
  // Class property signals of Mx-2.0.Mx.TextureCache
15206
14942
 
@@ -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
@@ -16393,7 +16123,7 @@ interface Tooltip extends Atk.ImplementorIface, Clutter.Animatable, Clutter.Cont
16393
16123
  * Get the text displayed on the tooltip
16394
16124
  * @returns the text for the tooltip. This must not be freed by the application
16395
16125
  */
16396
- get_text(): string | null
16126
+ get_text(): string
16397
16127
  /**
16398
16128
  * Retrieve the area on the stage that the tooltip currently applies to
16399
16129
  * @returns the #ClutterGeometry, owned by the tooltip which must not be freed by the application.
@@ -16407,7 +16137,7 @@ interface Tooltip extends Atk.ImplementorIface, Clutter.Animatable, Clutter.Cont
16407
16137
  * Sets the text displayed on the tooltip
16408
16138
  * @param text text to set the label to
16409
16139
  */
16410
- set_text(text: string | null): void
16140
+ set_text(text: string): void
16411
16141
  /**
16412
16142
  * Set the area on the stage that the tooltip applies to.
16413
16143
  * @param area A #ClutterGeometry
@@ -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
  */
@@ -17260,7 +16970,7 @@ interface Widget extends Atk.ImplementorIface, Clutter.Animatable, Clutter.Conta
17260
16970
  * Get the current tooltip string
17261
16971
  * @returns The current tooltip string, owned by the #MxWidget
17262
16972
  */
17263
- get_tooltip_text(): string | null
16973
+ get_tooltip_text(): string
17264
16974
  /**
17265
16975
  * Hide the tooltip for `widget`
17266
16976
  */
@@ -17299,7 +17009,7 @@ interface Widget extends Atk.ImplementorIface, Clutter.Animatable, Clutter.Conta
17299
17009
  * %FALSE.
17300
17010
  * @param text text to set as the tooltip
17301
17011
  */
17302
- set_tooltip_text(text: string | null): void
17012
+ set_tooltip_text(text: string): void
17303
17013
  /**
17304
17014
  * Show the tooltip for `widget`
17305
17015
  */
@@ -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
@@ -17705,7 +17401,7 @@ interface Window {
17705
17401
  * set, or the icon was set with mx_window_set_icon_from_cogl_texture().
17706
17402
  * @returns The window icon name, or %NULL
17707
17403
  */
17708
- get_icon_name(): string | null
17404
+ get_icon_name(): string
17709
17405
  /**
17710
17406
  * Determines if the window is in small-screen mode.
17711
17407
  * See mx_window_set_small_screen().
@@ -17716,7 +17412,7 @@ interface Window {
17716
17412
  * Retrieves the title used for the window.
17717
17413
  * @returns The title used for the window
17718
17414
  */
17719
- get_title(): string | null
17415
+ get_title(): string
17720
17416
  /**
17721
17417
  * Retrieves the toolbar associated with the window.
17722
17418
  * @returns A #MxToolbar
@@ -17794,7 +17490,7 @@ interface Window {
17794
17490
  * window-system specific.
17795
17491
  * @param title A string to use for the window title name
17796
17492
  */
17797
- set_title(title: string | null): void
17493
+ set_title(title: string): void
17798
17494
  /**
17799
17495
  * Sets the toolbar associated with the window.
17800
17496
  * @param toolbar
@@ -18085,7 +17781,7 @@ class BorderImage {
18085
17781
 
18086
17782
  // Constructors of Mx-2.0.Mx.BorderImage
18087
17783
 
18088
- static set_from_string(value: any, str: string | null, filename: string | null): void
17784
+ static set_from_string(value: any, str: string, filename: string): void
18089
17785
  }
18090
17786
 
18091
17787
  interface BoxLayoutChildClass {
@@ -19024,10 +18720,10 @@ interface StylableIface {
19024
18720
 
19025
18721
  get_style: (stylable: Stylable) => Style
19026
18722
  set_style: (stylable: Stylable, style: Style) => void
19027
- get_style_class: (stylable: Stylable) => string | null
19028
- set_style_class: (stylable: Stylable, style_class: string | null) => void
19029
- get_style_pseudo_class: (stylable: Stylable) => string | null
19030
- set_style_pseudo_class: (stylable: Stylable, pseudo_class: string | null) => void
18723
+ get_style_class: (stylable: Stylable) => string
18724
+ set_style_class: (stylable: Stylable, style_class: string) => void
18725
+ get_style_pseudo_class: (stylable: Stylable) => string
18726
+ set_style_pseudo_class: (stylable: Stylable, pseudo_class: string) => void
19031
18727
  style_changed: (stylable: Stylable, flags: StyleChangedFlags) => void
19032
18728
  }
19033
18729
 
@@ -19166,7 +18862,7 @@ interface TextureCacheClass {
19166
18862
  // Own fields of Mx-2.0.Mx.TextureCacheClass
19167
18863
 
19168
18864
  parent_class: GObject.ObjectClass
19169
- loaded: (self: TextureCache, uri: string | null, texture: Clutter.Texture) => void
18865
+ loaded: (self: TextureCache, uri: string, texture: Clutter.Texture) => void
19170
18866
  error_loading: (self: TextureCache, error: GLib.Error) => void
19171
18867
  }
19172
18868