@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.
- package/README.md +1 -1
- package/mx-1.0.d.cts +208 -208
- package/mx-1.0.d.ts +208 -208
- package/package.json +19 -19
package/mx-1.0.d.cts
CHANGED
|
@@ -262,10 +262,10 @@ export const VERSION_HEX: number
|
|
|
262
262
|
* The full version of the Mx library, in string form (suited for
|
|
263
263
|
* string concatenation)
|
|
264
264
|
*/
|
|
265
|
-
export const VERSION_S: string
|
|
265
|
+
export const VERSION_S: string
|
|
266
266
|
export function actor_box_clamp_to_pixels(box: Clutter.ActorBox): void
|
|
267
267
|
export function allocate_align_fill(child: Clutter.Actor, childbox: Clutter.ActorBox, x_alignment: Align, y_alignment: Align, x_fill: boolean, y_fill: boolean): void
|
|
268
|
-
export function border_image_set_from_string(value: any, str: string
|
|
268
|
+
export function border_image_set_from_string(value: any, str: string, filename: string): void
|
|
269
269
|
/**
|
|
270
270
|
* Transforms a focus direction to a focus hint. This is a convenience
|
|
271
271
|
* function for actors that implement the #MxFocusable interface, to
|
|
@@ -283,7 +283,7 @@ export function border_image_set_from_string(value: any, str: string | null, fil
|
|
|
283
283
|
* @returns A #MxFocusHint
|
|
284
284
|
*/
|
|
285
285
|
export function focus_hint_from_direction(direction: FocusDirection): FocusHint
|
|
286
|
-
export function font_weight_set_from_string(value: any, str: string
|
|
286
|
+
export function font_weight_set_from_string(value: any, str: string): void
|
|
287
287
|
export function image_error_quark(): GLib.Quark
|
|
288
288
|
/**
|
|
289
289
|
* Initializes internationalization support for Mx. If MxApplication is
|
|
@@ -314,7 +314,7 @@ export interface ActionCallbackFunc {
|
|
|
314
314
|
* @param text text from the clipboard
|
|
315
315
|
*/
|
|
316
316
|
export interface ClipboardCallbackFunc {
|
|
317
|
-
(clipboard: Clipboard, text: string
|
|
317
|
+
(clipboard: Clipboard, text: string): void
|
|
318
318
|
}
|
|
319
319
|
export module Draggable {
|
|
320
320
|
|
|
@@ -1282,20 +1282,20 @@ export interface Stylable {
|
|
|
1282
1282
|
* @param property_name the name of the property to find
|
|
1283
1283
|
* @returns a #GParamSpec for the given property, or %NULL if no property with that name was found
|
|
1284
1284
|
*/
|
|
1285
|
-
find_property(property_name: string
|
|
1285
|
+
find_property(property_name: string): GObject.ParamSpec
|
|
1286
1286
|
/**
|
|
1287
1287
|
* Query `stylable` for the default value of property `property_name` and
|
|
1288
1288
|
* fill `value_out` with the result.
|
|
1289
1289
|
* @param property_name name of the property to query
|
|
1290
1290
|
* @returns %TRUE if property @property_name exists and the default value has been returned.
|
|
1291
1291
|
*/
|
|
1292
|
-
get_default_value(property_name: string
|
|
1292
|
+
get_default_value(property_name: string): [ /* returnType */ boolean, /* value_out */ any ]
|
|
1293
1293
|
/**
|
|
1294
1294
|
* Retrieves the value of `property_name` for `stylable,` and puts it
|
|
1295
1295
|
* into `value`.
|
|
1296
1296
|
* @param property_name the name of the property
|
|
1297
1297
|
*/
|
|
1298
|
-
get_property(property_name: string
|
|
1298
|
+
get_property(property_name: string): /* value */ any
|
|
1299
1299
|
|
|
1300
1300
|
// Overloads of get_property
|
|
1301
1301
|
|
|
@@ -1319,7 +1319,7 @@ export interface Stylable {
|
|
|
1319
1319
|
* @param property_name the name of the property to get
|
|
1320
1320
|
* @param value return location for the property value
|
|
1321
1321
|
*/
|
|
1322
|
-
get_property(property_name: string
|
|
1322
|
+
get_property(property_name: string, value: any): void
|
|
1323
1323
|
/**
|
|
1324
1324
|
* Retrieves the #MxStyle used by `stylable`. This function does not
|
|
1325
1325
|
* alter the reference count of the returned object.
|
|
@@ -1330,13 +1330,13 @@ export interface Stylable {
|
|
|
1330
1330
|
* Get the current style class name
|
|
1331
1331
|
* @returns the class name string. The string is owned by the #MxWidget and should not be modified or freed.
|
|
1332
1332
|
*/
|
|
1333
|
-
get_style_class(): string
|
|
1333
|
+
get_style_class(): string
|
|
1334
1334
|
/**
|
|
1335
1335
|
* Get the current style pseudo class. This can contain multiple pseudo class
|
|
1336
1336
|
* names, separated by ':'.
|
|
1337
1337
|
* @returns the pseudo class string. The string is owned by the #MxWidget and should not be modified or freed.
|
|
1338
1338
|
*/
|
|
1339
|
-
get_style_pseudo_class(): string
|
|
1339
|
+
get_style_pseudo_class(): string
|
|
1340
1340
|
/**
|
|
1341
1341
|
* Retrieves all the #GParamSpec<!-- -->s installed by `stylable`.
|
|
1342
1342
|
* @returns an array of #GParamSpec<!-- -->s. Free it with g_free() when done.
|
|
@@ -1356,13 +1356,13 @@ export interface Stylable {
|
|
|
1356
1356
|
* Set the style class name
|
|
1357
1357
|
* @param style_class a new style class string
|
|
1358
1358
|
*/
|
|
1359
|
-
set_style_class(style_class: string
|
|
1359
|
+
set_style_class(style_class: string): void
|
|
1360
1360
|
/**
|
|
1361
1361
|
* Set the style pseudo class. The string can contain multiple pseudo class
|
|
1362
1362
|
* names, separated by ':'.
|
|
1363
1363
|
* @param pseudo_class a new pseudo class string
|
|
1364
1364
|
*/
|
|
1365
|
-
set_style_pseudo_class(pseudo_class: string
|
|
1365
|
+
set_style_pseudo_class(pseudo_class: string): void
|
|
1366
1366
|
/**
|
|
1367
1367
|
* Emit the "style-changed" signal on `stylable` to notify it that one or more
|
|
1368
1368
|
* of the style properties has changed.
|
|
@@ -1378,20 +1378,20 @@ export interface Stylable {
|
|
|
1378
1378
|
* #MxStylable:style-pseudo-class property.
|
|
1379
1379
|
* @param new_class A pseudo-class name to add
|
|
1380
1380
|
*/
|
|
1381
|
-
style_pseudo_class_add(new_class: string
|
|
1381
|
+
style_pseudo_class_add(new_class: string): void
|
|
1382
1382
|
/**
|
|
1383
1383
|
* Check if the given pseudo-class name is contained in the list of
|
|
1384
1384
|
* set pseudo classes on this #MxStylable object.
|
|
1385
1385
|
* @param pseudo_class A pseudo-class name
|
|
1386
1386
|
* @returns %TRUE if the given pseudo-class is set, %FALSE otherwise
|
|
1387
1387
|
*/
|
|
1388
|
-
style_pseudo_class_contains(pseudo_class: string
|
|
1388
|
+
style_pseudo_class_contains(pseudo_class: string): boolean
|
|
1389
1389
|
/**
|
|
1390
1390
|
* Remove the specified pseudo class name from the list of pseudo classes
|
|
1391
1391
|
* contained in the #MxStylable:style-pseudo-class property.
|
|
1392
1392
|
* @param remove_class A pseudo class name to remove
|
|
1393
1393
|
*/
|
|
1394
|
-
style_pseudo_class_remove(remove_class: string
|
|
1394
|
+
style_pseudo_class_remove(remove_class: string): void
|
|
1395
1395
|
|
|
1396
1396
|
// Own virtual methods of Mx-1.0.Mx.Stylable
|
|
1397
1397
|
|
|
@@ -1407,14 +1407,14 @@ export interface Stylable {
|
|
|
1407
1407
|
* @virtual
|
|
1408
1408
|
* @returns the class name string. The string is owned by the #MxWidget and should not be modified or freed.
|
|
1409
1409
|
*/
|
|
1410
|
-
vfunc_get_style_class(): string
|
|
1410
|
+
vfunc_get_style_class(): string
|
|
1411
1411
|
/**
|
|
1412
1412
|
* Get the current style pseudo class. This can contain multiple pseudo class
|
|
1413
1413
|
* names, separated by ':'.
|
|
1414
1414
|
* @virtual
|
|
1415
1415
|
* @returns the pseudo class string. The string is owned by the #MxWidget and should not be modified or freed.
|
|
1416
1416
|
*/
|
|
1417
|
-
vfunc_get_style_pseudo_class(): string
|
|
1417
|
+
vfunc_get_style_pseudo_class(): string
|
|
1418
1418
|
/**
|
|
1419
1419
|
* Sets `style` as the new #MxStyle to be used by `stylable`.
|
|
1420
1420
|
*
|
|
@@ -1431,14 +1431,14 @@ export interface Stylable {
|
|
|
1431
1431
|
* @virtual
|
|
1432
1432
|
* @param style_class a new style class string
|
|
1433
1433
|
*/
|
|
1434
|
-
vfunc_set_style_class(style_class: string
|
|
1434
|
+
vfunc_set_style_class(style_class: string): void
|
|
1435
1435
|
/**
|
|
1436
1436
|
* Set the style pseudo class. The string can contain multiple pseudo class
|
|
1437
1437
|
* names, separated by ':'.
|
|
1438
1438
|
* @virtual
|
|
1439
1439
|
* @param pseudo_class a new pseudo class string
|
|
1440
1440
|
*/
|
|
1441
|
-
vfunc_set_style_pseudo_class(pseudo_class: string
|
|
1441
|
+
vfunc_set_style_pseudo_class(pseudo_class: string): void
|
|
1442
1442
|
/**
|
|
1443
1443
|
* Emit the "style-changed" signal on `stylable` to notify it that one or more
|
|
1444
1444
|
* of the style properties has changed.
|
|
@@ -1580,17 +1580,17 @@ export interface Action extends Gio.Action {
|
|
|
1580
1580
|
* Get the display name of the action
|
|
1581
1581
|
* @returns display-name of the action, owned by MxAction
|
|
1582
1582
|
*/
|
|
1583
|
-
get_display_name(): string
|
|
1583
|
+
get_display_name(): string
|
|
1584
1584
|
/**
|
|
1585
1585
|
* Get the icon of the action
|
|
1586
1586
|
* @returns icon of the action, owned by MxAction
|
|
1587
1587
|
*/
|
|
1588
|
-
get_icon(): string
|
|
1588
|
+
get_icon(): string
|
|
1589
1589
|
/**
|
|
1590
1590
|
* Get the name of the action
|
|
1591
1591
|
* @returns name of the action, owned by MxAction
|
|
1592
1592
|
*/
|
|
1593
|
-
get_name(): string
|
|
1593
|
+
get_name(): string
|
|
1594
1594
|
/**
|
|
1595
1595
|
* Set the value of the active property
|
|
1596
1596
|
* @param active the value to set
|
|
@@ -1600,17 +1600,17 @@ export interface Action extends Gio.Action {
|
|
|
1600
1600
|
* Set the name of the action to display to the user
|
|
1601
1601
|
* @param name new display name to set
|
|
1602
1602
|
*/
|
|
1603
|
-
set_display_name(name: string
|
|
1603
|
+
set_display_name(name: string): void
|
|
1604
1604
|
/**
|
|
1605
1605
|
* The icon to be used in a visual representation of an action.
|
|
1606
1606
|
* @param name new icon to set
|
|
1607
1607
|
*/
|
|
1608
|
-
set_icon(name: string
|
|
1608
|
+
set_icon(name: string): void
|
|
1609
1609
|
/**
|
|
1610
1610
|
* Set the name of the action
|
|
1611
1611
|
* @param name new name to set
|
|
1612
1612
|
*/
|
|
1613
|
-
set_name(name: string
|
|
1613
|
+
set_name(name: string): void
|
|
1614
1614
|
|
|
1615
1615
|
// Own virtual methods of Mx-1.0.Mx.Action
|
|
1616
1616
|
|
|
@@ -1692,7 +1692,7 @@ export class Action extends GObject.InitiallyUnowned {
|
|
|
1692
1692
|
* @param activated_cb callback to connect to the activated signal
|
|
1693
1693
|
* @returns a newly allocated #MxAction
|
|
1694
1694
|
*/
|
|
1695
|
-
static new_full(name: string
|
|
1695
|
+
static new_full(name: string, display_name: string, activated_cb: ActionCallbackFunc | null): Action
|
|
1696
1696
|
/**
|
|
1697
1697
|
* Creates a new stateful action.
|
|
1698
1698
|
*
|
|
@@ -1704,7 +1704,7 @@ export class Action extends GObject.InitiallyUnowned {
|
|
|
1704
1704
|
* @param state the initial state of the action
|
|
1705
1705
|
* @returns a new #MxAction
|
|
1706
1706
|
*/
|
|
1707
|
-
static new_stateful(name: string
|
|
1707
|
+
static new_stateful(name: string, parameter_type: GLib.VariantType | null, state: GLib.Variant): Action
|
|
1708
1708
|
/**
|
|
1709
1709
|
* Creates a new action with a parameter.
|
|
1710
1710
|
*
|
|
@@ -1714,7 +1714,7 @@ export class Action extends GObject.InitiallyUnowned {
|
|
|
1714
1714
|
* @param parameter_type the type of parameter to the activate function
|
|
1715
1715
|
* @returns a new #MxAction
|
|
1716
1716
|
*/
|
|
1717
|
-
static new_with_parameter(name: string
|
|
1717
|
+
static new_with_parameter(name: string, parameter_type?: GLib.VariantType | null): Action
|
|
1718
1718
|
_init(config?: Action.ConstructorProperties): void
|
|
1719
1719
|
}
|
|
1720
1720
|
|
|
@@ -2322,14 +2322,14 @@ export interface Application {
|
|
|
2322
2322
|
* Run the named action for the application.
|
|
2323
2323
|
* @param name name of the action to invoke
|
|
2324
2324
|
*/
|
|
2325
|
-
invoke_action(name: string
|
|
2325
|
+
invoke_action(name: string): void
|
|
2326
2326
|
/**
|
|
2327
2327
|
* Run the named action for the application, passing `variant` as the parameter
|
|
2328
2328
|
* for the action.
|
|
2329
2329
|
* @param name name of the action to invoke
|
|
2330
2330
|
* @param variant parameter for the action
|
|
2331
2331
|
*/
|
|
2332
|
-
invoke_action_with_parameter(name: string
|
|
2332
|
+
invoke_action_with_parameter(name: string, variant: GLib.Variant): void
|
|
2333
2333
|
/**
|
|
2334
2334
|
* Query whether #MxApplication is running. This will also return #TRUE if the
|
|
2335
2335
|
* given #MxApplication is single instance and there is an instance already
|
|
@@ -2346,7 +2346,7 @@ export interface Application {
|
|
|
2346
2346
|
* Remove the action with the specified name from the application.
|
|
2347
2347
|
* @param name name of the action to remove
|
|
2348
2348
|
*/
|
|
2349
|
-
remove_action(name: string
|
|
2349
|
+
remove_action(name: string): void
|
|
2350
2350
|
/**
|
|
2351
2351
|
* Remove the specified window from the application. This will cause the window
|
|
2352
2352
|
* to be unreferenced and destroyed unless another reference is held on it.
|
|
@@ -2417,7 +2417,7 @@ export class Application extends GObject.Object {
|
|
|
2417
2417
|
* @param flags Application flags.
|
|
2418
2418
|
* @returns the #MxApplication singleton.
|
|
2419
2419
|
*/
|
|
2420
|
-
constructor(argv: string[] | null, name: string
|
|
2420
|
+
constructor(argv: string[] | null, name: string, flags: ApplicationFlags)
|
|
2421
2421
|
/**
|
|
2422
2422
|
* Intialises everything needed to operate Clutter and use #MxApplication.
|
|
2423
2423
|
* See clutter_init().
|
|
@@ -2427,7 +2427,7 @@ export class Application extends GObject.Object {
|
|
|
2427
2427
|
* @param flags Application flags.
|
|
2428
2428
|
* @returns the #MxApplication singleton.
|
|
2429
2429
|
*/
|
|
2430
|
-
static new(argv: string[] | null, name: string
|
|
2430
|
+
static new(argv: string[] | null, name: string, flags: ApplicationFlags): Application
|
|
2431
2431
|
_init(config?: Application.ConstructorProperties): void
|
|
2432
2432
|
}
|
|
2433
2433
|
|
|
@@ -2578,7 +2578,7 @@ export interface Bin extends Atk.ImplementorIface, Clutter.Animatable, Clutter.C
|
|
|
2578
2578
|
* into `value`.
|
|
2579
2579
|
* @param property_name the name of the property
|
|
2580
2580
|
*/
|
|
2581
|
-
get_property(property_name: string
|
|
2581
|
+
get_property(property_name: string): /* value */ any
|
|
2582
2582
|
|
|
2583
2583
|
// Overloads of get_property
|
|
2584
2584
|
|
|
@@ -2602,7 +2602,7 @@ export interface Bin extends Atk.ImplementorIface, Clutter.Animatable, Clutter.C
|
|
|
2602
2602
|
* @param property_name the name of the property to get
|
|
2603
2603
|
* @param value return location for the property value
|
|
2604
2604
|
*/
|
|
2605
|
-
get_property(property_name: string
|
|
2605
|
+
get_property(property_name: string, value: any): void
|
|
2606
2606
|
/**
|
|
2607
2607
|
* Gets a property of an object.
|
|
2608
2608
|
*
|
|
@@ -2623,7 +2623,7 @@ export interface Bin extends Atk.ImplementorIface, Clutter.Animatable, Clutter.C
|
|
|
2623
2623
|
* @param property_name the name of the property to get
|
|
2624
2624
|
* @param value return location for the property value
|
|
2625
2625
|
*/
|
|
2626
|
-
get_property(property_name: string
|
|
2626
|
+
get_property(property_name: string, value: any): void
|
|
2627
2627
|
|
|
2628
2628
|
// Class property signals of Mx-1.0.Mx.Bin
|
|
2629
2629
|
|
|
@@ -3086,7 +3086,7 @@ export interface BoxLayout extends Atk.ImplementorIface, Clutter.Animatable, Clu
|
|
|
3086
3086
|
* into `value`.
|
|
3087
3087
|
* @param property_name the name of the property
|
|
3088
3088
|
*/
|
|
3089
|
-
get_property(property_name: string
|
|
3089
|
+
get_property(property_name: string): /* value */ any
|
|
3090
3090
|
|
|
3091
3091
|
// Overloads of get_property
|
|
3092
3092
|
|
|
@@ -3110,7 +3110,7 @@ export interface BoxLayout extends Atk.ImplementorIface, Clutter.Animatable, Clu
|
|
|
3110
3110
|
* @param property_name the name of the property to get
|
|
3111
3111
|
* @param value return location for the property value
|
|
3112
3112
|
*/
|
|
3113
|
-
get_property(property_name: string
|
|
3113
|
+
get_property(property_name: string, value: any): void
|
|
3114
3114
|
/**
|
|
3115
3115
|
* Gets a property of an object.
|
|
3116
3116
|
*
|
|
@@ -3131,7 +3131,7 @@ export interface BoxLayout extends Atk.ImplementorIface, Clutter.Animatable, Clu
|
|
|
3131
3131
|
* @param property_name the name of the property to get
|
|
3132
3132
|
* @param value return location for the property value
|
|
3133
3133
|
*/
|
|
3134
|
-
get_property(property_name: string
|
|
3134
|
+
get_property(property_name: string, value: any): void
|
|
3135
3135
|
|
|
3136
3136
|
// Class property signals of Mx-1.0.Mx.BoxLayout
|
|
3137
3137
|
|
|
@@ -3612,12 +3612,12 @@ export interface Button extends Atk.ImplementorIface, Clutter.Animatable, Clutte
|
|
|
3612
3612
|
* @param name the name of the action to retrieve
|
|
3613
3613
|
* @returns a #ClutterAction for the given name, or %NULL. The returned #ClutterAction is owned by the actor and it should not be unreferenced directly
|
|
3614
3614
|
*/
|
|
3615
|
-
get_action(name: string
|
|
3615
|
+
get_action(name: string): Clutter.Action
|
|
3616
3616
|
/**
|
|
3617
3617
|
* Get the icon-name being used on the button.
|
|
3618
3618
|
* @returns the icon-name. This must not be freed by the application. %NULL if no icon has been set
|
|
3619
3619
|
*/
|
|
3620
|
-
get_icon_name(): string
|
|
3620
|
+
get_icon_name(): string
|
|
3621
3621
|
/**
|
|
3622
3622
|
* Retrieves the icon's relative position to the text.
|
|
3623
3623
|
* @returns A #MxPosition
|
|
@@ -3642,7 +3642,7 @@ export interface Button extends Atk.ImplementorIface, Clutter.Animatable, Clutte
|
|
|
3642
3642
|
* Get the text displayed on the button
|
|
3643
3643
|
* @returns the text for the button. This must not be freed by the application
|
|
3644
3644
|
*/
|
|
3645
|
-
get_label(): string
|
|
3645
|
+
get_label(): string
|
|
3646
3646
|
/**
|
|
3647
3647
|
* Retrieves the visibility of the text associated with the button's action.
|
|
3648
3648
|
* @returns %TRUE if the text is visible, %FALSE otherwise
|
|
@@ -3693,7 +3693,7 @@ export interface Button extends Atk.ImplementorIface, Clutter.Animatable, Clutte
|
|
|
3693
3693
|
* Sets the text displayed on the button
|
|
3694
3694
|
* @param text text to set the label to
|
|
3695
3695
|
*/
|
|
3696
|
-
set_label(text: string
|
|
3696
|
+
set_label(text: string): void
|
|
3697
3697
|
/**
|
|
3698
3698
|
* Sets the visibility of the text associated with the button's action.
|
|
3699
3699
|
* @param visible %TRUE if the text should be visible
|
|
@@ -3713,7 +3713,7 @@ export interface Button extends Atk.ImplementorIface, Clutter.Animatable, Clutte
|
|
|
3713
3713
|
* into `value`.
|
|
3714
3714
|
* @param property_name the name of the property
|
|
3715
3715
|
*/
|
|
3716
|
-
get_property(property_name: string
|
|
3716
|
+
get_property(property_name: string): /* value */ any
|
|
3717
3717
|
|
|
3718
3718
|
// Overloads of get_property
|
|
3719
3719
|
|
|
@@ -3737,7 +3737,7 @@ export interface Button extends Atk.ImplementorIface, Clutter.Animatable, Clutte
|
|
|
3737
3737
|
* @param property_name the name of the property to get
|
|
3738
3738
|
* @param value return location for the property value
|
|
3739
3739
|
*/
|
|
3740
|
-
get_property(property_name: string
|
|
3740
|
+
get_property(property_name: string, value: any): void
|
|
3741
3741
|
/**
|
|
3742
3742
|
* Gets a property of an object.
|
|
3743
3743
|
*
|
|
@@ -3758,7 +3758,7 @@ export interface Button extends Atk.ImplementorIface, Clutter.Animatable, Clutte
|
|
|
3758
3758
|
* @param property_name the name of the property to get
|
|
3759
3759
|
* @param value return location for the property value
|
|
3760
3760
|
*/
|
|
3761
|
-
get_property(property_name: string
|
|
3761
|
+
get_property(property_name: string, value: any): void
|
|
3762
3762
|
|
|
3763
3763
|
// Own virtual methods of Mx-1.0.Mx.Button
|
|
3764
3764
|
|
|
@@ -4114,7 +4114,7 @@ export class Button extends Bin {
|
|
|
4114
4114
|
* @param text text to set the label to
|
|
4115
4115
|
* @returns a new #MxButton
|
|
4116
4116
|
*/
|
|
4117
|
-
static new_with_label(text: string
|
|
4117
|
+
static new_with_label(text: string): Button
|
|
4118
4118
|
_init(config?: Button.ConstructorProperties): void
|
|
4119
4119
|
}
|
|
4120
4120
|
|
|
@@ -4259,7 +4259,7 @@ export interface Clipboard {
|
|
|
4259
4259
|
* Sets text as the current contents of the clipboard.
|
|
4260
4260
|
* @param text text to copy to the clipboard
|
|
4261
4261
|
*/
|
|
4262
|
-
set_text(text: string
|
|
4262
|
+
set_text(text: string): void
|
|
4263
4263
|
|
|
4264
4264
|
// Class property signals of Mx-1.0.Mx.Clipboard
|
|
4265
4265
|
|
|
@@ -4325,17 +4325,17 @@ export interface ComboBox extends Atk.ImplementorIface, Clutter.Animatable, Clut
|
|
|
4325
4325
|
* Append an item to the combo box list
|
|
4326
4326
|
* @param text name of the item
|
|
4327
4327
|
*/
|
|
4328
|
-
append_text(text: string
|
|
4328
|
+
append_text(text: string): void
|
|
4329
4329
|
/**
|
|
4330
4330
|
* Get the name of the icon displayed in the combo box
|
|
4331
4331
|
* @returns the text string of the name of the displayed icon, owned by the combo box, or %NULL if there is no active icon.
|
|
4332
4332
|
*/
|
|
4333
|
-
get_active_icon_name(): string
|
|
4333
|
+
get_active_icon_name(): string
|
|
4334
4334
|
/**
|
|
4335
4335
|
* Get the text displayed in the combo box
|
|
4336
4336
|
* @returns the text string, owned by the combo box
|
|
4337
4337
|
*/
|
|
4338
|
-
get_active_text(): string
|
|
4338
|
+
get_active_text(): string
|
|
4339
4339
|
/**
|
|
4340
4340
|
* Get the index of the last item selected
|
|
4341
4341
|
* @returns gint
|
|
@@ -4346,19 +4346,19 @@ export interface ComboBox extends Atk.ImplementorIface, Clutter.Animatable, Clut
|
|
|
4346
4346
|
* @param position zero indexed position to insert the item at
|
|
4347
4347
|
* @param text name of the item
|
|
4348
4348
|
*/
|
|
4349
|
-
insert_text(position: number, text: string
|
|
4349
|
+
insert_text(position: number, text: string): void
|
|
4350
4350
|
/**
|
|
4351
4351
|
* Insert an item with text and an icon into the combo box list.
|
|
4352
4352
|
* @param position zero indexed position to insert the item at
|
|
4353
4353
|
* @param text name of the item
|
|
4354
4354
|
* @param icon name of an icon from the icon theme
|
|
4355
4355
|
*/
|
|
4356
|
-
insert_text_with_icon(position: number, text: string
|
|
4356
|
+
insert_text_with_icon(position: number, text: string, icon: string): void
|
|
4357
4357
|
/**
|
|
4358
4358
|
* Prepend an item to the combo box list
|
|
4359
4359
|
* @param text name of the item
|
|
4360
4360
|
*/
|
|
4361
|
-
prepend_text(text: string
|
|
4361
|
+
prepend_text(text: string): void
|
|
4362
4362
|
/**
|
|
4363
4363
|
* Remove all the items of `box`
|
|
4364
4364
|
*/
|
|
@@ -4377,7 +4377,7 @@ export interface ComboBox extends Atk.ImplementorIface, Clutter.Animatable, Clut
|
|
|
4377
4377
|
* Set the text displayed in the combo box
|
|
4378
4378
|
* @param text text to display
|
|
4379
4379
|
*/
|
|
4380
|
-
set_active_text(text: string
|
|
4380
|
+
set_active_text(text: string): void
|
|
4381
4381
|
/**
|
|
4382
4382
|
* Set the current combo box text from the item at `index` in the list.
|
|
4383
4383
|
* @param index the index of the list item to set
|
|
@@ -4391,7 +4391,7 @@ export interface ComboBox extends Atk.ImplementorIface, Clutter.Animatable, Clut
|
|
|
4391
4391
|
* into `value`.
|
|
4392
4392
|
* @param property_name the name of the property
|
|
4393
4393
|
*/
|
|
4394
|
-
get_property(property_name: string
|
|
4394
|
+
get_property(property_name: string): /* value */ any
|
|
4395
4395
|
|
|
4396
4396
|
// Overloads of get_property
|
|
4397
4397
|
|
|
@@ -4415,7 +4415,7 @@ export interface ComboBox extends Atk.ImplementorIface, Clutter.Animatable, Clut
|
|
|
4415
4415
|
* @param property_name the name of the property to get
|
|
4416
4416
|
* @param value return location for the property value
|
|
4417
4417
|
*/
|
|
4418
|
-
get_property(property_name: string
|
|
4418
|
+
get_property(property_name: string, value: any): void
|
|
4419
4419
|
/**
|
|
4420
4420
|
* Gets a property of an object.
|
|
4421
4421
|
*
|
|
@@ -4436,7 +4436,7 @@ export interface ComboBox extends Atk.ImplementorIface, Clutter.Animatable, Clut
|
|
|
4436
4436
|
* @param property_name the name of the property to get
|
|
4437
4437
|
* @param value return location for the property value
|
|
4438
4438
|
*/
|
|
4439
|
-
get_property(property_name: string
|
|
4439
|
+
get_property(property_name: string, value: any): void
|
|
4440
4440
|
|
|
4441
4441
|
// Class property signals of Mx-1.0.Mx.ComboBox
|
|
4442
4442
|
|
|
@@ -4794,7 +4794,7 @@ export interface DeformBowTie extends Atk.ImplementorIface, Clutter.Animatable,
|
|
|
4794
4794
|
* into `value`.
|
|
4795
4795
|
* @param property_name the name of the property
|
|
4796
4796
|
*/
|
|
4797
|
-
get_property(property_name: string
|
|
4797
|
+
get_property(property_name: string): /* value */ any
|
|
4798
4798
|
|
|
4799
4799
|
// Overloads of get_property
|
|
4800
4800
|
|
|
@@ -4818,7 +4818,7 @@ export interface DeformBowTie extends Atk.ImplementorIface, Clutter.Animatable,
|
|
|
4818
4818
|
* @param property_name the name of the property to get
|
|
4819
4819
|
* @param value return location for the property value
|
|
4820
4820
|
*/
|
|
4821
|
-
get_property(property_name: string
|
|
4821
|
+
get_property(property_name: string, value: any): void
|
|
4822
4822
|
/**
|
|
4823
4823
|
* Gets a property of an object.
|
|
4824
4824
|
*
|
|
@@ -4839,7 +4839,7 @@ export interface DeformBowTie extends Atk.ImplementorIface, Clutter.Animatable,
|
|
|
4839
4839
|
* @param property_name the name of the property to get
|
|
4840
4840
|
* @param value return location for the property value
|
|
4841
4841
|
*/
|
|
4842
|
-
get_property(property_name: string
|
|
4842
|
+
get_property(property_name: string, value: any): void
|
|
4843
4843
|
|
|
4844
4844
|
// Class property signals of Mx-1.0.Mx.DeformBowTie
|
|
4845
4845
|
|
|
@@ -5198,7 +5198,7 @@ export interface DeformPageTurn extends Atk.ImplementorIface, Clutter.Animatable
|
|
|
5198
5198
|
* into `value`.
|
|
5199
5199
|
* @param property_name the name of the property
|
|
5200
5200
|
*/
|
|
5201
|
-
get_property(property_name: string
|
|
5201
|
+
get_property(property_name: string): /* value */ any
|
|
5202
5202
|
|
|
5203
5203
|
// Overloads of get_property
|
|
5204
5204
|
|
|
@@ -5222,7 +5222,7 @@ export interface DeformPageTurn extends Atk.ImplementorIface, Clutter.Animatable
|
|
|
5222
5222
|
* @param property_name the name of the property to get
|
|
5223
5223
|
* @param value return location for the property value
|
|
5224
5224
|
*/
|
|
5225
|
-
get_property(property_name: string
|
|
5225
|
+
get_property(property_name: string, value: any): void
|
|
5226
5226
|
/**
|
|
5227
5227
|
* Gets a property of an object.
|
|
5228
5228
|
*
|
|
@@ -5243,7 +5243,7 @@ export interface DeformPageTurn extends Atk.ImplementorIface, Clutter.Animatable
|
|
|
5243
5243
|
* @param property_name the name of the property to get
|
|
5244
5244
|
* @param value return location for the property value
|
|
5245
5245
|
*/
|
|
5246
|
-
get_property(property_name: string
|
|
5246
|
+
get_property(property_name: string, value: any): void
|
|
5247
5247
|
|
|
5248
5248
|
// Class property signals of Mx-1.0.Mx.DeformPageTurn
|
|
5249
5249
|
|
|
@@ -5632,7 +5632,7 @@ export interface DeformTexture extends Atk.ImplementorIface, Clutter.Animatable,
|
|
|
5632
5632
|
* into `value`.
|
|
5633
5633
|
* @param property_name the name of the property
|
|
5634
5634
|
*/
|
|
5635
|
-
get_property(property_name: string
|
|
5635
|
+
get_property(property_name: string): /* value */ any
|
|
5636
5636
|
|
|
5637
5637
|
// Overloads of get_property
|
|
5638
5638
|
|
|
@@ -5656,7 +5656,7 @@ export interface DeformTexture extends Atk.ImplementorIface, Clutter.Animatable,
|
|
|
5656
5656
|
* @param property_name the name of the property to get
|
|
5657
5657
|
* @param value return location for the property value
|
|
5658
5658
|
*/
|
|
5659
|
-
get_property(property_name: string
|
|
5659
|
+
get_property(property_name: string, value: any): void
|
|
5660
5660
|
/**
|
|
5661
5661
|
* Gets a property of an object.
|
|
5662
5662
|
*
|
|
@@ -5677,7 +5677,7 @@ export interface DeformTexture extends Atk.ImplementorIface, Clutter.Animatable,
|
|
|
5677
5677
|
* @param property_name the name of the property to get
|
|
5678
5678
|
* @param value return location for the property value
|
|
5679
5679
|
*/
|
|
5680
|
-
get_property(property_name: string
|
|
5680
|
+
get_property(property_name: string, value: any): void
|
|
5681
5681
|
|
|
5682
5682
|
// Own virtual methods of Mx-1.0.Mx.DeformTexture
|
|
5683
5683
|
|
|
@@ -6036,7 +6036,7 @@ export interface DeformWaves extends Atk.ImplementorIface, Clutter.Animatable, C
|
|
|
6036
6036
|
* into `value`.
|
|
6037
6037
|
* @param property_name the name of the property
|
|
6038
6038
|
*/
|
|
6039
|
-
get_property(property_name: string
|
|
6039
|
+
get_property(property_name: string): /* value */ any
|
|
6040
6040
|
|
|
6041
6041
|
// Overloads of get_property
|
|
6042
6042
|
|
|
@@ -6060,7 +6060,7 @@ export interface DeformWaves extends Atk.ImplementorIface, Clutter.Animatable, C
|
|
|
6060
6060
|
* @param property_name the name of the property to get
|
|
6061
6061
|
* @param value return location for the property value
|
|
6062
6062
|
*/
|
|
6063
|
-
get_property(property_name: string
|
|
6063
|
+
get_property(property_name: string, value: any): void
|
|
6064
6064
|
/**
|
|
6065
6065
|
* Gets a property of an object.
|
|
6066
6066
|
*
|
|
@@ -6081,7 +6081,7 @@ export interface DeformWaves extends Atk.ImplementorIface, Clutter.Animatable, C
|
|
|
6081
6081
|
* @param property_name the name of the property to get
|
|
6082
6082
|
* @param value return location for the property value
|
|
6083
6083
|
*/
|
|
6084
|
-
get_property(property_name: string
|
|
6084
|
+
get_property(property_name: string, value: any): void
|
|
6085
6085
|
|
|
6086
6086
|
// Class property signals of Mx-1.0.Mx.DeformWaves
|
|
6087
6087
|
|
|
@@ -6483,7 +6483,7 @@ export interface Dialog extends Atk.ImplementorIface, Clutter.Animatable, Clutte
|
|
|
6483
6483
|
* into `value`.
|
|
6484
6484
|
* @param property_name the name of the property
|
|
6485
6485
|
*/
|
|
6486
|
-
get_property(property_name: string
|
|
6486
|
+
get_property(property_name: string): /* value */ any
|
|
6487
6487
|
|
|
6488
6488
|
// Overloads of get_property
|
|
6489
6489
|
|
|
@@ -6507,7 +6507,7 @@ export interface Dialog extends Atk.ImplementorIface, Clutter.Animatable, Clutte
|
|
|
6507
6507
|
* @param property_name the name of the property to get
|
|
6508
6508
|
* @param value return location for the property value
|
|
6509
6509
|
*/
|
|
6510
|
-
get_property(property_name: string
|
|
6510
|
+
get_property(property_name: string, value: any): void
|
|
6511
6511
|
/**
|
|
6512
6512
|
* Gets a property of an object.
|
|
6513
6513
|
*
|
|
@@ -6528,7 +6528,7 @@ export interface Dialog extends Atk.ImplementorIface, Clutter.Animatable, Clutte
|
|
|
6528
6528
|
* @param property_name the name of the property to get
|
|
6529
6529
|
* @param value return location for the property value
|
|
6530
6530
|
*/
|
|
6531
|
-
get_property(property_name: string
|
|
6531
|
+
get_property(property_name: string, value: any): void
|
|
6532
6532
|
|
|
6533
6533
|
// Class property signals of Mx-1.0.Mx.Dialog
|
|
6534
6534
|
|
|
@@ -6913,13 +6913,13 @@ export interface Entry extends Atk.ImplementorIface, Clutter.Animatable, Clutter
|
|
|
6913
6913
|
* Gets the text that is displayed when the entry is empty and unfocused
|
|
6914
6914
|
* @returns the current value of the hint property. This string is owned by the #MxEntry and should not be freed or modified.
|
|
6915
6915
|
*/
|
|
6916
|
-
get_hint_text(): string
|
|
6916
|
+
get_hint_text(): string
|
|
6917
6917
|
/**
|
|
6918
6918
|
* Get the suffix appended to the filename to use for the highlighted version
|
|
6919
6919
|
* of the icon.
|
|
6920
6920
|
* @returns the highlight filename suffix. This string is owned by the #MxEntry and should not be freed or modified.
|
|
6921
6921
|
*/
|
|
6922
|
-
get_icon_highlight_suffix(): string
|
|
6922
|
+
get_icon_highlight_suffix(): string
|
|
6923
6923
|
/**
|
|
6924
6924
|
* Gets the character to display instead of the text.
|
|
6925
6925
|
* @returns a character, or 0 if input should not be hidden.
|
|
@@ -6929,14 +6929,14 @@ export interface Entry extends Atk.ImplementorIface, Clutter.Animatable, Clutter
|
|
|
6929
6929
|
* Get the text displayed on the entry
|
|
6930
6930
|
* @returns the text for the entry. This must not be freed by the application
|
|
6931
6931
|
*/
|
|
6932
|
-
get_text(): string
|
|
6932
|
+
get_text(): string
|
|
6933
6933
|
/**
|
|
6934
6934
|
* Sets the text to display when the entry is empty and unfocused. When the
|
|
6935
6935
|
* entry is displaying the hint, it has a pseudo class of "indeterminate".
|
|
6936
6936
|
* A value of NULL unsets the hint.
|
|
6937
6937
|
* @param text text to set as the entry hint
|
|
6938
6938
|
*/
|
|
6939
|
-
set_hint_text(text: string
|
|
6939
|
+
set_hint_text(text: string): void
|
|
6940
6940
|
/**
|
|
6941
6941
|
* Sets the suffix appended to the filename to use for the highlighted version
|
|
6942
6942
|
* of the icon. e.g. if you have set your primay icon to "primary-icon.png"
|
|
@@ -6944,7 +6944,7 @@ export interface Entry extends Atk.ImplementorIface, Clutter.Animatable, Clutter
|
|
|
6944
6944
|
* "primary-icon-highlight.png"
|
|
6945
6945
|
* @param suffix the suffix to append to the filename for the highlight version
|
|
6946
6946
|
*/
|
|
6947
|
-
set_icon_highlight_suffix(suffix: string
|
|
6947
|
+
set_icon_highlight_suffix(suffix: string): void
|
|
6948
6948
|
/**
|
|
6949
6949
|
* Sets the character to display instead of the text. Use 0 to display
|
|
6950
6950
|
* the actual text.
|
|
@@ -6955,19 +6955,19 @@ export interface Entry extends Atk.ImplementorIface, Clutter.Animatable, Clutter
|
|
|
6955
6955
|
* Set the primary icon of the entry to the given filename
|
|
6956
6956
|
* @param filename filename of an icon
|
|
6957
6957
|
*/
|
|
6958
|
-
set_primary_icon_from_file(filename: string
|
|
6959
|
-
set_primary_icon_tooltip_text(text: string
|
|
6958
|
+
set_primary_icon_from_file(filename: string): void
|
|
6959
|
+
set_primary_icon_tooltip_text(text: string): void
|
|
6960
6960
|
/**
|
|
6961
6961
|
* Set the primary icon of the entry to the given filename
|
|
6962
6962
|
* @param filename filename of an icon
|
|
6963
6963
|
*/
|
|
6964
|
-
set_secondary_icon_from_file(filename: string
|
|
6965
|
-
set_secondary_icon_tooltip_text(text: string
|
|
6964
|
+
set_secondary_icon_from_file(filename: string): void
|
|
6965
|
+
set_secondary_icon_tooltip_text(text: string): void
|
|
6966
6966
|
/**
|
|
6967
6967
|
* Sets the text displayed on the entry
|
|
6968
6968
|
* @param text text to set the entry to
|
|
6969
6969
|
*/
|
|
6970
|
-
set_text(text: string
|
|
6970
|
+
set_text(text: string): void
|
|
6971
6971
|
|
|
6972
6972
|
// Conflicting methods
|
|
6973
6973
|
|
|
@@ -6976,7 +6976,7 @@ export interface Entry extends Atk.ImplementorIface, Clutter.Animatable, Clutter
|
|
|
6976
6976
|
* into `value`.
|
|
6977
6977
|
* @param property_name the name of the property
|
|
6978
6978
|
*/
|
|
6979
|
-
get_property(property_name: string
|
|
6979
|
+
get_property(property_name: string): /* value */ any
|
|
6980
6980
|
|
|
6981
6981
|
// Overloads of get_property
|
|
6982
6982
|
|
|
@@ -7000,7 +7000,7 @@ export interface Entry extends Atk.ImplementorIface, Clutter.Animatable, Clutter
|
|
|
7000
7000
|
* @param property_name the name of the property to get
|
|
7001
7001
|
* @param value return location for the property value
|
|
7002
7002
|
*/
|
|
7003
|
-
get_property(property_name: string
|
|
7003
|
+
get_property(property_name: string, value: any): void
|
|
7004
7004
|
/**
|
|
7005
7005
|
* Gets a property of an object.
|
|
7006
7006
|
*
|
|
@@ -7021,7 +7021,7 @@ export interface Entry extends Atk.ImplementorIface, Clutter.Animatable, Clutter
|
|
|
7021
7021
|
* @param property_name the name of the property to get
|
|
7022
7022
|
* @param value return location for the property value
|
|
7023
7023
|
*/
|
|
7024
|
-
get_property(property_name: string
|
|
7024
|
+
get_property(property_name: string, value: any): void
|
|
7025
7025
|
|
|
7026
7026
|
// Own virtual methods of Mx-1.0.Mx.Entry
|
|
7027
7027
|
|
|
@@ -7366,7 +7366,7 @@ export class Entry extends Widget {
|
|
|
7366
7366
|
* @param text text to set the entry to
|
|
7367
7367
|
* @returns a new #MxEntry
|
|
7368
7368
|
*/
|
|
7369
|
-
static new_with_text(text: string
|
|
7369
|
+
static new_with_text(text: string): Entry
|
|
7370
7370
|
_init(config?: Entry.ConstructorProperties): void
|
|
7371
7371
|
}
|
|
7372
7372
|
|
|
@@ -7425,7 +7425,7 @@ export interface Expander extends Atk.ImplementorIface, Clutter.Animatable, Clut
|
|
|
7425
7425
|
* Sets the text displayed as the title of the expander
|
|
7426
7426
|
* @param label string to set as the expander label
|
|
7427
7427
|
*/
|
|
7428
|
-
set_label(label: string
|
|
7428
|
+
set_label(label: string): void
|
|
7429
7429
|
|
|
7430
7430
|
// Conflicting methods
|
|
7431
7431
|
|
|
@@ -7434,7 +7434,7 @@ export interface Expander extends Atk.ImplementorIface, Clutter.Animatable, Clut
|
|
|
7434
7434
|
* into `value`.
|
|
7435
7435
|
* @param property_name the name of the property
|
|
7436
7436
|
*/
|
|
7437
|
-
get_property(property_name: string
|
|
7437
|
+
get_property(property_name: string): /* value */ any
|
|
7438
7438
|
|
|
7439
7439
|
// Overloads of get_property
|
|
7440
7440
|
|
|
@@ -7458,7 +7458,7 @@ export interface Expander extends Atk.ImplementorIface, Clutter.Animatable, Clut
|
|
|
7458
7458
|
* @param property_name the name of the property to get
|
|
7459
7459
|
* @param value return location for the property value
|
|
7460
7460
|
*/
|
|
7461
|
-
get_property(property_name: string
|
|
7461
|
+
get_property(property_name: string, value: any): void
|
|
7462
7462
|
/**
|
|
7463
7463
|
* Gets a property of an object.
|
|
7464
7464
|
*
|
|
@@ -7479,7 +7479,7 @@ export interface Expander extends Atk.ImplementorIface, Clutter.Animatable, Clut
|
|
|
7479
7479
|
* @param property_name the name of the property to get
|
|
7480
7480
|
* @param value return location for the property value
|
|
7481
7481
|
*/
|
|
7482
|
-
get_property(property_name: string
|
|
7482
|
+
get_property(property_name: string, value: any): void
|
|
7483
7483
|
|
|
7484
7484
|
// Own virtual methods of Mx-1.0.Mx.Expander
|
|
7485
7485
|
|
|
@@ -8012,7 +8012,7 @@ export interface FloatingWidget extends Atk.ImplementorIface, Clutter.Animatable
|
|
|
8012
8012
|
* into `value`.
|
|
8013
8013
|
* @param property_name the name of the property
|
|
8014
8014
|
*/
|
|
8015
|
-
get_property(property_name: string
|
|
8015
|
+
get_property(property_name: string): /* value */ any
|
|
8016
8016
|
|
|
8017
8017
|
// Overloads of get_property
|
|
8018
8018
|
|
|
@@ -8036,7 +8036,7 @@ export interface FloatingWidget extends Atk.ImplementorIface, Clutter.Animatable
|
|
|
8036
8036
|
* @param property_name the name of the property to get
|
|
8037
8037
|
* @param value return location for the property value
|
|
8038
8038
|
*/
|
|
8039
|
-
get_property(property_name: string
|
|
8039
|
+
get_property(property_name: string, value: any): void
|
|
8040
8040
|
/**
|
|
8041
8041
|
* Gets a property of an object.
|
|
8042
8042
|
*
|
|
@@ -8057,7 +8057,7 @@ export interface FloatingWidget extends Atk.ImplementorIface, Clutter.Animatable
|
|
|
8057
8057
|
* @param property_name the name of the property to get
|
|
8058
8058
|
* @param value return location for the property value
|
|
8059
8059
|
*/
|
|
8060
|
-
get_property(property_name: string
|
|
8060
|
+
get_property(property_name: string, value: any): void
|
|
8061
8061
|
|
|
8062
8062
|
// Class property signals of Mx-1.0.Mx.FloatingWidget
|
|
8063
8063
|
|
|
@@ -8478,7 +8478,7 @@ export interface Frame extends Atk.ImplementorIface, Clutter.Animatable, Clutter
|
|
|
8478
8478
|
* into `value`.
|
|
8479
8479
|
* @param property_name the name of the property
|
|
8480
8480
|
*/
|
|
8481
|
-
get_property(property_name: string
|
|
8481
|
+
get_property(property_name: string): /* value */ any
|
|
8482
8482
|
|
|
8483
8483
|
// Overloads of get_property
|
|
8484
8484
|
|
|
@@ -8502,7 +8502,7 @@ export interface Frame extends Atk.ImplementorIface, Clutter.Animatable, Clutter
|
|
|
8502
8502
|
* @param property_name the name of the property to get
|
|
8503
8503
|
* @param value return location for the property value
|
|
8504
8504
|
*/
|
|
8505
|
-
get_property(property_name: string
|
|
8505
|
+
get_property(property_name: string, value: any): void
|
|
8506
8506
|
/**
|
|
8507
8507
|
* Gets a property of an object.
|
|
8508
8508
|
*
|
|
@@ -8523,7 +8523,7 @@ export interface Frame extends Atk.ImplementorIface, Clutter.Animatable, Clutter
|
|
|
8523
8523
|
* @param property_name the name of the property to get
|
|
8524
8524
|
* @param value return location for the property value
|
|
8525
8525
|
*/
|
|
8526
|
-
get_property(property_name: string
|
|
8526
|
+
get_property(property_name: string, value: any): void
|
|
8527
8527
|
|
|
8528
8528
|
// Class property signals of Mx-1.0.Mx.Frame
|
|
8529
8529
|
|
|
@@ -8918,7 +8918,7 @@ export interface Grid extends Atk.ImplementorIface, Clutter.Animatable, Clutter.
|
|
|
8918
8918
|
* into `value`.
|
|
8919
8919
|
* @param property_name the name of the property
|
|
8920
8920
|
*/
|
|
8921
|
-
get_property(property_name: string
|
|
8921
|
+
get_property(property_name: string): /* value */ any
|
|
8922
8922
|
|
|
8923
8923
|
// Overloads of get_property
|
|
8924
8924
|
|
|
@@ -8942,7 +8942,7 @@ export interface Grid extends Atk.ImplementorIface, Clutter.Animatable, Clutter.
|
|
|
8942
8942
|
* @param property_name the name of the property to get
|
|
8943
8943
|
* @param value return location for the property value
|
|
8944
8944
|
*/
|
|
8945
|
-
get_property(property_name: string
|
|
8945
|
+
get_property(property_name: string, value: any): void
|
|
8946
8946
|
/**
|
|
8947
8947
|
* Gets a property of an object.
|
|
8948
8948
|
*
|
|
@@ -8963,7 +8963,7 @@ export interface Grid extends Atk.ImplementorIface, Clutter.Animatable, Clutter.
|
|
|
8963
8963
|
* @param property_name the name of the property to get
|
|
8964
8964
|
* @param value return location for the property value
|
|
8965
8965
|
*/
|
|
8966
|
-
get_property(property_name: string
|
|
8966
|
+
get_property(property_name: string, value: any): void
|
|
8967
8967
|
|
|
8968
8968
|
// Class property signals of Mx-1.0.Mx.Grid
|
|
8969
8969
|
|
|
@@ -9320,9 +9320,9 @@ export interface Icon extends Atk.ImplementorIface, Clutter.Animatable, Clutter.
|
|
|
9320
9320
|
|
|
9321
9321
|
// Owm methods of Mx-1.0.Mx.Icon
|
|
9322
9322
|
|
|
9323
|
-
get_icon_name(): string
|
|
9323
|
+
get_icon_name(): string
|
|
9324
9324
|
get_icon_size(): number
|
|
9325
|
-
set_icon_name(icon_name: string
|
|
9325
|
+
set_icon_name(icon_name: string): void
|
|
9326
9326
|
set_icon_size(size: number): void
|
|
9327
9327
|
|
|
9328
9328
|
// Conflicting methods
|
|
@@ -9332,7 +9332,7 @@ export interface Icon extends Atk.ImplementorIface, Clutter.Animatable, Clutter.
|
|
|
9332
9332
|
* into `value`.
|
|
9333
9333
|
* @param property_name the name of the property
|
|
9334
9334
|
*/
|
|
9335
|
-
get_property(property_name: string
|
|
9335
|
+
get_property(property_name: string): /* value */ any
|
|
9336
9336
|
|
|
9337
9337
|
// Overloads of get_property
|
|
9338
9338
|
|
|
@@ -9356,7 +9356,7 @@ export interface Icon extends Atk.ImplementorIface, Clutter.Animatable, Clutter.
|
|
|
9356
9356
|
* @param property_name the name of the property to get
|
|
9357
9357
|
* @param value return location for the property value
|
|
9358
9358
|
*/
|
|
9359
|
-
get_property(property_name: string
|
|
9359
|
+
get_property(property_name: string, value: any): void
|
|
9360
9360
|
/**
|
|
9361
9361
|
* Gets a property of an object.
|
|
9362
9362
|
*
|
|
@@ -9377,7 +9377,7 @@ export interface Icon extends Atk.ImplementorIface, Clutter.Animatable, Clutter.
|
|
|
9377
9377
|
* @param property_name the name of the property to get
|
|
9378
9378
|
* @param value return location for the property value
|
|
9379
9379
|
*/
|
|
9380
|
-
get_property(property_name: string
|
|
9380
|
+
get_property(property_name: string, value: any): void
|
|
9381
9381
|
|
|
9382
9382
|
// Class property signals of Mx-1.0.Mx.Icon
|
|
9383
9383
|
|
|
@@ -9727,22 +9727,22 @@ export interface IconTheme {
|
|
|
9727
9727
|
* Get the value of the #MxIconTheme:theme-name property.
|
|
9728
9728
|
* @returns the current value of the "theme-name" property.
|
|
9729
9729
|
*/
|
|
9730
|
-
get_theme_name(): string
|
|
9731
|
-
has_icon(icon_name: string
|
|
9730
|
+
get_theme_name(): string
|
|
9731
|
+
has_icon(icon_name: string): boolean
|
|
9732
9732
|
/**
|
|
9733
9733
|
* If the icon is available, returns a #CoglHandle of the icon.
|
|
9734
9734
|
* @param icon_name The name of the icon
|
|
9735
9735
|
* @param size The desired size of the icon
|
|
9736
9736
|
* @returns a #CoglHandle of the icon, or %NULL.
|
|
9737
9737
|
*/
|
|
9738
|
-
lookup(icon_name: string
|
|
9738
|
+
lookup(icon_name: string, size: number): Cogl.Handle
|
|
9739
9739
|
/**
|
|
9740
9740
|
* If the icon is available, returns a #ClutterTexture of the icon.
|
|
9741
9741
|
* @param icon_name The name of the icon
|
|
9742
9742
|
* @param size The desired size of the icon
|
|
9743
9743
|
* @returns a #ClutterTexture of the icon, or %NULL.
|
|
9744
9744
|
*/
|
|
9745
|
-
lookup_texture(icon_name: string
|
|
9745
|
+
lookup_texture(icon_name: string, size: number): Clutter.Texture
|
|
9746
9746
|
/**
|
|
9747
9747
|
* Sets the directories the #MxIconTheme will search in to find icons.
|
|
9748
9748
|
* By default, it will look in the default system and local icon
|
|
@@ -9760,7 +9760,7 @@ export interface IconTheme {
|
|
|
9760
9760
|
* icon theme, this function can be called with a %NULL `theme_name` argument.
|
|
9761
9761
|
* @param theme_name the name of an icon theme to load, or %NULL
|
|
9762
9762
|
*/
|
|
9763
|
-
set_theme_name(theme_name: string
|
|
9763
|
+
set_theme_name(theme_name: string): void
|
|
9764
9764
|
|
|
9765
9765
|
// Class property signals of Mx-1.0.Mx.IconTheme
|
|
9766
9766
|
|
|
@@ -9978,7 +9978,7 @@ export interface Image extends Atk.ImplementorIface, Clutter.Animatable, Clutter
|
|
|
9978
9978
|
* @param filename Filename to read the file from
|
|
9979
9979
|
* @returns #TRUE if the image was successfully updated
|
|
9980
9980
|
*/
|
|
9981
|
-
set_from_file(filename: string
|
|
9981
|
+
set_from_file(filename: string): boolean
|
|
9982
9982
|
/**
|
|
9983
9983
|
* Set the image data from an image file, and scale the image during loading.
|
|
9984
9984
|
* In case of failure, #FALSE is returned and `error` is set. The aspect ratio
|
|
@@ -9988,7 +9988,7 @@ export interface Image extends Atk.ImplementorIface, Clutter.Animatable, Clutter
|
|
|
9988
9988
|
* @param height Height to scale the image to, or -1
|
|
9989
9989
|
* @returns #TRUE if the image was successfully updated
|
|
9990
9990
|
*/
|
|
9991
|
-
set_from_file_at_size(filename: string
|
|
9991
|
+
set_from_file_at_size(filename: string, width: number, height: number): boolean
|
|
9992
9992
|
/**
|
|
9993
9993
|
* Set the MxImage:image-rotation property.
|
|
9994
9994
|
* @param rotation Rotation angle in degrees
|
|
@@ -10043,7 +10043,7 @@ export interface Image extends Atk.ImplementorIface, Clutter.Animatable, Clutter
|
|
|
10043
10043
|
* into `value`.
|
|
10044
10044
|
* @param property_name the name of the property
|
|
10045
10045
|
*/
|
|
10046
|
-
get_property(property_name: string
|
|
10046
|
+
get_property(property_name: string): /* value */ any
|
|
10047
10047
|
|
|
10048
10048
|
// Overloads of get_property
|
|
10049
10049
|
|
|
@@ -10067,7 +10067,7 @@ export interface Image extends Atk.ImplementorIface, Clutter.Animatable, Clutter
|
|
|
10067
10067
|
* @param property_name the name of the property to get
|
|
10068
10068
|
* @param value return location for the property value
|
|
10069
10069
|
*/
|
|
10070
|
-
get_property(property_name: string
|
|
10070
|
+
get_property(property_name: string, value: any): void
|
|
10071
10071
|
/**
|
|
10072
10072
|
* Gets a property of an object.
|
|
10073
10073
|
*
|
|
@@ -10088,7 +10088,7 @@ export interface Image extends Atk.ImplementorIface, Clutter.Animatable, Clutter
|
|
|
10088
10088
|
* @param property_name the name of the property to get
|
|
10089
10089
|
* @param value return location for the property value
|
|
10090
10090
|
*/
|
|
10091
|
-
get_property(property_name: string
|
|
10091
|
+
get_property(property_name: string, value: any): void
|
|
10092
10092
|
|
|
10093
10093
|
// Own virtual methods of Mx-1.0.Mx.Image
|
|
10094
10094
|
|
|
@@ -10463,7 +10463,7 @@ export interface ItemView extends Atk.ImplementorIface, Clutter.Animatable, Clut
|
|
|
10463
10463
|
* @param attribute Name of the attribute
|
|
10464
10464
|
* @param column Column number
|
|
10465
10465
|
*/
|
|
10466
|
-
add_attribute(attribute: string
|
|
10466
|
+
add_attribute(attribute: string, column: number): void
|
|
10467
10467
|
/**
|
|
10468
10468
|
* Freeze the view. This means that the view will not act on changes to the
|
|
10469
10469
|
* model until it is thawed. Call #mx_item_view_thaw to thaw the view
|
|
@@ -10513,7 +10513,7 @@ export interface ItemView extends Atk.ImplementorIface, Clutter.Animatable, Clut
|
|
|
10513
10513
|
* into `value`.
|
|
10514
10514
|
* @param property_name the name of the property
|
|
10515
10515
|
*/
|
|
10516
|
-
get_property(property_name: string
|
|
10516
|
+
get_property(property_name: string): /* value */ any
|
|
10517
10517
|
|
|
10518
10518
|
// Overloads of get_property
|
|
10519
10519
|
|
|
@@ -10537,7 +10537,7 @@ export interface ItemView extends Atk.ImplementorIface, Clutter.Animatable, Clut
|
|
|
10537
10537
|
* @param property_name the name of the property to get
|
|
10538
10538
|
* @param value return location for the property value
|
|
10539
10539
|
*/
|
|
10540
|
-
get_property(property_name: string
|
|
10540
|
+
get_property(property_name: string, value: any): void
|
|
10541
10541
|
/**
|
|
10542
10542
|
* Gets a property of an object.
|
|
10543
10543
|
*
|
|
@@ -10558,7 +10558,7 @@ export interface ItemView extends Atk.ImplementorIface, Clutter.Animatable, Clut
|
|
|
10558
10558
|
* @param property_name the name of the property to get
|
|
10559
10559
|
* @param value return location for the property value
|
|
10560
10560
|
*/
|
|
10561
|
-
get_property(property_name: string
|
|
10561
|
+
get_property(property_name: string, value: any): void
|
|
10562
10562
|
|
|
10563
10563
|
// Class property signals of Mx-1.0.Mx.ItemView
|
|
10564
10564
|
|
|
@@ -11079,7 +11079,7 @@ export interface KineticScrollView extends Atk.ImplementorIface, Clutter.Animata
|
|
|
11079
11079
|
* into `value`.
|
|
11080
11080
|
* @param property_name the name of the property
|
|
11081
11081
|
*/
|
|
11082
|
-
get_property(property_name: string
|
|
11082
|
+
get_property(property_name: string): /* value */ any
|
|
11083
11083
|
|
|
11084
11084
|
// Overloads of get_property
|
|
11085
11085
|
|
|
@@ -11103,7 +11103,7 @@ export interface KineticScrollView extends Atk.ImplementorIface, Clutter.Animata
|
|
|
11103
11103
|
* @param property_name the name of the property to get
|
|
11104
11104
|
* @param value return location for the property value
|
|
11105
11105
|
*/
|
|
11106
|
-
get_property(property_name: string
|
|
11106
|
+
get_property(property_name: string, value: any): void
|
|
11107
11107
|
/**
|
|
11108
11108
|
* Gets a property of an object.
|
|
11109
11109
|
*
|
|
@@ -11124,7 +11124,7 @@ export interface KineticScrollView extends Atk.ImplementorIface, Clutter.Animata
|
|
|
11124
11124
|
* @param property_name the name of the property to get
|
|
11125
11125
|
* @param value return location for the property value
|
|
11126
11126
|
*/
|
|
11127
|
-
get_property(property_name: string
|
|
11127
|
+
get_property(property_name: string, value: any): void
|
|
11128
11128
|
|
|
11129
11129
|
// Class property signals of Mx-1.0.Mx.KineticScrollView
|
|
11130
11130
|
|
|
@@ -11579,7 +11579,7 @@ export interface Label extends Atk.ImplementorIface, Clutter.Animatable, Clutter
|
|
|
11579
11579
|
* Get the text displayed on the label
|
|
11580
11580
|
* @returns the text for the label. This must not be freed by the application
|
|
11581
11581
|
*/
|
|
11582
|
-
get_text(): string
|
|
11582
|
+
get_text(): string
|
|
11583
11583
|
/**
|
|
11584
11584
|
* Determines whether the text of the label is being treated as Pango markup.
|
|
11585
11585
|
* @returns %TRUE if the text of the label is treated as Pango markup, %FALSE otherwise.
|
|
@@ -11626,7 +11626,7 @@ export interface Label extends Atk.ImplementorIface, Clutter.Animatable, Clutter
|
|
|
11626
11626
|
* Sets the text displayed on the label
|
|
11627
11627
|
* @param text text to set the label to
|
|
11628
11628
|
*/
|
|
11629
|
-
set_text(text: string
|
|
11629
|
+
set_text(text: string): void
|
|
11630
11630
|
/**
|
|
11631
11631
|
* Sets whether the text of the label should be treated as Pango markup.
|
|
11632
11632
|
* @param use_markup %TRUE to use Pango markup, %FALSE otherwise
|
|
@@ -11664,7 +11664,7 @@ export interface Label extends Atk.ImplementorIface, Clutter.Animatable, Clutter
|
|
|
11664
11664
|
* into `value`.
|
|
11665
11665
|
* @param property_name the name of the property
|
|
11666
11666
|
*/
|
|
11667
|
-
get_property(property_name: string
|
|
11667
|
+
get_property(property_name: string): /* value */ any
|
|
11668
11668
|
|
|
11669
11669
|
// Overloads of get_property
|
|
11670
11670
|
|
|
@@ -11688,7 +11688,7 @@ export interface Label extends Atk.ImplementorIface, Clutter.Animatable, Clutter
|
|
|
11688
11688
|
* @param property_name the name of the property to get
|
|
11689
11689
|
* @param value return location for the property value
|
|
11690
11690
|
*/
|
|
11691
|
-
get_property(property_name: string
|
|
11691
|
+
get_property(property_name: string, value: any): void
|
|
11692
11692
|
/**
|
|
11693
11693
|
* Gets a property of an object.
|
|
11694
11694
|
*
|
|
@@ -11709,7 +11709,7 @@ export interface Label extends Atk.ImplementorIface, Clutter.Animatable, Clutter
|
|
|
11709
11709
|
* @param property_name the name of the property to get
|
|
11710
11710
|
* @param value return location for the property value
|
|
11711
11711
|
*/
|
|
11712
|
-
get_property(property_name: string
|
|
11712
|
+
get_property(property_name: string, value: any): void
|
|
11713
11713
|
|
|
11714
11714
|
// Class property signals of Mx-1.0.Mx.Label
|
|
11715
11715
|
|
|
@@ -12037,7 +12037,7 @@ export class Label extends Widget {
|
|
|
12037
12037
|
* @param text text to set the label to
|
|
12038
12038
|
* @returns a new #MxLabel
|
|
12039
12039
|
*/
|
|
12040
|
-
static new_with_text(text: string
|
|
12040
|
+
static new_with_text(text: string): Label
|
|
12041
12041
|
_init(config?: Label.ConstructorProperties): void
|
|
12042
12042
|
}
|
|
12043
12043
|
|
|
@@ -12074,7 +12074,7 @@ export interface ListView extends Atk.ImplementorIface, Clutter.Animatable, Clut
|
|
|
12074
12074
|
* @param attribute Name of the attribute
|
|
12075
12075
|
* @param column Column number
|
|
12076
12076
|
*/
|
|
12077
|
-
add_attribute(attribute: string
|
|
12077
|
+
add_attribute(attribute: string, column: number): void
|
|
12078
12078
|
/**
|
|
12079
12079
|
* Freeze the view. This means that the view will not act on changes to the
|
|
12080
12080
|
* model until it is thawed. Call #mx_list_view_thaw to thaw the view.
|
|
@@ -12124,7 +12124,7 @@ export interface ListView extends Atk.ImplementorIface, Clutter.Animatable, Clut
|
|
|
12124
12124
|
* into `value`.
|
|
12125
12125
|
* @param property_name the name of the property
|
|
12126
12126
|
*/
|
|
12127
|
-
get_property(property_name: string
|
|
12127
|
+
get_property(property_name: string): /* value */ any
|
|
12128
12128
|
|
|
12129
12129
|
// Overloads of get_property
|
|
12130
12130
|
|
|
@@ -12148,7 +12148,7 @@ export interface ListView extends Atk.ImplementorIface, Clutter.Animatable, Clut
|
|
|
12148
12148
|
* @param property_name the name of the property to get
|
|
12149
12149
|
* @param value return location for the property value
|
|
12150
12150
|
*/
|
|
12151
|
-
get_property(property_name: string
|
|
12151
|
+
get_property(property_name: string, value: any): void
|
|
12152
12152
|
/**
|
|
12153
12153
|
* Gets a property of an object.
|
|
12154
12154
|
*
|
|
@@ -12169,7 +12169,7 @@ export interface ListView extends Atk.ImplementorIface, Clutter.Animatable, Clut
|
|
|
12169
12169
|
* @param property_name the name of the property to get
|
|
12170
12170
|
* @param value return location for the property value
|
|
12171
12171
|
*/
|
|
12172
|
-
get_property(property_name: string
|
|
12172
|
+
get_property(property_name: string, value: any): void
|
|
12173
12173
|
/**
|
|
12174
12174
|
* Adds a #ClutterActor to `container`. This function will emit the
|
|
12175
12175
|
* "actor-added" signal. The actor should be parented to
|
|
@@ -12611,7 +12611,7 @@ export interface Menu extends Atk.ImplementorIface, Clutter.Animatable, Clutter.
|
|
|
12611
12611
|
* into `value`.
|
|
12612
12612
|
* @param property_name the name of the property
|
|
12613
12613
|
*/
|
|
12614
|
-
get_property(property_name: string
|
|
12614
|
+
get_property(property_name: string): /* value */ any
|
|
12615
12615
|
|
|
12616
12616
|
// Overloads of get_property
|
|
12617
12617
|
|
|
@@ -12635,7 +12635,7 @@ export interface Menu extends Atk.ImplementorIface, Clutter.Animatable, Clutter.
|
|
|
12635
12635
|
* @param property_name the name of the property to get
|
|
12636
12636
|
* @param value return location for the property value
|
|
12637
12637
|
*/
|
|
12638
|
-
get_property(property_name: string
|
|
12638
|
+
get_property(property_name: string, value: any): void
|
|
12639
12639
|
/**
|
|
12640
12640
|
* Gets a property of an object.
|
|
12641
12641
|
*
|
|
@@ -12656,7 +12656,7 @@ export interface Menu extends Atk.ImplementorIface, Clutter.Animatable, Clutter.
|
|
|
12656
12656
|
* @param property_name the name of the property to get
|
|
12657
12657
|
* @param value return location for the property value
|
|
12658
12658
|
*/
|
|
12659
|
-
get_property(property_name: string
|
|
12659
|
+
get_property(property_name: string, value: any): void
|
|
12660
12660
|
|
|
12661
12661
|
// Own virtual methods of Mx-1.0.Mx.Menu
|
|
12662
12662
|
|
|
@@ -13021,7 +13021,7 @@ export interface Notebook extends Atk.ImplementorIface, Clutter.Animatable, Clut
|
|
|
13021
13021
|
* into `value`.
|
|
13022
13022
|
* @param property_name the name of the property
|
|
13023
13023
|
*/
|
|
13024
|
-
get_property(property_name: string
|
|
13024
|
+
get_property(property_name: string): /* value */ any
|
|
13025
13025
|
|
|
13026
13026
|
// Overloads of get_property
|
|
13027
13027
|
|
|
@@ -13045,7 +13045,7 @@ export interface Notebook extends Atk.ImplementorIface, Clutter.Animatable, Clut
|
|
|
13045
13045
|
* @param property_name the name of the property to get
|
|
13046
13046
|
* @param value return location for the property value
|
|
13047
13047
|
*/
|
|
13048
|
-
get_property(property_name: string
|
|
13048
|
+
get_property(property_name: string, value: any): void
|
|
13049
13049
|
/**
|
|
13050
13050
|
* Gets a property of an object.
|
|
13051
13051
|
*
|
|
@@ -13066,7 +13066,7 @@ export interface Notebook extends Atk.ImplementorIface, Clutter.Animatable, Clut
|
|
|
13066
13066
|
* @param property_name the name of the property to get
|
|
13067
13067
|
* @param value return location for the property value
|
|
13068
13068
|
*/
|
|
13069
|
-
get_property(property_name: string
|
|
13069
|
+
get_property(property_name: string, value: any): void
|
|
13070
13070
|
|
|
13071
13071
|
// Class property signals of Mx-1.0.Mx.Notebook
|
|
13072
13072
|
|
|
@@ -13890,11 +13890,11 @@ export interface PathBar extends Atk.ImplementorIface, Clutter.Animatable, Clutt
|
|
|
13890
13890
|
* @returns MxEntry *
|
|
13891
13891
|
*/
|
|
13892
13892
|
get_entry(): Entry
|
|
13893
|
-
get_label(level: number): string
|
|
13893
|
+
get_label(level: number): string
|
|
13894
13894
|
get_level(): number
|
|
13895
|
-
get_text(): string
|
|
13895
|
+
get_text(): string
|
|
13896
13896
|
pop(): number
|
|
13897
|
-
push(name: string
|
|
13897
|
+
push(name: string): number
|
|
13898
13898
|
/**
|
|
13899
13899
|
* Set theh value of the #MxPathBar:clear-on-change property
|
|
13900
13900
|
* @param clear_on_change the new value of the property
|
|
@@ -13910,12 +13910,12 @@ export interface PathBar extends Atk.ImplementorIface, Clutter.Animatable, Clutt
|
|
|
13910
13910
|
* @param level A #gint
|
|
13911
13911
|
* @param label A #gchar
|
|
13912
13912
|
*/
|
|
13913
|
-
set_label(level: number, label: string
|
|
13913
|
+
set_label(level: number, label: string): void
|
|
13914
13914
|
/**
|
|
13915
13915
|
* Set the text in the editable area of the #MxPathBar
|
|
13916
13916
|
* @param text string to set the editable text to.
|
|
13917
13917
|
*/
|
|
13918
|
-
set_text(text: string
|
|
13918
|
+
set_text(text: string): void
|
|
13919
13919
|
|
|
13920
13920
|
// Conflicting methods
|
|
13921
13921
|
|
|
@@ -13924,7 +13924,7 @@ export interface PathBar extends Atk.ImplementorIface, Clutter.Animatable, Clutt
|
|
|
13924
13924
|
* into `value`.
|
|
13925
13925
|
* @param property_name the name of the property
|
|
13926
13926
|
*/
|
|
13927
|
-
get_property(property_name: string
|
|
13927
|
+
get_property(property_name: string): /* value */ any
|
|
13928
13928
|
|
|
13929
13929
|
// Overloads of get_property
|
|
13930
13930
|
|
|
@@ -13948,7 +13948,7 @@ export interface PathBar extends Atk.ImplementorIface, Clutter.Animatable, Clutt
|
|
|
13948
13948
|
* @param property_name the name of the property to get
|
|
13949
13949
|
* @param value return location for the property value
|
|
13950
13950
|
*/
|
|
13951
|
-
get_property(property_name: string
|
|
13951
|
+
get_property(property_name: string, value: any): void
|
|
13952
13952
|
/**
|
|
13953
13953
|
* Gets a property of an object.
|
|
13954
13954
|
*
|
|
@@ -13969,7 +13969,7 @@ export interface PathBar extends Atk.ImplementorIface, Clutter.Animatable, Clutt
|
|
|
13969
13969
|
* @param property_name the name of the property to get
|
|
13970
13970
|
* @param value return location for the property value
|
|
13971
13971
|
*/
|
|
13972
|
-
get_property(property_name: string
|
|
13972
|
+
get_property(property_name: string, value: any): void
|
|
13973
13973
|
|
|
13974
13974
|
// Class property signals of Mx-1.0.Mx.PathBar
|
|
13975
13975
|
|
|
@@ -14317,7 +14317,7 @@ export interface ProgressBar extends Atk.ImplementorIface, Clutter.Animatable, C
|
|
|
14317
14317
|
* into `value`.
|
|
14318
14318
|
* @param property_name the name of the property
|
|
14319
14319
|
*/
|
|
14320
|
-
get_property(property_name: string
|
|
14320
|
+
get_property(property_name: string): /* value */ any
|
|
14321
14321
|
|
|
14322
14322
|
// Overloads of get_property
|
|
14323
14323
|
|
|
@@ -14341,7 +14341,7 @@ export interface ProgressBar extends Atk.ImplementorIface, Clutter.Animatable, C
|
|
|
14341
14341
|
* @param property_name the name of the property to get
|
|
14342
14342
|
* @param value return location for the property value
|
|
14343
14343
|
*/
|
|
14344
|
-
get_property(property_name: string
|
|
14344
|
+
get_property(property_name: string, value: any): void
|
|
14345
14345
|
/**
|
|
14346
14346
|
* Gets a property of an object.
|
|
14347
14347
|
*
|
|
@@ -14362,7 +14362,7 @@ export interface ProgressBar extends Atk.ImplementorIface, Clutter.Animatable, C
|
|
|
14362
14362
|
* @param property_name the name of the property to get
|
|
14363
14363
|
* @param value return location for the property value
|
|
14364
14364
|
*/
|
|
14365
|
-
get_property(property_name: string
|
|
14365
|
+
get_property(property_name: string, value: any): void
|
|
14366
14366
|
|
|
14367
14367
|
// Class property signals of Mx-1.0.Mx.ProgressBar
|
|
14368
14368
|
|
|
@@ -14736,7 +14736,7 @@ export interface ScrollBar extends Atk.ImplementorIface, Clutter.Animatable, Clu
|
|
|
14736
14736
|
* into `value`.
|
|
14737
14737
|
* @param property_name the name of the property
|
|
14738
14738
|
*/
|
|
14739
|
-
get_property(property_name: string
|
|
14739
|
+
get_property(property_name: string): /* value */ any
|
|
14740
14740
|
|
|
14741
14741
|
// Overloads of get_property
|
|
14742
14742
|
|
|
@@ -14760,7 +14760,7 @@ export interface ScrollBar extends Atk.ImplementorIface, Clutter.Animatable, Clu
|
|
|
14760
14760
|
* @param property_name the name of the property to get
|
|
14761
14761
|
* @param value return location for the property value
|
|
14762
14762
|
*/
|
|
14763
|
-
get_property(property_name: string
|
|
14763
|
+
get_property(property_name: string, value: any): void
|
|
14764
14764
|
/**
|
|
14765
14765
|
* Gets a property of an object.
|
|
14766
14766
|
*
|
|
@@ -14781,7 +14781,7 @@ export interface ScrollBar extends Atk.ImplementorIface, Clutter.Animatable, Clu
|
|
|
14781
14781
|
* @param property_name the name of the property to get
|
|
14782
14782
|
* @param value return location for the property value
|
|
14783
14783
|
*/
|
|
14784
|
-
get_property(property_name: string
|
|
14784
|
+
get_property(property_name: string, value: any): void
|
|
14785
14785
|
|
|
14786
14786
|
// Own virtual methods of Mx-1.0.Mx.ScrollBar
|
|
14787
14787
|
|
|
@@ -15182,7 +15182,7 @@ export interface ScrollView extends Atk.ImplementorIface, Clutter.Animatable, Cl
|
|
|
15182
15182
|
* into `value`.
|
|
15183
15183
|
* @param property_name the name of the property
|
|
15184
15184
|
*/
|
|
15185
|
-
get_property(property_name: string
|
|
15185
|
+
get_property(property_name: string): /* value */ any
|
|
15186
15186
|
|
|
15187
15187
|
// Overloads of get_property
|
|
15188
15188
|
|
|
@@ -15206,7 +15206,7 @@ export interface ScrollView extends Atk.ImplementorIface, Clutter.Animatable, Cl
|
|
|
15206
15206
|
* @param property_name the name of the property to get
|
|
15207
15207
|
* @param value return location for the property value
|
|
15208
15208
|
*/
|
|
15209
|
-
get_property(property_name: string
|
|
15209
|
+
get_property(property_name: string, value: any): void
|
|
15210
15210
|
/**
|
|
15211
15211
|
* Gets a property of an object.
|
|
15212
15212
|
*
|
|
@@ -15227,7 +15227,7 @@ export interface ScrollView extends Atk.ImplementorIface, Clutter.Animatable, Cl
|
|
|
15227
15227
|
* @param property_name the name of the property to get
|
|
15228
15228
|
* @param value return location for the property value
|
|
15229
15229
|
*/
|
|
15230
|
-
get_property(property_name: string
|
|
15230
|
+
get_property(property_name: string, value: any): void
|
|
15231
15231
|
|
|
15232
15232
|
// Class property signals of Mx-1.0.Mx.ScrollView
|
|
15233
15233
|
|
|
@@ -15678,7 +15678,7 @@ export interface Slider extends Atk.ImplementorIface, Clutter.Animatable, Clutte
|
|
|
15678
15678
|
* into `value`.
|
|
15679
15679
|
* @param property_name the name of the property
|
|
15680
15680
|
*/
|
|
15681
|
-
get_property(property_name: string
|
|
15681
|
+
get_property(property_name: string): /* value */ any
|
|
15682
15682
|
|
|
15683
15683
|
// Overloads of get_property
|
|
15684
15684
|
|
|
@@ -15702,7 +15702,7 @@ export interface Slider extends Atk.ImplementorIface, Clutter.Animatable, Clutte
|
|
|
15702
15702
|
* @param property_name the name of the property to get
|
|
15703
15703
|
* @param value return location for the property value
|
|
15704
15704
|
*/
|
|
15705
|
-
get_property(property_name: string
|
|
15705
|
+
get_property(property_name: string, value: any): void
|
|
15706
15706
|
/**
|
|
15707
15707
|
* Gets a property of an object.
|
|
15708
15708
|
*
|
|
@@ -15723,7 +15723,7 @@ export interface Slider extends Atk.ImplementorIface, Clutter.Animatable, Clutte
|
|
|
15723
15723
|
* @param property_name the name of the property to get
|
|
15724
15724
|
* @param value return location for the property value
|
|
15725
15725
|
*/
|
|
15726
|
-
get_property(property_name: string
|
|
15726
|
+
get_property(property_name: string, value: any): void
|
|
15727
15727
|
|
|
15728
15728
|
// Class property signals of Mx-1.0.Mx.Slider
|
|
15729
15729
|
|
|
@@ -16086,7 +16086,7 @@ export interface Spinner extends Atk.ImplementorIface, Clutter.Animatable, Clutt
|
|
|
16086
16086
|
* into `value`.
|
|
16087
16087
|
* @param property_name the name of the property
|
|
16088
16088
|
*/
|
|
16089
|
-
get_property(property_name: string
|
|
16089
|
+
get_property(property_name: string): /* value */ any
|
|
16090
16090
|
|
|
16091
16091
|
// Overloads of get_property
|
|
16092
16092
|
|
|
@@ -16110,7 +16110,7 @@ export interface Spinner extends Atk.ImplementorIface, Clutter.Animatable, Clutt
|
|
|
16110
16110
|
* @param property_name the name of the property to get
|
|
16111
16111
|
* @param value return location for the property value
|
|
16112
16112
|
*/
|
|
16113
|
-
get_property(property_name: string
|
|
16113
|
+
get_property(property_name: string, value: any): void
|
|
16114
16114
|
/**
|
|
16115
16115
|
* Gets a property of an object.
|
|
16116
16116
|
*
|
|
@@ -16131,7 +16131,7 @@ export interface Spinner extends Atk.ImplementorIface, Clutter.Animatable, Clutt
|
|
|
16131
16131
|
* @param property_name the name of the property to get
|
|
16132
16132
|
* @param value return location for the property value
|
|
16133
16133
|
*/
|
|
16134
|
-
get_property(property_name: string
|
|
16134
|
+
get_property(property_name: string, value: any): void
|
|
16135
16135
|
|
|
16136
16136
|
// Own virtual methods of Mx-1.0.Mx.Spinner
|
|
16137
16137
|
|
|
@@ -16544,7 +16544,7 @@ export interface Stack extends Atk.ImplementorIface, Clutter.Animatable, Clutter
|
|
|
16544
16544
|
* into `value`.
|
|
16545
16545
|
* @param property_name the name of the property
|
|
16546
16546
|
*/
|
|
16547
|
-
get_property(property_name: string
|
|
16547
|
+
get_property(property_name: string): /* value */ any
|
|
16548
16548
|
|
|
16549
16549
|
// Overloads of get_property
|
|
16550
16550
|
|
|
@@ -16568,7 +16568,7 @@ export interface Stack extends Atk.ImplementorIface, Clutter.Animatable, Clutter
|
|
|
16568
16568
|
* @param property_name the name of the property to get
|
|
16569
16569
|
* @param value return location for the property value
|
|
16570
16570
|
*/
|
|
16571
|
-
get_property(property_name: string
|
|
16571
|
+
get_property(property_name: string, value: any): void
|
|
16572
16572
|
/**
|
|
16573
16573
|
* Gets a property of an object.
|
|
16574
16574
|
*
|
|
@@ -16589,7 +16589,7 @@ export interface Stack extends Atk.ImplementorIface, Clutter.Animatable, Clutter
|
|
|
16589
16589
|
* @param property_name the name of the property to get
|
|
16590
16590
|
* @param value return location for the property value
|
|
16591
16591
|
*/
|
|
16592
|
-
get_property(property_name: string
|
|
16592
|
+
get_property(property_name: string, value: any): void
|
|
16593
16593
|
|
|
16594
16594
|
// Class property signals of Mx-1.0.Mx.Stack
|
|
16595
16595
|
|
|
@@ -17029,13 +17029,13 @@ export interface Style {
|
|
|
17029
17029
|
* @param property_name the name of the property to get
|
|
17030
17030
|
* @param value return location for the property value
|
|
17031
17031
|
*/
|
|
17032
|
-
get_property(property_name: string
|
|
17032
|
+
get_property(property_name: string, value: any): void
|
|
17033
17033
|
/**
|
|
17034
17034
|
* Load style information from the specified file.
|
|
17035
17035
|
* @param filename filename of the style sheet to load
|
|
17036
17036
|
* @returns TRUE if the style information was loaded successfully. Returns FALSE on error.
|
|
17037
17037
|
*/
|
|
17038
|
-
load_from_file(filename: string
|
|
17038
|
+
load_from_file(filename: string): boolean
|
|
17039
17039
|
|
|
17040
17040
|
// Own virtual methods of Mx-1.0.Mx.Style
|
|
17041
17041
|
|
|
@@ -17314,7 +17314,7 @@ export interface Table extends Atk.ImplementorIface, Clutter.Animatable, Clutter
|
|
|
17314
17314
|
* into `value`.
|
|
17315
17315
|
* @param property_name the name of the property
|
|
17316
17316
|
*/
|
|
17317
|
-
get_property(property_name: string
|
|
17317
|
+
get_property(property_name: string): /* value */ any
|
|
17318
17318
|
|
|
17319
17319
|
// Overloads of get_property
|
|
17320
17320
|
|
|
@@ -17338,7 +17338,7 @@ export interface Table extends Atk.ImplementorIface, Clutter.Animatable, Clutter
|
|
|
17338
17338
|
* @param property_name the name of the property to get
|
|
17339
17339
|
* @param value return location for the property value
|
|
17340
17340
|
*/
|
|
17341
|
-
get_property(property_name: string
|
|
17341
|
+
get_property(property_name: string, value: any): void
|
|
17342
17342
|
/**
|
|
17343
17343
|
* Gets a property of an object.
|
|
17344
17344
|
*
|
|
@@ -17359,7 +17359,7 @@ export interface Table extends Atk.ImplementorIface, Clutter.Animatable, Clutter
|
|
|
17359
17359
|
* @param property_name the name of the property to get
|
|
17360
17360
|
* @param value return location for the property value
|
|
17361
17361
|
*/
|
|
17362
|
-
get_property(property_name: string
|
|
17362
|
+
get_property(property_name: string, value: any): void
|
|
17363
17363
|
|
|
17364
17364
|
// Class property signals of Mx-1.0.Mx.Table
|
|
17365
17365
|
|
|
@@ -17806,7 +17806,7 @@ export interface TextureCache {
|
|
|
17806
17806
|
* @param uri A URI or path to an image file
|
|
17807
17807
|
* @returns %TRUE if the image exists, %FALSE otherwise
|
|
17808
17808
|
*/
|
|
17809
|
-
contains(uri: string
|
|
17809
|
+
contains(uri: string): boolean
|
|
17810
17810
|
/**
|
|
17811
17811
|
* Checks whether there are any textures associated with the given URI by
|
|
17812
17812
|
* the given identifier.
|
|
@@ -17814,14 +17814,14 @@ export interface TextureCache {
|
|
|
17814
17814
|
* @param ident A unique identifier
|
|
17815
17815
|
* @returns %TRUE if the data exists, %FALSE otherwise
|
|
17816
17816
|
*/
|
|
17817
|
-
contains_meta(uri: string
|
|
17817
|
+
contains_meta(uri: string, ident: any): boolean
|
|
17818
17818
|
/**
|
|
17819
17819
|
* This is a wrapper around mx_texture_cache_get_texture() which returns
|
|
17820
17820
|
* a ClutterActor.
|
|
17821
17821
|
* @param uri A URI or path to a image file
|
|
17822
17822
|
* @returns a newly created ClutterTexture
|
|
17823
17823
|
*/
|
|
17824
|
-
get_actor(uri: string
|
|
17824
|
+
get_actor(uri: string): Clutter.Actor
|
|
17825
17825
|
/**
|
|
17826
17826
|
* Create a #CoglHandle representing a texture of the specified image. Adds
|
|
17827
17827
|
* the image to the cache if the image had not been previously loaded.
|
|
@@ -17830,7 +17830,7 @@ export interface TextureCache {
|
|
|
17830
17830
|
* @param uri A URI or path to an image file
|
|
17831
17831
|
* @returns a #CoglHandle to the cached texture
|
|
17832
17832
|
*/
|
|
17833
|
-
get_cogl_texture(uri: string
|
|
17833
|
+
get_cogl_texture(uri: string): Cogl.Handle
|
|
17834
17834
|
/**
|
|
17835
17835
|
* Retrieves the #CoglHandle of the previously added image associated
|
|
17836
17836
|
* with the given unique identifier.
|
|
@@ -17840,7 +17840,7 @@ export interface TextureCache {
|
|
|
17840
17840
|
* @param ident A unique identifier
|
|
17841
17841
|
* @returns A #CoglHandle to a texture, with an added reference. %NULL if no image was found.
|
|
17842
17842
|
*/
|
|
17843
|
-
get_meta_cogl_texture(uri: string
|
|
17843
|
+
get_meta_cogl_texture(uri: string, ident: any): Cogl.Handle
|
|
17844
17844
|
/**
|
|
17845
17845
|
* Create a new ClutterTexture using the previously added image associated
|
|
17846
17846
|
* with the given unique identifier.
|
|
@@ -17850,7 +17850,7 @@ export interface TextureCache {
|
|
|
17850
17850
|
* @param ident A unique identifier
|
|
17851
17851
|
* @returns A newly allocated #ClutterTexture, or %NULL if no image was found
|
|
17852
17852
|
*/
|
|
17853
|
-
get_meta_texture(uri: string
|
|
17853
|
+
get_meta_texture(uri: string, ident: any): Clutter.Texture
|
|
17854
17854
|
/**
|
|
17855
17855
|
* Returns the number of items in the texture cache
|
|
17856
17856
|
* @returns the current size of the cache
|
|
@@ -17864,7 +17864,7 @@ export interface TextureCache {
|
|
|
17864
17864
|
* @param uri A URI or path to a image file
|
|
17865
17865
|
* @returns a newly created ClutterTexture
|
|
17866
17866
|
*/
|
|
17867
|
-
get_texture(uri: string
|
|
17867
|
+
get_texture(uri: string): Clutter.Texture
|
|
17868
17868
|
/**
|
|
17869
17869
|
* Inserts a texture into the texture cache. This can be useful if you
|
|
17870
17870
|
* want to cache a texture from a custom or unhandled URI type, or you
|
|
@@ -17875,7 +17875,7 @@ export interface TextureCache {
|
|
|
17875
17875
|
* @param uri A URI or local file path
|
|
17876
17876
|
* @param texture A #CoglHandle to a texture
|
|
17877
17877
|
*/
|
|
17878
|
-
insert(uri: string
|
|
17878
|
+
insert(uri: string, texture: Cogl.Handle): void
|
|
17879
17879
|
/**
|
|
17880
17880
|
* Inserts a texture that's associated with a URI into the cache.
|
|
17881
17881
|
* If the metadata already exists for this URI, it will be replaced.
|
|
@@ -17887,13 +17887,13 @@ export interface TextureCache {
|
|
|
17887
17887
|
* @param texture A #CoglHandle to a texture
|
|
17888
17888
|
* @param destroy_func An optional destruction function for `ident`
|
|
17889
17889
|
*/
|
|
17890
|
-
insert_meta(uri: string
|
|
17891
|
-
load_cache(filename: string
|
|
17890
|
+
insert_meta(uri: string, ident: any, texture: Cogl.Handle, destroy_func: GLib.DestroyNotify): void
|
|
17891
|
+
load_cache(filename: string): void
|
|
17892
17892
|
|
|
17893
17893
|
// Own virtual methods of Mx-1.0.Mx.TextureCache
|
|
17894
17894
|
|
|
17895
17895
|
vfunc_error_loading(error: GLib.Error): void
|
|
17896
|
-
vfunc_loaded(uri: string
|
|
17896
|
+
vfunc_loaded(uri: string, texture: Clutter.Texture): void
|
|
17897
17897
|
|
|
17898
17898
|
// Class property signals of Mx-1.0.Mx.TextureCache
|
|
17899
17899
|
|
|
@@ -18353,7 +18353,7 @@ export interface Toggle extends Atk.ImplementorIface, Clutter.Animatable, Clutte
|
|
|
18353
18353
|
* into `value`.
|
|
18354
18354
|
* @param property_name the name of the property
|
|
18355
18355
|
*/
|
|
18356
|
-
get_property(property_name: string
|
|
18356
|
+
get_property(property_name: string): /* value */ any
|
|
18357
18357
|
|
|
18358
18358
|
// Overloads of get_property
|
|
18359
18359
|
|
|
@@ -18377,7 +18377,7 @@ export interface Toggle extends Atk.ImplementorIface, Clutter.Animatable, Clutte
|
|
|
18377
18377
|
* @param property_name the name of the property to get
|
|
18378
18378
|
* @param value return location for the property value
|
|
18379
18379
|
*/
|
|
18380
|
-
get_property(property_name: string
|
|
18380
|
+
get_property(property_name: string, value: any): void
|
|
18381
18381
|
/**
|
|
18382
18382
|
* Gets a property of an object.
|
|
18383
18383
|
*
|
|
@@ -18398,7 +18398,7 @@ export interface Toggle extends Atk.ImplementorIface, Clutter.Animatable, Clutte
|
|
|
18398
18398
|
* @param property_name the name of the property to get
|
|
18399
18399
|
* @param value return location for the property value
|
|
18400
18400
|
*/
|
|
18401
|
-
get_property(property_name: string
|
|
18401
|
+
get_property(property_name: string, value: any): void
|
|
18402
18402
|
|
|
18403
18403
|
// Class property signals of Mx-1.0.Mx.Toggle
|
|
18404
18404
|
|
|
@@ -18761,7 +18761,7 @@ export interface Toolbar extends Atk.ImplementorIface, Clutter.Animatable, Clutt
|
|
|
18761
18761
|
* into `value`.
|
|
18762
18762
|
* @param property_name the name of the property
|
|
18763
18763
|
*/
|
|
18764
|
-
get_property(property_name: string
|
|
18764
|
+
get_property(property_name: string): /* value */ any
|
|
18765
18765
|
|
|
18766
18766
|
// Overloads of get_property
|
|
18767
18767
|
|
|
@@ -18785,7 +18785,7 @@ export interface Toolbar extends Atk.ImplementorIface, Clutter.Animatable, Clutt
|
|
|
18785
18785
|
* @param property_name the name of the property to get
|
|
18786
18786
|
* @param value return location for the property value
|
|
18787
18787
|
*/
|
|
18788
|
-
get_property(property_name: string
|
|
18788
|
+
get_property(property_name: string, value: any): void
|
|
18789
18789
|
/**
|
|
18790
18790
|
* Gets a property of an object.
|
|
18791
18791
|
*
|
|
@@ -18806,7 +18806,7 @@ export interface Toolbar extends Atk.ImplementorIface, Clutter.Animatable, Clutt
|
|
|
18806
18806
|
* @param property_name the name of the property to get
|
|
18807
18807
|
* @param value return location for the property value
|
|
18808
18808
|
*/
|
|
18809
|
-
get_property(property_name: string
|
|
18809
|
+
get_property(property_name: string, value: any): void
|
|
18810
18810
|
|
|
18811
18811
|
// Own virtual methods of Mx-1.0.Mx.Toolbar
|
|
18812
18812
|
|
|
@@ -19166,7 +19166,7 @@ export interface Tooltip extends Atk.ImplementorIface, Clutter.Animatable, Clutt
|
|
|
19166
19166
|
* Get the text displayed on the tooltip
|
|
19167
19167
|
* @returns the text for the tooltip. This must not be freed by the application
|
|
19168
19168
|
*/
|
|
19169
|
-
get_text(): string
|
|
19169
|
+
get_text(): string
|
|
19170
19170
|
/**
|
|
19171
19171
|
* Retrieve the area on the stage that the tooltip currently applies to
|
|
19172
19172
|
* @returns the #ClutterGeometry, owned by the tooltip which must not be freed by the application.
|
|
@@ -19180,7 +19180,7 @@ export interface Tooltip extends Atk.ImplementorIface, Clutter.Animatable, Clutt
|
|
|
19180
19180
|
* Sets the text displayed on the tooltip
|
|
19181
19181
|
* @param text text to set the label to
|
|
19182
19182
|
*/
|
|
19183
|
-
set_text(text: string
|
|
19183
|
+
set_text(text: string): void
|
|
19184
19184
|
/**
|
|
19185
19185
|
* Set the area on the stage that the tooltip applies to.
|
|
19186
19186
|
* @param area A #ClutterGeometry
|
|
@@ -19205,7 +19205,7 @@ export interface Tooltip extends Atk.ImplementorIface, Clutter.Animatable, Clutt
|
|
|
19205
19205
|
* into `value`.
|
|
19206
19206
|
* @param property_name the name of the property
|
|
19207
19207
|
*/
|
|
19208
|
-
get_property(property_name: string
|
|
19208
|
+
get_property(property_name: string): /* value */ any
|
|
19209
19209
|
|
|
19210
19210
|
// Overloads of get_property
|
|
19211
19211
|
|
|
@@ -19229,7 +19229,7 @@ export interface Tooltip extends Atk.ImplementorIface, Clutter.Animatable, Clutt
|
|
|
19229
19229
|
* @param property_name the name of the property to get
|
|
19230
19230
|
* @param value return location for the property value
|
|
19231
19231
|
*/
|
|
19232
|
-
get_property(property_name: string
|
|
19232
|
+
get_property(property_name: string, value: any): void
|
|
19233
19233
|
/**
|
|
19234
19234
|
* Gets a property of an object.
|
|
19235
19235
|
*
|
|
@@ -19250,7 +19250,7 @@ export interface Tooltip extends Atk.ImplementorIface, Clutter.Animatable, Clutt
|
|
|
19250
19250
|
* @param property_name the name of the property to get
|
|
19251
19251
|
* @param value return location for the property value
|
|
19252
19252
|
*/
|
|
19253
|
-
get_property(property_name: string
|
|
19253
|
+
get_property(property_name: string, value: any): void
|
|
19254
19254
|
|
|
19255
19255
|
// Class property signals of Mx-1.0.Mx.Tooltip
|
|
19256
19256
|
|
|
@@ -19613,7 +19613,7 @@ export interface Viewport extends Atk.ImplementorIface, Clutter.Animatable, Clut
|
|
|
19613
19613
|
* into `value`.
|
|
19614
19614
|
* @param property_name the name of the property
|
|
19615
19615
|
*/
|
|
19616
|
-
get_property(property_name: string
|
|
19616
|
+
get_property(property_name: string): /* value */ any
|
|
19617
19617
|
|
|
19618
19618
|
// Overloads of get_property
|
|
19619
19619
|
|
|
@@ -19637,7 +19637,7 @@ export interface Viewport extends Atk.ImplementorIface, Clutter.Animatable, Clut
|
|
|
19637
19637
|
* @param property_name the name of the property to get
|
|
19638
19638
|
* @param value return location for the property value
|
|
19639
19639
|
*/
|
|
19640
|
-
get_property(property_name: string
|
|
19640
|
+
get_property(property_name: string, value: any): void
|
|
19641
19641
|
/**
|
|
19642
19642
|
* Gets a property of an object.
|
|
19643
19643
|
*
|
|
@@ -19658,7 +19658,7 @@ export interface Viewport extends Atk.ImplementorIface, Clutter.Animatable, Clut
|
|
|
19658
19658
|
* @param property_name the name of the property to get
|
|
19659
19659
|
* @param value return location for the property value
|
|
19660
19660
|
*/
|
|
19661
|
-
get_property(property_name: string
|
|
19661
|
+
get_property(property_name: string, value: any): void
|
|
19662
19662
|
|
|
19663
19663
|
// Class property signals of Mx-1.0.Mx.Viewport
|
|
19664
19664
|
|
|
@@ -20092,7 +20092,7 @@ export interface Widget extends Atk.ImplementorIface, Clutter.Animatable, Clutte
|
|
|
20092
20092
|
* Get the current tooltip string
|
|
20093
20093
|
* @returns The current tooltip string, owned by the #MxWidget
|
|
20094
20094
|
*/
|
|
20095
|
-
get_tooltip_text(): string
|
|
20095
|
+
get_tooltip_text(): string
|
|
20096
20096
|
/**
|
|
20097
20097
|
* Hide the tooltip for `widget`
|
|
20098
20098
|
*/
|
|
@@ -20139,7 +20139,7 @@ export interface Widget extends Atk.ImplementorIface, Clutter.Animatable, Clutte
|
|
|
20139
20139
|
* %FALSE.
|
|
20140
20140
|
* @param text text to set as the tooltip
|
|
20141
20141
|
*/
|
|
20142
|
-
set_tooltip_text(text: string
|
|
20142
|
+
set_tooltip_text(text: string): void
|
|
20143
20143
|
/**
|
|
20144
20144
|
* Show the tooltip for `widget`
|
|
20145
20145
|
*/
|
|
@@ -20152,7 +20152,7 @@ export interface Widget extends Atk.ImplementorIface, Clutter.Animatable, Clutte
|
|
|
20152
20152
|
* into `value`.
|
|
20153
20153
|
* @param property_name the name of the property
|
|
20154
20154
|
*/
|
|
20155
|
-
get_property(property_name: string
|
|
20155
|
+
get_property(property_name: string): /* value */ any
|
|
20156
20156
|
|
|
20157
20157
|
// Overloads of get_property
|
|
20158
20158
|
|
|
@@ -20176,7 +20176,7 @@ export interface Widget extends Atk.ImplementorIface, Clutter.Animatable, Clutte
|
|
|
20176
20176
|
* @param property_name the name of the property to get
|
|
20177
20177
|
* @param value return location for the property value
|
|
20178
20178
|
*/
|
|
20179
|
-
get_property(property_name: string
|
|
20179
|
+
get_property(property_name: string, value: any): void
|
|
20180
20180
|
/**
|
|
20181
20181
|
* Gets a property of an object.
|
|
20182
20182
|
*
|
|
@@ -20197,7 +20197,7 @@ export interface Widget extends Atk.ImplementorIface, Clutter.Animatable, Clutte
|
|
|
20197
20197
|
* @param property_name the name of the property to get
|
|
20198
20198
|
* @param value return location for the property value
|
|
20199
20199
|
*/
|
|
20200
|
-
get_property(property_name: string
|
|
20200
|
+
get_property(property_name: string, value: any): void
|
|
20201
20201
|
|
|
20202
20202
|
// Own virtual methods of Mx-1.0.Mx.Widget
|
|
20203
20203
|
|
|
@@ -20607,7 +20607,7 @@ export interface Window {
|
|
|
20607
20607
|
* set, or the icon was set with mx_window_set_icon_from_cogl_texture().
|
|
20608
20608
|
* @returns The window icon name, or %NULL
|
|
20609
20609
|
*/
|
|
20610
|
-
get_icon_name(): string
|
|
20610
|
+
get_icon_name(): string
|
|
20611
20611
|
/**
|
|
20612
20612
|
* Determines if the window is in small-screen mode.
|
|
20613
20613
|
* See mx_window_set_small_screen().
|
|
@@ -20618,7 +20618,7 @@ export interface Window {
|
|
|
20618
20618
|
* Retrieves the title used for the window.
|
|
20619
20619
|
* @returns The title used for the window
|
|
20620
20620
|
*/
|
|
20621
|
-
get_title(): string
|
|
20621
|
+
get_title(): string
|
|
20622
20622
|
/**
|
|
20623
20623
|
* Retrieves the toolbar associated with the window.
|
|
20624
20624
|
* @returns A #MxToolbar
|
|
@@ -20696,7 +20696,7 @@ export interface Window {
|
|
|
20696
20696
|
* window-system specific.
|
|
20697
20697
|
* @param title A string to use for the window title name
|
|
20698
20698
|
*/
|
|
20699
|
-
set_title(title: string
|
|
20699
|
+
set_title(title: string): void
|
|
20700
20700
|
/**
|
|
20701
20701
|
* Sets the toolbar associated with the window.
|
|
20702
20702
|
* @param toolbar
|
|
@@ -20985,7 +20985,7 @@ export class BorderImage {
|
|
|
20985
20985
|
|
|
20986
20986
|
// Constructors of Mx-1.0.Mx.BorderImage
|
|
20987
20987
|
|
|
20988
|
-
static set_from_string(value: any, str: string
|
|
20988
|
+
static set_from_string(value: any, str: string, filename: string): void
|
|
20989
20989
|
}
|
|
20990
20990
|
|
|
20991
20991
|
export interface BoxLayoutChildClass {
|
|
@@ -22026,10 +22026,10 @@ export interface StylableIface {
|
|
|
22026
22026
|
|
|
22027
22027
|
get_style: (stylable: Stylable) => Style
|
|
22028
22028
|
set_style: (stylable: Stylable, style: Style) => void
|
|
22029
|
-
get_style_class: (stylable: Stylable) => string
|
|
22030
|
-
set_style_class: (stylable: Stylable, style_class: string
|
|
22031
|
-
get_style_pseudo_class: (stylable: Stylable) => string
|
|
22032
|
-
set_style_pseudo_class: (stylable: Stylable, pseudo_class: string
|
|
22029
|
+
get_style_class: (stylable: Stylable) => string
|
|
22030
|
+
set_style_class: (stylable: Stylable, style_class: string) => void
|
|
22031
|
+
get_style_pseudo_class: (stylable: Stylable) => string
|
|
22032
|
+
set_style_pseudo_class: (stylable: Stylable, pseudo_class: string) => void
|
|
22033
22033
|
style_changed: (stylable: Stylable, flags: StyleChangedFlags) => void
|
|
22034
22034
|
}
|
|
22035
22035
|
|
|
@@ -22147,7 +22147,7 @@ export interface TextureCacheClass {
|
|
|
22147
22147
|
// Own fields of Mx-1.0.Mx.TextureCacheClass
|
|
22148
22148
|
|
|
22149
22149
|
parent_class: GObject.ObjectClass
|
|
22150
|
-
loaded: (self: TextureCache, uri: string
|
|
22150
|
+
loaded: (self: TextureCache, uri: string, texture: Clutter.Texture) => void
|
|
22151
22151
|
error_loading: (self: TextureCache, error: GLib.Error) => void
|
|
22152
22152
|
}
|
|
22153
22153
|
|