@girs/mx-1.0 1.4.7-3.2.6 → 1.4.7-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-1.0.d.ts CHANGED
@@ -264,10 +264,10 @@ const VERSION_HEX: number
264
264
  * The full version of the Mx library, in string form (suited for
265
265
  * string concatenation)
266
266
  */
267
- const VERSION_S: string | null
267
+ const VERSION_S: string
268
268
  function actor_box_clamp_to_pixels(box: Clutter.ActorBox): void
269
269
  function allocate_align_fill(child: Clutter.Actor, childbox: Clutter.ActorBox, x_alignment: Align, y_alignment: Align, x_fill: boolean, y_fill: boolean): void
270
- function border_image_set_from_string(value: any, str: string | null, filename: string | null): void
270
+ function border_image_set_from_string(value: any, str: string, filename: string): void
271
271
  /**
272
272
  * Transforms a focus direction to a focus hint. This is a convenience
273
273
  * function for actors that implement the #MxFocusable interface, to
@@ -285,7 +285,7 @@ function border_image_set_from_string(value: any, str: string | null, filename:
285
285
  * @returns A #MxFocusHint
286
286
  */
287
287
  function focus_hint_from_direction(direction: FocusDirection): FocusHint
288
- function font_weight_set_from_string(value: any, str: string | null): void
288
+ function font_weight_set_from_string(value: any, str: string): void
289
289
  function image_error_quark(): GLib.Quark
290
290
  /**
291
291
  * Initializes internationalization support for Mx. If MxApplication is
@@ -316,7 +316,7 @@ interface ActionCallbackFunc {
316
316
  * @param text text from the clipboard
317
317
  */
318
318
  interface ClipboardCallbackFunc {
319
- (clipboard: Clipboard, text: string | null): void
319
+ (clipboard: Clipboard, text: string): void
320
320
  }
