@girs/mx-1.0 1.4.7-3.2.5 → 1.4.7-3.2.7
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +1 -1
- package/mx-1.0.d.cts +542 -208
- package/mx-1.0.d.ts +542 -208
- package/package.json +19 -19
package/mx-1.0.d.cts
CHANGED
|
@@ -262,10 +262,10 @@ export const VERSION_HEX: number
|
|
|
262
262
|
* The full version of the Mx library, in string form (suited for
|
|
263
263
|
* string concatenation)
|
|
264
264
|
*/
|
|
265
|
-
export const VERSION_S: string
|
|
265
|
+
export const VERSION_S: string
|
|
266
266
|
export function actor_box_clamp_to_pixels(box: Clutter.ActorBox): void
|
|
267
267
|
export function allocate_align_fill(child: Clutter.Actor, childbox: Clutter.ActorBox, x_alignment: Align, y_alignment: Align, x_fill: boolean, y_fill: boolean): void
|
|
268
|
-
export function border_image_set_from_string(value: any, str: string
|
|
268
|
+
export function border_image_set_from_string(value: any, str: string, filename: string): void
|
|
269
269
|
/**
|
|
270
270
|
* Transforms a focus direction to a focus hint. This is a convenience
|
|
271
271
|
* function for actors that implement the #MxFocusable interface, to
|
|
@@ -283,7 +283,7 @@ export function border_image_set_from_string(value: any, str: string | null, fil
|
|
|
283
283
|
* @returns A #MxFocusHint
|
|
284
284
|
*/
|
|
285
285
|
export function focus_hint_from_direction(direction: FocusDirection): FocusHint
|
|
286
|
-
export function font_weight_set_from_string(value: any, str: string
|
|
286
|
+
export function font_weight_set_from_string(value: any, str: string): void
|
|
287
287
|
export function image_error_quark(): GLib.Quark
|
|
288
288
|
/**
|
|
289
289
|
* Initializes internationalization support for Mx. If MxApplication is
|
|
@@ -314,7 +314,7 @@ export interface ActionCallbackFunc {
|
|
|
314
314
|
* @param text text from the clipboard
|
|
315
315
|
*/
|
|
316
316
|
export interface ClipboardCallbackFunc {
|
|
317
|
-
(clipboard: Clipboard, text: string
|
|
317
|
+
(clipboard: Clipboard, text: string): void
|
|
318
318
|
}
|
|
319
319
|
export module Draggable {
|
|
320
320
|
|
|
@@ -352,6 +352,9 @@ export module Draggable {
|
|
|
352
352
|
drag_actor?: Clutter.Actor | null
|
|
353
353
|
drag_enabled?: boolean | null
|
|
354
354
|
drag_threshold?: number | null
|
|
355
|
+
dragActor?: Clutter.Actor | null
|
|
356
|
+
dragEnabled?: boolean | null
|
|
357
|
+
dragThreshold?: number | null
|
|
355
358
|
}
|
|
356
359
|
|
|
357
360
|
}
|
|
@@ -362,8 +365,11 @@ export interface Draggable extends Clutter.Actor {
|
|
|
362
365
|
|
|
363
366
|
axis: DragAxis
|
|
364
367
|
drag_actor: Clutter.Actor
|
|
368
|
+
dragActor: Clutter.Actor
|
|
365
369
|
drag_enabled: boolean
|
|
370
|
+
dragEnabled: boolean
|
|
366
371
|
drag_threshold: number
|
|
372
|
+
dragThreshold: number
|
|
367
373
|
|
|
368
374
|
// Owm methods of Mx-1.0.Mx.Draggable
|
|
369
375
|
|
|
@@ -717,6 +723,7 @@ export module Droppable {
|
|
|
717
723
|
// Own constructor properties of Mx-1.0.Mx.Droppable
|
|
718
724
|
|
|
719
725
|
drop_enabled?: boolean | null
|
|
726
|
+
dropEnabled?: boolean | null
|
|
720
727
|
}
|
|
721
728
|
|
|
722
729
|
}
|
|
@@ -726,6 +733,7 @@ export interface Droppable extends Clutter.Actor {
|
|
|
726
733
|
// Own properties of Mx-1.0.Mx.Droppable
|
|
727
734
|
|
|
728
735
|
drop_enabled: boolean
|
|
736
|
+
dropEnabled: boolean
|
|
729
737
|
|
|
730
738
|
// Owm methods of Mx-1.0.Mx.Droppable
|
|
731
739
|
|
|
@@ -1162,6 +1170,8 @@ export module Scrollable {
|
|
|
1162
1170
|
|
|
1163
1171
|
horizontal_adjustment?: Adjustment | null
|
|
1164
1172
|
vertical_adjustment?: Adjustment | null
|
|
1173
|
+
horizontalAdjustment?: Adjustment | null
|
|
1174
|
+
verticalAdjustment?: Adjustment | null
|
|
1165
1175
|
}
|
|
1166
1176
|
|
|
1167
1177
|
}
|
|
@@ -1171,7 +1181,9 @@ export interface Scrollable {
|
|
|
1171
1181
|
// Own properties of Mx-1.0.Mx.Scrollable
|
|
1172
1182
|
|
|
1173
1183
|
horizontal_adjustment: Adjustment
|
|
1184
|
+
horizontalAdjustment: Adjustment
|
|
1174
1185
|
vertical_adjustment: Adjustment
|
|
1186
|
+
verticalAdjustment: Adjustment
|
|
1175
1187
|
|
|
1176
1188
|
// Owm methods of Mx-1.0.Mx.Scrollable
|
|
1177
1189
|
|
|
@@ -1244,6 +1256,8 @@ export module Stylable {
|
|
|
1244
1256
|
style?: Style | null
|
|
1245
1257
|
style_class?: string | null
|
|
1246
1258
|
style_pseudo_class?: string | null
|
|
1259
|
+
styleClass?: string | null
|
|
1260
|
+
stylePseudoClass?: string | null
|
|
1247
1261
|
}
|
|
1248
1262
|
|
|
1249
1263
|
}
|
|
@@ -1254,7 +1268,9 @@ export interface Stylable {
|
|
|
1254
1268
|
|
|
1255
1269
|
style: Style
|
|
1256
1270
|
style_class: string | null
|
|
1271
|
+
styleClass: string | null
|
|
1257
1272
|
style_pseudo_class: string | null
|
|
1273
|
+
stylePseudoClass: string | null
|
|
1258
1274
|
|
|
1259
1275
|
// Owm methods of Mx-1.0.Mx.Stylable
|
|
1260
1276
|
|
|
@@ -1266,20 +1282,20 @@ export interface Stylable {
|
|
|
1266
1282
|
* @param property_name the name of the property to find
|
|
1267
1283
|
* @returns a #GParamSpec for the given property, or %NULL if no property with that name was found
|
|
1268
1284
|
*/
|
|
1269
|
-
find_property(property_name: string
|
|
1285
|
+
find_property(property_name: string): GObject.ParamSpec
|
|
1270
1286
|
/**
|
|
1271
1287
|
* Query `stylable` for the default value of property `property_name` and
|
|
1272
1288
|
* fill `value_out` with the result.
|
|
1273
1289
|
* @param property_name name of the property to query
|
|
1274
1290
|
* @returns %TRUE if property @property_name exists and the default value has been returned.
|
|
1275
1291
|
*/
|
|
1276
|
-
get_default_value(property_name: string
|
|
1292
|
+
get_default_value(property_name: string): [ /* returnType */ boolean, /* value_out */ any ]
|
|
1277
1293
|
/**
|
|
1278
1294
|
* Retrieves the value of `property_name` for `stylable,` and puts it
|
|
1279
1295
|
* into `value`.
|
|
1280
1296
|
* @param property_name the name of the property
|
|
1281
1297
|
*/
|
|
1282
|
-
get_property(property_name: string
|
|
1298
|
+
get_property(property_name: string): /* value */ any
|
|
1283
1299
|
|
|
1284
1300
|
// Overloads of get_property
|
|
1285
1301
|
|
|
@@ -1303,7 +1319,7 @@ export interface Stylable {
|
|
|
1303
1319
|
* @param property_name the name of the property to get
|
|
1304
1320
|
* @param value return location for the property value
|
|
1305
1321
|
*/
|
|
1306
|
-
get_property(property_name: string
|
|
1322
|
+
get_property(property_name: string, value: any): void
|
|
1307
1323
|
/**
|
|
1308
1324
|
* Retrieves the #MxStyle used by `stylable`. This function does not
|
|
1309
1325
|
* alter the reference count of the returned object.
|
|
@@ -1314,13 +1330,13 @@ export interface Stylable {
|
|
|
1314
1330
|
* Get the current style class name
|
|
1315
1331
|
* @returns the class name string. The string is owned by the #MxWidget and should not be modified or freed.
|
|
1316
1332
|
*/
|
|
1317
|
-
get_style_class(): string
|
|
1333
|
+
get_style_class(): string
|
|
1318
1334
|
/**
|
|
1319
1335
|
* Get the current style pseudo class. This can contain multiple pseudo class
|
|
1320
1336
|
* names, separated by ':'.
|
|
1321
1337
|
* @returns the pseudo class string. The string is owned by the #MxWidget and should not be modified or freed.
|
|
1322
1338
|
*/
|
|
1323
|
-
get_style_pseudo_class(): string
|
|
1339
|
+
get_style_pseudo_class(): string
|
|
1324
1340
|
/**
|
|
1325
1341
|
* Retrieves all the #GParamSpec<!-- -->s installed by `stylable`.
|
|
1326
1342
|
* @returns an array of #GParamSpec<!-- -->s. Free it with g_free() when done.
|
|
@@ -1340,13 +1356,13 @@ export interface Stylable {
|
|
|
1340
1356
|
* Set the style class name
|
|
1341
1357
|
* @param style_class a new style class string
|
|
1342
1358
|
*/
|
|
1343
|
-
set_style_class(style_class: string
|
|
1359
|
+
set_style_class(style_class: string): void
|
|
1344
1360
|
/**
|
|
1345
1361
|
* Set the style pseudo class. The string can contain multiple pseudo class
|
|
1346
1362
|
* names, separated by ':'.
|
|
1347
1363
|
* @param pseudo_class a new pseudo class string
|
|
1348
1364
|
*/
|
|
1349
|
-
set_style_pseudo_class(pseudo_class: string
|
|
1365
|
+
set_style_pseudo_class(pseudo_class: string): void
|
|
1350
1366
|
/**
|
|
1351
1367
|
* Emit the "style-changed" signal on `stylable` to notify it that one or more
|
|
1352
1368
|
* of the style properties has changed.
|
|
@@ -1362,20 +1378,20 @@ export interface Stylable {
|
|
|
1362
1378
|
* #MxStylable:style-pseudo-class property.
|
|
1363
1379
|
* @param new_class A pseudo-class name to add
|
|
1364
1380
|
*/
|
|
1365
|
-
style_pseudo_class_add(new_class: string
|
|
1381
|
+
style_pseudo_class_add(new_class: string): void
|
|
1366
1382
|
/**
|
|
1367
1383
|
* Check if the given pseudo-class name is contained in the list of
|
|
1368
1384
|
* set pseudo classes on this #MxStylable object.
|
|
1369
1385
|
* @param pseudo_class A pseudo-class name
|
|
1370
1386
|
* @returns %TRUE if the given pseudo-class is set, %FALSE otherwise
|
|
1371
1387
|
*/
|
|
1372
|
-
style_pseudo_class_contains(pseudo_class: string
|
|
1388
|
+
style_pseudo_class_contains(pseudo_class: string): boolean
|
|
1373
1389
|
/**
|
|
1374
1390
|
* Remove the specified pseudo class name from the list of pseudo classes
|
|
1375
1391
|
* contained in the #MxStylable:style-pseudo-class property.
|
|
1376
1392
|
* @param remove_class A pseudo class name to remove
|
|
1377
1393
|
*/
|
|
1378
|
-
style_pseudo_class_remove(remove_class: string
|
|
1394
|
+
style_pseudo_class_remove(remove_class: string): void
|
|
1379
1395
|
|
|
1380
1396
|
// Own virtual methods of Mx-1.0.Mx.Stylable
|
|
1381
1397
|
|
|
@@ -1391,14 +1407,14 @@ export interface Stylable {
|
|
|
1391
1407
|
* @virtual
|
|
1392
1408
|
* @returns the class name string. The string is owned by the #MxWidget and should not be modified or freed.
|
|
1393
1409
|
*/
|
|
1394
|
-
vfunc_get_style_class(): string
|
|
1410
|
+
vfunc_get_style_class(): string
|
|
1395
1411
|
/**
|
|
1396
1412
|
* Get the current style pseudo class. This can contain multiple pseudo class
|
|
1397
1413
|
* names, separated by ':'.
|
|
1398
1414
|
* @virtual
|
|
1399
1415
|
* @returns the pseudo class string. The string is owned by the #MxWidget and should not be modified or freed.
|
|
1400
1416
|
*/
|
|
1401
|
-
vfunc_get_style_pseudo_class(): string
|
|
1417
|
+
vfunc_get_style_pseudo_class(): string
|
|
1402
1418
|
/**
|
|
1403
1419
|
* Sets `style` as the new #MxStyle to be used by `stylable`.
|
|
1404
1420
|
*
|
|
@@ -1415,14 +1431,14 @@ export interface Stylable {
|
|
|
1415
1431
|
* @virtual
|
|
1416
1432
|
* @param style_class a new style class string
|
|
1417
1433
|
*/
|
|
1418
|
-
vfunc_set_style_class(style_class: string
|
|
1434
|
+
vfunc_set_style_class(style_class: string): void
|
|
1419
1435
|
/**
|
|
1420
1436
|
* Set the style pseudo class. The string can contain multiple pseudo class
|
|
1421
1437
|
* names, separated by ':'.
|
|
1422
1438
|
* @virtual
|
|
1423
1439
|
* @param pseudo_class a new pseudo class string
|
|
1424
1440
|
*/
|
|
1425
|
-
vfunc_set_style_pseudo_class(pseudo_class: string
|
|
1441
|
+
vfunc_set_style_pseudo_class(pseudo_class: string): void
|
|
1426
1442
|
/**
|
|
1427
1443
|
* Emit the "style-changed" signal on `stylable` to notify it that one or more
|
|
1428
1444
|
* of the style properties has changed.
|
|
@@ -1539,6 +1555,7 @@ export module Action {
|
|
|
1539
1555
|
active?: boolean | null
|
|
1540
1556
|
display_name?: string | null
|
|
1541
1557
|
icon?: string | null
|
|
1558
|
+
displayName?: string | null
|
|
1542
1559
|
}
|
|
1543
1560
|
|
|
1544
1561
|
}
|
|
@@ -1549,6 +1566,7 @@ export interface Action extends Gio.Action {
|
|
|
1549
1566
|
|
|
1550
1567
|
active: boolean
|
|
1551
1568
|
display_name: string | null
|
|
1569
|
+
displayName: string | null
|
|
1552
1570
|
icon: string | null
|
|
1553
1571
|
|
|
1554
1572
|
// Owm methods of Mx-1.0.Mx.Action
|
|
@@ -1562,17 +1580,17 @@ export interface Action extends Gio.Action {
|
|
|
1562
1580
|
* Get the display name of the action
|
|
1563
1581
|
* @returns display-name of the action, owned by MxAction
|
|
1564
1582
|
*/
|
|
1565
|
-
get_display_name(): string
|
|
1583
|
+
get_display_name(): string
|
|
1566
1584
|
/**
|
|
1567
1585
|
* Get the icon of the action
|
|
1568
1586
|
* @returns icon of the action, owned by MxAction
|
|
1569
1587
|
*/
|
|
1570
|
-
get_icon(): string
|
|
1588
|
+
get_icon(): string
|
|
1571
1589
|
/**
|
|
1572
1590
|
* Get the name of the action
|
|
1573
1591
|
* @returns name of the action, owned by MxAction
|
|
1574
1592
|
*/
|
|
1575
|
-
get_name(): string
|
|
1593
|
+
get_name(): string
|
|
1576
1594
|
/**
|
|
1577
1595
|
* Set the value of the active property
|
|
1578
1596
|
* @param active the value to set
|
|
@@ -1582,17 +1600,17 @@ export interface Action extends Gio.Action {
|
|
|
1582
1600
|
* Set the name of the action to display to the user
|
|
1583
1601
|
* @param name new display name to set
|
|
1584
1602
|
*/
|
|
1585
|
-
set_display_name(name: string
|
|
1603
|
+
set_display_name(name: string): void
|
|
1586
1604
|
/**
|
|
1587
1605
|
* The icon to be used in a visual representation of an action.
|
|
1588
1606
|
* @param name new icon to set
|
|
1589
1607
|
*/
|
|
1590
|
-
set_icon(name: string
|
|
1608
|
+
set_icon(name: string): void
|
|
1591
1609
|
/**
|
|
1592
1610
|
* Set the name of the action
|
|
1593
1611
|
* @param name new name to set
|
|
1594
1612
|
*/
|
|
1595
|
-
set_name(name: string
|
|
1613
|
+
set_name(name: string): void
|
|
1596
1614
|
|
|
1597
1615
|
// Own virtual methods of Mx-1.0.Mx.Action
|
|
1598
1616
|
|
|
@@ -1674,7 +1692,7 @@ export class Action extends GObject.InitiallyUnowned {
|
|
|
1674
1692
|
* @param activated_cb callback to connect to the activated signal
|
|
1675
1693
|
* @returns a newly allocated #MxAction
|
|
1676
1694
|
*/
|
|
1677
|
-
static new_full(name: string
|
|
1695
|
+
static new_full(name: string, display_name: string, activated_cb: ActionCallbackFunc | null): Action
|
|
1678
1696
|
/**
|
|
1679
1697
|
* Creates a new stateful action.
|
|
1680
1698
|
*
|
|
@@ -1686,7 +1704,7 @@ export class Action extends GObject.InitiallyUnowned {
|
|
|
1686
1704
|
* @param state the initial state of the action
|
|
1687
1705
|
* @returns a new #MxAction
|
|
1688
1706
|
*/
|
|
1689
|
-
static new_stateful(name: string
|
|
1707
|
+
static new_stateful(name: string, parameter_type: GLib.VariantType | null, state: GLib.Variant): Action
|
|
1690
1708
|
/**
|
|
1691
1709
|
* Creates a new action with a parameter.
|
|
1692
1710
|
*
|
|
@@ -1696,7 +1714,7 @@ export class Action extends GObject.InitiallyUnowned {
|
|
|
1696
1714
|
* @param parameter_type the type of parameter to the activate function
|
|
1697
1715
|
* @returns a new #MxAction
|
|
1698
1716
|
*/
|
|
1699
|
-
static new_with_parameter(name: string
|
|
1717
|
+
static new_with_parameter(name: string, parameter_type?: GLib.VariantType | null): Action
|
|
1700
1718
|
_init(config?: Action.ConstructorProperties): void
|
|
1701
1719
|
}
|
|
1702
1720
|
|
|
@@ -1762,6 +1780,7 @@ export module ActorManager {
|
|
|
1762
1780
|
|
|
1763
1781
|
stage?: Clutter.Stage | null
|
|
1764
1782
|
time_slice?: number | null
|
|
1783
|
+
timeSlice?: number | null
|
|
1765
1784
|
}
|
|
1766
1785
|
|
|
1767
1786
|
}
|
|
@@ -1771,8 +1790,10 @@ export interface ActorManager {
|
|
|
1771
1790
|
// Own properties of Mx-1.0.Mx.ActorManager
|
|
1772
1791
|
|
|
1773
1792
|
readonly n_operations: number
|
|
1793
|
+
readonly nOperations: number
|
|
1774
1794
|
readonly stage: Clutter.Stage
|
|
1775
1795
|
time_slice: number
|
|
1796
|
+
timeSlice: number
|
|
1776
1797
|
|
|
1777
1798
|
// Own fields of Mx-1.0.Mx.ActorManager
|
|
1778
1799
|
|
|
@@ -1990,6 +2011,10 @@ export module Adjustment {
|
|
|
1990
2011
|
step_increment?: number | null
|
|
1991
2012
|
upper?: number | null
|
|
1992
2013
|
value?: number | null
|
|
2014
|
+
clampValue?: boolean | null
|
|
2015
|
+
pageIncrement?: number | null
|
|
2016
|
+
pageSize?: number | null
|
|
2017
|
+
stepIncrement?: number | null
|
|
1993
2018
|
}
|
|
1994
2019
|
|
|
1995
2020
|
}
|
|
@@ -1999,11 +2024,15 @@ export interface Adjustment {
|
|
|
1999
2024
|
// Own properties of Mx-1.0.Mx.Adjustment
|
|
2000
2025
|
|
|
2001
2026
|
clamp_value: boolean
|
|
2027
|
+
clampValue: boolean
|
|
2002
2028
|
elastic: boolean
|
|
2003
2029
|
lower: number
|
|
2004
2030
|
page_increment: number
|
|
2031
|
+
pageIncrement: number
|
|
2005
2032
|
page_size: number
|
|
2033
|
+
pageSize: number
|
|
2006
2034
|
step_increment: number
|
|
2035
|
+
stepIncrement: number
|
|
2007
2036
|
upper: number
|
|
2008
2037
|
value: number
|
|
2009
2038
|
|
|
@@ -2235,6 +2264,7 @@ export module Application {
|
|
|
2235
2264
|
|
|
2236
2265
|
application_name?: string | null
|
|
2237
2266
|
flags?: number | null
|
|
2267
|
+
applicationName?: string | null
|
|
2238
2268
|
}
|
|
2239
2269
|
|
|
2240
2270
|
}
|
|
@@ -2244,6 +2274,7 @@ export interface Application {
|
|
|
2244
2274
|
// Own properties of Mx-1.0.Mx.Application
|
|
2245
2275
|
|
|
2246
2276
|
readonly application_name: string | null
|
|
2277
|
+
readonly applicationName: string | null
|
|
2247
2278
|
readonly flags: number
|
|
2248
2279
|
|
|
2249
2280
|
// Own fields of Mx-1.0.Mx.Application
|
|
@@ -2291,14 +2322,14 @@ export interface Application {
|
|
|
2291
2322
|
* Run the named action for the application.
|
|
2292
2323
|
* @param name name of the action to invoke
|
|
2293
2324
|
*/
|
|
2294
|
-
invoke_action(name: string
|
|
2325
|
+
invoke_action(name: string): void
|
|
2295
2326
|
/**
|
|
2296
2327
|
* Run the named action for the application, passing `variant` as the parameter
|
|
2297
2328
|
* for the action.
|
|
2298
2329
|
* @param name name of the action to invoke
|
|
2299
2330
|
* @param variant parameter for the action
|
|
2300
2331
|
*/
|
|
2301
|
-
invoke_action_with_parameter(name: string
|
|
2332
|
+
invoke_action_with_parameter(name: string, variant: GLib.Variant): void
|
|
2302
2333
|
/**
|
|
2303
2334
|
* Query whether #MxApplication is running. This will also return #TRUE if the
|
|
2304
2335
|
* given #MxApplication is single instance and there is an instance already
|
|
@@ -2315,7 +2346,7 @@ export interface Application {
|
|
|
2315
2346
|
* Remove the action with the specified name from the application.
|
|
2316
2347
|
* @param name name of the action to remove
|
|
2317
2348
|
*/
|
|
2318
|
-
remove_action(name: string
|
|
2349
|
+
remove_action(name: string): void
|
|
2319
2350
|
/**
|
|
2320
2351
|
* Remove the specified window from the application. This will cause the window
|
|
2321
2352
|
* to be unreferenced and destroyed unless another reference is held on it.
|
|
@@ -2386,7 +2417,7 @@ export class Application extends GObject.Object {
|
|
|
2386
2417
|
* @param flags Application flags.
|
|
2387
2418
|
* @returns the #MxApplication singleton.
|
|
2388
2419
|
*/
|
|
2389
|
-
constructor(argv: string[] | null, name: string
|
|
2420
|
+
constructor(argv: string[] | null, name: string, flags: ApplicationFlags)
|
|
2390
2421
|
/**
|
|
2391
2422
|
* Intialises everything needed to operate Clutter and use #MxApplication.
|
|
2392
2423
|
* See clutter_init().
|
|
@@ -2396,7 +2427,7 @@ export class Application extends GObject.Object {
|
|
|
2396
2427
|
* @param flags Application flags.
|
|
2397
2428
|
* @returns the #MxApplication singleton.
|
|
2398
2429
|
*/
|
|
2399
|
-
static new(argv: string[] | null, name: string
|
|
2430
|
+
static new(argv: string[] | null, name: string, flags: ApplicationFlags): Application
|
|
2400
2431
|
_init(config?: Application.ConstructorProperties): void
|
|
2401
2432
|
}
|
|
2402
2433
|
|
|
@@ -2428,6 +2459,22 @@ export module Bin {
|
|
|
2428
2459
|
* Whether the child should fill the vertical allocation
|
|
2429
2460
|
*/
|
|
2430
2461
|
y_fill?: boolean | null
|
|
2462
|
+
/**
|
|
2463
|
+
* The horizontal alignment of the #MxBin child.
|
|
2464
|
+
*/
|
|
2465
|
+
xAlign: any
|
|
2466
|
+
/**
|
|
2467
|
+
* Whether the child should fill the horizontal allocation
|
|
2468
|
+
*/
|
|
2469
|
+
xFill?: boolean | null
|
|
2470
|
+
/**
|
|
2471
|
+
* The vertical alignment of the #MxBin child.
|
|
2472
|
+
*/
|
|
2473
|
+
yAlign: any
|
|
2474
|
+
/**
|
|
2475
|
+
* Whether the child should fill the vertical allocation
|
|
2476
|
+
*/
|
|
2477
|
+
yFill?: boolean | null
|
|
2431
2478
|
}
|
|
2432
2479
|
|
|
2433
2480
|
}
|
|
@@ -2444,18 +2491,34 @@ export interface Bin extends Atk.ImplementorIface, Clutter.Animatable, Clutter.C
|
|
|
2444
2491
|
* The horizontal alignment of the #MxBin child.
|
|
2445
2492
|
*/
|
|
2446
2493
|
x_align: any
|
|
2494
|
+
/**
|
|
2495
|
+
* The horizontal alignment of the #MxBin child.
|
|
2496
|
+
*/
|
|
2497
|
+
xAlign: any
|
|
2447
2498
|
/**
|
|
2448
2499
|
* Whether the child should fill the horizontal allocation
|
|
2449
2500
|
*/
|
|
2450
2501
|
x_fill: boolean
|
|
2502
|
+
/**
|
|
2503
|
+
* Whether the child should fill the horizontal allocation
|
|
2504
|
+
*/
|
|
2505
|
+
xFill: boolean
|
|
2451
2506
|
/**
|
|
2452
2507
|
* The vertical alignment of the #MxBin child.
|
|
2453
2508
|
*/
|
|
2454
2509
|
y_align: any
|
|
2510
|
+
/**
|
|
2511
|
+
* The vertical alignment of the #MxBin child.
|
|
2512
|
+
*/
|
|
2513
|
+
yAlign: any
|
|
2455
2514
|
/**
|
|
2456
2515
|
* Whether the child should fill the vertical allocation
|
|
2457
2516
|
*/
|
|
2458
2517
|
y_fill: boolean
|
|
2518
|
+
/**
|
|
2519
|
+
* Whether the child should fill the vertical allocation
|
|
2520
|
+
*/
|
|
2521
|
+
yFill: boolean
|
|
2459
2522
|
|
|
2460
2523
|
// Owm methods of Mx-1.0.Mx.Bin
|
|
2461
2524
|
|
|
@@ -2515,7 +2578,7 @@ export interface Bin extends Atk.ImplementorIface, Clutter.Animatable, Clutter.C
|
|
|
2515
2578
|
* into `value`.
|
|
2516
2579
|
* @param property_name the name of the property
|
|
2517
2580
|
*/
|
|
2518
|
-
get_property(property_name: string
|
|
2581
|
+
get_property(property_name: string): /* value */ any
|
|
2519
2582
|
|
|
2520
2583
|
// Overloads of get_property
|
|
2521
2584
|
|
|
@@ -2539,7 +2602,7 @@ export interface Bin extends Atk.ImplementorIface, Clutter.Animatable, Clutter.C
|
|
|
2539
2602
|
* @param property_name the name of the property to get
|
|
2540
2603
|
* @param value return location for the property value
|
|
2541
2604
|
*/
|
|
2542
|
-
get_property(property_name: string
|
|
2605
|
+
get_property(property_name: string, value: any): void
|
|
2543
2606
|
/**
|
|
2544
2607
|
* Gets a property of an object.
|
|
2545
2608
|
*
|
|
@@ -2560,7 +2623,7 @@ export interface Bin extends Atk.ImplementorIface, Clutter.Animatable, Clutter.C
|
|
|
2560
2623
|
* @param property_name the name of the property to get
|
|
2561
2624
|
* @param value return location for the property value
|
|
2562
2625
|
*/
|
|
2563
|
-
get_property(property_name: string
|
|
2626
|
+
get_property(property_name: string, value: any): void
|
|
2564
2627
|
|
|
2565
2628
|
// Class property signals of Mx-1.0.Mx.Bin
|
|
2566
2629
|
|
|
@@ -2875,6 +2938,8 @@ export module BoxLayout {
|
|
|
2875
2938
|
orientation?: Orientation | null
|
|
2876
2939
|
scroll_to_focused?: boolean | null
|
|
2877
2940
|
spacing?: number | null
|
|
2941
|
+
enableAnimations?: boolean | null
|
|
2942
|
+
scrollToFocused?: boolean | null
|
|
2878
2943
|
}
|
|
2879
2944
|
|
|
2880
2945
|
}
|
|
@@ -2884,8 +2949,10 @@ export interface BoxLayout extends Atk.ImplementorIface, Clutter.Animatable, Clu
|
|
|
2884
2949
|
// Own properties of Mx-1.0.Mx.BoxLayout
|
|
2885
2950
|
|
|
2886
2951
|
enable_animations: boolean
|
|
2952
|
+
enableAnimations: boolean
|
|
2887
2953
|
orientation: Orientation
|
|
2888
2954
|
scroll_to_focused: boolean
|
|
2955
|
+
scrollToFocused: boolean
|
|
2889
2956
|
spacing: number
|
|
2890
2957
|
|
|
2891
2958
|
// Owm methods of Mx-1.0.Mx.BoxLayout
|
|
@@ -3019,7 +3086,7 @@ export interface BoxLayout extends Atk.ImplementorIface, Clutter.Animatable, Clu
|
|
|
3019
3086
|
* into `value`.
|
|
3020
3087
|
* @param property_name the name of the property
|
|
3021
3088
|
*/
|
|
3022
|
-
get_property(property_name: string
|
|
3089
|
+
get_property(property_name: string): /* value */ any
|
|
3023
3090
|
|
|
3024
3091
|
// Overloads of get_property
|
|
3025
3092
|
|
|
@@ -3043,7 +3110,7 @@ export interface BoxLayout extends Atk.ImplementorIface, Clutter.Animatable, Clu
|
|
|
3043
3110
|
* @param property_name the name of the property to get
|
|
3044
3111
|
* @param value return location for the property value
|
|
3045
3112
|
*/
|
|
3046
|
-
get_property(property_name: string
|
|
3113
|
+
get_property(property_name: string, value: any): void
|
|
3047
3114
|
/**
|
|
3048
3115
|
* Gets a property of an object.
|
|
3049
3116
|
*
|
|
@@ -3064,7 +3131,7 @@ export interface BoxLayout extends Atk.ImplementorIface, Clutter.Animatable, Clu
|
|
|
3064
3131
|
* @param property_name the name of the property to get
|
|
3065
3132
|
* @param value return location for the property value
|
|
3066
3133
|
*/
|
|
3067
|
-
get_property(property_name: string
|
|
3134
|
+
get_property(property_name: string, value: any): void
|
|
3068
3135
|
|
|
3069
3136
|
// Class property signals of Mx-1.0.Mx.BoxLayout
|
|
3070
3137
|
|
|
@@ -3402,6 +3469,10 @@ export module BoxLayoutChild {
|
|
|
3402
3469
|
x_fill?: boolean | null
|
|
3403
3470
|
y_align?: Align | null
|
|
3404
3471
|
y_fill?: boolean | null
|
|
3472
|
+
xAlign?: Align | null
|
|
3473
|
+
xFill?: boolean | null
|
|
3474
|
+
yAlign?: Align | null
|
|
3475
|
+
yFill?: boolean | null
|
|
3405
3476
|
}
|
|
3406
3477
|
|
|
3407
3478
|
}
|
|
@@ -3412,9 +3483,13 @@ export interface BoxLayoutChild {
|
|
|
3412
3483
|
|
|
3413
3484
|
expand: boolean
|
|
3414
3485
|
x_align: Align
|
|
3486
|
+
xAlign: Align
|
|
3415
3487
|
x_fill: boolean
|
|
3488
|
+
xFill: boolean
|
|
3416
3489
|
y_align: Align
|
|
3490
|
+
yAlign: Align
|
|
3417
3491
|
y_fill: boolean
|
|
3492
|
+
yFill: boolean
|
|
3418
3493
|
|
|
3419
3494
|
// Class property signals of Mx-1.0.Mx.BoxLayoutChild
|
|
3420
3495
|
|
|
@@ -3484,6 +3559,12 @@ export module Button {
|
|
|
3484
3559
|
label?: string | null
|
|
3485
3560
|
label_visible?: boolean | null
|
|
3486
3561
|
toggled?: boolean | null
|
|
3562
|
+
iconName?: string | null
|
|
3563
|
+
iconPosition?: Position | null
|
|
3564
|
+
iconSize?: number | null
|
|
3565
|
+
iconVisible?: boolean | null
|
|
3566
|
+
isToggle?: boolean | null
|
|
3567
|
+
labelVisible?: boolean | null
|
|
3487
3568
|
}
|
|
3488
3569
|
|
|
3489
3570
|
}
|
|
@@ -3494,18 +3575,26 @@ export interface Button extends Atk.ImplementorIface, Clutter.Animatable, Clutte
|
|
|
3494
3575
|
|
|
3495
3576
|
action: Action
|
|
3496
3577
|
icon_name: string | null
|
|
3578
|
+
iconName: string | null
|
|
3497
3579
|
icon_position: Position
|
|
3580
|
+
iconPosition: Position
|
|
3498
3581
|
icon_size: number
|
|
3582
|
+
iconSize: number
|
|
3499
3583
|
icon_visible: boolean
|
|
3584
|
+
iconVisible: boolean
|
|
3500
3585
|
is_toggle: boolean
|
|
3586
|
+
isToggle: boolean
|
|
3501
3587
|
label: string | null
|
|
3502
3588
|
label_visible: boolean
|
|
3589
|
+
labelVisible: boolean
|
|
3503
3590
|
toggled: boolean
|
|
3504
3591
|
|
|
3505
3592
|
// Conflicting properties
|
|
3506
3593
|
|
|
3507
3594
|
x_align: any
|
|
3595
|
+
xAlign: any
|
|
3508
3596
|
y_align: any
|
|
3597
|
+
yAlign: any
|
|
3509
3598
|
|
|
3510
3599
|
// Owm methods of Mx-1.0.Mx.Button
|
|
3511
3600
|
|
|
@@ -3523,12 +3612,12 @@ export interface Button extends Atk.ImplementorIface, Clutter.Animatable, Clutte
|
|
|
3523
3612
|
* @param name the name of the action to retrieve
|
|
3524
3613
|
* @returns a #ClutterAction for the given name, or %NULL. The returned #ClutterAction is owned by the actor and it should not be unreferenced directly
|
|
3525
3614
|
*/
|
|
3526
|
-
get_action(name: string
|
|
3615
|
+
get_action(name: string): Clutter.Action
|
|
3527
3616
|
/**
|
|
3528
3617
|
* Get the icon-name being used on the button.
|
|
3529
3618
|
* @returns the icon-name. This must not be freed by the application. %NULL if no icon has been set
|
|
3530
3619
|
*/
|
|
3531
|
-
get_icon_name(): string
|
|
3620
|
+
get_icon_name(): string
|
|
3532
3621
|
/**
|
|
3533
3622
|
* Retrieves the icon's relative position to the text.
|
|
3534
3623
|
* @returns A #MxPosition
|
|
@@ -3553,7 +3642,7 @@ export interface Button extends Atk.ImplementorIface, Clutter.Animatable, Clutte
|
|
|
3553
3642
|
* Get the text displayed on the button
|
|
3554
3643
|
* @returns the text for the button. This must not be freed by the application
|
|
3555
3644
|
*/
|
|
3556
|
-
get_label(): string
|
|
3645
|
+
get_label(): string
|
|
3557
3646
|
/**
|
|
3558
3647
|
* Retrieves the visibility of the text associated with the button's action.
|
|
3559
3648
|
* @returns %TRUE if the text is visible, %FALSE otherwise
|
|
@@ -3604,7 +3693,7 @@ export interface Button extends Atk.ImplementorIface, Clutter.Animatable, Clutte
|
|
|
3604
3693
|
* Sets the text displayed on the button
|
|
3605
3694
|
* @param text text to set the label to
|
|
3606
3695
|
*/
|
|
3607
|
-
set_label(text: string
|
|
3696
|
+
set_label(text: string): void
|
|
3608
3697
|
/**
|
|
3609
3698
|
* Sets the visibility of the text associated with the button's action.
|
|
3610
3699
|
* @param visible %TRUE if the text should be visible
|
|
@@ -3624,7 +3713,7 @@ export interface Button extends Atk.ImplementorIface, Clutter.Animatable, Clutte
|
|
|
3624
3713
|
* into `value`.
|
|
3625
3714
|
* @param property_name the name of the property
|
|
3626
3715
|
*/
|
|
3627
|
-
get_property(property_name: string
|
|
3716
|
+
get_property(property_name: string): /* value */ any
|
|
3628
3717
|
|
|
3629
3718
|
// Overloads of get_property
|
|
3630
3719
|
|
|
@@ -3648,7 +3737,7 @@ export interface Button extends Atk.ImplementorIface, Clutter.Animatable, Clutte
|
|
|
3648
3737
|
* @param property_name the name of the property to get
|
|
3649
3738
|
* @param value return location for the property value
|
|
3650
3739
|
*/
|
|
3651
|
-
get_property(property_name: string
|
|
3740
|
+
get_property(property_name: string, value: any): void
|
|
3652
3741
|
/**
|
|
3653
3742
|
* Gets a property of an object.
|
|
3654
3743
|
*
|
|
@@ -3669,7 +3758,7 @@ export interface Button extends Atk.ImplementorIface, Clutter.Animatable, Clutte
|
|
|
3669
3758
|
* @param property_name the name of the property to get
|
|
3670
3759
|
* @param value return location for the property value
|
|
3671
3760
|
*/
|
|
3672
|
-
get_property(property_name: string
|
|
3761
|
+
get_property(property_name: string, value: any): void
|
|
3673
3762
|
|
|
3674
3763
|
// Own virtual methods of Mx-1.0.Mx.Button
|
|
3675
3764
|
|
|
@@ -4025,7 +4114,7 @@ export class Button extends Bin {
|
|
|
4025
4114
|
* @param text text to set the label to
|
|
4026
4115
|
* @returns a new #MxButton
|
|
4027
4116
|
*/
|
|
4028
|
-
static new_with_label(text: string
|
|
4117
|
+
static new_with_label(text: string): Button
|
|
4029
4118
|
_init(config?: Button.ConstructorProperties): void
|
|
4030
4119
|
}
|
|
4031
4120
|
|
|
@@ -4039,6 +4128,8 @@ export module ButtonGroup {
|
|
|
4039
4128
|
|
|
4040
4129
|
active_button?: Button | null
|
|
4041
4130
|
allow_no_active?: boolean | null
|
|
4131
|
+
activeButton?: Button | null
|
|
4132
|
+
allowNoActive?: boolean | null
|
|
4042
4133
|
}
|
|
4043
4134
|
|
|
4044
4135
|
}
|
|
@@ -4048,7 +4139,9 @@ export interface ButtonGroup {
|
|
|
4048
4139
|
// Own properties of Mx-1.0.Mx.ButtonGroup
|
|
4049
4140
|
|
|
4050
4141
|
active_button: Button
|
|
4142
|
+
activeButton: Button
|
|
4051
4143
|
allow_no_active: boolean
|
|
4144
|
+
allowNoActive: boolean
|
|
4052
4145
|
|
|
4053
4146
|
// Own fields of Mx-1.0.Mx.ButtonGroup
|
|
4054
4147
|
|
|
@@ -4166,7 +4259,7 @@ export interface Clipboard {
|
|
|
4166
4259
|
* Sets text as the current contents of the clipboard.
|
|
4167
4260
|
* @param text text to copy to the clipboard
|
|
4168
4261
|
*/
|
|
4169
|
-
set_text(text: string
|
|
4262
|
+
set_text(text: string): void
|
|
4170
4263
|
|
|
4171
4264
|
// Class property signals of Mx-1.0.Mx.Clipboard
|
|
4172
4265
|
|
|
@@ -4210,6 +4303,8 @@ export module ComboBox {
|
|
|
4210
4303
|
active_icon_name?: string | null
|
|
4211
4304
|
active_text?: string | null
|
|
4212
4305
|
index?: number | null
|
|
4306
|
+
activeIconName?: string | null
|
|
4307
|
+
activeText?: string | null
|
|
4213
4308
|
}
|
|
4214
4309
|
|
|
4215
4310
|
}
|
|
@@ -4219,7 +4314,9 @@ export interface ComboBox extends Atk.ImplementorIface, Clutter.Animatable, Clut
|
|
|
4219
4314
|
// Own properties of Mx-1.0.Mx.ComboBox
|
|
4220
4315
|
|
|
4221
4316
|
active_icon_name: string | null
|
|
4317
|
+
activeIconName: string | null
|
|
4222
4318
|
active_text: string | null
|
|
4319
|
+
activeText: string | null
|
|
4223
4320
|
index: number
|
|
4224
4321
|
|
|
4225
4322
|
// Owm methods of Mx-1.0.Mx.ComboBox
|
|
@@ -4228,17 +4325,17 @@ export interface ComboBox extends Atk.ImplementorIface, Clutter.Animatable, Clut
|
|
|
4228
4325
|
* Append an item to the combo box list
|
|
4229
4326
|
* @param text name of the item
|
|
4230
4327
|
*/
|
|
4231
|
-
append_text(text: string
|
|
4328
|
+
append_text(text: string): void
|
|
4232
4329
|
/**
|
|
4233
4330
|
* Get the name of the icon displayed in the combo box
|
|
4234
4331
|
* @returns the text string of the name of the displayed icon, owned by the combo box, or %NULL if there is no active icon.
|
|
4235
4332
|
*/
|
|
4236
|
-
get_active_icon_name(): string
|
|
4333
|
+
get_active_icon_name(): string
|
|
4237
4334
|
/**
|
|
4238
4335
|
* Get the text displayed in the combo box
|
|
4239
4336
|
* @returns the text string, owned by the combo box
|
|
4240
4337
|
*/
|
|
4241
|
-
get_active_text(): string
|
|
4338
|
+
get_active_text(): string
|
|
4242
4339
|
/**
|
|
4243
4340
|
* Get the index of the last item selected
|
|
4244
4341
|
* @returns gint
|
|
@@ -4249,19 +4346,19 @@ export interface ComboBox extends Atk.ImplementorIface, Clutter.Animatable, Clut
|
|
|
4249
4346
|
* @param position zero indexed position to insert the item at
|
|
4250
4347
|
* @param text name of the item
|
|
4251
4348
|
*/
|
|
4252
|
-
insert_text(position: number, text: string
|
|
4349
|
+
insert_text(position: number, text: string): void
|
|
4253
4350
|
/**
|
|
4254
4351
|
* Insert an item with text and an icon into the combo box list.
|
|
4255
4352
|
* @param position zero indexed position to insert the item at
|
|
4256
4353
|
* @param text name of the item
|
|
4257
4354
|
* @param icon name of an icon from the icon theme
|
|
4258
4355
|
*/
|
|
4259
|
-
insert_text_with_icon(position: number, text: string
|
|
4356
|
+
insert_text_with_icon(position: number, text: string, icon: string): void
|
|
4260
4357
|
/**
|
|
4261
4358
|
* Prepend an item to the combo box list
|
|
4262
4359
|
* @param text name of the item
|
|
4263
4360
|
*/
|
|
4264
|
-
prepend_text(text: string
|
|
4361
|
+
prepend_text(text: string): void
|
|
4265
4362
|
/**
|
|
4266
4363
|
* Remove all the items of `box`
|
|
4267
4364
|
*/
|
|
@@ -4280,7 +4377,7 @@ export interface ComboBox extends Atk.ImplementorIface, Clutter.Animatable, Clut
|
|
|
4280
4377
|
* Set the text displayed in the combo box
|
|
4281
4378
|
* @param text text to display
|
|
4282
4379
|
*/
|
|
4283
|
-
set_active_text(text: string
|
|
4380
|
+
set_active_text(text: string): void
|
|
4284
4381
|
/**
|
|
4285
4382
|
* Set the current combo box text from the item at `index` in the list.
|
|
4286
4383
|
* @param index the index of the list item to set
|
|
@@ -4294,7 +4391,7 @@ export interface ComboBox extends Atk.ImplementorIface, Clutter.Animatable, Clut
|
|
|
4294
4391
|
* into `value`.
|
|
4295
4392
|
* @param property_name the name of the property
|
|
4296
4393
|
*/
|
|
4297
|
-
get_property(property_name: string
|
|
4394
|
+
get_property(property_name: string): /* value */ any
|
|
4298
4395
|
|
|
4299
4396
|
// Overloads of get_property
|
|
4300
4397
|
|
|
@@ -4318,7 +4415,7 @@ export interface ComboBox extends Atk.ImplementorIface, Clutter.Animatable, Clut
|
|
|
4318
4415
|
* @param property_name the name of the property to get
|
|
4319
4416
|
* @param value return location for the property value
|
|
4320
4417
|
*/
|
|
4321
|
-
get_property(property_name: string
|
|
4418
|
+
get_property(property_name: string, value: any): void
|
|
4322
4419
|
/**
|
|
4323
4420
|
* Gets a property of an object.
|
|
4324
4421
|
*
|
|
@@ -4339,7 +4436,7 @@ export interface ComboBox extends Atk.ImplementorIface, Clutter.Animatable, Clut
|
|
|
4339
4436
|
* @param property_name the name of the property to get
|
|
4340
4437
|
* @param value return location for the property value
|
|
4341
4438
|
*/
|
|
4342
|
-
get_property(property_name: string
|
|
4439
|
+
get_property(property_name: string, value: any): void
|
|
4343
4440
|
|
|
4344
4441
|
// Class property signals of Mx-1.0.Mx.ComboBox
|
|
4345
4442
|
|
|
@@ -4665,6 +4762,7 @@ export module DeformBowTie {
|
|
|
4665
4762
|
|
|
4666
4763
|
flip_back?: boolean | null
|
|
4667
4764
|
period?: number | null
|
|
4765
|
+
flipBack?: boolean | null
|
|
4668
4766
|
}
|
|
4669
4767
|
|
|
4670
4768
|
}
|
|
@@ -4674,6 +4772,7 @@ export interface DeformBowTie extends Atk.ImplementorIface, Clutter.Animatable,
|
|
|
4674
4772
|
// Own properties of Mx-1.0.Mx.DeformBowTie
|
|
4675
4773
|
|
|
4676
4774
|
flip_back: boolean
|
|
4775
|
+
flipBack: boolean
|
|
4677
4776
|
period: number
|
|
4678
4777
|
|
|
4679
4778
|
// Own fields of Mx-1.0.Mx.DeformBowTie
|
|
@@ -4695,7 +4794,7 @@ export interface DeformBowTie extends Atk.ImplementorIface, Clutter.Animatable,
|
|
|
4695
4794
|
* into `value`.
|
|
4696
4795
|
* @param property_name the name of the property
|
|
4697
4796
|
*/
|
|
4698
|
-
get_property(property_name: string
|
|
4797
|
+
get_property(property_name: string): /* value */ any
|
|
4699
4798
|
|
|
4700
4799
|
// Overloads of get_property
|
|
4701
4800
|
|
|
@@ -4719,7 +4818,7 @@ export interface DeformBowTie extends Atk.ImplementorIface, Clutter.Animatable,
|
|
|
4719
4818
|
* @param property_name the name of the property to get
|
|
4720
4819
|
* @param value return location for the property value
|
|
4721
4820
|
*/
|
|
4722
|
-
get_property(property_name: string
|
|
4821
|
+
get_property(property_name: string, value: any): void
|
|
4723
4822
|
/**
|
|
4724
4823
|
* Gets a property of an object.
|
|
4725
4824
|
*
|
|
@@ -4740,7 +4839,7 @@ export interface DeformBowTie extends Atk.ImplementorIface, Clutter.Animatable,
|
|
|
4740
4839
|
* @param property_name the name of the property to get
|
|
4741
4840
|
* @param value return location for the property value
|
|
4742
4841
|
*/
|
|
4743
|
-
get_property(property_name: string
|
|
4842
|
+
get_property(property_name: string, value: any): void
|
|
4744
4843
|
|
|
4745
4844
|
// Class property signals of Mx-1.0.Mx.DeformBowTie
|
|
4746
4845
|
|
|
@@ -5099,7 +5198,7 @@ export interface DeformPageTurn extends Atk.ImplementorIface, Clutter.Animatable
|
|
|
5099
5198
|
* into `value`.
|
|
5100
5199
|
* @param property_name the name of the property
|
|
5101
5200
|
*/
|
|
5102
|
-
get_property(property_name: string
|
|
5201
|
+
get_property(property_name: string): /* value */ any
|
|
5103
5202
|
|
|
5104
5203
|
// Overloads of get_property
|
|
5105
5204
|
|
|
@@ -5123,7 +5222,7 @@ export interface DeformPageTurn extends Atk.ImplementorIface, Clutter.Animatable
|
|
|
5123
5222
|
* @param property_name the name of the property to get
|
|
5124
5223
|
* @param value return location for the property value
|
|
5125
5224
|
*/
|
|
5126
|
-
get_property(property_name: string
|
|
5225
|
+
get_property(property_name: string, value: any): void
|
|
5127
5226
|
/**
|
|
5128
5227
|
* Gets a property of an object.
|
|
5129
5228
|
*
|
|
@@ -5144,7 +5243,7 @@ export interface DeformPageTurn extends Atk.ImplementorIface, Clutter.Animatable
|
|
|
5144
5243
|
* @param property_name the name of the property to get
|
|
5145
5244
|
* @param value return location for the property value
|
|
5146
5245
|
*/
|
|
5147
|
-
get_property(property_name: string
|
|
5246
|
+
get_property(property_name: string, value: any): void
|
|
5148
5247
|
|
|
5149
5248
|
// Class property signals of Mx-1.0.Mx.DeformPageTurn
|
|
5150
5249
|
|
|
@@ -5474,6 +5573,8 @@ export module DeformTexture {
|
|
|
5474
5573
|
front?: Clutter.Texture | null
|
|
5475
5574
|
tiles_x?: number | null
|
|
5476
5575
|
tiles_y?: number | null
|
|
5576
|
+
tilesX?: number | null
|
|
5577
|
+
tilesY?: number | null
|
|
5477
5578
|
}
|
|
5478
5579
|
|
|
5479
5580
|
}
|
|
@@ -5485,7 +5586,9 @@ export interface DeformTexture extends Atk.ImplementorIface, Clutter.Animatable,
|
|
|
5485
5586
|
back: Clutter.Texture
|
|
5486
5587
|
front: Clutter.Texture
|
|
5487
5588
|
tiles_x: number
|
|
5589
|
+
tilesX: number
|
|
5488
5590
|
tiles_y: number
|
|
5591
|
+
tilesY: number
|
|
5489
5592
|
|
|
5490
5593
|
// Own fields of Mx-1.0.Mx.DeformTexture
|
|
5491
5594
|
|
|
@@ -5529,7 +5632,7 @@ export interface DeformTexture extends Atk.ImplementorIface, Clutter.Animatable,
|
|
|
5529
5632
|
* into `value`.
|
|
5530
5633
|
* @param property_name the name of the property
|
|
5531
5634
|
*/
|
|
5532
|
-
get_property(property_name: string
|
|
5635
|
+
get_property(property_name: string): /* value */ any
|
|
5533
5636
|
|
|
5534
5637
|
// Overloads of get_property
|
|
5535
5638
|
|
|
@@ -5553,7 +5656,7 @@ export interface DeformTexture extends Atk.ImplementorIface, Clutter.Animatable,
|
|
|
5553
5656
|
* @param property_name the name of the property to get
|
|
5554
5657
|
* @param value return location for the property value
|
|
5555
5658
|
*/
|
|
5556
|
-
get_property(property_name: string
|
|
5659
|
+
get_property(property_name: string, value: any): void
|
|
5557
5660
|
/**
|
|
5558
5661
|
* Gets a property of an object.
|
|
5559
5662
|
*
|
|
@@ -5574,7 +5677,7 @@ export interface DeformTexture extends Atk.ImplementorIface, Clutter.Animatable,
|
|
|
5574
5677
|
* @param property_name the name of the property to get
|
|
5575
5678
|
* @param value return location for the property value
|
|
5576
5679
|
*/
|
|
5577
|
-
get_property(property_name: string
|
|
5680
|
+
get_property(property_name: string, value: any): void
|
|
5578
5681
|
|
|
5579
5682
|
// Own virtual methods of Mx-1.0.Mx.DeformTexture
|
|
5580
5683
|
|
|
@@ -5933,7 +6036,7 @@ export interface DeformWaves extends Atk.ImplementorIface, Clutter.Animatable, C
|
|
|
5933
6036
|
* into `value`.
|
|
5934
6037
|
* @param property_name the name of the property
|
|
5935
6038
|
*/
|
|
5936
|
-
get_property(property_name: string
|
|
6039
|
+
get_property(property_name: string): /* value */ any
|
|
5937
6040
|
|
|
5938
6041
|
// Overloads of get_property
|
|
5939
6042
|
|
|
@@ -5957,7 +6060,7 @@ export interface DeformWaves extends Atk.ImplementorIface, Clutter.Animatable, C
|
|
|
5957
6060
|
* @param property_name the name of the property to get
|
|
5958
6061
|
* @param value return location for the property value
|
|
5959
6062
|
*/
|
|
5960
|
-
get_property(property_name: string
|
|
6063
|
+
get_property(property_name: string, value: any): void
|
|
5961
6064
|
/**
|
|
5962
6065
|
* Gets a property of an object.
|
|
5963
6066
|
*
|
|
@@ -5978,7 +6081,7 @@ export interface DeformWaves extends Atk.ImplementorIface, Clutter.Animatable, C
|
|
|
5978
6081
|
* @param property_name the name of the property to get
|
|
5979
6082
|
* @param value return location for the property value
|
|
5980
6083
|
*/
|
|
5981
|
-
get_property(property_name: string
|
|
6084
|
+
get_property(property_name: string, value: any): void
|
|
5982
6085
|
|
|
5983
6086
|
// Class property signals of Mx-1.0.Mx.DeformWaves
|
|
5984
6087
|
|
|
@@ -6313,7 +6416,9 @@ export interface Dialog extends Atk.ImplementorIface, Clutter.Animatable, Clutte
|
|
|
6313
6416
|
// Conflicting properties
|
|
6314
6417
|
|
|
6315
6418
|
x_align: any
|
|
6419
|
+
xAlign: any
|
|
6316
6420
|
y_align: any
|
|
6421
|
+
yAlign: any
|
|
6317
6422
|
|
|
6318
6423
|
// Owm methods of Mx-1.0.Mx.Dialog
|
|
6319
6424
|
|
|
@@ -6378,7 +6483,7 @@ export interface Dialog extends Atk.ImplementorIface, Clutter.Animatable, Clutte
|
|
|
6378
6483
|
* into `value`.
|
|
6379
6484
|
* @param property_name the name of the property
|
|
6380
6485
|
*/
|
|
6381
|
-
get_property(property_name: string
|
|
6486
|
+
get_property(property_name: string): /* value */ any
|
|
6382
6487
|
|
|
6383
6488
|
// Overloads of get_property
|
|
6384
6489
|
|
|
@@ -6402,7 +6507,7 @@ export interface Dialog extends Atk.ImplementorIface, Clutter.Animatable, Clutte
|
|
|
6402
6507
|
* @param property_name the name of the property to get
|
|
6403
6508
|
* @param value return location for the property value
|
|
6404
6509
|
*/
|
|
6405
|
-
get_property(property_name: string
|
|
6510
|
+
get_property(property_name: string, value: any): void
|
|
6406
6511
|
/**
|
|
6407
6512
|
* Gets a property of an object.
|
|
6408
6513
|
*
|
|
@@ -6423,7 +6528,7 @@ export interface Dialog extends Atk.ImplementorIface, Clutter.Animatable, Clutte
|
|
|
6423
6528
|
* @param property_name the name of the property to get
|
|
6424
6529
|
* @param value return location for the property value
|
|
6425
6530
|
*/
|
|
6426
|
-
get_property(property_name: string
|
|
6531
|
+
get_property(property_name: string, value: any): void
|
|
6427
6532
|
|
|
6428
6533
|
// Class property signals of Mx-1.0.Mx.Dialog
|
|
6429
6534
|
|
|
@@ -6770,6 +6875,11 @@ export module Entry {
|
|
|
6770
6875
|
primary_icon_tooltip_text?: string | null
|
|
6771
6876
|
secondary_icon_tooltip_text?: string | null
|
|
6772
6877
|
text?: string | null
|
|
6878
|
+
hintText?: string | null
|
|
6879
|
+
iconHighlightSuffix?: string | null
|
|
6880
|
+
passwordChar?: number | null
|
|
6881
|
+
primaryIconTooltipText?: string | null
|
|
6882
|
+
secondaryIconTooltipText?: string | null
|
|
6773
6883
|
}
|
|
6774
6884
|
|
|
6775
6885
|
}
|
|
@@ -6779,11 +6889,17 @@ export interface Entry extends Atk.ImplementorIface, Clutter.Animatable, Clutter
|
|
|
6779
6889
|
// Own properties of Mx-1.0.Mx.Entry
|
|
6780
6890
|
|
|
6781
6891
|
readonly clutter_text: Clutter.Text
|
|
6892
|
+
readonly clutterText: Clutter.Text
|
|
6782
6893
|
hint_text: string | null
|
|
6894
|
+
hintText: string | null
|
|
6783
6895
|
icon_highlight_suffix: string | null
|
|
6896
|
+
iconHighlightSuffix: string | null
|
|
6784
6897
|
password_char: number
|
|
6898
|
+
passwordChar: number
|
|
6785
6899
|
primary_icon_tooltip_text: string | null
|
|
6900
|
+
primaryIconTooltipText: string | null
|
|
6786
6901
|
secondary_icon_tooltip_text: string | null
|
|
6902
|
+
secondaryIconTooltipText: string | null
|
|
6787
6903
|
text: string | null
|
|
6788
6904
|
|
|
6789
6905
|
// Owm methods of Mx-1.0.Mx.Entry
|
|
@@ -6797,13 +6913,13 @@ export interface Entry extends Atk.ImplementorIface, Clutter.Animatable, Clutter
|
|
|
6797
6913
|
* Gets the text that is displayed when the entry is empty and unfocused
|
|
6798
6914
|
* @returns the current value of the hint property. This string is owned by the #MxEntry and should not be freed or modified.
|
|
6799
6915
|
*/
|
|
6800
|
-
get_hint_text(): string
|
|
6916
|
+
get_hint_text(): string
|
|
6801
6917
|
/**
|
|
6802
6918
|
* Get the suffix appended to the filename to use for the highlighted version
|
|
6803
6919
|
* of the icon.
|
|
6804
6920
|
* @returns the highlight filename suffix. This string is owned by the #MxEntry and should not be freed or modified.
|
|
6805
6921
|
*/
|
|
6806
|
-
get_icon_highlight_suffix(): string
|
|
6922
|
+
get_icon_highlight_suffix(): string
|
|
6807
6923
|
/**
|
|
6808
6924
|
* Gets the character to display instead of the text.
|
|
6809
6925
|
* @returns a character, or 0 if input should not be hidden.
|
|
@@ -6813,14 +6929,14 @@ export interface Entry extends Atk.ImplementorIface, Clutter.Animatable, Clutter
|
|
|
6813
6929
|
* Get the text displayed on the entry
|
|
6814
6930
|
* @returns the text for the entry. This must not be freed by the application
|
|
6815
6931
|
*/
|
|
6816
|
-
get_text(): string
|
|
6932
|
+
get_text(): string
|
|
6817
6933
|
/**
|
|
6818
6934
|
* Sets the text to display when the entry is empty and unfocused. When the
|
|
6819
6935
|
* entry is displaying the hint, it has a pseudo class of "indeterminate".
|
|
6820
6936
|
* A value of NULL unsets the hint.
|
|
6821
6937
|
* @param text text to set as the entry hint
|
|
6822
6938
|
*/
|
|
6823
|
-
set_hint_text(text: string
|
|
6939
|
+
set_hint_text(text: string): void
|
|
6824
6940
|
/**
|
|
6825
6941
|
* Sets the suffix appended to the filename to use for the highlighted version
|
|
6826
6942
|
* of the icon. e.g. if you have set your primay icon to "primary-icon.png"
|
|
@@ -6828,7 +6944,7 @@ export interface Entry extends Atk.ImplementorIface, Clutter.Animatable, Clutter
|
|
|
6828
6944
|
* "primary-icon-highlight.png"
|
|
6829
6945
|
* @param suffix the suffix to append to the filename for the highlight version
|
|
6830
6946
|
*/
|
|
6831
|
-
set_icon_highlight_suffix(suffix: string
|
|
6947
|
+
set_icon_highlight_suffix(suffix: string): void
|
|
6832
6948
|
/**
|
|
6833
6949
|
* Sets the character to display instead of the text. Use 0 to display
|
|
6834
6950
|
* the actual text.
|
|
@@ -6839,19 +6955,19 @@ export interface Entry extends Atk.ImplementorIface, Clutter.Animatable, Clutter
|
|
|
6839
6955
|
* Set the primary icon of the entry to the given filename
|
|
6840
6956
|
* @param filename filename of an icon
|
|
6841
6957
|
*/
|
|
6842
|
-
set_primary_icon_from_file(filename: string
|
|
6843
|
-
set_primary_icon_tooltip_text(text: string
|
|
6958
|
+
set_primary_icon_from_file(filename: string): void
|
|
6959
|
+
set_primary_icon_tooltip_text(text: string): void
|
|
6844
6960
|
/**
|
|
6845
6961
|
* Set the primary icon of the entry to the given filename
|
|
6846
6962
|
* @param filename filename of an icon
|
|
6847
6963
|
*/
|
|
6848
|
-
set_secondary_icon_from_file(filename: string
|
|
6849
|
-
set_secondary_icon_tooltip_text(text: string
|
|
6964
|
+
set_secondary_icon_from_file(filename: string): void
|
|
6965
|
+
set_secondary_icon_tooltip_text(text: string): void
|
|
6850
6966
|
/**
|
|
6851
6967
|
* Sets the text displayed on the entry
|
|
6852
6968
|
* @param text text to set the entry to
|
|
6853
6969
|
*/
|
|
6854
|
-
set_text(text: string
|
|
6970
|
+
set_text(text: string): void
|
|
6855
6971
|
|
|
6856
6972
|
// Conflicting methods
|
|
6857
6973
|
|
|
@@ -6860,7 +6976,7 @@ export interface Entry extends Atk.ImplementorIface, Clutter.Animatable, Clutter
|
|
|
6860
6976
|
* into `value`.
|
|
6861
6977
|
* @param property_name the name of the property
|
|
6862
6978
|
*/
|
|
6863
|
-
get_property(property_name: string
|
|
6979
|
+
get_property(property_name: string): /* value */ any
|
|
6864
6980
|
|
|
6865
6981
|
// Overloads of get_property
|
|
6866
6982
|
|
|
@@ -6884,7 +7000,7 @@ export interface Entry extends Atk.ImplementorIface, Clutter.Animatable, Clutter
|
|
|
6884
7000
|
* @param property_name the name of the property to get
|
|
6885
7001
|
* @param value return location for the property value
|
|
6886
7002
|
*/
|
|
6887
|
-
get_property(property_name: string
|
|
7003
|
+
get_property(property_name: string, value: any): void
|
|
6888
7004
|
/**
|
|
6889
7005
|
* Gets a property of an object.
|
|
6890
7006
|
*
|
|
@@ -6905,7 +7021,7 @@ export interface Entry extends Atk.ImplementorIface, Clutter.Animatable, Clutter
|
|
|
6905
7021
|
* @param property_name the name of the property to get
|
|
6906
7022
|
* @param value return location for the property value
|
|
6907
7023
|
*/
|
|
6908
|
-
get_property(property_name: string
|
|
7024
|
+
get_property(property_name: string, value: any): void
|
|
6909
7025
|
|
|
6910
7026
|
// Own virtual methods of Mx-1.0.Mx.Entry
|
|
6911
7027
|
|
|
@@ -7250,7 +7366,7 @@ export class Entry extends Widget {
|
|
|
7250
7366
|
* @param text text to set the entry to
|
|
7251
7367
|
* @returns a new #MxEntry
|
|
7252
7368
|
*/
|
|
7253
|
-
static new_with_text(text: string
|
|
7369
|
+
static new_with_text(text: string): Entry
|
|
7254
7370
|
_init(config?: Entry.ConstructorProperties): void
|
|
7255
7371
|
}
|
|
7256
7372
|
|
|
@@ -7288,7 +7404,9 @@ export interface Expander extends Atk.ImplementorIface, Clutter.Animatable, Clut
|
|
|
7288
7404
|
// Conflicting properties
|
|
7289
7405
|
|
|
7290
7406
|
x_align: any
|
|
7407
|
+
xAlign: any
|
|
7291
7408
|
y_align: any
|
|
7409
|
+
yAlign: any
|
|
7292
7410
|
|
|
7293
7411
|
// Owm methods of Mx-1.0.Mx.Expander
|
|
7294
7412
|
|
|
@@ -7307,7 +7425,7 @@ export interface Expander extends Atk.ImplementorIface, Clutter.Animatable, Clut
|
|
|
7307
7425
|
* Sets the text displayed as the title of the expander
|
|
7308
7426
|
* @param label string to set as the expander label
|
|
7309
7427
|
*/
|
|
7310
|
-
set_label(label: string
|
|
7428
|
+
set_label(label: string): void
|
|
7311
7429
|
|
|
7312
7430
|
// Conflicting methods
|
|
7313
7431
|
|
|
@@ -7316,7 +7434,7 @@ export interface Expander extends Atk.ImplementorIface, Clutter.Animatable, Clut
|
|
|
7316
7434
|
* into `value`.
|
|
7317
7435
|
* @param property_name the name of the property
|
|
7318
7436
|
*/
|
|
7319
|
-
get_property(property_name: string
|
|
7437
|
+
get_property(property_name: string): /* value */ any
|
|
7320
7438
|
|
|
7321
7439
|
// Overloads of get_property
|
|
7322
7440
|
|
|
@@ -7340,7 +7458,7 @@ export interface Expander extends Atk.ImplementorIface, Clutter.Animatable, Clut
|
|
|
7340
7458
|
* @param property_name the name of the property to get
|
|
7341
7459
|
* @param value return location for the property value
|
|
7342
7460
|
*/
|
|
7343
|
-
get_property(property_name: string
|
|
7461
|
+
get_property(property_name: string, value: any): void
|
|
7344
7462
|
/**
|
|
7345
7463
|
* Gets a property of an object.
|
|
7346
7464
|
*
|
|
@@ -7361,7 +7479,7 @@ export interface Expander extends Atk.ImplementorIface, Clutter.Animatable, Clut
|
|
|
7361
7479
|
* @param property_name the name of the property to get
|
|
7362
7480
|
* @param value return location for the property value
|
|
7363
7481
|
*/
|
|
7364
|
-
get_property(property_name: string
|
|
7482
|
+
get_property(property_name: string, value: any): void
|
|
7365
7483
|
|
|
7366
7484
|
// Own virtual methods of Mx-1.0.Mx.Expander
|
|
7367
7485
|
|
|
@@ -7711,6 +7829,15 @@ export module FadeEffect {
|
|
|
7711
7829
|
bounds_y?: number | null
|
|
7712
7830
|
color?: Clutter.Color | null
|
|
7713
7831
|
freeze_update?: boolean | null
|
|
7832
|
+
borderBottom?: number | null
|
|
7833
|
+
borderLeft?: number | null
|
|
7834
|
+
borderRight?: number | null
|
|
7835
|
+
borderTop?: number | null
|
|
7836
|
+
boundsHeight?: number | null
|
|
7837
|
+
boundsWidth?: number | null
|
|
7838
|
+
boundsX?: number | null
|
|
7839
|
+
boundsY?: number | null
|
|
7840
|
+
freezeUpdate?: boolean | null
|
|
7714
7841
|
}
|
|
7715
7842
|
|
|
7716
7843
|
}
|
|
@@ -7720,15 +7847,24 @@ export interface FadeEffect {
|
|
|
7720
7847
|
// Own properties of Mx-1.0.Mx.FadeEffect
|
|
7721
7848
|
|
|
7722
7849
|
border_bottom: number
|
|
7850
|
+
borderBottom: number
|
|
7723
7851
|
border_left: number
|
|
7852
|
+
borderLeft: number
|
|
7724
7853
|
border_right: number
|
|
7854
|
+
borderRight: number
|
|
7725
7855
|
border_top: number
|
|
7856
|
+
borderTop: number
|
|
7726
7857
|
bounds_height: number
|
|
7858
|
+
boundsHeight: number
|
|
7727
7859
|
bounds_width: number
|
|
7860
|
+
boundsWidth: number
|
|
7728
7861
|
bounds_x: number
|
|
7862
|
+
boundsX: number
|
|
7729
7863
|
bounds_y: number
|
|
7864
|
+
boundsY: number
|
|
7730
7865
|
color: Clutter.Color
|
|
7731
7866
|
freeze_update: boolean
|
|
7867
|
+
freezeUpdate: boolean
|
|
7732
7868
|
|
|
7733
7869
|
// Own fields of Mx-1.0.Mx.FadeEffect
|
|
7734
7870
|
|
|
@@ -7876,7 +8012,7 @@ export interface FloatingWidget extends Atk.ImplementorIface, Clutter.Animatable
|
|
|
7876
8012
|
* into `value`.
|
|
7877
8013
|
* @param property_name the name of the property
|
|
7878
8014
|
*/
|
|
7879
|
-
get_property(property_name: string
|
|
8015
|
+
get_property(property_name: string): /* value */ any
|
|
7880
8016
|
|
|
7881
8017
|
// Overloads of get_property
|
|
7882
8018
|
|
|
@@ -7900,7 +8036,7 @@ export interface FloatingWidget extends Atk.ImplementorIface, Clutter.Animatable
|
|
|
7900
8036
|
* @param property_name the name of the property to get
|
|
7901
8037
|
* @param value return location for the property value
|
|
7902
8038
|
*/
|
|
7903
|
-
get_property(property_name: string
|
|
8039
|
+
get_property(property_name: string, value: any): void
|
|
7904
8040
|
/**
|
|
7905
8041
|
* Gets a property of an object.
|
|
7906
8042
|
*
|
|
@@ -7921,7 +8057,7 @@ export interface FloatingWidget extends Atk.ImplementorIface, Clutter.Animatable
|
|
|
7921
8057
|
* @param property_name the name of the property to get
|
|
7922
8058
|
* @param value return location for the property value
|
|
7923
8059
|
*/
|
|
7924
|
-
get_property(property_name: string
|
|
8060
|
+
get_property(property_name: string, value: any): void
|
|
7925
8061
|
|
|
7926
8062
|
// Class property signals of Mx-1.0.Mx.FloatingWidget
|
|
7927
8063
|
|
|
@@ -8326,7 +8462,9 @@ export interface Frame extends Atk.ImplementorIface, Clutter.Animatable, Clutter
|
|
|
8326
8462
|
// Conflicting properties
|
|
8327
8463
|
|
|
8328
8464
|
x_align: any
|
|
8465
|
+
xAlign: any
|
|
8329
8466
|
y_align: any
|
|
8467
|
+
yAlign: any
|
|
8330
8468
|
|
|
8331
8469
|
// Own fields of Mx-1.0.Mx.Frame
|
|
8332
8470
|
|
|
@@ -8340,7 +8478,7 @@ export interface Frame extends Atk.ImplementorIface, Clutter.Animatable, Clutter
|
|
|
8340
8478
|
* into `value`.
|
|
8341
8479
|
* @param property_name the name of the property
|
|
8342
8480
|
*/
|
|
8343
|
-
get_property(property_name: string
|
|
8481
|
+
get_property(property_name: string): /* value */ any
|
|
8344
8482
|
|
|
8345
8483
|
// Overloads of get_property
|
|
8346
8484
|
|
|
@@ -8364,7 +8502,7 @@ export interface Frame extends Atk.ImplementorIface, Clutter.Animatable, Clutter
|
|
|
8364
8502
|
* @param property_name the name of the property to get
|
|
8365
8503
|
* @param value return location for the property value
|
|
8366
8504
|
*/
|
|
8367
|
-
get_property(property_name: string
|
|
8505
|
+
get_property(property_name: string, value: any): void
|
|
8368
8506
|
/**
|
|
8369
8507
|
* Gets a property of an object.
|
|
8370
8508
|
*
|
|
@@ -8385,7 +8523,7 @@ export interface Frame extends Atk.ImplementorIface, Clutter.Animatable, Clutter
|
|
|
8385
8523
|
* @param property_name the name of the property to get
|
|
8386
8524
|
* @param value return location for the property value
|
|
8387
8525
|
*/
|
|
8388
|
-
get_property(property_name: string
|
|
8526
|
+
get_property(property_name: string, value: any): void
|
|
8389
8527
|
|
|
8390
8528
|
// Class property signals of Mx-1.0.Mx.Frame
|
|
8391
8529
|
|
|
@@ -8718,6 +8856,14 @@ export module Grid {
|
|
|
8718
8856
|
max_stride?: number | null
|
|
8719
8857
|
orientation?: Orientation | null
|
|
8720
8858
|
row_spacing?: number | null
|
|
8859
|
+
childXAlign?: Align | null
|
|
8860
|
+
childYAlign?: Align | null
|
|
8861
|
+
columnSpacing?: number | null
|
|
8862
|
+
homogenousColumns?: boolean | null
|
|
8863
|
+
homogenousRows?: boolean | null
|
|
8864
|
+
lineAlignment?: Align | null
|
|
8865
|
+
maxStride?: number | null
|
|
8866
|
+
rowSpacing?: number | null
|
|
8721
8867
|
}
|
|
8722
8868
|
|
|
8723
8869
|
}
|
|
@@ -8727,14 +8873,22 @@ export interface Grid extends Atk.ImplementorIface, Clutter.Animatable, Clutter.
|
|
|
8727
8873
|
// Own properties of Mx-1.0.Mx.Grid
|
|
8728
8874
|
|
|
8729
8875
|
child_x_align: Align
|
|
8876
|
+
childXAlign: Align
|
|
8730
8877
|
child_y_align: Align
|
|
8878
|
+
childYAlign: Align
|
|
8731
8879
|
column_spacing: number
|
|
8880
|
+
columnSpacing: number
|
|
8732
8881
|
homogenous_columns: boolean
|
|
8882
|
+
homogenousColumns: boolean
|
|
8733
8883
|
homogenous_rows: boolean
|
|
8884
|
+
homogenousRows: boolean
|
|
8734
8885
|
line_alignment: Align
|
|
8886
|
+
lineAlignment: Align
|
|
8735
8887
|
max_stride: number
|
|
8888
|
+
maxStride: number
|
|
8736
8889
|
orientation: Orientation
|
|
8737
8890
|
row_spacing: number
|
|
8891
|
+
rowSpacing: number
|
|
8738
8892
|
|
|
8739
8893
|
// Owm methods of Mx-1.0.Mx.Grid
|
|
8740
8894
|
|
|
@@ -8764,7 +8918,7 @@ export interface Grid extends Atk.ImplementorIface, Clutter.Animatable, Clutter.
|
|
|
8764
8918
|
* into `value`.
|
|
8765
8919
|
* @param property_name the name of the property
|
|
8766
8920
|
*/
|
|
8767
|
-
get_property(property_name: string
|
|
8921
|
+
get_property(property_name: string): /* value */ any
|
|
8768
8922
|
|
|
8769
8923
|
// Overloads of get_property
|
|
8770
8924
|
|
|
@@ -8788,7 +8942,7 @@ export interface Grid extends Atk.ImplementorIface, Clutter.Animatable, Clutter.
|
|
|
8788
8942
|
* @param property_name the name of the property to get
|
|
8789
8943
|
* @param value return location for the property value
|
|
8790
8944
|
*/
|
|
8791
|
-
get_property(property_name: string
|
|
8945
|
+
get_property(property_name: string, value: any): void
|
|
8792
8946
|
/**
|
|
8793
8947
|
* Gets a property of an object.
|
|
8794
8948
|
*
|
|
@@ -8809,7 +8963,7 @@ export interface Grid extends Atk.ImplementorIface, Clutter.Animatable, Clutter.
|
|
|
8809
8963
|
* @param property_name the name of the property to get
|
|
8810
8964
|
* @param value return location for the property value
|
|
8811
8965
|
*/
|
|
8812
|
-
get_property(property_name: string
|
|
8966
|
+
get_property(property_name: string, value: any): void
|
|
8813
8967
|
|
|
8814
8968
|
// Class property signals of Mx-1.0.Mx.Grid
|
|
8815
8969
|
|
|
@@ -9149,6 +9303,8 @@ export module Icon {
|
|
|
9149
9303
|
|
|
9150
9304
|
icon_name?: string | null
|
|
9151
9305
|
icon_size?: number | null
|
|
9306
|
+
iconName?: string | null
|
|
9307
|
+
iconSize?: number | null
|
|
9152
9308
|
}
|
|
9153
9309
|
|
|
9154
9310
|
}
|
|
@@ -9158,13 +9314,15 @@ export interface Icon extends Atk.ImplementorIface, Clutter.Animatable, Clutter.
|
|
|
9158
9314
|
// Own properties of Mx-1.0.Mx.Icon
|
|
9159
9315
|
|
|
9160
9316
|
icon_name: string | null
|
|
9317
|
+
iconName: string | null
|
|
9161
9318
|
icon_size: number
|
|
9319
|
+
iconSize: number
|
|
9162
9320
|
|
|
9163
9321
|
// Owm methods of Mx-1.0.Mx.Icon
|
|
9164
9322
|
|
|
9165
|
-
get_icon_name(): string
|
|
9323
|
+
get_icon_name(): string
|
|
9166
9324
|
get_icon_size(): number
|
|
9167
|
-
set_icon_name(icon_name: string
|
|
9325
|
+
set_icon_name(icon_name: string): void
|
|
9168
9326
|
set_icon_size(size: number): void
|
|
9169
9327
|
|
|
9170
9328
|
// Conflicting methods
|
|
@@ -9174,7 +9332,7 @@ export interface Icon extends Atk.ImplementorIface, Clutter.Animatable, Clutter.
|
|
|
9174
9332
|
* into `value`.
|
|
9175
9333
|
* @param property_name the name of the property
|
|
9176
9334
|
*/
|
|
9177
|
-
get_property(property_name: string
|
|
9335
|
+
get_property(property_name: string): /* value */ any
|
|
9178
9336
|
|
|
9179
9337
|
// Overloads of get_property
|
|
9180
9338
|
|
|
@@ -9198,7 +9356,7 @@ export interface Icon extends Atk.ImplementorIface, Clutter.Animatable, Clutter.
|
|
|
9198
9356
|
* @param property_name the name of the property to get
|
|
9199
9357
|
* @param value return location for the property value
|
|
9200
9358
|
*/
|
|
9201
|
-
get_property(property_name: string
|
|
9359
|
+
get_property(property_name: string, value: any): void
|
|
9202
9360
|
/**
|
|
9203
9361
|
* Gets a property of an object.
|
|
9204
9362
|
*
|
|
@@ -9219,7 +9377,7 @@ export interface Icon extends Atk.ImplementorIface, Clutter.Animatable, Clutter.
|
|
|
9219
9377
|
* @param property_name the name of the property to get
|
|
9220
9378
|
* @param value return location for the property value
|
|
9221
9379
|
*/
|
|
9222
|
-
get_property(property_name: string
|
|
9380
|
+
get_property(property_name: string, value: any): void
|
|
9223
9381
|
|
|
9224
9382
|
// Class property signals of Mx-1.0.Mx.Icon
|
|
9225
9383
|
|
|
@@ -9541,6 +9699,7 @@ export module IconTheme {
|
|
|
9541
9699
|
// Own constructor properties of Mx-1.0.Mx.IconTheme
|
|
9542
9700
|
|
|
9543
9701
|
theme_name?: string | null
|
|
9702
|
+
themeName?: string | null
|
|
9544
9703
|
}
|
|
9545
9704
|
|
|
9546
9705
|
}
|
|
@@ -9550,6 +9709,7 @@ export interface IconTheme {
|
|
|
9550
9709
|
// Own properties of Mx-1.0.Mx.IconTheme
|
|
9551
9710
|
|
|
9552
9711
|
theme_name: string | null
|
|
9712
|
+
themeName: string | null
|
|
9553
9713
|
|
|
9554
9714
|
// Own fields of Mx-1.0.Mx.IconTheme
|
|
9555
9715
|
|
|
@@ -9567,22 +9727,22 @@ export interface IconTheme {
|
|
|
9567
9727
|
* Get the value of the #MxIconTheme:theme-name property.
|
|
9568
9728
|
* @returns the current value of the "theme-name" property.
|
|
9569
9729
|
*/
|
|
9570
|
-
get_theme_name(): string
|
|
9571
|
-
has_icon(icon_name: string
|
|
9730
|
+
get_theme_name(): string
|
|
9731
|
+
has_icon(icon_name: string): boolean
|
|
9572
9732
|
/**
|
|
9573
9733
|
* If the icon is available, returns a #CoglHandle of the icon.
|
|
9574
9734
|
* @param icon_name The name of the icon
|
|
9575
9735
|
* @param size The desired size of the icon
|
|
9576
9736
|
* @returns a #CoglHandle of the icon, or %NULL.
|
|
9577
9737
|
*/
|
|
9578
|
-
lookup(icon_name: string
|
|
9738
|
+
lookup(icon_name: string, size: number): Cogl.Handle
|
|
9579
9739
|
/**
|
|
9580
9740
|
* If the icon is available, returns a #ClutterTexture of the icon.
|
|
9581
9741
|
* @param icon_name The name of the icon
|
|
9582
9742
|
* @param size The desired size of the icon
|
|
9583
9743
|
* @returns a #ClutterTexture of the icon, or %NULL.
|
|
9584
9744
|
*/
|
|
9585
|
-
lookup_texture(icon_name: string
|
|
9745
|
+
lookup_texture(icon_name: string, size: number): Clutter.Texture
|
|
9586
9746
|
/**
|
|
9587
9747
|
* Sets the directories the #MxIconTheme will search in to find icons.
|
|
9588
9748
|
* By default, it will look in the default system and local icon
|
|
@@ -9600,7 +9760,7 @@ export interface IconTheme {
|
|
|
9600
9760
|
* icon theme, this function can be called with a %NULL `theme_name` argument.
|
|
9601
9761
|
* @param theme_name the name of an icon theme to load, or %NULL
|
|
9602
9762
|
*/
|
|
9603
|
-
set_theme_name(theme_name: string
|
|
9763
|
+
set_theme_name(theme_name: string): void
|
|
9604
9764
|
|
|
9605
9765
|
// Class property signals of Mx-1.0.Mx.IconTheme
|
|
9606
9766
|
|
|
@@ -9682,6 +9842,13 @@ export module Image {
|
|
|
9682
9842
|
scale_mode?: ImageScaleMode | null
|
|
9683
9843
|
scale_width_threshold?: number | null
|
|
9684
9844
|
transition_duration?: number | null
|
|
9845
|
+
allowUpscale?: boolean | null
|
|
9846
|
+
imageRotation?: number | null
|
|
9847
|
+
loadAsync?: boolean | null
|
|
9848
|
+
scaleHeightThreshold?: number | null
|
|
9849
|
+
scaleMode?: ImageScaleMode | null
|
|
9850
|
+
scaleWidthThreshold?: number | null
|
|
9851
|
+
transitionDuration?: number | null
|
|
9685
9852
|
}
|
|
9686
9853
|
|
|
9687
9854
|
}
|
|
@@ -9691,12 +9858,19 @@ export interface Image extends Atk.ImplementorIface, Clutter.Animatable, Clutter
|
|
|
9691
9858
|
// Own properties of Mx-1.0.Mx.Image
|
|
9692
9859
|
|
|
9693
9860
|
allow_upscale: boolean
|
|
9861
|
+
allowUpscale: boolean
|
|
9694
9862
|
image_rotation: number
|
|
9863
|
+
imageRotation: number
|
|
9695
9864
|
load_async: boolean
|
|
9865
|
+
loadAsync: boolean
|
|
9696
9866
|
scale_height_threshold: number
|
|
9867
|
+
scaleHeightThreshold: number
|
|
9697
9868
|
scale_mode: ImageScaleMode
|
|
9869
|
+
scaleMode: ImageScaleMode
|
|
9698
9870
|
scale_width_threshold: number
|
|
9871
|
+
scaleWidthThreshold: number
|
|
9699
9872
|
transition_duration: number
|
|
9873
|
+
transitionDuration: number
|
|
9700
9874
|
|
|
9701
9875
|
// Owm methods of Mx-1.0.Mx.Image
|
|
9702
9876
|
|
|
@@ -9804,7 +9978,7 @@ export interface Image extends Atk.ImplementorIface, Clutter.Animatable, Clutter
|
|
|
9804
9978
|
* @param filename Filename to read the file from
|
|
9805
9979
|
* @returns #TRUE if the image was successfully updated
|
|
9806
9980
|
*/
|
|
9807
|
-
set_from_file(filename: string
|
|
9981
|
+
set_from_file(filename: string): boolean
|
|
9808
9982
|
/**
|
|
9809
9983
|
* Set the image data from an image file, and scale the image during loading.
|
|
9810
9984
|
* In case of failure, #FALSE is returned and `error` is set. The aspect ratio
|
|
@@ -9814,7 +9988,7 @@ export interface Image extends Atk.ImplementorIface, Clutter.Animatable, Clutter
|
|
|
9814
9988
|
* @param height Height to scale the image to, or -1
|
|
9815
9989
|
* @returns #TRUE if the image was successfully updated
|
|
9816
9990
|
*/
|
|
9817
|
-
set_from_file_at_size(filename: string
|
|
9991
|
+
set_from_file_at_size(filename: string, width: number, height: number): boolean
|
|
9818
9992
|
/**
|
|
9819
9993
|
* Set the MxImage:image-rotation property.
|
|
9820
9994
|
* @param rotation Rotation angle in degrees
|
|
@@ -9869,7 +10043,7 @@ export interface Image extends Atk.ImplementorIface, Clutter.Animatable, Clutter
|
|
|
9869
10043
|
* into `value`.
|
|
9870
10044
|
* @param property_name the name of the property
|
|
9871
10045
|
*/
|
|
9872
|
-
get_property(property_name: string
|
|
10046
|
+
get_property(property_name: string): /* value */ any
|
|
9873
10047
|
|
|
9874
10048
|
// Overloads of get_property
|
|
9875
10049
|
|
|
@@ -9893,7 +10067,7 @@ export interface Image extends Atk.ImplementorIface, Clutter.Animatable, Clutter
|
|
|
9893
10067
|
* @param property_name the name of the property to get
|
|
9894
10068
|
* @param value return location for the property value
|
|
9895
10069
|
*/
|
|
9896
|
-
get_property(property_name: string
|
|
10070
|
+
get_property(property_name: string, value: any): void
|
|
9897
10071
|
/**
|
|
9898
10072
|
* Gets a property of an object.
|
|
9899
10073
|
*
|
|
@@ -9914,7 +10088,7 @@ export interface Image extends Atk.ImplementorIface, Clutter.Animatable, Clutter
|
|
|
9914
10088
|
* @param property_name the name of the property to get
|
|
9915
10089
|
* @param value return location for the property value
|
|
9916
10090
|
*/
|
|
9917
|
-
get_property(property_name: string
|
|
10091
|
+
get_property(property_name: string, value: any): void
|
|
9918
10092
|
|
|
9919
10093
|
// Own virtual methods of Mx-1.0.Mx.Image
|
|
9920
10094
|
|
|
@@ -10267,6 +10441,7 @@ export module ItemView {
|
|
|
10267
10441
|
factory?: GObject.Object | null
|
|
10268
10442
|
item_type?: GObject.GType | null
|
|
10269
10443
|
model?: Clutter.Model | null
|
|
10444
|
+
itemType?: GObject.GType | null
|
|
10270
10445
|
}
|
|
10271
10446
|
|
|
10272
10447
|
}
|
|
@@ -10277,6 +10452,7 @@ export interface ItemView extends Atk.ImplementorIface, Clutter.Animatable, Clut
|
|
|
10277
10452
|
|
|
10278
10453
|
factory: GObject.Object
|
|
10279
10454
|
item_type: GObject.GType
|
|
10455
|
+
itemType: GObject.GType
|
|
10280
10456
|
model: Clutter.Model
|
|
10281
10457
|
|
|
10282
10458
|
// Owm methods of Mx-1.0.Mx.ItemView
|
|
@@ -10287,7 +10463,7 @@ export interface ItemView extends Atk.ImplementorIface, Clutter.Animatable, Clut
|
|
|
10287
10463
|
* @param attribute Name of the attribute
|
|
10288
10464
|
* @param column Column number
|
|
10289
10465
|
*/
|
|
10290
|
-
add_attribute(attribute: string
|
|
10466
|
+
add_attribute(attribute: string, column: number): void
|
|
10291
10467
|
/**
|
|
10292
10468
|
* Freeze the view. This means that the view will not act on changes to the
|
|
10293
10469
|
* model until it is thawed. Call #mx_item_view_thaw to thaw the view
|
|
@@ -10337,7 +10513,7 @@ export interface ItemView extends Atk.ImplementorIface, Clutter.Animatable, Clut
|
|
|
10337
10513
|
* into `value`.
|
|
10338
10514
|
* @param property_name the name of the property
|
|
10339
10515
|
*/
|
|
10340
|
-
get_property(property_name: string
|
|
10516
|
+
get_property(property_name: string): /* value */ any
|
|
10341
10517
|
|
|
10342
10518
|
// Overloads of get_property
|
|
10343
10519
|
|
|
@@ -10361,7 +10537,7 @@ export interface ItemView extends Atk.ImplementorIface, Clutter.Animatable, Clut
|
|
|
10361
10537
|
* @param property_name the name of the property to get
|
|
10362
10538
|
* @param value return location for the property value
|
|
10363
10539
|
*/
|
|
10364
|
-
get_property(property_name: string
|
|
10540
|
+
get_property(property_name: string, value: any): void
|
|
10365
10541
|
/**
|
|
10366
10542
|
* Gets a property of an object.
|
|
10367
10543
|
*
|
|
@@ -10382,7 +10558,7 @@ export interface ItemView extends Atk.ImplementorIface, Clutter.Animatable, Clut
|
|
|
10382
10558
|
* @param property_name the name of the property to get
|
|
10383
10559
|
* @param value return location for the property value
|
|
10384
10560
|
*/
|
|
10385
|
-
get_property(property_name: string
|
|
10561
|
+
get_property(property_name: string, value: any): void
|
|
10386
10562
|
|
|
10387
10563
|
// Class property signals of Mx-1.0.Mx.ItemView
|
|
10388
10564
|
|
|
@@ -10748,6 +10924,13 @@ export module KineticScrollView {
|
|
|
10748
10924
|
overshoot?: number | null
|
|
10749
10925
|
scroll_policy?: ScrollPolicy | null
|
|
10750
10926
|
use_captured?: boolean | null
|
|
10927
|
+
accelerationFactor?: number | null
|
|
10928
|
+
clampDuration?: number | null
|
|
10929
|
+
clampMode?: number | null
|
|
10930
|
+
clampToCenter?: boolean | null
|
|
10931
|
+
mouseButton?: number | null
|
|
10932
|
+
scrollPolicy?: ScrollPolicy | null
|
|
10933
|
+
useCaptured?: boolean | null
|
|
10751
10934
|
}
|
|
10752
10935
|
|
|
10753
10936
|
}
|
|
@@ -10757,20 +10940,29 @@ export interface KineticScrollView extends Atk.ImplementorIface, Clutter.Animata
|
|
|
10757
10940
|
// Own properties of Mx-1.0.Mx.KineticScrollView
|
|
10758
10941
|
|
|
10759
10942
|
acceleration_factor: number
|
|
10943
|
+
accelerationFactor: number
|
|
10760
10944
|
clamp_duration: number
|
|
10945
|
+
clampDuration: number
|
|
10761
10946
|
clamp_mode: number
|
|
10947
|
+
clampMode: number
|
|
10762
10948
|
clamp_to_center: boolean
|
|
10949
|
+
clampToCenter: boolean
|
|
10763
10950
|
deceleration: number
|
|
10764
10951
|
mouse_button: number
|
|
10952
|
+
mouseButton: number
|
|
10765
10953
|
overshoot: number
|
|
10766
10954
|
scroll_policy: ScrollPolicy
|
|
10955
|
+
scrollPolicy: ScrollPolicy
|
|
10767
10956
|
readonly state: KineticScrollViewState
|
|
10768
10957
|
use_captured: boolean
|
|
10958
|
+
useCaptured: boolean
|
|
10769
10959
|
|
|
10770
10960
|
// Conflicting properties
|
|
10771
10961
|
|
|
10772
10962
|
x_align: any
|
|
10963
|
+
xAlign: any
|
|
10773
10964
|
y_align: any
|
|
10965
|
+
yAlign: any
|
|
10774
10966
|
|
|
10775
10967
|
// Owm methods of Mx-1.0.Mx.KineticScrollView
|
|
10776
10968
|
|
|
@@ -10887,7 +11079,7 @@ export interface KineticScrollView extends Atk.ImplementorIface, Clutter.Animata
|
|
|
10887
11079
|
* into `value`.
|
|
10888
11080
|
* @param property_name the name of the property
|
|
10889
11081
|
*/
|
|
10890
|
-
get_property(property_name: string
|
|
11082
|
+
get_property(property_name: string): /* value */ any
|
|
10891
11083
|
|
|
10892
11084
|
// Overloads of get_property
|
|
10893
11085
|
|
|
@@ -10911,7 +11103,7 @@ export interface KineticScrollView extends Atk.ImplementorIface, Clutter.Animata
|
|
|
10911
11103
|
* @param property_name the name of the property to get
|
|
10912
11104
|
* @param value return location for the property value
|
|
10913
11105
|
*/
|
|
10914
|
-
get_property(property_name: string
|
|
11106
|
+
get_property(property_name: string, value: any): void
|
|
10915
11107
|
/**
|
|
10916
11108
|
* Gets a property of an object.
|
|
10917
11109
|
*
|
|
@@ -10932,7 +11124,7 @@ export interface KineticScrollView extends Atk.ImplementorIface, Clutter.Animata
|
|
|
10932
11124
|
* @param property_name the name of the property to get
|
|
10933
11125
|
* @param value return location for the property value
|
|
10934
11126
|
*/
|
|
10935
|
-
get_property(property_name: string
|
|
11127
|
+
get_property(property_name: string, value: any): void
|
|
10936
11128
|
|
|
10937
11129
|
// Class property signals of Mx-1.0.Mx.KineticScrollView
|
|
10938
11130
|
|
|
@@ -11308,6 +11500,21 @@ export module Label {
|
|
|
11308
11500
|
use_markup?: boolean | null
|
|
11309
11501
|
x_align: any
|
|
11310
11502
|
y_align: any
|
|
11503
|
+
fadeOut?: boolean | null
|
|
11504
|
+
/**
|
|
11505
|
+
* Whether to wrap the lines of #MxLabel:text if the contents
|
|
11506
|
+
* exceed the available allocation.
|
|
11507
|
+
*/
|
|
11508
|
+
lineWrap?: boolean | null
|
|
11509
|
+
/**
|
|
11510
|
+
* Show a tooltip when there is not enough space to display the text. If set
|
|
11511
|
+
* to %TRUE, this will also cause the #ClutterActor:reactive property to be
|
|
11512
|
+
* enabled.
|
|
11513
|
+
*/
|
|
11514
|
+
showTooltip?: boolean | null
|
|
11515
|
+
useMarkup?: boolean | null
|
|
11516
|
+
xAlign: any
|
|
11517
|
+
yAlign: any
|
|
11311
11518
|
}
|
|
11312
11519
|
|
|
11313
11520
|
}
|
|
@@ -11317,17 +11524,33 @@ export interface Label extends Atk.ImplementorIface, Clutter.Animatable, Clutter
|
|
|
11317
11524
|
// Own properties of Mx-1.0.Mx.Label
|
|
11318
11525
|
|
|
11319
11526
|
readonly clutter_text: Clutter.Text
|
|
11527
|
+
readonly clutterText: Clutter.Text
|
|
11320
11528
|
fade_out: boolean
|
|
11529
|
+
fadeOut: boolean
|
|
11321
11530
|
/**
|
|
11322
11531
|
* Whether to wrap the lines of #MxLabel:text if the contents
|
|
11323
11532
|
* exceed the available allocation.
|
|
11324
11533
|
*/
|
|
11325
11534
|
line_wrap: boolean
|
|
11535
|
+
/**
|
|
11536
|
+
* Whether to wrap the lines of #MxLabel:text if the contents
|
|
11537
|
+
* exceed the available allocation.
|
|
11538
|
+
*/
|
|
11539
|
+
lineWrap: boolean
|
|
11326
11540
|
// Has conflict: show_tooltip: boolean
|
|
11541
|
+
/**
|
|
11542
|
+
* Show a tooltip when there is not enough space to display the text. If set
|
|
11543
|
+
* to %TRUE, this will also cause the #ClutterActor:reactive property to be
|
|
11544
|
+
* enabled.
|
|
11545
|
+
*/
|
|
11546
|
+
showTooltip: boolean
|
|
11327
11547
|
text: string | null
|
|
11328
11548
|
use_markup: boolean
|
|
11549
|
+
useMarkup: boolean
|
|
11329
11550
|
x_align: any
|
|
11551
|
+
xAlign: any
|
|
11330
11552
|
y_align: any
|
|
11553
|
+
yAlign: any
|
|
11331
11554
|
|
|
11332
11555
|
// Owm methods of Mx-1.0.Mx.Label
|
|
11333
11556
|
|
|
@@ -11356,7 +11579,7 @@ export interface Label extends Atk.ImplementorIface, Clutter.Animatable, Clutter
|
|
|
11356
11579
|
* Get the text displayed on the label
|
|
11357
11580
|
* @returns the text for the label. This must not be freed by the application
|
|
11358
11581
|
*/
|
|
11359
|
-
get_text(): string
|
|
11582
|
+
get_text(): string
|
|
11360
11583
|
/**
|
|
11361
11584
|
* Determines whether the text of the label is being treated as Pango markup.
|
|
11362
11585
|
* @returns %TRUE if the text of the label is treated as Pango markup, %FALSE otherwise.
|
|
@@ -11403,7 +11626,7 @@ export interface Label extends Atk.ImplementorIface, Clutter.Animatable, Clutter
|
|
|
11403
11626
|
* Sets the text displayed on the label
|
|
11404
11627
|
* @param text text to set the label to
|
|
11405
11628
|
*/
|
|
11406
|
-
set_text(text: string
|
|
11629
|
+
set_text(text: string): void
|
|
11407
11630
|
/**
|
|
11408
11631
|
* Sets whether the text of the label should be treated as Pango markup.
|
|
11409
11632
|
* @param use_markup %TRUE to use Pango markup, %FALSE otherwise
|
|
@@ -11441,7 +11664,7 @@ export interface Label extends Atk.ImplementorIface, Clutter.Animatable, Clutter
|
|
|
11441
11664
|
* into `value`.
|
|
11442
11665
|
* @param property_name the name of the property
|
|
11443
11666
|
*/
|
|
11444
|
-
get_property(property_name: string
|
|
11667
|
+
get_property(property_name: string): /* value */ any
|
|
11445
11668
|
|
|
11446
11669
|
// Overloads of get_property
|
|
11447
11670
|
|
|
@@ -11465,7 +11688,7 @@ export interface Label extends Atk.ImplementorIface, Clutter.Animatable, Clutter
|
|
|
11465
11688
|
* @param property_name the name of the property to get
|
|
11466
11689
|
* @param value return location for the property value
|
|
11467
11690
|
*/
|
|
11468
|
-
get_property(property_name: string
|
|
11691
|
+
get_property(property_name: string, value: any): void
|
|
11469
11692
|
/**
|
|
11470
11693
|
* Gets a property of an object.
|
|
11471
11694
|
*
|
|
@@ -11486,7 +11709,7 @@ export interface Label extends Atk.ImplementorIface, Clutter.Animatable, Clutter
|
|
|
11486
11709
|
* @param property_name the name of the property to get
|
|
11487
11710
|
* @param value return location for the property value
|
|
11488
11711
|
*/
|
|
11489
|
-
get_property(property_name: string
|
|
11712
|
+
get_property(property_name: string, value: any): void
|
|
11490
11713
|
|
|
11491
11714
|
// Class property signals of Mx-1.0.Mx.Label
|
|
11492
11715
|
|
|
@@ -11814,7 +12037,7 @@ export class Label extends Widget {
|
|
|
11814
12037
|
* @param text text to set the label to
|
|
11815
12038
|
* @returns a new #MxLabel
|
|
11816
12039
|
*/
|
|
11817
|
-
static new_with_text(text: string
|
|
12040
|
+
static new_with_text(text: string): Label
|
|
11818
12041
|
_init(config?: Label.ConstructorProperties): void
|
|
11819
12042
|
}
|
|
11820
12043
|
|
|
@@ -11829,6 +12052,7 @@ export module ListView {
|
|
|
11829
12052
|
factory?: GObject.Object | null
|
|
11830
12053
|
item_type?: GObject.GType | null
|
|
11831
12054
|
model?: Clutter.Model | null
|
|
12055
|
+
itemType?: GObject.GType | null
|
|
11832
12056
|
}
|
|
11833
12057
|
|
|
11834
12058
|
}
|
|
@@ -11839,6 +12063,7 @@ export interface ListView extends Atk.ImplementorIface, Clutter.Animatable, Clut
|
|
|
11839
12063
|
|
|
11840
12064
|
factory: GObject.Object
|
|
11841
12065
|
item_type: GObject.GType
|
|
12066
|
+
itemType: GObject.GType
|
|
11842
12067
|
model: Clutter.Model
|
|
11843
12068
|
|
|
11844
12069
|
// Owm methods of Mx-1.0.Mx.ListView
|
|
@@ -11849,7 +12074,7 @@ export interface ListView extends Atk.ImplementorIface, Clutter.Animatable, Clut
|
|
|
11849
12074
|
* @param attribute Name of the attribute
|
|
11850
12075
|
* @param column Column number
|
|
11851
12076
|
*/
|
|
11852
|
-
add_attribute(attribute: string
|
|
12077
|
+
add_attribute(attribute: string, column: number): void
|
|
11853
12078
|
/**
|
|
11854
12079
|
* Freeze the view. This means that the view will not act on changes to the
|
|
11855
12080
|
* model until it is thawed. Call #mx_list_view_thaw to thaw the view.
|
|
@@ -11899,7 +12124,7 @@ export interface ListView extends Atk.ImplementorIface, Clutter.Animatable, Clut
|
|
|
11899
12124
|
* into `value`.
|
|
11900
12125
|
* @param property_name the name of the property
|
|
11901
12126
|
*/
|
|
11902
|
-
get_property(property_name: string
|
|
12127
|
+
get_property(property_name: string): /* value */ any
|
|
11903
12128
|
|
|
11904
12129
|
// Overloads of get_property
|
|
11905
12130
|
|
|
@@ -11923,7 +12148,7 @@ export interface ListView extends Atk.ImplementorIface, Clutter.Animatable, Clut
|
|
|
11923
12148
|
* @param property_name the name of the property to get
|
|
11924
12149
|
* @param value return location for the property value
|
|
11925
12150
|
*/
|
|
11926
|
-
get_property(property_name: string
|
|
12151
|
+
get_property(property_name: string, value: any): void
|
|
11927
12152
|
/**
|
|
11928
12153
|
* Gets a property of an object.
|
|
11929
12154
|
*
|
|
@@ -11944,7 +12169,7 @@ export interface ListView extends Atk.ImplementorIface, Clutter.Animatable, Clut
|
|
|
11944
12169
|
* @param property_name the name of the property to get
|
|
11945
12170
|
* @param value return location for the property value
|
|
11946
12171
|
*/
|
|
11947
|
-
get_property(property_name: string
|
|
12172
|
+
get_property(property_name: string, value: any): void
|
|
11948
12173
|
/**
|
|
11949
12174
|
* Adds a #ClutterActor to `container`. This function will emit the
|
|
11950
12175
|
* "actor-added" signal. The actor should be parented to
|
|
@@ -12386,7 +12611,7 @@ export interface Menu extends Atk.ImplementorIface, Clutter.Animatable, Clutter.
|
|
|
12386
12611
|
* into `value`.
|
|
12387
12612
|
* @param property_name the name of the property
|
|
12388
12613
|
*/
|
|
12389
|
-
get_property(property_name: string
|
|
12614
|
+
get_property(property_name: string): /* value */ any
|
|
12390
12615
|
|
|
12391
12616
|
// Overloads of get_property
|
|
12392
12617
|
|
|
@@ -12410,7 +12635,7 @@ export interface Menu extends Atk.ImplementorIface, Clutter.Animatable, Clutter.
|
|
|
12410
12635
|
* @param property_name the name of the property to get
|
|
12411
12636
|
* @param value return location for the property value
|
|
12412
12637
|
*/
|
|
12413
|
-
get_property(property_name: string
|
|
12638
|
+
get_property(property_name: string, value: any): void
|
|
12414
12639
|
/**
|
|
12415
12640
|
* Gets a property of an object.
|
|
12416
12641
|
*
|
|
@@ -12431,7 +12656,7 @@ export interface Menu extends Atk.ImplementorIface, Clutter.Animatable, Clutter.
|
|
|
12431
12656
|
* @param property_name the name of the property to get
|
|
12432
12657
|
* @param value return location for the property value
|
|
12433
12658
|
*/
|
|
12434
|
-
get_property(property_name: string
|
|
12659
|
+
get_property(property_name: string, value: any): void
|
|
12435
12660
|
|
|
12436
12661
|
// Own virtual methods of Mx-1.0.Mx.Menu
|
|
12437
12662
|
|
|
@@ -12758,6 +12983,8 @@ export module Notebook {
|
|
|
12758
12983
|
|
|
12759
12984
|
current_page?: Clutter.Actor | null
|
|
12760
12985
|
enable_gestures?: boolean | null
|
|
12986
|
+
currentPage?: Clutter.Actor | null
|
|
12987
|
+
enableGestures?: boolean | null
|
|
12761
12988
|
}
|
|
12762
12989
|
|
|
12763
12990
|
}
|
|
@@ -12767,7 +12994,9 @@ export interface Notebook extends Atk.ImplementorIface, Clutter.Animatable, Clut
|
|
|
12767
12994
|
// Own properties of Mx-1.0.Mx.Notebook
|
|
12768
12995
|
|
|
12769
12996
|
current_page: Clutter.Actor
|
|
12997
|
+
currentPage: Clutter.Actor
|
|
12770
12998
|
enable_gestures: boolean
|
|
12999
|
+
enableGestures: boolean
|
|
12771
13000
|
|
|
12772
13001
|
// Own fields of Mx-1.0.Mx.Notebook
|
|
12773
13002
|
|
|
@@ -12792,7 +13021,7 @@ export interface Notebook extends Atk.ImplementorIface, Clutter.Animatable, Clut
|
|
|
12792
13021
|
* into `value`.
|
|
12793
13022
|
* @param property_name the name of the property
|
|
12794
13023
|
*/
|
|
12795
|
-
get_property(property_name: string
|
|
13024
|
+
get_property(property_name: string): /* value */ any
|
|
12796
13025
|
|
|
12797
13026
|
// Overloads of get_property
|
|
12798
13027
|
|
|
@@ -12816,7 +13045,7 @@ export interface Notebook extends Atk.ImplementorIface, Clutter.Animatable, Clut
|
|
|
12816
13045
|
* @param property_name the name of the property to get
|
|
12817
13046
|
* @param value return location for the property value
|
|
12818
13047
|
*/
|
|
12819
|
-
get_property(property_name: string
|
|
13048
|
+
get_property(property_name: string, value: any): void
|
|
12820
13049
|
/**
|
|
12821
13050
|
* Gets a property of an object.
|
|
12822
13051
|
*
|
|
@@ -12837,7 +13066,7 @@ export interface Notebook extends Atk.ImplementorIface, Clutter.Animatable, Clut
|
|
|
12837
13066
|
* @param property_name the name of the property to get
|
|
12838
13067
|
* @param value return location for the property value
|
|
12839
13068
|
*/
|
|
12840
|
-
get_property(property_name: string
|
|
13069
|
+
get_property(property_name: string, value: any): void
|
|
12841
13070
|
|
|
12842
13071
|
// Class property signals of Mx-1.0.Mx.Notebook
|
|
12843
13072
|
|
|
@@ -13153,6 +13382,10 @@ export module Offscreen {
|
|
|
13153
13382
|
child?: Clutter.Actor | null
|
|
13154
13383
|
pick_child?: boolean | null
|
|
13155
13384
|
redirect_enabled?: boolean | null
|
|
13385
|
+
accumulationEnabled?: boolean | null
|
|
13386
|
+
autoUpdate?: boolean | null
|
|
13387
|
+
pickChild?: boolean | null
|
|
13388
|
+
redirectEnabled?: boolean | null
|
|
13156
13389
|
}
|
|
13157
13390
|
|
|
13158
13391
|
}
|
|
@@ -13162,15 +13395,20 @@ export interface Offscreen extends Atk.ImplementorIface, Clutter.Animatable, Clu
|
|
|
13162
13395
|
// Own properties of Mx-1.0.Mx.Offscreen
|
|
13163
13396
|
|
|
13164
13397
|
accumulation_enabled: boolean
|
|
13398
|
+
accumulationEnabled: boolean
|
|
13165
13399
|
readonly accumulation_material: any
|
|
13400
|
+
readonly accumulationMaterial: any
|
|
13166
13401
|
auto_update: boolean
|
|
13402
|
+
autoUpdate: boolean
|
|
13167
13403
|
/**
|
|
13168
13404
|
* The off-screen buffer used to draw the child.
|
|
13169
13405
|
*/
|
|
13170
13406
|
readonly buffer: any
|
|
13171
13407
|
child: Clutter.Actor
|
|
13172
13408
|
pick_child: boolean
|
|
13409
|
+
pickChild: boolean
|
|
13173
13410
|
redirect_enabled: boolean
|
|
13411
|
+
redirectEnabled: boolean
|
|
13174
13412
|
|
|
13175
13413
|
// Own fields of Mx-1.0.Mx.Offscreen
|
|
13176
13414
|
|
|
@@ -13611,6 +13849,7 @@ export module PathBar {
|
|
|
13611
13849
|
|
|
13612
13850
|
clear_on_change?: boolean | null
|
|
13613
13851
|
editable?: boolean | null
|
|
13852
|
+
clearOnChange?: boolean | null
|
|
13614
13853
|
}
|
|
13615
13854
|
|
|
13616
13855
|
}
|
|
@@ -13620,6 +13859,7 @@ export interface PathBar extends Atk.ImplementorIface, Clutter.Animatable, Clutt
|
|
|
13620
13859
|
// Own properties of Mx-1.0.Mx.PathBar
|
|
13621
13860
|
|
|
13622
13861
|
clear_on_change: boolean
|
|
13862
|
+
clearOnChange: boolean
|
|
13623
13863
|
editable: boolean
|
|
13624
13864
|
readonly entry: Entry
|
|
13625
13865
|
readonly level: number
|
|
@@ -13650,11 +13890,11 @@ export interface PathBar extends Atk.ImplementorIface, Clutter.Animatable, Clutt
|
|
|
13650
13890
|
* @returns MxEntry *
|
|
13651
13891
|
*/
|
|
13652
13892
|
get_entry(): Entry
|
|
13653
|
-
get_label(level: number): string
|
|
13893
|
+
get_label(level: number): string
|
|
13654
13894
|
get_level(): number
|
|
13655
|
-
get_text(): string
|
|
13895
|
+
get_text(): string
|
|
13656
13896
|
pop(): number
|
|
13657
|
-
push(name: string
|
|
13897
|
+
push(name: string): number
|
|
13658
13898
|
/**
|
|
13659
13899
|
* Set theh value of the #MxPathBar:clear-on-change property
|
|
13660
13900
|
* @param clear_on_change the new value of the property
|
|
@@ -13670,12 +13910,12 @@ export interface PathBar extends Atk.ImplementorIface, Clutter.Animatable, Clutt
|
|
|
13670
13910
|
* @param level A #gint
|
|
13671
13911
|
* @param label A #gchar
|
|
13672
13912
|
*/
|
|
13673
|
-
set_label(level: number, label: string
|
|
13913
|
+
set_label(level: number, label: string): void
|
|
13674
13914
|
/**
|
|
13675
13915
|
* Set the text in the editable area of the #MxPathBar
|
|
13676
13916
|
* @param text string to set the editable text to.
|
|
13677
13917
|
*/
|
|
13678
|
-
set_text(text: string
|
|
13918
|
+
set_text(text: string): void
|
|
13679
13919
|
|
|
13680
13920
|
// Conflicting methods
|
|
13681
13921
|
|
|
@@ -13684,7 +13924,7 @@ export interface PathBar extends Atk.ImplementorIface, Clutter.Animatable, Clutt
|
|
|
13684
13924
|
* into `value`.
|
|
13685
13925
|
* @param property_name the name of the property
|
|
13686
13926
|
*/
|
|
13687
|
-
get_property(property_name: string
|
|
13927
|
+
get_property(property_name: string): /* value */ any
|
|
13688
13928
|
|
|
13689
13929
|
// Overloads of get_property
|
|
13690
13930
|
|
|
@@ -13708,7 +13948,7 @@ export interface PathBar extends Atk.ImplementorIface, Clutter.Animatable, Clutt
|
|
|
13708
13948
|
* @param property_name the name of the property to get
|
|
13709
13949
|
* @param value return location for the property value
|
|
13710
13950
|
*/
|
|
13711
|
-
get_property(property_name: string
|
|
13951
|
+
get_property(property_name: string, value: any): void
|
|
13712
13952
|
/**
|
|
13713
13953
|
* Gets a property of an object.
|
|
13714
13954
|
*
|
|
@@ -13729,7 +13969,7 @@ export interface PathBar extends Atk.ImplementorIface, Clutter.Animatable, Clutt
|
|
|
13729
13969
|
* @param property_name the name of the property to get
|
|
13730
13970
|
* @param value return location for the property value
|
|
13731
13971
|
*/
|
|
13732
|
-
get_property(property_name: string
|
|
13972
|
+
get_property(property_name: string, value: any): void
|
|
13733
13973
|
|
|
13734
13974
|
// Class property signals of Mx-1.0.Mx.PathBar
|
|
13735
13975
|
|
|
@@ -14077,7 +14317,7 @@ export interface ProgressBar extends Atk.ImplementorIface, Clutter.Animatable, C
|
|
|
14077
14317
|
* into `value`.
|
|
14078
14318
|
* @param property_name the name of the property
|
|
14079
14319
|
*/
|
|
14080
|
-
get_property(property_name: string
|
|
14320
|
+
get_property(property_name: string): /* value */ any
|
|
14081
14321
|
|
|
14082
14322
|
// Overloads of get_property
|
|
14083
14323
|
|
|
@@ -14101,7 +14341,7 @@ export interface ProgressBar extends Atk.ImplementorIface, Clutter.Animatable, C
|
|
|
14101
14341
|
* @param property_name the name of the property to get
|
|
14102
14342
|
* @param value return location for the property value
|
|
14103
14343
|
*/
|
|
14104
|
-
get_property(property_name: string
|
|
14344
|
+
get_property(property_name: string, value: any): void
|
|
14105
14345
|
/**
|
|
14106
14346
|
* Gets a property of an object.
|
|
14107
14347
|
*
|
|
@@ -14122,7 +14362,7 @@ export interface ProgressBar extends Atk.ImplementorIface, Clutter.Animatable, C
|
|
|
14122
14362
|
* @param property_name the name of the property to get
|
|
14123
14363
|
* @param value return location for the property value
|
|
14124
14364
|
*/
|
|
14125
|
-
get_property(property_name: string
|
|
14365
|
+
get_property(property_name: string, value: any): void
|
|
14126
14366
|
|
|
14127
14367
|
// Class property signals of Mx-1.0.Mx.ProgressBar
|
|
14128
14368
|
|
|
@@ -14473,7 +14713,9 @@ export interface ScrollBar extends Atk.ImplementorIface, Clutter.Animatable, Clu
|
|
|
14473
14713
|
// Conflicting properties
|
|
14474
14714
|
|
|
14475
14715
|
x_align: any
|
|
14716
|
+
xAlign: any
|
|
14476
14717
|
y_align: any
|
|
14718
|
+
yAlign: any
|
|
14477
14719
|
|
|
14478
14720
|
// Owm methods of Mx-1.0.Mx.ScrollBar
|
|
14479
14721
|
|
|
@@ -14494,7 +14736,7 @@ export interface ScrollBar extends Atk.ImplementorIface, Clutter.Animatable, Clu
|
|
|
14494
14736
|
* into `value`.
|
|
14495
14737
|
* @param property_name the name of the property
|
|
14496
14738
|
*/
|
|
14497
|
-
get_property(property_name: string
|
|
14739
|
+
get_property(property_name: string): /* value */ any
|
|
14498
14740
|
|
|
14499
14741
|
// Overloads of get_property
|
|
14500
14742
|
|
|
@@ -14518,7 +14760,7 @@ export interface ScrollBar extends Atk.ImplementorIface, Clutter.Animatable, Clu
|
|
|
14518
14760
|
* @param property_name the name of the property to get
|
|
14519
14761
|
* @param value return location for the property value
|
|
14520
14762
|
*/
|
|
14521
|
-
get_property(property_name: string
|
|
14763
|
+
get_property(property_name: string, value: any): void
|
|
14522
14764
|
/**
|
|
14523
14765
|
* Gets a property of an object.
|
|
14524
14766
|
*
|
|
@@ -14539,7 +14781,7 @@ export interface ScrollBar extends Atk.ImplementorIface, Clutter.Animatable, Clu
|
|
|
14539
14781
|
* @param property_name the name of the property to get
|
|
14540
14782
|
* @param value return location for the property value
|
|
14541
14783
|
*/
|
|
14542
|
-
get_property(property_name: string
|
|
14784
|
+
get_property(property_name: string, value: any): void
|
|
14543
14785
|
|
|
14544
14786
|
// Own virtual methods of Mx-1.0.Mx.ScrollBar
|
|
14545
14787
|
|
|
@@ -14893,6 +15135,9 @@ export module ScrollView {
|
|
|
14893
15135
|
enable_gestures?: boolean | null
|
|
14894
15136
|
enable_mouse_scrolling?: boolean | null
|
|
14895
15137
|
scroll_policy?: ScrollPolicy | null
|
|
15138
|
+
enableGestures?: boolean | null
|
|
15139
|
+
enableMouseScrolling?: boolean | null
|
|
15140
|
+
scrollPolicy?: ScrollPolicy | null
|
|
14896
15141
|
}
|
|
14897
15142
|
|
|
14898
15143
|
}
|
|
@@ -14902,13 +15147,18 @@ export interface ScrollView extends Atk.ImplementorIface, Clutter.Animatable, Cl
|
|
|
14902
15147
|
// Own properties of Mx-1.0.Mx.ScrollView
|
|
14903
15148
|
|
|
14904
15149
|
enable_gestures: boolean
|
|
15150
|
+
enableGestures: boolean
|
|
14905
15151
|
enable_mouse_scrolling: boolean
|
|
15152
|
+
enableMouseScrolling: boolean
|
|
14906
15153
|
scroll_policy: ScrollPolicy
|
|
15154
|
+
scrollPolicy: ScrollPolicy
|
|
14907
15155
|
|
|
14908
15156
|
// Conflicting properties
|
|
14909
15157
|
|
|
14910
15158
|
x_align: any
|
|
15159
|
+
xAlign: any
|
|
14911
15160
|
y_align: any
|
|
15161
|
+
yAlign: any
|
|
14912
15162
|
|
|
14913
15163
|
// Owm methods of Mx-1.0.Mx.ScrollView
|
|
14914
15164
|
|
|
@@ -14932,7 +15182,7 @@ export interface ScrollView extends Atk.ImplementorIface, Clutter.Animatable, Cl
|
|
|
14932
15182
|
* into `value`.
|
|
14933
15183
|
* @param property_name the name of the property
|
|
14934
15184
|
*/
|
|
14935
|
-
get_property(property_name: string
|
|
15185
|
+
get_property(property_name: string): /* value */ any
|
|
14936
15186
|
|
|
14937
15187
|
// Overloads of get_property
|
|
14938
15188
|
|
|
@@ -14956,7 +15206,7 @@ export interface ScrollView extends Atk.ImplementorIface, Clutter.Animatable, Cl
|
|
|
14956
15206
|
* @param property_name the name of the property to get
|
|
14957
15207
|
* @param value return location for the property value
|
|
14958
15208
|
*/
|
|
14959
|
-
get_property(property_name: string
|
|
15209
|
+
get_property(property_name: string, value: any): void
|
|
14960
15210
|
/**
|
|
14961
15211
|
* Gets a property of an object.
|
|
14962
15212
|
*
|
|
@@ -14977,7 +15227,7 @@ export interface ScrollView extends Atk.ImplementorIface, Clutter.Animatable, Cl
|
|
|
14977
15227
|
* @param property_name the name of the property to get
|
|
14978
15228
|
* @param value return location for the property value
|
|
14979
15229
|
*/
|
|
14980
|
-
get_property(property_name: string
|
|
15230
|
+
get_property(property_name: string, value: any): void
|
|
14981
15231
|
|
|
14982
15232
|
// Class property signals of Mx-1.0.Mx.ScrollView
|
|
14983
15233
|
|
|
@@ -15305,6 +15555,11 @@ export module Settings {
|
|
|
15305
15555
|
icon_theme?: string | null
|
|
15306
15556
|
long_press_timeout?: number | null
|
|
15307
15557
|
small_screen?: boolean | null
|
|
15558
|
+
dragThreshold?: number | null
|
|
15559
|
+
fontName?: string | null
|
|
15560
|
+
iconTheme?: string | null
|
|
15561
|
+
longPressTimeout?: number | null
|
|
15562
|
+
smallScreen?: boolean | null
|
|
15308
15563
|
}
|
|
15309
15564
|
|
|
15310
15565
|
}
|
|
@@ -15314,10 +15569,15 @@ export interface Settings {
|
|
|
15314
15569
|
// Own properties of Mx-1.0.Mx.Settings
|
|
15315
15570
|
|
|
15316
15571
|
drag_threshold: number
|
|
15572
|
+
dragThreshold: number
|
|
15317
15573
|
font_name: string | null
|
|
15574
|
+
fontName: string | null
|
|
15318
15575
|
icon_theme: string | null
|
|
15576
|
+
iconTheme: string | null
|
|
15319
15577
|
long_press_timeout: number
|
|
15578
|
+
longPressTimeout: number
|
|
15320
15579
|
small_screen: boolean
|
|
15580
|
+
smallScreen: boolean
|
|
15321
15581
|
|
|
15322
15582
|
// Own fields of Mx-1.0.Mx.Settings
|
|
15323
15583
|
|
|
@@ -15375,6 +15635,7 @@ export module Slider {
|
|
|
15375
15635
|
|
|
15376
15636
|
buffer_value?: number | null
|
|
15377
15637
|
value?: number | null
|
|
15638
|
+
bufferValue?: number | null
|
|
15378
15639
|
}
|
|
15379
15640
|
|
|
15380
15641
|
}
|
|
@@ -15384,6 +15645,7 @@ export interface Slider extends Atk.ImplementorIface, Clutter.Animatable, Clutte
|
|
|
15384
15645
|
// Own properties of Mx-1.0.Mx.Slider
|
|
15385
15646
|
|
|
15386
15647
|
buffer_value: number
|
|
15648
|
+
bufferValue: number
|
|
15387
15649
|
value: number
|
|
15388
15650
|
|
|
15389
15651
|
// Owm methods of Mx-1.0.Mx.Slider
|
|
@@ -15416,7 +15678,7 @@ export interface Slider extends Atk.ImplementorIface, Clutter.Animatable, Clutte
|
|
|
15416
15678
|
* into `value`.
|
|
15417
15679
|
* @param property_name the name of the property
|
|
15418
15680
|
*/
|
|
15419
|
-
get_property(property_name: string
|
|
15681
|
+
get_property(property_name: string): /* value */ any
|
|
15420
15682
|
|
|
15421
15683
|
// Overloads of get_property
|
|
15422
15684
|
|
|
@@ -15440,7 +15702,7 @@ export interface Slider extends Atk.ImplementorIface, Clutter.Animatable, Clutte
|
|
|
15440
15702
|
* @param property_name the name of the property to get
|
|
15441
15703
|
* @param value return location for the property value
|
|
15442
15704
|
*/
|
|
15443
|
-
get_property(property_name: string
|
|
15705
|
+
get_property(property_name: string, value: any): void
|
|
15444
15706
|
/**
|
|
15445
15707
|
* Gets a property of an object.
|
|
15446
15708
|
*
|
|
@@ -15461,7 +15723,7 @@ export interface Slider extends Atk.ImplementorIface, Clutter.Animatable, Clutte
|
|
|
15461
15723
|
* @param property_name the name of the property to get
|
|
15462
15724
|
* @param value return location for the property value
|
|
15463
15725
|
*/
|
|
15464
|
-
get_property(property_name: string
|
|
15726
|
+
get_property(property_name: string, value: any): void
|
|
15465
15727
|
|
|
15466
15728
|
// Class property signals of Mx-1.0.Mx.Slider
|
|
15467
15729
|
|
|
@@ -15824,7 +16086,7 @@ export interface Spinner extends Atk.ImplementorIface, Clutter.Animatable, Clutt
|
|
|
15824
16086
|
* into `value`.
|
|
15825
16087
|
* @param property_name the name of the property
|
|
15826
16088
|
*/
|
|
15827
|
-
get_property(property_name: string
|
|
16089
|
+
get_property(property_name: string): /* value */ any
|
|
15828
16090
|
|
|
15829
16091
|
// Overloads of get_property
|
|
15830
16092
|
|
|
@@ -15848,7 +16110,7 @@ export interface Spinner extends Atk.ImplementorIface, Clutter.Animatable, Clutt
|
|
|
15848
16110
|
* @param property_name the name of the property to get
|
|
15849
16111
|
* @param value return location for the property value
|
|
15850
16112
|
*/
|
|
15851
|
-
get_property(property_name: string
|
|
16113
|
+
get_property(property_name: string, value: any): void
|
|
15852
16114
|
/**
|
|
15853
16115
|
* Gets a property of an object.
|
|
15854
16116
|
*
|
|
@@ -15869,7 +16131,7 @@ export interface Spinner extends Atk.ImplementorIface, Clutter.Animatable, Clutt
|
|
|
15869
16131
|
* @param property_name the name of the property to get
|
|
15870
16132
|
* @param value return location for the property value
|
|
15871
16133
|
*/
|
|
15872
|
-
get_property(property_name: string
|
|
16134
|
+
get_property(property_name: string, value: any): void
|
|
15873
16135
|
|
|
15874
16136
|
// Own virtual methods of Mx-1.0.Mx.Spinner
|
|
15875
16137
|
|
|
@@ -16282,7 +16544,7 @@ export interface Stack extends Atk.ImplementorIface, Clutter.Animatable, Clutter
|
|
|
16282
16544
|
* into `value`.
|
|
16283
16545
|
* @param property_name the name of the property
|
|
16284
16546
|
*/
|
|
16285
|
-
get_property(property_name: string
|
|
16547
|
+
get_property(property_name: string): /* value */ any
|
|
16286
16548
|
|
|
16287
16549
|
// Overloads of get_property
|
|
16288
16550
|
|
|
@@ -16306,7 +16568,7 @@ export interface Stack extends Atk.ImplementorIface, Clutter.Animatable, Clutter
|
|
|
16306
16568
|
* @param property_name the name of the property to get
|
|
16307
16569
|
* @param value return location for the property value
|
|
16308
16570
|
*/
|
|
16309
|
-
get_property(property_name: string
|
|
16571
|
+
get_property(property_name: string, value: any): void
|
|
16310
16572
|
/**
|
|
16311
16573
|
* Gets a property of an object.
|
|
16312
16574
|
*
|
|
@@ -16327,7 +16589,7 @@ export interface Stack extends Atk.ImplementorIface, Clutter.Animatable, Clutter
|
|
|
16327
16589
|
* @param property_name the name of the property to get
|
|
16328
16590
|
* @param value return location for the property value
|
|
16329
16591
|
*/
|
|
16330
|
-
get_property(property_name: string
|
|
16592
|
+
get_property(property_name: string, value: any): void
|
|
16331
16593
|
|
|
16332
16594
|
// Class property signals of Mx-1.0.Mx.Stack
|
|
16333
16595
|
|
|
@@ -16648,6 +16910,10 @@ export module StackChild {
|
|
|
16648
16910
|
x_fill?: boolean | null
|
|
16649
16911
|
y_align?: Align | null
|
|
16650
16912
|
y_fill?: boolean | null
|
|
16913
|
+
xAlign?: Align | null
|
|
16914
|
+
xFill?: boolean | null
|
|
16915
|
+
yAlign?: Align | null
|
|
16916
|
+
yFill?: boolean | null
|
|
16651
16917
|
}
|
|
16652
16918
|
|
|
16653
16919
|
}
|
|
@@ -16659,9 +16925,13 @@ export interface StackChild {
|
|
|
16659
16925
|
crop: boolean
|
|
16660
16926
|
fit: boolean
|
|
16661
16927
|
x_align: Align
|
|
16928
|
+
xAlign: Align
|
|
16662
16929
|
x_fill: boolean
|
|
16930
|
+
xFill: boolean
|
|
16663
16931
|
y_align: Align
|
|
16932
|
+
yAlign: Align
|
|
16664
16933
|
y_fill: boolean
|
|
16934
|
+
yFill: boolean
|
|
16665
16935
|
|
|
16666
16936
|
// Class property signals of Mx-1.0.Mx.StackChild
|
|
16667
16937
|
|
|
@@ -16759,13 +17029,13 @@ export interface Style {
|
|
|
16759
17029
|
* @param property_name the name of the property to get
|
|
16760
17030
|
* @param value return location for the property value
|
|
16761
17031
|
*/
|
|
16762
|
-
get_property(property_name: string
|
|
17032
|
+
get_property(property_name: string, value: any): void
|
|
16763
17033
|
/**
|
|
16764
17034
|
* Load style information from the specified file.
|
|
16765
17035
|
* @param filename filename of the style sheet to load
|
|
16766
17036
|
* @returns TRUE if the style information was loaded successfully. Returns FALSE on error.
|
|
16767
17037
|
*/
|
|
16768
|
-
load_from_file(filename: string
|
|
17038
|
+
load_from_file(filename: string): boolean
|
|
16769
17039
|
|
|
16770
17040
|
// Own virtual methods of Mx-1.0.Mx.Style
|
|
16771
17041
|
|
|
@@ -16833,6 +17103,8 @@ export module Table {
|
|
|
16833
17103
|
|
|
16834
17104
|
column_spacing?: number | null
|
|
16835
17105
|
row_spacing?: number | null
|
|
17106
|
+
columnSpacing?: number | null
|
|
17107
|
+
rowSpacing?: number | null
|
|
16836
17108
|
}
|
|
16837
17109
|
|
|
16838
17110
|
}
|
|
@@ -16842,9 +17114,13 @@ export interface Table extends Atk.ImplementorIface, Clutter.Animatable, Clutter
|
|
|
16842
17114
|
// Own properties of Mx-1.0.Mx.Table
|
|
16843
17115
|
|
|
16844
17116
|
readonly column_count: number
|
|
17117
|
+
readonly columnCount: number
|
|
16845
17118
|
column_spacing: number
|
|
17119
|
+
columnSpacing: number
|
|
16846
17120
|
readonly row_count: number
|
|
17121
|
+
readonly rowCount: number
|
|
16847
17122
|
row_spacing: number
|
|
17123
|
+
rowSpacing: number
|
|
16848
17124
|
|
|
16849
17125
|
// Owm methods of Mx-1.0.Mx.Table
|
|
16850
17126
|
|
|
@@ -17038,7 +17314,7 @@ export interface Table extends Atk.ImplementorIface, Clutter.Animatable, Clutter
|
|
|
17038
17314
|
* into `value`.
|
|
17039
17315
|
* @param property_name the name of the property
|
|
17040
17316
|
*/
|
|
17041
|
-
get_property(property_name: string
|
|
17317
|
+
get_property(property_name: string): /* value */ any
|
|
17042
17318
|
|
|
17043
17319
|
// Overloads of get_property
|
|
17044
17320
|
|
|
@@ -17062,7 +17338,7 @@ export interface Table extends Atk.ImplementorIface, Clutter.Animatable, Clutter
|
|
|
17062
17338
|
* @param property_name the name of the property to get
|
|
17063
17339
|
* @param value return location for the property value
|
|
17064
17340
|
*/
|
|
17065
|
-
get_property(property_name: string
|
|
17341
|
+
get_property(property_name: string, value: any): void
|
|
17066
17342
|
/**
|
|
17067
17343
|
* Gets a property of an object.
|
|
17068
17344
|
*
|
|
@@ -17083,7 +17359,7 @@ export interface Table extends Atk.ImplementorIface, Clutter.Animatable, Clutter
|
|
|
17083
17359
|
* @param property_name the name of the property to get
|
|
17084
17360
|
* @param value return location for the property value
|
|
17085
17361
|
*/
|
|
17086
|
-
get_property(property_name: string
|
|
17362
|
+
get_property(property_name: string, value: any): void
|
|
17087
17363
|
|
|
17088
17364
|
// Class property signals of Mx-1.0.Mx.Table
|
|
17089
17365
|
|
|
@@ -17420,6 +17696,14 @@ export module TableChild {
|
|
|
17420
17696
|
y_align?: Align | null
|
|
17421
17697
|
y_expand?: boolean | null
|
|
17422
17698
|
y_fill?: boolean | null
|
|
17699
|
+
columnSpan?: number | null
|
|
17700
|
+
rowSpan?: number | null
|
|
17701
|
+
xAlign?: Align | null
|
|
17702
|
+
xExpand?: boolean | null
|
|
17703
|
+
xFill?: boolean | null
|
|
17704
|
+
yAlign?: Align | null
|
|
17705
|
+
yExpand?: boolean | null
|
|
17706
|
+
yFill?: boolean | null
|
|
17423
17707
|
}
|
|
17424
17708
|
|
|
17425
17709
|
}
|
|
@@ -17430,14 +17714,22 @@ export interface TableChild {
|
|
|
17430
17714
|
|
|
17431
17715
|
column: number
|
|
17432
17716
|
column_span: number
|
|
17717
|
+
columnSpan: number
|
|
17433
17718
|
row: number
|
|
17434
17719
|
row_span: number
|
|
17720
|
+
rowSpan: number
|
|
17435
17721
|
x_align: Align
|
|
17722
|
+
xAlign: Align
|
|
17436
17723
|
x_expand: boolean
|
|
17724
|
+
xExpand: boolean
|
|
17437
17725
|
x_fill: boolean
|
|
17726
|
+
xFill: boolean
|
|
17438
17727
|
y_align: Align
|
|
17728
|
+
yAlign: Align
|
|
17439
17729
|
y_expand: boolean
|
|
17730
|
+
yExpand: boolean
|
|
17440
17731
|
y_fill: boolean
|
|
17732
|
+
yFill: boolean
|
|
17441
17733
|
|
|
17442
17734
|
// Class property signals of Mx-1.0.Mx.TableChild
|
|
17443
17735
|
|
|
@@ -17514,7 +17806,7 @@ export interface TextureCache {
|
|
|
17514
17806
|
* @param uri A URI or path to an image file
|
|
17515
17807
|
* @returns %TRUE if the image exists, %FALSE otherwise
|
|
17516
17808
|
*/
|
|
17517
|
-
contains(uri: string
|
|
17809
|
+
contains(uri: string): boolean
|
|
17518
17810
|
/**
|
|
17519
17811
|
* Checks whether there are any textures associated with the given URI by
|
|
17520
17812
|
* the given identifier.
|
|
@@ -17522,14 +17814,14 @@ export interface TextureCache {
|
|
|
17522
17814
|
* @param ident A unique identifier
|
|
17523
17815
|
* @returns %TRUE if the data exists, %FALSE otherwise
|
|
17524
17816
|
*/
|
|
17525
|
-
contains_meta(uri: string
|
|
17817
|
+
contains_meta(uri: string, ident: any): boolean
|
|
17526
17818
|
/**
|
|
17527
17819
|
* This is a wrapper around mx_texture_cache_get_texture() which returns
|
|
17528
17820
|
* a ClutterActor.
|
|
17529
17821
|
* @param uri A URI or path to a image file
|
|
17530
17822
|
* @returns a newly created ClutterTexture
|
|
17531
17823
|
*/
|
|
17532
|
-
get_actor(uri: string
|
|
17824
|
+
get_actor(uri: string): Clutter.Actor
|
|
17533
17825
|
/**
|
|
17534
17826
|
* Create a #CoglHandle representing a texture of the specified image. Adds
|
|
17535
17827
|
* the image to the cache if the image had not been previously loaded.
|
|
@@ -17538,7 +17830,7 @@ export interface TextureCache {
|
|
|
17538
17830
|
* @param uri A URI or path to an image file
|
|
17539
17831
|
* @returns a #CoglHandle to the cached texture
|
|
17540
17832
|
*/
|
|
17541
|
-
get_cogl_texture(uri: string
|
|
17833
|
+
get_cogl_texture(uri: string): Cogl.Handle
|
|
17542
17834
|
/**
|
|
17543
17835
|
* Retrieves the #CoglHandle of the previously added image associated
|
|
17544
17836
|
* with the given unique identifier.
|
|
@@ -17548,7 +17840,7 @@ export interface TextureCache {
|
|
|
17548
17840
|
* @param ident A unique identifier
|
|
17549
17841
|
* @returns A #CoglHandle to a texture, with an added reference. %NULL if no image was found.
|
|
17550
17842
|
*/
|
|
17551
|
-
get_meta_cogl_texture(uri: string
|
|
17843
|
+
get_meta_cogl_texture(uri: string, ident: any): Cogl.Handle
|
|
17552
17844
|
/**
|
|
17553
17845
|
* Create a new ClutterTexture using the previously added image associated
|
|
17554
17846
|
* with the given unique identifier.
|
|
@@ -17558,7 +17850,7 @@ export interface TextureCache {
|
|
|
17558
17850
|
* @param ident A unique identifier
|
|
17559
17851
|
* @returns A newly allocated #ClutterTexture, or %NULL if no image was found
|
|
17560
17852
|
*/
|
|
17561
|
-
get_meta_texture(uri: string
|
|
17853
|
+
get_meta_texture(uri: string, ident: any): Clutter.Texture
|
|
17562
17854
|
/**
|
|
17563
17855
|
* Returns the number of items in the texture cache
|
|
17564
17856
|
* @returns the current size of the cache
|
|
@@ -17572,7 +17864,7 @@ export interface TextureCache {
|
|
|
17572
17864
|
* @param uri A URI or path to a image file
|
|
17573
17865
|
* @returns a newly created ClutterTexture
|
|
17574
17866
|
*/
|
|
17575
|
-
get_texture(uri: string
|
|
17867
|
+
get_texture(uri: string): Clutter.Texture
|
|
17576
17868
|
/**
|
|
17577
17869
|
* Inserts a texture into the texture cache. This can be useful if you
|
|
17578
17870
|
* want to cache a texture from a custom or unhandled URI type, or you
|
|
@@ -17583,7 +17875,7 @@ export interface TextureCache {
|
|
|
17583
17875
|
* @param uri A URI or local file path
|
|
17584
17876
|
* @param texture A #CoglHandle to a texture
|
|
17585
17877
|
*/
|
|
17586
|
-
insert(uri: string
|
|
17878
|
+
insert(uri: string, texture: Cogl.Handle): void
|
|
17587
17879
|
/**
|
|
17588
17880
|
* Inserts a texture that's associated with a URI into the cache.
|
|
17589
17881
|
* If the metadata already exists for this URI, it will be replaced.
|
|
@@ -17595,13 +17887,13 @@ export interface TextureCache {
|
|
|
17595
17887
|
* @param texture A #CoglHandle to a texture
|
|
17596
17888
|
* @param destroy_func An optional destruction function for `ident`
|
|
17597
17889
|
*/
|
|
17598
|
-
insert_meta(uri: string
|
|
17599
|
-
load_cache(filename: string
|
|
17890
|
+
insert_meta(uri: string, ident: any, texture: Cogl.Handle, destroy_func: GLib.DestroyNotify): void
|
|
17891
|
+
load_cache(filename: string): void
|
|
17600
17892
|
|
|
17601
17893
|
// Own virtual methods of Mx-1.0.Mx.TextureCache
|
|
17602
17894
|
|
|
17603
17895
|
vfunc_error_loading(error: GLib.Error): void
|
|
17604
|
-
vfunc_loaded(uri: string
|
|
17896
|
+
vfunc_loaded(uri: string, texture: Clutter.Texture): void
|
|
17605
17897
|
|
|
17606
17898
|
// Class property signals of Mx-1.0.Mx.TextureCache
|
|
17607
17899
|
|
|
@@ -17648,6 +17940,7 @@ export module TextureFrame {
|
|
|
17648
17940
|
parent_texture?: Clutter.Texture | null
|
|
17649
17941
|
right?: number | null
|
|
17650
17942
|
top?: number | null
|
|
17943
|
+
parentTexture?: Clutter.Texture | null
|
|
17651
17944
|
}
|
|
17652
17945
|
|
|
17653
17946
|
}
|
|
@@ -17659,6 +17952,7 @@ export interface TextureFrame extends Atk.ImplementorIface, Clutter.Animatable,
|
|
|
17659
17952
|
bottom: number
|
|
17660
17953
|
left: number
|
|
17661
17954
|
parent_texture: Clutter.Texture
|
|
17955
|
+
parentTexture: Clutter.Texture
|
|
17662
17956
|
right: number
|
|
17663
17957
|
top: number
|
|
17664
17958
|
|
|
@@ -18059,7 +18353,7 @@ export interface Toggle extends Atk.ImplementorIface, Clutter.Animatable, Clutte
|
|
|
18059
18353
|
* into `value`.
|
|
18060
18354
|
* @param property_name the name of the property
|
|
18061
18355
|
*/
|
|
18062
|
-
get_property(property_name: string
|
|
18356
|
+
get_property(property_name: string): /* value */ any
|
|
18063
18357
|
|
|
18064
18358
|
// Overloads of get_property
|
|
18065
18359
|
|
|
@@ -18083,7 +18377,7 @@ export interface Toggle extends Atk.ImplementorIface, Clutter.Animatable, Clutte
|
|
|
18083
18377
|
* @param property_name the name of the property to get
|
|
18084
18378
|
* @param value return location for the property value
|
|
18085
18379
|
*/
|
|
18086
|
-
get_property(property_name: string
|
|
18380
|
+
get_property(property_name: string, value: any): void
|
|
18087
18381
|
/**
|
|
18088
18382
|
* Gets a property of an object.
|
|
18089
18383
|
*
|
|
@@ -18104,7 +18398,7 @@ export interface Toggle extends Atk.ImplementorIface, Clutter.Animatable, Clutte
|
|
|
18104
18398
|
* @param property_name the name of the property to get
|
|
18105
18399
|
* @param value return location for the property value
|
|
18106
18400
|
*/
|
|
18107
|
-
get_property(property_name: string
|
|
18401
|
+
get_property(property_name: string, value: any): void
|
|
18108
18402
|
|
|
18109
18403
|
// Class property signals of Mx-1.0.Mx.Toggle
|
|
18110
18404
|
|
|
@@ -18423,6 +18717,7 @@ export module Toolbar {
|
|
|
18423
18717
|
// Own constructor properties of Mx-1.0.Mx.Toolbar
|
|
18424
18718
|
|
|
18425
18719
|
has_close_button?: boolean | null
|
|
18720
|
+
hasCloseButton?: boolean | null
|
|
18426
18721
|
}
|
|
18427
18722
|
|
|
18428
18723
|
}
|
|
@@ -18432,11 +18727,14 @@ export interface Toolbar extends Atk.ImplementorIface, Clutter.Animatable, Clutt
|
|
|
18432
18727
|
// Own properties of Mx-1.0.Mx.Toolbar
|
|
18433
18728
|
|
|
18434
18729
|
has_close_button: boolean
|
|
18730
|
+
hasCloseButton: boolean
|
|
18435
18731
|
|
|
18436
18732
|
// Conflicting properties
|
|
18437
18733
|
|
|
18438
18734
|
x_align: any
|
|
18735
|
+
xAlign: any
|
|
18439
18736
|
y_align: any
|
|
18737
|
+
yAlign: any
|
|
18440
18738
|
|
|
18441
18739
|
// Own fields of Mx-1.0.Mx.Toolbar
|
|
18442
18740
|
|
|
@@ -18463,7 +18761,7 @@ export interface Toolbar extends Atk.ImplementorIface, Clutter.Animatable, Clutt
|
|
|
18463
18761
|
* into `value`.
|
|
18464
18762
|
* @param property_name the name of the property
|
|
18465
18763
|
*/
|
|
18466
|
-
get_property(property_name: string
|
|
18764
|
+
get_property(property_name: string): /* value */ any
|
|
18467
18765
|
|
|
18468
18766
|
// Overloads of get_property
|
|
18469
18767
|
|
|
@@ -18487,7 +18785,7 @@ export interface Toolbar extends Atk.ImplementorIface, Clutter.Animatable, Clutt
|
|
|
18487
18785
|
* @param property_name the name of the property to get
|
|
18488
18786
|
* @param value return location for the property value
|
|
18489
18787
|
*/
|
|
18490
|
-
get_property(property_name: string
|
|
18788
|
+
get_property(property_name: string, value: any): void
|
|
18491
18789
|
/**
|
|
18492
18790
|
* Gets a property of an object.
|
|
18493
18791
|
*
|
|
@@ -18508,7 +18806,7 @@ export interface Toolbar extends Atk.ImplementorIface, Clutter.Animatable, Clutt
|
|
|
18508
18806
|
* @param property_name the name of the property to get
|
|
18509
18807
|
* @param value return location for the property value
|
|
18510
18808
|
*/
|
|
18511
|
-
get_property(property_name: string
|
|
18809
|
+
get_property(property_name: string, value: any): void
|
|
18512
18810
|
|
|
18513
18811
|
// Own virtual methods of Mx-1.0.Mx.Toolbar
|
|
18514
18812
|
|
|
@@ -18849,6 +19147,7 @@ export module Tooltip {
|
|
|
18849
19147
|
|
|
18850
19148
|
text?: string | null
|
|
18851
19149
|
tip_area?: Clutter.Geometry | null
|
|
19150
|
+
tipArea?: Clutter.Geometry | null
|
|
18852
19151
|
}
|
|
18853
19152
|
|
|
18854
19153
|
}
|
|
@@ -18859,6 +19158,7 @@ export interface Tooltip extends Atk.ImplementorIface, Clutter.Animatable, Clutt
|
|
|
18859
19158
|
|
|
18860
19159
|
text: string | null
|
|
18861
19160
|
tip_area: Clutter.Geometry
|
|
19161
|
+
tipArea: Clutter.Geometry
|
|
18862
19162
|
|
|
18863
19163
|
// Owm methods of Mx-1.0.Mx.Tooltip
|
|
18864
19164
|
|
|
@@ -18866,7 +19166,7 @@ export interface Tooltip extends Atk.ImplementorIface, Clutter.Animatable, Clutt
|
|
|
18866
19166
|
* Get the text displayed on the tooltip
|
|
18867
19167
|
* @returns the text for the tooltip. This must not be freed by the application
|
|
18868
19168
|
*/
|
|
18869
|
-
get_text(): string
|
|
19169
|
+
get_text(): string
|
|
18870
19170
|
/**
|
|
18871
19171
|
* Retrieve the area on the stage that the tooltip currently applies to
|
|
18872
19172
|
* @returns the #ClutterGeometry, owned by the tooltip which must not be freed by the application.
|
|
@@ -18880,7 +19180,7 @@ export interface Tooltip extends Atk.ImplementorIface, Clutter.Animatable, Clutt
|
|
|
18880
19180
|
* Sets the text displayed on the tooltip
|
|
18881
19181
|
* @param text text to set the label to
|
|
18882
19182
|
*/
|
|
18883
|
-
set_text(text: string
|
|
19183
|
+
set_text(text: string): void
|
|
18884
19184
|
/**
|
|
18885
19185
|
* Set the area on the stage that the tooltip applies to.
|
|
18886
19186
|
* @param area A #ClutterGeometry
|
|
@@ -18905,7 +19205,7 @@ export interface Tooltip extends Atk.ImplementorIface, Clutter.Animatable, Clutt
|
|
|
18905
19205
|
* into `value`.
|
|
18906
19206
|
* @param property_name the name of the property
|
|
18907
19207
|
*/
|
|
18908
|
-
get_property(property_name: string
|
|
19208
|
+
get_property(property_name: string): /* value */ any
|
|
18909
19209
|
|
|
18910
19210
|
// Overloads of get_property
|
|
18911
19211
|
|
|
@@ -18929,7 +19229,7 @@ export interface Tooltip extends Atk.ImplementorIface, Clutter.Animatable, Clutt
|
|
|
18929
19229
|
* @param property_name the name of the property to get
|
|
18930
19230
|
* @param value return location for the property value
|
|
18931
19231
|
*/
|
|
18932
|
-
get_property(property_name: string
|
|
19232
|
+
get_property(property_name: string, value: any): void
|
|
18933
19233
|
/**
|
|
18934
19234
|
* Gets a property of an object.
|
|
18935
19235
|
*
|
|
@@ -18950,7 +19250,7 @@ export interface Tooltip extends Atk.ImplementorIface, Clutter.Animatable, Clutt
|
|
|
18950
19250
|
* @param property_name the name of the property to get
|
|
18951
19251
|
* @param value return location for the property value
|
|
18952
19252
|
*/
|
|
18953
|
-
get_property(property_name: string
|
|
19253
|
+
get_property(property_name: string, value: any): void
|
|
18954
19254
|
|
|
18955
19255
|
// Class property signals of Mx-1.0.Mx.Tooltip
|
|
18956
19256
|
|
|
@@ -19271,6 +19571,10 @@ export module Viewport {
|
|
|
19271
19571
|
x_origin?: number | null
|
|
19272
19572
|
y_origin?: number | null
|
|
19273
19573
|
z_origin?: number | null
|
|
19574
|
+
syncAdjustments?: boolean | null
|
|
19575
|
+
xOrigin?: number | null
|
|
19576
|
+
yOrigin?: number | null
|
|
19577
|
+
zOrigin?: number | null
|
|
19274
19578
|
}
|
|
19275
19579
|
|
|
19276
19580
|
}
|
|
@@ -19280,14 +19584,20 @@ export interface Viewport extends Atk.ImplementorIface, Clutter.Animatable, Clut
|
|
|
19280
19584
|
// Own properties of Mx-1.0.Mx.Viewport
|
|
19281
19585
|
|
|
19282
19586
|
sync_adjustments: boolean
|
|
19587
|
+
syncAdjustments: boolean
|
|
19283
19588
|
x_origin: number
|
|
19589
|
+
xOrigin: number
|
|
19284
19590
|
y_origin: number
|
|
19591
|
+
yOrigin: number
|
|
19285
19592
|
z_origin: number
|
|
19593
|
+
zOrigin: number
|
|
19286
19594
|
|
|
19287
19595
|
// Conflicting properties
|
|
19288
19596
|
|
|
19289
19597
|
x_align: any
|
|
19598
|
+
xAlign: any
|
|
19290
19599
|
y_align: any
|
|
19600
|
+
yAlign: any
|
|
19291
19601
|
|
|
19292
19602
|
// Owm methods of Mx-1.0.Mx.Viewport
|
|
19293
19603
|
|
|
@@ -19303,7 +19613,7 @@ export interface Viewport extends Atk.ImplementorIface, Clutter.Animatable, Clut
|
|
|
19303
19613
|
* into `value`.
|
|
19304
19614
|
* @param property_name the name of the property
|
|
19305
19615
|
*/
|
|
19306
|
-
get_property(property_name: string
|
|
19616
|
+
get_property(property_name: string): /* value */ any
|
|
19307
19617
|
|
|
19308
19618
|
// Overloads of get_property
|
|
19309
19619
|
|
|
@@ -19327,7 +19637,7 @@ export interface Viewport extends Atk.ImplementorIface, Clutter.Animatable, Clut
|
|
|
19327
19637
|
* @param property_name the name of the property to get
|
|
19328
19638
|
* @param value return location for the property value
|
|
19329
19639
|
*/
|
|
19330
|
-
get_property(property_name: string
|
|
19640
|
+
get_property(property_name: string, value: any): void
|
|
19331
19641
|
/**
|
|
19332
19642
|
* Gets a property of an object.
|
|
19333
19643
|
*
|
|
@@ -19348,7 +19658,7 @@ export interface Viewport extends Atk.ImplementorIface, Clutter.Animatable, Clut
|
|
|
19348
19658
|
* @param property_name the name of the property to get
|
|
19349
19659
|
* @param value return location for the property value
|
|
19350
19660
|
*/
|
|
19351
|
-
get_property(property_name: string
|
|
19661
|
+
get_property(property_name: string, value: any): void
|
|
19352
19662
|
|
|
19353
19663
|
// Class property signals of Mx-1.0.Mx.Viewport
|
|
19354
19664
|
|
|
@@ -19700,6 +20010,11 @@ export module Widget {
|
|
|
19700
20010
|
* text displayed on the tooltip
|
|
19701
20011
|
*/
|
|
19702
20012
|
tooltip_text?: string | null
|
|
20013
|
+
tooltipDelay?: number | null
|
|
20014
|
+
/**
|
|
20015
|
+
* text displayed on the tooltip
|
|
20016
|
+
*/
|
|
20017
|
+
tooltipText?: string | null
|
|
19703
20018
|
}
|
|
19704
20019
|
|
|
19705
20020
|
}
|
|
@@ -19714,10 +20029,15 @@ export interface Widget extends Atk.ImplementorIface, Clutter.Animatable, Clutte
|
|
|
19714
20029
|
*/
|
|
19715
20030
|
menu: Menu
|
|
19716
20031
|
tooltip_delay: number
|
|
20032
|
+
tooltipDelay: number
|
|
19717
20033
|
/**
|
|
19718
20034
|
* text displayed on the tooltip
|
|
19719
20035
|
*/
|
|
19720
20036
|
tooltip_text: string | null
|
|
20037
|
+
/**
|
|
20038
|
+
* text displayed on the tooltip
|
|
20039
|
+
*/
|
|
20040
|
+
tooltipText: string | null
|
|
19721
20041
|
|
|
19722
20042
|
// Owm methods of Mx-1.0.Mx.Widget
|
|
19723
20043
|
|
|
@@ -19772,7 +20092,7 @@ export interface Widget extends Atk.ImplementorIface, Clutter.Animatable, Clutte
|
|
|
19772
20092
|
* Get the current tooltip string
|
|
19773
20093
|
* @returns The current tooltip string, owned by the #MxWidget
|
|
19774
20094
|
*/
|
|
19775
|
-
get_tooltip_text(): string
|
|
20095
|
+
get_tooltip_text(): string
|
|
19776
20096
|
/**
|
|
19777
20097
|
* Hide the tooltip for `widget`
|
|
19778
20098
|
*/
|
|
@@ -19819,7 +20139,7 @@ export interface Widget extends Atk.ImplementorIface, Clutter.Animatable, Clutte
|
|
|
19819
20139
|
* %FALSE.
|
|
19820
20140
|
* @param text text to set as the tooltip
|
|
19821
20141
|
*/
|
|
19822
|
-
set_tooltip_text(text: string
|
|
20142
|
+
set_tooltip_text(text: string): void
|
|
19823
20143
|
/**
|
|
19824
20144
|
* Show the tooltip for `widget`
|
|
19825
20145
|
*/
|
|
@@ -19832,7 +20152,7 @@ export interface Widget extends Atk.ImplementorIface, Clutter.Animatable, Clutte
|
|
|
19832
20152
|
* into `value`.
|
|
19833
20153
|
* @param property_name the name of the property
|
|
19834
20154
|
*/
|
|
19835
|
-
get_property(property_name: string
|
|
20155
|
+
get_property(property_name: string): /* value */ any
|
|
19836
20156
|
|
|
19837
20157
|
// Overloads of get_property
|
|
19838
20158
|
|
|
@@ -19856,7 +20176,7 @@ export interface Widget extends Atk.ImplementorIface, Clutter.Animatable, Clutte
|
|
|
19856
20176
|
* @param property_name the name of the property to get
|
|
19857
20177
|
* @param value return location for the property value
|
|
19858
20178
|
*/
|
|
19859
|
-
get_property(property_name: string
|
|
20179
|
+
get_property(property_name: string, value: any): void
|
|
19860
20180
|
/**
|
|
19861
20181
|
* Gets a property of an object.
|
|
19862
20182
|
*
|
|
@@ -19877,7 +20197,7 @@ export interface Widget extends Atk.ImplementorIface, Clutter.Animatable, Clutte
|
|
|
19877
20197
|
* @param property_name the name of the property to get
|
|
19878
20198
|
* @param value return location for the property value
|
|
19879
20199
|
*/
|
|
19880
|
-
get_property(property_name: string
|
|
20200
|
+
get_property(property_name: string, value: any): void
|
|
19881
20201
|
|
|
19882
20202
|
// Own virtual methods of Mx-1.0.Mx.Widget
|
|
19883
20203
|
|
|
@@ -20219,6 +20539,12 @@ export module Window {
|
|
|
20219
20539
|
title?: string | null
|
|
20220
20540
|
toolbar?: Toolbar | null
|
|
20221
20541
|
window_rotation?: WindowRotation | null
|
|
20542
|
+
clutterStage?: Clutter.Stage | null
|
|
20543
|
+
hasToolbar?: boolean | null
|
|
20544
|
+
iconCoglTexture?: string | null
|
|
20545
|
+
iconName?: string | null
|
|
20546
|
+
smallScreen?: boolean | null
|
|
20547
|
+
windowRotation?: WindowRotation | null
|
|
20222
20548
|
}
|
|
20223
20549
|
|
|
20224
20550
|
}
|
|
@@ -20229,16 +20555,24 @@ export interface Window {
|
|
|
20229
20555
|
|
|
20230
20556
|
child: Clutter.Actor
|
|
20231
20557
|
readonly clutter_stage: Clutter.Stage
|
|
20558
|
+
readonly clutterStage: Clutter.Stage
|
|
20232
20559
|
fullscreen: boolean
|
|
20233
20560
|
has_toolbar: boolean
|
|
20561
|
+
hasToolbar: boolean
|
|
20234
20562
|
icon_cogl_texture: string | null
|
|
20563
|
+
iconCoglTexture: string | null
|
|
20235
20564
|
icon_name: string | null
|
|
20565
|
+
iconName: string | null
|
|
20236
20566
|
small_screen: boolean
|
|
20567
|
+
smallScreen: boolean
|
|
20237
20568
|
title: string | null
|
|
20238
20569
|
toolbar: Toolbar
|
|
20239
20570
|
window_rotation: WindowRotation
|
|
20571
|
+
windowRotation: WindowRotation
|
|
20240
20572
|
readonly window_rotation_angle: number
|
|
20573
|
+
readonly windowRotationAngle: number
|
|
20241
20574
|
readonly window_rotation_timeline: Clutter.Timeline
|
|
20575
|
+
readonly windowRotationTimeline: Clutter.Timeline
|
|
20242
20576
|
|
|
20243
20577
|
// Own fields of Mx-1.0.Mx.Window
|
|
20244
20578
|
|
|
@@ -20273,7 +20607,7 @@ export interface Window {
|
|
|
20273
20607
|
* set, or the icon was set with mx_window_set_icon_from_cogl_texture().
|
|
20274
20608
|
* @returns The window icon name, or %NULL
|
|
20275
20609
|
*/
|
|
20276
|
-
get_icon_name(): string
|
|
20610
|
+
get_icon_name(): string
|
|
20277
20611
|
/**
|
|
20278
20612
|
* Determines if the window is in small-screen mode.
|
|
20279
20613
|
* See mx_window_set_small_screen().
|
|
@@ -20284,7 +20618,7 @@ export interface Window {
|
|
|
20284
20618
|
* Retrieves the title used for the window.
|
|
20285
20619
|
* @returns The title used for the window
|
|
20286
20620
|
*/
|
|
20287
|
-
get_title(): string
|
|
20621
|
+
get_title(): string
|
|
20288
20622
|
/**
|
|
20289
20623
|
* Retrieves the toolbar associated with the window.
|
|
20290
20624
|
* @returns A #MxToolbar
|
|
@@ -20362,7 +20696,7 @@ export interface Window {
|
|
|
20362
20696
|
* window-system specific.
|
|
20363
20697
|
* @param title A string to use for the window title name
|
|
20364
20698
|
*/
|
|
20365
|
-
set_title(title: string
|
|
20699
|
+
set_title(title: string): void
|
|
20366
20700
|
/**
|
|
20367
20701
|
* Sets the toolbar associated with the window.
|
|
20368
20702
|
* @param toolbar
|
|
@@ -20651,7 +20985,7 @@ export class BorderImage {
|
|
|
20651
20985
|
|
|
20652
20986
|
// Constructors of Mx-1.0.Mx.BorderImage
|
|
20653
20987
|
|
|
20654
|
-
static set_from_string(value: any, str: string
|
|
20988
|
+
static set_from_string(value: any, str: string, filename: string): void
|
|
20655
20989
|
}
|
|
20656
20990
|
|
|
20657
20991
|
export interface BoxLayoutChildClass {
|
|
@@ -21692,10 +22026,10 @@ export interface StylableIface {
|
|
|
21692
22026
|
|
|
21693
22027
|
get_style: (stylable: Stylable) => Style
|
|
21694
22028
|
set_style: (stylable: Stylable, style: Style) => void
|
|
21695
|
-
get_style_class: (stylable: Stylable) => string
|
|
21696
|
-
set_style_class: (stylable: Stylable, style_class: string
|
|
21697
|
-
get_style_pseudo_class: (stylable: Stylable) => string
|
|
21698
|
-
set_style_pseudo_class: (stylable: Stylable, pseudo_class: string
|
|
22029
|
+
get_style_class: (stylable: Stylable) => string
|
|
22030
|
+
set_style_class: (stylable: Stylable, style_class: string) => void
|
|
22031
|
+
get_style_pseudo_class: (stylable: Stylable) => string
|
|
22032
|
+
set_style_pseudo_class: (stylable: Stylable, pseudo_class: string) => void
|
|
21699
22033
|
style_changed: (stylable: Stylable, flags: StyleChangedFlags) => void
|
|
21700
22034
|
}
|
|
21701
22035
|
|
|
@@ -21813,7 +22147,7 @@ export interface TextureCacheClass {
|
|
|
21813
22147
|
// Own fields of Mx-1.0.Mx.TextureCacheClass
|
|
21814
22148
|
|
|
21815
22149
|
parent_class: GObject.ObjectClass
|
|
21816
|
-
loaded: (self: TextureCache, uri: string
|
|
22150
|
+
loaded: (self: TextureCache, uri: string, texture: Clutter.Texture) => void
|
|
21817
22151
|
error_loading: (self: TextureCache, error: GLib.Error) => void
|
|
21818
22152
|
}
|
|
21819
22153
|
|