@girs/mx-1.0 1.4.7-3.2.6 → 1.4.7-3.2.8
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +1 -1
- package/mx-1.0-ambient.js +2 -0
- package/mx-1.0-import.js +3 -0
- package/mx-1.0.d.cts +235 -564
- package/mx-1.0.d.ts +235 -564
- package/package.json +28 -22
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
|
|
|
@@ -349,9 +349,6 @@ export module Draggable {
|
|
|
349
349
|
// Own constructor properties of Mx-1.0.Mx.Draggable
|
|
350
350
|
|
|
351
351
|
axis?: DragAxis | null
|
|
352
|
-
drag_actor?: Clutter.Actor | null
|
|
353
|
-
drag_enabled?: boolean | null
|
|
354
|
-
drag_threshold?: number | null
|
|
355
352
|
dragActor?: Clutter.Actor | null
|
|
356
353
|
dragEnabled?: boolean | null
|
|
357
354
|
dragThreshold?: number | null
|
|
@@ -364,11 +361,8 @@ export interface Draggable extends Clutter.Actor {
|
|
|
364
361
|
// Own properties of Mx-1.0.Mx.Draggable
|
|
365
362
|
|
|
366
363
|
axis: DragAxis
|
|
367
|
-
drag_actor: Clutter.Actor
|
|
368
364
|
dragActor: Clutter.Actor
|
|
369
|
-
drag_enabled: boolean
|
|
370
365
|
dragEnabled: boolean
|
|
371
|
-
drag_threshold: number
|
|
372
366
|
dragThreshold: number
|
|
373
367
|
|
|
374
368
|
// Owm methods of Mx-1.0.Mx.Draggable
|
|
@@ -722,7 +716,6 @@ export module Droppable {
|
|
|
722
716
|
|
|
723
717
|
// Own constructor properties of Mx-1.0.Mx.Droppable
|
|
724
718
|
|
|
725
|
-
drop_enabled?: boolean | null
|
|
726
719
|
dropEnabled?: boolean | null
|
|
727
720
|
}
|
|
728
721
|
|
|
@@ -732,7 +725,6 @@ export interface Droppable extends Clutter.Actor {
|
|
|
732
725
|
|
|
733
726
|
// Own properties of Mx-1.0.Mx.Droppable
|
|
734
727
|
|
|
735
|
-
drop_enabled: boolean
|
|
736
728
|
dropEnabled: boolean
|
|
737
729
|
|
|
738
730
|
// Owm methods of Mx-1.0.Mx.Droppable
|
|
@@ -1168,8 +1160,6 @@ export module Scrollable {
|
|
|
1168
1160
|
|
|
1169
1161
|
// Own constructor properties of Mx-1.0.Mx.Scrollable
|
|
1170
1162
|
|
|
1171
|
-
horizontal_adjustment?: Adjustment | null
|
|
1172
|
-
vertical_adjustment?: Adjustment | null
|
|
1173
1163
|
horizontalAdjustment?: Adjustment | null
|
|
1174
1164
|
verticalAdjustment?: Adjustment | null
|
|
1175
1165
|
}
|
|
@@ -1180,9 +1170,7 @@ export interface Scrollable {
|
|
|
1180
1170
|
|
|
1181
1171
|
// Own properties of Mx-1.0.Mx.Scrollable
|
|
1182
1172
|
|
|
1183
|
-
horizontal_adjustment: Adjustment
|
|
1184
1173
|
horizontalAdjustment: Adjustment
|
|
1185
|
-
vertical_adjustment: Adjustment
|
|
1186
1174
|
verticalAdjustment: Adjustment
|
|
1187
1175
|
|
|
1188
1176
|
// Owm methods of Mx-1.0.Mx.Scrollable
|
|
@@ -1254,8 +1242,6 @@ export module Stylable {
|
|
|
1254
1242
|
// Own constructor properties of Mx-1.0.Mx.Stylable
|
|
1255
1243
|
|
|
1256
1244
|
style?: Style | null
|
|
1257
|
-
style_class?: string | null
|
|
1258
|
-
style_pseudo_class?: string | null
|
|
1259
1245
|
styleClass?: string | null
|
|
1260
1246
|
stylePseudoClass?: string | null
|
|
1261
1247
|
}
|
|
@@ -1267,9 +1253,7 @@ export interface Stylable {
|
|
|
1267
1253
|
// Own properties of Mx-1.0.Mx.Stylable
|
|
1268
1254
|
|
|
1269
1255
|
style: Style
|
|
1270
|
-
style_class: string | null
|
|
1271
1256
|
styleClass: string | null
|
|
1272
|
-
style_pseudo_class: string | null
|
|
1273
1257
|
stylePseudoClass: string | null
|
|
1274
1258
|
|
|
1275
1259
|
// Owm methods of Mx-1.0.Mx.Stylable
|
|
@@ -1282,20 +1266,20 @@ export interface Stylable {
|
|
|
1282
1266
|
* @param property_name the name of the property to find
|
|
1283
1267
|
* @returns a #GParamSpec for the given property, or %NULL if no property with that name was found
|
|
1284
1268
|
*/
|
|
1285
|
-
find_property(property_name: string
|
|
1269
|
+
find_property(property_name: string): GObject.ParamSpec
|
|
1286
1270
|
/**
|
|
1287
1271
|
* Query `stylable` for the default value of property `property_name` and
|
|
1288
1272
|
* fill `value_out` with the result.
|
|
1289
1273
|
* @param property_name name of the property to query
|
|
1290
1274
|
* @returns %TRUE if property @property_name exists and the default value has been returned.
|
|
1291
1275
|
*/
|
|
1292
|
-
get_default_value(property_name: string
|
|
1276
|
+
get_default_value(property_name: string): [ /* returnType */ boolean, /* value_out */ any ]
|
|
1293
1277
|
/**
|
|
1294
1278
|
* Retrieves the value of `property_name` for `stylable,` and puts it
|
|
1295
1279
|
* into `value`.
|
|
1296
1280
|
* @param property_name the name of the property
|
|
1297
1281
|
*/
|
|
1298
|
-
get_property(property_name: string
|
|
1282
|
+
get_property(property_name: string): /* value */ any
|
|
1299
1283
|
|
|
1300
1284
|
// Overloads of get_property
|
|
1301
1285
|
|
|
@@ -1319,7 +1303,7 @@ export interface Stylable {
|
|
|
1319
1303
|
* @param property_name the name of the property to get
|
|
1320
1304
|
* @param value return location for the property value
|
|
1321
1305
|
*/
|
|
1322
|
-
get_property(property_name: string
|
|
1306
|
+
get_property(property_name: string, value: any): void
|
|
1323
1307
|
/**
|
|
1324
1308
|
* Retrieves the #MxStyle used by `stylable`. This function does not
|
|
1325
1309
|
* alter the reference count of the returned object.
|
|
@@ -1330,13 +1314,13 @@ export interface Stylable {
|
|
|
1330
1314
|
* Get the current style class name
|
|
1331
1315
|
* @returns the class name string. The string is owned by the #MxWidget and should not be modified or freed.
|
|
1332
1316
|
*/
|
|
1333
|
-
get_style_class(): string
|
|
1317
|
+
get_style_class(): string
|
|
1334
1318
|
/**
|
|
1335
1319
|
* Get the current style pseudo class. This can contain multiple pseudo class
|
|
1336
1320
|
* names, separated by ':'.
|
|
1337
1321
|
* @returns the pseudo class string. The string is owned by the #MxWidget and should not be modified or freed.
|
|
1338
1322
|
*/
|
|
1339
|
-
get_style_pseudo_class(): string
|
|
1323
|
+
get_style_pseudo_class(): string
|
|
1340
1324
|
/**
|
|
1341
1325
|
* Retrieves all the #GParamSpec<!-- -->s installed by `stylable`.
|
|
1342
1326
|
* @returns an array of #GParamSpec<!-- -->s. Free it with g_free() when done.
|
|
@@ -1356,13 +1340,13 @@ export interface Stylable {
|
|
|
1356
1340
|
* Set the style class name
|
|
1357
1341
|
* @param style_class a new style class string
|
|
1358
1342
|
*/
|
|
1359
|
-
set_style_class(style_class: string
|
|
1343
|
+
set_style_class(style_class: string): void
|
|
1360
1344
|
/**
|
|
1361
1345
|
* Set the style pseudo class. The string can contain multiple pseudo class
|
|
1362
1346
|
* names, separated by ':'.
|
|
1363
1347
|
* @param pseudo_class a new pseudo class string
|
|
1364
1348
|
*/
|
|
1365
|
-
set_style_pseudo_class(pseudo_class: string
|
|
1349
|
+
set_style_pseudo_class(pseudo_class: string): void
|
|
1366
1350
|
/**
|
|
1367
1351
|
* Emit the "style-changed" signal on `stylable` to notify it that one or more
|
|
1368
1352
|
* of the style properties has changed.
|
|
@@ -1378,20 +1362,20 @@ export interface Stylable {
|
|
|
1378
1362
|
* #MxStylable:style-pseudo-class property.
|
|
1379
1363
|
* @param new_class A pseudo-class name to add
|
|
1380
1364
|
*/
|
|
1381
|
-
style_pseudo_class_add(new_class: string
|
|
1365
|
+
style_pseudo_class_add(new_class: string): void
|
|
1382
1366
|
/**
|
|
1383
1367
|
* Check if the given pseudo-class name is contained in the list of
|
|
1384
1368
|
* set pseudo classes on this #MxStylable object.
|
|
1385
1369
|
* @param pseudo_class A pseudo-class name
|
|
1386
1370
|
* @returns %TRUE if the given pseudo-class is set, %FALSE otherwise
|
|
1387
1371
|
*/
|
|
1388
|
-
style_pseudo_class_contains(pseudo_class: string
|
|
1372
|
+
style_pseudo_class_contains(pseudo_class: string): boolean
|
|
1389
1373
|
/**
|
|
1390
1374
|
* Remove the specified pseudo class name from the list of pseudo classes
|
|
1391
1375
|
* contained in the #MxStylable:style-pseudo-class property.
|
|
1392
1376
|
* @param remove_class A pseudo class name to remove
|
|
1393
1377
|
*/
|
|
1394
|
-
style_pseudo_class_remove(remove_class: string
|
|
1378
|
+
style_pseudo_class_remove(remove_class: string): void
|
|
1395
1379
|
|
|
1396
1380
|
// Own virtual methods of Mx-1.0.Mx.Stylable
|
|
1397
1381
|
|
|
@@ -1407,14 +1391,14 @@ export interface Stylable {
|
|
|
1407
1391
|
* @virtual
|
|
1408
1392
|
* @returns the class name string. The string is owned by the #MxWidget and should not be modified or freed.
|
|
1409
1393
|
*/
|
|
1410
|
-
vfunc_get_style_class(): string
|
|
1394
|
+
vfunc_get_style_class(): string
|
|
1411
1395
|
/**
|
|
1412
1396
|
* Get the current style pseudo class. This can contain multiple pseudo class
|
|
1413
1397
|
* names, separated by ':'.
|
|
1414
1398
|
* @virtual
|
|
1415
1399
|
* @returns the pseudo class string. The string is owned by the #MxWidget and should not be modified or freed.
|
|
1416
1400
|
*/
|
|
1417
|
-
vfunc_get_style_pseudo_class(): string
|
|
1401
|
+
vfunc_get_style_pseudo_class(): string
|
|
1418
1402
|
/**
|
|
1419
1403
|
* Sets `style` as the new #MxStyle to be used by `stylable`.
|
|
1420
1404
|
*
|
|
@@ -1431,14 +1415,14 @@ export interface Stylable {
|
|
|
1431
1415
|
* @virtual
|
|
1432
1416
|
* @param style_class a new style class string
|
|
1433
1417
|
*/
|
|
1434
|
-
vfunc_set_style_class(style_class: string
|
|
1418
|
+
vfunc_set_style_class(style_class: string): void
|
|
1435
1419
|
/**
|
|
1436
1420
|
* Set the style pseudo class. The string can contain multiple pseudo class
|
|
1437
1421
|
* names, separated by ':'.
|
|
1438
1422
|
* @virtual
|
|
1439
1423
|
* @param pseudo_class a new pseudo class string
|
|
1440
1424
|
*/
|
|
1441
|
-
vfunc_set_style_pseudo_class(pseudo_class: string
|
|
1425
|
+
vfunc_set_style_pseudo_class(pseudo_class: string): void
|
|
1442
1426
|
/**
|
|
1443
1427
|
* Emit the "style-changed" signal on `stylable` to notify it that one or more
|
|
1444
1428
|
* of the style properties has changed.
|
|
@@ -1553,9 +1537,8 @@ export module Action {
|
|
|
1553
1537
|
// Own constructor properties of Mx-1.0.Mx.Action
|
|
1554
1538
|
|
|
1555
1539
|
active?: boolean | null
|
|
1556
|
-
display_name?: string | null
|
|
1557
|
-
icon?: string | null
|
|
1558
1540
|
displayName?: string | null
|
|
1541
|
+
icon?: string | null
|
|
1559
1542
|
}
|
|
1560
1543
|
|
|
1561
1544
|
}
|
|
@@ -1565,7 +1548,6 @@ export interface Action extends Gio.Action {
|
|
|
1565
1548
|
// Own properties of Mx-1.0.Mx.Action
|
|
1566
1549
|
|
|
1567
1550
|
active: boolean
|
|
1568
|
-
display_name: string | null
|
|
1569
1551
|
displayName: string | null
|
|
1570
1552
|
icon: string | null
|
|
1571
1553
|
|
|
@@ -1580,17 +1562,17 @@ export interface Action extends Gio.Action {
|
|
|
1580
1562
|
* Get the display name of the action
|
|
1581
1563
|
* @returns display-name of the action, owned by MxAction
|
|
1582
1564
|
*/
|
|
1583
|
-
get_display_name(): string
|
|
1565
|
+
get_display_name(): string
|
|
1584
1566
|
/**
|
|
1585
1567
|
* Get the icon of the action
|
|
1586
1568
|
* @returns icon of the action, owned by MxAction
|
|
1587
1569
|
*/
|
|
1588
|
-
get_icon(): string
|
|
1570
|
+
get_icon(): string
|
|
1589
1571
|
/**
|
|
1590
1572
|
* Get the name of the action
|
|
1591
1573
|
* @returns name of the action, owned by MxAction
|
|
1592
1574
|
*/
|
|
1593
|
-
get_name(): string
|
|
1575
|
+
get_name(): string
|
|
1594
1576
|
/**
|
|
1595
1577
|
* Set the value of the active property
|
|
1596
1578
|
* @param active the value to set
|
|
@@ -1600,17 +1582,17 @@ export interface Action extends Gio.Action {
|
|
|
1600
1582
|
* Set the name of the action to display to the user
|
|
1601
1583
|
* @param name new display name to set
|
|
1602
1584
|
*/
|
|
1603
|
-
set_display_name(name: string
|
|
1585
|
+
set_display_name(name: string): void
|
|
1604
1586
|
/**
|
|
1605
1587
|
* The icon to be used in a visual representation of an action.
|
|
1606
1588
|
* @param name new icon to set
|
|
1607
1589
|
*/
|
|
1608
|
-
set_icon(name: string
|
|
1590
|
+
set_icon(name: string): void
|
|
1609
1591
|
/**
|
|
1610
1592
|
* Set the name of the action
|
|
1611
1593
|
* @param name new name to set
|
|
1612
1594
|
*/
|
|
1613
|
-
set_name(name: string
|
|
1595
|
+
set_name(name: string): void
|
|
1614
1596
|
|
|
1615
1597
|
// Own virtual methods of Mx-1.0.Mx.Action
|
|
1616
1598
|
|
|
@@ -1692,7 +1674,7 @@ export class Action extends GObject.InitiallyUnowned {
|
|
|
1692
1674
|
* @param activated_cb callback to connect to the activated signal
|
|
1693
1675
|
* @returns a newly allocated #MxAction
|
|
1694
1676
|
*/
|
|
1695
|
-
static new_full(name: string
|
|
1677
|
+
static new_full(name: string, display_name: string, activated_cb: ActionCallbackFunc | null): Action
|
|
1696
1678
|
/**
|
|
1697
1679
|
* Creates a new stateful action.
|
|
1698
1680
|
*
|
|
@@ -1704,7 +1686,7 @@ export class Action extends GObject.InitiallyUnowned {
|
|
|
1704
1686
|
* @param state the initial state of the action
|
|
1705
1687
|
* @returns a new #MxAction
|
|
1706
1688
|
*/
|
|
1707
|
-
static new_stateful(name: string
|
|
1689
|
+
static new_stateful(name: string, parameter_type: GLib.VariantType | null, state: GLib.Variant): Action
|
|
1708
1690
|
/**
|
|
1709
1691
|
* Creates a new action with a parameter.
|
|
1710
1692
|
*
|
|
@@ -1714,7 +1696,7 @@ export class Action extends GObject.InitiallyUnowned {
|
|
|
1714
1696
|
* @param parameter_type the type of parameter to the activate function
|
|
1715
1697
|
* @returns a new #MxAction
|
|
1716
1698
|
*/
|
|
1717
|
-
static new_with_parameter(name: string
|
|
1699
|
+
static new_with_parameter(name: string, parameter_type?: GLib.VariantType | null): Action
|
|
1718
1700
|
_init(config?: Action.ConstructorProperties): void
|
|
1719
1701
|
}
|
|
1720
1702
|
|
|
@@ -1779,7 +1761,6 @@ export module ActorManager {
|
|
|
1779
1761
|
// Own constructor properties of Mx-1.0.Mx.ActorManager
|
|
1780
1762
|
|
|
1781
1763
|
stage?: Clutter.Stage | null
|
|
1782
|
-
time_slice?: number | null
|
|
1783
1764
|
timeSlice?: number | null
|
|
1784
1765
|
}
|
|
1785
1766
|
|
|
@@ -1789,10 +1770,8 @@ export interface ActorManager {
|
|
|
1789
1770
|
|
|
1790
1771
|
// Own properties of Mx-1.0.Mx.ActorManager
|
|
1791
1772
|
|
|
1792
|
-
readonly n_operations: number
|
|
1793
1773
|
readonly nOperations: number
|
|
1794
1774
|
readonly stage: Clutter.Stage
|
|
1795
|
-
time_slice: number
|
|
1796
1775
|
timeSlice: number
|
|
1797
1776
|
|
|
1798
1777
|
// Own fields of Mx-1.0.Mx.ActorManager
|
|
@@ -2003,18 +1982,14 @@ export module Adjustment {
|
|
|
2003
1982
|
|
|
2004
1983
|
// Own constructor properties of Mx-1.0.Mx.Adjustment
|
|
2005
1984
|
|
|
2006
|
-
|
|
1985
|
+
clampValue?: boolean | null
|
|
2007
1986
|
elastic?: boolean | null
|
|
2008
1987
|
lower?: number | null
|
|
2009
|
-
page_increment?: number | null
|
|
2010
|
-
page_size?: number | null
|
|
2011
|
-
step_increment?: number | null
|
|
2012
|
-
upper?: number | null
|
|
2013
|
-
value?: number | null
|
|
2014
|
-
clampValue?: boolean | null
|
|
2015
1988
|
pageIncrement?: number | null
|
|
2016
1989
|
pageSize?: number | null
|
|
2017
1990
|
stepIncrement?: number | null
|
|
1991
|
+
upper?: number | null
|
|
1992
|
+
value?: number | null
|
|
2018
1993
|
}
|
|
2019
1994
|
|
|
2020
1995
|
}
|
|
@@ -2023,15 +1998,11 @@ export interface Adjustment {
|
|
|
2023
1998
|
|
|
2024
1999
|
// Own properties of Mx-1.0.Mx.Adjustment
|
|
2025
2000
|
|
|
2026
|
-
clamp_value: boolean
|
|
2027
2001
|
clampValue: boolean
|
|
2028
2002
|
elastic: boolean
|
|
2029
2003
|
lower: number
|
|
2030
|
-
page_increment: number
|
|
2031
2004
|
pageIncrement: number
|
|
2032
|
-
page_size: number
|
|
2033
2005
|
pageSize: number
|
|
2034
|
-
step_increment: number
|
|
2035
2006
|
stepIncrement: number
|
|
2036
2007
|
upper: number
|
|
2037
2008
|
value: number
|
|
@@ -2262,9 +2233,8 @@ export module Application {
|
|
|
2262
2233
|
|
|
2263
2234
|
// Own constructor properties of Mx-1.0.Mx.Application
|
|
2264
2235
|
|
|
2265
|
-
application_name?: string | null
|
|
2266
|
-
flags?: number | null
|
|
2267
2236
|
applicationName?: string | null
|
|
2237
|
+
flags?: number | null
|
|
2268
2238
|
}
|
|
2269
2239
|
|
|
2270
2240
|
}
|
|
@@ -2273,7 +2243,6 @@ export interface Application {
|
|
|
2273
2243
|
|
|
2274
2244
|
// Own properties of Mx-1.0.Mx.Application
|
|
2275
2245
|
|
|
2276
|
-
readonly application_name: string | null
|
|
2277
2246
|
readonly applicationName: string | null
|
|
2278
2247
|
readonly flags: number
|
|
2279
2248
|
|
|
@@ -2322,14 +2291,14 @@ export interface Application {
|
|
|
2322
2291
|
* Run the named action for the application.
|
|
2323
2292
|
* @param name name of the action to invoke
|
|
2324
2293
|
*/
|
|
2325
|
-
invoke_action(name: string
|
|
2294
|
+
invoke_action(name: string): void
|
|
2326
2295
|
/**
|
|
2327
2296
|
* Run the named action for the application, passing `variant` as the parameter
|
|
2328
2297
|
* for the action.
|
|
2329
2298
|
* @param name name of the action to invoke
|
|
2330
2299
|
* @param variant parameter for the action
|
|
2331
2300
|
*/
|
|
2332
|
-
invoke_action_with_parameter(name: string
|
|
2301
|
+
invoke_action_with_parameter(name: string, variant: GLib.Variant): void
|
|
2333
2302
|
/**
|
|
2334
2303
|
* Query whether #MxApplication is running. This will also return #TRUE if the
|
|
2335
2304
|
* given #MxApplication is single instance and there is an instance already
|
|
@@ -2346,7 +2315,7 @@ export interface Application {
|
|
|
2346
2315
|
* Remove the action with the specified name from the application.
|
|
2347
2316
|
* @param name name of the action to remove
|
|
2348
2317
|
*/
|
|
2349
|
-
remove_action(name: string
|
|
2318
|
+
remove_action(name: string): void
|
|
2350
2319
|
/**
|
|
2351
2320
|
* Remove the specified window from the application. This will cause the window
|
|
2352
2321
|
* to be unreferenced and destroyed unless another reference is held on it.
|
|
@@ -2417,7 +2386,7 @@ export class Application extends GObject.Object {
|
|
|
2417
2386
|
* @param flags Application flags.
|
|
2418
2387
|
* @returns the #MxApplication singleton.
|
|
2419
2388
|
*/
|
|
2420
|
-
constructor(argv: string[] | null, name: string
|
|
2389
|
+
constructor(argv: string[] | null, name: string, flags: ApplicationFlags)
|
|
2421
2390
|
/**
|
|
2422
2391
|
* Intialises everything needed to operate Clutter and use #MxApplication.
|
|
2423
2392
|
* See clutter_init().
|
|
@@ -2427,7 +2396,7 @@ export class Application extends GObject.Object {
|
|
|
2427
2396
|
* @param flags Application flags.
|
|
2428
2397
|
* @returns the #MxApplication singleton.
|
|
2429
2398
|
*/
|
|
2430
|
-
static new(argv: string[] | null, name: string
|
|
2399
|
+
static new(argv: string[] | null, name: string, flags: ApplicationFlags): Application
|
|
2431
2400
|
_init(config?: Application.ConstructorProperties): void
|
|
2432
2401
|
}
|
|
2433
2402
|
|
|
@@ -2443,22 +2412,6 @@ export module Bin {
|
|
|
2443
2412
|
* The child #ClutterActor of the #MxBin container.
|
|
2444
2413
|
*/
|
|
2445
2414
|
child?: Clutter.Actor | null
|
|
2446
|
-
/**
|
|
2447
|
-
* The horizontal alignment of the #MxBin child.
|
|
2448
|
-
*/
|
|
2449
|
-
x_align: any
|
|
2450
|
-
/**
|
|
2451
|
-
* Whether the child should fill the horizontal allocation
|
|
2452
|
-
*/
|
|
2453
|
-
x_fill?: boolean | null
|
|
2454
|
-
/**
|
|
2455
|
-
* The vertical alignment of the #MxBin child.
|
|
2456
|
-
*/
|
|
2457
|
-
y_align: any
|
|
2458
|
-
/**
|
|
2459
|
-
* Whether the child should fill the vertical allocation
|
|
2460
|
-
*/
|
|
2461
|
-
y_fill?: boolean | null
|
|
2462
2415
|
/**
|
|
2463
2416
|
* The horizontal alignment of the #MxBin child.
|
|
2464
2417
|
*/
|
|
@@ -2487,34 +2440,18 @@ export interface Bin extends Atk.ImplementorIface, Clutter.Animatable, Clutter.C
|
|
|
2487
2440
|
* The child #ClutterActor of the #MxBin container.
|
|
2488
2441
|
*/
|
|
2489
2442
|
child: Clutter.Actor
|
|
2490
|
-
/**
|
|
2491
|
-
* The horizontal alignment of the #MxBin child.
|
|
2492
|
-
*/
|
|
2493
|
-
x_align: any
|
|
2494
2443
|
/**
|
|
2495
2444
|
* The horizontal alignment of the #MxBin child.
|
|
2496
2445
|
*/
|
|
2497
2446
|
xAlign: any
|
|
2498
|
-
/**
|
|
2499
|
-
* Whether the child should fill the horizontal allocation
|
|
2500
|
-
*/
|
|
2501
|
-
x_fill: boolean
|
|
2502
2447
|
/**
|
|
2503
2448
|
* Whether the child should fill the horizontal allocation
|
|
2504
2449
|
*/
|
|
2505
2450
|
xFill: boolean
|
|
2506
|
-
/**
|
|
2507
|
-
* The vertical alignment of the #MxBin child.
|
|
2508
|
-
*/
|
|
2509
|
-
y_align: any
|
|
2510
2451
|
/**
|
|
2511
2452
|
* The vertical alignment of the #MxBin child.
|
|
2512
2453
|
*/
|
|
2513
2454
|
yAlign: any
|
|
2514
|
-
/**
|
|
2515
|
-
* Whether the child should fill the vertical allocation
|
|
2516
|
-
*/
|
|
2517
|
-
y_fill: boolean
|
|
2518
2455
|
/**
|
|
2519
2456
|
* Whether the child should fill the vertical allocation
|
|
2520
2457
|
*/
|
|
@@ -2578,7 +2515,7 @@ export interface Bin extends Atk.ImplementorIface, Clutter.Animatable, Clutter.C
|
|
|
2578
2515
|
* into `value`.
|
|
2579
2516
|
* @param property_name the name of the property
|
|
2580
2517
|
*/
|
|
2581
|
-
get_property(property_name: string
|
|
2518
|
+
get_property(property_name: string): /* value */ any
|
|
2582
2519
|
|
|
2583
2520
|
// Overloads of get_property
|
|
2584
2521
|
|
|
@@ -2602,7 +2539,7 @@ export interface Bin extends Atk.ImplementorIface, Clutter.Animatable, Clutter.C
|
|
|
2602
2539
|
* @param property_name the name of the property to get
|
|
2603
2540
|
* @param value return location for the property value
|
|
2604
2541
|
*/
|
|
2605
|
-
get_property(property_name: string
|
|
2542
|
+
get_property(property_name: string, value: any): void
|
|
2606
2543
|
/**
|
|
2607
2544
|
* Gets a property of an object.
|
|
2608
2545
|
*
|
|
@@ -2623,7 +2560,7 @@ export interface Bin extends Atk.ImplementorIface, Clutter.Animatable, Clutter.C
|
|
|
2623
2560
|
* @param property_name the name of the property to get
|
|
2624
2561
|
* @param value return location for the property value
|
|
2625
2562
|
*/
|
|
2626
|
-
get_property(property_name: string
|
|
2563
|
+
get_property(property_name: string, value: any): void
|
|
2627
2564
|
|
|
2628
2565
|
// Class property signals of Mx-1.0.Mx.Bin
|
|
2629
2566
|
|
|
@@ -2934,12 +2871,10 @@ export module BoxLayout {
|
|
|
2934
2871
|
|
|
2935
2872
|
// Own constructor properties of Mx-1.0.Mx.BoxLayout
|
|
2936
2873
|
|
|
2937
|
-
enable_animations?: boolean | null
|
|
2938
|
-
orientation?: Orientation | null
|
|
2939
|
-
scroll_to_focused?: boolean | null
|
|
2940
|
-
spacing?: number | null
|
|
2941
2874
|
enableAnimations?: boolean | null
|
|
2875
|
+
orientation?: Orientation | null
|
|
2942
2876
|
scrollToFocused?: boolean | null
|
|
2877
|
+
spacing?: number | null
|
|
2943
2878
|
}
|
|
2944
2879
|
|
|
2945
2880
|
}
|
|
@@ -2948,10 +2883,8 @@ export interface BoxLayout extends Atk.ImplementorIface, Clutter.Animatable, Clu
|
|
|
2948
2883
|
|
|
2949
2884
|
// Own properties of Mx-1.0.Mx.BoxLayout
|
|
2950
2885
|
|
|
2951
|
-
enable_animations: boolean
|
|
2952
2886
|
enableAnimations: boolean
|
|
2953
2887
|
orientation: Orientation
|
|
2954
|
-
scroll_to_focused: boolean
|
|
2955
2888
|
scrollToFocused: boolean
|
|
2956
2889
|
spacing: number
|
|
2957
2890
|
|
|
@@ -3086,7 +3019,7 @@ export interface BoxLayout extends Atk.ImplementorIface, Clutter.Animatable, Clu
|
|
|
3086
3019
|
* into `value`.
|
|
3087
3020
|
* @param property_name the name of the property
|
|
3088
3021
|
*/
|
|
3089
|
-
get_property(property_name: string
|
|
3022
|
+
get_property(property_name: string): /* value */ any
|
|
3090
3023
|
|
|
3091
3024
|
// Overloads of get_property
|
|
3092
3025
|
|
|
@@ -3110,7 +3043,7 @@ export interface BoxLayout extends Atk.ImplementorIface, Clutter.Animatable, Clu
|
|
|
3110
3043
|
* @param property_name the name of the property to get
|
|
3111
3044
|
* @param value return location for the property value
|
|
3112
3045
|
*/
|
|
3113
|
-
get_property(property_name: string
|
|
3046
|
+
get_property(property_name: string, value: any): void
|
|
3114
3047
|
/**
|
|
3115
3048
|
* Gets a property of an object.
|
|
3116
3049
|
*
|
|
@@ -3131,7 +3064,7 @@ export interface BoxLayout extends Atk.ImplementorIface, Clutter.Animatable, Clu
|
|
|
3131
3064
|
* @param property_name the name of the property to get
|
|
3132
3065
|
* @param value return location for the property value
|
|
3133
3066
|
*/
|
|
3134
|
-
get_property(property_name: string
|
|
3067
|
+
get_property(property_name: string, value: any): void
|
|
3135
3068
|
|
|
3136
3069
|
// Class property signals of Mx-1.0.Mx.BoxLayout
|
|
3137
3070
|
|
|
@@ -3465,10 +3398,6 @@ export module BoxLayoutChild {
|
|
|
3465
3398
|
// Own constructor properties of Mx-1.0.Mx.BoxLayoutChild
|
|
3466
3399
|
|
|
3467
3400
|
expand?: boolean | null
|
|
3468
|
-
x_align?: Align | null
|
|
3469
|
-
x_fill?: boolean | null
|
|
3470
|
-
y_align?: Align | null
|
|
3471
|
-
y_fill?: boolean | null
|
|
3472
3401
|
xAlign?: Align | null
|
|
3473
3402
|
xFill?: boolean | null
|
|
3474
3403
|
yAlign?: Align | null
|
|
@@ -3482,13 +3411,9 @@ export interface BoxLayoutChild {
|
|
|
3482
3411
|
// Own properties of Mx-1.0.Mx.BoxLayoutChild
|
|
3483
3412
|
|
|
3484
3413
|
expand: boolean
|
|
3485
|
-
x_align: Align
|
|
3486
3414
|
xAlign: Align
|
|
3487
|
-
x_fill: boolean
|
|
3488
3415
|
xFill: boolean
|
|
3489
|
-
y_align: Align
|
|
3490
3416
|
yAlign: Align
|
|
3491
|
-
y_fill: boolean
|
|
3492
3417
|
yFill: boolean
|
|
3493
3418
|
|
|
3494
3419
|
// Class property signals of Mx-1.0.Mx.BoxLayoutChild
|
|
@@ -3551,20 +3476,14 @@ export module Button {
|
|
|
3551
3476
|
// Own constructor properties of Mx-1.0.Mx.Button
|
|
3552
3477
|
|
|
3553
3478
|
action?: Action | null
|
|
3554
|
-
icon_name?: string | null
|
|
3555
|
-
icon_position?: Position | null
|
|
3556
|
-
icon_size?: number | null
|
|
3557
|
-
icon_visible?: boolean | null
|
|
3558
|
-
is_toggle?: boolean | null
|
|
3559
|
-
label?: string | null
|
|
3560
|
-
label_visible?: boolean | null
|
|
3561
|
-
toggled?: boolean | null
|
|
3562
3479
|
iconName?: string | null
|
|
3563
3480
|
iconPosition?: Position | null
|
|
3564
3481
|
iconSize?: number | null
|
|
3565
3482
|
iconVisible?: boolean | null
|
|
3566
3483
|
isToggle?: boolean | null
|
|
3484
|
+
label?: string | null
|
|
3567
3485
|
labelVisible?: boolean | null
|
|
3486
|
+
toggled?: boolean | null
|
|
3568
3487
|
}
|
|
3569
3488
|
|
|
3570
3489
|
}
|
|
@@ -3574,26 +3493,18 @@ export interface Button extends Atk.ImplementorIface, Clutter.Animatable, Clutte
|
|
|
3574
3493
|
// Own properties of Mx-1.0.Mx.Button
|
|
3575
3494
|
|
|
3576
3495
|
action: Action
|
|
3577
|
-
icon_name: string | null
|
|
3578
3496
|
iconName: string | null
|
|
3579
|
-
icon_position: Position
|
|
3580
3497
|
iconPosition: Position
|
|
3581
|
-
icon_size: number
|
|
3582
3498
|
iconSize: number
|
|
3583
|
-
icon_visible: boolean
|
|
3584
3499
|
iconVisible: boolean
|
|
3585
|
-
is_toggle: boolean
|
|
3586
3500
|
isToggle: boolean
|
|
3587
3501
|
label: string | null
|
|
3588
|
-
label_visible: boolean
|
|
3589
3502
|
labelVisible: boolean
|
|
3590
3503
|
toggled: boolean
|
|
3591
3504
|
|
|
3592
3505
|
// Conflicting properties
|
|
3593
3506
|
|
|
3594
|
-
x_align: any
|
|
3595
3507
|
xAlign: any
|
|
3596
|
-
y_align: any
|
|
3597
3508
|
yAlign: any
|
|
3598
3509
|
|
|
3599
3510
|
// Owm methods of Mx-1.0.Mx.Button
|
|
@@ -3612,12 +3523,12 @@ export interface Button extends Atk.ImplementorIface, Clutter.Animatable, Clutte
|
|
|
3612
3523
|
* @param name the name of the action to retrieve
|
|
3613
3524
|
* @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
3525
|
*/
|
|
3615
|
-
get_action(name: string
|
|
3526
|
+
get_action(name: string): Clutter.Action
|
|
3616
3527
|
/**
|
|
3617
3528
|
* Get the icon-name being used on the button.
|
|
3618
3529
|
* @returns the icon-name. This must not be freed by the application. %NULL if no icon has been set
|
|
3619
3530
|
*/
|
|
3620
|
-
get_icon_name(): string
|
|
3531
|
+
get_icon_name(): string
|
|
3621
3532
|
/**
|
|
3622
3533
|
* Retrieves the icon's relative position to the text.
|
|
3623
3534
|
* @returns A #MxPosition
|
|
@@ -3642,7 +3553,7 @@ export interface Button extends Atk.ImplementorIface, Clutter.Animatable, Clutte
|
|
|
3642
3553
|
* Get the text displayed on the button
|
|
3643
3554
|
* @returns the text for the button. This must not be freed by the application
|
|
3644
3555
|
*/
|
|
3645
|
-
get_label(): string
|
|
3556
|
+
get_label(): string
|
|
3646
3557
|
/**
|
|
3647
3558
|
* Retrieves the visibility of the text associated with the button's action.
|
|
3648
3559
|
* @returns %TRUE if the text is visible, %FALSE otherwise
|
|
@@ -3693,7 +3604,7 @@ export interface Button extends Atk.ImplementorIface, Clutter.Animatable, Clutte
|
|
|
3693
3604
|
* Sets the text displayed on the button
|
|
3694
3605
|
* @param text text to set the label to
|
|
3695
3606
|
*/
|
|
3696
|
-
set_label(text: string
|
|
3607
|
+
set_label(text: string): void
|
|
3697
3608
|
/**
|
|
3698
3609
|
* Sets the visibility of the text associated with the button's action.
|
|
3699
3610
|
* @param visible %TRUE if the text should be visible
|
|
@@ -3713,7 +3624,7 @@ export interface Button extends Atk.ImplementorIface, Clutter.Animatable, Clutte
|
|
|
3713
3624
|
* into `value`.
|
|
3714
3625
|
* @param property_name the name of the property
|
|
3715
3626
|
*/
|
|
3716
|
-
get_property(property_name: string
|
|
3627
|
+
get_property(property_name: string): /* value */ any
|
|
3717
3628
|
|
|
3718
3629
|
// Overloads of get_property
|
|
3719
3630
|
|
|
@@ -3737,7 +3648,7 @@ export interface Button extends Atk.ImplementorIface, Clutter.Animatable, Clutte
|
|
|
3737
3648
|
* @param property_name the name of the property to get
|
|
3738
3649
|
* @param value return location for the property value
|
|
3739
3650
|
*/
|
|
3740
|
-
get_property(property_name: string
|
|
3651
|
+
get_property(property_name: string, value: any): void
|
|
3741
3652
|
/**
|
|
3742
3653
|
* Gets a property of an object.
|
|
3743
3654
|
*
|
|
@@ -3758,7 +3669,7 @@ export interface Button extends Atk.ImplementorIface, Clutter.Animatable, Clutte
|
|
|
3758
3669
|
* @param property_name the name of the property to get
|
|
3759
3670
|
* @param value return location for the property value
|
|
3760
3671
|
*/
|
|
3761
|
-
get_property(property_name: string
|
|
3672
|
+
get_property(property_name: string, value: any): void
|
|
3762
3673
|
|
|
3763
3674
|
// Own virtual methods of Mx-1.0.Mx.Button
|
|
3764
3675
|
|
|
@@ -4114,7 +4025,7 @@ export class Button extends Bin {
|
|
|
4114
4025
|
* @param text text to set the label to
|
|
4115
4026
|
* @returns a new #MxButton
|
|
4116
4027
|
*/
|
|
4117
|
-
static new_with_label(text: string
|
|
4028
|
+
static new_with_label(text: string): Button
|
|
4118
4029
|
_init(config?: Button.ConstructorProperties): void
|
|
4119
4030
|
}
|
|
4120
4031
|
|
|
@@ -4126,8 +4037,6 @@ export module ButtonGroup {
|
|
|
4126
4037
|
|
|
4127
4038
|
// Own constructor properties of Mx-1.0.Mx.ButtonGroup
|
|
4128
4039
|
|
|
4129
|
-
active_button?: Button | null
|
|
4130
|
-
allow_no_active?: boolean | null
|
|
4131
4040
|
activeButton?: Button | null
|
|
4132
4041
|
allowNoActive?: boolean | null
|
|
4133
4042
|
}
|
|
@@ -4138,9 +4047,7 @@ export interface ButtonGroup {
|
|
|
4138
4047
|
|
|
4139
4048
|
// Own properties of Mx-1.0.Mx.ButtonGroup
|
|
4140
4049
|
|
|
4141
|
-
active_button: Button
|
|
4142
4050
|
activeButton: Button
|
|
4143
|
-
allow_no_active: boolean
|
|
4144
4051
|
allowNoActive: boolean
|
|
4145
4052
|
|
|
4146
4053
|
// Own fields of Mx-1.0.Mx.ButtonGroup
|
|
@@ -4259,7 +4166,7 @@ export interface Clipboard {
|
|
|
4259
4166
|
* Sets text as the current contents of the clipboard.
|
|
4260
4167
|
* @param text text to copy to the clipboard
|
|
4261
4168
|
*/
|
|
4262
|
-
set_text(text: string
|
|
4169
|
+
set_text(text: string): void
|
|
4263
4170
|
|
|
4264
4171
|
// Class property signals of Mx-1.0.Mx.Clipboard
|
|
4265
4172
|
|
|
@@ -4300,11 +4207,9 @@ export module ComboBox {
|
|
|
4300
4207
|
|
|
4301
4208
|
// Own constructor properties of Mx-1.0.Mx.ComboBox
|
|
4302
4209
|
|
|
4303
|
-
active_icon_name?: string | null
|
|
4304
|
-
active_text?: string | null
|
|
4305
|
-
index?: number | null
|
|
4306
4210
|
activeIconName?: string | null
|
|
4307
4211
|
activeText?: string | null
|
|
4212
|
+
index?: number | null
|
|
4308
4213
|
}
|
|
4309
4214
|
|
|
4310
4215
|
}
|
|
@@ -4313,9 +4218,7 @@ export interface ComboBox extends Atk.ImplementorIface, Clutter.Animatable, Clut
|
|
|
4313
4218
|
|
|
4314
4219
|
// Own properties of Mx-1.0.Mx.ComboBox
|
|
4315
4220
|
|
|
4316
|
-
active_icon_name: string | null
|
|
4317
4221
|
activeIconName: string | null
|
|
4318
|
-
active_text: string | null
|
|
4319
4222
|
activeText: string | null
|
|
4320
4223
|
index: number
|
|
4321
4224
|
|
|
@@ -4325,17 +4228,17 @@ export interface ComboBox extends Atk.ImplementorIface, Clutter.Animatable, Clut
|
|
|
4325
4228
|
* Append an item to the combo box list
|
|
4326
4229
|
* @param text name of the item
|
|
4327
4230
|
*/
|
|
4328
|
-
append_text(text: string
|
|
4231
|
+
append_text(text: string): void
|
|
4329
4232
|
/**
|
|
4330
4233
|
* Get the name of the icon displayed in the combo box
|
|
4331
4234
|
* @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
4235
|
*/
|
|
4333
|
-
get_active_icon_name(): string
|
|
4236
|
+
get_active_icon_name(): string
|
|
4334
4237
|
/**
|
|
4335
4238
|
* Get the text displayed in the combo box
|
|
4336
4239
|
* @returns the text string, owned by the combo box
|
|
4337
4240
|
*/
|
|
4338
|
-
get_active_text(): string
|
|
4241
|
+
get_active_text(): string
|
|
4339
4242
|
/**
|
|
4340
4243
|
* Get the index of the last item selected
|
|
4341
4244
|
* @returns gint
|
|
@@ -4346,19 +4249,19 @@ export interface ComboBox extends Atk.ImplementorIface, Clutter.Animatable, Clut
|
|
|
4346
4249
|
* @param position zero indexed position to insert the item at
|
|
4347
4250
|
* @param text name of the item
|
|
4348
4251
|
*/
|
|
4349
|
-
insert_text(position: number, text: string
|
|
4252
|
+
insert_text(position: number, text: string): void
|
|
4350
4253
|
/**
|
|
4351
4254
|
* Insert an item with text and an icon into the combo box list.
|
|
4352
4255
|
* @param position zero indexed position to insert the item at
|
|
4353
4256
|
* @param text name of the item
|
|
4354
4257
|
* @param icon name of an icon from the icon theme
|
|
4355
4258
|
*/
|
|
4356
|
-
insert_text_with_icon(position: number, text: string
|
|
4259
|
+
insert_text_with_icon(position: number, text: string, icon: string): void
|
|
4357
4260
|
/**
|
|
4358
4261
|
* Prepend an item to the combo box list
|
|
4359
4262
|
* @param text name of the item
|
|
4360
4263
|
*/
|
|
4361
|
-
prepend_text(text: string
|
|
4264
|
+
prepend_text(text: string): void
|
|
4362
4265
|
/**
|
|
4363
4266
|
* Remove all the items of `box`
|
|
4364
4267
|
*/
|
|
@@ -4377,7 +4280,7 @@ export interface ComboBox extends Atk.ImplementorIface, Clutter.Animatable, Clut
|
|
|
4377
4280
|
* Set the text displayed in the combo box
|
|
4378
4281
|
* @param text text to display
|
|
4379
4282
|
*/
|
|
4380
|
-
set_active_text(text: string
|
|
4283
|
+
set_active_text(text: string): void
|
|
4381
4284
|
/**
|
|
4382
4285
|
* Set the current combo box text from the item at `index` in the list.
|
|
4383
4286
|
* @param index the index of the list item to set
|
|
@@ -4391,7 +4294,7 @@ export interface ComboBox extends Atk.ImplementorIface, Clutter.Animatable, Clut
|
|
|
4391
4294
|
* into `value`.
|
|
4392
4295
|
* @param property_name the name of the property
|
|
4393
4296
|
*/
|
|
4394
|
-
get_property(property_name: string
|
|
4297
|
+
get_property(property_name: string): /* value */ any
|
|
4395
4298
|
|
|
4396
4299
|
// Overloads of get_property
|
|
4397
4300
|
|
|
@@ -4415,7 +4318,7 @@ export interface ComboBox extends Atk.ImplementorIface, Clutter.Animatable, Clut
|
|
|
4415
4318
|
* @param property_name the name of the property to get
|
|
4416
4319
|
* @param value return location for the property value
|
|
4417
4320
|
*/
|
|
4418
|
-
get_property(property_name: string
|
|
4321
|
+
get_property(property_name: string, value: any): void
|
|
4419
4322
|
/**
|
|
4420
4323
|
* Gets a property of an object.
|
|
4421
4324
|
*
|
|
@@ -4436,7 +4339,7 @@ export interface ComboBox extends Atk.ImplementorIface, Clutter.Animatable, Clut
|
|
|
4436
4339
|
* @param property_name the name of the property to get
|
|
4437
4340
|
* @param value return location for the property value
|
|
4438
4341
|
*/
|
|
4439
|
-
get_property(property_name: string
|
|
4342
|
+
get_property(property_name: string, value: any): void
|
|
4440
4343
|
|
|
4441
4344
|
// Class property signals of Mx-1.0.Mx.ComboBox
|
|
4442
4345
|
|
|
@@ -4760,9 +4663,8 @@ export module DeformBowTie {
|
|
|
4760
4663
|
|
|
4761
4664
|
// Own constructor properties of Mx-1.0.Mx.DeformBowTie
|
|
4762
4665
|
|
|
4763
|
-
flip_back?: boolean | null
|
|
4764
|
-
period?: number | null
|
|
4765
4666
|
flipBack?: boolean | null
|
|
4667
|
+
period?: number | null
|
|
4766
4668
|
}
|
|
4767
4669
|
|
|
4768
4670
|
}
|
|
@@ -4771,7 +4673,6 @@ export interface DeformBowTie extends Atk.ImplementorIface, Clutter.Animatable,
|
|
|
4771
4673
|
|
|
4772
4674
|
// Own properties of Mx-1.0.Mx.DeformBowTie
|
|
4773
4675
|
|
|
4774
|
-
flip_back: boolean
|
|
4775
4676
|
flipBack: boolean
|
|
4776
4677
|
period: number
|
|
4777
4678
|
|
|
@@ -4794,7 +4695,7 @@ export interface DeformBowTie extends Atk.ImplementorIface, Clutter.Animatable,
|
|
|
4794
4695
|
* into `value`.
|
|
4795
4696
|
* @param property_name the name of the property
|
|
4796
4697
|
*/
|
|
4797
|
-
get_property(property_name: string
|
|
4698
|
+
get_property(property_name: string): /* value */ any
|
|
4798
4699
|
|
|
4799
4700
|
// Overloads of get_property
|
|
4800
4701
|
|
|
@@ -4818,7 +4719,7 @@ export interface DeformBowTie extends Atk.ImplementorIface, Clutter.Animatable,
|
|
|
4818
4719
|
* @param property_name the name of the property to get
|
|
4819
4720
|
* @param value return location for the property value
|
|
4820
4721
|
*/
|
|
4821
|
-
get_property(property_name: string
|
|
4722
|
+
get_property(property_name: string, value: any): void
|
|
4822
4723
|
/**
|
|
4823
4724
|
* Gets a property of an object.
|
|
4824
4725
|
*
|
|
@@ -4839,7 +4740,7 @@ export interface DeformBowTie extends Atk.ImplementorIface, Clutter.Animatable,
|
|
|
4839
4740
|
* @param property_name the name of the property to get
|
|
4840
4741
|
* @param value return location for the property value
|
|
4841
4742
|
*/
|
|
4842
|
-
get_property(property_name: string
|
|
4743
|
+
get_property(property_name: string, value: any): void
|
|
4843
4744
|
|
|
4844
4745
|
// Class property signals of Mx-1.0.Mx.DeformBowTie
|
|
4845
4746
|
|
|
@@ -5198,7 +5099,7 @@ export interface DeformPageTurn extends Atk.ImplementorIface, Clutter.Animatable
|
|
|
5198
5099
|
* into `value`.
|
|
5199
5100
|
* @param property_name the name of the property
|
|
5200
5101
|
*/
|
|
5201
|
-
get_property(property_name: string
|
|
5102
|
+
get_property(property_name: string): /* value */ any
|
|
5202
5103
|
|
|
5203
5104
|
// Overloads of get_property
|
|
5204
5105
|
|
|
@@ -5222,7 +5123,7 @@ export interface DeformPageTurn extends Atk.ImplementorIface, Clutter.Animatable
|
|
|
5222
5123
|
* @param property_name the name of the property to get
|
|
5223
5124
|
* @param value return location for the property value
|
|
5224
5125
|
*/
|
|
5225
|
-
get_property(property_name: string
|
|
5126
|
+
get_property(property_name: string, value: any): void
|
|
5226
5127
|
/**
|
|
5227
5128
|
* Gets a property of an object.
|
|
5228
5129
|
*
|
|
@@ -5243,7 +5144,7 @@ export interface DeformPageTurn extends Atk.ImplementorIface, Clutter.Animatable
|
|
|
5243
5144
|
* @param property_name the name of the property to get
|
|
5244
5145
|
* @param value return location for the property value
|
|
5245
5146
|
*/
|
|
5246
|
-
get_property(property_name: string
|
|
5147
|
+
get_property(property_name: string, value: any): void
|
|
5247
5148
|
|
|
5248
5149
|
// Class property signals of Mx-1.0.Mx.DeformPageTurn
|
|
5249
5150
|
|
|
@@ -5571,8 +5472,6 @@ export module DeformTexture {
|
|
|
5571
5472
|
|
|
5572
5473
|
back?: Clutter.Texture | null
|
|
5573
5474
|
front?: Clutter.Texture | null
|
|
5574
|
-
tiles_x?: number | null
|
|
5575
|
-
tiles_y?: number | null
|
|
5576
5475
|
tilesX?: number | null
|
|
5577
5476
|
tilesY?: number | null
|
|
5578
5477
|
}
|
|
@@ -5585,9 +5484,7 @@ export interface DeformTexture extends Atk.ImplementorIface, Clutter.Animatable,
|
|
|
5585
5484
|
|
|
5586
5485
|
back: Clutter.Texture
|
|
5587
5486
|
front: Clutter.Texture
|
|
5588
|
-
tiles_x: number
|
|
5589
5487
|
tilesX: number
|
|
5590
|
-
tiles_y: number
|
|
5591
5488
|
tilesY: number
|
|
5592
5489
|
|
|
5593
5490
|
// Own fields of Mx-1.0.Mx.DeformTexture
|
|
@@ -5632,7 +5529,7 @@ export interface DeformTexture extends Atk.ImplementorIface, Clutter.Animatable,
|
|
|
5632
5529
|
* into `value`.
|
|
5633
5530
|
* @param property_name the name of the property
|
|
5634
5531
|
*/
|
|
5635
|
-
get_property(property_name: string
|
|
5532
|
+
get_property(property_name: string): /* value */ any
|
|
5636
5533
|
|
|
5637
5534
|
// Overloads of get_property
|
|
5638
5535
|
|
|
@@ -5656,7 +5553,7 @@ export interface DeformTexture extends Atk.ImplementorIface, Clutter.Animatable,
|
|
|
5656
5553
|
* @param property_name the name of the property to get
|
|
5657
5554
|
* @param value return location for the property value
|
|
5658
5555
|
*/
|
|
5659
|
-
get_property(property_name: string
|
|
5556
|
+
get_property(property_name: string, value: any): void
|
|
5660
5557
|
/**
|
|
5661
5558
|
* Gets a property of an object.
|
|
5662
5559
|
*
|
|
@@ -5677,7 +5574,7 @@ export interface DeformTexture extends Atk.ImplementorIface, Clutter.Animatable,
|
|
|
5677
5574
|
* @param property_name the name of the property to get
|
|
5678
5575
|
* @param value return location for the property value
|
|
5679
5576
|
*/
|
|
5680
|
-
get_property(property_name: string
|
|
5577
|
+
get_property(property_name: string, value: any): void
|
|
5681
5578
|
|
|
5682
5579
|
// Own virtual methods of Mx-1.0.Mx.DeformTexture
|
|
5683
5580
|
|
|
@@ -6036,7 +5933,7 @@ export interface DeformWaves extends Atk.ImplementorIface, Clutter.Animatable, C
|
|
|
6036
5933
|
* into `value`.
|
|
6037
5934
|
* @param property_name the name of the property
|
|
6038
5935
|
*/
|
|
6039
|
-
get_property(property_name: string
|
|
5936
|
+
get_property(property_name: string): /* value */ any
|
|
6040
5937
|
|
|
6041
5938
|
// Overloads of get_property
|
|
6042
5939
|
|
|
@@ -6060,7 +5957,7 @@ export interface DeformWaves extends Atk.ImplementorIface, Clutter.Animatable, C
|
|
|
6060
5957
|
* @param property_name the name of the property to get
|
|
6061
5958
|
* @param value return location for the property value
|
|
6062
5959
|
*/
|
|
6063
|
-
get_property(property_name: string
|
|
5960
|
+
get_property(property_name: string, value: any): void
|
|
6064
5961
|
/**
|
|
6065
5962
|
* Gets a property of an object.
|
|
6066
5963
|
*
|
|
@@ -6081,7 +5978,7 @@ export interface DeformWaves extends Atk.ImplementorIface, Clutter.Animatable, C
|
|
|
6081
5978
|
* @param property_name the name of the property to get
|
|
6082
5979
|
* @param value return location for the property value
|
|
6083
5980
|
*/
|
|
6084
|
-
get_property(property_name: string
|
|
5981
|
+
get_property(property_name: string, value: any): void
|
|
6085
5982
|
|
|
6086
5983
|
// Class property signals of Mx-1.0.Mx.DeformWaves
|
|
6087
5984
|
|
|
@@ -6415,9 +6312,7 @@ export interface Dialog extends Atk.ImplementorIface, Clutter.Animatable, Clutte
|
|
|
6415
6312
|
|
|
6416
6313
|
// Conflicting properties
|
|
6417
6314
|
|
|
6418
|
-
x_align: any
|
|
6419
6315
|
xAlign: any
|
|
6420
|
-
y_align: any
|
|
6421
6316
|
yAlign: any
|
|
6422
6317
|
|
|
6423
6318
|
// Owm methods of Mx-1.0.Mx.Dialog
|
|
@@ -6483,7 +6378,7 @@ export interface Dialog extends Atk.ImplementorIface, Clutter.Animatable, Clutte
|
|
|
6483
6378
|
* into `value`.
|
|
6484
6379
|
* @param property_name the name of the property
|
|
6485
6380
|
*/
|
|
6486
|
-
get_property(property_name: string
|
|
6381
|
+
get_property(property_name: string): /* value */ any
|
|
6487
6382
|
|
|
6488
6383
|
// Overloads of get_property
|
|
6489
6384
|
|
|
@@ -6507,7 +6402,7 @@ export interface Dialog extends Atk.ImplementorIface, Clutter.Animatable, Clutte
|
|
|
6507
6402
|
* @param property_name the name of the property to get
|
|
6508
6403
|
* @param value return location for the property value
|
|
6509
6404
|
*/
|
|
6510
|
-
get_property(property_name: string
|
|
6405
|
+
get_property(property_name: string, value: any): void
|
|
6511
6406
|
/**
|
|
6512
6407
|
* Gets a property of an object.
|
|
6513
6408
|
*
|
|
@@ -6528,7 +6423,7 @@ export interface Dialog extends Atk.ImplementorIface, Clutter.Animatable, Clutte
|
|
|
6528
6423
|
* @param property_name the name of the property to get
|
|
6529
6424
|
* @param value return location for the property value
|
|
6530
6425
|
*/
|
|
6531
|
-
get_property(property_name: string
|
|
6426
|
+
get_property(property_name: string, value: any): void
|
|
6532
6427
|
|
|
6533
6428
|
// Class property signals of Mx-1.0.Mx.Dialog
|
|
6534
6429
|
|
|
@@ -6869,17 +6764,12 @@ export module Entry {
|
|
|
6869
6764
|
|
|
6870
6765
|
// Own constructor properties of Mx-1.0.Mx.Entry
|
|
6871
6766
|
|
|
6872
|
-
hint_text?: string | null
|
|
6873
|
-
icon_highlight_suffix?: string | null
|
|
6874
|
-
password_char?: number | null
|
|
6875
|
-
primary_icon_tooltip_text?: string | null
|
|
6876
|
-
secondary_icon_tooltip_text?: string | null
|
|
6877
|
-
text?: string | null
|
|
6878
6767
|
hintText?: string | null
|
|
6879
6768
|
iconHighlightSuffix?: string | null
|
|
6880
6769
|
passwordChar?: number | null
|
|
6881
6770
|
primaryIconTooltipText?: string | null
|
|
6882
6771
|
secondaryIconTooltipText?: string | null
|
|
6772
|
+
text?: string | null
|
|
6883
6773
|
}
|
|
6884
6774
|
|
|
6885
6775
|
}
|
|
@@ -6888,17 +6778,11 @@ export interface Entry extends Atk.ImplementorIface, Clutter.Animatable, Clutter
|
|
|
6888
6778
|
|
|
6889
6779
|
// Own properties of Mx-1.0.Mx.Entry
|
|
6890
6780
|
|
|
6891
|
-
readonly clutter_text: Clutter.Text
|
|
6892
6781
|
readonly clutterText: Clutter.Text
|
|
6893
|
-
hint_text: string | null
|
|
6894
6782
|
hintText: string | null
|
|
6895
|
-
icon_highlight_suffix: string | null
|
|
6896
6783
|
iconHighlightSuffix: string | null
|
|
6897
|
-
password_char: number
|
|
6898
6784
|
passwordChar: number
|
|
6899
|
-
primary_icon_tooltip_text: string | null
|
|
6900
6785
|
primaryIconTooltipText: string | null
|
|
6901
|
-
secondary_icon_tooltip_text: string | null
|
|
6902
6786
|
secondaryIconTooltipText: string | null
|
|
6903
6787
|
text: string | null
|
|
6904
6788
|
|
|
@@ -6913,13 +6797,13 @@ export interface Entry extends Atk.ImplementorIface, Clutter.Animatable, Clutter
|
|
|
6913
6797
|
* Gets the text that is displayed when the entry is empty and unfocused
|
|
6914
6798
|
* @returns the current value of the hint property. This string is owned by the #MxEntry and should not be freed or modified.
|
|
6915
6799
|
*/
|
|
6916
|
-
get_hint_text(): string
|
|
6800
|
+
get_hint_text(): string
|
|
6917
6801
|
/**
|
|
6918
6802
|
* Get the suffix appended to the filename to use for the highlighted version
|
|
6919
6803
|
* of the icon.
|
|
6920
6804
|
* @returns the highlight filename suffix. This string is owned by the #MxEntry and should not be freed or modified.
|
|
6921
6805
|
*/
|
|
6922
|
-
get_icon_highlight_suffix(): string
|
|
6806
|
+
get_icon_highlight_suffix(): string
|
|
6923
6807
|
/**
|
|
6924
6808
|
* Gets the character to display instead of the text.
|
|
6925
6809
|
* @returns a character, or 0 if input should not be hidden.
|
|
@@ -6929,14 +6813,14 @@ export interface Entry extends Atk.ImplementorIface, Clutter.Animatable, Clutter
|
|
|
6929
6813
|
* Get the text displayed on the entry
|
|
6930
6814
|
* @returns the text for the entry. This must not be freed by the application
|
|
6931
6815
|
*/
|
|
6932
|
-
get_text(): string
|
|
6816
|
+
get_text(): string
|
|
6933
6817
|
/**
|
|
6934
6818
|
* Sets the text to display when the entry is empty and unfocused. When the
|
|
6935
6819
|
* entry is displaying the hint, it has a pseudo class of "indeterminate".
|
|
6936
6820
|
* A value of NULL unsets the hint.
|
|
6937
6821
|
* @param text text to set as the entry hint
|
|
6938
6822
|
*/
|
|
6939
|
-
set_hint_text(text: string
|
|
6823
|
+
set_hint_text(text: string): void
|
|
6940
6824
|
/**
|
|
6941
6825
|
* Sets the suffix appended to the filename to use for the highlighted version
|
|
6942
6826
|
* of the icon. e.g. if you have set your primay icon to "primary-icon.png"
|
|
@@ -6944,7 +6828,7 @@ export interface Entry extends Atk.ImplementorIface, Clutter.Animatable, Clutter
|
|
|
6944
6828
|
* "primary-icon-highlight.png"
|
|
6945
6829
|
* @param suffix the suffix to append to the filename for the highlight version
|
|
6946
6830
|
*/
|
|
6947
|
-
set_icon_highlight_suffix(suffix: string
|
|
6831
|
+
set_icon_highlight_suffix(suffix: string): void
|
|
6948
6832
|
/**
|
|
6949
6833
|
* Sets the character to display instead of the text. Use 0 to display
|
|
6950
6834
|
* the actual text.
|
|
@@ -6955,19 +6839,19 @@ export interface Entry extends Atk.ImplementorIface, Clutter.Animatable, Clutter
|
|
|
6955
6839
|
* Set the primary icon of the entry to the given filename
|
|
6956
6840
|
* @param filename filename of an icon
|
|
6957
6841
|
*/
|
|
6958
|
-
set_primary_icon_from_file(filename: string
|
|
6959
|
-
set_primary_icon_tooltip_text(text: string
|
|
6842
|
+
set_primary_icon_from_file(filename: string): void
|
|
6843
|
+
set_primary_icon_tooltip_text(text: string): void
|
|
6960
6844
|
/**
|
|
6961
6845
|
* Set the primary icon of the entry to the given filename
|
|
6962
6846
|
* @param filename filename of an icon
|
|
6963
6847
|
*/
|
|
6964
|
-
set_secondary_icon_from_file(filename: string
|
|
6965
|
-
set_secondary_icon_tooltip_text(text: string
|
|
6848
|
+
set_secondary_icon_from_file(filename: string): void
|
|
6849
|
+
set_secondary_icon_tooltip_text(text: string): void
|
|
6966
6850
|
/**
|
|
6967
6851
|
* Sets the text displayed on the entry
|
|
6968
6852
|
* @param text text to set the entry to
|
|
6969
6853
|
*/
|
|
6970
|
-
set_text(text: string
|
|
6854
|
+
set_text(text: string): void
|
|
6971
6855
|
|
|
6972
6856
|
// Conflicting methods
|
|
6973
6857
|
|
|
@@ -6976,7 +6860,7 @@ export interface Entry extends Atk.ImplementorIface, Clutter.Animatable, Clutter
|
|
|
6976
6860
|
* into `value`.
|
|
6977
6861
|
* @param property_name the name of the property
|
|
6978
6862
|
*/
|
|
6979
|
-
get_property(property_name: string
|
|
6863
|
+
get_property(property_name: string): /* value */ any
|
|
6980
6864
|
|
|
6981
6865
|
// Overloads of get_property
|
|
6982
6866
|
|
|
@@ -7000,7 +6884,7 @@ export interface Entry extends Atk.ImplementorIface, Clutter.Animatable, Clutter
|
|
|
7000
6884
|
* @param property_name the name of the property to get
|
|
7001
6885
|
* @param value return location for the property value
|
|
7002
6886
|
*/
|
|
7003
|
-
get_property(property_name: string
|
|
6887
|
+
get_property(property_name: string, value: any): void
|
|
7004
6888
|
/**
|
|
7005
6889
|
* Gets a property of an object.
|
|
7006
6890
|
*
|
|
@@ -7021,7 +6905,7 @@ export interface Entry extends Atk.ImplementorIface, Clutter.Animatable, Clutter
|
|
|
7021
6905
|
* @param property_name the name of the property to get
|
|
7022
6906
|
* @param value return location for the property value
|
|
7023
6907
|
*/
|
|
7024
|
-
get_property(property_name: string
|
|
6908
|
+
get_property(property_name: string, value: any): void
|
|
7025
6909
|
|
|
7026
6910
|
// Own virtual methods of Mx-1.0.Mx.Entry
|
|
7027
6911
|
|
|
@@ -7366,7 +7250,7 @@ export class Entry extends Widget {
|
|
|
7366
7250
|
* @param text text to set the entry to
|
|
7367
7251
|
* @returns a new #MxEntry
|
|
7368
7252
|
*/
|
|
7369
|
-
static new_with_text(text: string
|
|
7253
|
+
static new_with_text(text: string): Entry
|
|
7370
7254
|
_init(config?: Entry.ConstructorProperties): void
|
|
7371
7255
|
}
|
|
7372
7256
|
|
|
@@ -7403,9 +7287,7 @@ export interface Expander extends Atk.ImplementorIface, Clutter.Animatable, Clut
|
|
|
7403
7287
|
|
|
7404
7288
|
// Conflicting properties
|
|
7405
7289
|
|
|
7406
|
-
x_align: any
|
|
7407
7290
|
xAlign: any
|
|
7408
|
-
y_align: any
|
|
7409
7291
|
yAlign: any
|
|
7410
7292
|
|
|
7411
7293
|
// Owm methods of Mx-1.0.Mx.Expander
|
|
@@ -7425,7 +7307,7 @@ export interface Expander extends Atk.ImplementorIface, Clutter.Animatable, Clut
|
|
|
7425
7307
|
* Sets the text displayed as the title of the expander
|
|
7426
7308
|
* @param label string to set as the expander label
|
|
7427
7309
|
*/
|
|
7428
|
-
set_label(label: string
|
|
7310
|
+
set_label(label: string): void
|
|
7429
7311
|
|
|
7430
7312
|
// Conflicting methods
|
|
7431
7313
|
|
|
@@ -7434,7 +7316,7 @@ export interface Expander extends Atk.ImplementorIface, Clutter.Animatable, Clut
|
|
|
7434
7316
|
* into `value`.
|
|
7435
7317
|
* @param property_name the name of the property
|
|
7436
7318
|
*/
|
|
7437
|
-
get_property(property_name: string
|
|
7319
|
+
get_property(property_name: string): /* value */ any
|
|
7438
7320
|
|
|
7439
7321
|
// Overloads of get_property
|
|
7440
7322
|
|
|
@@ -7458,7 +7340,7 @@ export interface Expander extends Atk.ImplementorIface, Clutter.Animatable, Clut
|
|
|
7458
7340
|
* @param property_name the name of the property to get
|
|
7459
7341
|
* @param value return location for the property value
|
|
7460
7342
|
*/
|
|
7461
|
-
get_property(property_name: string
|
|
7343
|
+
get_property(property_name: string, value: any): void
|
|
7462
7344
|
/**
|
|
7463
7345
|
* Gets a property of an object.
|
|
7464
7346
|
*
|
|
@@ -7479,7 +7361,7 @@ export interface Expander extends Atk.ImplementorIface, Clutter.Animatable, Clut
|
|
|
7479
7361
|
* @param property_name the name of the property to get
|
|
7480
7362
|
* @param value return location for the property value
|
|
7481
7363
|
*/
|
|
7482
|
-
get_property(property_name: string
|
|
7364
|
+
get_property(property_name: string, value: any): void
|
|
7483
7365
|
|
|
7484
7366
|
// Own virtual methods of Mx-1.0.Mx.Expander
|
|
7485
7367
|
|
|
@@ -7819,16 +7701,6 @@ export module FadeEffect {
|
|
|
7819
7701
|
|
|
7820
7702
|
// Own constructor properties of Mx-1.0.Mx.FadeEffect
|
|
7821
7703
|
|
|
7822
|
-
border_bottom?: number | null
|
|
7823
|
-
border_left?: number | null
|
|
7824
|
-
border_right?: number | null
|
|
7825
|
-
border_top?: number | null
|
|
7826
|
-
bounds_height?: number | null
|
|
7827
|
-
bounds_width?: number | null
|
|
7828
|
-
bounds_x?: number | null
|
|
7829
|
-
bounds_y?: number | null
|
|
7830
|
-
color?: Clutter.Color | null
|
|
7831
|
-
freeze_update?: boolean | null
|
|
7832
7704
|
borderBottom?: number | null
|
|
7833
7705
|
borderLeft?: number | null
|
|
7834
7706
|
borderRight?: number | null
|
|
@@ -7837,6 +7709,7 @@ export module FadeEffect {
|
|
|
7837
7709
|
boundsWidth?: number | null
|
|
7838
7710
|
boundsX?: number | null
|
|
7839
7711
|
boundsY?: number | null
|
|
7712
|
+
color?: Clutter.Color | null
|
|
7840
7713
|
freezeUpdate?: boolean | null
|
|
7841
7714
|
}
|
|
7842
7715
|
|
|
@@ -7846,24 +7719,15 @@ export interface FadeEffect {
|
|
|
7846
7719
|
|
|
7847
7720
|
// Own properties of Mx-1.0.Mx.FadeEffect
|
|
7848
7721
|
|
|
7849
|
-
border_bottom: number
|
|
7850
7722
|
borderBottom: number
|
|
7851
|
-
border_left: number
|
|
7852
7723
|
borderLeft: number
|
|
7853
|
-
border_right: number
|
|
7854
7724
|
borderRight: number
|
|
7855
|
-
border_top: number
|
|
7856
7725
|
borderTop: number
|
|
7857
|
-
bounds_height: number
|
|
7858
7726
|
boundsHeight: number
|
|
7859
|
-
bounds_width: number
|
|
7860
7727
|
boundsWidth: number
|
|
7861
|
-
bounds_x: number
|
|
7862
7728
|
boundsX: number
|
|
7863
|
-
bounds_y: number
|
|
7864
7729
|
boundsY: number
|
|
7865
7730
|
color: Clutter.Color
|
|
7866
|
-
freeze_update: boolean
|
|
7867
7731
|
freezeUpdate: boolean
|
|
7868
7732
|
|
|
7869
7733
|
// Own fields of Mx-1.0.Mx.FadeEffect
|
|
@@ -8012,7 +7876,7 @@ export interface FloatingWidget extends Atk.ImplementorIface, Clutter.Animatable
|
|
|
8012
7876
|
* into `value`.
|
|
8013
7877
|
* @param property_name the name of the property
|
|
8014
7878
|
*/
|
|
8015
|
-
get_property(property_name: string
|
|
7879
|
+
get_property(property_name: string): /* value */ any
|
|
8016
7880
|
|
|
8017
7881
|
// Overloads of get_property
|
|
8018
7882
|
|
|
@@ -8036,7 +7900,7 @@ export interface FloatingWidget extends Atk.ImplementorIface, Clutter.Animatable
|
|
|
8036
7900
|
* @param property_name the name of the property to get
|
|
8037
7901
|
* @param value return location for the property value
|
|
8038
7902
|
*/
|
|
8039
|
-
get_property(property_name: string
|
|
7903
|
+
get_property(property_name: string, value: any): void
|
|
8040
7904
|
/**
|
|
8041
7905
|
* Gets a property of an object.
|
|
8042
7906
|
*
|
|
@@ -8057,7 +7921,7 @@ export interface FloatingWidget extends Atk.ImplementorIface, Clutter.Animatable
|
|
|
8057
7921
|
* @param property_name the name of the property to get
|
|
8058
7922
|
* @param value return location for the property value
|
|
8059
7923
|
*/
|
|
8060
|
-
get_property(property_name: string
|
|
7924
|
+
get_property(property_name: string, value: any): void
|
|
8061
7925
|
|
|
8062
7926
|
// Class property signals of Mx-1.0.Mx.FloatingWidget
|
|
8063
7927
|
|
|
@@ -8461,9 +8325,7 @@ export interface Frame extends Atk.ImplementorIface, Clutter.Animatable, Clutter
|
|
|
8461
8325
|
|
|
8462
8326
|
// Conflicting properties
|
|
8463
8327
|
|
|
8464
|
-
x_align: any
|
|
8465
8328
|
xAlign: any
|
|
8466
|
-
y_align: any
|
|
8467
8329
|
yAlign: any
|
|
8468
8330
|
|
|
8469
8331
|
// Own fields of Mx-1.0.Mx.Frame
|
|
@@ -8478,7 +8340,7 @@ export interface Frame extends Atk.ImplementorIface, Clutter.Animatable, Clutter
|
|
|
8478
8340
|
* into `value`.
|
|
8479
8341
|
* @param property_name the name of the property
|
|
8480
8342
|
*/
|
|
8481
|
-
get_property(property_name: string
|
|
8343
|
+
get_property(property_name: string): /* value */ any
|
|
8482
8344
|
|
|
8483
8345
|
// Overloads of get_property
|
|
8484
8346
|
|
|
@@ -8502,7 +8364,7 @@ export interface Frame extends Atk.ImplementorIface, Clutter.Animatable, Clutter
|
|
|
8502
8364
|
* @param property_name the name of the property to get
|
|
8503
8365
|
* @param value return location for the property value
|
|
8504
8366
|
*/
|
|
8505
|
-
get_property(property_name: string
|
|
8367
|
+
get_property(property_name: string, value: any): void
|
|
8506
8368
|
/**
|
|
8507
8369
|
* Gets a property of an object.
|
|
8508
8370
|
*
|
|
@@ -8523,7 +8385,7 @@ export interface Frame extends Atk.ImplementorIface, Clutter.Animatable, Clutter
|
|
|
8523
8385
|
* @param property_name the name of the property to get
|
|
8524
8386
|
* @param value return location for the property value
|
|
8525
8387
|
*/
|
|
8526
|
-
get_property(property_name: string
|
|
8388
|
+
get_property(property_name: string, value: any): void
|
|
8527
8389
|
|
|
8528
8390
|
// Class property signals of Mx-1.0.Mx.Frame
|
|
8529
8391
|
|
|
@@ -8847,15 +8709,6 @@ export module Grid {
|
|
|
8847
8709
|
|
|
8848
8710
|
// Own constructor properties of Mx-1.0.Mx.Grid
|
|
8849
8711
|
|
|
8850
|
-
child_x_align?: Align | null
|
|
8851
|
-
child_y_align?: Align | null
|
|
8852
|
-
column_spacing?: number | null
|
|
8853
|
-
homogenous_columns?: boolean | null
|
|
8854
|
-
homogenous_rows?: boolean | null
|
|
8855
|
-
line_alignment?: Align | null
|
|
8856
|
-
max_stride?: number | null
|
|
8857
|
-
orientation?: Orientation | null
|
|
8858
|
-
row_spacing?: number | null
|
|
8859
8712
|
childXAlign?: Align | null
|
|
8860
8713
|
childYAlign?: Align | null
|
|
8861
8714
|
columnSpacing?: number | null
|
|
@@ -8863,6 +8716,7 @@ export module Grid {
|
|
|
8863
8716
|
homogenousRows?: boolean | null
|
|
8864
8717
|
lineAlignment?: Align | null
|
|
8865
8718
|
maxStride?: number | null
|
|
8719
|
+
orientation?: Orientation | null
|
|
8866
8720
|
rowSpacing?: number | null
|
|
8867
8721
|
}
|
|
8868
8722
|
|
|
@@ -8872,22 +8726,14 @@ export interface Grid extends Atk.ImplementorIface, Clutter.Animatable, Clutter.
|
|
|
8872
8726
|
|
|
8873
8727
|
// Own properties of Mx-1.0.Mx.Grid
|
|
8874
8728
|
|
|
8875
|
-
child_x_align: Align
|
|
8876
8729
|
childXAlign: Align
|
|
8877
|
-
child_y_align: Align
|
|
8878
8730
|
childYAlign: Align
|
|
8879
|
-
column_spacing: number
|
|
8880
8731
|
columnSpacing: number
|
|
8881
|
-
homogenous_columns: boolean
|
|
8882
8732
|
homogenousColumns: boolean
|
|
8883
|
-
homogenous_rows: boolean
|
|
8884
8733
|
homogenousRows: boolean
|
|
8885
|
-
line_alignment: Align
|
|
8886
8734
|
lineAlignment: Align
|
|
8887
|
-
max_stride: number
|
|
8888
8735
|
maxStride: number
|
|
8889
8736
|
orientation: Orientation
|
|
8890
|
-
row_spacing: number
|
|
8891
8737
|
rowSpacing: number
|
|
8892
8738
|
|
|
8893
8739
|
// Owm methods of Mx-1.0.Mx.Grid
|
|
@@ -8918,7 +8764,7 @@ export interface Grid extends Atk.ImplementorIface, Clutter.Animatable, Clutter.
|
|
|
8918
8764
|
* into `value`.
|
|
8919
8765
|
* @param property_name the name of the property
|
|
8920
8766
|
*/
|
|
8921
|
-
get_property(property_name: string
|
|
8767
|
+
get_property(property_name: string): /* value */ any
|
|
8922
8768
|
|
|
8923
8769
|
// Overloads of get_property
|
|
8924
8770
|
|
|
@@ -8942,7 +8788,7 @@ export interface Grid extends Atk.ImplementorIface, Clutter.Animatable, Clutter.
|
|
|
8942
8788
|
* @param property_name the name of the property to get
|
|
8943
8789
|
* @param value return location for the property value
|
|
8944
8790
|
*/
|
|
8945
|
-
get_property(property_name: string
|
|
8791
|
+
get_property(property_name: string, value: any): void
|
|
8946
8792
|
/**
|
|
8947
8793
|
* Gets a property of an object.
|
|
8948
8794
|
*
|
|
@@ -8963,7 +8809,7 @@ export interface Grid extends Atk.ImplementorIface, Clutter.Animatable, Clutter.
|
|
|
8963
8809
|
* @param property_name the name of the property to get
|
|
8964
8810
|
* @param value return location for the property value
|
|
8965
8811
|
*/
|
|
8966
|
-
get_property(property_name: string
|
|
8812
|
+
get_property(property_name: string, value: any): void
|
|
8967
8813
|
|
|
8968
8814
|
// Class property signals of Mx-1.0.Mx.Grid
|
|
8969
8815
|
|
|
@@ -9301,8 +9147,6 @@ export module Icon {
|
|
|
9301
9147
|
|
|
9302
9148
|
// Own constructor properties of Mx-1.0.Mx.Icon
|
|
9303
9149
|
|
|
9304
|
-
icon_name?: string | null
|
|
9305
|
-
icon_size?: number | null
|
|
9306
9150
|
iconName?: string | null
|
|
9307
9151
|
iconSize?: number | null
|
|
9308
9152
|
}
|
|
@@ -9313,16 +9157,14 @@ export interface Icon extends Atk.ImplementorIface, Clutter.Animatable, Clutter.
|
|
|
9313
9157
|
|
|
9314
9158
|
// Own properties of Mx-1.0.Mx.Icon
|
|
9315
9159
|
|
|
9316
|
-
icon_name: string | null
|
|
9317
9160
|
iconName: string | null
|
|
9318
|
-
icon_size: number
|
|
9319
9161
|
iconSize: number
|
|
9320
9162
|
|
|
9321
9163
|
// Owm methods of Mx-1.0.Mx.Icon
|
|
9322
9164
|
|
|
9323
|
-
get_icon_name(): string
|
|
9165
|
+
get_icon_name(): string
|
|
9324
9166
|
get_icon_size(): number
|
|
9325
|
-
set_icon_name(icon_name: string
|
|
9167
|
+
set_icon_name(icon_name: string): void
|
|
9326
9168
|
set_icon_size(size: number): void
|
|
9327
9169
|
|
|
9328
9170
|
// Conflicting methods
|
|
@@ -9332,7 +9174,7 @@ export interface Icon extends Atk.ImplementorIface, Clutter.Animatable, Clutter.
|
|
|
9332
9174
|
* into `value`.
|
|
9333
9175
|
* @param property_name the name of the property
|
|
9334
9176
|
*/
|
|
9335
|
-
get_property(property_name: string
|
|
9177
|
+
get_property(property_name: string): /* value */ any
|
|
9336
9178
|
|
|
9337
9179
|
// Overloads of get_property
|
|
9338
9180
|
|
|
@@ -9356,7 +9198,7 @@ export interface Icon extends Atk.ImplementorIface, Clutter.Animatable, Clutter.
|
|
|
9356
9198
|
* @param property_name the name of the property to get
|
|
9357
9199
|
* @param value return location for the property value
|
|
9358
9200
|
*/
|
|
9359
|
-
get_property(property_name: string
|
|
9201
|
+
get_property(property_name: string, value: any): void
|
|
9360
9202
|
/**
|
|
9361
9203
|
* Gets a property of an object.
|
|
9362
9204
|
*
|
|
@@ -9377,7 +9219,7 @@ export interface Icon extends Atk.ImplementorIface, Clutter.Animatable, Clutter.
|
|
|
9377
9219
|
* @param property_name the name of the property to get
|
|
9378
9220
|
* @param value return location for the property value
|
|
9379
9221
|
*/
|
|
9380
|
-
get_property(property_name: string
|
|
9222
|
+
get_property(property_name: string, value: any): void
|
|
9381
9223
|
|
|
9382
9224
|
// Class property signals of Mx-1.0.Mx.Icon
|
|
9383
9225
|
|
|
@@ -9698,7 +9540,6 @@ export module IconTheme {
|
|
|
9698
9540
|
|
|
9699
9541
|
// Own constructor properties of Mx-1.0.Mx.IconTheme
|
|
9700
9542
|
|
|
9701
|
-
theme_name?: string | null
|
|
9702
9543
|
themeName?: string | null
|
|
9703
9544
|
}
|
|
9704
9545
|
|
|
@@ -9708,7 +9549,6 @@ export interface IconTheme {
|
|
|
9708
9549
|
|
|
9709
9550
|
// Own properties of Mx-1.0.Mx.IconTheme
|
|
9710
9551
|
|
|
9711
|
-
theme_name: string | null
|
|
9712
9552
|
themeName: string | null
|
|
9713
9553
|
|
|
9714
9554
|
// Own fields of Mx-1.0.Mx.IconTheme
|
|
@@ -9727,22 +9567,22 @@ export interface IconTheme {
|
|
|
9727
9567
|
* Get the value of the #MxIconTheme:theme-name property.
|
|
9728
9568
|
* @returns the current value of the "theme-name" property.
|
|
9729
9569
|
*/
|
|
9730
|
-
get_theme_name(): string
|
|
9731
|
-
has_icon(icon_name: string
|
|
9570
|
+
get_theme_name(): string
|
|
9571
|
+
has_icon(icon_name: string): boolean
|
|
9732
9572
|
/**
|
|
9733
9573
|
* If the icon is available, returns a #CoglHandle of the icon.
|
|
9734
9574
|
* @param icon_name The name of the icon
|
|
9735
9575
|
* @param size The desired size of the icon
|
|
9736
9576
|
* @returns a #CoglHandle of the icon, or %NULL.
|
|
9737
9577
|
*/
|
|
9738
|
-
lookup(icon_name: string
|
|
9578
|
+
lookup(icon_name: string, size: number): Cogl.Handle
|
|
9739
9579
|
/**
|
|
9740
9580
|
* If the icon is available, returns a #ClutterTexture of the icon.
|
|
9741
9581
|
* @param icon_name The name of the icon
|
|
9742
9582
|
* @param size The desired size of the icon
|
|
9743
9583
|
* @returns a #ClutterTexture of the icon, or %NULL.
|
|
9744
9584
|
*/
|
|
9745
|
-
lookup_texture(icon_name: string
|
|
9585
|
+
lookup_texture(icon_name: string, size: number): Clutter.Texture
|
|
9746
9586
|
/**
|
|
9747
9587
|
* Sets the directories the #MxIconTheme will search in to find icons.
|
|
9748
9588
|
* By default, it will look in the default system and local icon
|
|
@@ -9760,7 +9600,7 @@ export interface IconTheme {
|
|
|
9760
9600
|
* icon theme, this function can be called with a %NULL `theme_name` argument.
|
|
9761
9601
|
* @param theme_name the name of an icon theme to load, or %NULL
|
|
9762
9602
|
*/
|
|
9763
|
-
set_theme_name(theme_name: string
|
|
9603
|
+
set_theme_name(theme_name: string): void
|
|
9764
9604
|
|
|
9765
9605
|
// Class property signals of Mx-1.0.Mx.IconTheme
|
|
9766
9606
|
|
|
@@ -9835,13 +9675,6 @@ export module Image {
|
|
|
9835
9675
|
|
|
9836
9676
|
// Own constructor properties of Mx-1.0.Mx.Image
|
|
9837
9677
|
|
|
9838
|
-
allow_upscale?: boolean | null
|
|
9839
|
-
image_rotation?: number | null
|
|
9840
|
-
load_async?: boolean | null
|
|
9841
|
-
scale_height_threshold?: number | null
|
|
9842
|
-
scale_mode?: ImageScaleMode | null
|
|
9843
|
-
scale_width_threshold?: number | null
|
|
9844
|
-
transition_duration?: number | null
|
|
9845
9678
|
allowUpscale?: boolean | null
|
|
9846
9679
|
imageRotation?: number | null
|
|
9847
9680
|
loadAsync?: boolean | null
|
|
@@ -9857,19 +9690,12 @@ export interface Image extends Atk.ImplementorIface, Clutter.Animatable, Clutter
|
|
|
9857
9690
|
|
|
9858
9691
|
// Own properties of Mx-1.0.Mx.Image
|
|
9859
9692
|
|
|
9860
|
-
allow_upscale: boolean
|
|
9861
9693
|
allowUpscale: boolean
|
|
9862
|
-
image_rotation: number
|
|
9863
9694
|
imageRotation: number
|
|
9864
|
-
load_async: boolean
|
|
9865
9695
|
loadAsync: boolean
|
|
9866
|
-
scale_height_threshold: number
|
|
9867
9696
|
scaleHeightThreshold: number
|
|
9868
|
-
scale_mode: ImageScaleMode
|
|
9869
9697
|
scaleMode: ImageScaleMode
|
|
9870
|
-
scale_width_threshold: number
|
|
9871
9698
|
scaleWidthThreshold: number
|
|
9872
|
-
transition_duration: number
|
|
9873
9699
|
transitionDuration: number
|
|
9874
9700
|
|
|
9875
9701
|
// Owm methods of Mx-1.0.Mx.Image
|
|
@@ -9978,7 +9804,7 @@ export interface Image extends Atk.ImplementorIface, Clutter.Animatable, Clutter
|
|
|
9978
9804
|
* @param filename Filename to read the file from
|
|
9979
9805
|
* @returns #TRUE if the image was successfully updated
|
|
9980
9806
|
*/
|
|
9981
|
-
set_from_file(filename: string
|
|
9807
|
+
set_from_file(filename: string): boolean
|
|
9982
9808
|
/**
|
|
9983
9809
|
* Set the image data from an image file, and scale the image during loading.
|
|
9984
9810
|
* In case of failure, #FALSE is returned and `error` is set. The aspect ratio
|
|
@@ -9988,7 +9814,7 @@ export interface Image extends Atk.ImplementorIface, Clutter.Animatable, Clutter
|
|
|
9988
9814
|
* @param height Height to scale the image to, or -1
|
|
9989
9815
|
* @returns #TRUE if the image was successfully updated
|
|
9990
9816
|
*/
|
|
9991
|
-
set_from_file_at_size(filename: string
|
|
9817
|
+
set_from_file_at_size(filename: string, width: number, height: number): boolean
|
|
9992
9818
|
/**
|
|
9993
9819
|
* Set the MxImage:image-rotation property.
|
|
9994
9820
|
* @param rotation Rotation angle in degrees
|
|
@@ -10043,7 +9869,7 @@ export interface Image extends Atk.ImplementorIface, Clutter.Animatable, Clutter
|
|
|
10043
9869
|
* into `value`.
|
|
10044
9870
|
* @param property_name the name of the property
|
|
10045
9871
|
*/
|
|
10046
|
-
get_property(property_name: string
|
|
9872
|
+
get_property(property_name: string): /* value */ any
|
|
10047
9873
|
|
|
10048
9874
|
// Overloads of get_property
|
|
10049
9875
|
|
|
@@ -10067,7 +9893,7 @@ export interface Image extends Atk.ImplementorIface, Clutter.Animatable, Clutter
|
|
|
10067
9893
|
* @param property_name the name of the property to get
|
|
10068
9894
|
* @param value return location for the property value
|
|
10069
9895
|
*/
|
|
10070
|
-
get_property(property_name: string
|
|
9896
|
+
get_property(property_name: string, value: any): void
|
|
10071
9897
|
/**
|
|
10072
9898
|
* Gets a property of an object.
|
|
10073
9899
|
*
|
|
@@ -10088,7 +9914,7 @@ export interface Image extends Atk.ImplementorIface, Clutter.Animatable, Clutter
|
|
|
10088
9914
|
* @param property_name the name of the property to get
|
|
10089
9915
|
* @param value return location for the property value
|
|
10090
9916
|
*/
|
|
10091
|
-
get_property(property_name: string
|
|
9917
|
+
get_property(property_name: string, value: any): void
|
|
10092
9918
|
|
|
10093
9919
|
// Own virtual methods of Mx-1.0.Mx.Image
|
|
10094
9920
|
|
|
@@ -10439,9 +10265,8 @@ export module ItemView {
|
|
|
10439
10265
|
// Own constructor properties of Mx-1.0.Mx.ItemView
|
|
10440
10266
|
|
|
10441
10267
|
factory?: GObject.Object | null
|
|
10442
|
-
item_type?: GObject.GType | null
|
|
10443
|
-
model?: Clutter.Model | null
|
|
10444
10268
|
itemType?: GObject.GType | null
|
|
10269
|
+
model?: Clutter.Model | null
|
|
10445
10270
|
}
|
|
10446
10271
|
|
|
10447
10272
|
}
|
|
@@ -10451,7 +10276,6 @@ export interface ItemView extends Atk.ImplementorIface, Clutter.Animatable, Clut
|
|
|
10451
10276
|
// Own properties of Mx-1.0.Mx.ItemView
|
|
10452
10277
|
|
|
10453
10278
|
factory: GObject.Object
|
|
10454
|
-
item_type: GObject.GType
|
|
10455
10279
|
itemType: GObject.GType
|
|
10456
10280
|
model: Clutter.Model
|
|
10457
10281
|
|
|
@@ -10463,7 +10287,7 @@ export interface ItemView extends Atk.ImplementorIface, Clutter.Animatable, Clut
|
|
|
10463
10287
|
* @param attribute Name of the attribute
|
|
10464
10288
|
* @param column Column number
|
|
10465
10289
|
*/
|
|
10466
|
-
add_attribute(attribute: string
|
|
10290
|
+
add_attribute(attribute: string, column: number): void
|
|
10467
10291
|
/**
|
|
10468
10292
|
* Freeze the view. This means that the view will not act on changes to the
|
|
10469
10293
|
* model until it is thawed. Call #mx_item_view_thaw to thaw the view
|
|
@@ -10513,7 +10337,7 @@ export interface ItemView extends Atk.ImplementorIface, Clutter.Animatable, Clut
|
|
|
10513
10337
|
* into `value`.
|
|
10514
10338
|
* @param property_name the name of the property
|
|
10515
10339
|
*/
|
|
10516
|
-
get_property(property_name: string
|
|
10340
|
+
get_property(property_name: string): /* value */ any
|
|
10517
10341
|
|
|
10518
10342
|
// Overloads of get_property
|
|
10519
10343
|
|
|
@@ -10537,7 +10361,7 @@ export interface ItemView extends Atk.ImplementorIface, Clutter.Animatable, Clut
|
|
|
10537
10361
|
* @param property_name the name of the property to get
|
|
10538
10362
|
* @param value return location for the property value
|
|
10539
10363
|
*/
|
|
10540
|
-
get_property(property_name: string
|
|
10364
|
+
get_property(property_name: string, value: any): void
|
|
10541
10365
|
/**
|
|
10542
10366
|
* Gets a property of an object.
|
|
10543
10367
|
*
|
|
@@ -10558,7 +10382,7 @@ export interface ItemView extends Atk.ImplementorIface, Clutter.Animatable, Clut
|
|
|
10558
10382
|
* @param property_name the name of the property to get
|
|
10559
10383
|
* @param value return location for the property value
|
|
10560
10384
|
*/
|
|
10561
|
-
get_property(property_name: string
|
|
10385
|
+
get_property(property_name: string, value: any): void
|
|
10562
10386
|
|
|
10563
10387
|
// Class property signals of Mx-1.0.Mx.ItemView
|
|
10564
10388
|
|
|
@@ -10915,20 +10739,13 @@ export module KineticScrollView {
|
|
|
10915
10739
|
|
|
10916
10740
|
// Own constructor properties of Mx-1.0.Mx.KineticScrollView
|
|
10917
10741
|
|
|
10918
|
-
acceleration_factor?: number | null
|
|
10919
|
-
clamp_duration?: number | null
|
|
10920
|
-
clamp_mode?: number | null
|
|
10921
|
-
clamp_to_center?: boolean | null
|
|
10922
|
-
deceleration?: number | null
|
|
10923
|
-
mouse_button?: number | null
|
|
10924
|
-
overshoot?: number | null
|
|
10925
|
-
scroll_policy?: ScrollPolicy | null
|
|
10926
|
-
use_captured?: boolean | null
|
|
10927
10742
|
accelerationFactor?: number | null
|
|
10928
10743
|
clampDuration?: number | null
|
|
10929
10744
|
clampMode?: number | null
|
|
10930
10745
|
clampToCenter?: boolean | null
|
|
10746
|
+
deceleration?: number | null
|
|
10931
10747
|
mouseButton?: number | null
|
|
10748
|
+
overshoot?: number | null
|
|
10932
10749
|
scrollPolicy?: ScrollPolicy | null
|
|
10933
10750
|
useCaptured?: boolean | null
|
|
10934
10751
|
}
|
|
@@ -10939,29 +10756,20 @@ export interface KineticScrollView extends Atk.ImplementorIface, Clutter.Animata
|
|
|
10939
10756
|
|
|
10940
10757
|
// Own properties of Mx-1.0.Mx.KineticScrollView
|
|
10941
10758
|
|
|
10942
|
-
acceleration_factor: number
|
|
10943
10759
|
accelerationFactor: number
|
|
10944
|
-
clamp_duration: number
|
|
10945
10760
|
clampDuration: number
|
|
10946
|
-
clamp_mode: number
|
|
10947
10761
|
clampMode: number
|
|
10948
|
-
clamp_to_center: boolean
|
|
10949
10762
|
clampToCenter: boolean
|
|
10950
10763
|
deceleration: number
|
|
10951
|
-
mouse_button: number
|
|
10952
10764
|
mouseButton: number
|
|
10953
10765
|
overshoot: number
|
|
10954
|
-
scroll_policy: ScrollPolicy
|
|
10955
10766
|
scrollPolicy: ScrollPolicy
|
|
10956
10767
|
readonly state: KineticScrollViewState
|
|
10957
|
-
use_captured: boolean
|
|
10958
10768
|
useCaptured: boolean
|
|
10959
10769
|
|
|
10960
10770
|
// Conflicting properties
|
|
10961
10771
|
|
|
10962
|
-
x_align: any
|
|
10963
10772
|
xAlign: any
|
|
10964
|
-
y_align: any
|
|
10965
10773
|
yAlign: any
|
|
10966
10774
|
|
|
10967
10775
|
// Owm methods of Mx-1.0.Mx.KineticScrollView
|
|
@@ -11079,7 +10887,7 @@ export interface KineticScrollView extends Atk.ImplementorIface, Clutter.Animata
|
|
|
11079
10887
|
* into `value`.
|
|
11080
10888
|
* @param property_name the name of the property
|
|
11081
10889
|
*/
|
|
11082
|
-
get_property(property_name: string
|
|
10890
|
+
get_property(property_name: string): /* value */ any
|
|
11083
10891
|
|
|
11084
10892
|
// Overloads of get_property
|
|
11085
10893
|
|
|
@@ -11103,7 +10911,7 @@ export interface KineticScrollView extends Atk.ImplementorIface, Clutter.Animata
|
|
|
11103
10911
|
* @param property_name the name of the property to get
|
|
11104
10912
|
* @param value return location for the property value
|
|
11105
10913
|
*/
|
|
11106
|
-
get_property(property_name: string
|
|
10914
|
+
get_property(property_name: string, value: any): void
|
|
11107
10915
|
/**
|
|
11108
10916
|
* Gets a property of an object.
|
|
11109
10917
|
*
|
|
@@ -11124,7 +10932,7 @@ export interface KineticScrollView extends Atk.ImplementorIface, Clutter.Animata
|
|
|
11124
10932
|
* @param property_name the name of the property to get
|
|
11125
10933
|
* @param value return location for the property value
|
|
11126
10934
|
*/
|
|
11127
|
-
get_property(property_name: string
|
|
10935
|
+
get_property(property_name: string, value: any): void
|
|
11128
10936
|
|
|
11129
10937
|
// Class property signals of Mx-1.0.Mx.KineticScrollView
|
|
11130
10938
|
|
|
@@ -11484,22 +11292,6 @@ export module Label {
|
|
|
11484
11292
|
|
|
11485
11293
|
// Own constructor properties of Mx-1.0.Mx.Label
|
|
11486
11294
|
|
|
11487
|
-
fade_out?: boolean | null
|
|
11488
|
-
/**
|
|
11489
|
-
* Whether to wrap the lines of #MxLabel:text if the contents
|
|
11490
|
-
* exceed the available allocation.
|
|
11491
|
-
*/
|
|
11492
|
-
line_wrap?: boolean | null
|
|
11493
|
-
/**
|
|
11494
|
-
* Show a tooltip when there is not enough space to display the text. If set
|
|
11495
|
-
* to %TRUE, this will also cause the #ClutterActor:reactive property to be
|
|
11496
|
-
* enabled.
|
|
11497
|
-
*/
|
|
11498
|
-
show_tooltip?: boolean | null
|
|
11499
|
-
text?: string | null
|
|
11500
|
-
use_markup?: boolean | null
|
|
11501
|
-
x_align: any
|
|
11502
|
-
y_align: any
|
|
11503
11295
|
fadeOut?: boolean | null
|
|
11504
11296
|
/**
|
|
11505
11297
|
* Whether to wrap the lines of #MxLabel:text if the contents
|
|
@@ -11512,6 +11304,7 @@ export module Label {
|
|
|
11512
11304
|
* enabled.
|
|
11513
11305
|
*/
|
|
11514
11306
|
showTooltip?: boolean | null
|
|
11307
|
+
text?: string | null
|
|
11515
11308
|
useMarkup?: boolean | null
|
|
11516
11309
|
xAlign: any
|
|
11517
11310
|
yAlign: any
|
|
@@ -11523,21 +11316,13 @@ export interface Label extends Atk.ImplementorIface, Clutter.Animatable, Clutter
|
|
|
11523
11316
|
|
|
11524
11317
|
// Own properties of Mx-1.0.Mx.Label
|
|
11525
11318
|
|
|
11526
|
-
readonly clutter_text: Clutter.Text
|
|
11527
11319
|
readonly clutterText: Clutter.Text
|
|
11528
|
-
fade_out: boolean
|
|
11529
11320
|
fadeOut: boolean
|
|
11530
|
-
/**
|
|
11531
|
-
* Whether to wrap the lines of #MxLabel:text if the contents
|
|
11532
|
-
* exceed the available allocation.
|
|
11533
|
-
*/
|
|
11534
|
-
line_wrap: boolean
|
|
11535
11321
|
/**
|
|
11536
11322
|
* Whether to wrap the lines of #MxLabel:text if the contents
|
|
11537
11323
|
* exceed the available allocation.
|
|
11538
11324
|
*/
|
|
11539
11325
|
lineWrap: boolean
|
|
11540
|
-
// Has conflict: show_tooltip: boolean
|
|
11541
11326
|
/**
|
|
11542
11327
|
* Show a tooltip when there is not enough space to display the text. If set
|
|
11543
11328
|
* to %TRUE, this will also cause the #ClutterActor:reactive property to be
|
|
@@ -11545,11 +11330,8 @@ export interface Label extends Atk.ImplementorIface, Clutter.Animatable, Clutter
|
|
|
11545
11330
|
*/
|
|
11546
11331
|
showTooltip: boolean
|
|
11547
11332
|
text: string | null
|
|
11548
|
-
use_markup: boolean
|
|
11549
11333
|
useMarkup: boolean
|
|
11550
|
-
x_align: any
|
|
11551
11334
|
xAlign: any
|
|
11552
|
-
y_align: any
|
|
11553
11335
|
yAlign: any
|
|
11554
11336
|
|
|
11555
11337
|
// Owm methods of Mx-1.0.Mx.Label
|
|
@@ -11579,7 +11361,7 @@ export interface Label extends Atk.ImplementorIface, Clutter.Animatable, Clutter
|
|
|
11579
11361
|
* Get the text displayed on the label
|
|
11580
11362
|
* @returns the text for the label. This must not be freed by the application
|
|
11581
11363
|
*/
|
|
11582
|
-
get_text(): string
|
|
11364
|
+
get_text(): string
|
|
11583
11365
|
/**
|
|
11584
11366
|
* Determines whether the text of the label is being treated as Pango markup.
|
|
11585
11367
|
* @returns %TRUE if the text of the label is treated as Pango markup, %FALSE otherwise.
|
|
@@ -11626,7 +11408,7 @@ export interface Label extends Atk.ImplementorIface, Clutter.Animatable, Clutter
|
|
|
11626
11408
|
* Sets the text displayed on the label
|
|
11627
11409
|
* @param text text to set the label to
|
|
11628
11410
|
*/
|
|
11629
|
-
set_text(text: string
|
|
11411
|
+
set_text(text: string): void
|
|
11630
11412
|
/**
|
|
11631
11413
|
* Sets whether the text of the label should be treated as Pango markup.
|
|
11632
11414
|
* @param use_markup %TRUE to use Pango markup, %FALSE otherwise
|
|
@@ -11664,7 +11446,7 @@ export interface Label extends Atk.ImplementorIface, Clutter.Animatable, Clutter
|
|
|
11664
11446
|
* into `value`.
|
|
11665
11447
|
* @param property_name the name of the property
|
|
11666
11448
|
*/
|
|
11667
|
-
get_property(property_name: string
|
|
11449
|
+
get_property(property_name: string): /* value */ any
|
|
11668
11450
|
|
|
11669
11451
|
// Overloads of get_property
|
|
11670
11452
|
|
|
@@ -11688,7 +11470,7 @@ export interface Label extends Atk.ImplementorIface, Clutter.Animatable, Clutter
|
|
|
11688
11470
|
* @param property_name the name of the property to get
|
|
11689
11471
|
* @param value return location for the property value
|
|
11690
11472
|
*/
|
|
11691
|
-
get_property(property_name: string
|
|
11473
|
+
get_property(property_name: string, value: any): void
|
|
11692
11474
|
/**
|
|
11693
11475
|
* Gets a property of an object.
|
|
11694
11476
|
*
|
|
@@ -11709,7 +11491,7 @@ export interface Label extends Atk.ImplementorIface, Clutter.Animatable, Clutter
|
|
|
11709
11491
|
* @param property_name the name of the property to get
|
|
11710
11492
|
* @param value return location for the property value
|
|
11711
11493
|
*/
|
|
11712
|
-
get_property(property_name: string
|
|
11494
|
+
get_property(property_name: string, value: any): void
|
|
11713
11495
|
|
|
11714
11496
|
// Class property signals of Mx-1.0.Mx.Label
|
|
11715
11497
|
|
|
@@ -12037,7 +11819,7 @@ export class Label extends Widget {
|
|
|
12037
11819
|
* @param text text to set the label to
|
|
12038
11820
|
* @returns a new #MxLabel
|
|
12039
11821
|
*/
|
|
12040
|
-
static new_with_text(text: string
|
|
11822
|
+
static new_with_text(text: string): Label
|
|
12041
11823
|
_init(config?: Label.ConstructorProperties): void
|
|
12042
11824
|
}
|
|
12043
11825
|
|
|
@@ -12050,9 +11832,8 @@ export module ListView {
|
|
|
12050
11832
|
// Own constructor properties of Mx-1.0.Mx.ListView
|
|
12051
11833
|
|
|
12052
11834
|
factory?: GObject.Object | null
|
|
12053
|
-
item_type?: GObject.GType | null
|
|
12054
|
-
model?: Clutter.Model | null
|
|
12055
11835
|
itemType?: GObject.GType | null
|
|
11836
|
+
model?: Clutter.Model | null
|
|
12056
11837
|
}
|
|
12057
11838
|
|
|
12058
11839
|
}
|
|
@@ -12062,7 +11843,6 @@ export interface ListView extends Atk.ImplementorIface, Clutter.Animatable, Clut
|
|
|
12062
11843
|
// Own properties of Mx-1.0.Mx.ListView
|
|
12063
11844
|
|
|
12064
11845
|
factory: GObject.Object
|
|
12065
|
-
item_type: GObject.GType
|
|
12066
11846
|
itemType: GObject.GType
|
|
12067
11847
|
model: Clutter.Model
|
|
12068
11848
|
|
|
@@ -12074,7 +11854,7 @@ export interface ListView extends Atk.ImplementorIface, Clutter.Animatable, Clut
|
|
|
12074
11854
|
* @param attribute Name of the attribute
|
|
12075
11855
|
* @param column Column number
|
|
12076
11856
|
*/
|
|
12077
|
-
add_attribute(attribute: string
|
|
11857
|
+
add_attribute(attribute: string, column: number): void
|
|
12078
11858
|
/**
|
|
12079
11859
|
* Freeze the view. This means that the view will not act on changes to the
|
|
12080
11860
|
* model until it is thawed. Call #mx_list_view_thaw to thaw the view.
|
|
@@ -12124,7 +11904,7 @@ export interface ListView extends Atk.ImplementorIface, Clutter.Animatable, Clut
|
|
|
12124
11904
|
* into `value`.
|
|
12125
11905
|
* @param property_name the name of the property
|
|
12126
11906
|
*/
|
|
12127
|
-
get_property(property_name: string
|
|
11907
|
+
get_property(property_name: string): /* value */ any
|
|
12128
11908
|
|
|
12129
11909
|
// Overloads of get_property
|
|
12130
11910
|
|
|
@@ -12148,7 +11928,7 @@ export interface ListView extends Atk.ImplementorIface, Clutter.Animatable, Clut
|
|
|
12148
11928
|
* @param property_name the name of the property to get
|
|
12149
11929
|
* @param value return location for the property value
|
|
12150
11930
|
*/
|
|
12151
|
-
get_property(property_name: string
|
|
11931
|
+
get_property(property_name: string, value: any): void
|
|
12152
11932
|
/**
|
|
12153
11933
|
* Gets a property of an object.
|
|
12154
11934
|
*
|
|
@@ -12169,7 +11949,7 @@ export interface ListView extends Atk.ImplementorIface, Clutter.Animatable, Clut
|
|
|
12169
11949
|
* @param property_name the name of the property to get
|
|
12170
11950
|
* @param value return location for the property value
|
|
12171
11951
|
*/
|
|
12172
|
-
get_property(property_name: string
|
|
11952
|
+
get_property(property_name: string, value: any): void
|
|
12173
11953
|
/**
|
|
12174
11954
|
* Adds a #ClutterActor to `container`. This function will emit the
|
|
12175
11955
|
* "actor-added" signal. The actor should be parented to
|
|
@@ -12611,7 +12391,7 @@ export interface Menu extends Atk.ImplementorIface, Clutter.Animatable, Clutter.
|
|
|
12611
12391
|
* into `value`.
|
|
12612
12392
|
* @param property_name the name of the property
|
|
12613
12393
|
*/
|
|
12614
|
-
get_property(property_name: string
|
|
12394
|
+
get_property(property_name: string): /* value */ any
|
|
12615
12395
|
|
|
12616
12396
|
// Overloads of get_property
|
|
12617
12397
|
|
|
@@ -12635,7 +12415,7 @@ export interface Menu extends Atk.ImplementorIface, Clutter.Animatable, Clutter.
|
|
|
12635
12415
|
* @param property_name the name of the property to get
|
|
12636
12416
|
* @param value return location for the property value
|
|
12637
12417
|
*/
|
|
12638
|
-
get_property(property_name: string
|
|
12418
|
+
get_property(property_name: string, value: any): void
|
|
12639
12419
|
/**
|
|
12640
12420
|
* Gets a property of an object.
|
|
12641
12421
|
*
|
|
@@ -12656,7 +12436,7 @@ export interface Menu extends Atk.ImplementorIface, Clutter.Animatable, Clutter.
|
|
|
12656
12436
|
* @param property_name the name of the property to get
|
|
12657
12437
|
* @param value return location for the property value
|
|
12658
12438
|
*/
|
|
12659
|
-
get_property(property_name: string
|
|
12439
|
+
get_property(property_name: string, value: any): void
|
|
12660
12440
|
|
|
12661
12441
|
// Own virtual methods of Mx-1.0.Mx.Menu
|
|
12662
12442
|
|
|
@@ -12981,8 +12761,6 @@ export module Notebook {
|
|
|
12981
12761
|
|
|
12982
12762
|
// Own constructor properties of Mx-1.0.Mx.Notebook
|
|
12983
12763
|
|
|
12984
|
-
current_page?: Clutter.Actor | null
|
|
12985
|
-
enable_gestures?: boolean | null
|
|
12986
12764
|
currentPage?: Clutter.Actor | null
|
|
12987
12765
|
enableGestures?: boolean | null
|
|
12988
12766
|
}
|
|
@@ -12993,9 +12771,7 @@ export interface Notebook extends Atk.ImplementorIface, Clutter.Animatable, Clut
|
|
|
12993
12771
|
|
|
12994
12772
|
// Own properties of Mx-1.0.Mx.Notebook
|
|
12995
12773
|
|
|
12996
|
-
current_page: Clutter.Actor
|
|
12997
12774
|
currentPage: Clutter.Actor
|
|
12998
|
-
enable_gestures: boolean
|
|
12999
12775
|
enableGestures: boolean
|
|
13000
12776
|
|
|
13001
12777
|
// Own fields of Mx-1.0.Mx.Notebook
|
|
@@ -13021,7 +12797,7 @@ export interface Notebook extends Atk.ImplementorIface, Clutter.Animatable, Clut
|
|
|
13021
12797
|
* into `value`.
|
|
13022
12798
|
* @param property_name the name of the property
|
|
13023
12799
|
*/
|
|
13024
|
-
get_property(property_name: string
|
|
12800
|
+
get_property(property_name: string): /* value */ any
|
|
13025
12801
|
|
|
13026
12802
|
// Overloads of get_property
|
|
13027
12803
|
|
|
@@ -13045,7 +12821,7 @@ export interface Notebook extends Atk.ImplementorIface, Clutter.Animatable, Clut
|
|
|
13045
12821
|
* @param property_name the name of the property to get
|
|
13046
12822
|
* @param value return location for the property value
|
|
13047
12823
|
*/
|
|
13048
|
-
get_property(property_name: string
|
|
12824
|
+
get_property(property_name: string, value: any): void
|
|
13049
12825
|
/**
|
|
13050
12826
|
* Gets a property of an object.
|
|
13051
12827
|
*
|
|
@@ -13066,7 +12842,7 @@ export interface Notebook extends Atk.ImplementorIface, Clutter.Animatable, Clut
|
|
|
13066
12842
|
* @param property_name the name of the property to get
|
|
13067
12843
|
* @param value return location for the property value
|
|
13068
12844
|
*/
|
|
13069
|
-
get_property(property_name: string
|
|
12845
|
+
get_property(property_name: string, value: any): void
|
|
13070
12846
|
|
|
13071
12847
|
// Class property signals of Mx-1.0.Mx.Notebook
|
|
13072
12848
|
|
|
@@ -13377,13 +13153,9 @@ export module Offscreen {
|
|
|
13377
13153
|
|
|
13378
13154
|
// Own constructor properties of Mx-1.0.Mx.Offscreen
|
|
13379
13155
|
|
|
13380
|
-
accumulation_enabled?: boolean | null
|
|
13381
|
-
auto_update?: boolean | null
|
|
13382
|
-
child?: Clutter.Actor | null
|
|
13383
|
-
pick_child?: boolean | null
|
|
13384
|
-
redirect_enabled?: boolean | null
|
|
13385
13156
|
accumulationEnabled?: boolean | null
|
|
13386
13157
|
autoUpdate?: boolean | null
|
|
13158
|
+
child?: Clutter.Actor | null
|
|
13387
13159
|
pickChild?: boolean | null
|
|
13388
13160
|
redirectEnabled?: boolean | null
|
|
13389
13161
|
}
|
|
@@ -13394,20 +13166,15 @@ export interface Offscreen extends Atk.ImplementorIface, Clutter.Animatable, Clu
|
|
|
13394
13166
|
|
|
13395
13167
|
// Own properties of Mx-1.0.Mx.Offscreen
|
|
13396
13168
|
|
|
13397
|
-
accumulation_enabled: boolean
|
|
13398
13169
|
accumulationEnabled: boolean
|
|
13399
|
-
readonly accumulation_material: any
|
|
13400
13170
|
readonly accumulationMaterial: any
|
|
13401
|
-
auto_update: boolean
|
|
13402
13171
|
autoUpdate: boolean
|
|
13403
13172
|
/**
|
|
13404
13173
|
* The off-screen buffer used to draw the child.
|
|
13405
13174
|
*/
|
|
13406
13175
|
readonly buffer: any
|
|
13407
13176
|
child: Clutter.Actor
|
|
13408
|
-
pick_child: boolean
|
|
13409
13177
|
pickChild: boolean
|
|
13410
|
-
redirect_enabled: boolean
|
|
13411
13178
|
redirectEnabled: boolean
|
|
13412
13179
|
|
|
13413
13180
|
// Own fields of Mx-1.0.Mx.Offscreen
|
|
@@ -13847,9 +13614,8 @@ export module PathBar {
|
|
|
13847
13614
|
|
|
13848
13615
|
// Own constructor properties of Mx-1.0.Mx.PathBar
|
|
13849
13616
|
|
|
13850
|
-
clear_on_change?: boolean | null
|
|
13851
|
-
editable?: boolean | null
|
|
13852
13617
|
clearOnChange?: boolean | null
|
|
13618
|
+
editable?: boolean | null
|
|
13853
13619
|
}
|
|
13854
13620
|
|
|
13855
13621
|
}
|
|
@@ -13858,7 +13624,6 @@ export interface PathBar extends Atk.ImplementorIface, Clutter.Animatable, Clutt
|
|
|
13858
13624
|
|
|
13859
13625
|
// Own properties of Mx-1.0.Mx.PathBar
|
|
13860
13626
|
|
|
13861
|
-
clear_on_change: boolean
|
|
13862
13627
|
clearOnChange: boolean
|
|
13863
13628
|
editable: boolean
|
|
13864
13629
|
readonly entry: Entry
|
|
@@ -13890,11 +13655,11 @@ export interface PathBar extends Atk.ImplementorIface, Clutter.Animatable, Clutt
|
|
|
13890
13655
|
* @returns MxEntry *
|
|
13891
13656
|
*/
|
|
13892
13657
|
get_entry(): Entry
|
|
13893
|
-
get_label(level: number): string
|
|
13658
|
+
get_label(level: number): string
|
|
13894
13659
|
get_level(): number
|
|
13895
|
-
get_text(): string
|
|
13660
|
+
get_text(): string
|
|
13896
13661
|
pop(): number
|
|
13897
|
-
push(name: string
|
|
13662
|
+
push(name: string): number
|
|
13898
13663
|
/**
|
|
13899
13664
|
* Set theh value of the #MxPathBar:clear-on-change property
|
|
13900
13665
|
* @param clear_on_change the new value of the property
|
|
@@ -13910,12 +13675,12 @@ export interface PathBar extends Atk.ImplementorIface, Clutter.Animatable, Clutt
|
|
|
13910
13675
|
* @param level A #gint
|
|
13911
13676
|
* @param label A #gchar
|
|
13912
13677
|
*/
|
|
13913
|
-
set_label(level: number, label: string
|
|
13678
|
+
set_label(level: number, label: string): void
|
|
13914
13679
|
/**
|
|
13915
13680
|
* Set the text in the editable area of the #MxPathBar
|
|
13916
13681
|
* @param text string to set the editable text to.
|
|
13917
13682
|
*/
|
|
13918
|
-
set_text(text: string
|
|
13683
|
+
set_text(text: string): void
|
|
13919
13684
|
|
|
13920
13685
|
// Conflicting methods
|
|
13921
13686
|
|
|
@@ -13924,7 +13689,7 @@ export interface PathBar extends Atk.ImplementorIface, Clutter.Animatable, Clutt
|
|
|
13924
13689
|
* into `value`.
|
|
13925
13690
|
* @param property_name the name of the property
|
|
13926
13691
|
*/
|
|
13927
|
-
get_property(property_name: string
|
|
13692
|
+
get_property(property_name: string): /* value */ any
|
|
13928
13693
|
|
|
13929
13694
|
// Overloads of get_property
|
|
13930
13695
|
|
|
@@ -13948,7 +13713,7 @@ export interface PathBar extends Atk.ImplementorIface, Clutter.Animatable, Clutt
|
|
|
13948
13713
|
* @param property_name the name of the property to get
|
|
13949
13714
|
* @param value return location for the property value
|
|
13950
13715
|
*/
|
|
13951
|
-
get_property(property_name: string
|
|
13716
|
+
get_property(property_name: string, value: any): void
|
|
13952
13717
|
/**
|
|
13953
13718
|
* Gets a property of an object.
|
|
13954
13719
|
*
|
|
@@ -13969,7 +13734,7 @@ export interface PathBar extends Atk.ImplementorIface, Clutter.Animatable, Clutt
|
|
|
13969
13734
|
* @param property_name the name of the property to get
|
|
13970
13735
|
* @param value return location for the property value
|
|
13971
13736
|
*/
|
|
13972
|
-
get_property(property_name: string
|
|
13737
|
+
get_property(property_name: string, value: any): void
|
|
13973
13738
|
|
|
13974
13739
|
// Class property signals of Mx-1.0.Mx.PathBar
|
|
13975
13740
|
|
|
@@ -14317,7 +14082,7 @@ export interface ProgressBar extends Atk.ImplementorIface, Clutter.Animatable, C
|
|
|
14317
14082
|
* into `value`.
|
|
14318
14083
|
* @param property_name the name of the property
|
|
14319
14084
|
*/
|
|
14320
|
-
get_property(property_name: string
|
|
14085
|
+
get_property(property_name: string): /* value */ any
|
|
14321
14086
|
|
|
14322
14087
|
// Overloads of get_property
|
|
14323
14088
|
|
|
@@ -14341,7 +14106,7 @@ export interface ProgressBar extends Atk.ImplementorIface, Clutter.Animatable, C
|
|
|
14341
14106
|
* @param property_name the name of the property to get
|
|
14342
14107
|
* @param value return location for the property value
|
|
14343
14108
|
*/
|
|
14344
|
-
get_property(property_name: string
|
|
14109
|
+
get_property(property_name: string, value: any): void
|
|
14345
14110
|
/**
|
|
14346
14111
|
* Gets a property of an object.
|
|
14347
14112
|
*
|
|
@@ -14362,7 +14127,7 @@ export interface ProgressBar extends Atk.ImplementorIface, Clutter.Animatable, C
|
|
|
14362
14127
|
* @param property_name the name of the property to get
|
|
14363
14128
|
* @param value return location for the property value
|
|
14364
14129
|
*/
|
|
14365
|
-
get_property(property_name: string
|
|
14130
|
+
get_property(property_name: string, value: any): void
|
|
14366
14131
|
|
|
14367
14132
|
// Class property signals of Mx-1.0.Mx.ProgressBar
|
|
14368
14133
|
|
|
@@ -14712,9 +14477,7 @@ export interface ScrollBar extends Atk.ImplementorIface, Clutter.Animatable, Clu
|
|
|
14712
14477
|
|
|
14713
14478
|
// Conflicting properties
|
|
14714
14479
|
|
|
14715
|
-
x_align: any
|
|
14716
14480
|
xAlign: any
|
|
14717
|
-
y_align: any
|
|
14718
14481
|
yAlign: any
|
|
14719
14482
|
|
|
14720
14483
|
// Owm methods of Mx-1.0.Mx.ScrollBar
|
|
@@ -14736,7 +14499,7 @@ export interface ScrollBar extends Atk.ImplementorIface, Clutter.Animatable, Clu
|
|
|
14736
14499
|
* into `value`.
|
|
14737
14500
|
* @param property_name the name of the property
|
|
14738
14501
|
*/
|
|
14739
|
-
get_property(property_name: string
|
|
14502
|
+
get_property(property_name: string): /* value */ any
|
|
14740
14503
|
|
|
14741
14504
|
// Overloads of get_property
|
|
14742
14505
|
|
|
@@ -14760,7 +14523,7 @@ export interface ScrollBar extends Atk.ImplementorIface, Clutter.Animatable, Clu
|
|
|
14760
14523
|
* @param property_name the name of the property to get
|
|
14761
14524
|
* @param value return location for the property value
|
|
14762
14525
|
*/
|
|
14763
|
-
get_property(property_name: string
|
|
14526
|
+
get_property(property_name: string, value: any): void
|
|
14764
14527
|
/**
|
|
14765
14528
|
* Gets a property of an object.
|
|
14766
14529
|
*
|
|
@@ -14781,7 +14544,7 @@ export interface ScrollBar extends Atk.ImplementorIface, Clutter.Animatable, Clu
|
|
|
14781
14544
|
* @param property_name the name of the property to get
|
|
14782
14545
|
* @param value return location for the property value
|
|
14783
14546
|
*/
|
|
14784
|
-
get_property(property_name: string
|
|
14547
|
+
get_property(property_name: string, value: any): void
|
|
14785
14548
|
|
|
14786
14549
|
// Own virtual methods of Mx-1.0.Mx.ScrollBar
|
|
14787
14550
|
|
|
@@ -15132,9 +14895,6 @@ export module ScrollView {
|
|
|
15132
14895
|
|
|
15133
14896
|
// Own constructor properties of Mx-1.0.Mx.ScrollView
|
|
15134
14897
|
|
|
15135
|
-
enable_gestures?: boolean | null
|
|
15136
|
-
enable_mouse_scrolling?: boolean | null
|
|
15137
|
-
scroll_policy?: ScrollPolicy | null
|
|
15138
14898
|
enableGestures?: boolean | null
|
|
15139
14899
|
enableMouseScrolling?: boolean | null
|
|
15140
14900
|
scrollPolicy?: ScrollPolicy | null
|
|
@@ -15146,18 +14906,13 @@ export interface ScrollView extends Atk.ImplementorIface, Clutter.Animatable, Cl
|
|
|
15146
14906
|
|
|
15147
14907
|
// Own properties of Mx-1.0.Mx.ScrollView
|
|
15148
14908
|
|
|
15149
|
-
enable_gestures: boolean
|
|
15150
14909
|
enableGestures: boolean
|
|
15151
|
-
enable_mouse_scrolling: boolean
|
|
15152
14910
|
enableMouseScrolling: boolean
|
|
15153
|
-
scroll_policy: ScrollPolicy
|
|
15154
14911
|
scrollPolicy: ScrollPolicy
|
|
15155
14912
|
|
|
15156
14913
|
// Conflicting properties
|
|
15157
14914
|
|
|
15158
|
-
x_align: any
|
|
15159
14915
|
xAlign: any
|
|
15160
|
-
y_align: any
|
|
15161
14916
|
yAlign: any
|
|
15162
14917
|
|
|
15163
14918
|
// Owm methods of Mx-1.0.Mx.ScrollView
|
|
@@ -15182,7 +14937,7 @@ export interface ScrollView extends Atk.ImplementorIface, Clutter.Animatable, Cl
|
|
|
15182
14937
|
* into `value`.
|
|
15183
14938
|
* @param property_name the name of the property
|
|
15184
14939
|
*/
|
|
15185
|
-
get_property(property_name: string
|
|
14940
|
+
get_property(property_name: string): /* value */ any
|
|
15186
14941
|
|
|
15187
14942
|
// Overloads of get_property
|
|
15188
14943
|
|
|
@@ -15206,7 +14961,7 @@ export interface ScrollView extends Atk.ImplementorIface, Clutter.Animatable, Cl
|
|
|
15206
14961
|
* @param property_name the name of the property to get
|
|
15207
14962
|
* @param value return location for the property value
|
|
15208
14963
|
*/
|
|
15209
|
-
get_property(property_name: string
|
|
14964
|
+
get_property(property_name: string, value: any): void
|
|
15210
14965
|
/**
|
|
15211
14966
|
* Gets a property of an object.
|
|
15212
14967
|
*
|
|
@@ -15227,7 +14982,7 @@ export interface ScrollView extends Atk.ImplementorIface, Clutter.Animatable, Cl
|
|
|
15227
14982
|
* @param property_name the name of the property to get
|
|
15228
14983
|
* @param value return location for the property value
|
|
15229
14984
|
*/
|
|
15230
|
-
get_property(property_name: string
|
|
14985
|
+
get_property(property_name: string, value: any): void
|
|
15231
14986
|
|
|
15232
14987
|
// Class property signals of Mx-1.0.Mx.ScrollView
|
|
15233
14988
|
|
|
@@ -15550,11 +15305,6 @@ export module Settings {
|
|
|
15550
15305
|
|
|
15551
15306
|
// Own constructor properties of Mx-1.0.Mx.Settings
|
|
15552
15307
|
|
|
15553
|
-
drag_threshold?: number | null
|
|
15554
|
-
font_name?: string | null
|
|
15555
|
-
icon_theme?: string | null
|
|
15556
|
-
long_press_timeout?: number | null
|
|
15557
|
-
small_screen?: boolean | null
|
|
15558
15308
|
dragThreshold?: number | null
|
|
15559
15309
|
fontName?: string | null
|
|
15560
15310
|
iconTheme?: string | null
|
|
@@ -15568,15 +15318,10 @@ export interface Settings {
|
|
|
15568
15318
|
|
|
15569
15319
|
// Own properties of Mx-1.0.Mx.Settings
|
|
15570
15320
|
|
|
15571
|
-
drag_threshold: number
|
|
15572
15321
|
dragThreshold: number
|
|
15573
|
-
font_name: string | null
|
|
15574
15322
|
fontName: string | null
|
|
15575
|
-
icon_theme: string | null
|
|
15576
15323
|
iconTheme: string | null
|
|
15577
|
-
long_press_timeout: number
|
|
15578
15324
|
longPressTimeout: number
|
|
15579
|
-
small_screen: boolean
|
|
15580
15325
|
smallScreen: boolean
|
|
15581
15326
|
|
|
15582
15327
|
// Own fields of Mx-1.0.Mx.Settings
|
|
@@ -15633,9 +15378,8 @@ export module Slider {
|
|
|
15633
15378
|
|
|
15634
15379
|
// Own constructor properties of Mx-1.0.Mx.Slider
|
|
15635
15380
|
|
|
15636
|
-
buffer_value?: number | null
|
|
15637
|
-
value?: number | null
|
|
15638
15381
|
bufferValue?: number | null
|
|
15382
|
+
value?: number | null
|
|
15639
15383
|
}
|
|
15640
15384
|
|
|
15641
15385
|
}
|
|
@@ -15644,7 +15388,6 @@ export interface Slider extends Atk.ImplementorIface, Clutter.Animatable, Clutte
|
|
|
15644
15388
|
|
|
15645
15389
|
// Own properties of Mx-1.0.Mx.Slider
|
|
15646
15390
|
|
|
15647
|
-
buffer_value: number
|
|
15648
15391
|
bufferValue: number
|
|
15649
15392
|
value: number
|
|
15650
15393
|
|
|
@@ -15678,7 +15421,7 @@ export interface Slider extends Atk.ImplementorIface, Clutter.Animatable, Clutte
|
|
|
15678
15421
|
* into `value`.
|
|
15679
15422
|
* @param property_name the name of the property
|
|
15680
15423
|
*/
|
|
15681
|
-
get_property(property_name: string
|
|
15424
|
+
get_property(property_name: string): /* value */ any
|
|
15682
15425
|
|
|
15683
15426
|
// Overloads of get_property
|
|
15684
15427
|
|
|
@@ -15702,7 +15445,7 @@ export interface Slider extends Atk.ImplementorIface, Clutter.Animatable, Clutte
|
|
|
15702
15445
|
* @param property_name the name of the property to get
|
|
15703
15446
|
* @param value return location for the property value
|
|
15704
15447
|
*/
|
|
15705
|
-
get_property(property_name: string
|
|
15448
|
+
get_property(property_name: string, value: any): void
|
|
15706
15449
|
/**
|
|
15707
15450
|
* Gets a property of an object.
|
|
15708
15451
|
*
|
|
@@ -15723,7 +15466,7 @@ export interface Slider extends Atk.ImplementorIface, Clutter.Animatable, Clutte
|
|
|
15723
15466
|
* @param property_name the name of the property to get
|
|
15724
15467
|
* @param value return location for the property value
|
|
15725
15468
|
*/
|
|
15726
|
-
get_property(property_name: string
|
|
15469
|
+
get_property(property_name: string, value: any): void
|
|
15727
15470
|
|
|
15728
15471
|
// Class property signals of Mx-1.0.Mx.Slider
|
|
15729
15472
|
|
|
@@ -16086,7 +15829,7 @@ export interface Spinner extends Atk.ImplementorIface, Clutter.Animatable, Clutt
|
|
|
16086
15829
|
* into `value`.
|
|
16087
15830
|
* @param property_name the name of the property
|
|
16088
15831
|
*/
|
|
16089
|
-
get_property(property_name: string
|
|
15832
|
+
get_property(property_name: string): /* value */ any
|
|
16090
15833
|
|
|
16091
15834
|
// Overloads of get_property
|
|
16092
15835
|
|
|
@@ -16110,7 +15853,7 @@ export interface Spinner extends Atk.ImplementorIface, Clutter.Animatable, Clutt
|
|
|
16110
15853
|
* @param property_name the name of the property to get
|
|
16111
15854
|
* @param value return location for the property value
|
|
16112
15855
|
*/
|
|
16113
|
-
get_property(property_name: string
|
|
15856
|
+
get_property(property_name: string, value: any): void
|
|
16114
15857
|
/**
|
|
16115
15858
|
* Gets a property of an object.
|
|
16116
15859
|
*
|
|
@@ -16131,7 +15874,7 @@ export interface Spinner extends Atk.ImplementorIface, Clutter.Animatable, Clutt
|
|
|
16131
15874
|
* @param property_name the name of the property to get
|
|
16132
15875
|
* @param value return location for the property value
|
|
16133
15876
|
*/
|
|
16134
|
-
get_property(property_name: string
|
|
15877
|
+
get_property(property_name: string, value: any): void
|
|
16135
15878
|
|
|
16136
15879
|
// Own virtual methods of Mx-1.0.Mx.Spinner
|
|
16137
15880
|
|
|
@@ -16544,7 +16287,7 @@ export interface Stack extends Atk.ImplementorIface, Clutter.Animatable, Clutter
|
|
|
16544
16287
|
* into `value`.
|
|
16545
16288
|
* @param property_name the name of the property
|
|
16546
16289
|
*/
|
|
16547
|
-
get_property(property_name: string
|
|
16290
|
+
get_property(property_name: string): /* value */ any
|
|
16548
16291
|
|
|
16549
16292
|
// Overloads of get_property
|
|
16550
16293
|
|
|
@@ -16568,7 +16311,7 @@ export interface Stack extends Atk.ImplementorIface, Clutter.Animatable, Clutter
|
|
|
16568
16311
|
* @param property_name the name of the property to get
|
|
16569
16312
|
* @param value return location for the property value
|
|
16570
16313
|
*/
|
|
16571
|
-
get_property(property_name: string
|
|
16314
|
+
get_property(property_name: string, value: any): void
|
|
16572
16315
|
/**
|
|
16573
16316
|
* Gets a property of an object.
|
|
16574
16317
|
*
|
|
@@ -16589,7 +16332,7 @@ export interface Stack extends Atk.ImplementorIface, Clutter.Animatable, Clutter
|
|
|
16589
16332
|
* @param property_name the name of the property to get
|
|
16590
16333
|
* @param value return location for the property value
|
|
16591
16334
|
*/
|
|
16592
|
-
get_property(property_name: string
|
|
16335
|
+
get_property(property_name: string, value: any): void
|
|
16593
16336
|
|
|
16594
16337
|
// Class property signals of Mx-1.0.Mx.Stack
|
|
16595
16338
|
|
|
@@ -16906,10 +16649,6 @@ export module StackChild {
|
|
|
16906
16649
|
|
|
16907
16650
|
crop?: boolean | null
|
|
16908
16651
|
fit?: boolean | null
|
|
16909
|
-
x_align?: Align | null
|
|
16910
|
-
x_fill?: boolean | null
|
|
16911
|
-
y_align?: Align | null
|
|
16912
|
-
y_fill?: boolean | null
|
|
16913
16652
|
xAlign?: Align | null
|
|
16914
16653
|
xFill?: boolean | null
|
|
16915
16654
|
yAlign?: Align | null
|
|
@@ -16924,13 +16663,9 @@ export interface StackChild {
|
|
|
16924
16663
|
|
|
16925
16664
|
crop: boolean
|
|
16926
16665
|
fit: boolean
|
|
16927
|
-
x_align: Align
|
|
16928
16666
|
xAlign: Align
|
|
16929
|
-
x_fill: boolean
|
|
16930
16667
|
xFill: boolean
|
|
16931
|
-
y_align: Align
|
|
16932
16668
|
yAlign: Align
|
|
16933
|
-
y_fill: boolean
|
|
16934
16669
|
yFill: boolean
|
|
16935
16670
|
|
|
16936
16671
|
// Class property signals of Mx-1.0.Mx.StackChild
|
|
@@ -17029,13 +16764,13 @@ export interface Style {
|
|
|
17029
16764
|
* @param property_name the name of the property to get
|
|
17030
16765
|
* @param value return location for the property value
|
|
17031
16766
|
*/
|
|
17032
|
-
get_property(property_name: string
|
|
16767
|
+
get_property(property_name: string, value: any): void
|
|
17033
16768
|
/**
|
|
17034
16769
|
* Load style information from the specified file.
|
|
17035
16770
|
* @param filename filename of the style sheet to load
|
|
17036
16771
|
* @returns TRUE if the style information was loaded successfully. Returns FALSE on error.
|
|
17037
16772
|
*/
|
|
17038
|
-
load_from_file(filename: string
|
|
16773
|
+
load_from_file(filename: string): boolean
|
|
17039
16774
|
|
|
17040
16775
|
// Own virtual methods of Mx-1.0.Mx.Style
|
|
17041
16776
|
|
|
@@ -17101,8 +16836,6 @@ export module Table {
|
|
|
17101
16836
|
|
|
17102
16837
|
// Own constructor properties of Mx-1.0.Mx.Table
|
|
17103
16838
|
|
|
17104
|
-
column_spacing?: number | null
|
|
17105
|
-
row_spacing?: number | null
|
|
17106
16839
|
columnSpacing?: number | null
|
|
17107
16840
|
rowSpacing?: number | null
|
|
17108
16841
|
}
|
|
@@ -17113,13 +16846,9 @@ export interface Table extends Atk.ImplementorIface, Clutter.Animatable, Clutter
|
|
|
17113
16846
|
|
|
17114
16847
|
// Own properties of Mx-1.0.Mx.Table
|
|
17115
16848
|
|
|
17116
|
-
readonly column_count: number
|
|
17117
16849
|
readonly columnCount: number
|
|
17118
|
-
column_spacing: number
|
|
17119
16850
|
columnSpacing: number
|
|
17120
|
-
readonly row_count: number
|
|
17121
16851
|
readonly rowCount: number
|
|
17122
|
-
row_spacing: number
|
|
17123
16852
|
rowSpacing: number
|
|
17124
16853
|
|
|
17125
16854
|
// Owm methods of Mx-1.0.Mx.Table
|
|
@@ -17314,7 +17043,7 @@ export interface Table extends Atk.ImplementorIface, Clutter.Animatable, Clutter
|
|
|
17314
17043
|
* into `value`.
|
|
17315
17044
|
* @param property_name the name of the property
|
|
17316
17045
|
*/
|
|
17317
|
-
get_property(property_name: string
|
|
17046
|
+
get_property(property_name: string): /* value */ any
|
|
17318
17047
|
|
|
17319
17048
|
// Overloads of get_property
|
|
17320
17049
|
|
|
@@ -17338,7 +17067,7 @@ export interface Table extends Atk.ImplementorIface, Clutter.Animatable, Clutter
|
|
|
17338
17067
|
* @param property_name the name of the property to get
|
|
17339
17068
|
* @param value return location for the property value
|
|
17340
17069
|
*/
|
|
17341
|
-
get_property(property_name: string
|
|
17070
|
+
get_property(property_name: string, value: any): void
|
|
17342
17071
|
/**
|
|
17343
17072
|
* Gets a property of an object.
|
|
17344
17073
|
*
|
|
@@ -17359,7 +17088,7 @@ export interface Table extends Atk.ImplementorIface, Clutter.Animatable, Clutter
|
|
|
17359
17088
|
* @param property_name the name of the property to get
|
|
17360
17089
|
* @param value return location for the property value
|
|
17361
17090
|
*/
|
|
17362
|
-
get_property(property_name: string
|
|
17091
|
+
get_property(property_name: string, value: any): void
|
|
17363
17092
|
|
|
17364
17093
|
// Class property signals of Mx-1.0.Mx.Table
|
|
17365
17094
|
|
|
@@ -17687,16 +17416,8 @@ export module TableChild {
|
|
|
17687
17416
|
// Own constructor properties of Mx-1.0.Mx.TableChild
|
|
17688
17417
|
|
|
17689
17418
|
column?: number | null
|
|
17690
|
-
column_span?: number | null
|
|
17691
|
-
row?: number | null
|
|
17692
|
-
row_span?: number | null
|
|
17693
|
-
x_align?: Align | null
|
|
17694
|
-
x_expand?: boolean | null
|
|
17695
|
-
x_fill?: boolean | null
|
|
17696
|
-
y_align?: Align | null
|
|
17697
|
-
y_expand?: boolean | null
|
|
17698
|
-
y_fill?: boolean | null
|
|
17699
17419
|
columnSpan?: number | null
|
|
17420
|
+
row?: number | null
|
|
17700
17421
|
rowSpan?: number | null
|
|
17701
17422
|
xAlign?: Align | null
|
|
17702
17423
|
xExpand?: boolean | null
|
|
@@ -17713,22 +17434,14 @@ export interface TableChild {
|
|
|
17713
17434
|
// Own properties of Mx-1.0.Mx.TableChild
|
|
17714
17435
|
|
|
17715
17436
|
column: number
|
|
17716
|
-
column_span: number
|
|
17717
17437
|
columnSpan: number
|
|
17718
17438
|
row: number
|
|
17719
|
-
row_span: number
|
|
17720
17439
|
rowSpan: number
|
|
17721
|
-
x_align: Align
|
|
17722
17440
|
xAlign: Align
|
|
17723
|
-
x_expand: boolean
|
|
17724
17441
|
xExpand: boolean
|
|
17725
|
-
x_fill: boolean
|
|
17726
17442
|
xFill: boolean
|
|
17727
|
-
y_align: Align
|
|
17728
17443
|
yAlign: Align
|
|
17729
|
-
y_expand: boolean
|
|
17730
17444
|
yExpand: boolean
|
|
17731
|
-
y_fill: boolean
|
|
17732
17445
|
yFill: boolean
|
|
17733
17446
|
|
|
17734
17447
|
// Class property signals of Mx-1.0.Mx.TableChild
|
|
@@ -17806,7 +17519,7 @@ export interface TextureCache {
|
|
|
17806
17519
|
* @param uri A URI or path to an image file
|
|
17807
17520
|
* @returns %TRUE if the image exists, %FALSE otherwise
|
|
17808
17521
|
*/
|
|
17809
|
-
contains(uri: string
|
|
17522
|
+
contains(uri: string): boolean
|
|
17810
17523
|
/**
|
|
17811
17524
|
* Checks whether there are any textures associated with the given URI by
|
|
17812
17525
|
* the given identifier.
|
|
@@ -17814,14 +17527,14 @@ export interface TextureCache {
|
|
|
17814
17527
|
* @param ident A unique identifier
|
|
17815
17528
|
* @returns %TRUE if the data exists, %FALSE otherwise
|
|
17816
17529
|
*/
|
|
17817
|
-
contains_meta(uri: string
|
|
17530
|
+
contains_meta(uri: string, ident: any): boolean
|
|
17818
17531
|
/**
|
|
17819
17532
|
* This is a wrapper around mx_texture_cache_get_texture() which returns
|
|
17820
17533
|
* a ClutterActor.
|
|
17821
17534
|
* @param uri A URI or path to a image file
|
|
17822
17535
|
* @returns a newly created ClutterTexture
|
|
17823
17536
|
*/
|
|
17824
|
-
get_actor(uri: string
|
|
17537
|
+
get_actor(uri: string): Clutter.Actor
|
|
17825
17538
|
/**
|
|
17826
17539
|
* Create a #CoglHandle representing a texture of the specified image. Adds
|
|
17827
17540
|
* the image to the cache if the image had not been previously loaded.
|
|
@@ -17830,7 +17543,7 @@ export interface TextureCache {
|
|
|
17830
17543
|
* @param uri A URI or path to an image file
|
|
17831
17544
|
* @returns a #CoglHandle to the cached texture
|
|
17832
17545
|
*/
|
|
17833
|
-
get_cogl_texture(uri: string
|
|
17546
|
+
get_cogl_texture(uri: string): Cogl.Handle
|
|
17834
17547
|
/**
|
|
17835
17548
|
* Retrieves the #CoglHandle of the previously added image associated
|
|
17836
17549
|
* with the given unique identifier.
|
|
@@ -17840,7 +17553,7 @@ export interface TextureCache {
|
|
|
17840
17553
|
* @param ident A unique identifier
|
|
17841
17554
|
* @returns A #CoglHandle to a texture, with an added reference. %NULL if no image was found.
|
|
17842
17555
|
*/
|
|
17843
|
-
get_meta_cogl_texture(uri: string
|
|
17556
|
+
get_meta_cogl_texture(uri: string, ident: any): Cogl.Handle
|
|
17844
17557
|
/**
|
|
17845
17558
|
* Create a new ClutterTexture using the previously added image associated
|
|
17846
17559
|
* with the given unique identifier.
|
|
@@ -17850,7 +17563,7 @@ export interface TextureCache {
|
|
|
17850
17563
|
* @param ident A unique identifier
|
|
17851
17564
|
* @returns A newly allocated #ClutterTexture, or %NULL if no image was found
|
|
17852
17565
|
*/
|
|
17853
|
-
get_meta_texture(uri: string
|
|
17566
|
+
get_meta_texture(uri: string, ident: any): Clutter.Texture
|
|
17854
17567
|
/**
|
|
17855
17568
|
* Returns the number of items in the texture cache
|
|
17856
17569
|
* @returns the current size of the cache
|
|
@@ -17864,7 +17577,7 @@ export interface TextureCache {
|
|
|
17864
17577
|
* @param uri A URI or path to a image file
|
|
17865
17578
|
* @returns a newly created ClutterTexture
|
|
17866
17579
|
*/
|
|
17867
|
-
get_texture(uri: string
|
|
17580
|
+
get_texture(uri: string): Clutter.Texture
|
|
17868
17581
|
/**
|
|
17869
17582
|
* Inserts a texture into the texture cache. This can be useful if you
|
|
17870
17583
|
* want to cache a texture from a custom or unhandled URI type, or you
|
|
@@ -17875,7 +17588,7 @@ export interface TextureCache {
|
|
|
17875
17588
|
* @param uri A URI or local file path
|
|
17876
17589
|
* @param texture A #CoglHandle to a texture
|
|
17877
17590
|
*/
|
|
17878
|
-
insert(uri: string
|
|
17591
|
+
insert(uri: string, texture: Cogl.Handle): void
|
|
17879
17592
|
/**
|
|
17880
17593
|
* Inserts a texture that's associated with a URI into the cache.
|
|
17881
17594
|
* If the metadata already exists for this URI, it will be replaced.
|
|
@@ -17887,13 +17600,13 @@ export interface TextureCache {
|
|
|
17887
17600
|
* @param texture A #CoglHandle to a texture
|
|
17888
17601
|
* @param destroy_func An optional destruction function for `ident`
|
|
17889
17602
|
*/
|
|
17890
|
-
insert_meta(uri: string
|
|
17891
|
-
load_cache(filename: string
|
|
17603
|
+
insert_meta(uri: string, ident: any, texture: Cogl.Handle, destroy_func: GLib.DestroyNotify): void
|
|
17604
|
+
load_cache(filename: string): void
|
|
17892
17605
|
|
|
17893
17606
|
// Own virtual methods of Mx-1.0.Mx.TextureCache
|
|
17894
17607
|
|
|
17895
17608
|
vfunc_error_loading(error: GLib.Error): void
|
|
17896
|
-
vfunc_loaded(uri: string
|
|
17609
|
+
vfunc_loaded(uri: string, texture: Clutter.Texture): void
|
|
17897
17610
|
|
|
17898
17611
|
// Class property signals of Mx-1.0.Mx.TextureCache
|
|
17899
17612
|
|
|
@@ -17937,10 +17650,9 @@ export module TextureFrame {
|
|
|
17937
17650
|
|
|
17938
17651
|
bottom?: number | null
|
|
17939
17652
|
left?: number | null
|
|
17940
|
-
|
|
17653
|
+
parentTexture?: Clutter.Texture | null
|
|
17941
17654
|
right?: number | null
|
|
17942
17655
|
top?: number | null
|
|
17943
|
-
parentTexture?: Clutter.Texture | null
|
|
17944
17656
|
}
|
|
17945
17657
|
|
|
17946
17658
|
}
|
|
@@ -17951,7 +17663,6 @@ export interface TextureFrame extends Atk.ImplementorIface, Clutter.Animatable,
|
|
|
17951
17663
|
|
|
17952
17664
|
bottom: number
|
|
17953
17665
|
left: number
|
|
17954
|
-
parent_texture: Clutter.Texture
|
|
17955
17666
|
parentTexture: Clutter.Texture
|
|
17956
17667
|
right: number
|
|
17957
17668
|
top: number
|
|
@@ -18353,7 +18064,7 @@ export interface Toggle extends Atk.ImplementorIface, Clutter.Animatable, Clutte
|
|
|
18353
18064
|
* into `value`.
|
|
18354
18065
|
* @param property_name the name of the property
|
|
18355
18066
|
*/
|
|
18356
|
-
get_property(property_name: string
|
|
18067
|
+
get_property(property_name: string): /* value */ any
|
|
18357
18068
|
|
|
18358
18069
|
// Overloads of get_property
|
|
18359
18070
|
|
|
@@ -18377,7 +18088,7 @@ export interface Toggle extends Atk.ImplementorIface, Clutter.Animatable, Clutte
|
|
|
18377
18088
|
* @param property_name the name of the property to get
|
|
18378
18089
|
* @param value return location for the property value
|
|
18379
18090
|
*/
|
|
18380
|
-
get_property(property_name: string
|
|
18091
|
+
get_property(property_name: string, value: any): void
|
|
18381
18092
|
/**
|
|
18382
18093
|
* Gets a property of an object.
|
|
18383
18094
|
*
|
|
@@ -18398,7 +18109,7 @@ export interface Toggle extends Atk.ImplementorIface, Clutter.Animatable, Clutte
|
|
|
18398
18109
|
* @param property_name the name of the property to get
|
|
18399
18110
|
* @param value return location for the property value
|
|
18400
18111
|
*/
|
|
18401
|
-
get_property(property_name: string
|
|
18112
|
+
get_property(property_name: string, value: any): void
|
|
18402
18113
|
|
|
18403
18114
|
// Class property signals of Mx-1.0.Mx.Toggle
|
|
18404
18115
|
|
|
@@ -18716,7 +18427,6 @@ export module Toolbar {
|
|
|
18716
18427
|
|
|
18717
18428
|
// Own constructor properties of Mx-1.0.Mx.Toolbar
|
|
18718
18429
|
|
|
18719
|
-
has_close_button?: boolean | null
|
|
18720
18430
|
hasCloseButton?: boolean | null
|
|
18721
18431
|
}
|
|
18722
18432
|
|
|
@@ -18726,14 +18436,11 @@ export interface Toolbar extends Atk.ImplementorIface, Clutter.Animatable, Clutt
|
|
|
18726
18436
|
|
|
18727
18437
|
// Own properties of Mx-1.0.Mx.Toolbar
|
|
18728
18438
|
|
|
18729
|
-
has_close_button: boolean
|
|
18730
18439
|
hasCloseButton: boolean
|
|
18731
18440
|
|
|
18732
18441
|
// Conflicting properties
|
|
18733
18442
|
|
|
18734
|
-
x_align: any
|
|
18735
18443
|
xAlign: any
|
|
18736
|
-
y_align: any
|
|
18737
18444
|
yAlign: any
|
|
18738
18445
|
|
|
18739
18446
|
// Own fields of Mx-1.0.Mx.Toolbar
|
|
@@ -18761,7 +18468,7 @@ export interface Toolbar extends Atk.ImplementorIface, Clutter.Animatable, Clutt
|
|
|
18761
18468
|
* into `value`.
|
|
18762
18469
|
* @param property_name the name of the property
|
|
18763
18470
|
*/
|
|
18764
|
-
get_property(property_name: string
|
|
18471
|
+
get_property(property_name: string): /* value */ any
|
|
18765
18472
|
|
|
18766
18473
|
// Overloads of get_property
|
|
18767
18474
|
|
|
@@ -18785,7 +18492,7 @@ export interface Toolbar extends Atk.ImplementorIface, Clutter.Animatable, Clutt
|
|
|
18785
18492
|
* @param property_name the name of the property to get
|
|
18786
18493
|
* @param value return location for the property value
|
|
18787
18494
|
*/
|
|
18788
|
-
get_property(property_name: string
|
|
18495
|
+
get_property(property_name: string, value: any): void
|
|
18789
18496
|
/**
|
|
18790
18497
|
* Gets a property of an object.
|
|
18791
18498
|
*
|
|
@@ -18806,7 +18513,7 @@ export interface Toolbar extends Atk.ImplementorIface, Clutter.Animatable, Clutt
|
|
|
18806
18513
|
* @param property_name the name of the property to get
|
|
18807
18514
|
* @param value return location for the property value
|
|
18808
18515
|
*/
|
|
18809
|
-
get_property(property_name: string
|
|
18516
|
+
get_property(property_name: string, value: any): void
|
|
18810
18517
|
|
|
18811
18518
|
// Own virtual methods of Mx-1.0.Mx.Toolbar
|
|
18812
18519
|
|
|
@@ -19146,7 +18853,6 @@ export module Tooltip {
|
|
|
19146
18853
|
// Own constructor properties of Mx-1.0.Mx.Tooltip
|
|
19147
18854
|
|
|
19148
18855
|
text?: string | null
|
|
19149
|
-
tip_area?: Clutter.Geometry | null
|
|
19150
18856
|
tipArea?: Clutter.Geometry | null
|
|
19151
18857
|
}
|
|
19152
18858
|
|
|
@@ -19157,7 +18863,6 @@ export interface Tooltip extends Atk.ImplementorIface, Clutter.Animatable, Clutt
|
|
|
19157
18863
|
// Own properties of Mx-1.0.Mx.Tooltip
|
|
19158
18864
|
|
|
19159
18865
|
text: string | null
|
|
19160
|
-
tip_area: Clutter.Geometry
|
|
19161
18866
|
tipArea: Clutter.Geometry
|
|
19162
18867
|
|
|
19163
18868
|
// Owm methods of Mx-1.0.Mx.Tooltip
|
|
@@ -19166,7 +18871,7 @@ export interface Tooltip extends Atk.ImplementorIface, Clutter.Animatable, Clutt
|
|
|
19166
18871
|
* Get the text displayed on the tooltip
|
|
19167
18872
|
* @returns the text for the tooltip. This must not be freed by the application
|
|
19168
18873
|
*/
|
|
19169
|
-
get_text(): string
|
|
18874
|
+
get_text(): string
|
|
19170
18875
|
/**
|
|
19171
18876
|
* Retrieve the area on the stage that the tooltip currently applies to
|
|
19172
18877
|
* @returns the #ClutterGeometry, owned by the tooltip which must not be freed by the application.
|
|
@@ -19180,7 +18885,7 @@ export interface Tooltip extends Atk.ImplementorIface, Clutter.Animatable, Clutt
|
|
|
19180
18885
|
* Sets the text displayed on the tooltip
|
|
19181
18886
|
* @param text text to set the label to
|
|
19182
18887
|
*/
|
|
19183
|
-
set_text(text: string
|
|
18888
|
+
set_text(text: string): void
|
|
19184
18889
|
/**
|
|
19185
18890
|
* Set the area on the stage that the tooltip applies to.
|
|
19186
18891
|
* @param area A #ClutterGeometry
|
|
@@ -19205,7 +18910,7 @@ export interface Tooltip extends Atk.ImplementorIface, Clutter.Animatable, Clutt
|
|
|
19205
18910
|
* into `value`.
|
|
19206
18911
|
* @param property_name the name of the property
|
|
19207
18912
|
*/
|
|
19208
|
-
get_property(property_name: string
|
|
18913
|
+
get_property(property_name: string): /* value */ any
|
|
19209
18914
|
|
|
19210
18915
|
// Overloads of get_property
|
|
19211
18916
|
|
|
@@ -19229,7 +18934,7 @@ export interface Tooltip extends Atk.ImplementorIface, Clutter.Animatable, Clutt
|
|
|
19229
18934
|
* @param property_name the name of the property to get
|
|
19230
18935
|
* @param value return location for the property value
|
|
19231
18936
|
*/
|
|
19232
|
-
get_property(property_name: string
|
|
18937
|
+
get_property(property_name: string, value: any): void
|
|
19233
18938
|
/**
|
|
19234
18939
|
* Gets a property of an object.
|
|
19235
18940
|
*
|
|
@@ -19250,7 +18955,7 @@ export interface Tooltip extends Atk.ImplementorIface, Clutter.Animatable, Clutt
|
|
|
19250
18955
|
* @param property_name the name of the property to get
|
|
19251
18956
|
* @param value return location for the property value
|
|
19252
18957
|
*/
|
|
19253
|
-
get_property(property_name: string
|
|
18958
|
+
get_property(property_name: string, value: any): void
|
|
19254
18959
|
|
|
19255
18960
|
// Class property signals of Mx-1.0.Mx.Tooltip
|
|
19256
18961
|
|
|
@@ -19567,10 +19272,6 @@ export module Viewport {
|
|
|
19567
19272
|
|
|
19568
19273
|
// Own constructor properties of Mx-1.0.Mx.Viewport
|
|
19569
19274
|
|
|
19570
|
-
sync_adjustments?: boolean | null
|
|
19571
|
-
x_origin?: number | null
|
|
19572
|
-
y_origin?: number | null
|
|
19573
|
-
z_origin?: number | null
|
|
19574
19275
|
syncAdjustments?: boolean | null
|
|
19575
19276
|
xOrigin?: number | null
|
|
19576
19277
|
yOrigin?: number | null
|
|
@@ -19583,20 +19284,14 @@ export interface Viewport extends Atk.ImplementorIface, Clutter.Animatable, Clut
|
|
|
19583
19284
|
|
|
19584
19285
|
// Own properties of Mx-1.0.Mx.Viewport
|
|
19585
19286
|
|
|
19586
|
-
sync_adjustments: boolean
|
|
19587
19287
|
syncAdjustments: boolean
|
|
19588
|
-
x_origin: number
|
|
19589
19288
|
xOrigin: number
|
|
19590
|
-
y_origin: number
|
|
19591
19289
|
yOrigin: number
|
|
19592
|
-
z_origin: number
|
|
19593
19290
|
zOrigin: number
|
|
19594
19291
|
|
|
19595
19292
|
// Conflicting properties
|
|
19596
19293
|
|
|
19597
|
-
x_align: any
|
|
19598
19294
|
xAlign: any
|
|
19599
|
-
y_align: any
|
|
19600
19295
|
yAlign: any
|
|
19601
19296
|
|
|
19602
19297
|
// Owm methods of Mx-1.0.Mx.Viewport
|
|
@@ -19613,7 +19308,7 @@ export interface Viewport extends Atk.ImplementorIface, Clutter.Animatable, Clut
|
|
|
19613
19308
|
* into `value`.
|
|
19614
19309
|
* @param property_name the name of the property
|
|
19615
19310
|
*/
|
|
19616
|
-
get_property(property_name: string
|
|
19311
|
+
get_property(property_name: string): /* value */ any
|
|
19617
19312
|
|
|
19618
19313
|
// Overloads of get_property
|
|
19619
19314
|
|
|
@@ -19637,7 +19332,7 @@ export interface Viewport extends Atk.ImplementorIface, Clutter.Animatable, Clut
|
|
|
19637
19332
|
* @param property_name the name of the property to get
|
|
19638
19333
|
* @param value return location for the property value
|
|
19639
19334
|
*/
|
|
19640
|
-
get_property(property_name: string
|
|
19335
|
+
get_property(property_name: string, value: any): void
|
|
19641
19336
|
/**
|
|
19642
19337
|
* Gets a property of an object.
|
|
19643
19338
|
*
|
|
@@ -19658,7 +19353,7 @@ export interface Viewport extends Atk.ImplementorIface, Clutter.Animatable, Clut
|
|
|
19658
19353
|
* @param property_name the name of the property to get
|
|
19659
19354
|
* @param value return location for the property value
|
|
19660
19355
|
*/
|
|
19661
|
-
get_property(property_name: string
|
|
19356
|
+
get_property(property_name: string, value: any): void
|
|
19662
19357
|
|
|
19663
19358
|
// Class property signals of Mx-1.0.Mx.Viewport
|
|
19664
19359
|
|
|
@@ -20005,11 +19700,6 @@ export module Widget {
|
|
|
20005
19700
|
* #MxMenu associated with the widget.
|
|
20006
19701
|
*/
|
|
20007
19702
|
menu?: Menu | null
|
|
20008
|
-
tooltip_delay?: number | null
|
|
20009
|
-
/**
|
|
20010
|
-
* text displayed on the tooltip
|
|
20011
|
-
*/
|
|
20012
|
-
tooltip_text?: string | null
|
|
20013
19703
|
tooltipDelay?: number | null
|
|
20014
19704
|
/**
|
|
20015
19705
|
* text displayed on the tooltip
|
|
@@ -20028,12 +19718,7 @@ export interface Widget extends Atk.ImplementorIface, Clutter.Animatable, Clutte
|
|
|
20028
19718
|
* #MxMenu associated with the widget.
|
|
20029
19719
|
*/
|
|
20030
19720
|
menu: Menu
|
|
20031
|
-
tooltip_delay: number
|
|
20032
19721
|
tooltipDelay: number
|
|
20033
|
-
/**
|
|
20034
|
-
* text displayed on the tooltip
|
|
20035
|
-
*/
|
|
20036
|
-
tooltip_text: string | null
|
|
20037
19722
|
/**
|
|
20038
19723
|
* text displayed on the tooltip
|
|
20039
19724
|
*/
|
|
@@ -20092,7 +19777,7 @@ export interface Widget extends Atk.ImplementorIface, Clutter.Animatable, Clutte
|
|
|
20092
19777
|
* Get the current tooltip string
|
|
20093
19778
|
* @returns The current tooltip string, owned by the #MxWidget
|
|
20094
19779
|
*/
|
|
20095
|
-
get_tooltip_text(): string
|
|
19780
|
+
get_tooltip_text(): string
|
|
20096
19781
|
/**
|
|
20097
19782
|
* Hide the tooltip for `widget`
|
|
20098
19783
|
*/
|
|
@@ -20139,7 +19824,7 @@ export interface Widget extends Atk.ImplementorIface, Clutter.Animatable, Clutte
|
|
|
20139
19824
|
* %FALSE.
|
|
20140
19825
|
* @param text text to set as the tooltip
|
|
20141
19826
|
*/
|
|
20142
|
-
set_tooltip_text(text: string
|
|
19827
|
+
set_tooltip_text(text: string): void
|
|
20143
19828
|
/**
|
|
20144
19829
|
* Show the tooltip for `widget`
|
|
20145
19830
|
*/
|
|
@@ -20152,7 +19837,7 @@ export interface Widget extends Atk.ImplementorIface, Clutter.Animatable, Clutte
|
|
|
20152
19837
|
* into `value`.
|
|
20153
19838
|
* @param property_name the name of the property
|
|
20154
19839
|
*/
|
|
20155
|
-
get_property(property_name: string
|
|
19840
|
+
get_property(property_name: string): /* value */ any
|
|
20156
19841
|
|
|
20157
19842
|
// Overloads of get_property
|
|
20158
19843
|
|
|
@@ -20176,7 +19861,7 @@ export interface Widget extends Atk.ImplementorIface, Clutter.Animatable, Clutte
|
|
|
20176
19861
|
* @param property_name the name of the property to get
|
|
20177
19862
|
* @param value return location for the property value
|
|
20178
19863
|
*/
|
|
20179
|
-
get_property(property_name: string
|
|
19864
|
+
get_property(property_name: string, value: any): void
|
|
20180
19865
|
/**
|
|
20181
19866
|
* Gets a property of an object.
|
|
20182
19867
|
*
|
|
@@ -20197,7 +19882,7 @@ export interface Widget extends Atk.ImplementorIface, Clutter.Animatable, Clutte
|
|
|
20197
19882
|
* @param property_name the name of the property to get
|
|
20198
19883
|
* @param value return location for the property value
|
|
20199
19884
|
*/
|
|
20200
|
-
get_property(property_name: string
|
|
19885
|
+
get_property(property_name: string, value: any): void
|
|
20201
19886
|
|
|
20202
19887
|
// Own virtual methods of Mx-1.0.Mx.Widget
|
|
20203
19888
|
|
|
@@ -20530,20 +20215,14 @@ export module Window {
|
|
|
20530
20215
|
// Own constructor properties of Mx-1.0.Mx.Window
|
|
20531
20216
|
|
|
20532
20217
|
child?: Clutter.Actor | null
|
|
20533
|
-
clutter_stage?: Clutter.Stage | null
|
|
20534
|
-
fullscreen?: boolean | null
|
|
20535
|
-
has_toolbar?: boolean | null
|
|
20536
|
-
icon_cogl_texture?: string | null
|
|
20537
|
-
icon_name?: string | null
|
|
20538
|
-
small_screen?: boolean | null
|
|
20539
|
-
title?: string | null
|
|
20540
|
-
toolbar?: Toolbar | null
|
|
20541
|
-
window_rotation?: WindowRotation | null
|
|
20542
20218
|
clutterStage?: Clutter.Stage | null
|
|
20219
|
+
fullscreen?: boolean | null
|
|
20543
20220
|
hasToolbar?: boolean | null
|
|
20544
20221
|
iconCoglTexture?: string | null
|
|
20545
20222
|
iconName?: string | null
|
|
20546
20223
|
smallScreen?: boolean | null
|
|
20224
|
+
title?: string | null
|
|
20225
|
+
toolbar?: Toolbar | null
|
|
20547
20226
|
windowRotation?: WindowRotation | null
|
|
20548
20227
|
}
|
|
20549
20228
|
|
|
@@ -20554,24 +20233,16 @@ export interface Window {
|
|
|
20554
20233
|
// Own properties of Mx-1.0.Mx.Window
|
|
20555
20234
|
|
|
20556
20235
|
child: Clutter.Actor
|
|
20557
|
-
readonly clutter_stage: Clutter.Stage
|
|
20558
20236
|
readonly clutterStage: Clutter.Stage
|
|
20559
20237
|
fullscreen: boolean
|
|
20560
|
-
has_toolbar: boolean
|
|
20561
20238
|
hasToolbar: boolean
|
|
20562
|
-
icon_cogl_texture: string | null
|
|
20563
20239
|
iconCoglTexture: string | null
|
|
20564
|
-
icon_name: string | null
|
|
20565
20240
|
iconName: string | null
|
|
20566
|
-
small_screen: boolean
|
|
20567
20241
|
smallScreen: boolean
|
|
20568
20242
|
title: string | null
|
|
20569
20243
|
toolbar: Toolbar
|
|
20570
|
-
window_rotation: WindowRotation
|
|
20571
20244
|
windowRotation: WindowRotation
|
|
20572
|
-
readonly window_rotation_angle: number
|
|
20573
20245
|
readonly windowRotationAngle: number
|
|
20574
|
-
readonly window_rotation_timeline: Clutter.Timeline
|
|
20575
20246
|
readonly windowRotationTimeline: Clutter.Timeline
|
|
20576
20247
|
|
|
20577
20248
|
// Own fields of Mx-1.0.Mx.Window
|
|
@@ -20607,7 +20278,7 @@ export interface Window {
|
|
|
20607
20278
|
* set, or the icon was set with mx_window_set_icon_from_cogl_texture().
|
|
20608
20279
|
* @returns The window icon name, or %NULL
|
|
20609
20280
|
*/
|
|
20610
|
-
get_icon_name(): string
|
|
20281
|
+
get_icon_name(): string
|
|
20611
20282
|
/**
|
|
20612
20283
|
* Determines if the window is in small-screen mode.
|
|
20613
20284
|
* See mx_window_set_small_screen().
|
|
@@ -20618,7 +20289,7 @@ export interface Window {
|
|
|
20618
20289
|
* Retrieves the title used for the window.
|
|
20619
20290
|
* @returns The title used for the window
|
|
20620
20291
|
*/
|
|
20621
|
-
get_title(): string
|
|
20292
|
+
get_title(): string
|
|
20622
20293
|
/**
|
|
20623
20294
|
* Retrieves the toolbar associated with the window.
|
|
20624
20295
|
* @returns A #MxToolbar
|
|
@@ -20696,7 +20367,7 @@ export interface Window {
|
|
|
20696
20367
|
* window-system specific.
|
|
20697
20368
|
* @param title A string to use for the window title name
|
|
20698
20369
|
*/
|
|
20699
|
-
set_title(title: string
|
|
20370
|
+
set_title(title: string): void
|
|
20700
20371
|
/**
|
|
20701
20372
|
* Sets the toolbar associated with the window.
|
|
20702
20373
|
* @param toolbar
|
|
@@ -20985,7 +20656,7 @@ export class BorderImage {
|
|
|
20985
20656
|
|
|
20986
20657
|
// Constructors of Mx-1.0.Mx.BorderImage
|
|
20987
20658
|
|
|
20988
|
-
static set_from_string(value: any, str: string
|
|
20659
|
+
static set_from_string(value: any, str: string, filename: string): void
|
|
20989
20660
|
}
|
|
20990
20661
|
|
|
20991
20662
|
export interface BoxLayoutChildClass {
|
|
@@ -22026,10 +21697,10 @@ export interface StylableIface {
|
|
|
22026
21697
|
|
|
22027
21698
|
get_style: (stylable: Stylable) => Style
|
|
22028
21699
|
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
|
|
21700
|
+
get_style_class: (stylable: Stylable) => string
|
|
21701
|
+
set_style_class: (stylable: Stylable, style_class: string) => void
|
|
21702
|
+
get_style_pseudo_class: (stylable: Stylable) => string
|
|
21703
|
+
set_style_pseudo_class: (stylable: Stylable, pseudo_class: string) => void
|
|
22033
21704
|
style_changed: (stylable: Stylable, flags: StyleChangedFlags) => void
|
|
22034
21705
|
}
|
|
22035
21706
|
|
|
@@ -22147,7 +21818,7 @@ export interface TextureCacheClass {
|
|
|
22147
21818
|
// Own fields of Mx-1.0.Mx.TextureCacheClass
|
|
22148
21819
|
|
|
22149
21820
|
parent_class: GObject.ObjectClass
|
|
22150
|
-
loaded: (self: TextureCache, uri: string
|
|
21821
|
+
loaded: (self: TextureCache, uri: string, texture: Clutter.Texture) => void
|
|
22151
21822
|
error_loading: (self: TextureCache, error: GLib.Error) => void
|
|
22152
21823
|
}
|
|
22153
21824
|
|