321
321
  module Draggable {
322
322
 
@@ -351,9 +351,6 @@ module Draggable {
351
351
  // Own constructor properties of Mx-1.0.Mx.Draggable
352
352
 
353
353
  axis?: DragAxis | null
354
- drag_actor?: Clutter.Actor | null
355
- drag_enabled?: boolean | null
356
- drag_threshold?: number | null
357
354
  dragActor?: Clutter.Actor | null
358
355
  dragEnabled?: boolean | null
359
356
  dragThreshold?: number | null
@@ -366,11 +363,8 @@ interface Draggable extends Clutter.Actor {
366
363
  // Own properties of Mx-1.0.Mx.Draggable
367
364
 
368
365
  axis: DragAxis
369
- drag_actor: Clutter.Actor
370
366
  dragActor: Clutter.Actor
371
- drag_enabled: boolean
372
367
  dragEnabled: boolean
373
- drag_threshold: number
374
368
  dragThreshold: number
375
369
 
376
370
  // Owm methods of Mx-1.0.Mx.Draggable
@@ -724,7 +718,6 @@ module Droppable {
724
718
 
725
719
  // Own constructor properties of Mx-1.0.Mx.Droppable
726
720
 
727
- drop_enabled?: boolean | null
728
721
  dropEnabled?: boolean | null
729
722
  }
730
723
 
@@ -734,7 +727,6 @@ interface Droppable extends Clutter.Actor {
734
727
 
735
728
  // Own properties of Mx-1.0.Mx.Droppable
736
729
 
737
- drop_enabled: boolean
738
730
  dropEnabled: boolean
739
731
 
740
732
  // Owm methods of Mx-1.0.Mx.Droppable
@@ -1170,8 +1162,6 @@ module Scrollable {
1170
1162
 
1171
1163
  // Own constructor properties of Mx-1.0.Mx.Scrollable
1172
1164
 
1173
- horizontal_adjustment?: Adjustment | null
1174
- vertical_adjustment?: Adjustment | null
1175
1165
  horizontalAdjustment?: Adjustment | null
1176
1166
  verticalAdjustment?: Adjustment | null
1177
1167
  }
@@ -1182,9 +1172,7 @@ interface Scrollable {
1182
1172
 
1183
1173
  // Own properties of Mx-1.0.Mx.Scrollable
1184
1174
 
1185
- horizontal_adjustment: Adjustment
1186
1175
  horizontalAdjustment: Adjustment
1187
- vertical_adjustment: Adjustment
1188
1176
  verticalAdjustment: Adjustment
1189
1177
 
1190
1178
  // Owm methods of Mx-1.0.Mx.Scrollable
@@ -1256,8 +1244,6 @@ module Stylable {
1256
1244
  // Own constructor properties of Mx-1.0.Mx.Stylable
1257
1245
 
1258
1246
  style?: Style | null
1259
- style_class?: string | null
1260
- style_pseudo_class?: string | null
1261
1247
  styleClass?: string | null
1262
1248
  stylePseudoClass?: string | null
1263
1249
  }
@@ -1269,9 +1255,7 @@ interface Stylable {
1269
1255
  // Own properties of Mx-1.0.Mx.Stylable
1270
1256
 
1271
1257
  style: Style
1272
- style_class: string | null
1273
1258
  styleClass: string | null
1274
- style_pseudo_class: string | null
1275
1259
  stylePseudoClass: string | null
1276
1260
 
1277
1261
  // Owm methods of Mx-1.0.Mx.Stylable
@@ -1284,20 +1268,20 @@ interface Stylable {
1284
1268
  * @param property_name the name of the property to find
1285
1269
  * @returns a #GParamSpec for the given property, or %NULL if no property with that name was found
1286
1270
  */
1287
- find_property(property_name: string | null): GObject.ParamSpec
1271
+ find_property(property_name: string): GObject.ParamSpec
1288
1272
  /**
1289
1273
  * Query `stylable` for the default value of property `property_name` and
1290
1274
  * fill `value_out` with the result.
1291
1275
  * @param property_name name of the property to query
1292
1276
  * @returns %TRUE if property @property_name exists and the default value has been returned.
1293
1277
  */
1294
- get_default_value(property_name: string | null): [ /* returnType */ boolean, /* value_out */ any ]
1278
+ get_default_value(property_name: string): [ /* returnType */ boolean, /* value_out */ any ]
1295
1279
  /**
1296
1280
  * Retrieves the value of `property_name` for `stylable,` and puts it
1297
1281
  * into `value`.
1298
1282
  * @param property_name the name of the property
1299
1283
  */
1300
- get_property(property_name: string | null): /* value */ any
1284
+ get_property(property_name: string): /* value */ any
1301
1285
 
1302
1286
  // Overloads of get_property
1303
1287
 
@@ -1321,7 +1305,7 @@ interface Stylable {
1321
1305
  * @param property_name the name of the property to get
1322
1306
  * @param value return location for the property value
1323
1307
  */
1324
- get_property(property_name: string | null, value: any): void
1308
+ get_property(property_name: string, value: any): void
1325
1309
  /**
1326
1310
  * Retrieves the #MxStyle used by `stylable`. This function does not
1327
1311
  * alter the reference count of the returned object.
@@ -1332,13 +1316,13 @@ interface Stylable {
1332
1316
  * Get the current style class name
1333
1317
  * @returns the class name string. The string is owned by the #MxWidget and should not be modified or freed.
1334
1318
  */
1335
- get_style_class(): string | null
1319
+ get_style_class(): string
1336
1320
  /**
1337
1321
  * Get the current style pseudo class. This can contain multiple pseudo class
1338
1322
  * names, separated by ':'.
1339
1323
  * @returns the pseudo class string. The string is owned by the #MxWidget and should not be modified or freed.
1340
1324
  */
1341
- get_style_pseudo_class(): string | null
1325
+ get_style_pseudo_class(): string
1342
1326
  /**
1343
1327
  * Retrieves all the #GParamSpec<!-- -->s installed by `stylable`.
1344
1328
  * @returns an array of #GParamSpec<!-- -->s. Free it with g_free() when done.
@@ -1358,13 +1342,13 @@ interface Stylable {
1358
1342
  * Set the style class name
1359
1343
  * @param style_class a new style class string
1360
1344
  */
1361
- set_style_class(style_class: string | null): void
1345
+ set_style_class(style_class: string): void
1362
1346
  /**
1363
1347
  * Set the style pseudo class. The string can contain multiple pseudo class
1364
1348
  * names, separated by ':'.
1365
1349
  * @param pseudo_class a new pseudo class string
1366
1350
  */
1367
- set_style_pseudo_class(pseudo_class: string | null): void
1351
+ set_style_pseudo_class(pseudo_class: string): void
1368
1352
  /**
1369
1353
  * Emit the "style-changed" signal on `stylable` to notify it that one or more
1370
1354
  * of the style properties has changed.
@@ -1380,20 +1364,20 @@ interface Stylable {
1380
1364
  * #MxStylable:style-pseudo-class property.
1381
1365
  * @param new_class A pseudo-class name to add
1382
1366
  */
1383
- style_pseudo_class_add(new_class: string | null): void
1367
+ style_pseudo_class_add(new_class: string): void
1384
1368
  /**
1385
1369
  * Check if the given pseudo-class name is contained in the list of
1386
1370
  * set pseudo classes on this #MxStylable object.
1387
1371
  * @param pseudo_class A pseudo-class name
1388
1372
  * @returns %TRUE if the given pseudo-class is set, %FALSE otherwise
1389
1373
  */
1390
- style_pseudo_class_contains(pseudo_class: string | null): boolean
1374
+ style_pseudo_class_contains(pseudo_class: string): boolean
1391
1375
  /**
1392
1376
  * Remove the specified pseudo class name from the list of pseudo classes
1393
1377
  * contained in the #MxStylable:style-pseudo-class property.
1394
1378
  * @param remove_class A pseudo class name to remove
1395
1379
  */
1396
- style_pseudo_class_remove(remove_class: string | null): void
1380
+ style_pseudo_class_remove(remove_class: string): void
1397
1381
 
1398
1382
  // Own virtual methods of Mx-1.0.Mx.Stylable
1399
1383
 
@@ -1409,14 +1393,14 @@ interface Stylable {
1409
1393
  * @virtual
1410
1394
  * @returns the class name string. The string is owned by the #MxWidget and should not be modified or freed.
1411
1395
  */
1412
- vfunc_get_style_class(): string | null
1396
+ vfunc_get_style_class(): string
1413
1397
  /**
1414
1398
  * Get the current style pseudo class. This can contain multiple pseudo class
1415
1399
  * names, separated by ':'.
1416
1400
  * @virtual
1417
1401
  * @returns the pseudo class string. The string is owned by the #MxWidget and should not be modified or freed.
1418
1402
  */
1419
- vfunc_get_style_pseudo_class(): string | null
1403
+ vfunc_get_style_pseudo_class(): string
1420
1404
  /**
1421
1405
  * Sets `style` as the new #MxStyle to be used by `stylable`.
1422
1406
  *
@@ -1433,14 +1417,14 @@ interface Stylable {
1433
1417
  * @virtual
1434
1418
  * @param style_class a new style class string
1435
1419
  */
1436
- vfunc_set_style_class(style_class: string | null): void
1420
+ vfunc_set_style_class(style_class: string): void
1437
1421
  /**
1438
1422
  * Set the style pseudo class. The string can contain multiple pseudo class
1439
1423
  * names, separated by ':'.
1440
1424
  * @virtual
1441
1425
  * @param pseudo_class a new pseudo class string
1442
1426
  */
1443
- vfunc_set_style_pseudo_class(pseudo_class: string | null): void
1427
+ vfunc_set_style_pseudo_class(pseudo_class: string): void
1444
1428
  /**
1445
1429
  * Emit the "style-changed" signal on `stylable` to notify it that one or more
1446
1430
  * of the style properties has changed.
@@ -1555,9 +1539,8 @@ module Action {
1555
1539
  // Own constructor properties of Mx-1.0.Mx.Action
1556
1540
 
1557
1541
  active?: boolean | null
1558
- display_name?: string | null
1559
- icon?: string | null
1560
1542
  displayName?: string | null
1543
+ icon?: string | null
1561
1544
  }
1562
1545
 
1563
1546
  }
@@ -1567,7 +1550,6 @@ interface Action extends Gio.Action {
1567
1550
  // Own properties of Mx-1.0.Mx.Action
1568
1551
 
1569
1552
  active: boolean
1570
- display_name: string | null
1571
1553
  displayName: string | null
1572
1554
  icon: string | null
1573
1555
 
@@ -1582,17 +1564,17 @@ interface Action extends Gio.Action {
1582
1564
  * Get the display name of the action
1583
1565
  * @returns display-name of the action, owned by MxAction
1584
1566
  */
1585
- get_display_name(): string | null
1567
+ get_display_name(): string
1586
1568
  /**
1587
1569
  * Get the icon of the action
1588
1570
  * @returns icon of the action, owned by MxAction
1589
1571
  */
1590
- get_icon(): string | null
1572
+ get_icon(): string
1591
1573
  /**
1592
1574
  * Get the name of the action
1593
1575
  * @returns name of the action, owned by MxAction
1594
1576
  */
1595
- get_name(): string | null
1577
+ get_name(): string
1596
1578
  /**
1597
1579
  * Set the value of the active property
1598
1580
  * @param active the value to set
@@ -1602,17 +1584,17 @@ interface Action extends Gio.Action {
1602
1584
  * Set the name of the action to display to the user
1603
1585
  * @param name new display name to set
1604
1586
  */
1605
- set_display_name(name: string | null): void
1587
+ set_display_name(name: string): void
1606
1588
  /**
1607
1589
  * The icon to be used in a visual representation of an action.
1608
1590
  * @param name new icon to set
1609
1591
  */
1610
- set_icon(name: string | null): void
1592
+ set_icon(name: string): void
1611
1593
  /**
1612
1594
  * Set the name of the action
1613
1595
  * @param name new name to set
1614
1596
  */
1615
- set_name(name: string | null): void
1597
+ set_name(name: string): void
1616
1598
 
1617
1599
  // Own virtual methods of Mx-1.0.Mx.Action
1618
1600
 
@@ -1694,7 +1676,7 @@ class Action extends GObject.InitiallyUnowned {
1694
1676
  * @param activated_cb callback to connect to the activated signal
1695
1677
  * @returns a newly allocated #MxAction
1696
1678
  */
1697
- static new_full(name: string | null, display_name: string | null, activated_cb: ActionCallbackFunc | null): Action
1679
+ static new_full(name: string, display_name: string, activated_cb: ActionCallbackFunc | null): Action
1698
1680
  /**
1699
1681
  * Creates a new stateful action.
1700
1682
  *
@@ -1706,7 +1688,7 @@ class Action extends GObject.InitiallyUnowned {
1706
1688
  * @param state the initial state of the action
1707
1689
  * @returns a new #MxAction
1708
1690
  */
1709
- static new_stateful(name: string | null, parameter_type: GLib.VariantType | null, state: GLib.Variant): Action
1691
+ static new_stateful(name: string, parameter_type: GLib.VariantType | null, state: GLib.Variant): Action
1710
1692
  /**
1711
1693
  * Creates a new action with a parameter.
1712
1694
  *
@@ -1716,7 +1698,7 @@ class Action extends GObject.InitiallyUnowned {
1716
1698
  * @param parameter_type the type of parameter to the activate function
1717
1699
  * @returns a new #MxAction
1718
1700
  */
1719
- static new_with_parameter(name: string | null, parameter_type?: GLib.VariantType | null): Action
1701
+ static new_with_parameter(name: string, parameter_type?: GLib.VariantType | null): Action
1720
1702
  _init(config?: Action.ConstructorProperties): void
1721
1703
  }
1722
1704
 
@@ -1781,7 +1763,6 @@ module ActorManager {
1781
1763
  // Own constructor properties of Mx-1.0.Mx.ActorManager
1782
1764
 
1783
1765
  stage?: Clutter.Stage | null
1784
- time_slice?: number | null
1785
1766
  timeSlice?: number | null
1786
1767
  }
1787
1768
 
@@ -1791,10 +1772,8 @@ interface ActorManager {
1791
1772
 
1792
1773
  // Own properties of Mx-1.0.Mx.ActorManager
1793
1774
 
1794
- readonly n_operations: number
1795
1775
  readonly nOperations: number
1796
1776
  readonly stage: Clutter.Stage
1797
- time_slice: number
1798
1777
  timeSlice: number
1799
1778
 
1800
1779
  // Own fields of Mx-1.0.Mx.ActorManager
@@ -2005,18 +1984,14 @@ module Adjustment {
2005
1984
 
2006
1985
  // Own constructor properties of Mx-1.0.Mx.Adjustment
2007
1986
 
2008
- clamp_value?: boolean | null
1987
+ clampValue?: boolean | null
2009
1988
  elastic?: boolean | null
2010
1989
  lower?: number | null
2011
- page_increment?: number | null
2012
- page_size?: number | null
2013
- step_increment?: number | null
2014
- upper?: number | null
2015
- value?: number | null
2016
- clampValue?: boolean | null
2017
1990
  pageIncrement?: number | null
2018
1991
  pageSize?: number | null
2019
1992
  stepIncrement?: number | null
1993
+ upper?: number | null
1994
+ value?: number | null
2020
1995
  }
2021
1996
 
2022
1997
  }
@@ -2025,15 +2000,11 @@ interface Adjustment {
2025
2000
 
2026
2001
  // Own properties of Mx-1.0.Mx.Adjustment
2027
2002
 
2028
- clamp_value: boolean
2029
2003
  clampValue: boolean
2030
2004
  elastic: boolean
2031
2005
  lower: number
2032
- page_increment: number
2033
2006
  pageIncrement: number
2034
- page_size: number
2035
2007
  pageSize: number
2036
- step_increment: number
2037
2008
  stepIncrement: number
2038
2009
  upper: number
2039
2010
  value: number
@@ -2264,9 +2235,8 @@ module Application {
2264
2235
 
2265
2236
  // Own constructor properties of Mx-1.0.Mx.Application
2266
2237
 
2267
- application_name?: string | null
2268
- flags?: number | null
2269
2238
  applicationName?: string | null
2239
+ flags?: number | null
2270
2240
  }
2271
2241
 
2272
2242
  }
@@ -2275,7 +2245,6 @@ interface Application {
2275
2245
 
2276
2246
  // Own properties of Mx-1.0.Mx.Application
2277
2247
 
2278
- readonly application_name: string | null
2279
2248
  readonly applicationName: string | null
2280
2249
  readonly flags: number
2281
2250
 
@@ -2324,14 +2293,14 @@ interface Application {
2324
2293
  * Run the named action for the application.
2325
2294
  * @param name name of the action to invoke
2326
2295
  */
2327
- invoke_action(name: string | null): void
2296
+ invoke_action(name: string): void
2328
2297
  /**
2329
2298
  * Run the named action for the application, passing `variant` as the parameter
2330
2299
  * for the action.
2331
2300
  * @param name name of the action to invoke
2332
2301
  * @param variant parameter for the action
2333
2302
  */
2334
- invoke_action_with_parameter(name: string | null, variant: GLib.Variant): void
2303
+ invoke_action_with_parameter(name: string, variant: GLib.Variant): void
2335
2304
  /**
2336
2305
  * Query whether #MxApplication is running. This will also return #TRUE if the
2337
2306
  * given #MxApplication is single instance and there is an instance already
@@ -2348,7 +2317,7 @@ interface Application {
2348
2317
  * Remove the action with the specified name from the application.
2349
2318
  * @param name name of the action to remove
2350
2319
  */
2351
- remove_action(name: string | null): void
2320
+ remove_action(name: string): void
2352
2321
  /**
2353
2322
  * Remove the specified window from the application. This will cause the window
2354
2323
  * to be unreferenced and destroyed unless another reference is held on it.
@@ -2419,7 +2388,7 @@ class Application extends GObject.Object {
2419
2388
  * @param flags Application flags.
2420
2389
  * @returns the #MxApplication singleton.
2421
2390
  */
2422
- constructor(argv: string[] | null, name: string | null, flags: ApplicationFlags)
2391
+ constructor(argv: string[] | null, name: string, flags: ApplicationFlags)
2423
2392
  /**
2424
2393
  * Intialises everything needed to operate Clutter and use #MxApplication.
2425
2394
  * See clutter_init().
@@ -2429,7 +2398,7 @@ class Application extends GObject.Object {
2429
2398
  * @param flags Application flags.
2430
2399
  * @returns the #MxApplication singleton.
2431
2400
  */
2432
- static new(argv: string[] | null, name: string | null, flags: ApplicationFlags): Application
2401
+ static new(argv: string[] | null, name: string, flags: ApplicationFlags): Application
2433
2402
  _init(config?: Application.ConstructorProperties): void
2434
2403
  }
2435
2404
 
@@ -2445,22 +2414,6 @@ module Bin {
2445
2414
  * The child #ClutterActor of the #MxBin container.
2446
2415
  */
2447
2416
  child?: Clutter.Actor | null
2448
- /**
2449
- * The horizontal alignment of the #MxBin child.
2450
- */
2451
- x_align: any
2452
- /**
2453
- * Whether the child should fill the horizontal allocation
2454
- */
2455
- x_fill?: boolean | null
2456
- /**
2457
- * The vertical alignment of the #MxBin child.
2458
- */
2459
- y_align: any
2460
- /**
2461
- * Whether the child should fill the vertical allocation
2462
- */
2463
- y_fill?: boolean | null
2464
2417
  /**
2465
2418
  * The horizontal alignment of the #MxBin child.
2466
2419
  */
@@ -2489,34 +2442,18 @@ interface Bin extends Atk.ImplementorIface, Clutter.Animatable, Clutter.Containe
2489
2442
  * The child #ClutterActor of the #MxBin container.
2490
2443
  */
2491
2444
  child: Clutter.Actor
2492
- /**
2493
- * The horizontal alignment of the #MxBin child.
2494
- */
2495
- x_align: any
2496
2445
  /**
2497
2446
  * The horizontal alignment of the #MxBin child.
2498
2447
  */
2499
2448
  xAlign: any
2500
- /**
2501
- * Whether the child should fill the horizontal allocation
2502
- */
2503
- x_fill: boolean
2504
2449
  /**
2505
2450
  * Whether the child should fill the horizontal allocation
2506
2451
  */
2507
2452
  xFill: boolean
2508
- /**
2509
- * The vertical alignment of the #MxBin child.
2510
- */
2511
- y_align: any
2512
2453
  /**
2513
2454
  * The vertical alignment of the #MxBin child.
2514
2455
  */
2515
2456
  yAlign: any
2516
- /**
2517
- * Whether the child should fill the vertical allocation
2518
- */
2519
- y_fill: boolean
2520
2457
  /**
2521
2458
  * Whether the child should fill the vertical allocation
2522
2459
  */
@@ -2580,7 +2517,7 @@ interface Bin extends Atk.ImplementorIface, Clutter.Animatable, Clutter.Containe
2580
2517
  * into `value`.
2581
2518
  * @param property_name the name of the property
2582
2519
  */
2583
- get_property(property_name: string | null): /* value */ any
2520
+ get_property(property_name: string): /* value */ any
2584
2521
 
2585
2522
  // Overloads of get_property
2586
2523
 
@@ -2604,7 +2541,7 @@ interface Bin extends Atk.ImplementorIface, Clutter.Animatable, Clutter.Containe
2604
2541
  * @param property_name the name of the property to get
2605
2542
  * @param value return location for the property value
2606
2543
  */
2607
- get_property(property_name: string | null, value: any): void
2544
+ get_property(property_name: string, value: any): void
2608
2545
  /**
2609
2546
  * Gets a property of an object.
2610
2547
  *
@@ -2625,7 +2562,7 @@ interface Bin extends Atk.ImplementorIface, Clutter.Animatable, Clutter.Containe
2625
2562
  * @param property_name the name of the property to get
2626
2563
  * @param value return location for the property value
2627
2564
  */
2628
- get_property(property_name: string | null, value: any): void
2565
+ get_property(property_name: string, value: any): void
2629
2566
 
2630
2567
  // Class property signals of Mx-1.0.Mx.Bin
2631
2568
 
@@ -2936,12 +2873,10 @@ module BoxLayout {
2936
2873
 
2937
2874
  // Own constructor properties of Mx-1.0.Mx.BoxLayout
2938
2875
 
2939
- enable_animations?: boolean | null
2940
- orientation?: Orientation | null
2941
- scroll_to_focused?: boolean | null
2942
- spacing?: number | null
2943
2876
  enableAnimations?: boolean | null
2877
+ orientation?: Orientation | null
2944
2878
  scrollToFocused?: boolean | null
2879
+ spacing?: number | null
2945
2880
  }
2946
2881
 
2947
2882
  }
@@ -2950,10 +2885,8 @@ interface BoxLayout extends Atk.ImplementorIface, Clutter.Animatable, Clutter.Co
2950
2885
 
2951
2886
  // Own properties of Mx-1.0.Mx.BoxLayout
2952
2887
 
2953
- enable_animations: boolean
2954
2888
  enableAnimations: boolean
2955
2889
  orientation: Orientation
2956
- scroll_to_focused: boolean
2957
2890
  scrollToFocused: boolean
2958
2891
  spacing: number
2959
2892
 
@@ -3088,7 +3021,7 @@ interface BoxLayout extends Atk.ImplementorIface, Clutter.Animatable, Clutter.Co
3088
3021
  * into `value`.
3089
3022
  * @param property_name the name of the property
3090
3023
  */
3091
- get_property(property_name: string | null): /* value */ any
3024
+ get_property(property_name: string): /* value */ any
3092
3025
 
3093
3026
  // Overloads of get_property
3094
3027
 
@@ -3112,7 +3045,7 @@ interface BoxLayout extends Atk.ImplementorIface, Clutter.Animatable, Clutter.Co
3112
3045
  * @param property_name the name of the property to get
3113
3046
  * @param value return location for the property value
3114
3047
  */
3115
- get_property(property_name: string | null, value: any): void
3048
+ get_property(property_name: string, value: any): void
3116
3049
  /**
3117
3050
  * Gets a property of an object.
3118
3051
  *
@@ -3133,7 +3066,7 @@ interface BoxLayout extends Atk.ImplementorIface, Clutter.Animatable, Clutter.Co
3133
3066
  * @param property_name the name of the property to get
3134
3067
  * @param value return location for the property value
3135
3068
  */
3136
- get_property(property_name: string | null, value: any): void
3069
+ get_property(property_name: string, value: any): void
3137
3070
 
3138
3071
  // Class property signals of Mx-1.0.Mx.BoxLayout
3139
3072
 
@@ -3467,10 +3400,6 @@ module BoxLayoutChild {
3467
3400
  // Own constructor properties of Mx-1.0.Mx.BoxLayoutChild
3468
3401
 
3469
3402
  expand?: boolean | null
3470
- x_align?: Align | null
3471
- x_fill?: boolean | null
3472
- y_align?: Align | null
3473
- y_fill?: boolean | null
3474
3403
  xAlign?: Align | null
3475
3404
  xFill?: boolean | null
3476
3405
  yAlign?: Align | null
@@ -3484,13 +3413,9 @@ interface BoxLayoutChild {
3484
3413
  // Own properties of Mx-1.0.Mx.BoxLayoutChild
3485
3414
 
3486
3415
  expand: boolean
3487
- x_align: Align
3488
3416
  xAlign: Align
3489
- x_fill: boolean
3490
3417
  xFill: boolean
3491
- y_align: Align
3492
3418
  yAlign: Align
3493
- y_fill: boolean
3494
3419
  yFill: boolean
3495
3420
 
3496
3421
  // Class property signals of Mx-1.0.Mx.BoxLayoutChild
@@ -3553,20 +3478,14 @@ module Button {
3553
3478
  // Own constructor properties of Mx-1.0.Mx.Button
3554
3479
 
3555
3480
  action?: Action | null
3556
- icon_name?: string | null
3557
- icon_position?: Position | null
3558
- icon_size?: number | null
3559
- icon_visible?: boolean | null
3560
- is_toggle?: boolean | null
3561
- label?: string | null
3562
- label_visible?: boolean | null
3563
- toggled?: boolean | null
3564
3481
  iconName?: string | null
3565
3482
  iconPosition?: Position | null
3566
3483
  iconSize?: number | null
3567
3484
  iconVisible?: boolean | null
3568
3485
  isToggle?: boolean | null
3486
+ label?: string | null
3569
3487
  labelVisible?: boolean | null
3488
+ toggled?: boolean | null
3570
3489
  }
3571
3490
 
3572
3491
  }
@@ -3576,26 +3495,18 @@ interface Button extends Atk.ImplementorIface, Clutter.Animatable, Clutter.Conta
3576
3495
  // Own properties of Mx-1.0.Mx.Button
3577
3496
 
3578
3497
  action: Action
3579
- icon_name: string | null
3580
3498
  iconName: string | null
3581
- icon_position: Position
3582
3499
  iconPosition: Position
3583
- icon_size: number
3584
3500
  iconSize: number
3585
- icon_visible: boolean
3586
3501
  iconVisible: boolean
3587
- is_toggle: boolean
3588
3502
  isToggle: boolean
3589
3503
  label: string | null
3590
- label_visible: boolean
3591
3504
  labelVisible: boolean
3592
3505
  toggled: boolean
3593
3506
 
3594
3507
  // Conflicting properties
3595
3508
 
3596
- x_align: any
3597
3509
  xAlign: any
3598
- y_align: any
3599
3510
  yAlign: any
3600
3511
 
3601
3512
  // Owm methods of Mx-1.0.Mx.Button
@@ -3614,12 +3525,12 @@ interface Button extends Atk.ImplementorIface, Clutter.Animatable, Clutter.Conta
3614
3525
  * @param name the name of the action to retrieve
3615
3526
  * @returns a #ClutterAction for the given name, or %NULL. The returned #ClutterAction is owned by the actor and it should not be unreferenced directly
3616
3527
  */
3617
- get_action(name: string | null): Clutter.Action
3528
+ get_action(name: string): Clutter.Action
3618
3529
  /**
3619
3530
  * Get the icon-name being used on the button.
3620
3531
  * @returns the icon-name. This must not be freed by the application. %NULL if no icon has been set
3621
3532
  */
3622
- get_icon_name(): string | null
3533
+ get_icon_name(): string
3623
3534
  /**
3624
3535
  * Retrieves the icon's relative position to the text.
3625
3536
  * @returns A #MxPosition
@@ -3644,7 +3555,7 @@ interface Button extends Atk.ImplementorIface, Clutter.Animatable, Clutter.Conta
3644
3555
  * Get the text displayed on the button
3645
3556
  * @returns the text for the button. This must not be freed by the application
3646
3557
  */
3647
- get_label(): string | null
3558
+ get_label(): string
3648
3559
  /**
3649
3560
  * Retrieves the visibility of the text associated with the button's action.
3650
3561
  * @returns %TRUE if the text is visible, %FALSE otherwise
@@ -3695,7 +3606,7 @@ interface Button extends Atk.ImplementorIface, Clutter.Animatable, Clutter.Conta
3695
3606
  * Sets the text displayed on the button
3696
3607
  * @param text text to set the label to
3697
3608
  */
3698
- set_label(text: string | null): void
3609
+ set_label(text: string): void
3699
3610
  /**
3700
3611
  * Sets the visibility of the text associated with the button's action.
3701
3612
  * @param visible %TRUE if the text should be visible
@@ -3715,7 +3626,7 @@ interface Button extends Atk.ImplementorIface, Clutter.Animatable, Clutter.Conta
3715
3626
  * into `value`.
3716
3627
  * @param property_name the name of the property
3717
3628
  */
3718
- get_property(property_name: string | null): /* value */ any
3629
+ get_property(property_name: string): /* value */ any
3719
3630
 
3720
3631
  // Overloads of get_property
3721
3632
 
@@ -3739,7 +3650,7 @@ interface Button extends Atk.ImplementorIface, Clutter.Animatable, Clutter.Conta
3739
3650
  * @param property_name the name of the property to get
3740
3651
  * @param value return location for the property value
3741
3652
  */
3742
- get_property(property_name: string | null, value: any): void
3653
+ get_property(property_name: string, value: any): void
3743
3654
  /**
3744
3655
  * Gets a property of an object.
3745
3656
  *
@@ -3760,7 +3671,7 @@ interface Button extends Atk.ImplementorIface, Clutter.Animatable, Clutter.Conta
3760
3671
  * @param property_name the name of the property to get
3761
3672
  * @param value return location for the property value
3762
3673
  */
3763
- get_property(property_name: string | null, value: any): void
3674
+ get_property(property_name: string, value: any): void
3764
3675
 
3765
3676
  // Own virtual methods of Mx-1.0.Mx.Button
3766
3677
 
@@ -4116,7 +4027,7 @@ class Button extends Bin {
4116
4027
  * @param text text to set the label to
4117
4028
  * @returns a new #MxButton
4118
4029
  */
4119
- static new_with_label(text: string | null): Button
4030
+ static new_with_label(text: string): Button
4120
4031
  _init(config?: Button.ConstructorProperties): void
4121
4032
  }
4122
4033
 
@@ -4128,8 +4039,6 @@ module ButtonGroup {
4128
4039
 
4129
4040
  // Own constructor properties of Mx-1.0.Mx.ButtonGroup
4130
4041
 
4131
- active_button?: Button | null
4132
- allow_no_active?: boolean | null
4133
4042
  activeButton?: Button | null
4134
4043
  allowNoActive?: boolean | null
4135
4044
  }
@@ -4140,9 +4049,7 @@ interface ButtonGroup {
4140
4049
 
4141
4050
  // Own properties of Mx-1.0.Mx.ButtonGroup
4142
4051
 
4143
- active_button: Button
4144
4052
  activeButton: Button
4145
- allow_no_active: boolean
4146
4053
  allowNoActive: boolean
4147
4054
 
4148
4055
  // Own fields of Mx-1.0.Mx.ButtonGroup
@@ -4261,7 +4168,7 @@ interface Clipboard {
4261
4168
  * Sets text as the current contents of the clipboard.
4262
4169
  * @param text text to copy to the clipboard
4263
4170
  */
4264
- set_text(text: string | null): void
4171
+ set_text(text: string): void
4265
4172
 
4266
4173
  // Class property signals of Mx-1.0.Mx.Clipboard
4267
4174
 
@@ -4302,11 +4209,9 @@ module ComboBox {
4302
4209
 
4303
4210
  // Own constructor properties of Mx-1.0.Mx.ComboBox
4304
4211
 
4305
- active_icon_name?: string | null
4306
- active_text?: string | null
4307
- index?: number | null
4308
4212
  activeIconName?: string | null
4309
4213
  activeText?: string | null
4214
+ index?: number | null
4310
4215
  }
4311
4216
 
4312
4217
  }
@@ -4315,9 +4220,7 @@ interface ComboBox extends Atk.ImplementorIface, Clutter.Animatable, Clutter.Con
4315
4220
 
4316
4221
  // Own properties of Mx-1.0.Mx.ComboBox
4317
4222
 
4318
- active_icon_name: string | null
4319
4223
  activeIconName: string | null
4320
- active_text: string | null
4321
4224
  activeText: string | null
4322
4225
  index: number
4323
4226
 
@@ -4327,17 +4230,17 @@ interface ComboBox extends Atk.ImplementorIface, Clutter.Animatable, Clutter.Con
4327
4230
  * Append an item to the combo box list
4328
4231
  * @param text name of the item
4329
4232
  */
4330
- append_text(text: string | null): void
4233
+ append_text(text: string): void
4331
4234
  /**
4332
4235
  * Get the name of the icon displayed in the combo box
4333
4236
  * @returns the text string of the name of the displayed icon, owned by the combo box, or %NULL if there is no active icon.
4334
4237
  */
4335
- get_active_icon_name(): string | null
4238
+ get_active_icon_name(): string
4336
4239
  /**
4337
4240
  * Get the text displayed in the combo box
4338
4241
  * @returns the text string, owned by the combo box
4339
4242
  */
4340
- get_active_text(): string | null
4243
+ get_active_text(): string
4341
4244
  /**
4342
4245
  * Get the index of the last item selected
4343
4246
  * @returns gint
@@ -4348,19 +4251,19 @@ interface ComboBox extends Atk.ImplementorIface, Clutter.Animatable, Clutter.Con
4348
4251
  * @param position zero indexed position to insert the item at
4349
4252
  * @param text name of the item
4350
4253
  */
4351
- insert_text(position: number, text: string | null): void
4254
+ insert_text(position: number, text: string): void
4352
4255
  /**
4353
4256
  * Insert an item with text and an icon into the combo box list.
4354
4257
  * @param position zero indexed position to insert the item at
4355
4258
  * @param text name of the item
4356
4259
  * @param icon name of an icon from the icon theme
4357
4260
  */
4358
- insert_text_with_icon(position: number, text: string | null, icon: string | null): void
4261
+ insert_text_with_icon(position: number, text: string, icon: string): void
4359
4262
  /**
4360
4263
  * Prepend an item to the combo box list
4361
4264
  * @param text name of the item
4362
4265
  */
4363
- prepend_text(text: string | null): void
4266
+ prepend_text(text: string): void
4364
4267
  /**
4365
4268
  * Remove all the items of `box`
4366
4269
  */
@@ -4379,7 +4282,7 @@ interface ComboBox extends Atk.ImplementorIface, Clutter.Animatable, Clutter.Con
4379
4282
  * Set the text displayed in the combo box
4380
4283
  * @param text text to display
4381
4284
  */
4382
- set_active_text(text: string | null): void
4285
+ set_active_text(text: string): void
4383
4286
  /**
4384
4287
  * Set the current combo box text from the item at `index` in the list.
4385
4288
  * @param index the index of the list item to set
@@ -4393,7 +4296,7 @@ interface ComboBox extends Atk.ImplementorIface, Clutter.Animatable, Clutter.Con
4393
4296
  * into `value`.
4394
4297
  * @param property_name the name of the property
4395
4298
  */
4396
- get_property(property_name: string | null): /* value */ any
4299
+ get_property(property_name: string): /* value */ any
4397
4300
 
4398
4301
  // Overloads of get_property
4399
4302
 
@@ -4417,7 +4320,7 @@ interface ComboBox extends Atk.ImplementorIface, Clutter.Animatable, Clutter.Con
4417
4320
  * @param property_name the name of the property to get
4418
4321
  * @param value return location for the property value
4419
4322
  */
4420
- get_property(property_name: string | null, value: any): void
4323
+ get_property(property_name: string, value: any): void
4421
4324
  /**
4422
4325
  * Gets a property of an object.
4423
4326
  *
@@ -4438,7 +4341,7 @@ interface ComboBox extends Atk.ImplementorIface, Clutter.Animatable, Clutter.Con
4438
4341
  * @param property_name the name of the property to get
4439
4342
  * @param value return location for the property value
4440
4343
  */
4441
- get_property(property_name: string | null, value: any): void
4344
+ get_property(property_name: string, value: any): void
4442
4345
 
4443
4346
  // Class property signals of Mx-1.0.Mx.ComboBox
4444
4347
 
@@ -4762,9 +4665,8 @@ module DeformBowTie {
4762
4665
 
4763
4666
  // Own constructor properties of Mx-1.0.Mx.DeformBowTie
4764
4667
 
4765
- flip_back?: boolean | null
4766
- period?: number | null
4767
4668
  flipBack?: boolean | null
4669
+ period?: number | null
4768
4670
  }
4769
4671
 
4770
4672
  }
@@ -4773,7 +4675,6 @@ interface DeformBowTie extends Atk.ImplementorIface, Clutter.Animatable, Clutter
4773
4675
 
4774
4676
  // Own properties of Mx-1.0.Mx.DeformBowTie
4775
4677
 
4776
- flip_back: boolean
4777
4678
  flipBack: boolean
4778
4679
  period: number
4779
4680
 
@@ -4796,7 +4697,7 @@ interface DeformBowTie extends Atk.ImplementorIface, Clutter.Animatable, Clutter
4796
4697
  * into `value`.
4797
4698
  * @param property_name the name of the property
4798
4699
  */
4799
- get_property(property_name: string | null): /* value */ any
4700
+ get_property(property_name: string): /* value */ any
4800
4701
 
4801
4702
  // Overloads of get_property
4802
4703
 
@@ -4820,7 +4721,7 @@ interface DeformBowTie extends Atk.ImplementorIface, Clutter.Animatable, Clutter
4820
4721
  * @param property_name the name of the property to get
4821
4722
  * @param value return location for the property value
4822
4723
  */
4823
- get_property(property_name: string | null, value: any): void
4724
+ get_property(property_name: string, value: any): void
4824
4725
  /**
4825
4726
  * Gets a property of an object.
4826
4727
  *
@@ -4841,7 +4742,7 @@ interface DeformBowTie extends Atk.ImplementorIface, Clutter.Animatable, Clutter
4841
4742
  * @param property_name the name of the property to get
4842
4743
  * @param value return location for the property value
4843
4744
  */
4844
- get_property(property_name: string | null, value: any): void
4745
+ get_property(property_name: string, value: any): void
4845
4746
 
4846
4747
  // Class property signals of Mx-1.0.Mx.DeformBowTie
4847
4748
 
@@ -5200,7 +5101,7 @@ interface DeformPageTurn extends Atk.ImplementorIface, Clutter.Animatable, Clutt
5200
5101
  * into `value`.
5201
5102
  * @param property_name the name of the property
5202
5103
  */
5203
- get_property(property_name: string | null): /* value */ any
5104
+ get_property(property_name: string): /* value */ any
5204
5105
 
5205
5106
  // Overloads of get_property
5206
5107
 
@@ -5224,7 +5125,7 @@ interface DeformPageTurn extends Atk.ImplementorIface, Clutter.Animatable, Clutt
5224
5125
  * @param property_name the name of the property to get
5225
5126
  * @param value return location for the property value
5226
5127
  */
5227
- get_property(property_name: string | null, value: any): void
5128
+ get_property(property_name: string, value: any): void
5228
5129
  /**
5229
5130
  * Gets a property of an object.
5230
5131
  *
@@ -5245,7 +5146,7 @@ interface DeformPageTurn extends Atk.ImplementorIface, Clutter.Animatable, Clutt
5245
5146
  * @param property_name the name of the property to get
5246
5147
  * @param value return location for the property value
5247
5148
  */
5248
- get_property(property_name: string | null, value: any): void
5149
+ get_property(property_name: string, value: any): void
5249
5150
 
5250
5151
  // Class property signals of Mx-1.0.Mx.DeformPageTurn
5251
5152
 
@@ -5573,8 +5474,6 @@ module DeformTexture {
5573
5474
 
5574
5475
  back?: Clutter.Texture | null
5575
5476
  front?: Clutter.Texture | null
5576
- tiles_x?: number | null
5577
- tiles_y?: number | null
5578
5477
  tilesX?: number | null
5579
5478
  tilesY?: number | null
5580
5479
  }
@@ -5587,9 +5486,7 @@ interface DeformTexture extends Atk.ImplementorIface, Clutter.Animatable, Clutte
5587
5486
 
5588
5487
  back: Clutter.Texture
5589
5488
  front: Clutter.Texture
5590
- tiles_x: number
5591
5489
  tilesX: number
5592
- tiles_y: number
5593
5490
  tilesY: number
5594
5491
 
5595
5492
  // Own fields of Mx-1.0.Mx.DeformTexture
@@ -5634,7 +5531,7 @@ interface DeformTexture extends Atk.ImplementorIface, Clutter.Animatable, Clutte
5634
5531
  * into `value`.
5635
5532
  * @param property_name the name of the property
5636
5533
  */
5637
- get_property(property_name: string | null): /* value */ any
5534
+ get_property(property_name: string): /* value */ any
5638
5535
 
5639
5536
  // Overloads of get_property
5640
5537
 
@@ -5658,7 +5555,7 @@ interface DeformTexture extends Atk.ImplementorIface, Clutter.Animatable, Clutte
5658
5555
  * @param property_name the name of the property to get
5659
5556
  * @param value return location for the property value
5660
5557
  */
5661
- get_property(property_name: string | null, value: any): void
5558
+ get_property(property_name: string, value: any): void
5662
5559
  /**
5663
5560
  * Gets a property of an object.
5664
5561
  *
@@ -5679,7 +5576,7 @@ interface DeformTexture extends Atk.ImplementorIface, Clutter.Animatable, Clutte
5679
5576
  * @param property_name the name of the property to get
5680
5577
  * @param value return location for the property value
5681
5578
  */
5682
- get_property(property_name: string | null, value: any): void
5579
+ get_property(property_name: string, value: any): void
5683
5580
 
5684
5581
  // Own virtual methods of Mx-1.0.Mx.DeformTexture
5685
5582
 
@@ -6038,7 +5935,7 @@ interface DeformWaves extends Atk.ImplementorIface, Clutter.Animatable, Clutter.
6038
5935
  * into `value`.
6039
5936
  * @param property_name the name of the property
6040
5937
  */
6041
- get_property(property_name: string | null): /* value */ any
5938
+ get_property(property_name: string): /* value */ any
6042
5939
 
6043
5940
  // Overloads of get_property
6044
5941
 
@@ -6062,7 +5959,7 @@ interface DeformWaves extends Atk.ImplementorIface, Clutter.Animatable, Clutter.
6062
5959
  * @param property_name the name of the property to get
6063
5960
  * @param value return location for the property value
6064
5961
  */
6065
- get_property(property_name: string | null, value: any): void
5962
+ get_property(property_name: string, value: any): void
6066
5963
  /**
6067
5964
  * Gets a property of an object.
6068
5965
  *
@@ -6083,7 +5980,7 @@ interface DeformWaves extends Atk.ImplementorIface, Clutter.Animatable, Clutter.
6083
5980
  * @param property_name the name of the property to get
6084
5981
  * @param value return location for the property value
6085
5982
  */
6086
- get_property(property_name: string | null, value: any): void
5983
+ get_property(property_name: string, value: any): void
6087
5984
 
6088
5985
  // Class property signals of Mx-1.0.Mx.DeformWaves
6089
5986
 
@@ -6417,9 +6314,7 @@ interface Dialog extends Atk.ImplementorIface, Clutter.Animatable, Clutter.Conta
6417
6314
 
6418
6315
  // Conflicting properties
6419
6316
 
6420
- x_align: any
6421
6317
  xAlign: any
6422
- y_align: any
6423
6318
  yAlign: any
6424
6319
 
6425
6320
  // Owm methods of Mx-1.0.Mx.Dialog
@@ -6485,7 +6380,7 @@ interface Dialog extends Atk.ImplementorIface, Clutter.Animatable, Clutter.Conta
6485
6380
  * into `value`.
6486
6381
  * @param property_name the name of the property
6487
6382
  */
6488
- get_property(property_name: string | null): /* value */ any
6383
+ get_property(property_name: string): /* value */ any
6489
6384
 
6490
6385
  // Overloads of get_property
6491
6386
 
@@ -6509,7 +6404,7 @@ interface Dialog extends Atk.ImplementorIface, Clutter.Animatable, Clutter.Conta
6509
6404
  * @param property_name the name of the property to get
6510
6405
  * @param value return location for the property value
6511
6406
  */
6512
- get_property(property_name: string | null, value: any): void
6407
+ get_property(property_name: string, value: any): void
6513
6408
  /**
6514
6409
  * Gets a property of an object.
6515
6410
  *
@@ -6530,7 +6425,7 @@ interface Dialog extends Atk.ImplementorIface, Clutter.Animatable, Clutter.Conta
6530
6425
  * @param property_name the name of the property to get
6531
6426
  * @param value return location for the property value
6532
6427
  */
6533
- get_property(property_name: string | null, value: any): void
6428
+ get_property(property_name: string, value: any): void
6534
6429
 
6535
6430
  // Class property signals of Mx-1.0.Mx.Dialog
6536
6431
 
@@ -6871,17 +6766,12 @@ module Entry {
6871
6766
 
6872
6767
  // Own constructor properties of Mx-1.0.Mx.Entry
6873
6768
 
6874
- hint_text?: string | null
6875
- icon_highlight_suffix?: string | null
6876
- password_char?: number | null
6877
- primary_icon_tooltip_text?: string | null
6878
- secondary_icon_tooltip_text?: string | null
6879
- text?: string | null
6880
6769
  hintText?: string | null
6881
6770
  iconHighlightSuffix?: string | null
6882
6771
  passwordChar?: number | null
6883
6772
  primaryIconTooltipText?: string | null
6884
6773
  secondaryIconTooltipText?: string | null
6774
+ text?: string | null
6885
6775
  }
6886
6776
 
6887
6777
  }
@@ -6890,17 +6780,11 @@ interface Entry extends Atk.ImplementorIface, Clutter.Animatable, Clutter.Contai
6890
6780
 
6891
6781
  // Own properties of Mx-1.0.Mx.Entry
6892
6782
 
6893
- readonly clutter_text: Clutter.Text
6894
6783
  readonly clutterText: Clutter.Text
6895
- hint_text: string | null
6896
6784
  hintText: string | null
6897
- icon_highlight_suffix: string | null
6898
6785
  iconHighlightSuffix: string | null
6899
- password_char: number
6900
6786
  passwordChar: number
6901
- primary_icon_tooltip_text: string | null
6902
6787
  primaryIconTooltipText: string | null
6903
- secondary_icon_tooltip_text: string | null
6904
6788
  secondaryIconTooltipText: string | null
6905
6789
  text: string | null
6906
6790
 
@@ -6915,13 +6799,13 @@ interface Entry extends Atk.ImplementorIface, Clutter.Animatable, Clutter.Contai
6915
6799
  * Gets the text that is displayed when the entry is empty and unfocused
6916
6800
  * @returns the current value of the hint property. This string is owned by the #MxEntry and should not be freed or modified.
6917
6801
  */
6918
- get_hint_text(): string | null
6802
+ get_hint_text(): string
6919
6803
  /**
6920
6804
  * Get the suffix appended to the filename to use for the highlighted version
6921
6805
  * of the icon.
6922
6806
  * @returns the highlight filename suffix. This string is owned by the #MxEntry and should not be freed or modified.
6923
6807
  */
6924
- get_icon_highlight_suffix(): string | null
6808
+ get_icon_highlight_suffix(): string
6925
6809
  /**
6926
6810
  * Gets the character to display instead of the text.
6927
6811
  * @returns a character, or 0 if input should not be hidden.
@@ -6931,14 +6815,14 @@ interface Entry extends Atk.ImplementorIface, Clutter.Animatable, Clutter.Contai
6931
6815
  * Get the text displayed on the entry
6932
6816
  * @returns the text for the entry. This must not be freed by the application
6933
6817
  */
6934
- get_text(): string | null
6818
+ get_text(): string
6935
6819
  /**
6936
6820
  * Sets the text to display when the entry is empty and unfocused. When the
6937
6821
  * entry is displaying the hint, it has a pseudo class of "indeterminate".
6938
6822
  * A value of NULL unsets the hint.
6939
6823
  * @param text text to set as the entry hint
6940
6824
  */
6941
- set_hint_text(text: string | null): void
6825
+ set_hint_text(text: string): void
6942
6826
  /**
6943
6827
  * Sets the suffix appended to the filename to use for the highlighted version
6944
6828
  * of the icon. e.g. if you have set your primay icon to "primary-icon.png"
@@ -6946,7 +6830,7 @@ interface Entry extends Atk.ImplementorIface, Clutter.Animatable, Clutter.Contai
6946
6830
  * "primary-icon-highlight.png"
6947
6831
  * @param suffix the suffix to append to the filename for the highlight version
6948
6832
  */
6949
- set_icon_highlight_suffix(suffix: string | null): void
6833
+ set_icon_highlight_suffix(suffix: string): void
6950
6834
  /**
6951
6835
  * Sets the character to display instead of the text. Use 0 to display
6952
6836
  * the actual text.
@@ -6957,19 +6841,19 @@ interface Entry extends Atk.ImplementorIface, Clutter.Animatable, Clutter.Contai
6957
6841
  * Set the primary icon of the entry to the given filename
6958
6842
  * @param filename filename of an icon
6959
6843
  */
6960
- set_primary_icon_from_file(filename: string | null): void
6961
- set_primary_icon_tooltip_text(text: string | null): void
6844
+ set_primary_icon_from_file(filename: string): void
6845
+ set_primary_icon_tooltip_text(text: string): void
6962
6846
  /**
6963
6847
  * Set the primary icon of the entry to the given filename
6964
6848
  * @param filename filename of an icon
6965
6849
  */
6966
- set_secondary_icon_from_file(filename: string | null): void
6967
- set_secondary_icon_tooltip_text(text: string | null): void
6850
+ set_secondary_icon_from_file(filename: string): void
6851
+ set_secondary_icon_tooltip_text(text: string): void
6968
6852
  /**
6969
6853
  * Sets the text displayed on the entry
6970
6854
  * @param text text to set the entry to
6971
6855
  */
6972
- set_text(text: string | null): void
6856
+ set_text(text: string): void
6973
6857
 
6974
6858
  // Conflicting methods
6975
6859
 
@@ -6978,7 +6862,7 @@ interface Entry extends Atk.ImplementorIface, Clutter.Animatable, Clutter.Contai
6978
6862
  * into `value`.
6979
6863
  * @param property_name the name of the property
6980
6864
  */
6981
- get_property(property_name: string | null): /* value */ any
6865
+ get_property(property_name: string): /* value */ any
6982
6866
 
6983
6867
  // Overloads of get_property
6984
6868
 
@@ -7002,7 +6886,7 @@ interface Entry extends Atk.ImplementorIface, Clutter.Animatable, Clutter.Contai
7002
6886
  * @param property_name the name of the property to get
7003
6887
  * @param value return location for the property value
7004
6888
  */
7005
- get_property(property_name: string | null, value: any): void
6889
+ get_property(property_name: string, value: any): void
7006
6890
  /**
7007
6891
  * Gets a property of an object.
7008
6892
  *
@@ -7023,7 +6907,7 @@ interface Entry extends Atk.ImplementorIface, Clutter.Animatable, Clutter.Contai
7023
6907
  * @param property_name the name of the property to get
7024
6908
  * @param value return location for the property value
7025
6909
  */
7026
- get_property(property_name: string | null, value: any): void
6910
+ get_property(property_name: string, value: any): void
7027
6911
 
7028
6912
  // Own virtual methods of Mx-1.0.Mx.Entry
7029
6913
 
@@ -7368,7 +7252,7 @@ class Entry extends Widget {
7368
7252
  * @param text text to set the entry to
7369
7253
  * @returns a new #MxEntry
7370
7254
  */
7371
- static new_with_text(text: string | null): Entry
7255
+ static new_with_text(text: string): Entry
7372
7256
  _init(config?: Entry.ConstructorProperties): void
7373
7257
  }
7374
7258
 
@@ -7405,9 +7289,7 @@ interface Expander extends Atk.ImplementorIface, Clutter.Animatable, Clutter.Con
7405
7289
 
7406
7290
  // Conflicting properties
7407
7291
 
7408
- x_align: any
7409
7292
  xAlign: any
7410
- y_align: any
7411
7293
  yAlign: any
7412
7294
 
7413
7295
  // Owm methods of Mx-1.0.Mx.Expander
@@ -7427,7 +7309,7 @@ interface Expander extends Atk.ImplementorIface, Clutter.Animatable, Clutter.Con
7427
7309
  * Sets the text displayed as the title of the expander
7428
7310
  * @param label string to set as the expander label
7429
7311
  */
7430
- set_label(label: string | null): void
7312
+ set_label(label: string): void
7431
7313
 
7432
7314
  // Conflicting methods
7433
7315
 
@@ -7436,7 +7318,7 @@ interface Expander extends Atk.ImplementorIface, Clutter.Animatable, Clutter.Con
7436
7318
  * into `value`.
7437
7319
  * @param property_name the name of the property
7438
7320
  */
7439
- get_property(property_name: string | null): /* value */ any
7321
+ get_property(property_name: string): /* value */ any
7440
7322
 
7441
7323
  // Overloads of get_property
7442
7324
 
@@ -7460,7 +7342,7 @@ interface Expander extends Atk.ImplementorIface, Clutter.Animatable, Clutter.Con
7460
7342
  * @param property_name the name of the property to get
7461
7343
  * @param value return location for the property value
7462
7344
  */
7463
- get_property(property_name: string | null, value: any): void
7345
+ get_property(property_name: string, value: any): void
7464
7346
  /**
7465
7347
  * Gets a property of an object.
7466
7348
  *
@@ -7481,7 +7363,7 @@ interface Expander extends Atk.ImplementorIface, Clutter.Animatable, Clutter.Con
7481
7363
  * @param property_name the name of the property to get
7482
7364
  * @param value return location for the property value
7483
7365
  */
7484
- get_property(property_name: string | null, value: any): void
7366
+ get_property(property_name: string, value: any): void
7485
7367
 
7486
7368
  // Own virtual methods of Mx-1.0.Mx.Expander
7487
7369
 
@@ -7821,16 +7703,6 @@ module FadeEffect {
7821
7703
 
7822
7704
  // Own constructor properties of Mx-1.0.Mx.FadeEffect
7823
7705
 
7824
- border_bottom?: number | null
7825
- border_left?: number | null
7826
- border_right?: number | null
7827
- border_top?: number | null
7828
- bounds_height?: number | null
7829
- bounds_width?: number | null
7830
- bounds_x?: number | null
7831
- bounds_y?: number | null
7832
- color?: Clutter.Color | null
7833
- freeze_update?: boolean | null
7834
7706
  borderBottom?: number | null
7835
7707
  borderLeft?: number | null
7836
7708
  borderRight?: number | null
@@ -7839,6 +7711,7 @@ module FadeEffect {
7839
7711
  boundsWidth?: number | null
7840
7712
  boundsX?: number | null
7841
7713
  boundsY?: number | null
7714
+ color?: Clutter.Color | null
7842
7715
  freezeUpdate?: boolean | null
7843
7716
  }
7844
7717
 
@@ -7848,24 +7721,15 @@ interface FadeEffect {
7848
7721
 
7849
7722
  // Own properties of Mx-1.0.Mx.FadeEffect
7850
7723
 
7851
- border_bottom: number
7852
7724
  borderBottom: number
7853
- border_left: number
7854
7725
  borderLeft: number
7855
- border_right: number
7856
7726
  borderRight: number
7857
- border_top: number
7858
7727
  borderTop: number
7859
- bounds_height: number
7860
7728
  boundsHeight: number
7861
- bounds_width: number
7862
7729
  boundsWidth: number
7863
- bounds_x: number
7864
7730
  boundsX: number
7865
- bounds_y: number
7866
7731
  boundsY: number
7867
7732
  color: Clutter.Color
7868
- freeze_update: boolean
7869
7733
  freezeUpdate: boolean
7870
7734
 
7871
7735
  // Own fields of Mx-1.0.Mx.FadeEffect
@@ -8014,7 +7878,7 @@ interface FloatingWidget extends Atk.ImplementorIface, Clutter.Animatable, Clutt
8014
7878
  * into `value`.
8015
7879
  * @param property_name the name of the property
8016
7880
  */
8017
- get_property(property_name: string | null): /* value */ any
7881
+ get_property(property_name: string): /* value */ any
8018
7882
 
8019
7883
  // Overloads of get_property
8020
7884
 
@@ -8038,7 +7902,7 @@ interface FloatingWidget extends Atk.ImplementorIface, Clutter.Animatable, Clutt
8038
7902
  * @param property_name the name of the property to get
8039
7903
  * @param value return location for the property value
8040
7904
  */
8041
- get_property(property_name: string | null, value: any): void
7905
+ get_property(property_name: string, value: any): void
8042
7906
  /**
8043
7907
  * Gets a property of an object.
8044
7908
  *
@@ -8059,7 +7923,7 @@ interface FloatingWidget extends Atk.ImplementorIface, Clutter.Animatable, Clutt
8059
7923
  * @param property_name the name of the property to get
8060
7924
  * @param value return location for the property value
8061
7925
  */
8062
- get_property(property_name: string | null, value: any): void
7926
+ get_property(property_name: string, value: any): void
8063
7927
 
8064
7928
  // Class property signals of Mx-1.0.Mx.FloatingWidget
8065
7929
 
@@ -8463,9 +8327,7 @@ interface Frame extends Atk.ImplementorIface, Clutter.Animatable, Clutter.Contai
8463
8327
 
8464
8328
  // Conflicting properties
8465
8329
 
8466
- x_align: any
8467
8330
  xAlign: any
8468
- y_align: any
8469
8331
  yAlign: any
8470
8332
 
8471
8333
  // Own fields of Mx-1.0.Mx.Frame
@@ -8480,7 +8342,7 @@ interface Frame extends Atk.ImplementorIface, Clutter.Animatable, Clutter.Contai
8480
8342
  * into `value`.
8481
8343
  * @param property_name the name of the property
8482
8344
  */
8483
- get_property(property_name: string | null): /* value */ any
8345
+ get_property(property_name: string): /* value */ any
8484
8346
 
8485
8347
  // Overloads of get_property
8486
8348
 
@@ -8504,7 +8366,7 @@ interface Frame extends Atk.ImplementorIface, Clutter.Animatable, Clutter.Contai
8504
8366
  * @param property_name the name of the property to get
8505
8367
  * @param value return location for the property value
8506
8368
  */
8507
- get_property(property_name: string | null, value: any): void
8369
+ get_property(property_name: string, value: any): void
8508
8370
  /**
8509
8371
  * Gets a property of an object.
8510
8372
  *
@@ -8525,7 +8387,7 @@ interface Frame extends Atk.ImplementorIface, Clutter.Animatable, Clutter.Contai
8525
8387
  * @param property_name the name of the property to get
8526
8388
  * @param value return location for the property value
8527
8389
  */
8528
- get_property(property_name: string | null, value: any): void
8390
+ get_property(property_name: string, value: any): void
8529
8391
 
8530
8392
  // Class property signals of Mx-1.0.Mx.Frame
8531
8393
 
@@ -8849,15 +8711,6 @@ module Grid {
8849
8711
 
8850
8712
  // Own constructor properties of Mx-1.0.Mx.Grid
8851
8713
 
8852
- child_x_align?: Align | null
8853
- child_y_align?: Align | null
8854
- column_spacing?: number | null
8855
- homogenous_columns?: boolean | null
8856
- homogenous_rows?: boolean | null
8857
- line_alignment?: Align | null
8858
- max_stride?: number | null
8859
- orientation?: Orientation | null
8860
- row_spacing?: number | null
8861
8714
  childXAlign?: Align | null
8862
8715
  childYAlign?: Align | null
8863
8716
  columnSpacing?: number | null
@@ -8865,6 +8718,7 @@ module Grid {
8865
8718
  homogenousRows?: boolean | null
8866
8719
  lineAlignment?: Align | null
8867
8720
  maxStride?: number | null
8721
+ orientation?: Orientation | null
8868
8722
  rowSpacing?: number | null
8869
8723
  }
8870
8724
 
@@ -8874,22 +8728,14 @@ interface Grid extends Atk.ImplementorIface, Clutter.Animatable, Clutter.Contain
8874
8728
 
8875
8729
  // Own properties of Mx-1.0.Mx.Grid
8876
8730
 
8877
- child_x_align: Align
8878
8731
  childXAlign: Align
8879
- child_y_align: Align
8880
8732
  childYAlign: Align
8881
- column_spacing: number
8882
8733
  columnSpacing: number
8883
- homogenous_columns: boolean
8884
8734
  homogenousColumns: boolean
8885
- homogenous_rows: boolean
8886
8735
  homogenousRows: boolean
8887
- line_alignment: Align
8888
8736
  lineAlignment: Align
8889
- max_stride: number
8890
8737
  maxStride: number
8891
8738
  orientation: Orientation
8892
- row_spacing: number
8893
8739
  rowSpacing: number
8894
8740
 
8895
8741
  // Owm methods of Mx-1.0.Mx.Grid
@@ -8920,7 +8766,7 @@ interface Grid extends Atk.ImplementorIface, Clutter.Animatable, Clutter.Contain
8920
8766
  * into `value`.
8921
8767
  * @param property_name the name of the property
8922
8768
  */
8923
- get_property(property_name: string | null): /* value */ any
8769
+ get_property(property_name: string): /* value */ any
8924
8770
 
8925
8771
  // Overloads of get_property
8926
8772
 
@@ -8944,7 +8790,7 @@ interface Grid extends Atk.ImplementorIface, Clutter.Animatable, Clutter.Contain
8944
8790
  * @param property_name the name of the property to get
8945
8791
  * @param value return location for the property value
8946
8792
  */
8947
- get_property(property_name: string | null, value: any): void
8793
+ get_property(property_name: string, value: any): void
8948
8794
  /**
8949
8795
  * Gets a property of an object.
8950
8796
  *
@@ -8965,7 +8811,7 @@ interface Grid extends Atk.ImplementorIface, Clutter.Animatable, Clutter.Contain
8965
8811
  * @param property_name the name of the property to get
8966
8812
  * @param value return location for the property value
8967
8813
  */
8968
- get_property(property_name: string | null, value: any): void
8814
+ get_property(property_name: string, value: any): void
8969
8815
 
8970
8816
  // Class property signals of Mx-1.0.Mx.Grid
8971
8817
 
@@ -9303,8 +9149,6 @@ module Icon {
9303
9149
 
9304
9150
  // Own constructor properties of Mx-1.0.Mx.Icon
9305
9151
 
9306
- icon_name?: string | null
9307
- icon_size?: number | null
9308
9152
  iconName?: string | null
9309
9153
  iconSize?: number | null
9310
9154
  }
@@ -9315,16 +9159,14 @@ interface Icon extends Atk.ImplementorIface, Clutter.Animatable, Clutter.Contain
9315
9159
 
9316
9160
  // Own properties of Mx-1.0.Mx.Icon
9317
9161
 
9318
- icon_name: string | null
9319
9162
  iconName: string | null
9320
- icon_size: number
9321
9163
  iconSize: number
9322
9164
 
9323
9165
  // Owm methods of Mx-1.0.Mx.Icon
9324
9166
 
9325
- get_icon_name(): string | null
9167
+ get_icon_name(): string
9326
9168
  get_icon_size(): number
9327
- set_icon_name(icon_name: string | null): void
9169
+ set_icon_name(icon_name: string): void
9328
9170
  set_icon_size(size: number): void
9329
9171
 
9330
9172
  // Conflicting methods
@@ -9334,7 +9176,7 @@ interface Icon extends Atk.ImplementorIface, Clutter.Animatable, Clutter.Contain
9334
9176
  * into `value`.
9335
9177
  * @param property_name the name of the property
9336
9178
  */
9337
- get_property(property_name: string | null): /* value */ any
9179
+ get_property(property_name: string): /* value */ any
9338
9180
 
9339
9181
  // Overloads of get_property
9340
9182
 
@@ -9358,7 +9200,7 @@ interface Icon extends Atk.ImplementorIface, Clutter.Animatable, Clutter.Contain
9358
9200
  * @param property_name the name of the property to get
9359
9201
  * @param value return location for the property value
9360
9202
  */
9361
- get_property(property_name: string | null, value: any): void
9203
+ get_property(property_name: string, value: any): void
9362
9204
  /**
9363
9205
  * Gets a property of an object.
9364
9206
  *
@@ -9379,7 +9221,7 @@ interface Icon extends Atk.ImplementorIface, Clutter.Animatable, Clutter.Contain
9379
9221
  * @param property_name the name of the property to get
9380
9222
  * @param value return location for the property value
9381
9223
  */
9382
- get_property(property_name: string | null, value: any): void
9224
+ get_property(property_name: string, value: any): void
9383
9225
 
9384
9226
  // Class property signals of Mx-1.0.Mx.Icon
9385
9227
 
@@ -9700,7 +9542,6 @@ module IconTheme {
9700
9542
 
9701
9543
  // Own constructor properties of Mx-1.0.Mx.IconTheme
9702
9544
 
9703
- theme_name?: string | null
9704
9545
  themeName?: string | null
9705
9546
  }
9706
9547
 
@@ -9710,7 +9551,6 @@ interface IconTheme {
9710
9551
 
9711
9552
  // Own properties of Mx-1.0.Mx.IconTheme
9712
9553
 
9713
- theme_name: string | null
9714
9554
  themeName: string | null
9715
9555
 
9716
9556
  // Own fields of Mx-1.0.Mx.IconTheme
@@ -9729,22 +9569,22 @@ interface IconTheme {
9729
9569
  * Get the value of the #MxIconTheme:theme-name property.
9730
9570
  * @returns the current value of the "theme-name" property.
9731
9571
  */
9732
- get_theme_name(): string | null
9733
- has_icon(icon_name: string | null): boolean
9572
+ get_theme_name(): string
9573
+ has_icon(icon_name: string): boolean
9734
9574
  /**
9735
9575
  * If the icon is available, returns a #CoglHandle of the icon.
9736
9576
  * @param icon_name The name of the icon
9737
9577
  * @param size The desired size of the icon
9738
9578
  * @returns a #CoglHandle of the icon, or %NULL.
9739
9579
  */
9740
- lookup(icon_name: string | null, size: number): Cogl.Handle
9580
+ lookup(icon_name: string, size: number): Cogl.Handle
9741
9581
  /**
9742
9582
  * If the icon is available, returns a #ClutterTexture of the icon.
9743
9583
  * @param icon_name The name of the icon
9744
9584
  * @param size The desired size of the icon
9745
9585
  * @returns a #ClutterTexture of the icon, or %NULL.
9746
9586
  */
9747
- lookup_texture(icon_name: string | null, size: number): Clutter.Texture
9587
+ lookup_texture(icon_name: string, size: number): Clutter.Texture
9748
9588
  /**
9749
9589
  * Sets the directories the #MxIconTheme will search in to find icons.
9750
9590
  * By default, it will look in the default system and local icon
@@ -9762,7 +9602,7 @@ interface IconTheme {
9762
9602
  * icon theme, this function can be called with a %NULL `theme_name` argument.
9763
9603
  * @param theme_name the name of an icon theme to load, or %NULL
9764
9604
  */
9765
- set_theme_name(theme_name: string | null): void
9605
+ set_theme_name(theme_name: string): void
9766
9606
 
9767
9607
  // Class property signals of Mx-1.0.Mx.IconTheme
9768
9608
 
@@ -9837,13 +9677,6 @@ module Image {
9837
9677
 
9838
9678
  // Own constructor properties of Mx-1.0.Mx.Image
9839
9679
 
9840
- allow_upscale?: boolean | null
9841
- image_rotation?: number | null
9842
- load_async?: boolean | null
9843
- scale_height_threshold?: number | null
9844
- scale_mode?: ImageScaleMode | null
9845
- scale_width_threshold?: number | null
9846
- transition_duration?: number | null
9847
9680
  allowUpscale?: boolean | null
9848
9681
  imageRotation?: number | null
9849
9682
  loadAsync?: boolean | null
@@ -9859,19 +9692,12 @@ interface Image extends Atk.ImplementorIface, Clutter.Animatable, Clutter.Contai
9859
9692
 
9860
9693
  // Own properties of Mx-1.0.Mx.Image
9861
9694
 
9862
- allow_upscale: boolean
9863
9695
  allowUpscale: boolean
9864
- image_rotation: number
9865
9696
  imageRotation: number
9866
- load_async: boolean
9867
9697
  loadAsync: boolean
9868
- scale_height_threshold: number
9869
9698
  scaleHeightThreshold: number
9870
- scale_mode: ImageScaleMode
9871
9699
  scaleMode: ImageScaleMode
9872
- scale_width_threshold: number
9873
9700
  scaleWidthThreshold: number
9874
- transition_duration: number
9875
9701
  transitionDuration: number
9876
9702
 
9877
9703
  // Owm methods of Mx-1.0.Mx.Image
@@ -9980,7 +9806,7 @@ interface Image extends Atk.ImplementorIface, Clutter.Animatable, Clutter.Contai
9980
9806
  * @param filename Filename to read the file from
9981
9807
  * @returns #TRUE if the image was successfully updated
9982
9808
  */
9983
- set_from_file(filename: string | null): boolean
9809
+ set_from_file(filename: string): boolean
9984
9810
  /**
9985
9811
  * Set the image data from an image file, and scale the image during loading.
9986
9812
  * In case of failure, #FALSE is returned and `error` is set. The aspect ratio
@@ -9990,7 +9816,7 @@ interface Image extends Atk.ImplementorIface, Clutter.Animatable, Clutter.Contai
9990
9816
  * @param height Height to scale the image to, or -1
9991
9817
  * @returns #TRUE if the image was successfully updated
9992
9818
  */
9993
- set_from_file_at_size(filename: string | null, width: number, height: number): boolean
9819
+ set_from_file_at_size(filename: string, width: number, height: number): boolean
9994
9820
  /**
9995
9821
  * Set the MxImage:image-rotation property.
9996
9822
  * @param rotation Rotation angle in degrees
@@ -10045,7 +9871,7 @@ interface Image extends Atk.ImplementorIface, Clutter.Animatable, Clutter.Contai
10045
9871
  * into `value`.
10046
9872
  * @param property_name the name of the property
10047
9873
  */
10048
- get_property(property_name: string | null): /* value */ any
9874
+ get_property(property_name: string): /* value */ any
10049
9875
 
10050
9876
  // Overloads of get_property
10051
9877
 
@@ -10069,7 +9895,7 @@ interface Image extends Atk.ImplementorIface, Clutter.Animatable, Clutter.Contai
10069
9895
  * @param property_name the name of the property to get
10070
9896
  * @param value return location for the property value
10071
9897
  */
10072
- get_property(property_name: string | null, value: any): void
9898
+ get_property(property_name: string, value: any): void
10073
9899
  /**
10074
9900
  * Gets a property of an object.
10075
9901
  *
@@ -10090,7 +9916,7 @@ interface Image extends Atk.ImplementorIface, Clutter.Animatable, Clutter.Contai
10090
9916
  * @param property_name the name of the property to get
10091
9917
  * @param value return location for the property value
10092
9918
  */
10093
- get_property(property_name: string | null, value: any): void
9919
+ get_property(property_name: string, value: any): void
10094
9920
 
10095
9921
  // Own virtual methods of Mx-1.0.Mx.Image
10096
9922
 
@@ -10441,9 +10267,8 @@ module ItemView {
10441
10267
  // Own constructor properties of Mx-1.0.Mx.ItemView
10442
10268
 
10443
10269
  factory?: GObject.Object | null
10444
- item_type?: GObject.GType | null
10445
- model?: Clutter.Model | null
10446
10270
  itemType?: GObject.GType | null
10271
+ model?: Clutter.Model | null
10447
10272
  }
10448
10273
 
10449
10274
  }
@@ -10453,7 +10278,6 @@ interface ItemView extends Atk.ImplementorIface, Clutter.Animatable, Clutter.Con
10453
10278
  // Own properties of Mx-1.0.Mx.ItemView
10454
10279
 
10455
10280
  factory: GObject.Object
10456
- item_type: GObject.GType
10457
10281
  itemType: GObject.GType
10458
10282
  model: Clutter.Model
10459
10283
 
@@ -10465,7 +10289,7 @@ interface ItemView extends Atk.ImplementorIface, Clutter.Animatable, Clutter.Con
10465
10289
  * @param attribute Name of the attribute
10466
10290
  * @param column Column number
10467
10291
  */
10468
- add_attribute(attribute: string | null, column: number): void
10292
+ add_attribute(attribute: string, column: number): void
10469
10293
  /**
10470
10294
  * Freeze the view. This means that the view will not act on changes to the
10471
10295
  * model until it is thawed. Call #mx_item_view_thaw to thaw the view
@@ -10515,7 +10339,7 @@ interface ItemView extends Atk.ImplementorIface, Clutter.Animatable, Clutter.Con
10515
10339
  * into `value`.
10516
10340
  * @param property_name the name of the property
10517
10341
  */
10518
- get_property(property_name: string | null): /* value */ any
10342
+ get_property(property_name: string): /* value */ any
10519
10343
 
10520
10344
  // Overloads of get_property
10521
10345
 
@@ -10539,7 +10363,7 @@ interface ItemView extends Atk.ImplementorIface, Clutter.Animatable, Clutter.Con
10539
10363
  * @param property_name the name of the property to get
10540
10364
  * @param value return location for the property value
10541
10365
  */
10542
- get_property(property_name: string | null, value: any): void
10366
+ get_property(property_name: string, value: any): void
10543
10367
  /**
10544
10368
  * Gets a property of an object.
10545
10369
  *
@@ -10560,7 +10384,7 @@ interface ItemView extends Atk.ImplementorIface, Clutter.Animatable, Clutter.Con
10560
10384
  * @param property_name the name of the property to get
10561
10385
  * @param value return location for the property value
10562
10386
  */
10563
- get_property(property_name: string | null, value: any): void
10387
+ get_property(property_name: string, value: any): void
10564
10388
 
10565
10389
  // Class property signals of Mx-1.0.Mx.ItemView
10566
10390
 
@@ -10917,20 +10741,13 @@ module KineticScrollView {
10917
10741
 
10918
10742
  // Own constructor properties of Mx-1.0.Mx.KineticScrollView
10919
10743
 
10920
- acceleration_factor?: number | null
10921
- clamp_duration?: number | null
10922
- clamp_mode?: number | null
10923
- clamp_to_center?: boolean | null
10924
- deceleration?: number | null
10925
- mouse_button?: number | null
10926
- overshoot?: number | null
10927
- scroll_policy?: ScrollPolicy | null
10928
- use_captured?: boolean | null
10929
10744
  accelerationFactor?: number | null
10930
10745
  clampDuration?: number | null
10931
10746
  clampMode?: number | null
10932
10747
  clampToCenter?: boolean | null
10748
+ deceleration?: number | null
10933
10749
  mouseButton?: number | null
10750
+ overshoot?: number | null
10934
10751
  scrollPolicy?: ScrollPolicy | null
10935
10752
  useCaptured?: boolean | null
10936
10753
  }
@@ -10941,29 +10758,20 @@ interface KineticScrollView extends Atk.ImplementorIface, Clutter.Animatable, Cl
10941
10758
 
10942
10759
  // Own properties of Mx-1.0.Mx.KineticScrollView
10943
10760
 
10944
- acceleration_factor: number
10945
10761
  accelerationFactor: number
10946
- clamp_duration: number
10947
10762
  clampDuration: number
10948
- clamp_mode: number
10949
10763
  clampMode: number
10950
- clamp_to_center: boolean
10951
10764
  clampToCenter: boolean
10952
10765
  deceleration: number
10953
- mouse_button: number
10954
10766
  mouseButton: number
10955
10767
  overshoot: number
10956
- scroll_policy: ScrollPolicy
10957
10768
  scrollPolicy: ScrollPolicy
10958
10769
  readonly state: KineticScrollViewState
10959
- use_captured: boolean
10960
10770
  useCaptured: boolean
10961
10771
 
10962
10772
  // Conflicting properties
10963
10773
 
10964
- x_align: any
10965
10774
  xAlign: any
10966
- y_align: any
10967
10775
  yAlign: any
10968
10776
 
10969
10777
  // Owm methods of Mx-1.0.Mx.KineticScrollView
@@ -11081,7 +10889,7 @@ interface KineticScrollView extends Atk.ImplementorIface, Clutter.Animatable, Cl
11081
10889
  * into `value`.
11082
10890
  * @param property_name the name of the property
11083
10891
  */
11084
- get_property(property_name: string | null): /* value */ any
10892
+ get_property(property_name: string): /* value */ any
11085
10893
 
11086
10894
  // Overloads of get_property
11087
10895
 
@@ -11105,7 +10913,7 @@ interface KineticScrollView extends Atk.ImplementorIface, Clutter.Animatable, Cl
11105
10913
  * @param property_name the name of the property to get
11106
10914
  * @param value return location for the property value
11107
10915
  */
11108
- get_property(property_name: string | null, value: any): void
10916
+ get_property(property_name: string, value: any): void
11109
10917
  /**
11110
10918
  * Gets a property of an object.
11111
10919
  *
@@ -11126,7 +10934,7 @@ interface KineticScrollView extends Atk.ImplementorIface, Clutter.Animatable, Cl
11126
10934
  * @param property_name the name of the property to get
11127
10935
  * @param value return location for the property value
11128
10936
  */
11129
- get_property(property_name: string | null, value: any): void
10937
+ get_property(property_name: string, value: any): void
11130
10938
 
11131
10939
  // Class property signals of Mx-1.0.Mx.KineticScrollView
11132
10940
 
@@ -11486,22 +11294,6 @@ module Label {
11486
11294
 
11487
11295
  // Own constructor properties of Mx-1.0.Mx.Label
11488
11296
 
11489
- fade_out?: boolean | null
11490
- /**
11491
- * Whether to wrap the lines of #MxLabel:text if the contents
11492
- * exceed the available allocation.
11493
- */
11494
- line_wrap?: boolean | null
11495
- /**
11496
- * Show a tooltip when there is not enough space to display the text. If set
11497
- * to %TRUE, this will also cause the #ClutterActor:reactive property to be
11498
- * enabled.
11499
- */
11500
- show_tooltip?: boolean | null
11501
- text?: string | null
11502
- use_markup?: boolean | null
11503
- x_align: any
11504
- y_align: any
11505
11297
  fadeOut?: boolean | null
11506
11298
  /**
11507
11299
  * Whether to wrap the lines of #MxLabel:text if the contents
@@ -11514,6 +11306,7 @@ module Label {
11514
11306
  * enabled.
11515
11307
  */
11516
11308
  showTooltip?: boolean | null
11309
+ text?: string | null
11517
11310
  useMarkup?: boolean | null
11518
11311
  xAlign: any
11519
11312
  yAlign: any
@@ -11525,21 +11318,13 @@ interface Label extends Atk.ImplementorIface, Clutter.Animatable, Clutter.Contai
11525
11318
 
11526
11319
  // Own properties of Mx-1.0.Mx.Label
11527
11320
 
11528
- readonly clutter_text: Clutter.Text
11529
11321
  readonly clutterText: Clutter.Text
11530
- fade_out: boolean
11531
11322
  fadeOut: boolean
11532
- /**
11533
- * Whether to wrap the lines of #MxLabel:text if the contents
11534
- * exceed the available allocation.
11535
- */
11536
- line_wrap: boolean
11537
11323
  /**
11538
11324
  * Whether to wrap the lines of #MxLabel:text if the contents
11539
11325
  * exceed the available allocation.
11540
11326
  */
11541
11327
  lineWrap: boolean
11542
- // Has conflict: show_tooltip: boolean
11543
11328
  /**
11544
11329
  * Show a tooltip when there is not enough space to display the text. If set
11545
11330
  * to %TRUE, this will also cause the #ClutterActor:reactive property to be
@@ -11547,11 +11332,8 @@ interface Label extends Atk.ImplementorIface, Clutter.Animatable, Clutter.Contai
11547
11332
  */
11548
11333
  showTooltip: boolean
11549
11334
  text: string | null
11550
- use_markup: boolean
11551
11335
  useMarkup: boolean
11552
- x_align: any
11553
11336
  xAlign: any
11554
- y_align: any
11555
11337
  yAlign: any
11556
11338
 
11557
11339
  // Owm methods of Mx-1.0.Mx.Label
@@ -11581,7 +11363,7 @@ interface Label extends Atk.ImplementorIface, Clutter.Animatable, Clutter.Contai
11581
11363
  * Get the text displayed on the label
11582
11364
  * @returns the text for the label. This must not be freed by the application
11583
11365
  */
11584
- get_text(): string | null
11366
+ get_text(): string
11585
11367
  /**
11586
11368
  * Determines whether the text of the label is being treated as Pango markup.
11587
11369
  * @returns %TRUE if the text of the label is treated as Pango markup, %FALSE otherwise.
@@ -11628,7 +11410,7 @@ interface Label extends Atk.ImplementorIface, Clutter.Animatable, Clutter.Contai
11628
11410
  * Sets the text displayed on the label
11629
11411
  * @param text text to set the label to
11630
11412
  */
11631
- set_text(text: string | null): void
11413
+ set_text(text: string): void
11632
11414
  /**
11633
11415
  * Sets whether the text of the label should be treated as Pango markup.
11634
11416
  * @param use_markup %TRUE to use Pango markup, %FALSE otherwise
@@ -11666,7 +11448,7 @@ interface Label extends Atk.ImplementorIface, Clutter.Animatable, Clutter.Contai
11666
11448
  * into `value`.
11667
11449
  * @param property_name the name of the property
11668
11450
  */
11669
- get_property(property_name: string | null): /* value */ any
11451
+ get_property(property_name: string): /* value */ any
11670
11452
 
11671
11453
  // Overloads of get_property
11672
11454
 
@@ -11690,7 +11472,7 @@ interface Label extends Atk.ImplementorIface, Clutter.Animatable, Clutter.Contai
11690
11472
  * @param property_name the name of the property to get
11691
11473
  * @param value return location for the property value
11692
11474
  */
11693
- get_property(property_name: string | null, value: any): void
11475
+ get_property(property_name: string, value: any): void
11694
11476
  /**
11695
11477
  * Gets a property of an object.
11696
11478
  *
@@ -11711,7 +11493,7 @@ interface Label extends Atk.ImplementorIface, Clutter.Animatable, Clutter.Contai
11711
11493
  * @param property_name the name of the property to get
11712
11494
  * @param value return location for the property value
11713
11495
  */
11714
- get_property(property_name: string | null, value: any): void
11496
+ get_property(property_name: string, value: any): void
11715
11497
 
11716
11498
  // Class property signals of Mx-1.0.Mx.Label
11717
11499
 
@@ -12039,7 +11821,7 @@ class Label extends Widget {
12039
11821
  * @param text text to set the label to
12040
11822
  * @returns a new #MxLabel
12041
11823
  */
12042
- static new_with_text(text: string | null): Label
11824
+ static new_with_text(text: string): Label
12043
11825
  _init(config?: Label.ConstructorProperties): void
12044
11826
  }
12045
11827
 
@@ -12052,9 +11834,8 @@ module ListView {
12052
11834
  // Own constructor properties of Mx-1.0.Mx.ListView
12053
11835
 
12054
11836
  factory?: GObject.Object | null
12055
- item_type?: GObject.GType | null
12056
- model?: Clutter.Model | null
12057
11837
  itemType?: GObject.GType | null
11838
+ model?: Clutter.Model | null
12058
11839
  }
12059
11840
 
12060
11841
  }
@@ -12064,7 +11845,6 @@ interface ListView extends Atk.ImplementorIface, Clutter.Animatable, Clutter.Con
12064
11845
  // Own properties of Mx-1.0.Mx.ListView
12065
11846
 
12066
11847
  factory: GObject.Object
12067
- item_type: GObject.GType
12068
11848
  itemType: GObject.GType
12069
11849
  model: Clutter.Model
12070
11850
 
@@ -12076,7 +11856,7 @@ interface ListView extends Atk.ImplementorIface, Clutter.Animatable, Clutter.Con
12076
11856
  * @param attribute Name of the attribute
12077
11857
  * @param column Column number
12078
11858
  */
12079
- add_attribute(attribute: string | null, column: number): void
11859
+ add_attribute(attribute: string, column: number): void
12080
11860
  /**
12081
11861
  * Freeze the view. This means that the view will not act on changes to the
12082
11862
  * model until it is thawed. Call #mx_list_view_thaw to thaw the view.
@@ -12126,7 +11906,7 @@ interface ListView extends Atk.ImplementorIface, Clutter.Animatable, Clutter.Con
12126
11906
  * into `value`.
12127
11907
  * @param property_name the name of the property
12128
11908
  */
12129
- get_property(property_name: string | null): /* value */ any
11909
+ get_property(property_name: string): /* value */ any
12130
11910
 
12131
11911
  // Overloads of get_property
12132
11912
 
@@ -12150,7 +11930,7 @@ interface ListView extends Atk.ImplementorIface, Clutter.Animatable, Clutter.Con
12150
11930
  * @param property_name the name of the property to get
12151
11931
  * @param value return location for the property value
12152
11932
  */
12153
- get_property(property_name: string | null, value: any): void
11933
+ get_property(property_name: string, value: any): void
12154
11934
  /**
12155
11935
  * Gets a property of an object.
12156
11936
  *
@@ -12171,7 +11951,7 @@ interface ListView extends Atk.ImplementorIface, Clutter.Animatable, Clutter.Con
12171
11951
  * @param property_name the name of the property to get
12172
11952
  * @param value return location for the property value
12173
11953
  */
12174
- get_property(property_name: string | null, value: any): void
11954
+ get_property(property_name: string, value: any): void
12175
11955
  /**
12176
11956
  * Adds a #ClutterActor to `container`. This function will emit the
12177
11957
  * "actor-added" signal. The actor should be parented to
@@ -12613,7 +12393,7 @@ interface Menu extends Atk.ImplementorIface, Clutter.Animatable, Clutter.Contain
12613
12393
  * into `value`.
12614
12394
  * @param property_name the name of the property
12615
12395
  */
12616
- get_property(property_name: string | null): /* value */ any
12396
+ get_property(property_name: string): /* value */ any
12617
12397
 
12618
12398
  // Overloads of get_property
12619
12399
 
@@ -12637,7 +12417,7 @@ interface Menu extends Atk.ImplementorIface, Clutter.Animatable, Clutter.Contain
12637
12417
  * @param property_name the name of the property to get
12638
12418
  * @param value return location for the property value
12639
12419
  */
12640
- get_property(property_name: string | null, value: any): void
12420
+ get_property(property_name: string, value: any): void
12641
12421
  /**
12642
12422
  * Gets a property of an object.
12643
12423
  *
@@ -12658,7 +12438,7 @@ interface Menu extends Atk.ImplementorIface, Clutter.Animatable, Clutter.Contain
12658
12438
  * @param property_name the name of the property to get
12659
12439
  * @param value return location for the property value
12660
12440
  */
12661
- get_property(property_name: string | null, value: any): void
12441
+ get_property(property_name: string, value: any): void
12662
12442
 
12663
12443
  // Own virtual methods of Mx-1.0.Mx.Menu
12664
12444
 
@@ -12983,8 +12763,6 @@ module Notebook {
12983
12763
 
12984
12764
  // Own constructor properties of Mx-1.0.Mx.Notebook
12985
12765
 
12986
- current_page?: Clutter.Actor | null
12987
- enable_gestures?: boolean | null
12988
12766
  currentPage?: Clutter.Actor | null
12989
12767
  enableGestures?: boolean | null
12990
12768
  }
@@ -12995,9 +12773,7 @@ interface Notebook extends Atk.ImplementorIface, Clutter.Animatable, Clutter.Con
12995
12773
 
12996
12774
  // Own properties of Mx-1.0.Mx.Notebook
12997
12775
 
12998
- current_page: Clutter.Actor
12999
12776
  currentPage: Clutter.Actor
13000
- enable_gestures: boolean
13001
12777
  enableGestures: boolean
13002
12778
 
13003
12779
  // Own fields of Mx-1.0.Mx.Notebook
@@ -13023,7 +12799,7 @@ interface Notebook extends Atk.ImplementorIface, Clutter.Animatable, Clutter.Con
13023
12799
  * into `value`.
13024
12800
  * @param property_name the name of the property
13025
12801
  */
13026
- get_property(property_name: string | null): /* value */ any
12802
+ get_property(property_name: string): /* value */ any
13027
12803
 
13028
12804
  // Overloads of get_property
13029
12805
 
@@ -13047,7 +12823,7 @@ interface Notebook extends Atk.ImplementorIface, Clutter.Animatable, Clutter.Con
13047
12823
  * @param property_name the name of the property to get
13048
12824
  * @param value return location for the property value
13049
12825
  */
13050
- get_property(property_name: string | null, value: any): void
12826
+ get_property(property_name: string, value: any): void
13051
12827
  /**
13052
12828
  * Gets a property of an object.
13053
12829
  *
@@ -13068,7 +12844,7 @@ interface Notebook extends Atk.ImplementorIface, Clutter.Animatable, Clutter.Con
13068
12844
  * @param property_name the name of the property to get
13069
12845
  * @param value return location for the property value
13070
12846
  */
13071
- get_property(property_name: string | null, value: any): void
12847
+ get_property(property_name: string, value: any): void
13072
12848
 
13073
12849
  // Class property signals of Mx-1.0.Mx.Notebook
13074
12850
 
@@ -13379,13 +13155,9 @@ module Offscreen {
13379
13155
 
13380
13156
  // Own constructor properties of Mx-1.0.Mx.Offscreen
13381
13157
 
13382
- accumulation_enabled?: boolean | null
13383
- auto_update?: boolean | null
13384
- child?: Clutter.Actor | null
13385
- pick_child?: boolean | null
13386
- redirect_enabled?: boolean | null
13387
13158
  accumulationEnabled?: boolean | null
13388
13159
  autoUpdate?: boolean | null
13160
+ child?: Clutter.Actor | null
13389
13161
  pickChild?: boolean | null
13390
13162
  redirectEnabled?: boolean | null
13391
13163
  }
@@ -13396,20 +13168,15 @@ interface Offscreen extends Atk.ImplementorIface, Clutter.Animatable, Clutter.Co
13396
13168
 
13397
13169
  // Own properties of Mx-1.0.Mx.Offscreen
13398
13170
 
13399
- accumulation_enabled: boolean
13400
13171
  accumulationEnabled: boolean
13401
- readonly accumulation_material: any
13402
13172
  readonly accumulationMaterial: any
13403
- auto_update: boolean
13404
13173
  autoUpdate: boolean
13405
13174
  /**
13406
13175
  * The off-screen buffer used to draw the child.
13407
13176
  */
13408
13177
  readonly buffer: any
13409
13178
  child: Clutter.Actor
13410
- pick_child: boolean
13411
13179
  pickChild: boolean
13412
- redirect_enabled: boolean
13413
13180
  redirectEnabled: boolean
13414
13181
 
13415
13182
  // Own fields of Mx-1.0.Mx.Offscreen
@@ -13849,9 +13616,8 @@ module PathBar {
13849
13616
 
13850
13617
  // Own constructor properties of Mx-1.0.Mx.PathBar
13851
13618
 
13852
- clear_on_change?: boolean | null
13853
- editable?: boolean | null
13854
13619
  clearOnChange?: boolean | null
13620
+ editable?: boolean | null
13855
13621
  }
13856
13622
 
13857
13623
  }
@@ -13860,7 +13626,6 @@ interface PathBar extends Atk.ImplementorIface, Clutter.Animatable, Clutter.Cont
13860
13626
 
13861
13627
  // Own properties of Mx-1.0.Mx.PathBar
13862
13628
 
13863
- clear_on_change: boolean
13864
13629
  clearOnChange: boolean
13865
13630
  editable: boolean
13866
13631
  readonly entry: Entry
@@ -13892,11 +13657,11 @@ interface PathBar extends Atk.ImplementorIface, Clutter.Animatable, Clutter.Cont
13892
13657
  * @returns MxEntry *
13893
13658
  */
13894
13659
  get_entry(): Entry
13895
- get_label(level: number): string | null
13660
+ get_label(level: number): string
13896
13661
  get_level(): number
13897
- get_text(): string | null
13662
+ get_text(): string
13898
13663
  pop(): number
13899
- push(name: string | null): number
13664
+ push(name: string): number
13900
13665
  /**
13901
13666
  * Set theh value of the #MxPathBar:clear-on-change property
13902
13667
  * @param clear_on_change the new value of the property
@@ -13912,12 +13677,12 @@ interface PathBar extends Atk.ImplementorIface, Clutter.Animatable, Clutter.Cont
13912
13677
  * @param level A #gint
13913
13678
  * @param label A #gchar
13914
13679
  */
13915
- set_label(level: number, label: string | null): void
13680
+ set_label(level: number, label: string): void
13916
13681
  /**
13917
13682
  * Set the text in the editable area of the #MxPathBar
13918
13683
  * @param text string to set the editable text to.
13919
13684
  */
13920
- set_text(text: string | null): void
13685
+ set_text(text: string): void
13921
13686
 
13922
13687
  // Conflicting methods
13923
13688
 
@@ -13926,7 +13691,7 @@ interface PathBar extends Atk.ImplementorIface, Clutter.Animatable, Clutter.Cont
13926
13691
  * into `value`.
13927
13692
  * @param property_name the name of the property
13928
13693
  */
13929
- get_property(property_name: string | null): /* value */ any
13694
+ get_property(property_name: string): /* value */ any
13930
13695
 
13931
13696
  // Overloads of get_property
13932
13697
 
@@ -13950,7 +13715,7 @@ interface PathBar extends Atk.ImplementorIface, Clutter.Animatable, Clutter.Cont
13950
13715
  * @param property_name the name of the property to get
13951
13716
  * @param value return location for the property value
13952
13717
  */
13953
- get_property(property_name: string | null, value: any): void
13718
+ get_property(property_name: string, value: any): void
13954
13719
  /**
13955
13720
  * Gets a property of an object.
13956
13721
  *
@@ -13971,7 +13736,7 @@ interface PathBar extends Atk.ImplementorIface, Clutter.Animatable, Clutter.Cont
13971
13736
  * @param property_name the name of the property to get
13972
13737
  * @param value return location for the property value
13973
13738
  */
13974
- get_property(property_name: string | null, value: any): void
13739
+ get_property(property_name: string, value: any): void
13975
13740
 
13976
13741
  // Class property signals of Mx-1.0.Mx.PathBar
13977
13742
 
@@ -14319,7 +14084,7 @@ interface ProgressBar extends Atk.ImplementorIface, Clutter.Animatable, Clutter.
14319
14084
  * into `value`.
14320
14085
  * @param property_name the name of the property
14321
14086
  */
14322
- get_property(property_name: string | null): /* value */ any
14087
+ get_property(property_name: string): /* value */ any
14323
14088
 
14324
14089
  // Overloads of get_property
14325
14090
 
@@ -14343,7 +14108,7 @@ interface ProgressBar extends Atk.ImplementorIface, Clutter.Animatable, Clutter.
14343
14108
  * @param property_name the name of the property to get
14344
14109
  * @param value return location for the property value
14345
14110
  */
14346
- get_property(property_name: string | null, value: any): void
14111
+ get_property(property_name: string, value: any): void
14347
14112
  /**
14348
14113
  * Gets a property of an object.
14349
14114
  *
@@ -14364,7 +14129,7 @@ interface ProgressBar extends Atk.ImplementorIface, Clutter.Animatable, Clutter.
14364
14129
  * @param property_name the name of the property to get
14365
14130
  * @param value return location for the property value
14366
14131
  */
14367
- get_property(property_name: string | null, value: any): void
14132
+ get_property(property_name: string, value: any): void
14368
14133
 
14369
14134
  // Class property signals of Mx-1.0.Mx.ProgressBar
14370
14135
 
@@ -14714,9 +14479,7 @@ interface ScrollBar extends Atk.ImplementorIface, Clutter.Animatable, Clutter.Co
14714
14479
 
14715
14480
  // Conflicting properties
14716
14481
 
14717
- x_align: any
14718
14482
  xAlign: any
14719
- y_align: any
14720
14483
  yAlign: any
14721
14484
 
14722
14485
  // Owm methods of Mx-1.0.Mx.ScrollBar
@@ -14738,7 +14501,7 @@ interface ScrollBar extends Atk.ImplementorIface, Clutter.Animatable, Clutter.Co
14738
14501
  * into `value`.
14739
14502
  * @param property_name the name of the property
14740
14503
  */
14741
- get_property(property_name: string | null): /* value */ any
14504
+ get_property(property_name: string): /* value */ any
14742
14505
 
14743
14506
  // Overloads of get_property
14744
14507
 
@@ -14762,7 +14525,7 @@ interface ScrollBar extends Atk.ImplementorIface, Clutter.Animatable, Clutter.Co
14762
14525
  * @param property_name the name of the property to get
14763
14526
  * @param value return location for the property value
14764
14527
  */
14765
- get_property(property_name: string | null, value: any): void
14528
+ get_property(property_name: string, value: any): void
14766
14529
  /**
14767
14530
  * Gets a property of an object.
14768
14531
  *
@@ -14783,7 +14546,7 @@ interface ScrollBar extends Atk.ImplementorIface, Clutter.Animatable, Clutter.Co
14783
14546
  * @param property_name the name of the property to get
14784
14547
  * @param value return location for the property value
14785
14548
  */
14786
- get_property(property_name: string | null, value: any): void
14549
+ get_property(property_name: string, value: any): void
14787
14550
 
14788
14551
  // Own virtual methods of Mx-1.0.Mx.ScrollBar
14789
14552
 
@@ -15134,9 +14897,6 @@ module ScrollView {
15134
14897
 
15135
14898
  // Own constructor properties of Mx-1.0.Mx.ScrollView
15136
14899
 
15137
- enable_gestures?: boolean | null
15138
- enable_mouse_scrolling?: boolean | null
15139
- scroll_policy?: ScrollPolicy | null
15140
14900
  enableGestures?: boolean | null
15141
14901
  enableMouseScrolling?: boolean | null
15142
14902
  scrollPolicy?: ScrollPolicy | null
@@ -15148,18 +14908,13 @@ interface ScrollView extends Atk.ImplementorIface, Clutter.Animatable, Clutter.C
15148
14908
 
15149
14909
  // Own properties of Mx-1.0.Mx.ScrollView
15150
14910
 
15151
- enable_gestures: boolean
15152
14911
  enableGestures: boolean
15153
- enable_mouse_scrolling: boolean
15154
14912
  enableMouseScrolling: boolean
15155
- scroll_policy: ScrollPolicy
15156
14913
  scrollPolicy: ScrollPolicy
15157
14914
 
15158
14915
  // Conflicting properties
15159
14916
 
15160
- x_align: any
15161
14917
  xAlign: any
15162
- y_align: any
15163
14918
  yAlign: any
15164
14919
 
15165
14920
  // Owm methods of Mx-1.0.Mx.ScrollView
@@ -15184,7 +14939,7 @@ interface ScrollView extends Atk.ImplementorIface, Clutter.Animatable, Clutter.C
15184
14939
  * into `value`.
15185
14940
  * @param property_name the name of the property
15186
14941
  */
15187
- get_property(property_name: string | null): /* value */ any
14942
+ get_property(property_name: string): /* value */ any
15188
14943
 
15189
14944
  // Overloads of get_property
15190
14945
 
@@ -15208,7 +14963,7 @@ interface ScrollView extends Atk.ImplementorIface, Clutter.Animatable, Clutter.C
15208
14963
  * @param property_name the name of the property to get
15209
14964
  * @param value return location for the property value
15210
14965
  */
15211
- get_property(property_name: string | null, value: any): void
14966
+ get_property(property_name: string, value: any): void
15212
14967
  /**
15213
14968
  * Gets a property of an object.
15214
14969
  *
@@ -15229,7 +14984,7 @@ interface ScrollView extends Atk.ImplementorIface, Clutter.Animatable, Clutter.C
15229
14984
  * @param property_name the name of the property to get
15230
14985
  * @param value return location for the property value
15231
14986
  */
15232
- get_property(property_name: string | null, value: any): void
14987
+ get_property(property_name: string, value: any): void
15233
14988
 
15234
14989
  // Class property signals of Mx-1.0.Mx.ScrollView
15235
14990
 
@@ -15552,11 +15307,6 @@ module Settings {
15552
15307
 
15553
15308
  // Own constructor properties of Mx-1.0.Mx.Settings
15554
15309
 
15555
- drag_threshold?: number | null
15556
- font_name?: string | null
15557
- icon_theme?: string | null
15558
- long_press_timeout?: number | null
15559
- small_screen?: boolean | null
15560
15310
  dragThreshold?: number | null
15561
15311
  fontName?: string | null
15562
15312
  iconTheme?: string | null
@@ -15570,15 +15320,10 @@ interface Settings {
15570
15320
 
15571
15321
  // Own properties of Mx-1.0.Mx.Settings
15572
15322
 
15573
- drag_threshold: number
15574
15323
  dragThreshold: number
15575
- font_name: string | null
15576
15324
  fontName: string | null
15577
- icon_theme: string | null
15578
15325
  iconTheme: string | null
15579
- long_press_timeout: number
15580
15326
  longPressTimeout: number
15581
- small_screen: boolean
15582
15327
  smallScreen: boolean
15583
15328
 
15584
15329
  // Own fields of Mx-1.0.Mx.Settings
@@ -15635,9 +15380,8 @@ module Slider {
15635
15380
 
15636
15381
  // Own constructor properties of Mx-1.0.Mx.Slider
15637
15382
 
15638
- buffer_value?: number | null
15639
- value?: number | null
15640
15383
  bufferValue?: number | null
15384
+ value?: number | null
15641
15385
  }
15642
15386
 
15643
15387
  }
@@ -15646,7 +15390,6 @@ interface Slider extends Atk.ImplementorIface, Clutter.Animatable, Clutter.Conta
15646
15390
 
15647
15391
  // Own properties of Mx-1.0.Mx.Slider
15648
15392
 
15649
- buffer_value: number
15650
15393
  bufferValue: number
15651
15394
  value: number
15652
15395
 
@@ -15680,7 +15423,7 @@ interface Slider extends Atk.ImplementorIface, Clutter.Animatable, Clutter.Conta
15680
15423
  * into `value`.
15681
15424
  * @param property_name the name of the property
15682
15425
  */
15683
- get_property(property_name: string | null): /* value */ any
15426
+ get_property(property_name: string): /* value */ any
15684
15427
 
15685
15428
  // Overloads of get_property
15686
15429
 
@@ -15704,7 +15447,7 @@ interface Slider extends Atk.ImplementorIface, Clutter.Animatable, Clutter.Conta
15704
15447
  * @param property_name the name of the property to get
15705
15448
  * @param value return location for the property value
15706
15449
  */
15707
- get_property(property_name: string | null, value: any): void
15450
+ get_property(property_name: string, value: any): void
15708
15451
  /**
15709
15452
  * Gets a property of an object.
15710
15453
  *
@@ -15725,7 +15468,7 @@ interface Slider extends Atk.ImplementorIface, Clutter.Animatable, Clutter.Conta
15725
15468
  * @param property_name the name of the property to get
15726
15469
  * @param value return location for the property value
15727
15470
  */
15728
- get_property(property_name: string | null, value: any): void
15471
+ get_property(property_name: string, value: any): void
15729
15472
 
15730
15473
  // Class property signals of Mx-1.0.Mx.Slider
15731
15474
 
@@ -16088,7 +15831,7 @@ interface Spinner extends Atk.ImplementorIface, Clutter.Animatable, Clutter.Cont
16088
15831
  * into `value`.
16089
15832
  * @param property_name the name of the property
16090
15833
  */
16091
- get_property(property_name: string | null): /* value */ any
15834
+ get_property(property_name: string): /* value */ any
16092
15835
 
16093
15836
  // Overloads of get_property
16094
15837
 
@@ -16112,7 +15855,7 @@ interface Spinner extends Atk.ImplementorIface, Clutter.Animatable, Clutter.Cont
16112
15855
  * @param property_name the name of the property to get
16113
15856
  * @param value return location for the property value
16114
15857
  */
16115
- get_property(property_name: string | null, value: any): void
15858
+ get_property(property_name: string, value: any): void
16116
15859
  /**
16117
15860
  * Gets a property of an object.
16118
15861
  *
@@ -16133,7 +15876,7 @@ interface Spinner extends Atk.ImplementorIface, Clutter.Animatable, Clutter.Cont
16133
15876
  * @param property_name the name of the property to get
16134
15877
  * @param value return location for the property value
16135
15878
  */
16136
- get_property(property_name: string | null, value: any): void
15879
+ get_property(property_name: string, value: any): void
16137
15880
 
16138
15881
  // Own virtual methods of Mx-1.0.Mx.Spinner
16139
15882
 
@@ -16546,7 +16289,7 @@ interface Stack extends Atk.ImplementorIface, Clutter.Animatable, Clutter.Contai
16546
16289
  * into `value`.
16547
16290
  * @param property_name the name of the property
16548
16291
  */
16549
- get_property(property_name: string | null): /* value */ any
16292
+ get_property(property_name: string): /* value */ any
16550
16293
 
16551
16294
  // Overloads of get_property
16552
16295
 
@@ -16570,7 +16313,7 @@ interface Stack extends Atk.ImplementorIface, Clutter.Animatable, Clutter.Contai
16570
16313
  * @param property_name the name of the property to get
16571
16314
  * @param value return location for the property value
16572
16315
  */
16573
- get_property(property_name: string | null, value: any): void
16316
+ get_property(property_name: string, value: any): void
16574
16317
  /**
16575
16318
  * Gets a property of an object.
16576
16319
  *
@@ -16591,7 +16334,7 @@ interface Stack extends Atk.ImplementorIface, Clutter.Animatable, Clutter.Contai
16591
16334
  * @param property_name the name of the property to get
16592
16335
  * @param value return location for the property value
16593
16336
  */
16594
- get_property(property_name: string | null, value: any): void
16337
+ get_property(property_name: string, value: any): void
16595
16338
 
16596
16339
  // Class property signals of Mx-1.0.Mx.Stack
16597
16340
 
@@ -16908,10 +16651,6 @@ module StackChild {
16908
16651
 
16909
16652
  crop?: boolean | null
16910
16653
  fit?: boolean | null
16911
- x_align?: Align | null
16912
- x_fill?: boolean | null
16913
- y_align?: Align | null
16914
- y_fill?: boolean | null
16915
16654
  xAlign?: Align | null
16916
16655
  xFill?: boolean | null
16917
16656
  yAlign?: Align | null
@@ -16926,13 +16665,9 @@ interface StackChild {
16926
16665
 
16927
16666
  crop: boolean
16928
16667
  fit: boolean
16929
- x_align: Align
16930
16668
  xAlign: Align
16931
- x_fill: boolean
16932
16669
  xFill: boolean
16933
- y_align: Align
16934
16670
  yAlign: Align
16935
- y_fill: boolean
16936
16671
  yFill: boolean
16937
16672
 
16938
16673
  // Class property signals of Mx-1.0.Mx.StackChild
@@ -17031,13 +16766,13 @@ interface Style {
17031
16766
  * @param property_name the name of the property to get
17032
16767
  * @param value return location for the property value
17033
16768
  */
17034
- get_property(property_name: string | null, value: any): void
16769
+ get_property(property_name: string, value: any): void
17035
16770
  /**
17036
16771
  * Load style information from the specified file.
17037
16772
  * @param filename filename of the style sheet to load
17038
16773
  * @returns TRUE if the style information was loaded successfully. Returns FALSE on error.
17039
16774
  */
17040
- load_from_file(filename: string | null): boolean
16775
+ load_from_file(filename: string): boolean
17041
16776
 
17042
16777
  // Own virtual methods of Mx-1.0.Mx.Style
17043
16778
 
@@ -17103,8 +16838,6 @@ module Table {
17103
16838
 
17104
16839
  // Own constructor properties of Mx-1.0.Mx.Table
17105
16840
 
17106
- column_spacing?: number | null
17107
- row_spacing?: number | null
17108
16841
  columnSpacing?: number | null
17109
16842
  rowSpacing?: number | null
17110
16843
  }
@@ -17115,13 +16848,9 @@ interface Table extends Atk.ImplementorIface, Clutter.Animatable, Clutter.Contai
17115
16848
 
17116
16849
  // Own properties of Mx-1.0.Mx.Table
17117
16850
 
17118
- readonly column_count: number
17119
16851
  readonly columnCount: number
17120
- column_spacing: number
17121
16852
  columnSpacing: number
17122
- readonly row_count: number
17123
16853
  readonly rowCount: number
17124
- row_spacing: number
17125
16854
  rowSpacing: number
17126
16855
 
17127
16856
  // Owm methods of Mx-1.0.Mx.Table
@@ -17316,7 +17045,7 @@ interface Table extends Atk.ImplementorIface, Clutter.Animatable, Clutter.Contai
17316
17045
  * into `value`.
17317
17046
  * @param property_name the name of the property
17318
17047
  */
17319
- get_property(property_name: string | null): /* value */ any
17048
+ get_property(property_name: string): /* value */ any
17320
17049
 
17321
17050
  // Overloads of get_property
17322
17051
 
@@ -17340,7 +17069,7 @@ interface Table extends Atk.ImplementorIface, Clutter.Animatable, Clutter.Contai
17340
17069
  * @param property_name the name of the property to get
17341
17070
  * @param value return location for the property value
17342
17071
  */
17343
- get_property(property_name: string | null, value: any): void
17072
+ get_property(property_name: string, value: any): void
17344
17073
  /**
17345
17074
  * Gets a property of an object.
17346
17075
  *
@@ -17361,7 +17090,7 @@ interface Table extends Atk.ImplementorIface, Clutter.Animatable, Clutter.Contai
17361
17090
  * @param property_name the name of the property to get
17362
17091
  * @param value return location for the property value
17363
17092
  */
17364
- get_property(property_name: string | null, value: any): void
17093
+ get_property(property_name: string, value: any): void
17365
17094
 
17366
17095
  // Class property signals of Mx-1.0.Mx.Table
17367
17096
 
@@ -17689,16 +17418,8 @@ module TableChild {
17689
17418
  // Own constructor properties of Mx-1.0.Mx.TableChild
17690
17419
 
17691
17420
  column?: number | null
17692
- column_span?: number | null
17693
- row?: number | null
17694
- row_span?: number | null
17695
- x_align?: Align | null
17696
- x_expand?: boolean | null
17697
- x_fill?: boolean | null
17698
- y_align?: Align | null
17699
- y_expand?: boolean | null
17700
- y_fill?: boolean | null
17701
17421
  columnSpan?: number | null
17422
+ row?: number | null
17702
17423
  rowSpan?: number | null
17703
17424
  xAlign?: Align | null
17704
17425
  xExpand?: boolean | null
@@ -17715,22 +17436,14 @@ interface TableChild {
17715
17436
  // Own properties of Mx-1.0.Mx.TableChild
17716
17437
 
17717
17438
  column: number
17718
- column_span: number
17719
17439
  columnSpan: number
17720
17440
  row: number
17721
- row_span: number
17722
17441
  rowSpan: number
17723
- x_align: Align
17724
17442
  xAlign: Align
17725
- x_expand: boolean
17726
17443
  xExpand: boolean
17727
- x_fill: boolean
17728
17444
  xFill: boolean
17729
- y_align: Align
17730
17445
  yAlign: Align
17731
- y_expand: boolean
17732
17446
  yExpand: boolean
17733
- y_fill: boolean
17734
17447
  yFill: boolean
17735
17448
 
17736
17449
  // Class property signals of Mx-1.0.Mx.TableChild
@@ -17808,7 +17521,7 @@ interface TextureCache {
17808
17521
  * @param uri A URI or path to an image file
17809
17522
  * @returns %TRUE if the image exists, %FALSE otherwise
17810
17523
  */
17811
- contains(uri: string | null): boolean
17524
+ contains(uri: string): boolean
17812
17525
  /**
17813
17526
  * Checks whether there are any textures associated with the given URI by
17814
17527
  * the given identifier.
@@ -17816,14 +17529,14 @@ interface TextureCache {
17816
17529
  * @param ident A unique identifier
17817
17530
  * @returns %TRUE if the data exists, %FALSE otherwise
17818
17531
  */
17819
- contains_meta(uri: string | null, ident: any): boolean
17532
+ contains_meta(uri: string, ident: any): boolean
17820
17533
  /**
17821
17534
  * This is a wrapper around mx_texture_cache_get_texture() which returns
17822
17535
  * a ClutterActor.
17823
17536
  * @param uri A URI or path to a image file
17824
17537
  * @returns a newly created ClutterTexture
17825
17538
  */
17826
- get_actor(uri: string | null): Clutter.Actor
17539
+ get_actor(uri: string): Clutter.Actor
17827
17540
  /**
17828
17541
  * Create a #CoglHandle representing a texture of the specified image. Adds
17829
17542
  * the image to the cache if the image had not been previously loaded.
@@ -17832,7 +17545,7 @@ interface TextureCache {
17832
17545
  * @param uri A URI or path to an image file
17833
17546
  * @returns a #CoglHandle to the cached texture
17834
17547
  */
17835
- get_cogl_texture(uri: string | null): Cogl.Handle
17548
+ get_cogl_texture(uri: string): Cogl.Handle
17836
17549
  /**
17837
17550
  * Retrieves the #CoglHandle of the previously added image associated
17838
17551
  * with the given unique identifier.
@@ -17842,7 +17555,7 @@ interface TextureCache {
17842
17555
  * @param ident A unique identifier
17843
17556
  * @returns A #CoglHandle to a texture, with an added reference. %NULL if no image was found.
17844
17557
  */
17845
- get_meta_cogl_texture(uri: string | null, ident: any): Cogl.Handle
17558
+ get_meta_cogl_texture(uri: string, ident: any): Cogl.Handle
17846
17559
  /**
17847
17560
  * Create a new ClutterTexture using the previously added image associated
17848
17561
  * with the given unique identifier.
@@ -17852,7 +17565,7 @@ interface TextureCache {
17852
17565
  * @param ident A unique identifier
17853
17566
  * @returns A newly allocated #ClutterTexture, or %NULL if no image was found
17854
17567
  */
17855
- get_meta_texture(uri: string | null, ident: any): Clutter.Texture
17568
+ get_meta_texture(uri: string, ident: any): Clutter.Texture
17856
17569
  /**
17857
17570
  * Returns the number of items in the texture cache
17858
17571
  * @returns the current size of the cache
@@ -17866,7 +17579,7 @@ interface TextureCache {
17866
17579
  * @param uri A URI or path to a image file
17867
17580
  * @returns a newly created ClutterTexture
17868
17581
  */
17869
- get_texture(uri: string | null): Clutter.Texture
17582
+ get_texture(uri: string): Clutter.Texture
17870
17583
  /**
17871
17584
  * Inserts a texture into the texture cache. This can be useful if you
17872
17585
  * want to cache a texture from a custom or unhandled URI type, or you
@@ -17877,7 +17590,7 @@ interface TextureCache {
17877
17590
  * @param uri A URI or local file path
17878
17591
  * @param texture A #CoglHandle to a texture
17879
17592
  */
17880
- insert(uri: string | null, texture: Cogl.Handle): void
17593
+ insert(uri: string, texture: Cogl.Handle): void
17881
17594
  /**
17882
17595
  * Inserts a texture that's associated with a URI into the cache.
17883
17596
  * If the metadata already exists for this URI, it will be replaced.
@@ -17889,13 +17602,13 @@ interface TextureCache {
17889
17602
  * @param texture A #CoglHandle to a texture
17890
17603
  * @param destroy_func An optional destruction function for `ident`
17891
17604
  */
17892
- insert_meta(uri: string | null, ident: any, texture: Cogl.Handle, destroy_func: GLib.DestroyNotify): void
17893
- load_cache(filename: string | null): void
17605
+ insert_meta(uri: string, ident: any, texture: Cogl.Handle, destroy_func: GLib.DestroyNotify): void
17606
+ load_cache(filename: string): void
17894
17607
 
17895
17608
  // Own virtual methods of Mx-1.0.Mx.TextureCache
17896
17609
 
17897
17610
  vfunc_error_loading(error: GLib.Error): void
17898
- vfunc_loaded(uri: string | null, texture: Clutter.Texture): void
17611
+ vfunc_loaded(uri: string, texture: Clutter.Texture): void
17899
17612
 
17900
17613
  // Class property signals of Mx-1.0.Mx.TextureCache
17901
17614
 
@@ -17939,10 +17652,9 @@ module TextureFrame {
17939
17652
 
17940
17653
  bottom?: number | null
17941
17654
  left?: number | null
17942
- parent_texture?: Clutter.Texture | null
17655
+ parentTexture?: Clutter.Texture | null
17943
17656
  right?: number | null
17944
17657
  top?: number | null
17945
- parentTexture?: Clutter.Texture | null
17946
17658
  }
17947
17659
 
17948
17660
  }
@@ -17953,7 +17665,6 @@ interface TextureFrame extends Atk.ImplementorIface, Clutter.Animatable, Clutter
17953
17665
 
17954
17666
  bottom: number
17955
17667
  left: number
17956
- parent_texture: Clutter.Texture
17957
17668
  parentTexture: Clutter.Texture
17958
17669
  right: number
17959
17670
  top: number
@@ -18355,7 +18066,7 @@ interface Toggle extends Atk.ImplementorIface, Clutter.Animatable, Clutter.Conta
18355
18066
  * into `value`.
18356
18067
  * @param property_name the name of the property
18357
18068
  */
18358
- get_property(property_name: string | null): /* value */ any
18069
+ get_property(property_name: string): /* value */ any
18359
18070
 
18360
18071
  // Overloads of get_property
18361
18072
 
@@ -18379,7 +18090,7 @@ interface Toggle extends Atk.ImplementorIface, Clutter.Animatable, Clutter.Conta
18379
18090
  * @param property_name the name of the property to get
18380
18091
  * @param value return location for the property value
18381
18092
  */
18382
- get_property(property_name: string | null, value: any): void
18093
+ get_property(property_name: string, value: any): void
18383
18094
  /**
18384
18095
  * Gets a property of an object.
18385
18096
  *
@@ -18400,7 +18111,7 @@ interface Toggle extends Atk.ImplementorIface, Clutter.Animatable, Clutter.Conta
18400
18111
  * @param property_name the name of the property to get
18401
18112
  * @param value return location for the property value
18402
18113
  */
18403
- get_property(property_name: string | null, value: any): void
18114
+ get_property(property_name: string, value: any): void
18404
18115
 
18405
18116
  // Class property signals of Mx-1.0.Mx.Toggle
18406
18117
 
@@ -18718,7 +18429,6 @@ module Toolbar {
18718
18429
 
18719
18430
  // Own constructor properties of Mx-1.0.Mx.Toolbar
18720
18431
 
18721
- has_close_button?: boolean | null
18722
18432
  hasCloseButton?: boolean | null
18723
18433
  }
18724
18434
 
@@ -18728,14 +18438,11 @@ interface Toolbar extends Atk.ImplementorIface, Clutter.Animatable, Clutter.Cont
18728
18438
 
18729
18439
  // Own properties of Mx-1.0.Mx.Toolbar
18730
18440
 
18731
- has_close_button: boolean
18732
18441
  hasCloseButton: boolean
18733
18442
 
18734
18443
  // Conflicting properties
18735
18444
 
18736
- x_align: any
18737
18445
  xAlign: any
18738
- y_align: any
18739
18446
  yAlign: any
18740
18447
 
18741
18448
  // Own fields of Mx-1.0.Mx.Toolbar
@@ -18763,7 +18470,7 @@ interface Toolbar extends Atk.ImplementorIface, Clutter.Animatable, Clutter.Cont
18763
18470
  * into `value`.
18764
18471
  * @param property_name the name of the property
18765
18472
  */
18766
- get_property(property_name: string | null): /* value */ any
18473
+ get_property(property_name: string): /* value */ any
18767
18474
 
18768
18475
  // Overloads of get_property
18769
18476
 
@@ -18787,7 +18494,7 @@ interface Toolbar extends Atk.ImplementorIface, Clutter.Animatable, Clutter.Cont
18787
18494
  * @param property_name the name of the property to get
18788
18495
  * @param value return location for the property value
18789
18496
  */
18790
- get_property(property_name: string | null, value: any): void
18497
+ get_property(property_name: string, value: any): void
18791
18498
  /**
18792
18499
  * Gets a property of an object.
18793
18500
  *
@@ -18808,7 +18515,7 @@ interface Toolbar extends Atk.ImplementorIface, Clutter.Animatable, Clutter.Cont
18808
18515
  * @param property_name the name of the property to get
18809
18516
  * @param value return location for the property value
18810
18517
  */
18811
- get_property(property_name: string | null, value: any): void
18518
+ get_property(property_name: string, value: any): void
18812
18519
 
18813
18520
  // Own virtual methods of Mx-1.0.Mx.Toolbar
18814
18521
 
@@ -19148,7 +18855,6 @@ module Tooltip {
19148
18855
  // Own constructor properties of Mx-1.0.Mx.Tooltip
19149
18856
 
19150
18857
  text?: string | null
19151
- tip_area?: Clutter.Geometry | null
19152
18858
  tipArea?: Clutter.Geometry | null
19153
18859
  }
19154
18860
 
@@ -19159,7 +18865,6 @@ interface Tooltip extends Atk.ImplementorIface, Clutter.Animatable, Clutter.Cont
19159
18865
  // Own properties of Mx-1.0.Mx.Tooltip
19160
18866
 
19161
18867
  text: string | null
19162
- tip_area: Clutter.Geometry
19163
18868
  tipArea: Clutter.Geometry
19164
18869
 
19165
18870
  // Owm methods of Mx-1.0.Mx.Tooltip
@@ -19168,7 +18873,7 @@ interface Tooltip extends Atk.ImplementorIface, Clutter.Animatable, Clutter.Cont
19168
18873
  * Get the text displayed on the tooltip
19169
18874
  * @returns the text for the tooltip. This must not be freed by the application
19170
18875
  */
19171
- get_text(): string | null
18876
+ get_text(): string
19172
18877
  /**
19173
18878
  * Retrieve the area on the stage that the tooltip currently applies to
19174
18879
  * @returns the #ClutterGeometry, owned by the tooltip which must not be freed by the application.
@@ -19182,7 +18887,7 @@ interface Tooltip extends Atk.ImplementorIface, Clutter.Animatable, Clutter.Cont
19182
18887
  * Sets the text displayed on the tooltip
19183
18888
  * @param text text to set the label to
19184
18889
  */
19185
- set_text(text: string | null): void
18890
+ set_text(text: string): void
19186
18891
  /**
19187
18892
  * Set the area on the stage that the tooltip applies to.
19188
18893
  * @param area A #ClutterGeometry
@@ -19207,7 +18912,7 @@ interface Tooltip extends Atk.ImplementorIface, Clutter.Animatable, Clutter.Cont
19207
18912
  * into `value`.
19208
18913
  * @param property_name the name of the property
19209
18914
  */
19210
- get_property(property_name: string | null): /* value */ any
18915
+ get_property(property_name: string): /* value */ any
19211
18916
 
19212
18917
  // Overloads of get_property
19213
18918
 
@@ -19231,7 +18936,7 @@ interface Tooltip extends Atk.ImplementorIface, Clutter.Animatable, Clutter.Cont
19231
18936
  * @param property_name the name of the property to get
19232
18937
  * @param value return location for the property value
19233
18938
  */
19234
- get_property(property_name: string | null, value: any): void
18939
+ get_property(property_name: string, value: any): void
19235
18940
  /**
19236
18941
  * Gets a property of an object.
19237
18942
  *
@@ -19252,7 +18957,7 @@ interface Tooltip extends Atk.ImplementorIface, Clutter.Animatable, Clutter.Cont
19252
18957
  * @param property_name the name of the property to get
19253
18958
  * @param value return location for the property value
19254
18959
  */
19255
- get_property(property_name: string | null, value: any): void
18960
+ get_property(property_name: string, value: any): void
19256
18961
 
19257
18962
  // Class property signals of Mx-1.0.Mx.Tooltip
19258
18963
 
@@ -19569,10 +19274,6 @@ module Viewport {
19569
19274
 
19570
19275
  // Own constructor properties of Mx-1.0.Mx.Viewport
19571
19276
 
19572
- sync_adjustments?: boolean | null
19573
- x_origin?: number | null
19574
- y_origin?: number | null
19575
- z_origin?: number | null
19576
19277
  syncAdjustments?: boolean | null
19577
19278
  xOrigin?: number | null
19578
19279
  yOrigin?: number | null
@@ -19585,20 +19286,14 @@ interface Viewport extends Atk.ImplementorIface, Clutter.Animatable, Clutter.Con
19585
19286
 
19586
19287
  // Own properties of Mx-1.0.Mx.Viewport
19587
19288
 
19588
- sync_adjustments: boolean
19589
19289
  syncAdjustments: boolean
19590
- x_origin: number
19591
19290
  xOrigin: number
19592
- y_origin: number
19593
19291
  yOrigin: number
19594
- z_origin: number
19595
19292
  zOrigin: number
19596
19293
 
19597
19294
  // Conflicting properties
19598
19295
 
19599
- x_align: any
19600
19296
  xAlign: any
19601
- y_align: any
19602
19297
  yAlign: any
19603
19298
 
19604
19299
  // Owm methods of Mx-1.0.Mx.Viewport
@@ -19615,7 +19310,7 @@ interface Viewport extends Atk.ImplementorIface, Clutter.Animatable, Clutter.Con
19615
19310
  * into `value`.
19616
19311
  * @param property_name the name of the property
19617
19312
  */
19618
- get_property(property_name: string | null): /* value */ any
19313
+ get_property(property_name: string): /* value */ any
19619
19314
 
19620
19315
  // Overloads of get_property
19621
19316
 
@@ -19639,7 +19334,7 @@ interface Viewport extends Atk.ImplementorIface, Clutter.Animatable, Clutter.Con
19639
19334
  * @param property_name the name of the property to get
19640
19335
  * @param value return location for the property value
19641
19336
  */
19642
- get_property(property_name: string | null, value: any): void
19337
+ get_property(property_name: string, value: any): void
19643
19338
  /**
19644
19339
  * Gets a property of an object.
19645
19340
  *
@@ -19660,7 +19355,7 @@ interface Viewport extends Atk.ImplementorIface, Clutter.Animatable, Clutter.Con
19660
19355
  * @param property_name the name of the property to get
19661
19356
  * @param value return location for the property value
19662
19357
  */
19663
- get_property(property_name: string | null, value: any): void
19358
+ get_property(property_name: string, value: any): void
19664
19359
 
19665
19360
  // Class property signals of Mx-1.0.Mx.Viewport
19666
19361
 
@@ -20007,11 +19702,6 @@ module Widget {
20007
19702
  * #MxMenu associated with the widget.
20008
19703
  */
20009
19704
  menu?: Menu | null
20010
- tooltip_delay?: number | null
20011
- /**
20012
- * text displayed on the tooltip
20013
- */
20014
- tooltip_text?: string | null
20015
19705
  tooltipDelay?: number | null
20016
19706
  /**
20017
19707
  * text displayed on the tooltip
@@ -20030,12 +19720,7 @@ interface Widget extends Atk.ImplementorIface, Clutter.Animatable, Clutter.Conta
20030
19720
  * #MxMenu associated with the widget.
20031
19721
  */
20032
19722
  menu: Menu
20033
- tooltip_delay: number
20034
19723
  tooltipDelay: number
20035
- /**
20036
- * text displayed on the tooltip
20037
- */
20038
- tooltip_text: string | null
20039
19724
  /**
20040
19725
  * text displayed on the tooltip
20041
19726
  */
@@ -20094,7 +19779,7 @@ interface Widget extends Atk.ImplementorIface, Clutter.Animatable, Clutter.Conta
20094
19779
  * Get the current tooltip string
20095
19780
  * @returns The current tooltip string, owned by the #MxWidget
20096
19781
  */
20097
- get_tooltip_text(): string | null
19782
+ get_tooltip_text(): string
20098
19783
  /**
20099
19784
  * Hide the tooltip for `widget`
20100
19785
  */
@@ -20141,7 +19826,7 @@ interface Widget extends Atk.ImplementorIface, Clutter.Animatable, Clutter.Conta
20141
19826
  * %FALSE.
20142
19827
  * @param text text to set as the tooltip
20143
19828
  */
20144
- set_tooltip_text(text: string | null): void
19829
+ set_tooltip_text(text: string): void
20145
19830
  /**
20146
19831
  * Show the tooltip for `widget`
20147
19832
  */
@@ -20154,7 +19839,7 @@ interface Widget extends Atk.ImplementorIface, Clutter.Animatable, Clutter.Conta
20154
19839
  * into `value`.
20155
19840
  * @param property_name the name of the property
20156
19841
  */
20157
- get_property(property_name: string | null): /* value */ any
19842
+ get_property(property_name: string): /* value */ any
20158
19843
 
20159
19844
  // Overloads of get_property
20160
19845
 
@@ -20178,7 +19863,7 @@ interface Widget extends Atk.ImplementorIface, Clutter.Animatable, Clutter.Conta
20178
19863
  * @param property_name the name of the property to get
20179
19864
  * @param value return location for the property value
20180
19865
  */
20181
- get_property(property_name: string | null, value: any): void
19866
+ get_property(property_name: string, value: any): void
20182
19867
  /**
20183
19868
  * Gets a property of an object.
20184
19869
  *
@@ -20199,7 +19884,7 @@ interface Widget extends Atk.ImplementorIface, Clutter.Animatable, Clutter.Conta
20199
19884
  * @param property_name the name of the property to get
20200
19885
  * @param value return location for the property value
20201
19886
  */
20202
- get_property(property_name: string | null, value: any): void
19887
+ get_property(property_name: string, value: any): void
20203
19888
 
20204
19889
  // Own virtual methods of Mx-1.0.Mx.Widget
20205
19890
 
@@ -20532,20 +20217,14 @@ module Window {
20532
20217
  // Own constructor properties of Mx-1.0.Mx.Window
20533
20218
 
20534
20219
  child?: Clutter.Actor | null
20535
- clutter_stage?: Clutter.Stage | null
20536
- fullscreen?: boolean | null
20537
- has_toolbar?: boolean | null
20538
- icon_cogl_texture?: string | null
20539
- icon_name?: string | null
20540
- small_screen?: boolean | null
20541
- title?: string | null
20542
- toolbar?: Toolbar | null
20543
- window_rotation?: WindowRotation | null
20544
20220
  clutterStage?: Clutter.Stage | null
20221
+ fullscreen?: boolean | null
20545
20222
  hasToolbar?: boolean | null
20546
20223
  iconCoglTexture?: string | null
20547
20224
  iconName?: string | null
20548
20225
  smallScreen?: boolean | null
20226
+ title?: string | null
20227
+ toolbar?: Toolbar | null
20549
20228
  windowRotation?: WindowRotation | null
20550
20229
  }
20551
20230
 
@@ -20556,24 +20235,16 @@ interface Window {
20556
20235
  // Own properties of Mx-1.0.Mx.Window
20557
20236
 
20558
20237
  child: Clutter.Actor
20559
- readonly clutter_stage: Clutter.Stage
20560
20238
  readonly clutterStage: Clutter.Stage
20561
20239
  fullscreen: boolean
20562
- has_toolbar: boolean
20563
20240
  hasToolbar: boolean
20564
- icon_cogl_texture: string | null
20565
20241
  iconCoglTexture: string | null
20566
- icon_name: string | null
20567
20242
  iconName: string | null
20568
- small_screen: boolean
20569
20243
  smallScreen: boolean
20570
20244
  title: string | null
20571
20245
  toolbar: Toolbar
20572
- window_rotation: WindowRotation
20573
20246
  windowRotation: WindowRotation
20574
- readonly window_rotation_angle: number
20575
20247
  readonly windowRotationAngle: number
20576
- readonly window_rotation_timeline: Clutter.Timeline
20577
20248
  readonly windowRotationTimeline: Clutter.Timeline
20578
20249
 
20579
20250
  // Own fields of Mx-1.0.Mx.Window
@@ -20609,7 +20280,7 @@ interface Window {
20609
20280
  * set, or the icon was set with mx_window_set_icon_from_cogl_texture().
20610
20281
  * @returns The window icon name, or %NULL
20611
20282
  */
20612
- get_icon_name(): string | null
20283
+ get_icon_name(): string
20613
20284
  /**
20614
20285
  * Determines if the window is in small-screen mode.
20615
20286
  * See mx_window_set_small_screen().
@@ -20620,7 +20291,7 @@ interface Window {
20620
20291
  * Retrieves the title used for the window.
20621
20292
  * @returns The title used for the window
20622
20293
  */
20623
- get_title(): string | null
20294
+ get_title(): string
20624
20295
  /**
20625
20296
  * Retrieves the toolbar associated with the window.
20626
20297
  * @returns A #MxToolbar
@@ -20698,7 +20369,7 @@ interface Window {
20698
20369
  * window-system specific.
20699
20370
  * @param title A string to use for the window title name
20700
20371
  */
20701
- set_title(title: string | null): void
20372
+ set_title(title: string): void
20702
20373
  /**
20703
20374
  * Sets the toolbar associated with the window.
20704
20375
  * @param toolbar
@@ -20987,7 +20658,7 @@ class BorderImage {
20987
20658
 
20988
20659
  // Constructors of Mx-1.0.Mx.BorderImage
20989
20660
 
20990
- static set_from_string(value: any, str: string | null, filename: string | null): void
20661
+ static set_from_string(value: any, str: string, filename: string): void
20991
20662
  }
20992
20663
 
20993
20664
  interface BoxLayoutChildClass {
@@ -22028,10 +21699,10 @@ interface StylableIface {
22028
21699
 
22029
21700
  get_style: (stylable: Stylable) => Style
22030
21701
  set_style: (stylable: Stylable, style: Style) => void
22031
- get_style_class: (stylable: Stylable) => string | null
22032
- set_style_class: (stylable: Stylable, style_class: string | null) => void
22033
- get_style_pseudo_class: (stylable: Stylable) => string | null
22034
- set_style_pseudo_class: (stylable: Stylable, pseudo_class: string | null) => void
21702
+ get_style_class: (stylable: Stylable) => string
21703
+ set_style_class: (stylable: Stylable, style_class: string) => void
21704
+ get_style_pseudo_class: (stylable: Stylable) => string
21705
+ set_style_pseudo_class: (stylable: Stylable, pseudo_class: string) => void
22035
21706
  style_changed: (stylable: Stylable, flags: StyleChangedFlags) => void
22036
21707
  }
22037
21708
 
@@ -22149,7 +21820,7 @@ interface TextureCacheClass {
22149
21820
  // Own fields of Mx-1.0.Mx.TextureCacheClass
22150
21821
 
22151
21822
  parent_class: GObject.ObjectClass
22152
- loaded: (self: TextureCache, uri: string | null, texture: Clutter.Texture) => void
21823
+ loaded: (self: TextureCache, uri: string, texture: Clutter.Texture) => void
22153
21824
  error_loading: (self: TextureCache, error: GLib.Error) => void
22154
21825
  }
22155
21826