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

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.
Files changed (4) hide show
  1. package/README.md +1 -1
  2. package/mx-1.0.d.cts +208 -208
  3. package/mx-1.0.d.ts +208 -208
  4. package/package.json +19 -19
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
 
@@ -1284,20 +1284,20 @@ interface Stylable {
1284
1284
  * @param property_name the name of the property to find
1285
1285
  * @returns a #GParamSpec for the given property, or %NULL if no property with that name was found
1286
1286
  */
1287
- find_property(property_name: string | null): GObject.ParamSpec
1287
+ find_property(property_name: string): GObject.ParamSpec
1288
1288
  /**
1289
1289
  * Query `stylable` for the default value of property `property_name` and
1290
1290
  * fill `value_out` with the result.
1291
1291
  * @param property_name name of the property to query
1292
1292
  * @returns %TRUE if property @property_name exists and the default value has been returned.
1293
1293
  */
1294
- get_default_value(property_name: string | null): [ /* returnType */ boolean, /* value_out */ any ]
1294
+ get_default_value(property_name: string): [ /* returnType */ boolean, /* value_out */ any ]
1295
1295
  /**
1296
1296
  * Retrieves the value of `property_name` for `stylable,` and puts it
1297
1297
  * into `value`.
1298
1298
  * @param property_name the name of the property
1299
1299
  */
1300
- get_property(property_name: string | null): /* value */ any
1300
+ get_property(property_name: string): /* value */ any
1301
1301
 
1302
1302
  // Overloads of get_property
1303
1303
 
@@ -1321,7 +1321,7 @@ interface Stylable {
1321
1321
  * @param property_name the name of the property to get
1322
1322
  * @param value return location for the property value
1323
1323
  */
1324
- get_property(property_name: string | null, value: any): void
1324
+ get_property(property_name: string, value: any): void
1325
1325
  /**
1326
1326
  * Retrieves the #MxStyle used by `stylable`. This function does not
1327
1327
  * alter the reference count of the returned object.
@@ -1332,13 +1332,13 @@ interface Stylable {
1332
1332
  * Get the current style class name
1333
1333
  * @returns the class name string. The string is owned by the #MxWidget and should not be modified or freed.
1334
1334
  */
1335
- get_style_class(): string | null
1335
+ get_style_class(): string
1336
1336
  /**
1337
1337
  * Get the current style pseudo class. This can contain multiple pseudo class
1338
1338
  * names, separated by ':'.
1339
1339
  * @returns the pseudo class string. The string is owned by the #MxWidget and should not be modified or freed.
1340
1340
  */
1341
- get_style_pseudo_class(): string | null
1341
+ get_style_pseudo_class(): string
1342
1342
  /**
1343
1343
  * Retrieves all the #GParamSpec<!-- -->s installed by `stylable`.
1344
1344
  * @returns an array of #GParamSpec<!-- -->s. Free it with g_free() when done.
@@ -1358,13 +1358,13 @@ interface Stylable {
1358
1358
  * Set the style class name
1359
1359
  * @param style_class a new style class string
1360
1360
  */
1361
- set_style_class(style_class: string | null): void
1361
+ set_style_class(style_class: string): void
1362
1362
  /**
1363
1363
  * Set the style pseudo class. The string can contain multiple pseudo class
1364
1364
  * names, separated by ':'.
1365
1365
  * @param pseudo_class a new pseudo class string
1366
1366
  */
1367
- set_style_pseudo_class(pseudo_class: string | null): void
1367
+ set_style_pseudo_class(pseudo_class: string): void
1368
1368
  /**
1369
1369
  * Emit the "style-changed" signal on `stylable` to notify it that one or more
1370
1370
  * of the style properties has changed.
@@ -1380,20 +1380,20 @@ interface Stylable {
1380
1380
  * #MxStylable:style-pseudo-class property.
1381
1381
  * @param new_class A pseudo-class name to add
1382
1382
  */
1383
- style_pseudo_class_add(new_class: string | null): void
1383
+ style_pseudo_class_add(new_class: string): void
1384
1384
  /**
1385
1385
  * Check if the given pseudo-class name is contained in the list of
1386
1386
  * set pseudo classes on this #MxStylable object.
1387
1387
  * @param pseudo_class A pseudo-class name
1388
1388
  * @returns %TRUE if the given pseudo-class is set, %FALSE otherwise
1389
1389
  */
1390
- style_pseudo_class_contains(pseudo_class: string | null): boolean
1390
+ style_pseudo_class_contains(pseudo_class: string): boolean
1391
1391
  /**
1392
1392
  * Remove the specified pseudo class name from the list of pseudo classes
1393
1393
  * contained in the #MxStylable:style-pseudo-class property.
1394
1394
  * @param remove_class A pseudo class name to remove
1395
1395
  */
1396
- style_pseudo_class_remove(remove_class: string | null): void
1396
+ style_pseudo_class_remove(remove_class: string): void
1397
1397
 
1398
1398
  // Own virtual methods of Mx-1.0.Mx.Stylable
1399
1399
 
@@ -1409,14 +1409,14 @@ interface Stylable {
1409
1409
  * @virtual
1410
1410
  * @returns the class name string. The string is owned by the #MxWidget and should not be modified or freed.
1411
1411
  */
1412
- vfunc_get_style_class(): string | null
1412
+ vfunc_get_style_class(): string
1413
1413
  /**
1414
1414
  * Get the current style pseudo class. This can contain multiple pseudo class
1415
1415
  * names, separated by ':'.
1416
1416
  * @virtual
1417
1417
  * @returns the pseudo class string. The string is owned by the #MxWidget and should not be modified or freed.
1418
1418
  */
1419
- vfunc_get_style_pseudo_class(): string | null
1419
+ vfunc_get_style_pseudo_class(): string
1420
1420
  /**
1421
1421
  * Sets `style` as the new #MxStyle to be used by `stylable`.
1422
1422
  *
@@ -1433,14 +1433,14 @@ interface Stylable {
1433
1433
  * @virtual
1434
1434
  * @param style_class a new style class string
1435
1435
  */
1436
- vfunc_set_style_class(style_class: string | null): void
1436
+ vfunc_set_style_class(style_class: string): void
1437
1437
  /**
1438
1438
  * Set the style pseudo class. The string can contain multiple pseudo class
1439
1439
  * names, separated by ':'.
1440
1440
  * @virtual
1441
1441
  * @param pseudo_class a new pseudo class string
1442
1442
  */
1443
- vfunc_set_style_pseudo_class(pseudo_class: string | null): void
1443
+ vfunc_set_style_pseudo_class(pseudo_class: string): void
1444
1444
  /**
1445
1445
  * Emit the "style-changed" signal on `stylable` to notify it that one or more
1446
1446
  * of the style properties has changed.
@@ -1582,17 +1582,17 @@ interface Action extends Gio.Action {
1582
1582
  * Get the display name of the action
1583
1583
  * @returns display-name of the action, owned by MxAction
1584
1584
  */
1585
- get_display_name(): string | null
1585
+ get_display_name(): string
1586
1586
  /**
1587
1587
  * Get the icon of the action
1588
1588
  * @returns icon of the action, owned by MxAction
1589
1589
  */
1590
- get_icon(): string | null
1590
+ get_icon(): string
1591
1591
  /**
1592
1592
  * Get the name of the action
1593
1593
  * @returns name of the action, owned by MxAction
1594
1594
  */
1595
- get_name(): string | null
1595
+ get_name(): string
1596
1596
  /**
1597
1597
  * Set the value of the active property
1598
1598
  * @param active the value to set
@@ -1602,17 +1602,17 @@ interface Action extends Gio.Action {
1602
1602
  * Set the name of the action to display to the user
1603
1603
  * @param name new display name to set
1604
1604
  */
1605
- set_display_name(name: string | null): void
1605
+ set_display_name(name: string): void
1606
1606
  /**
1607
1607
  * The icon to be used in a visual representation of an action.
1608
1608
  * @param name new icon to set
1609
1609
  */
1610
- set_icon(name: string | null): void
1610
+ set_icon(name: string): void
1611
1611
  /**
1612
1612
  * Set the name of the action
1613
1613
  * @param name new name to set
1614
1614
  */
1615
- set_name(name: string | null): void
1615
+ set_name(name: string): void
1616
1616
 
1617
1617
  // Own virtual methods of Mx-1.0.Mx.Action
1618
1618
 
@@ -1694,7 +1694,7 @@ class Action extends GObject.InitiallyUnowned {
1694
1694
  * @param activated_cb callback to connect to the activated signal
1695
1695
  * @returns a newly allocated #MxAction
1696
1696
  */
1697
- static new_full(name: string | null, display_name: string | null, activated_cb: ActionCallbackFunc | null): Action
1697
+ static new_full(name: string, display_name: string, activated_cb: ActionCallbackFunc | null): Action
1698
1698
  /**
1699
1699
  * Creates a new stateful action.
1700
1700
  *
@@ -1706,7 +1706,7 @@ class Action extends GObject.InitiallyUnowned {
1706
1706
  * @param state the initial state of the action
1707
1707
  * @returns a new #MxAction
1708
1708
  */
1709
- static new_stateful(name: string | null, parameter_type: GLib.VariantType | null, state: GLib.Variant): Action
1709
+ static new_stateful(name: string, parameter_type: GLib.VariantType | null, state: GLib.Variant): Action
1710
1710
  /**
1711
1711
  * Creates a new action with a parameter.
1712
1712
  *
@@ -1716,7 +1716,7 @@ class Action extends GObject.InitiallyUnowned {
1716
1716
  * @param parameter_type the type of parameter to the activate function
1717
1717
  * @returns a new #MxAction
1718
1718
  */
1719
- static new_with_parameter(name: string | null, parameter_type?: GLib.VariantType | null): Action
1719
+ static new_with_parameter(name: string, parameter_type?: GLib.VariantType | null): Action
1720
1720
  _init(config?: Action.ConstructorProperties): void
1721
1721
  }
1722
1722
 
@@ -2324,14 +2324,14 @@ interface Application {
2324
2324
  * Run the named action for the application.
2325
2325
  * @param name name of the action to invoke
2326
2326
  */
2327
- invoke_action(name: string | null): void
2327
+ invoke_action(name: string): void
2328
2328
  /**
2329
2329
  * Run the named action for the application, passing `variant` as the parameter
2330
2330
  * for the action.
2331
2331
  * @param name name of the action to invoke
2332
2332
  * @param variant parameter for the action
2333
2333
  */
2334
- invoke_action_with_parameter(name: string | null, variant: GLib.Variant): void
2334
+ invoke_action_with_parameter(name: string, variant: GLib.Variant): void
2335
2335
  /**
2336
2336
  * Query whether #MxApplication is running. This will also return #TRUE if the
2337
2337
  * given #MxApplication is single instance and there is an instance already
@@ -2348,7 +2348,7 @@ interface Application {
2348
2348
  * Remove the action with the specified name from the application.
2349
2349
  * @param name name of the action to remove
2350
2350
  */
2351
- remove_action(name: string | null): void
2351
+ remove_action(name: string): void
2352
2352
  /**
2353
2353
  * Remove the specified window from the application. This will cause the window
2354
2354
  * to be unreferenced and destroyed unless another reference is held on it.
@@ -2419,7 +2419,7 @@ class Application extends GObject.Object {
2419
2419
  * @param flags Application flags.
2420
2420
  * @returns the #MxApplication singleton.
2421
2421
  */
2422
- constructor(argv: string[] | null, name: string | null, flags: ApplicationFlags)
2422
+ constructor(argv: string[] | null, name: string, flags: ApplicationFlags)
2423
2423
  /**
2424
2424
  * Intialises everything needed to operate Clutter and use #MxApplication.
2425
2425
  * See clutter_init().
@@ -2429,7 +2429,7 @@ class Application extends GObject.Object {
2429
2429
  * @param flags Application flags.
2430
2430
  * @returns the #MxApplication singleton.
2431
2431
  */
2432
- static new(argv: string[] | null, name: string | null, flags: ApplicationFlags): Application
2432
+ static new(argv: string[] | null, name: string, flags: ApplicationFlags): Application
2433
2433
  _init(config?: Application.ConstructorProperties): void
2434
2434
  }
2435
2435
 
@@ -2580,7 +2580,7 @@ interface Bin extends Atk.ImplementorIface, Clutter.Animatable, Clutter.Containe
2580
2580
  * into `value`.
2581
2581
  * @param property_name the name of the property
2582
2582
  */
2583
- get_property(property_name: string | null): /* value */ any
2583
+ get_property(property_name: string): /* value */ any
2584
2584
 
2585
2585
  // Overloads of get_property
2586
2586
 
@@ -2604,7 +2604,7 @@ interface Bin extends Atk.ImplementorIface, Clutter.Animatable, Clutter.Containe
2604
2604
  * @param property_name the name of the property to get
2605
2605
  * @param value return location for the property value
2606
2606
  */
2607
- get_property(property_name: string | null, value: any): void
2607
+ get_property(property_name: string, value: any): void
2608
2608
  /**
2609
2609
  * Gets a property of an object.
2610
2610
  *
@@ -2625,7 +2625,7 @@ interface Bin extends Atk.ImplementorIface, Clutter.Animatable, Clutter.Containe
2625
2625
  * @param property_name the name of the property to get
2626
2626
  * @param value return location for the property value
2627
2627
  */
2628
- get_property(property_name: string | null, value: any): void
2628
+ get_property(property_name: string, value: any): void
2629
2629
 
2630
2630
  // Class property signals of Mx-1.0.Mx.Bin
2631
2631
 
@@ -3088,7 +3088,7 @@ interface BoxLayout extends Atk.ImplementorIface, Clutter.Animatable, Clutter.Co
3088
3088
  * into `value`.
3089
3089
  * @param property_name the name of the property
3090
3090
  */
3091
- get_property(property_name: string | null): /* value */ any
3091
+ get_property(property_name: string): /* value */ any
3092
3092
 
3093
3093
  // Overloads of get_property
3094
3094
 
@@ -3112,7 +3112,7 @@ interface BoxLayout extends Atk.ImplementorIface, Clutter.Animatable, Clutter.Co
3112
3112
  * @param property_name the name of the property to get
3113
3113
  * @param value return location for the property value
3114
3114
  */
3115
- get_property(property_name: string | null, value: any): void
3115
+ get_property(property_name: string, value: any): void
3116
3116
  /**
3117
3117
  * Gets a property of an object.
3118
3118
  *
@@ -3133,7 +3133,7 @@ interface BoxLayout extends Atk.ImplementorIface, Clutter.Animatable, Clutter.Co
3133
3133
  * @param property_name the name of the property to get
3134
3134
  * @param value return location for the property value
3135
3135
  */
3136
- get_property(property_name: string | null, value: any): void
3136
+ get_property(property_name: string, value: any): void
3137
3137
 
3138
3138
  // Class property signals of Mx-1.0.Mx.BoxLayout
3139
3139
 
@@ -3614,12 +3614,12 @@ interface Button extends Atk.ImplementorIface, Clutter.Animatable, Clutter.Conta
3614
3614
  * @param name the name of the action to retrieve
3615
3615
  * @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
3616
  */
3617
- get_action(name: string | null): Clutter.Action
3617
+ get_action(name: string): Clutter.Action
3618
3618
  /**
3619
3619
  * Get the icon-name being used on the button.
3620
3620
  * @returns the icon-name. This must not be freed by the application. %NULL if no icon has been set
3621
3621
  */
3622
- get_icon_name(): string | null
3622
+ get_icon_name(): string
3623
3623
  /**
3624
3624
  * Retrieves the icon's relative position to the text.
3625
3625
  * @returns A #MxPosition
@@ -3644,7 +3644,7 @@ interface Button extends Atk.ImplementorIface, Clutter.Animatable, Clutter.Conta
3644
3644
  * Get the text displayed on the button
3645
3645
  * @returns the text for the button. This must not be freed by the application
3646
3646
  */
3647
- get_label(): string | null
3647
+ get_label(): string
3648
3648
  /**
3649
3649
  * Retrieves the visibility of the text associated with the button's action.
3650
3650
  * @returns %TRUE if the text is visible, %FALSE otherwise
@@ -3695,7 +3695,7 @@ interface Button extends Atk.ImplementorIface, Clutter.Animatable, Clutter.Conta
3695
3695
  * Sets the text displayed on the button
3696
3696
  * @param text text to set the label to
3697
3697
  */
3698
- set_label(text: string | null): void
3698
+ set_label(text: string): void
3699
3699
  /**
3700
3700
  * Sets the visibility of the text associated with the button's action.
3701
3701
  * @param visible %TRUE if the text should be visible
@@ -3715,7 +3715,7 @@ interface Button extends Atk.ImplementorIface, Clutter.Animatable, Clutter.Conta
3715
3715
  * into `value`.
3716
3716
  * @param property_name the name of the property
3717
3717
  */
3718
- get_property(property_name: string | null): /* value */ any
3718
+ get_property(property_name: string): /* value */ any
3719
3719
 
3720
3720
  // Overloads of get_property
3721
3721
 
@@ -3739,7 +3739,7 @@ interface Button extends Atk.ImplementorIface, Clutter.Animatable, Clutter.Conta
3739
3739
  * @param property_name the name of the property to get
3740
3740
  * @param value return location for the property value
3741
3741
  */
3742
- get_property(property_name: string | null, value: any): void
3742
+ get_property(property_name: string, value: any): void
3743
3743
  /**
3744
3744
  * Gets a property of an object.
3745
3745
  *
@@ -3760,7 +3760,7 @@ interface Button extends Atk.ImplementorIface, Clutter.Animatable, Clutter.Conta
3760
3760
  * @param property_name the name of the property to get
3761
3761
  * @param value return location for the property value
3762
3762
  */
3763
- get_property(property_name: string | null, value: any): void
3763
+ get_property(property_name: string, value: any): void
3764
3764
 
3765
3765
  // Own virtual methods of Mx-1.0.Mx.Button
3766
3766
 
@@ -4116,7 +4116,7 @@ class Button extends Bin {
4116
4116
  * @param text text to set the label to
4117
4117
  * @returns a new #MxButton
4118
4118
  */
4119
- static new_with_label(text: string | null): Button
4119
+ static new_with_label(text: string): Button
4120
4120
  _init(config?: Button.ConstructorProperties): void
4121
4121
  }
4122
4122
 
@@ -4261,7 +4261,7 @@ interface Clipboard {
4261
4261
  * Sets text as the current contents of the clipboard.
4262
4262
  * @param text text to copy to the clipboard
4263
4263
  */
4264
- set_text(text: string | null): void
4264
+ set_text(text: string): void
4265
4265
 
4266
4266
  // Class property signals of Mx-1.0.Mx.Clipboard
4267
4267
 
@@ -4327,17 +4327,17 @@ interface ComboBox extends Atk.ImplementorIface, Clutter.Animatable, Clutter.Con
4327
4327
  * Append an item to the combo box list
4328
4328
  * @param text name of the item
4329
4329
  */
4330
- append_text(text: string | null): void
4330
+ append_text(text: string): void
4331
4331
  /**
4332
4332
  * Get the name of the icon displayed in the combo box
4333
4333
  * @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
4334
  */
4335
- get_active_icon_name(): string | null
4335
+ get_active_icon_name(): string
4336
4336
  /**
4337
4337
  * Get the text displayed in the combo box
4338
4338
  * @returns the text string, owned by the combo box
4339
4339
  */
4340
- get_active_text(): string | null
4340
+ get_active_text(): string
4341
4341
  /**
4342
4342
  * Get the index of the last item selected
4343
4343
  * @returns gint
@@ -4348,19 +4348,19 @@ interface ComboBox extends Atk.ImplementorIface, Clutter.Animatable, Clutter.Con
4348
4348
  * @param position zero indexed position to insert the item at
4349
4349
  * @param text name of the item
4350
4350
  */
4351
- insert_text(position: number, text: string | null): void
4351
+ insert_text(position: number, text: string): void
4352
4352
  /**
4353
4353
  * Insert an item with text and an icon into the combo box list.
4354
4354
  * @param position zero indexed position to insert the item at
4355
4355
  * @param text name of the item
4356
4356
  * @param icon name of an icon from the icon theme
4357
4357
  */
4358
- insert_text_with_icon(position: number, text: string | null, icon: string | null): void
4358
+ insert_text_with_icon(position: number, text: string, icon: string): void
4359
4359
  /**
4360
4360
  * Prepend an item to the combo box list
4361
4361
  * @param text name of the item
4362
4362
  */
4363
- prepend_text(text: string | null): void
4363
+ prepend_text(text: string): void
4364
4364
  /**
4365
4365
  * Remove all the items of `box`
4366
4366
  */
@@ -4379,7 +4379,7 @@ interface ComboBox extends Atk.ImplementorIface, Clutter.Animatable, Clutter.Con
4379
4379
  * Set the text displayed in the combo box
4380
4380
  * @param text text to display
4381
4381
  */
4382
- set_active_text(text: string | null): void
4382
+ set_active_text(text: string): void
4383
4383
  /**
4384
4384
  * Set the current combo box text from the item at `index` in the list.
4385
4385
  * @param index the index of the list item to set
@@ -4393,7 +4393,7 @@ interface ComboBox extends Atk.ImplementorIface, Clutter.Animatable, Clutter.Con
4393
4393
  * into `value`.
4394
4394
  * @param property_name the name of the property
4395
4395
  */
4396
- get_property(property_name: string | null): /* value */ any
4396
+ get_property(property_name: string): /* value */ any
4397
4397
 
4398
4398
  // Overloads of get_property
4399
4399
 
@@ -4417,7 +4417,7 @@ interface ComboBox extends Atk.ImplementorIface, Clutter.Animatable, Clutter.Con
4417
4417
  * @param property_name the name of the property to get
4418
4418
  * @param value return location for the property value
4419
4419
  */
4420
- get_property(property_name: string | null, value: any): void
4420
+ get_property(property_name: string, value: any): void
4421
4421
  /**
4422
4422
  * Gets a property of an object.
4423
4423
  *
@@ -4438,7 +4438,7 @@ interface ComboBox extends Atk.ImplementorIface, Clutter.Animatable, Clutter.Con
4438
4438
  * @param property_name the name of the property to get
4439
4439
  * @param value return location for the property value
4440
4440
  */
4441
- get_property(property_name: string | null, value: any): void
4441
+ get_property(property_name: string, value: any): void
4442
4442
 
4443
4443
  // Class property signals of Mx-1.0.Mx.ComboBox
4444
4444
 
@@ -4796,7 +4796,7 @@ interface DeformBowTie extends Atk.ImplementorIface, Clutter.Animatable, Clutter
4796
4796
  * into `value`.
4797
4797
  * @param property_name the name of the property
4798
4798
  */
4799
- get_property(property_name: string | null): /* value */ any
4799
+ get_property(property_name: string): /* value */ any
4800
4800
 
4801
4801
  // Overloads of get_property
4802
4802
 
@@ -4820,7 +4820,7 @@ interface DeformBowTie extends Atk.ImplementorIface, Clutter.Animatable, Clutter
4820
4820
  * @param property_name the name of the property to get
4821
4821
  * @param value return location for the property value
4822
4822
  */
4823
- get_property(property_name: string | null, value: any): void
4823
+ get_property(property_name: string, value: any): void
4824
4824
  /**
4825
4825
  * Gets a property of an object.
4826
4826
  *
@@ -4841,7 +4841,7 @@ interface DeformBowTie extends Atk.ImplementorIface, Clutter.Animatable, Clutter
4841
4841
  * @param property_name the name of the property to get
4842
4842
  * @param value return location for the property value
4843
4843
  */
4844
- get_property(property_name: string | null, value: any): void
4844
+ get_property(property_name: string, value: any): void
4845
4845
 
4846
4846
  // Class property signals of Mx-1.0.Mx.DeformBowTie
4847
4847
 
@@ -5200,7 +5200,7 @@ interface DeformPageTurn extends Atk.ImplementorIface, Clutter.Animatable, Clutt
5200
5200
  * into `value`.
5201
5201
  * @param property_name the name of the property
5202
5202
  */
5203
- get_property(property_name: string | null): /* value */ any
5203
+ get_property(property_name: string): /* value */ any
5204
5204
 
5205
5205
  // Overloads of get_property
5206
5206
 
@@ -5224,7 +5224,7 @@ interface DeformPageTurn extends Atk.ImplementorIface, Clutter.Animatable, Clutt
5224
5224
  * @param property_name the name of the property to get
5225
5225
  * @param value return location for the property value
5226
5226
  */
5227
- get_property(property_name: string | null, value: any): void
5227
+ get_property(property_name: string, value: any): void
5228
5228
  /**
5229
5229
  * Gets a property of an object.
5230
5230
  *
@@ -5245,7 +5245,7 @@ interface DeformPageTurn extends Atk.ImplementorIface, Clutter.Animatable, Clutt
5245
5245
  * @param property_name the name of the property to get
5246
5246
  * @param value return location for the property value
5247
5247
  */
5248
- get_property(property_name: string | null, value: any): void
5248
+ get_property(property_name: string, value: any): void
5249
5249
 
5250
5250
  // Class property signals of Mx-1.0.Mx.DeformPageTurn
5251
5251
 
@@ -5634,7 +5634,7 @@ interface DeformTexture extends Atk.ImplementorIface, Clutter.Animatable, Clutte
5634
5634
  * into `value`.
5635
5635
  * @param property_name the name of the property
5636
5636
  */
5637
- get_property(property_name: string | null): /* value */ any
5637
+ get_property(property_name: string): /* value */ any
5638
5638
 
5639
5639
  // Overloads of get_property
5640
5640
 
@@ -5658,7 +5658,7 @@ interface DeformTexture extends Atk.ImplementorIface, Clutter.Animatable, Clutte
5658
5658
  * @param property_name the name of the property to get
5659
5659
  * @param value return location for the property value
5660
5660
  */
5661
- get_property(property_name: string | null, value: any): void
5661
+ get_property(property_name: string, value: any): void
5662
5662
  /**
5663
5663
  * Gets a property of an object.
5664
5664
  *
@@ -5679,7 +5679,7 @@ interface DeformTexture extends Atk.ImplementorIface, Clutter.Animatable, Clutte
5679
5679
  * @param property_name the name of the property to get
5680
5680
  * @param value return location for the property value
5681
5681
  */
5682
- get_property(property_name: string | null, value: any): void
5682
+ get_property(property_name: string, value: any): void
5683
5683
 
5684
5684
  // Own virtual methods of Mx-1.0.Mx.DeformTexture
5685
5685
 
@@ -6038,7 +6038,7 @@ interface DeformWaves extends Atk.ImplementorIface, Clutter.Animatable, Clutter.
6038
6038
  * into `value`.
6039
6039
  * @param property_name the name of the property
6040
6040
  */
6041
- get_property(property_name: string | null): /* value */ any
6041
+ get_property(property_name: string): /* value */ any
6042
6042
 
6043
6043
  // Overloads of get_property
6044
6044
 
@@ -6062,7 +6062,7 @@ interface DeformWaves extends Atk.ImplementorIface, Clutter.Animatable, Clutter.
6062
6062
  * @param property_name the name of the property to get
6063
6063
  * @param value return location for the property value
6064
6064
  */
6065
- get_property(property_name: string | null, value: any): void
6065
+ get_property(property_name: string, value: any): void
6066
6066
  /**
6067
6067
  * Gets a property of an object.
6068
6068
  *
@@ -6083,7 +6083,7 @@ interface DeformWaves extends Atk.ImplementorIface, Clutter.Animatable, Clutter.
6083
6083
  * @param property_name the name of the property to get
6084
6084
  * @param value return location for the property value
6085
6085
  */
6086
- get_property(property_name: string | null, value: any): void
6086
+ get_property(property_name: string, value: any): void
6087
6087
 
6088
6088
  // Class property signals of Mx-1.0.Mx.DeformWaves
6089
6089
 
@@ -6485,7 +6485,7 @@ interface Dialog extends Atk.ImplementorIface, Clutter.Animatable, Clutter.Conta
6485
6485
  * into `value`.
6486
6486
  * @param property_name the name of the property
6487
6487
  */
6488
- get_property(property_name: string | null): /* value */ any
6488
+ get_property(property_name: string): /* value */ any
6489
6489
 
6490
6490
  // Overloads of get_property
6491
6491
 
@@ -6509,7 +6509,7 @@ interface Dialog extends Atk.ImplementorIface, Clutter.Animatable, Clutter.Conta
6509
6509
  * @param property_name the name of the property to get
6510
6510
  * @param value return location for the property value
6511
6511
  */
6512
- get_property(property_name: string | null, value: any): void
6512
+ get_property(property_name: string, value: any): void
6513
6513
  /**
6514
6514
  * Gets a property of an object.
6515
6515
  *
@@ -6530,7 +6530,7 @@ interface Dialog extends Atk.ImplementorIface, Clutter.Animatable, Clutter.Conta
6530
6530
  * @param property_name the name of the property to get
6531
6531
  * @param value return location for the property value
6532
6532
  */
6533
- get_property(property_name: string | null, value: any): void
6533
+ get_property(property_name: string, value: any): void
6534
6534
 
6535
6535
  // Class property signals of Mx-1.0.Mx.Dialog
6536
6536
 
@@ -6915,13 +6915,13 @@ interface Entry extends Atk.ImplementorIface, Clutter.Animatable, Clutter.Contai
6915
6915
  * Gets the text that is displayed when the entry is empty and unfocused
6916
6916
  * @returns the current value of the hint property. This string is owned by the #MxEntry and should not be freed or modified.
6917
6917
  */
6918
- get_hint_text(): string | null
6918
+ get_hint_text(): string
6919
6919
  /**
6920
6920
  * Get the suffix appended to the filename to use for the highlighted version
6921
6921
  * of the icon.
6922
6922
  * @returns the highlight filename suffix. This string is owned by the #MxEntry and should not be freed or modified.
6923
6923
  */
6924
- get_icon_highlight_suffix(): string | null
6924
+ get_icon_highlight_suffix(): string
6925
6925
  /**
6926
6926
  * Gets the character to display instead of the text.
6927
6927
  * @returns a character, or 0 if input should not be hidden.
@@ -6931,14 +6931,14 @@ interface Entry extends Atk.ImplementorIface, Clutter.Animatable, Clutter.Contai
6931
6931
  * Get the text displayed on the entry
6932
6932
  * @returns the text for the entry. This must not be freed by the application
6933
6933
  */
6934
- get_text(): string | null
6934
+ get_text(): string
6935
6935
  /**
6936
6936
  * Sets the text to display when the entry is empty and unfocused. When the
6937
6937
  * entry is displaying the hint, it has a pseudo class of "indeterminate".
6938
6938
  * A value of NULL unsets the hint.
6939
6939
  * @param text text to set as the entry hint
6940
6940
  */
6941
- set_hint_text(text: string | null): void
6941
+ set_hint_text(text: string): void
6942
6942
  /**
6943
6943
  * Sets the suffix appended to the filename to use for the highlighted version
6944
6944
  * of the icon. e.g. if you have set your primay icon to "primary-icon.png"
@@ -6946,7 +6946,7 @@ interface Entry extends Atk.ImplementorIface, Clutter.Animatable, Clutter.Contai
6946
6946
  * "primary-icon-highlight.png"
6947
6947
  * @param suffix the suffix to append to the filename for the highlight version
6948
6948
  */
6949
- set_icon_highlight_suffix(suffix: string | null): void
6949
+ set_icon_highlight_suffix(suffix: string): void
6950
6950
  /**
6951
6951
  * Sets the character to display instead of the text. Use 0 to display
6952
6952
  * the actual text.
@@ -6957,19 +6957,19 @@ interface Entry extends Atk.ImplementorIface, Clutter.Animatable, Clutter.Contai
6957
6957
  * Set the primary icon of the entry to the given filename
6958
6958
  * @param filename filename of an icon
6959
6959
  */
6960
- set_primary_icon_from_file(filename: string | null): void
6961
- set_primary_icon_tooltip_text(text: string | null): void
6960
+ set_primary_icon_from_file(filename: string): void
6961
+ set_primary_icon_tooltip_text(text: string): void
6962
6962
  /**
6963
6963
  * Set the primary icon of the entry to the given filename
6964
6964
  * @param filename filename of an icon
6965
6965
  */
6966
- set_secondary_icon_from_file(filename: string | null): void
6967
- set_secondary_icon_tooltip_text(text: string | null): void
6966
+ set_secondary_icon_from_file(filename: string): void
6967
+ set_secondary_icon_tooltip_text(text: string): void
6968
6968
  /**
6969
6969
  * Sets the text displayed on the entry
6970
6970
  * @param text text to set the entry to
6971
6971
  */
6972
- set_text(text: string | null): void
6972
+ set_text(text: string): void
6973
6973
 
6974
6974
  // Conflicting methods
6975
6975
 
@@ -6978,7 +6978,7 @@ interface Entry extends Atk.ImplementorIface, Clutter.Animatable, Clutter.Contai
6978
6978
  * into `value`.
6979
6979
  * @param property_name the name of the property
6980
6980
  */
6981
- get_property(property_name: string | null): /* value */ any
6981
+ get_property(property_name: string): /* value */ any
6982
6982
 
6983
6983
  // Overloads of get_property
6984
6984
 
@@ -7002,7 +7002,7 @@ interface Entry extends Atk.ImplementorIface, Clutter.Animatable, Clutter.Contai
7002
7002
  * @param property_name the name of the property to get
7003
7003
  * @param value return location for the property value
7004
7004
  */
7005
- get_property(property_name: string | null, value: any): void
7005
+ get_property(property_name: string, value: any): void
7006
7006
  /**
7007
7007
  * Gets a property of an object.
7008
7008
  *
@@ -7023,7 +7023,7 @@ interface Entry extends Atk.ImplementorIface, Clutter.Animatable, Clutter.Contai
7023
7023
  * @param property_name the name of the property to get
7024
7024
  * @param value return location for the property value
7025
7025
  */
7026
- get_property(property_name: string | null, value: any): void
7026
+ get_property(property_name: string, value: any): void
7027
7027
 
7028
7028
  // Own virtual methods of Mx-1.0.Mx.Entry
7029
7029
 
@@ -7368,7 +7368,7 @@ class Entry extends Widget {
7368
7368
  * @param text text to set the entry to
7369
7369
  * @returns a new #MxEntry
7370
7370
  */
7371
- static new_with_text(text: string | null): Entry
7371
+ static new_with_text(text: string): Entry
7372
7372
  _init(config?: Entry.ConstructorProperties): void
7373
7373
  }
7374
7374
 
@@ -7427,7 +7427,7 @@ interface Expander extends Atk.ImplementorIface, Clutter.Animatable, Clutter.Con
7427
7427
  * Sets the text displayed as the title of the expander
7428
7428
  * @param label string to set as the expander label
7429
7429
  */
7430
- set_label(label: string | null): void
7430
+ set_label(label: string): void
7431
7431
 
7432
7432
  // Conflicting methods
7433
7433
 
@@ -7436,7 +7436,7 @@ interface Expander extends Atk.ImplementorIface, Clutter.Animatable, Clutter.Con
7436
7436
  * into `value`.
7437
7437
  * @param property_name the name of the property
7438
7438
  */
7439
- get_property(property_name: string | null): /* value */ any
7439
+ get_property(property_name: string): /* value */ any
7440
7440
 
7441
7441
  // Overloads of get_property
7442
7442
 
@@ -7460,7 +7460,7 @@ interface Expander extends Atk.ImplementorIface, Clutter.Animatable, Clutter.Con
7460
7460
  * @param property_name the name of the property to get
7461
7461
  * @param value return location for the property value
7462
7462
  */
7463
- get_property(property_name: string | null, value: any): void
7463
+ get_property(property_name: string, value: any): void
7464
7464
  /**
7465
7465
  * Gets a property of an object.
7466
7466
  *
@@ -7481,7 +7481,7 @@ interface Expander extends Atk.ImplementorIface, Clutter.Animatable, Clutter.Con
7481
7481
  * @param property_name the name of the property to get
7482
7482
  * @param value return location for the property value
7483
7483
  */
7484
- get_property(property_name: string | null, value: any): void
7484
+ get_property(property_name: string, value: any): void
7485
7485
 
7486
7486
  // Own virtual methods of Mx-1.0.Mx.Expander
7487
7487
 
@@ -8014,7 +8014,7 @@ interface FloatingWidget extends Atk.ImplementorIface, Clutter.Animatable, Clutt
8014
8014
  * into `value`.
8015
8015
  * @param property_name the name of the property
8016
8016
  */
8017
- get_property(property_name: string | null): /* value */ any
8017
+ get_property(property_name: string): /* value */ any
8018
8018
 
8019
8019
  // Overloads of get_property
8020
8020
 
@@ -8038,7 +8038,7 @@ interface FloatingWidget extends Atk.ImplementorIface, Clutter.Animatable, Clutt
8038
8038
  * @param property_name the name of the property to get
8039
8039
  * @param value return location for the property value
8040
8040
  */
8041
- get_property(property_name: string | null, value: any): void
8041
+ get_property(property_name: string, value: any): void
8042
8042
  /**
8043
8043
  * Gets a property of an object.
8044
8044
  *
@@ -8059,7 +8059,7 @@ interface FloatingWidget extends Atk.ImplementorIface, Clutter.Animatable, Clutt
8059
8059
  * @param property_name the name of the property to get
8060
8060
  * @param value return location for the property value
8061
8061
  */
8062
- get_property(property_name: string | null, value: any): void
8062
+ get_property(property_name: string, value: any): void
8063
8063
 
8064
8064
  // Class property signals of Mx-1.0.Mx.FloatingWidget
8065
8065
 
@@ -8480,7 +8480,7 @@ interface Frame extends Atk.ImplementorIface, Clutter.Animatable, Clutter.Contai
8480
8480
  * into `value`.
8481
8481
  * @param property_name the name of the property
8482
8482
  */
8483
- get_property(property_name: string | null): /* value */ any
8483
+ get_property(property_name: string): /* value */ any
8484
8484
 
8485
8485
  // Overloads of get_property
8486
8486
 
@@ -8504,7 +8504,7 @@ interface Frame extends Atk.ImplementorIface, Clutter.Animatable, Clutter.Contai
8504
8504
  * @param property_name the name of the property to get
8505
8505
  * @param value return location for the property value
8506
8506
  */
8507
- get_property(property_name: string | null, value: any): void
8507
+ get_property(property_name: string, value: any): void
8508
8508
  /**
8509
8509
  * Gets a property of an object.
8510
8510
  *
@@ -8525,7 +8525,7 @@ interface Frame extends Atk.ImplementorIface, Clutter.Animatable, Clutter.Contai
8525
8525
  * @param property_name the name of the property to get
8526
8526
  * @param value return location for the property value
8527
8527
  */
8528
- get_property(property_name: string | null, value: any): void
8528
+ get_property(property_name: string, value: any): void
8529
8529
 
8530
8530
  // Class property signals of Mx-1.0.Mx.Frame
8531
8531
 
@@ -8920,7 +8920,7 @@ interface Grid extends Atk.ImplementorIface, Clutter.Animatable, Clutter.Contain
8920
8920
  * into `value`.
8921
8921
  * @param property_name the name of the property
8922
8922
  */
8923
- get_property(property_name: string | null): /* value */ any
8923
+ get_property(property_name: string): /* value */ any
8924
8924
 
8925
8925
  // Overloads of get_property
8926
8926
 
@@ -8944,7 +8944,7 @@ interface Grid extends Atk.ImplementorIface, Clutter.Animatable, Clutter.Contain
8944
8944
  * @param property_name the name of the property to get
8945
8945
  * @param value return location for the property value
8946
8946
  */
8947
- get_property(property_name: string | null, value: any): void
8947
+ get_property(property_name: string, value: any): void
8948
8948
  /**
8949
8949
  * Gets a property of an object.
8950
8950
  *
@@ -8965,7 +8965,7 @@ interface Grid extends Atk.ImplementorIface, Clutter.Animatable, Clutter.Contain
8965
8965
  * @param property_name the name of the property to get
8966
8966
  * @param value return location for the property value
8967
8967
  */
8968
- get_property(property_name: string | null, value: any): void
8968
+ get_property(property_name: string, value: any): void
8969
8969
 
8970
8970
  // Class property signals of Mx-1.0.Mx.Grid
8971
8971
 
@@ -9322,9 +9322,9 @@ interface Icon extends Atk.ImplementorIface, Clutter.Animatable, Clutter.Contain
9322
9322
 
9323
9323
  // Owm methods of Mx-1.0.Mx.Icon
9324
9324
 
9325
- get_icon_name(): string | null
9325
+ get_icon_name(): string
9326
9326
  get_icon_size(): number
9327
- set_icon_name(icon_name: string | null): void
9327
+ set_icon_name(icon_name: string): void
9328
9328
  set_icon_size(size: number): void
9329
9329
 
9330
9330
  // Conflicting methods
@@ -9334,7 +9334,7 @@ interface Icon extends Atk.ImplementorIface, Clutter.Animatable, Clutter.Contain
9334
9334
  * into `value`.
9335
9335
  * @param property_name the name of the property
9336
9336
  */
9337
- get_property(property_name: string | null): /* value */ any
9337
+ get_property(property_name: string): /* value */ any
9338
9338
 
9339
9339
  // Overloads of get_property
9340
9340
 
@@ -9358,7 +9358,7 @@ interface Icon extends Atk.ImplementorIface, Clutter.Animatable, Clutter.Contain
9358
9358
  * @param property_name the name of the property to get
9359
9359
  * @param value return location for the property value
9360
9360
  */
9361
- get_property(property_name: string | null, value: any): void
9361
+ get_property(property_name: string, value: any): void
9362
9362
  /**
9363
9363
  * Gets a property of an object.
9364
9364
  *
@@ -9379,7 +9379,7 @@ interface Icon extends Atk.ImplementorIface, Clutter.Animatable, Clutter.Contain
9379
9379
  * @param property_name the name of the property to get
9380
9380
  * @param value return location for the property value
9381
9381
  */
9382
- get_property(property_name: string | null, value: any): void
9382
+ get_property(property_name: string, value: any): void
9383
9383
 
9384
9384
  // Class property signals of Mx-1.0.Mx.Icon
9385
9385
 
@@ -9729,22 +9729,22 @@ interface IconTheme {
9729
9729
  * Get the value of the #MxIconTheme:theme-name property.
9730
9730
  * @returns the current value of the "theme-name" property.
9731
9731
  */
9732
- get_theme_name(): string | null
9733
- has_icon(icon_name: string | null): boolean
9732
+ get_theme_name(): string
9733
+ has_icon(icon_name: string): boolean
9734
9734
  /**
9735
9735
  * If the icon is available, returns a #CoglHandle of the icon.
9736
9736
  * @param icon_name The name of the icon
9737
9737
  * @param size The desired size of the icon
9738
9738
  * @returns a #CoglHandle of the icon, or %NULL.
9739
9739
  */
9740
- lookup(icon_name: string | null, size: number): Cogl.Handle
9740
+ lookup(icon_name: string, size: number): Cogl.Handle
9741
9741
  /**
9742
9742
  * If the icon is available, returns a #ClutterTexture of the icon.
9743
9743
  * @param icon_name The name of the icon
9744
9744
  * @param size The desired size of the icon
9745
9745
  * @returns a #ClutterTexture of the icon, or %NULL.
9746
9746
  */
9747
- lookup_texture(icon_name: string | null, size: number): Clutter.Texture
9747
+ lookup_texture(icon_name: string, size: number): Clutter.Texture
9748
9748
  /**
9749
9749
  * Sets the directories the #MxIconTheme will search in to find icons.
9750
9750
  * By default, it will look in the default system and local icon
@@ -9762,7 +9762,7 @@ interface IconTheme {
9762
9762
  * icon theme, this function can be called with a %NULL `theme_name` argument.
9763
9763
  * @param theme_name the name of an icon theme to load, or %NULL
9764
9764
  */
9765
- set_theme_name(theme_name: string | null): void
9765
+ set_theme_name(theme_name: string): void
9766
9766
 
9767
9767
  // Class property signals of Mx-1.0.Mx.IconTheme
9768
9768
 
@@ -9980,7 +9980,7 @@ interface Image extends Atk.ImplementorIface, Clutter.Animatable, Clutter.Contai
9980
9980
  * @param filename Filename to read the file from
9981
9981
  * @returns #TRUE if the image was successfully updated
9982
9982
  */
9983
- set_from_file(filename: string | null): boolean
9983
+ set_from_file(filename: string): boolean
9984
9984
  /**
9985
9985
  * Set the image data from an image file, and scale the image during loading.
9986
9986
  * In case of failure, #FALSE is returned and `error` is set. The aspect ratio
@@ -9990,7 +9990,7 @@ interface Image extends Atk.ImplementorIface, Clutter.Animatable, Clutter.Contai
9990
9990
  * @param height Height to scale the image to, or -1
9991
9991
  * @returns #TRUE if the image was successfully updated
9992
9992
  */
9993
- set_from_file_at_size(filename: string | null, width: number, height: number): boolean
9993
+ set_from_file_at_size(filename: string, width: number, height: number): boolean
9994
9994
  /**
9995
9995
  * Set the MxImage:image-rotation property.
9996
9996
  * @param rotation Rotation angle in degrees
@@ -10045,7 +10045,7 @@ interface Image extends Atk.ImplementorIface, Clutter.Animatable, Clutter.Contai
10045
10045
  * into `value`.
10046
10046
  * @param property_name the name of the property
10047
10047
  */
10048
- get_property(property_name: string | null): /* value */ any
10048
+ get_property(property_name: string): /* value */ any
10049
10049
 
10050
10050
  // Overloads of get_property
10051
10051
 
@@ -10069,7 +10069,7 @@ interface Image extends Atk.ImplementorIface, Clutter.Animatable, Clutter.Contai
10069
10069
  * @param property_name the name of the property to get
10070
10070
  * @param value return location for the property value
10071
10071
  */
10072
- get_property(property_name: string | null, value: any): void
10072
+ get_property(property_name: string, value: any): void
10073
10073
  /**
10074
10074
  * Gets a property of an object.
10075
10075
  *
@@ -10090,7 +10090,7 @@ interface Image extends Atk.ImplementorIface, Clutter.Animatable, Clutter.Contai
10090
10090
  * @param property_name the name of the property to get
10091
10091
  * @param value return location for the property value
10092
10092
  */
10093
- get_property(property_name: string | null, value: any): void
10093
+ get_property(property_name: string, value: any): void
10094
10094
 
10095
10095
  // Own virtual methods of Mx-1.0.Mx.Image
10096
10096
 
@@ -10465,7 +10465,7 @@ interface ItemView extends Atk.ImplementorIface, Clutter.Animatable, Clutter.Con
10465
10465
  * @param attribute Name of the attribute
10466
10466
  * @param column Column number
10467
10467
  */
10468
- add_attribute(attribute: string | null, column: number): void
10468
+ add_attribute(attribute: string, column: number): void
10469
10469
  /**
10470
10470
  * Freeze the view. This means that the view will not act on changes to the
10471
10471
  * model until it is thawed. Call #mx_item_view_thaw to thaw the view
@@ -10515,7 +10515,7 @@ interface ItemView extends Atk.ImplementorIface, Clutter.Animatable, Clutter.Con
10515
10515
  * into `value`.
10516
10516
  * @param property_name the name of the property
10517
10517
  */
10518
- get_property(property_name: string | null): /* value */ any
10518
+ get_property(property_name: string): /* value */ any
10519
10519
 
10520
10520
  // Overloads of get_property
10521
10521
 
@@ -10539,7 +10539,7 @@ interface ItemView extends Atk.ImplementorIface, Clutter.Animatable, Clutter.Con
10539
10539
  * @param property_name the name of the property to get
10540
10540
  * @param value return location for the property value
10541
10541
  */
10542
- get_property(property_name: string | null, value: any): void
10542
+ get_property(property_name: string, value: any): void
10543
10543
  /**
10544
10544
  * Gets a property of an object.
10545
10545
  *
@@ -10560,7 +10560,7 @@ interface ItemView extends Atk.ImplementorIface, Clutter.Animatable, Clutter.Con
10560
10560
  * @param property_name the name of the property to get
10561
10561
  * @param value return location for the property value
10562
10562
  */
10563
- get_property(property_name: string | null, value: any): void
10563
+ get_property(property_name: string, value: any): void
10564
10564
 
10565
10565
  // Class property signals of Mx-1.0.Mx.ItemView
10566
10566
 
@@ -11081,7 +11081,7 @@ interface KineticScrollView extends Atk.ImplementorIface, Clutter.Animatable, Cl
11081
11081
  * into `value`.
11082
11082
  * @param property_name the name of the property
11083
11083
  */
11084
- get_property(property_name: string | null): /* value */ any
11084
+ get_property(property_name: string): /* value */ any
11085
11085
 
11086
11086
  // Overloads of get_property
11087
11087
 
@@ -11105,7 +11105,7 @@ interface KineticScrollView extends Atk.ImplementorIface, Clutter.Animatable, Cl
11105
11105
  * @param property_name the name of the property to get
11106
11106
  * @param value return location for the property value
11107
11107
  */
11108
- get_property(property_name: string | null, value: any): void
11108
+ get_property(property_name: string, value: any): void
11109
11109
  /**
11110
11110
  * Gets a property of an object.
11111
11111
  *
@@ -11126,7 +11126,7 @@ interface KineticScrollView extends Atk.ImplementorIface, Clutter.Animatable, Cl
11126
11126
  * @param property_name the name of the property to get
11127
11127
  * @param value return location for the property value
11128
11128
  */
11129
- get_property(property_name: string | null, value: any): void
11129
+ get_property(property_name: string, value: any): void
11130
11130
 
11131
11131
  // Class property signals of Mx-1.0.Mx.KineticScrollView
11132
11132
 
@@ -11581,7 +11581,7 @@ interface Label extends Atk.ImplementorIface, Clutter.Animatable, Clutter.Contai
11581
11581
  * Get the text displayed on the label
11582
11582
  * @returns the text for the label. This must not be freed by the application
11583
11583
  */
11584
- get_text(): string | null
11584
+ get_text(): string
11585
11585
  /**
11586
11586
  * Determines whether the text of the label is being treated as Pango markup.
11587
11587
  * @returns %TRUE if the text of the label is treated as Pango markup, %FALSE otherwise.
@@ -11628,7 +11628,7 @@ interface Label extends Atk.ImplementorIface, Clutter.Animatable, Clutter.Contai
11628
11628
  * Sets the text displayed on the label
11629
11629
  * @param text text to set the label to
11630
11630
  */
11631
- set_text(text: string | null): void
11631
+ set_text(text: string): void
11632
11632
  /**
11633
11633
  * Sets whether the text of the label should be treated as Pango markup.
11634
11634
  * @param use_markup %TRUE to use Pango markup, %FALSE otherwise
@@ -11666,7 +11666,7 @@ interface Label extends Atk.ImplementorIface, Clutter.Animatable, Clutter.Contai
11666
11666
  * into `value`.
11667
11667
  * @param property_name the name of the property
11668
11668
  */
11669
- get_property(property_name: string | null): /* value */ any
11669
+ get_property(property_name: string): /* value */ any
11670
11670
 
11671
11671
  // Overloads of get_property
11672
11672
 
@@ -11690,7 +11690,7 @@ interface Label extends Atk.ImplementorIface, Clutter.Animatable, Clutter.Contai
11690
11690
  * @param property_name the name of the property to get
11691
11691
  * @param value return location for the property value
11692
11692
  */
11693
- get_property(property_name: string | null, value: any): void
11693
+ get_property(property_name: string, value: any): void
11694
11694
  /**
11695
11695
  * Gets a property of an object.
11696
11696
  *
@@ -11711,7 +11711,7 @@ interface Label extends Atk.ImplementorIface, Clutter.Animatable, Clutter.Contai
11711
11711
  * @param property_name the name of the property to get
11712
11712
  * @param value return location for the property value
11713
11713
  */
11714
- get_property(property_name: string | null, value: any): void
11714
+ get_property(property_name: string, value: any): void
11715
11715
 
11716
11716
  // Class property signals of Mx-1.0.Mx.Label
11717
11717
 
@@ -12039,7 +12039,7 @@ class Label extends Widget {
12039
12039
  * @param text text to set the label to
12040
12040
  * @returns a new #MxLabel
12041
12041
  */
12042
- static new_with_text(text: string | null): Label
12042
+ static new_with_text(text: string): Label
12043
12043
  _init(config?: Label.ConstructorProperties): void
12044
12044
  }
12045
12045
 
@@ -12076,7 +12076,7 @@ interface ListView extends Atk.ImplementorIface, Clutter.Animatable, Clutter.Con
12076
12076
  * @param attribute Name of the attribute
12077
12077
  * @param column Column number
12078
12078
  */
12079
- add_attribute(attribute: string | null, column: number): void
12079
+ add_attribute(attribute: string, column: number): void
12080
12080
  /**
12081
12081
  * Freeze the view. This means that the view will not act on changes to the
12082
12082
  * model until it is thawed. Call #mx_list_view_thaw to thaw the view.
@@ -12126,7 +12126,7 @@ interface ListView extends Atk.ImplementorIface, Clutter.Animatable, Clutter.Con
12126
12126
  * into `value`.
12127
12127
  * @param property_name the name of the property
12128
12128
  */
12129
- get_property(property_name: string | null): /* value */ any
12129
+ get_property(property_name: string): /* value */ any
12130
12130
 
12131
12131
  // Overloads of get_property
12132
12132
 
@@ -12150,7 +12150,7 @@ interface ListView extends Atk.ImplementorIface, Clutter.Animatable, Clutter.Con
12150
12150
  * @param property_name the name of the property to get
12151
12151
  * @param value return location for the property value
12152
12152
  */
12153
- get_property(property_name: string | null, value: any): void
12153
+ get_property(property_name: string, value: any): void
12154
12154
  /**
12155
12155
  * Gets a property of an object.
12156
12156
  *
@@ -12171,7 +12171,7 @@ interface ListView extends Atk.ImplementorIface, Clutter.Animatable, Clutter.Con
12171
12171
  * @param property_name the name of the property to get
12172
12172
  * @param value return location for the property value
12173
12173
  */
12174
- get_property(property_name: string | null, value: any): void
12174
+ get_property(property_name: string, value: any): void
12175
12175
  /**
12176
12176
  * Adds a #ClutterActor to `container`. This function will emit the
12177
12177
  * "actor-added" signal. The actor should be parented to
@@ -12613,7 +12613,7 @@ interface Menu extends Atk.ImplementorIface, Clutter.Animatable, Clutter.Contain
12613
12613
  * into `value`.
12614
12614
  * @param property_name the name of the property
12615
12615
  */
12616
- get_property(property_name: string | null): /* value */ any
12616
+ get_property(property_name: string): /* value */ any
12617
12617
 
12618
12618
  // Overloads of get_property
12619
12619
 
@@ -12637,7 +12637,7 @@ interface Menu extends Atk.ImplementorIface, Clutter.Animatable, Clutter.Contain
12637
12637
  * @param property_name the name of the property to get
12638
12638
  * @param value return location for the property value
12639
12639
  */
12640
- get_property(property_name: string | null, value: any): void
12640
+ get_property(property_name: string, value: any): void
12641
12641
  /**
12642
12642
  * Gets a property of an object.
12643
12643
  *
@@ -12658,7 +12658,7 @@ interface Menu extends Atk.ImplementorIface, Clutter.Animatable, Clutter.Contain
12658
12658
  * @param property_name the name of the property to get
12659
12659
  * @param value return location for the property value
12660
12660
  */
12661
- get_property(property_name: string | null, value: any): void
12661
+ get_property(property_name: string, value: any): void
12662
12662
 
12663
12663
  // Own virtual methods of Mx-1.0.Mx.Menu
12664
12664
 
@@ -13023,7 +13023,7 @@ interface Notebook extends Atk.ImplementorIface, Clutter.Animatable, Clutter.Con
13023
13023
  * into `value`.
13024
13024
  * @param property_name the name of the property
13025
13025
  */
13026
- get_property(property_name: string | null): /* value */ any
13026
+ get_property(property_name: string): /* value */ any
13027
13027
 
13028
13028
  // Overloads of get_property
13029
13029
 
@@ -13047,7 +13047,7 @@ interface Notebook extends Atk.ImplementorIface, Clutter.Animatable, Clutter.Con
13047
13047
  * @param property_name the name of the property to get
13048
13048
  * @param value return location for the property value
13049
13049
  */
13050
- get_property(property_name: string | null, value: any): void
13050
+ get_property(property_name: string, value: any): void
13051
13051
  /**
13052
13052
  * Gets a property of an object.
13053
13053
  *
@@ -13068,7 +13068,7 @@ interface Notebook extends Atk.ImplementorIface, Clutter.Animatable, Clutter.Con
13068
13068
  * @param property_name the name of the property to get
13069
13069
  * @param value return location for the property value
13070
13070
  */
13071
- get_property(property_name: string | null, value: any): void
13071
+ get_property(property_name: string, value: any): void
13072
13072
 
13073
13073
  // Class property signals of Mx-1.0.Mx.Notebook
13074
13074
 
@@ -13892,11 +13892,11 @@ interface PathBar extends Atk.ImplementorIface, Clutter.Animatable, Clutter.Cont
13892
13892
  * @returns MxEntry *
13893
13893
  */
13894
13894
  get_entry(): Entry
13895
- get_label(level: number): string | null
13895
+ get_label(level: number): string
13896
13896
  get_level(): number
13897
- get_text(): string | null
13897
+ get_text(): string
13898
13898
  pop(): number
13899
- push(name: string | null): number
13899
+ push(name: string): number
13900
13900
  /**
13901
13901
  * Set theh value of the #MxPathBar:clear-on-change property
13902
13902
  * @param clear_on_change the new value of the property
@@ -13912,12 +13912,12 @@ interface PathBar extends Atk.ImplementorIface, Clutter.Animatable, Clutter.Cont
13912
13912
  * @param level A #gint
13913
13913
  * @param label A #gchar
13914
13914
  */
13915
- set_label(level: number, label: string | null): void
13915
+ set_label(level: number, label: string): void
13916
13916
  /**
13917
13917
  * Set the text in the editable area of the #MxPathBar
13918
13918
  * @param text string to set the editable text to.
13919
13919
  */
13920
- set_text(text: string | null): void
13920
+ set_text(text: string): void
13921
13921
 
13922
13922
  // Conflicting methods
13923
13923
 
@@ -13926,7 +13926,7 @@ interface PathBar extends Atk.ImplementorIface, Clutter.Animatable, Clutter.Cont
13926
13926
  * into `value`.
13927
13927
  * @param property_name the name of the property
13928
13928
  */
13929
- get_property(property_name: string | null): /* value */ any
13929
+ get_property(property_name: string): /* value */ any
13930
13930
 
13931
13931
  // Overloads of get_property
13932
13932
 
@@ -13950,7 +13950,7 @@ interface PathBar extends Atk.ImplementorIface, Clutter.Animatable, Clutter.Cont
13950
13950
  * @param property_name the name of the property to get
13951
13951
  * @param value return location for the property value
13952
13952
  */
13953
- get_property(property_name: string | null, value: any): void
13953
+ get_property(property_name: string, value: any): void
13954
13954
  /**
13955
13955
  * Gets a property of an object.
13956
13956
  *
@@ -13971,7 +13971,7 @@ interface PathBar extends Atk.ImplementorIface, Clutter.Animatable, Clutter.Cont
13971
13971
  * @param property_name the name of the property to get
13972
13972
  * @param value return location for the property value
13973
13973
  */
13974
- get_property(property_name: string | null, value: any): void
13974
+ get_property(property_name: string, value: any): void
13975
13975
 
13976
13976
  // Class property signals of Mx-1.0.Mx.PathBar
13977
13977
 
@@ -14319,7 +14319,7 @@ interface ProgressBar extends Atk.ImplementorIface, Clutter.Animatable, Clutter.
14319
14319
  * into `value`.
14320
14320
  * @param property_name the name of the property
14321
14321
  */
14322
- get_property(property_name: string | null): /* value */ any
14322
+ get_property(property_name: string): /* value */ any
14323
14323
 
14324
14324
  // Overloads of get_property
14325
14325
 
@@ -14343,7 +14343,7 @@ interface ProgressBar extends Atk.ImplementorIface, Clutter.Animatable, Clutter.
14343
14343
  * @param property_name the name of the property to get
14344
14344
  * @param value return location for the property value
14345
14345
  */
14346
- get_property(property_name: string | null, value: any): void
14346
+ get_property(property_name: string, value: any): void
14347
14347
  /**
14348
14348
  * Gets a property of an object.
14349
14349
  *
@@ -14364,7 +14364,7 @@ interface ProgressBar extends Atk.ImplementorIface, Clutter.Animatable, Clutter.
14364
14364
  * @param property_name the name of the property to get
14365
14365
  * @param value return location for the property value
14366
14366
  */
14367
- get_property(property_name: string | null, value: any): void
14367
+ get_property(property_name: string, value: any): void
14368
14368
 
14369
14369
  // Class property signals of Mx-1.0.Mx.ProgressBar
14370
14370
 
@@ -14738,7 +14738,7 @@ interface ScrollBar extends Atk.ImplementorIface, Clutter.Animatable, Clutter.Co
14738
14738
  * into `value`.
14739
14739
  * @param property_name the name of the property
14740
14740
  */
14741
- get_property(property_name: string | null): /* value */ any
14741
+ get_property(property_name: string): /* value */ any
14742
14742
 
14743
14743
  // Overloads of get_property
14744
14744
 
@@ -14762,7 +14762,7 @@ interface ScrollBar extends Atk.ImplementorIface, Clutter.Animatable, Clutter.Co
14762
14762
  * @param property_name the name of the property to get
14763
14763
  * @param value return location for the property value
14764
14764
  */
14765
- get_property(property_name: string | null, value: any): void
14765
+ get_property(property_name: string, value: any): void
14766
14766
  /**
14767
14767
  * Gets a property of an object.
14768
14768
  *
@@ -14783,7 +14783,7 @@ interface ScrollBar extends Atk.ImplementorIface, Clutter.Animatable, Clutter.Co
14783
14783
  * @param property_name the name of the property to get
14784
14784
  * @param value return location for the property value
14785
14785
  */
14786
- get_property(property_name: string | null, value: any): void
14786
+ get_property(property_name: string, value: any): void
14787
14787
 
14788
14788
  // Own virtual methods of Mx-1.0.Mx.ScrollBar
14789
14789
 
@@ -15184,7 +15184,7 @@ interface ScrollView extends Atk.ImplementorIface, Clutter.Animatable, Clutter.C
15184
15184
  * into `value`.
15185
15185
  * @param property_name the name of the property
15186
15186
  */
15187
- get_property(property_name: string | null): /* value */ any
15187
+ get_property(property_name: string): /* value */ any
15188
15188
 
15189
15189
  // Overloads of get_property
15190
15190
 
@@ -15208,7 +15208,7 @@ interface ScrollView extends Atk.ImplementorIface, Clutter.Animatable, Clutter.C
15208
15208
  * @param property_name the name of the property to get
15209
15209
  * @param value return location for the property value
15210
15210
  */
15211
- get_property(property_name: string | null, value: any): void
15211
+ get_property(property_name: string, value: any): void
15212
15212
  /**
15213
15213
  * Gets a property of an object.
15214
15214
  *
@@ -15229,7 +15229,7 @@ interface ScrollView extends Atk.ImplementorIface, Clutter.Animatable, Clutter.C
15229
15229
  * @param property_name the name of the property to get
15230
15230
  * @param value return location for the property value
15231
15231
  */
15232
- get_property(property_name: string | null, value: any): void
15232
+ get_property(property_name: string, value: any): void
15233
15233
 
15234
15234
  // Class property signals of Mx-1.0.Mx.ScrollView
15235
15235
 
@@ -15680,7 +15680,7 @@ interface Slider extends Atk.ImplementorIface, Clutter.Animatable, Clutter.Conta
15680
15680
  * into `value`.
15681
15681
  * @param property_name the name of the property
15682
15682
  */
15683
- get_property(property_name: string | null): /* value */ any
15683
+ get_property(property_name: string): /* value */ any
15684
15684
 
15685
15685
  // Overloads of get_property
15686
15686
 
@@ -15704,7 +15704,7 @@ interface Slider extends Atk.ImplementorIface, Clutter.Animatable, Clutter.Conta
15704
15704
  * @param property_name the name of the property to get
15705
15705
  * @param value return location for the property value
15706
15706
  */
15707
- get_property(property_name: string | null, value: any): void
15707
+ get_property(property_name: string, value: any): void
15708
15708
  /**
15709
15709
  * Gets a property of an object.
15710
15710
  *
@@ -15725,7 +15725,7 @@ interface Slider extends Atk.ImplementorIface, Clutter.Animatable, Clutter.Conta
15725
15725
  * @param property_name the name of the property to get
15726
15726
  * @param value return location for the property value
15727
15727
  */
15728
- get_property(property_name: string | null, value: any): void
15728
+ get_property(property_name: string, value: any): void
15729
15729
 
15730
15730
  // Class property signals of Mx-1.0.Mx.Slider
15731
15731
 
@@ -16088,7 +16088,7 @@ interface Spinner extends Atk.ImplementorIface, Clutter.Animatable, Clutter.Cont
16088
16088
  * into `value`.
16089
16089
  * @param property_name the name of the property
16090
16090
  */
16091
- get_property(property_name: string | null): /* value */ any
16091
+ get_property(property_name: string): /* value */ any
16092
16092
 
16093
16093
  // Overloads of get_property
16094
16094
 
@@ -16112,7 +16112,7 @@ interface Spinner extends Atk.ImplementorIface, Clutter.Animatable, Clutter.Cont
16112
16112
  * @param property_name the name of the property to get
16113
16113
  * @param value return location for the property value
16114
16114
  */
16115
- get_property(property_name: string | null, value: any): void
16115
+ get_property(property_name: string, value: any): void
16116
16116
  /**
16117
16117
  * Gets a property of an object.
16118
16118
  *
@@ -16133,7 +16133,7 @@ interface Spinner extends Atk.ImplementorIface, Clutter.Animatable, Clutter.Cont
16133
16133
  * @param property_name the name of the property to get
16134
16134
  * @param value return location for the property value
16135
16135
  */
16136
- get_property(property_name: string | null, value: any): void
16136
+ get_property(property_name: string, value: any): void
16137
16137
 
16138
16138
  // Own virtual methods of Mx-1.0.Mx.Spinner
16139
16139
 
@@ -16546,7 +16546,7 @@ interface Stack extends Atk.ImplementorIface, Clutter.Animatable, Clutter.Contai
16546
16546
  * into `value`.
16547
16547
  * @param property_name the name of the property
16548
16548
  */
16549
- get_property(property_name: string | null): /* value */ any
16549
+ get_property(property_name: string): /* value */ any
16550
16550
 
16551
16551
  // Overloads of get_property
16552
16552
 
@@ -16570,7 +16570,7 @@ interface Stack extends Atk.ImplementorIface, Clutter.Animatable, Clutter.Contai
16570
16570
  * @param property_name the name of the property to get
16571
16571
  * @param value return location for the property value
16572
16572
  */
16573
- get_property(property_name: string | null, value: any): void
16573
+ get_property(property_name: string, value: any): void
16574
16574
  /**
16575
16575
  * Gets a property of an object.
16576
16576
  *
@@ -16591,7 +16591,7 @@ interface Stack extends Atk.ImplementorIface, Clutter.Animatable, Clutter.Contai
16591
16591
  * @param property_name the name of the property to get
16592
16592
  * @param value return location for the property value
16593
16593
  */
16594
- get_property(property_name: string | null, value: any): void
16594
+ get_property(property_name: string, value: any): void
16595
16595
 
16596
16596
  // Class property signals of Mx-1.0.Mx.Stack
16597
16597
 
@@ -17031,13 +17031,13 @@ interface Style {
17031
17031
  * @param property_name the name of the property to get
17032
17032
  * @param value return location for the property value
17033
17033
  */
17034
- get_property(property_name: string | null, value: any): void
17034
+ get_property(property_name: string, value: any): void
17035
17035
  /**
17036
17036
  * Load style information from the specified file.
17037
17037
  * @param filename filename of the style sheet to load
17038
17038
  * @returns TRUE if the style information was loaded successfully. Returns FALSE on error.
17039
17039
  */
17040
- load_from_file(filename: string | null): boolean
17040
+ load_from_file(filename: string): boolean
17041
17041
 
17042
17042
  // Own virtual methods of Mx-1.0.Mx.Style
17043
17043
 
@@ -17316,7 +17316,7 @@ interface Table extends Atk.ImplementorIface, Clutter.Animatable, Clutter.Contai
17316
17316
  * into `value`.
17317
17317
  * @param property_name the name of the property
17318
17318
  */
17319
- get_property(property_name: string | null): /* value */ any
17319
+ get_property(property_name: string): /* value */ any
17320
17320
 
17321
17321
  // Overloads of get_property
17322
17322
 
@@ -17340,7 +17340,7 @@ interface Table extends Atk.ImplementorIface, Clutter.Animatable, Clutter.Contai
17340
17340
  * @param property_name the name of the property to get
17341
17341
  * @param value return location for the property value
17342
17342
  */
17343
- get_property(property_name: string | null, value: any): void
17343
+ get_property(property_name: string, value: any): void
17344
17344
  /**
17345
17345
  * Gets a property of an object.
17346
17346
  *
@@ -17361,7 +17361,7 @@ interface Table extends Atk.ImplementorIface, Clutter.Animatable, Clutter.Contai
17361
17361
  * @param property_name the name of the property to get
17362
17362
  * @param value return location for the property value
17363
17363
  */
17364
- get_property(property_name: string | null, value: any): void
17364
+ get_property(property_name: string, value: any): void
17365
17365
 
17366
17366
  // Class property signals of Mx-1.0.Mx.Table
17367
17367
 
@@ -17808,7 +17808,7 @@ interface TextureCache {
17808
17808
  * @param uri A URI or path to an image file
17809
17809
  * @returns %TRUE if the image exists, %FALSE otherwise
17810
17810
  */
17811
- contains(uri: string | null): boolean
17811
+ contains(uri: string): boolean
17812
17812
  /**
17813
17813
  * Checks whether there are any textures associated with the given URI by
17814
17814
  * the given identifier.
@@ -17816,14 +17816,14 @@ interface TextureCache {
17816
17816
  * @param ident A unique identifier
17817
17817
  * @returns %TRUE if the data exists, %FALSE otherwise
17818
17818
  */
17819
- contains_meta(uri: string | null, ident: any): boolean
17819
+ contains_meta(uri: string, ident: any): boolean
17820
17820
  /**
17821
17821
  * This is a wrapper around mx_texture_cache_get_texture() which returns
17822
17822
  * a ClutterActor.
17823
17823
  * @param uri A URI or path to a image file
17824
17824
  * @returns a newly created ClutterTexture
17825
17825
  */
17826
- get_actor(uri: string | null): Clutter.Actor
17826
+ get_actor(uri: string): Clutter.Actor
17827
17827
  /**
17828
17828
  * Create a #CoglHandle representing a texture of the specified image. Adds
17829
17829
  * the image to the cache if the image had not been previously loaded.
@@ -17832,7 +17832,7 @@ interface TextureCache {
17832
17832
  * @param uri A URI or path to an image file
17833
17833
  * @returns a #CoglHandle to the cached texture
17834
17834
  */
17835
- get_cogl_texture(uri: string | null): Cogl.Handle
17835
+ get_cogl_texture(uri: string): Cogl.Handle
17836
17836
  /**
17837
17837
  * Retrieves the #CoglHandle of the previously added image associated
17838
17838
  * with the given unique identifier.
@@ -17842,7 +17842,7 @@ interface TextureCache {
17842
17842
  * @param ident A unique identifier
17843
17843
  * @returns A #CoglHandle to a texture, with an added reference. %NULL if no image was found.
17844
17844
  */
17845
- get_meta_cogl_texture(uri: string | null, ident: any): Cogl.Handle
17845
+ get_meta_cogl_texture(uri: string, ident: any): Cogl.Handle
17846
17846
  /**
17847
17847
  * Create a new ClutterTexture using the previously added image associated
17848
17848
  * with the given unique identifier.
@@ -17852,7 +17852,7 @@ interface TextureCache {
17852
17852
  * @param ident A unique identifier
17853
17853
  * @returns A newly allocated #ClutterTexture, or %NULL if no image was found
17854
17854
  */
17855
- get_meta_texture(uri: string | null, ident: any): Clutter.Texture
17855
+ get_meta_texture(uri: string, ident: any): Clutter.Texture
17856
17856
  /**
17857
17857
  * Returns the number of items in the texture cache
17858
17858
  * @returns the current size of the cache
@@ -17866,7 +17866,7 @@ interface TextureCache {
17866
17866
  * @param uri A URI or path to a image file
17867
17867
  * @returns a newly created ClutterTexture
17868
17868
  */
17869
- get_texture(uri: string | null): Clutter.Texture
17869
+ get_texture(uri: string): Clutter.Texture
17870
17870
  /**
17871
17871
  * Inserts a texture into the texture cache. This can be useful if you
17872
17872
  * want to cache a texture from a custom or unhandled URI type, or you
@@ -17877,7 +17877,7 @@ interface TextureCache {
17877
17877
  * @param uri A URI or local file path
17878
17878
  * @param texture A #CoglHandle to a texture
17879
17879
  */
17880
- insert(uri: string | null, texture: Cogl.Handle): void
17880
+ insert(uri: string, texture: Cogl.Handle): void
17881
17881
  /**
17882
17882
  * Inserts a texture that's associated with a URI into the cache.
17883
17883
  * If the metadata already exists for this URI, it will be replaced.
@@ -17889,13 +17889,13 @@ interface TextureCache {
17889
17889
  * @param texture A #CoglHandle to a texture
17890
17890
  * @param destroy_func An optional destruction function for `ident`
17891
17891
  */
17892
- insert_meta(uri: string | null, ident: any, texture: Cogl.Handle, destroy_func: GLib.DestroyNotify): void
17893
- load_cache(filename: string | null): void
17892
+ insert_meta(uri: string, ident: any, texture: Cogl.Handle, destroy_func: GLib.DestroyNotify): void
17893
+ load_cache(filename: string): void
17894
17894
 
17895
17895
  // Own virtual methods of Mx-1.0.Mx.TextureCache
17896
17896
 
17897
17897
  vfunc_error_loading(error: GLib.Error): void
17898
- vfunc_loaded(uri: string | null, texture: Clutter.Texture): void
17898
+ vfunc_loaded(uri: string, texture: Clutter.Texture): void
17899
17899
 
17900
17900
  // Class property signals of Mx-1.0.Mx.TextureCache
17901
17901
 
@@ -18355,7 +18355,7 @@ interface Toggle extends Atk.ImplementorIface, Clutter.Animatable, Clutter.Conta
18355
18355
  * into `value`.
18356
18356
  * @param property_name the name of the property
18357
18357
  */
18358
- get_property(property_name: string | null): /* value */ any
18358
+ get_property(property_name: string): /* value */ any
18359
18359
 
18360
18360
  // Overloads of get_property
18361
18361
 
@@ -18379,7 +18379,7 @@ interface Toggle extends Atk.ImplementorIface, Clutter.Animatable, Clutter.Conta
18379
18379
  * @param property_name the name of the property to get
18380
18380
  * @param value return location for the property value
18381
18381
  */
18382
- get_property(property_name: string | null, value: any): void
18382
+ get_property(property_name: string, value: any): void
18383
18383
  /**
18384
18384
  * Gets a property of an object.
18385
18385
  *
@@ -18400,7 +18400,7 @@ interface Toggle extends Atk.ImplementorIface, Clutter.Animatable, Clutter.Conta
18400
18400
  * @param property_name the name of the property to get
18401
18401
  * @param value return location for the property value
18402
18402
  */
18403
- get_property(property_name: string | null, value: any): void
18403
+ get_property(property_name: string, value: any): void
18404
18404
 
18405
18405
  // Class property signals of Mx-1.0.Mx.Toggle
18406
18406
 
@@ -18763,7 +18763,7 @@ interface Toolbar extends Atk.ImplementorIface, Clutter.Animatable, Clutter.Cont
18763
18763
  * into `value`.
18764
18764
  * @param property_name the name of the property
18765
18765
  */
18766
- get_property(property_name: string | null): /* value */ any
18766
+ get_property(property_name: string): /* value */ any
18767
18767
 
18768
18768
  // Overloads of get_property
18769
18769
 
@@ -18787,7 +18787,7 @@ interface Toolbar extends Atk.ImplementorIface, Clutter.Animatable, Clutter.Cont
18787
18787
  * @param property_name the name of the property to get
18788
18788
  * @param value return location for the property value
18789
18789
  */
18790
- get_property(property_name: string | null, value: any): void
18790
+ get_property(property_name: string, value: any): void
18791
18791
  /**
18792
18792
  * Gets a property of an object.
18793
18793
  *
@@ -18808,7 +18808,7 @@ interface Toolbar extends Atk.ImplementorIface, Clutter.Animatable, Clutter.Cont
18808
18808
  * @param property_name the name of the property to get
18809
18809
  * @param value return location for the property value
18810
18810
  */
18811
- get_property(property_name: string | null, value: any): void
18811
+ get_property(property_name: string, value: any): void
18812
18812
 
18813
18813
  // Own virtual methods of Mx-1.0.Mx.Toolbar
18814
18814
 
@@ -19168,7 +19168,7 @@ interface Tooltip extends Atk.ImplementorIface, Clutter.Animatable, Clutter.Cont
19168
19168
  * Get the text displayed on the tooltip
19169
19169
  * @returns the text for the tooltip. This must not be freed by the application
19170
19170
  */
19171
- get_text(): string | null
19171
+ get_text(): string
19172
19172
  /**
19173
19173
  * Retrieve the area on the stage that the tooltip currently applies to
19174
19174
  * @returns the #ClutterGeometry, owned by the tooltip which must not be freed by the application.
@@ -19182,7 +19182,7 @@ interface Tooltip extends Atk.ImplementorIface, Clutter.Animatable, Clutter.Cont
19182
19182
  * Sets the text displayed on the tooltip
19183
19183
  * @param text text to set the label to
19184
19184
  */
19185
- set_text(text: string | null): void
19185
+ set_text(text: string): void
19186
19186
  /**
19187
19187
  * Set the area on the stage that the tooltip applies to.
19188
19188
  * @param area A #ClutterGeometry
@@ -19207,7 +19207,7 @@ interface Tooltip extends Atk.ImplementorIface, Clutter.Animatable, Clutter.Cont
19207
19207
  * into `value`.
19208
19208
  * @param property_name the name of the property
19209
19209
  */
19210
- get_property(property_name: string | null): /* value */ any
19210
+ get_property(property_name: string): /* value */ any
19211
19211
 
19212
19212
  // Overloads of get_property
19213
19213
 
@@ -19231,7 +19231,7 @@ interface Tooltip extends Atk.ImplementorIface, Clutter.Animatable, Clutter.Cont
19231
19231
  * @param property_name the name of the property to get
19232
19232
  * @param value return location for the property value
19233
19233
  */
19234
- get_property(property_name: string | null, value: any): void
19234
+ get_property(property_name: string, value: any): void
19235
19235
  /**
19236
19236
  * Gets a property of an object.
19237
19237
  *
@@ -19252,7 +19252,7 @@ interface Tooltip extends Atk.ImplementorIface, Clutter.Animatable, Clutter.Cont
19252
19252
  * @param property_name the name of the property to get
19253
19253
  * @param value return location for the property value
19254
19254
  */
19255
- get_property(property_name: string | null, value: any): void
19255
+ get_property(property_name: string, value: any): void
19256
19256
 
19257
19257
  // Class property signals of Mx-1.0.Mx.Tooltip
19258
19258
 
@@ -19615,7 +19615,7 @@ interface Viewport extends Atk.ImplementorIface, Clutter.Animatable, Clutter.Con
19615
19615
  * into `value`.
19616
19616
  * @param property_name the name of the property
19617
19617
  */
19618
- get_property(property_name: string | null): /* value */ any
19618
+ get_property(property_name: string): /* value */ any
19619
19619
 
19620
19620
  // Overloads of get_property
19621
19621
 
@@ -19639,7 +19639,7 @@ interface Viewport extends Atk.ImplementorIface, Clutter.Animatable, Clutter.Con
19639
19639
  * @param property_name the name of the property to get
19640
19640
  * @param value return location for the property value
19641
19641
  */
19642
- get_property(property_name: string | null, value: any): void
19642
+ get_property(property_name: string, value: any): void
19643
19643
  /**
19644
19644
  * Gets a property of an object.
19645
19645
  *
@@ -19660,7 +19660,7 @@ interface Viewport extends Atk.ImplementorIface, Clutter.Animatable, Clutter.Con
19660
19660
  * @param property_name the name of the property to get
19661
19661
  * @param value return location for the property value
19662
19662
  */
19663
- get_property(property_name: string | null, value: any): void
19663
+ get_property(property_name: string, value: any): void
19664
19664
 
19665
19665
  // Class property signals of Mx-1.0.Mx.Viewport
19666
19666
 
@@ -20094,7 +20094,7 @@ interface Widget extends Atk.ImplementorIface, Clutter.Animatable, Clutter.Conta
20094
20094
  * Get the current tooltip string
20095
20095
  * @returns The current tooltip string, owned by the #MxWidget
20096
20096
  */
20097
- get_tooltip_text(): string | null
20097
+ get_tooltip_text(): string
20098
20098
  /**
20099
20099
  * Hide the tooltip for `widget`
20100
20100
  */
@@ -20141,7 +20141,7 @@ interface Widget extends Atk.ImplementorIface, Clutter.Animatable, Clutter.Conta
20141
20141
  * %FALSE.
20142
20142
  * @param text text to set as the tooltip
20143
20143
  */
20144
- set_tooltip_text(text: string | null): void
20144
+ set_tooltip_text(text: string): void
20145
20145
  /**
20146
20146
  * Show the tooltip for `widget`
20147
20147
  */
@@ -20154,7 +20154,7 @@ interface Widget extends Atk.ImplementorIface, Clutter.Animatable, Clutter.Conta
20154
20154
  * into `value`.
20155
20155
  * @param property_name the name of the property
20156
20156
  */
20157
- get_property(property_name: string | null): /* value */ any
20157
+ get_property(property_name: string): /* value */ any
20158
20158
 
20159
20159
  // Overloads of get_property
20160
20160
 
@@ -20178,7 +20178,7 @@ interface Widget extends Atk.ImplementorIface, Clutter.Animatable, Clutter.Conta
20178
20178
  * @param property_name the name of the property to get
20179
20179
  * @param value return location for the property value
20180
20180
  */
20181
- get_property(property_name: string | null, value: any): void
20181
+ get_property(property_name: string, value: any): void
20182
20182
  /**
20183
20183
  * Gets a property of an object.
20184
20184
  *
@@ -20199,7 +20199,7 @@ interface Widget extends Atk.ImplementorIface, Clutter.Animatable, Clutter.Conta
20199
20199
  * @param property_name the name of the property to get
20200
20200
  * @param value return location for the property value
20201
20201
  */
20202
- get_property(property_name: string | null, value: any): void
20202
+ get_property(property_name: string, value: any): void
20203
20203
 
20204
20204
  // Own virtual methods of Mx-1.0.Mx.Widget
20205
20205
 
@@ -20609,7 +20609,7 @@ interface Window {
20609
20609
  * set, or the icon was set with mx_window_set_icon_from_cogl_texture().
20610
20610
  * @returns The window icon name, or %NULL
20611
20611
  */
20612
- get_icon_name(): string | null
20612
+ get_icon_name(): string
20613
20613
  /**
20614
20614
  * Determines if the window is in small-screen mode.
20615
20615
  * See mx_window_set_small_screen().
@@ -20620,7 +20620,7 @@ interface Window {
20620
20620
  * Retrieves the title used for the window.
20621
20621
  * @returns The title used for the window
20622
20622
  */
20623
- get_title(): string | null
20623
+ get_title(): string
20624
20624
  /**
20625
20625
  * Retrieves the toolbar associated with the window.
20626
20626
  * @returns A #MxToolbar
@@ -20698,7 +20698,7 @@ interface Window {
20698
20698
  * window-system specific.
20699
20699
  * @param title A string to use for the window title name
20700
20700
  */
20701
- set_title(title: string | null): void
20701
+ set_title(title: string): void
20702
20702
  /**
20703
20703
  * Sets the toolbar associated with the window.
20704
20704
  * @param toolbar
@@ -20987,7 +20987,7 @@ class BorderImage {
20987
20987
 
20988
20988
  // Constructors of Mx-1.0.Mx.BorderImage
20989
20989
 
20990
- static set_from_string(value: any, str: string | null, filename: string | null): void
20990
+ static set_from_string(value: any, str: string, filename: string): void
20991
20991
  }
20992
20992
 
20993
20993
  interface BoxLayoutChildClass {
@@ -22028,10 +22028,10 @@ interface StylableIface {
22028
22028
 
22029
22029
  get_style: (stylable: Stylable) => Style
22030
22030
  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
22031
+ get_style_class: (stylable: Stylable) => string
22032
+ set_style_class: (stylable: Stylable, style_class: string) => void
22033
+ get_style_pseudo_class: (stylable: Stylable) => string
22034
+ set_style_pseudo_class: (stylable: Stylable, pseudo_class: string) => void
22035
22035
  style_changed: (stylable: Stylable, flags: StyleChangedFlags) => void
22036
22036
  }
22037
22037
 
@@ -22149,7 +22149,7 @@ interface TextureCacheClass {
22149
22149
  // Own fields of Mx-1.0.Mx.TextureCacheClass
22150
22150
 
22151
22151
  parent_class: GObject.ObjectClass
22152
- loaded: (self: TextureCache, uri: string | null, texture: Clutter.Texture) => void
22152
+ loaded: (self: TextureCache, uri: string, texture: Clutter.Texture) => void
22153
22153
  error_loading: (self: TextureCache, error: GLib.Error) => void
22154
22154
  }
22155
22155