@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.ts
CHANGED
|
@@ -264,10 +264,10 @@ const VERSION_HEX: number
|
|
|
264
264
|
* The full version of the Mx library, in string form (suited for
|
|
265
265
|
* string concatenation)
|
|
266
266
|
*/
|
|
267
|
-
const VERSION_S: string
|
|
267
|
+
const VERSION_S: string
|
|
268
268
|
function actor_box_clamp_to_pixels(box: Clutter.ActorBox): void
|
|
269
269
|
function allocate_align_fill(child: Clutter.Actor, childbox: Clutter.ActorBox, x_alignment: Align, y_alignment: Align, x_fill: boolean, y_fill: boolean): void
|
|
270
|
-
function border_image_set_from_string(value: any, str: string
|
|
270
|
+
function border_image_set_from_string(value: any, str: string, filename: string): void
|
|
271
271
|
/**
|
|
272
272
|
* Transforms a focus direction to a focus hint. This is a convenience
|
|
273
273
|
* function for actors that implement the #MxFocusable interface, to
|
|
@@ -285,7 +285,7 @@ function border_image_set_from_string(value: any, str: string | null, filename:
|
|
|
285
285
|
* @returns A #MxFocusHint
|
|
286
286
|
*/
|
|
287
287
|
function focus_hint_from_direction(direction: FocusDirection): FocusHint
|
|
288
|
-
function font_weight_set_from_string(value: any, str: string
|
|
288
|
+
function font_weight_set_from_string(value: any, str: string): void
|
|
289
289
|
function image_error_quark(): GLib.Quark
|
|
290
290
|
/**
|
|
291
291
|
* Initializes internationalization support for Mx. If MxApplication is
|
|
@@ -316,7 +316,7 @@ interface ActionCallbackFunc {
|
|
|
316
316
|
* @param text text from the clipboard
|
|
317
317
|
*/
|
|
318
318
|
interface ClipboardCallbackFunc {
|
|
319
|
-
(clipboard: Clipboard, text: string
|
|
319
|
+
(clipboard: Clipboard, text: string): void
|
|
320
320
|
}
|
|
321
321
|
module Draggable {
|
|
322
322
|
|
|
@@ -354,6 +354,9 @@ module Draggable {
|
|
|
354
354
|
drag_actor?: Clutter.Actor | null
|
|
355
355
|
drag_enabled?: boolean | null
|
|
356
356
|
drag_threshold?: number | null
|
|
357
|
+
dragActor?: Clutter.Actor | null
|
|
358
|
+
dragEnabled?: boolean | null
|
|
359
|
+
dragThreshold?: number | null
|
|
357
360
|
}
|
|
358
361
|
|
|
359
362
|
}
|
|
@@ -364,8 +367,11 @@ interface Draggable extends Clutter.Actor {
|
|
|
364
367
|
|
|
365
368
|
axis: DragAxis
|
|
366
369
|
drag_actor: Clutter.Actor
|
|
370
|
+
dragActor: Clutter.Actor
|
|
367
371
|
drag_enabled: boolean
|
|
372
|
+
dragEnabled: boolean
|
|
368
373
|
drag_threshold: number
|
|
374
|
+
dragThreshold: number
|
|
369
375
|
|
|
370
376
|
// Owm methods of Mx-1.0.Mx.Draggable
|
|
371
377
|
|
|
@@ -719,6 +725,7 @@ module Droppable {
|
|
|
719
725
|
// Own constructor properties of Mx-1.0.Mx.Droppable
|
|
720
726
|
|
|
721
727
|
drop_enabled?: boolean | null
|
|
728
|
+
dropEnabled?: boolean | null
|
|
722
729
|
}
|
|
723
730
|
|
|
724
731
|
}
|
|
@@ -728,6 +735,7 @@ interface Droppable extends Clutter.Actor {
|
|
|
728
735
|
// Own properties of Mx-1.0.Mx.Droppable
|
|
729
736
|
|
|
730
737
|
drop_enabled: boolean
|
|
738
|
+
dropEnabled: boolean
|
|
731
739
|
|
|
732
740
|
// Owm methods of Mx-1.0.Mx.Droppable
|
|
733
741
|
|
|
@@ -1164,6 +1172,8 @@ module Scrollable {
|
|
|
1164
1172
|
|
|
1165
1173
|
horizontal_adjustment?: Adjustment | null
|
|
1166
1174
|
vertical_adjustment?: Adjustment | null
|
|
1175
|
+
horizontalAdjustment?: Adjustment | null
|
|
1176
|
+
verticalAdjustment?: Adjustment | null
|
|
1167
1177
|
}
|
|
1168
1178
|
|
|
1169
1179
|
}
|
|
@@ -1173,7 +1183,9 @@ interface Scrollable {
|
|
|
1173
1183
|
// Own properties of Mx-1.0.Mx.Scrollable
|
|
1174
1184
|
|
|
1175
1185
|
horizontal_adjustment: Adjustment
|
|
1186
|
+
horizontalAdjustment: Adjustment
|
|
1176
1187
|
vertical_adjustment: Adjustment
|
|
1188
|
+
verticalAdjustment: Adjustment
|
|
1177
1189
|
|
|
1178
1190
|
// Owm methods of Mx-1.0.Mx.Scrollable
|
|
1179
1191
|
|
|
@@ -1246,6 +1258,8 @@ module Stylable {
|
|
|
1246
1258
|
style?: Style | null
|
|
1247
1259
|
style_class?: string | null
|
|
1248
1260
|
style_pseudo_class?: string | null
|
|
1261
|
+
styleClass?: string | null
|
|
1262
|
+
stylePseudoClass?: string | null
|
|
1249
1263
|
}
|
|
1250
1264
|
|
|
1251
1265
|
}
|
|
@@ -1256,7 +1270,9 @@ interface Stylable {
|
|
|
1256
1270
|
|
|
1257
1271
|
style: Style
|
|
1258
1272
|
style_class: string | null
|
|
1273
|
+
styleClass: string | null
|
|
1259
1274
|
style_pseudo_class: string | null
|
|
1275
|
+
stylePseudoClass: string | null
|
|
1260
1276
|
|
|
1261
1277
|
// Owm methods of Mx-1.0.Mx.Stylable
|
|
1262
1278
|
|
|
@@ -1268,20 +1284,20 @@ interface Stylable {
|
|
|
1268
1284
|
* @param property_name the name of the property to find
|
|
1269
1285
|
* @returns a #GParamSpec for the given property, or %NULL if no property with that name was found
|
|
1270
1286
|
*/
|
|
1271
|
-
find_property(property_name: string
|
|
1287
|
+
find_property(property_name: string): GObject.ParamSpec
|
|
1272
1288
|
/**
|
|
1273
1289
|
* Query `stylable` for the default value of property `property_name` and
|
|
1274
1290
|
* fill `value_out` with the result.
|
|
1275
1291
|
* @param property_name name of the property to query
|
|
1276
1292
|
* @returns %TRUE if property @property_name exists and the default value has been returned.
|
|
1277
1293
|
*/
|
|
1278
|
-
get_default_value(property_name: string
|
|
1294
|
+
get_default_value(property_name: string): [ /* returnType */ boolean, /* value_out */ any ]
|
|
1279
1295
|
/**
|
|
1280
1296
|
* Retrieves the value of `property_name` for `stylable,` and puts it
|
|
1281
1297
|
* into `value`.
|
|
1282
1298
|
* @param property_name the name of the property
|
|
1283
1299
|
*/
|
|
1284
|
-
get_property(property_name: string
|
|
1300
|
+
get_property(property_name: string): /* value */ any
|
|
1285
1301
|
|
|
1286
1302
|
// Overloads of get_property
|
|
1287
1303
|
|
|
@@ -1305,7 +1321,7 @@ interface Stylable {
|
|
|
1305
1321
|
* @param property_name the name of the property to get
|
|
1306
1322
|
* @param value return location for the property value
|
|
1307
1323
|
*/
|
|
1308
|
-
get_property(property_name: string
|
|
1324
|
+
get_property(property_name: string, value: any): void
|
|
1309
1325
|
/**
|
|
1310
1326
|
* Retrieves the #MxStyle used by `stylable`. This function does not
|
|
1311
1327
|
* alter the reference count of the returned object.
|
|
@@ -1316,13 +1332,13 @@ interface Stylable {
|
|
|
1316
1332
|
* Get the current style class name
|
|
1317
1333
|
* @returns the class name string. The string is owned by the #MxWidget and should not be modified or freed.
|
|
1318
1334
|
*/
|
|
1319
|
-
get_style_class(): string
|
|
1335
|
+
get_style_class(): string
|
|
1320
1336
|
/**
|
|
1321
1337
|
* Get the current style pseudo class. This can contain multiple pseudo class
|
|
1322
1338
|
* names, separated by ':'.
|
|
1323
1339
|
* @returns the pseudo class string. The string is owned by the #MxWidget and should not be modified or freed.
|
|
1324
1340
|
*/
|
|
1325
|
-
get_style_pseudo_class(): string
|
|
1341
|
+
get_style_pseudo_class(): string
|
|
1326
1342
|
/**
|
|
1327
1343
|
* Retrieves all the #GParamSpec<!-- -->s installed by `stylable`.
|
|
1328
1344
|
* @returns an array of #GParamSpec<!-- -->s. Free it with g_free() when done.
|
|
@@ -1342,13 +1358,13 @@ interface Stylable {
|
|
|
1342
1358
|
* Set the style class name
|
|
1343
1359
|
* @param style_class a new style class string
|
|
1344
1360
|
*/
|
|
1345
|
-
set_style_class(style_class: string
|
|
1361
|
+
set_style_class(style_class: string): void
|
|
1346
1362
|
/**
|
|
1347
1363
|
* Set the style pseudo class. The string can contain multiple pseudo class
|
|
1348
1364
|
* names, separated by ':'.
|
|
1349
1365
|
* @param pseudo_class a new pseudo class string
|
|
1350
1366
|
*/
|
|
1351
|
-
set_style_pseudo_class(pseudo_class: string
|
|
1367
|
+
set_style_pseudo_class(pseudo_class: string): void
|
|
1352
1368
|
/**
|
|
1353
1369
|
* Emit the "style-changed" signal on `stylable` to notify it that one or more
|
|
1354
1370
|
* of the style properties has changed.
|
|
@@ -1364,20 +1380,20 @@ interface Stylable {
|
|
|
1364
1380
|
* #MxStylable:style-pseudo-class property.
|
|
1365
1381
|
* @param new_class A pseudo-class name to add
|
|
1366
1382
|
*/
|
|
1367
|
-
style_pseudo_class_add(new_class: string
|
|
1383
|
+
style_pseudo_class_add(new_class: string): void
|
|
1368
1384
|
/**
|
|
1369
1385
|
* Check if the given pseudo-class name is contained in the list of
|
|
1370
1386
|
* set pseudo classes on this #MxStylable object.
|
|
1371
1387
|
* @param pseudo_class A pseudo-class name
|
|
1372
1388
|
* @returns %TRUE if the given pseudo-class is set, %FALSE otherwise
|
|
1373
1389
|
*/
|
|
1374
|
-
style_pseudo_class_contains(pseudo_class: string
|
|
1390
|
+
style_pseudo_class_contains(pseudo_class: string): boolean
|
|
1375
1391
|
/**
|
|
1376
1392
|
* Remove the specified pseudo class name from the list of pseudo classes
|
|
1377
1393
|
* contained in the #MxStylable:style-pseudo-class property.
|
|
1378
1394
|
* @param remove_class A pseudo class name to remove
|
|
1379
1395
|
*/
|
|
1380
|
-
style_pseudo_class_remove(remove_class: string
|
|
1396
|
+
style_pseudo_class_remove(remove_class: string): void
|
|
1381
1397
|
|
|
1382
1398
|
// Own virtual methods of Mx-1.0.Mx.Stylable
|
|
1383
1399
|
|
|
@@ -1393,14 +1409,14 @@ interface Stylable {
|
|
|
1393
1409
|
* @virtual
|
|
1394
1410
|
* @returns the class name string. The string is owned by the #MxWidget and should not be modified or freed.
|
|
1395
1411
|
*/
|
|
1396
|
-
vfunc_get_style_class(): string
|
|
1412
|
+
vfunc_get_style_class(): string
|
|
1397
1413
|
/**
|
|
1398
1414
|
* Get the current style pseudo class. This can contain multiple pseudo class
|
|
1399
1415
|
* names, separated by ':'.
|
|
1400
1416
|
* @virtual
|
|
1401
1417
|
* @returns the pseudo class string. The string is owned by the #MxWidget and should not be modified or freed.
|
|
1402
1418
|
*/
|
|
1403
|
-
vfunc_get_style_pseudo_class(): string
|
|
1419
|
+
vfunc_get_style_pseudo_class(): string
|
|
1404
1420
|
/**
|
|
1405
1421
|
* Sets `style` as the new #MxStyle to be used by `stylable`.
|
|
1406
1422
|
*
|
|
@@ -1417,14 +1433,14 @@ interface Stylable {
|
|
|
1417
1433
|
* @virtual
|
|
1418
1434
|
* @param style_class a new style class string
|
|
1419
1435
|
*/
|
|
1420
|
-
vfunc_set_style_class(style_class: string
|
|
1436
|
+
vfunc_set_style_class(style_class: string): void
|
|
1421
1437
|
/**
|
|
1422
1438
|
* Set the style pseudo class. The string can contain multiple pseudo class
|
|
1423
1439
|
* names, separated by ':'.
|
|
1424
1440
|
* @virtual
|
|
1425
1441
|
* @param pseudo_class a new pseudo class string
|
|
1426
1442
|
*/
|
|
1427
|
-
vfunc_set_style_pseudo_class(pseudo_class: string
|
|
1443
|
+
vfunc_set_style_pseudo_class(pseudo_class: string): void
|
|
1428
1444
|
/**
|
|
1429
1445
|
* Emit the "style-changed" signal on `stylable` to notify it that one or more
|
|
1430
1446
|
* of the style properties has changed.
|
|
@@ -1541,6 +1557,7 @@ module Action {
|
|
|
1541
1557
|
active?: boolean | null
|
|
1542
1558
|
display_name?: string | null
|
|
1543
1559
|
icon?: string | null
|
|
1560
|
+
displayName?: string | null
|
|
1544
1561
|
}
|
|
1545
1562
|
|
|
1546
1563
|
}
|
|
@@ -1551,6 +1568,7 @@ interface Action extends Gio.Action {
|
|
|
1551
1568
|
|
|
1552
1569
|
active: boolean
|
|
1553
1570
|
display_name: string | null
|
|
1571
|
+
displayName: string | null
|
|
1554
1572
|
icon: string | null
|
|
1555
1573
|
|
|
1556
1574
|
// Owm methods of Mx-1.0.Mx.Action
|
|
@@ -1564,17 +1582,17 @@ interface Action extends Gio.Action {
|
|
|
1564
1582
|
* Get the display name of the action
|
|
1565
1583
|
* @returns display-name of the action, owned by MxAction
|
|
1566
1584
|
*/
|
|
1567
|
-
get_display_name(): string
|
|
1585
|
+
get_display_name(): string
|
|
1568
1586
|
/**
|
|
1569
1587
|
* Get the icon of the action
|
|
1570
1588
|
* @returns icon of the action, owned by MxAction
|
|
1571
1589
|
*/
|
|
1572
|
-
get_icon(): string
|
|
1590
|
+
get_icon(): string
|
|
1573
1591
|
/**
|
|
1574
1592
|
* Get the name of the action
|
|
1575
1593
|
* @returns name of the action, owned by MxAction
|
|
1576
1594
|
*/
|
|
1577
|
-
get_name(): string
|
|
1595
|
+
get_name(): string
|
|
1578
1596
|
/**
|
|
1579
1597
|
* Set the value of the active property
|
|
1580
1598
|
* @param active the value to set
|
|
@@ -1584,17 +1602,17 @@ interface Action extends Gio.Action {
|
|
|
1584
1602
|
* Set the name of the action to display to the user
|
|
1585
1603
|
* @param name new display name to set
|
|
1586
1604
|
*/
|
|
1587
|
-
set_display_name(name: string
|
|
1605
|
+
set_display_name(name: string): void
|
|
1588
1606
|
/**
|
|
1589
1607
|
* The icon to be used in a visual representation of an action.
|
|
1590
1608
|
* @param name new icon to set
|
|
1591
1609
|
*/
|
|
1592
|
-
set_icon(name: string
|
|
1610
|
+
set_icon(name: string): void
|
|
1593
1611
|
/**
|
|
1594
1612
|
* Set the name of the action
|
|
1595
1613
|
* @param name new name to set
|
|
1596
1614
|
*/
|
|
1597
|
-
set_name(name: string
|
|
1615
|
+
set_name(name: string): void
|
|
1598
1616
|
|
|
1599
1617
|
// Own virtual methods of Mx-1.0.Mx.Action
|
|
1600
1618
|
|
|
@@ -1676,7 +1694,7 @@ class Action extends GObject.InitiallyUnowned {
|
|
|
1676
1694
|
* @param activated_cb callback to connect to the activated signal
|
|
1677
1695
|
* @returns a newly allocated #MxAction
|
|
1678
1696
|
*/
|
|
1679
|
-
static new_full(name: string
|
|
1697
|
+
static new_full(name: string, display_name: string, activated_cb: ActionCallbackFunc | null): Action
|
|
1680
1698
|
/**
|
|
1681
1699
|
* Creates a new stateful action.
|
|
1682
1700
|
*
|
|
@@ -1688,7 +1706,7 @@ class Action extends GObject.InitiallyUnowned {
|
|
|
1688
1706
|
* @param state the initial state of the action
|
|
1689
1707
|
* @returns a new #MxAction
|
|
1690
1708
|
*/
|
|
1691
|
-
static new_stateful(name: string
|
|
1709
|
+
static new_stateful(name: string, parameter_type: GLib.VariantType | null, state: GLib.Variant): Action
|
|
1692
1710
|
/**
|
|
1693
1711
|
* Creates a new action with a parameter.
|
|
1694
1712
|
*
|
|
@@ -1698,7 +1716,7 @@ class Action extends GObject.InitiallyUnowned {
|
|
|
1698
1716
|
* @param parameter_type the type of parameter to the activate function
|
|
1699
1717
|
* @returns a new #MxAction
|
|
1700
1718
|
*/
|
|
1701
|
-
static new_with_parameter(name: string
|
|
1719
|
+
static new_with_parameter(name: string, parameter_type?: GLib.VariantType | null): Action
|
|
1702
1720
|
_init(config?: Action.ConstructorProperties): void
|
|
1703
1721
|
}
|
|
1704
1722
|
|
|
@@ -1764,6 +1782,7 @@ module ActorManager {
|
|
|
1764
1782
|
|
|
1765
1783
|
stage?: Clutter.Stage | null
|
|
1766
1784
|
time_slice?: number | null
|
|
1785
|
+
timeSlice?: number | null
|
|
1767
1786
|
}
|
|
1768
1787
|
|
|
1769
1788
|
}
|
|
@@ -1773,8 +1792,10 @@ interface ActorManager {
|
|
|
1773
1792
|
// Own properties of Mx-1.0.Mx.ActorManager
|
|
1774
1793
|
|
|
1775
1794
|
readonly n_operations: number
|
|
1795
|
+
readonly nOperations: number
|
|
1776
1796
|
readonly stage: Clutter.Stage
|
|
1777
1797
|
time_slice: number
|
|
1798
|
+
timeSlice: number
|
|
1778
1799
|
|
|
1779
1800
|
// Own fields of Mx-1.0.Mx.ActorManager
|
|
1780
1801
|
|
|
@@ -1992,6 +2013,10 @@ module Adjustment {
|
|
|
1992
2013
|
step_increment?: number | null
|
|
1993
2014
|
upper?: number | null
|
|
1994
2015
|
value?: number | null
|
|
2016
|
+
clampValue?: boolean | null
|
|
2017
|
+
pageIncrement?: number | null
|
|
2018
|
+
pageSize?: number | null
|
|
2019
|
+
stepIncrement?: number | null
|
|
1995
2020
|
}
|
|
1996
2021
|
|
|
1997
2022
|
}
|
|
@@ -2001,11 +2026,15 @@ interface Adjustment {
|
|
|
2001
2026
|
// Own properties of Mx-1.0.Mx.Adjustment
|
|
2002
2027
|
|
|
2003
2028
|
clamp_value: boolean
|
|
2029
|
+
clampValue: boolean
|
|
2004
2030
|
elastic: boolean
|
|
2005
2031
|
lower: number
|
|
2006
2032
|
page_increment: number
|
|
2033
|
+
pageIncrement: number
|
|
2007
2034
|
page_size: number
|
|
2035
|
+
pageSize: number
|
|
2008
2036
|
step_increment: number
|
|
2037
|
+
stepIncrement: number
|
|
2009
2038
|
upper: number
|
|
2010
2039
|
value: number
|
|
2011
2040
|
|
|
@@ -2237,6 +2266,7 @@ module Application {
|
|
|
2237
2266
|
|
|
2238
2267
|
application_name?: string | null
|
|
2239
2268
|
flags?: number | null
|
|
2269
|
+
applicationName?: string | null
|
|
2240
2270
|
}
|
|
2241
2271
|
|
|
2242
2272
|
}
|
|
@@ -2246,6 +2276,7 @@ interface Application {
|
|
|
2246
2276
|
// Own properties of Mx-1.0.Mx.Application
|
|
2247
2277
|
|
|
2248
2278
|
readonly application_name: string | null
|
|
2279
|
+
readonly applicationName: string | null
|
|
2249
2280
|
readonly flags: number
|
|
2250
2281
|
|
|
2251
2282
|
// Own fields of Mx-1.0.Mx.Application
|
|
@@ -2293,14 +2324,14 @@ interface Application {
|
|
|
2293
2324
|
* Run the named action for the application.
|
|
2294
2325
|
* @param name name of the action to invoke
|
|
2295
2326
|
*/
|
|
2296
|
-
invoke_action(name: string
|
|
2327
|
+
invoke_action(name: string): void
|
|
2297
2328
|
/**
|
|
2298
2329
|
* Run the named action for the application, passing `variant` as the parameter
|
|
2299
2330
|
* for the action.
|
|
2300
2331
|
* @param name name of the action to invoke
|
|
2301
2332
|
* @param variant parameter for the action
|
|
2302
2333
|
*/
|
|
2303
|
-
invoke_action_with_parameter(name: string
|
|
2334
|
+
invoke_action_with_parameter(name: string, variant: GLib.Variant): void
|
|
2304
2335
|
/**
|
|
2305
2336
|
* Query whether #MxApplication is running. This will also return #TRUE if the
|
|
2306
2337
|
* given #MxApplication is single instance and there is an instance already
|
|
@@ -2317,7 +2348,7 @@ interface Application {
|
|
|
2317
2348
|
* Remove the action with the specified name from the application.
|
|
2318
2349
|
* @param name name of the action to remove
|
|
2319
2350
|
*/
|
|
2320
|
-
remove_action(name: string
|
|
2351
|
+
remove_action(name: string): void
|
|
2321
2352
|
/**
|
|
2322
2353
|
* Remove the specified window from the application. This will cause the window
|
|
2323
2354
|
* to be unreferenced and destroyed unless another reference is held on it.
|
|
@@ -2388,7 +2419,7 @@ class Application extends GObject.Object {
|
|
|
2388
2419
|
* @param flags Application flags.
|
|
2389
2420
|
* @returns the #MxApplication singleton.
|
|
2390
2421
|
*/
|
|
2391
|
-
constructor(argv: string[] | null, name: string
|
|
2422
|
+
constructor(argv: string[] | null, name: string, flags: ApplicationFlags)
|
|
2392
2423
|
/**
|
|
2393
2424
|
* Intialises everything needed to operate Clutter and use #MxApplication.
|
|
2394
2425
|
* See clutter_init().
|
|
@@ -2398,7 +2429,7 @@ class Application extends GObject.Object {
|
|
|
2398
2429
|
* @param flags Application flags.
|
|
2399
2430
|
* @returns the #MxApplication singleton.
|
|
2400
2431
|
*/
|
|
2401
|
-
static new(argv: string[] | null, name: string
|
|
2432
|
+
static new(argv: string[] | null, name: string, flags: ApplicationFlags): Application
|
|
2402
2433
|
_init(config?: Application.ConstructorProperties): void
|
|
2403
2434
|
}
|
|
2404
2435
|
|
|
@@ -2430,6 +2461,22 @@ module Bin {
|
|
|
2430
2461
|
* Whether the child should fill the vertical allocation
|
|
2431
2462
|
*/
|
|
2432
2463
|
y_fill?: boolean | null
|
|
2464
|
+
/**
|
|
2465
|
+
* The horizontal alignment of the #MxBin child.
|
|
2466
|
+
*/
|
|
2467
|
+
xAlign: any
|
|
2468
|
+
/**
|
|
2469
|
+
* Whether the child should fill the horizontal allocation
|
|
2470
|
+
*/
|
|
2471
|
+
xFill?: boolean | null
|
|
2472
|
+
/**
|
|
2473
|
+
* The vertical alignment of the #MxBin child.
|
|
2474
|
+
*/
|
|
2475
|
+
yAlign: any
|
|
2476
|
+
/**
|
|
2477
|
+
* Whether the child should fill the vertical allocation
|
|
2478
|
+
*/
|
|
2479
|
+
yFill?: boolean | null
|
|
2433
2480
|
}
|
|
2434
2481
|
|
|
2435
2482
|
}
|
|
@@ -2446,18 +2493,34 @@ interface Bin extends Atk.ImplementorIface, Clutter.Animatable, Clutter.Containe
|
|
|
2446
2493
|
* The horizontal alignment of the #MxBin child.
|
|
2447
2494
|
*/
|
|
2448
2495
|
x_align: any
|
|
2496
|
+
/**
|
|
2497
|
+
* The horizontal alignment of the #MxBin child.
|
|
2498
|
+
*/
|
|
2499
|
+
xAlign: any
|
|
2449
2500
|
/**
|
|
2450
2501
|
* Whether the child should fill the horizontal allocation
|
|
2451
2502
|
*/
|
|
2452
2503
|
x_fill: boolean
|
|
2504
|
+
/**
|
|
2505
|
+
* Whether the child should fill the horizontal allocation
|
|
2506
|
+
*/
|
|
2507
|
+
xFill: boolean
|
|
2453
2508
|
/**
|
|
2454
2509
|
* The vertical alignment of the #MxBin child.
|
|
2455
2510
|
*/
|
|
2456
2511
|
y_align: any
|
|
2512
|
+
/**
|
|
2513
|
+
* The vertical alignment of the #MxBin child.
|
|
2514
|
+
*/
|
|
2515
|
+
yAlign: any
|
|
2457
2516
|
/**
|
|
2458
2517
|
* Whether the child should fill the vertical allocation
|
|
2459
2518
|
*/
|
|
2460
2519
|
y_fill: boolean
|
|
2520
|
+
/**
|
|
2521
|
+
* Whether the child should fill the vertical allocation
|
|
2522
|
+
*/
|
|
2523
|
+
yFill: boolean
|
|
2461
2524
|
|
|
2462
2525
|
// Owm methods of Mx-1.0.Mx.Bin
|
|
2463
2526
|
|
|
@@ -2517,7 +2580,7 @@ interface Bin extends Atk.ImplementorIface, Clutter.Animatable, Clutter.Containe
|
|
|
2517
2580
|
* into `value`.
|
|
2518
2581
|
* @param property_name the name of the property
|
|
2519
2582
|
*/
|
|
2520
|
-
get_property(property_name: string
|
|
2583
|
+
get_property(property_name: string): /* value */ any
|
|
2521
2584
|
|
|
2522
2585
|
// Overloads of get_property
|
|
2523
2586
|
|
|
@@ -2541,7 +2604,7 @@ interface Bin extends Atk.ImplementorIface, Clutter.Animatable, Clutter.Containe
|
|
|
2541
2604
|
* @param property_name the name of the property to get
|
|
2542
2605
|
* @param value return location for the property value
|
|
2543
2606
|
*/
|
|
2544
|
-
get_property(property_name: string
|
|
2607
|
+
get_property(property_name: string, value: any): void
|
|
2545
2608
|
/**
|
|
2546
2609
|
* Gets a property of an object.
|
|
2547
2610
|
*
|
|
@@ -2562,7 +2625,7 @@ interface Bin extends Atk.ImplementorIface, Clutter.Animatable, Clutter.Containe
|
|
|
2562
2625
|
* @param property_name the name of the property to get
|
|
2563
2626
|
* @param value return location for the property value
|
|
2564
2627
|
*/
|
|
2565
|
-
get_property(property_name: string
|
|
2628
|
+
get_property(property_name: string, value: any): void
|
|
2566
2629
|
|
|
2567
2630
|
// Class property signals of Mx-1.0.Mx.Bin
|
|
2568
2631
|
|
|
@@ -2877,6 +2940,8 @@ module BoxLayout {
|
|
|
2877
2940
|
orientation?: Orientation | null
|
|
2878
2941
|
scroll_to_focused?: boolean | null
|
|
2879
2942
|
spacing?: number | null
|
|
2943
|
+
enableAnimations?: boolean | null
|
|
2944
|
+
scrollToFocused?: boolean | null
|
|
2880
2945
|
}
|
|
2881
2946
|
|
|
2882
2947
|
}
|
|
@@ -2886,8 +2951,10 @@ interface BoxLayout extends Atk.ImplementorIface, Clutter.Animatable, Clutter.Co
|
|
|
2886
2951
|
// Own properties of Mx-1.0.Mx.BoxLayout
|
|
2887
2952
|
|
|
2888
2953
|
enable_animations: boolean
|
|
2954
|
+
enableAnimations: boolean
|
|
2889
2955
|
orientation: Orientation
|
|
2890
2956
|
scroll_to_focused: boolean
|
|
2957
|
+
scrollToFocused: boolean
|
|
2891
2958
|
spacing: number
|
|
2892
2959
|
|
|
2893
2960
|
// Owm methods of Mx-1.0.Mx.BoxLayout
|
|
@@ -3021,7 +3088,7 @@ interface BoxLayout extends Atk.ImplementorIface, Clutter.Animatable, Clutter.Co
|
|
|
3021
3088
|
* into `value`.
|
|
3022
3089
|
* @param property_name the name of the property
|
|
3023
3090
|
*/
|
|
3024
|
-
get_property(property_name: string
|
|
3091
|
+
get_property(property_name: string): /* value */ any
|
|
3025
3092
|
|
|
3026
3093
|
// Overloads of get_property
|
|
3027
3094
|
|
|
@@ -3045,7 +3112,7 @@ interface BoxLayout extends Atk.ImplementorIface, Clutter.Animatable, Clutter.Co
|
|
|
3045
3112
|
* @param property_name the name of the property to get
|
|
3046
3113
|
* @param value return location for the property value
|
|
3047
3114
|
*/
|
|
3048
|
-
get_property(property_name: string
|
|
3115
|
+
get_property(property_name: string, value: any): void
|
|
3049
3116
|
/**
|
|
3050
3117
|
* Gets a property of an object.
|
|
3051
3118
|
*
|
|
@@ -3066,7 +3133,7 @@ interface BoxLayout extends Atk.ImplementorIface, Clutter.Animatable, Clutter.Co
|
|
|
3066
3133
|
* @param property_name the name of the property to get
|
|
3067
3134
|
* @param value return location for the property value
|
|
3068
3135
|
*/
|
|
3069
|
-
get_property(property_name: string
|
|
3136
|
+
get_property(property_name: string, value: any): void
|
|
3070
3137
|
|
|
3071
3138
|
// Class property signals of Mx-1.0.Mx.BoxLayout
|
|
3072
3139
|
|
|
@@ -3404,6 +3471,10 @@ module BoxLayoutChild {
|
|
|
3404
3471
|
x_fill?: boolean | null
|
|
3405
3472
|
y_align?: Align | null
|
|
3406
3473
|
y_fill?: boolean | null
|
|
3474
|
+
xAlign?: Align | null
|
|
3475
|
+
xFill?: boolean | null
|
|
3476
|
+
yAlign?: Align | null
|
|
3477
|
+
yFill?: boolean | null
|
|
3407
3478
|
}
|
|
3408
3479
|
|
|
3409
3480
|
}
|
|
@@ -3414,9 +3485,13 @@ interface BoxLayoutChild {
|
|
|
3414
3485
|
|
|
3415
3486
|
expand: boolean
|
|
3416
3487
|
x_align: Align
|
|
3488
|
+
xAlign: Align
|
|
3417
3489
|
x_fill: boolean
|
|
3490
|
+
xFill: boolean
|
|
3418
3491
|
y_align: Align
|
|
3492
|
+
yAlign: Align
|
|
3419
3493
|
y_fill: boolean
|
|
3494
|
+
yFill: boolean
|
|
3420
3495
|
|
|
3421
3496
|
// Class property signals of Mx-1.0.Mx.BoxLayoutChild
|
|
3422
3497
|
|
|
@@ -3486,6 +3561,12 @@ module Button {
|
|
|
3486
3561
|
label?: string | null
|
|
3487
3562
|
label_visible?: boolean | null
|
|
3488
3563
|
toggled?: boolean | null
|
|
3564
|
+
iconName?: string | null
|
|
3565
|
+
iconPosition?: Position | null
|
|
3566
|
+
iconSize?: number | null
|
|
3567
|
+
iconVisible?: boolean | null
|
|
3568
|
+
isToggle?: boolean | null
|
|
3569
|
+
labelVisible?: boolean | null
|
|
3489
3570
|
}
|
|
3490
3571
|
|
|
3491
3572
|
}
|
|
@@ -3496,18 +3577,26 @@ interface Button extends Atk.ImplementorIface, Clutter.Animatable, Clutter.Conta
|
|
|
3496
3577
|
|
|
3497
3578
|
action: Action
|
|
3498
3579
|
icon_name: string | null
|
|
3580
|
+
iconName: string | null
|
|
3499
3581
|
icon_position: Position
|
|
3582
|
+
iconPosition: Position
|
|
3500
3583
|
icon_size: number
|
|
3584
|
+
iconSize: number
|
|
3501
3585
|
icon_visible: boolean
|
|
3586
|
+
iconVisible: boolean
|
|
3502
3587
|
is_toggle: boolean
|
|
3588
|
+
isToggle: boolean
|
|
3503
3589
|
label: string | null
|
|
3504
3590
|
label_visible: boolean
|
|
3591
|
+
labelVisible: boolean
|
|
3505
3592
|
toggled: boolean
|
|
3506
3593
|
|
|
3507
3594
|
// Conflicting properties
|
|
3508
3595
|
|
|
3509
3596
|
x_align: any
|
|
3597
|
+
xAlign: any
|
|
3510
3598
|
y_align: any
|
|
3599
|
+
yAlign: any
|
|
3511
3600
|
|
|
3512
3601
|
// Owm methods of Mx-1.0.Mx.Button
|
|
3513
3602
|
|
|
@@ -3525,12 +3614,12 @@ interface Button extends Atk.ImplementorIface, Clutter.Animatable, Clutter.Conta
|
|
|
3525
3614
|
* @param name the name of the action to retrieve
|
|
3526
3615
|
* @returns a #ClutterAction for the given name, or %NULL. The returned #ClutterAction is owned by the actor and it should not be unreferenced directly
|
|
3527
3616
|
*/
|
|
3528
|
-
get_action(name: string
|
|
3617
|
+
get_action(name: string): Clutter.Action
|
|
3529
3618
|
/**
|
|
3530
3619
|
* Get the icon-name being used on the button.
|
|
3531
3620
|
* @returns the icon-name. This must not be freed by the application. %NULL if no icon has been set
|
|
3532
3621
|
*/
|
|
3533
|
-
get_icon_name(): string
|
|
3622
|
+
get_icon_name(): string
|
|
3534
3623
|
/**
|
|
3535
3624
|
* Retrieves the icon's relative position to the text.
|
|
3536
3625
|
* @returns A #MxPosition
|
|
@@ -3555,7 +3644,7 @@ interface Button extends Atk.ImplementorIface, Clutter.Animatable, Clutter.Conta
|
|
|
3555
3644
|
* Get the text displayed on the button
|
|
3556
3645
|
* @returns the text for the button. This must not be freed by the application
|
|
3557
3646
|
*/
|
|
3558
|
-
get_label(): string
|
|
3647
|
+
get_label(): string
|
|
3559
3648
|
/**
|
|
3560
3649
|
* Retrieves the visibility of the text associated with the button's action.
|
|
3561
3650
|
* @returns %TRUE if the text is visible, %FALSE otherwise
|
|
@@ -3606,7 +3695,7 @@ interface Button extends Atk.ImplementorIface, Clutter.Animatable, Clutter.Conta
|
|
|
3606
3695
|
* Sets the text displayed on the button
|
|
3607
3696
|
* @param text text to set the label to
|
|
3608
3697
|
*/
|
|
3609
|
-
set_label(text: string
|
|
3698
|
+
set_label(text: string): void
|
|
3610
3699
|
/**
|
|
3611
3700
|
* Sets the visibility of the text associated with the button's action.
|
|
3612
3701
|
* @param visible %TRUE if the text should be visible
|
|
@@ -3626,7 +3715,7 @@ interface Button extends Atk.ImplementorIface, Clutter.Animatable, Clutter.Conta
|
|
|
3626
3715
|
* into `value`.
|
|
3627
3716
|
* @param property_name the name of the property
|
|
3628
3717
|
*/
|
|
3629
|
-
get_property(property_name: string
|
|
3718
|
+
get_property(property_name: string): /* value */ any
|
|
3630
3719
|
|
|
3631
3720
|
// Overloads of get_property
|
|
3632
3721
|
|
|
@@ -3650,7 +3739,7 @@ interface Button extends Atk.ImplementorIface, Clutter.Animatable, Clutter.Conta
|
|
|
3650
3739
|
* @param property_name the name of the property to get
|
|
3651
3740
|
* @param value return location for the property value
|
|
3652
3741
|
*/
|
|
3653
|
-
get_property(property_name: string
|
|
3742
|
+
get_property(property_name: string, value: any): void
|
|
3654
3743
|
/**
|
|
3655
3744
|
* Gets a property of an object.
|
|
3656
3745
|
*
|
|
@@ -3671,7 +3760,7 @@ interface Button extends Atk.ImplementorIface, Clutter.Animatable, Clutter.Conta
|
|
|
3671
3760
|
* @param property_name the name of the property to get
|
|
3672
3761
|
* @param value return location for the property value
|
|
3673
3762
|
*/
|
|
3674
|
-
get_property(property_name: string
|
|
3763
|
+
get_property(property_name: string, value: any): void
|
|
3675
3764
|
|
|
3676
3765
|
// Own virtual methods of Mx-1.0.Mx.Button
|
|
3677
3766
|
|
|
@@ -4027,7 +4116,7 @@ class Button extends Bin {
|
|
|
4027
4116
|
* @param text text to set the label to
|
|
4028
4117
|
* @returns a new #MxButton
|
|
4029
4118
|
*/
|
|
4030
|
-
static new_with_label(text: string
|
|
4119
|
+
static new_with_label(text: string): Button
|
|
4031
4120
|
_init(config?: Button.ConstructorProperties): void
|
|
4032
4121
|
}
|
|
4033
4122
|
|
|
@@ -4041,6 +4130,8 @@ module ButtonGroup {
|
|
|
4041
4130
|
|
|
4042
4131
|
active_button?: Button | null
|
|
4043
4132
|
allow_no_active?: boolean | null
|
|
4133
|
+
activeButton?: Button | null
|
|
4134
|
+
allowNoActive?: boolean | null
|
|
4044
4135
|
}
|
|
4045
4136
|
|
|
4046
4137
|
}
|
|
@@ -4050,7 +4141,9 @@ interface ButtonGroup {
|
|
|
4050
4141
|
// Own properties of Mx-1.0.Mx.ButtonGroup
|
|
4051
4142
|
|
|
4052
4143
|
active_button: Button
|
|
4144
|
+
activeButton: Button
|
|
4053
4145
|
allow_no_active: boolean
|
|
4146
|
+
allowNoActive: boolean
|
|
4054
4147
|
|
|
4055
4148
|
// Own fields of Mx-1.0.Mx.ButtonGroup
|
|
4056
4149
|
|
|
@@ -4168,7 +4261,7 @@ interface Clipboard {
|
|
|
4168
4261
|
* Sets text as the current contents of the clipboard.
|
|
4169
4262
|
* @param text text to copy to the clipboard
|
|
4170
4263
|
*/
|
|
4171
|
-
set_text(text: string
|
|
4264
|
+
set_text(text: string): void
|
|
4172
4265
|
|
|
4173
4266
|
// Class property signals of Mx-1.0.Mx.Clipboard
|
|
4174
4267
|
|
|
@@ -4212,6 +4305,8 @@ module ComboBox {
|
|
|
4212
4305
|
active_icon_name?: string | null
|
|
4213
4306
|
active_text?: string | null
|
|
4214
4307
|
index?: number | null
|
|
4308
|
+
activeIconName?: string | null
|
|
4309
|
+
activeText?: string | null
|
|
4215
4310
|
}
|
|
4216
4311
|
|
|
4217
4312
|
}
|
|
@@ -4221,7 +4316,9 @@ interface ComboBox extends Atk.ImplementorIface, Clutter.Animatable, Clutter.Con
|
|
|
4221
4316
|
// Own properties of Mx-1.0.Mx.ComboBox
|
|
4222
4317
|
|
|
4223
4318
|
active_icon_name: string | null
|
|
4319
|
+
activeIconName: string | null
|
|
4224
4320
|
active_text: string | null
|
|
4321
|
+
activeText: string | null
|
|
4225
4322
|
index: number
|
|
4226
4323
|
|
|
4227
4324
|
// Owm methods of Mx-1.0.Mx.ComboBox
|
|
@@ -4230,17 +4327,17 @@ interface ComboBox extends Atk.ImplementorIface, Clutter.Animatable, Clutter.Con
|
|
|
4230
4327
|
* Append an item to the combo box list
|
|
4231
4328
|
* @param text name of the item
|
|
4232
4329
|
*/
|
|
4233
|
-
append_text(text: string
|
|
4330
|
+
append_text(text: string): void
|
|
4234
4331
|
/**
|
|
4235
4332
|
* Get the name of the icon displayed in the combo box
|
|
4236
4333
|
* @returns the text string of the name of the displayed icon, owned by the combo box, or %NULL if there is no active icon.
|
|
4237
4334
|
*/
|
|
4238
|
-
get_active_icon_name(): string
|
|
4335
|
+
get_active_icon_name(): string
|
|
4239
4336
|
/**
|
|
4240
4337
|
* Get the text displayed in the combo box
|
|
4241
4338
|
* @returns the text string, owned by the combo box
|
|
4242
4339
|
*/
|
|
4243
|
-
get_active_text(): string
|
|
4340
|
+
get_active_text(): string
|
|
4244
4341
|
/**
|
|
4245
4342
|
* Get the index of the last item selected
|
|
4246
4343
|
* @returns gint
|
|
@@ -4251,19 +4348,19 @@ interface ComboBox extends Atk.ImplementorIface, Clutter.Animatable, Clutter.Con
|
|
|
4251
4348
|
* @param position zero indexed position to insert the item at
|
|
4252
4349
|
* @param text name of the item
|
|
4253
4350
|
*/
|
|
4254
|
-
insert_text(position: number, text: string
|
|
4351
|
+
insert_text(position: number, text: string): void
|
|
4255
4352
|
/**
|
|
4256
4353
|
* Insert an item with text and an icon into the combo box list.
|
|
4257
4354
|
* @param position zero indexed position to insert the item at
|
|
4258
4355
|
* @param text name of the item
|
|
4259
4356
|
* @param icon name of an icon from the icon theme
|
|
4260
4357
|
*/
|
|
4261
|
-
insert_text_with_icon(position: number, text: string
|
|
4358
|
+
insert_text_with_icon(position: number, text: string, icon: string): void
|
|
4262
4359
|
/**
|
|
4263
4360
|
* Prepend an item to the combo box list
|
|
4264
4361
|
* @param text name of the item
|
|
4265
4362
|
*/
|
|
4266
|
-
prepend_text(text: string
|
|
4363
|
+
prepend_text(text: string): void
|
|
4267
4364
|
/**
|
|
4268
4365
|
* Remove all the items of `box`
|
|
4269
4366
|
*/
|
|
@@ -4282,7 +4379,7 @@ interface ComboBox extends Atk.ImplementorIface, Clutter.Animatable, Clutter.Con
|
|
|
4282
4379
|
* Set the text displayed in the combo box
|
|
4283
4380
|
* @param text text to display
|
|
4284
4381
|
*/
|
|
4285
|
-
set_active_text(text: string
|
|
4382
|
+
set_active_text(text: string): void
|
|
4286
4383
|
/**
|
|
4287
4384
|
* Set the current combo box text from the item at `index` in the list.
|
|
4288
4385
|
* @param index the index of the list item to set
|
|
@@ -4296,7 +4393,7 @@ interface ComboBox extends Atk.ImplementorIface, Clutter.Animatable, Clutter.Con
|
|
|
4296
4393
|
* into `value`.
|
|
4297
4394
|
* @param property_name the name of the property
|
|
4298
4395
|
*/
|
|
4299
|
-
get_property(property_name: string
|
|
4396
|
+
get_property(property_name: string): /* value */ any
|
|
4300
4397
|
|
|
4301
4398
|
// Overloads of get_property
|
|
4302
4399
|
|
|
@@ -4320,7 +4417,7 @@ interface ComboBox extends Atk.ImplementorIface, Clutter.Animatable, Clutter.Con
|
|
|
4320
4417
|
* @param property_name the name of the property to get
|
|
4321
4418
|
* @param value return location for the property value
|
|
4322
4419
|
*/
|
|
4323
|
-
get_property(property_name: string
|
|
4420
|
+
get_property(property_name: string, value: any): void
|
|
4324
4421
|
/**
|
|
4325
4422
|
* Gets a property of an object.
|
|
4326
4423
|
*
|
|
@@ -4341,7 +4438,7 @@ interface ComboBox extends Atk.ImplementorIface, Clutter.Animatable, Clutter.Con
|
|
|
4341
4438
|
* @param property_name the name of the property to get
|
|
4342
4439
|
* @param value return location for the property value
|
|
4343
4440
|
*/
|
|
4344
|
-
get_property(property_name: string
|
|
4441
|
+
get_property(property_name: string, value: any): void
|
|
4345
4442
|
|
|
4346
4443
|
// Class property signals of Mx-1.0.Mx.ComboBox
|
|
4347
4444
|
|
|
@@ -4667,6 +4764,7 @@ module DeformBowTie {
|
|
|
4667
4764
|
|
|
4668
4765
|
flip_back?: boolean | null
|
|
4669
4766
|
period?: number | null
|
|
4767
|
+
flipBack?: boolean | null
|
|
4670
4768
|
}
|
|
4671
4769
|
|
|
4672
4770
|
}
|
|
@@ -4676,6 +4774,7 @@ interface DeformBowTie extends Atk.ImplementorIface, Clutter.Animatable, Clutter
|
|
|
4676
4774
|
// Own properties of Mx-1.0.Mx.DeformBowTie
|
|
4677
4775
|
|
|
4678
4776
|
flip_back: boolean
|
|
4777
|
+
flipBack: boolean
|
|
4679
4778
|
period: number
|
|
4680
4779
|
|
|
4681
4780
|
// Own fields of Mx-1.0.Mx.DeformBowTie
|
|
@@ -4697,7 +4796,7 @@ interface DeformBowTie extends Atk.ImplementorIface, Clutter.Animatable, Clutter
|
|
|
4697
4796
|
* into `value`.
|
|
4698
4797
|
* @param property_name the name of the property
|
|
4699
4798
|
*/
|
|
4700
|
-
get_property(property_name: string
|
|
4799
|
+
get_property(property_name: string): /* value */ any
|
|
4701
4800
|
|
|
4702
4801
|
// Overloads of get_property
|
|
4703
4802
|
|
|
@@ -4721,7 +4820,7 @@ interface DeformBowTie extends Atk.ImplementorIface, Clutter.Animatable, Clutter
|
|
|
4721
4820
|
* @param property_name the name of the property to get
|
|
4722
4821
|
* @param value return location for the property value
|
|
4723
4822
|
*/
|
|
4724
|
-
get_property(property_name: string
|
|
4823
|
+
get_property(property_name: string, value: any): void
|
|
4725
4824
|
/**
|
|
4726
4825
|
* Gets a property of an object.
|
|
4727
4826
|
*
|
|
@@ -4742,7 +4841,7 @@ interface DeformBowTie extends Atk.ImplementorIface, Clutter.Animatable, Clutter
|
|
|
4742
4841
|
* @param property_name the name of the property to get
|
|
4743
4842
|
* @param value return location for the property value
|
|
4744
4843
|
*/
|
|
4745
|
-
get_property(property_name: string
|
|
4844
|
+
get_property(property_name: string, value: any): void
|
|
4746
4845
|
|
|
4747
4846
|
// Class property signals of Mx-1.0.Mx.DeformBowTie
|
|
4748
4847
|
|
|
@@ -5101,7 +5200,7 @@ interface DeformPageTurn extends Atk.ImplementorIface, Clutter.Animatable, Clutt
|
|
|
5101
5200
|
* into `value`.
|
|
5102
5201
|
* @param property_name the name of the property
|
|
5103
5202
|
*/
|
|
5104
|
-
get_property(property_name: string
|
|
5203
|
+
get_property(property_name: string): /* value */ any
|
|
5105
5204
|
|
|
5106
5205
|
// Overloads of get_property
|
|
5107
5206
|
|
|
@@ -5125,7 +5224,7 @@ interface DeformPageTurn extends Atk.ImplementorIface, Clutter.Animatable, Clutt
|
|
|
5125
5224
|
* @param property_name the name of the property to get
|
|
5126
5225
|
* @param value return location for the property value
|
|
5127
5226
|
*/
|
|
5128
|
-
get_property(property_name: string
|
|
5227
|
+
get_property(property_name: string, value: any): void
|
|
5129
5228
|
/**
|
|
5130
5229
|
* Gets a property of an object.
|
|
5131
5230
|
*
|
|
@@ -5146,7 +5245,7 @@ interface DeformPageTurn extends Atk.ImplementorIface, Clutter.Animatable, Clutt
|
|
|
5146
5245
|
* @param property_name the name of the property to get
|
|
5147
5246
|
* @param value return location for the property value
|
|
5148
5247
|
*/
|
|
5149
|
-
get_property(property_name: string
|
|
5248
|
+
get_property(property_name: string, value: any): void
|
|
5150
5249
|
|
|
5151
5250
|
// Class property signals of Mx-1.0.Mx.DeformPageTurn
|
|
5152
5251
|
|
|
@@ -5476,6 +5575,8 @@ module DeformTexture {
|
|
|
5476
5575
|
front?: Clutter.Texture | null
|
|
5477
5576
|
tiles_x?: number | null
|
|
5478
5577
|
tiles_y?: number | null
|
|
5578
|
+
tilesX?: number | null
|
|
5579
|
+
tilesY?: number | null
|
|
5479
5580
|
}
|
|
5480
5581
|
|
|
5481
5582
|
}
|
|
@@ -5487,7 +5588,9 @@ interface DeformTexture extends Atk.ImplementorIface, Clutter.Animatable, Clutte
|
|
|
5487
5588
|
back: Clutter.Texture
|
|
5488
5589
|
front: Clutter.Texture
|
|
5489
5590
|
tiles_x: number
|
|
5591
|
+
tilesX: number
|
|
5490
5592
|
tiles_y: number
|
|
5593
|
+
tilesY: number
|
|
5491
5594
|
|
|
5492
5595
|
// Own fields of Mx-1.0.Mx.DeformTexture
|
|
5493
5596
|
|
|
@@ -5531,7 +5634,7 @@ interface DeformTexture extends Atk.ImplementorIface, Clutter.Animatable, Clutte
|
|
|
5531
5634
|
* into `value`.
|
|
5532
5635
|
* @param property_name the name of the property
|
|
5533
5636
|
*/
|
|
5534
|
-
get_property(property_name: string
|
|
5637
|
+
get_property(property_name: string): /* value */ any
|
|
5535
5638
|
|
|
5536
5639
|
// Overloads of get_property
|
|
5537
5640
|
|
|
@@ -5555,7 +5658,7 @@ interface DeformTexture extends Atk.ImplementorIface, Clutter.Animatable, Clutte
|
|
|
5555
5658
|
* @param property_name the name of the property to get
|
|
5556
5659
|
* @param value return location for the property value
|
|
5557
5660
|
*/
|
|
5558
|
-
get_property(property_name: string
|
|
5661
|
+
get_property(property_name: string, value: any): void
|
|
5559
5662
|
/**
|
|
5560
5663
|
* Gets a property of an object.
|
|
5561
5664
|
*
|
|
@@ -5576,7 +5679,7 @@ interface DeformTexture extends Atk.ImplementorIface, Clutter.Animatable, Clutte
|
|
|
5576
5679
|
* @param property_name the name of the property to get
|
|
5577
5680
|
* @param value return location for the property value
|
|
5578
5681
|
*/
|
|
5579
|
-
get_property(property_name: string
|
|
5682
|
+
get_property(property_name: string, value: any): void
|
|
5580
5683
|
|
|
5581
5684
|
// Own virtual methods of Mx-1.0.Mx.DeformTexture
|
|
5582
5685
|
|
|
@@ -5935,7 +6038,7 @@ interface DeformWaves extends Atk.ImplementorIface, Clutter.Animatable, Clutter.
|
|
|
5935
6038
|
* into `value`.
|
|
5936
6039
|
* @param property_name the name of the property
|
|
5937
6040
|
*/
|
|
5938
|
-
get_property(property_name: string
|
|
6041
|
+
get_property(property_name: string): /* value */ any
|
|
5939
6042
|
|
|
5940
6043
|
// Overloads of get_property
|
|
5941
6044
|
|
|
@@ -5959,7 +6062,7 @@ interface DeformWaves extends Atk.ImplementorIface, Clutter.Animatable, Clutter.
|
|
|
5959
6062
|
* @param property_name the name of the property to get
|
|
5960
6063
|
* @param value return location for the property value
|
|
5961
6064
|
*/
|
|
5962
|
-
get_property(property_name: string
|
|
6065
|
+
get_property(property_name: string, value: any): void
|
|
5963
6066
|
/**
|
|
5964
6067
|
* Gets a property of an object.
|
|
5965
6068
|
*
|
|
@@ -5980,7 +6083,7 @@ interface DeformWaves extends Atk.ImplementorIface, Clutter.Animatable, Clutter.
|
|
|
5980
6083
|
* @param property_name the name of the property to get
|
|
5981
6084
|
* @param value return location for the property value
|
|
5982
6085
|
*/
|
|
5983
|
-
get_property(property_name: string
|
|
6086
|
+
get_property(property_name: string, value: any): void
|
|
5984
6087
|
|
|
5985
6088
|
// Class property signals of Mx-1.0.Mx.DeformWaves
|
|
5986
6089
|
|
|
@@ -6315,7 +6418,9 @@ interface Dialog extends Atk.ImplementorIface, Clutter.Animatable, Clutter.Conta
|
|
|
6315
6418
|
// Conflicting properties
|
|
6316
6419
|
|
|
6317
6420
|
x_align: any
|
|
6421
|
+
xAlign: any
|
|
6318
6422
|
y_align: any
|
|
6423
|
+
yAlign: any
|
|
6319
6424
|
|
|
6320
6425
|
// Owm methods of Mx-1.0.Mx.Dialog
|
|
6321
6426
|
|
|
@@ -6380,7 +6485,7 @@ interface Dialog extends Atk.ImplementorIface, Clutter.Animatable, Clutter.Conta
|
|
|
6380
6485
|
* into `value`.
|
|
6381
6486
|
* @param property_name the name of the property
|
|
6382
6487
|
*/
|
|
6383
|
-
get_property(property_name: string
|
|
6488
|
+
get_property(property_name: string): /* value */ any
|
|
6384
6489
|
|
|
6385
6490
|
// Overloads of get_property
|
|
6386
6491
|
|
|
@@ -6404,7 +6509,7 @@ interface Dialog extends Atk.ImplementorIface, Clutter.Animatable, Clutter.Conta
|
|
|
6404
6509
|
* @param property_name the name of the property to get
|
|
6405
6510
|
* @param value return location for the property value
|
|
6406
6511
|
*/
|
|
6407
|
-
get_property(property_name: string
|
|
6512
|
+
get_property(property_name: string, value: any): void
|
|
6408
6513
|
/**
|
|
6409
6514
|
* Gets a property of an object.
|
|
6410
6515
|
*
|
|
@@ -6425,7 +6530,7 @@ interface Dialog extends Atk.ImplementorIface, Clutter.Animatable, Clutter.Conta
|
|
|
6425
6530
|
* @param property_name the name of the property to get
|
|
6426
6531
|
* @param value return location for the property value
|
|
6427
6532
|
*/
|
|
6428
|
-
get_property(property_name: string
|
|
6533
|
+
get_property(property_name: string, value: any): void
|
|
6429
6534
|
|
|
6430
6535
|
// Class property signals of Mx-1.0.Mx.Dialog
|
|
6431
6536
|
|
|
@@ -6772,6 +6877,11 @@ module Entry {
|
|
|
6772
6877
|
primary_icon_tooltip_text?: string | null
|
|
6773
6878
|
secondary_icon_tooltip_text?: string | null
|
|
6774
6879
|
text?: string | null
|
|
6880
|
+
hintText?: string | null
|
|
6881
|
+
iconHighlightSuffix?: string | null
|
|
6882
|
+
passwordChar?: number | null
|
|
6883
|
+
primaryIconTooltipText?: string | null
|
|
6884
|
+
secondaryIconTooltipText?: string | null
|
|
6775
6885
|
}
|
|
6776
6886
|
|
|
6777
6887
|
}
|
|
@@ -6781,11 +6891,17 @@ interface Entry extends Atk.ImplementorIface, Clutter.Animatable, Clutter.Contai
|
|
|
6781
6891
|
// Own properties of Mx-1.0.Mx.Entry
|
|
6782
6892
|
|
|
6783
6893
|
readonly clutter_text: Clutter.Text
|
|
6894
|
+
readonly clutterText: Clutter.Text
|
|
6784
6895
|
hint_text: string | null
|
|
6896
|
+
hintText: string | null
|
|
6785
6897
|
icon_highlight_suffix: string | null
|
|
6898
|
+
iconHighlightSuffix: string | null
|
|
6786
6899
|
password_char: number
|
|
6900
|
+
passwordChar: number
|
|
6787
6901
|
primary_icon_tooltip_text: string | null
|
|
6902
|
+
primaryIconTooltipText: string | null
|
|
6788
6903
|
secondary_icon_tooltip_text: string | null
|
|
6904
|
+
secondaryIconTooltipText: string | null
|
|
6789
6905
|
text: string | null
|
|
6790
6906
|
|
|
6791
6907
|
// Owm methods of Mx-1.0.Mx.Entry
|
|
@@ -6799,13 +6915,13 @@ interface Entry extends Atk.ImplementorIface, Clutter.Animatable, Clutter.Contai
|
|
|
6799
6915
|
* Gets the text that is displayed when the entry is empty and unfocused
|
|
6800
6916
|
* @returns the current value of the hint property. This string is owned by the #MxEntry and should not be freed or modified.
|
|
6801
6917
|
*/
|
|
6802
|
-
get_hint_text(): string
|
|
6918
|
+
get_hint_text(): string
|
|
6803
6919
|
/**
|
|
6804
6920
|
* Get the suffix appended to the filename to use for the highlighted version
|
|
6805
6921
|
* of the icon.
|
|
6806
6922
|
* @returns the highlight filename suffix. This string is owned by the #MxEntry and should not be freed or modified.
|
|
6807
6923
|
*/
|
|
6808
|
-
get_icon_highlight_suffix(): string
|
|
6924
|
+
get_icon_highlight_suffix(): string
|
|
6809
6925
|
/**
|
|
6810
6926
|
* Gets the character to display instead of the text.
|
|
6811
6927
|
* @returns a character, or 0 if input should not be hidden.
|
|
@@ -6815,14 +6931,14 @@ interface Entry extends Atk.ImplementorIface, Clutter.Animatable, Clutter.Contai
|
|
|
6815
6931
|
* Get the text displayed on the entry
|
|
6816
6932
|
* @returns the text for the entry. This must not be freed by the application
|
|
6817
6933
|
*/
|
|
6818
|
-
get_text(): string
|
|
6934
|
+
get_text(): string
|
|
6819
6935
|
/**
|
|
6820
6936
|
* Sets the text to display when the entry is empty and unfocused. When the
|
|
6821
6937
|
* entry is displaying the hint, it has a pseudo class of "indeterminate".
|
|
6822
6938
|
* A value of NULL unsets the hint.
|
|
6823
6939
|
* @param text text to set as the entry hint
|
|
6824
6940
|
*/
|
|
6825
|
-
set_hint_text(text: string
|
|
6941
|
+
set_hint_text(text: string): void
|
|
6826
6942
|
/**
|
|
6827
6943
|
* Sets the suffix appended to the filename to use for the highlighted version
|
|
6828
6944
|
* of the icon. e.g. if you have set your primay icon to "primary-icon.png"
|
|
@@ -6830,7 +6946,7 @@ interface Entry extends Atk.ImplementorIface, Clutter.Animatable, Clutter.Contai
|
|
|
6830
6946
|
* "primary-icon-highlight.png"
|
|
6831
6947
|
* @param suffix the suffix to append to the filename for the highlight version
|
|
6832
6948
|
*/
|
|
6833
|
-
set_icon_highlight_suffix(suffix: string
|
|
6949
|
+
set_icon_highlight_suffix(suffix: string): void
|
|
6834
6950
|
/**
|
|
6835
6951
|
* Sets the character to display instead of the text. Use 0 to display
|
|
6836
6952
|
* the actual text.
|
|
@@ -6841,19 +6957,19 @@ interface Entry extends Atk.ImplementorIface, Clutter.Animatable, Clutter.Contai
|
|
|
6841
6957
|
* Set the primary icon of the entry to the given filename
|
|
6842
6958
|
* @param filename filename of an icon
|
|
6843
6959
|
*/
|
|
6844
|
-
set_primary_icon_from_file(filename: string
|
|
6845
|
-
set_primary_icon_tooltip_text(text: string
|
|
6960
|
+
set_primary_icon_from_file(filename: string): void
|
|
6961
|
+
set_primary_icon_tooltip_text(text: string): void
|
|
6846
6962
|
/**
|
|
6847
6963
|
* Set the primary icon of the entry to the given filename
|
|
6848
6964
|
* @param filename filename of an icon
|
|
6849
6965
|
*/
|
|
6850
|
-
set_secondary_icon_from_file(filename: string
|
|
6851
|
-
set_secondary_icon_tooltip_text(text: string
|
|
6966
|
+
set_secondary_icon_from_file(filename: string): void
|
|
6967
|
+
set_secondary_icon_tooltip_text(text: string): void
|
|
6852
6968
|
/**
|
|
6853
6969
|
* Sets the text displayed on the entry
|
|
6854
6970
|
* @param text text to set the entry to
|
|
6855
6971
|
*/
|
|
6856
|
-
set_text(text: string
|
|
6972
|
+
set_text(text: string): void
|
|
6857
6973
|
|
|
6858
6974
|
// Conflicting methods
|
|
6859
6975
|
|
|
@@ -6862,7 +6978,7 @@ interface Entry extends Atk.ImplementorIface, Clutter.Animatable, Clutter.Contai
|
|
|
6862
6978
|
* into `value`.
|
|
6863
6979
|
* @param property_name the name of the property
|
|
6864
6980
|
*/
|
|
6865
|
-
get_property(property_name: string
|
|
6981
|
+
get_property(property_name: string): /* value */ any
|
|
6866
6982
|
|
|
6867
6983
|
// Overloads of get_property
|
|
6868
6984
|
|
|
@@ -6886,7 +7002,7 @@ interface Entry extends Atk.ImplementorIface, Clutter.Animatable, Clutter.Contai
|
|
|
6886
7002
|
* @param property_name the name of the property to get
|
|
6887
7003
|
* @param value return location for the property value
|
|
6888
7004
|
*/
|
|
6889
|
-
get_property(property_name: string
|
|
7005
|
+
get_property(property_name: string, value: any): void
|
|
6890
7006
|
/**
|
|
6891
7007
|
* Gets a property of an object.
|
|
6892
7008
|
*
|
|
@@ -6907,7 +7023,7 @@ interface Entry extends Atk.ImplementorIface, Clutter.Animatable, Clutter.Contai
|
|
|
6907
7023
|
* @param property_name the name of the property to get
|
|
6908
7024
|
* @param value return location for the property value
|
|
6909
7025
|
*/
|
|
6910
|
-
get_property(property_name: string
|
|
7026
|
+
get_property(property_name: string, value: any): void
|
|
6911
7027
|
|
|
6912
7028
|
// Own virtual methods of Mx-1.0.Mx.Entry
|
|
6913
7029
|
|
|
@@ -7252,7 +7368,7 @@ class Entry extends Widget {
|
|
|
7252
7368
|
* @param text text to set the entry to
|
|
7253
7369
|
* @returns a new #MxEntry
|
|
7254
7370
|
*/
|
|
7255
|
-
static new_with_text(text: string
|
|
7371
|
+
static new_with_text(text: string): Entry
|
|
7256
7372
|
_init(config?: Entry.ConstructorProperties): void
|
|
7257
7373
|
}
|
|
7258
7374
|
|
|
@@ -7290,7 +7406,9 @@ interface Expander extends Atk.ImplementorIface, Clutter.Animatable, Clutter.Con
|
|
|
7290
7406
|
// Conflicting properties
|
|
7291
7407
|
|
|
7292
7408
|
x_align: any
|
|
7409
|
+
xAlign: any
|
|
7293
7410
|
y_align: any
|
|
7411
|
+
yAlign: any
|
|
7294
7412
|
|
|
7295
7413
|
// Owm methods of Mx-1.0.Mx.Expander
|
|
7296
7414
|
|
|
@@ -7309,7 +7427,7 @@ interface Expander extends Atk.ImplementorIface, Clutter.Animatable, Clutter.Con
|
|
|
7309
7427
|
* Sets the text displayed as the title of the expander
|
|
7310
7428
|
* @param label string to set as the expander label
|
|
7311
7429
|
*/
|
|
7312
|
-
set_label(label: string
|
|
7430
|
+
set_label(label: string): void
|
|
7313
7431
|
|
|
7314
7432
|
// Conflicting methods
|
|
7315
7433
|
|
|
@@ -7318,7 +7436,7 @@ interface Expander extends Atk.ImplementorIface, Clutter.Animatable, Clutter.Con
|
|
|
7318
7436
|
* into `value`.
|
|
7319
7437
|
* @param property_name the name of the property
|
|
7320
7438
|
*/
|
|
7321
|
-
get_property(property_name: string
|
|
7439
|
+
get_property(property_name: string): /* value */ any
|
|
7322
7440
|
|
|
7323
7441
|
// Overloads of get_property
|
|
7324
7442
|
|
|
@@ -7342,7 +7460,7 @@ interface Expander extends Atk.ImplementorIface, Clutter.Animatable, Clutter.Con
|
|
|
7342
7460
|
* @param property_name the name of the property to get
|
|
7343
7461
|
* @param value return location for the property value
|
|
7344
7462
|
*/
|
|
7345
|
-
get_property(property_name: string
|
|
7463
|
+
get_property(property_name: string, value: any): void
|
|
7346
7464
|
/**
|
|
7347
7465
|
* Gets a property of an object.
|
|
7348
7466
|
*
|
|
@@ -7363,7 +7481,7 @@ interface Expander extends Atk.ImplementorIface, Clutter.Animatable, Clutter.Con
|
|
|
7363
7481
|
* @param property_name the name of the property to get
|
|
7364
7482
|
* @param value return location for the property value
|
|
7365
7483
|
*/
|
|
7366
|
-
get_property(property_name: string
|
|
7484
|
+
get_property(property_name: string, value: any): void
|
|
7367
7485
|
|
|
7368
7486
|
// Own virtual methods of Mx-1.0.Mx.Expander
|
|
7369
7487
|
|
|
@@ -7713,6 +7831,15 @@ module FadeEffect {
|
|
|
7713
7831
|
bounds_y?: number | null
|
|
7714
7832
|
color?: Clutter.Color | null
|
|
7715
7833
|
freeze_update?: boolean | null
|
|
7834
|
+
borderBottom?: number | null
|
|
7835
|
+
borderLeft?: number | null
|
|
7836
|
+
borderRight?: number | null
|
|
7837
|
+
borderTop?: number | null
|
|
7838
|
+
boundsHeight?: number | null
|
|
7839
|
+
boundsWidth?: number | null
|
|
7840
|
+
boundsX?: number | null
|
|
7841
|
+
boundsY?: number | null
|
|
7842
|
+
freezeUpdate?: boolean | null
|
|
7716
7843
|
}
|
|
7717
7844
|
|
|
7718
7845
|
}
|
|
@@ -7722,15 +7849,24 @@ interface FadeEffect {
|
|
|
7722
7849
|
// Own properties of Mx-1.0.Mx.FadeEffect
|
|
7723
7850
|
|
|
7724
7851
|
border_bottom: number
|
|
7852
|
+
borderBottom: number
|
|
7725
7853
|
border_left: number
|
|
7854
|
+
borderLeft: number
|
|
7726
7855
|
border_right: number
|
|
7856
|
+
borderRight: number
|
|
7727
7857
|
border_top: number
|
|
7858
|
+
borderTop: number
|
|
7728
7859
|
bounds_height: number
|
|
7860
|
+
boundsHeight: number
|
|
7729
7861
|
bounds_width: number
|
|
7862
|
+
boundsWidth: number
|
|
7730
7863
|
bounds_x: number
|
|
7864
|
+
boundsX: number
|
|
7731
7865
|
bounds_y: number
|
|
7866
|
+
boundsY: number
|
|
7732
7867
|
color: Clutter.Color
|
|
7733
7868
|
freeze_update: boolean
|
|
7869
|
+
freezeUpdate: boolean
|
|
7734
7870
|
|
|
7735
7871
|
// Own fields of Mx-1.0.Mx.FadeEffect
|
|
7736
7872
|
|
|
@@ -7878,7 +8014,7 @@ interface FloatingWidget extends Atk.ImplementorIface, Clutter.Animatable, Clutt
|
|
|
7878
8014
|
* into `value`.
|
|
7879
8015
|
* @param property_name the name of the property
|
|
7880
8016
|
*/
|
|
7881
|
-
get_property(property_name: string
|
|
8017
|
+
get_property(property_name: string): /* value */ any
|
|
7882
8018
|
|
|
7883
8019
|
// Overloads of get_property
|
|
7884
8020
|
|
|
@@ -7902,7 +8038,7 @@ interface FloatingWidget extends Atk.ImplementorIface, Clutter.Animatable, Clutt
|
|
|
7902
8038
|
* @param property_name the name of the property to get
|
|
7903
8039
|
* @param value return location for the property value
|
|
7904
8040
|
*/
|
|
7905
|
-
get_property(property_name: string
|
|
8041
|
+
get_property(property_name: string, value: any): void
|
|
7906
8042
|
/**
|
|
7907
8043
|
* Gets a property of an object.
|
|
7908
8044
|
*
|
|
@@ -7923,7 +8059,7 @@ interface FloatingWidget extends Atk.ImplementorIface, Clutter.Animatable, Clutt
|
|
|
7923
8059
|
* @param property_name the name of the property to get
|
|
7924
8060
|
* @param value return location for the property value
|
|
7925
8061
|
*/
|
|
7926
|
-
get_property(property_name: string
|
|
8062
|
+
get_property(property_name: string, value: any): void
|
|
7927
8063
|
|
|
7928
8064
|
// Class property signals of Mx-1.0.Mx.FloatingWidget
|
|
7929
8065
|
|
|
@@ -8328,7 +8464,9 @@ interface Frame extends Atk.ImplementorIface, Clutter.Animatable, Clutter.Contai
|
|
|
8328
8464
|
// Conflicting properties
|
|
8329
8465
|
|
|
8330
8466
|
x_align: any
|
|
8467
|
+
xAlign: any
|
|
8331
8468
|
y_align: any
|
|
8469
|
+
yAlign: any
|
|
8332
8470
|
|
|
8333
8471
|
// Own fields of Mx-1.0.Mx.Frame
|
|
8334
8472
|
|
|
@@ -8342,7 +8480,7 @@ interface Frame extends Atk.ImplementorIface, Clutter.Animatable, Clutter.Contai
|
|
|
8342
8480
|
* into `value`.
|
|
8343
8481
|
* @param property_name the name of the property
|
|
8344
8482
|
*/
|
|
8345
|
-
get_property(property_name: string
|
|
8483
|
+
get_property(property_name: string): /* value */ any
|
|
8346
8484
|
|
|
8347
8485
|
// Overloads of get_property
|
|
8348
8486
|
|
|
@@ -8366,7 +8504,7 @@ interface Frame extends Atk.ImplementorIface, Clutter.Animatable, Clutter.Contai
|
|
|
8366
8504
|
* @param property_name the name of the property to get
|
|
8367
8505
|
* @param value return location for the property value
|
|
8368
8506
|
*/
|
|
8369
|
-
get_property(property_name: string
|
|
8507
|
+
get_property(property_name: string, value: any): void
|
|
8370
8508
|
/**
|
|
8371
8509
|
* Gets a property of an object.
|
|
8372
8510
|
*
|
|
@@ -8387,7 +8525,7 @@ interface Frame extends Atk.ImplementorIface, Clutter.Animatable, Clutter.Contai
|
|
|
8387
8525
|
* @param property_name the name of the property to get
|
|
8388
8526
|
* @param value return location for the property value
|
|
8389
8527
|
*/
|
|
8390
|
-
get_property(property_name: string
|
|
8528
|
+
get_property(property_name: string, value: any): void
|
|
8391
8529
|
|
|
8392
8530
|
// Class property signals of Mx-1.0.Mx.Frame
|
|
8393
8531
|
|
|
@@ -8720,6 +8858,14 @@ module Grid {
|
|
|
8720
8858
|
max_stride?: number | null
|
|
8721
8859
|
orientation?: Orientation | null
|
|
8722
8860
|
row_spacing?: number | null
|
|
8861
|
+
childXAlign?: Align | null
|
|
8862
|
+
childYAlign?: Align | null
|
|
8863
|
+
columnSpacing?: number | null
|
|
8864
|
+
homogenousColumns?: boolean | null
|
|
8865
|
+
homogenousRows?: boolean | null
|
|
8866
|
+
lineAlignment?: Align | null
|
|
8867
|
+
maxStride?: number | null
|
|
8868
|
+
rowSpacing?: number | null
|
|
8723
8869
|
}
|
|
8724
8870
|
|
|
8725
8871
|
}
|
|
@@ -8729,14 +8875,22 @@ interface Grid extends Atk.ImplementorIface, Clutter.Animatable, Clutter.Contain
|
|
|
8729
8875
|
// Own properties of Mx-1.0.Mx.Grid
|
|
8730
8876
|
|
|
8731
8877
|
child_x_align: Align
|
|
8878
|
+
childXAlign: Align
|
|
8732
8879
|
child_y_align: Align
|
|
8880
|
+
childYAlign: Align
|
|
8733
8881
|
column_spacing: number
|
|
8882
|
+
columnSpacing: number
|
|
8734
8883
|
homogenous_columns: boolean
|
|
8884
|
+
homogenousColumns: boolean
|
|
8735
8885
|
homogenous_rows: boolean
|
|
8886
|
+
homogenousRows: boolean
|
|
8736
8887
|
line_alignment: Align
|
|
8888
|
+
lineAlignment: Align
|
|
8737
8889
|
max_stride: number
|
|
8890
|
+
maxStride: number
|
|
8738
8891
|
orientation: Orientation
|
|
8739
8892
|
row_spacing: number
|
|
8893
|
+
rowSpacing: number
|
|
8740
8894
|
|
|
8741
8895
|
// Owm methods of Mx-1.0.Mx.Grid
|
|
8742
8896
|
|
|
@@ -8766,7 +8920,7 @@ interface Grid extends Atk.ImplementorIface, Clutter.Animatable, Clutter.Contain
|
|
|
8766
8920
|
* into `value`.
|
|
8767
8921
|
* @param property_name the name of the property
|
|
8768
8922
|
*/
|
|
8769
|
-
get_property(property_name: string
|
|
8923
|
+
get_property(property_name: string): /* value */ any
|
|
8770
8924
|
|
|
8771
8925
|
// Overloads of get_property
|
|
8772
8926
|
|
|
@@ -8790,7 +8944,7 @@ interface Grid extends Atk.ImplementorIface, Clutter.Animatable, Clutter.Contain
|
|
|
8790
8944
|
* @param property_name the name of the property to get
|
|
8791
8945
|
* @param value return location for the property value
|
|
8792
8946
|
*/
|
|
8793
|
-
get_property(property_name: string
|
|
8947
|
+
get_property(property_name: string, value: any): void
|
|
8794
8948
|
/**
|
|
8795
8949
|
* Gets a property of an object.
|
|
8796
8950
|
*
|
|
@@ -8811,7 +8965,7 @@ interface Grid extends Atk.ImplementorIface, Clutter.Animatable, Clutter.Contain
|
|
|
8811
8965
|
* @param property_name the name of the property to get
|
|
8812
8966
|
* @param value return location for the property value
|
|
8813
8967
|
*/
|
|
8814
|
-
get_property(property_name: string
|
|
8968
|
+
get_property(property_name: string, value: any): void
|
|
8815
8969
|
|
|
8816
8970
|
// Class property signals of Mx-1.0.Mx.Grid
|
|
8817
8971
|
|
|
@@ -9151,6 +9305,8 @@ module Icon {
|
|
|
9151
9305
|
|
|
9152
9306
|
icon_name?: string | null
|
|
9153
9307
|
icon_size?: number | null
|
|
9308
|
+
iconName?: string | null
|
|
9309
|
+
iconSize?: number | null
|
|
9154
9310
|
}
|
|
9155
9311
|
|
|
9156
9312
|
}
|
|
@@ -9160,13 +9316,15 @@ interface Icon extends Atk.ImplementorIface, Clutter.Animatable, Clutter.Contain
|
|
|
9160
9316
|
// Own properties of Mx-1.0.Mx.Icon
|
|
9161
9317
|
|
|
9162
9318
|
icon_name: string | null
|
|
9319
|
+
iconName: string | null
|
|
9163
9320
|
icon_size: number
|
|
9321
|
+
iconSize: number
|
|
9164
9322
|
|
|
9165
9323
|
// Owm methods of Mx-1.0.Mx.Icon
|
|
9166
9324
|
|
|
9167
|
-
get_icon_name(): string
|
|
9325
|
+
get_icon_name(): string
|
|
9168
9326
|
get_icon_size(): number
|
|
9169
|
-
set_icon_name(icon_name: string
|
|
9327
|
+
set_icon_name(icon_name: string): void
|
|
9170
9328
|
set_icon_size(size: number): void
|
|
9171
9329
|
|
|
9172
9330
|
// Conflicting methods
|
|
@@ -9176,7 +9334,7 @@ interface Icon extends Atk.ImplementorIface, Clutter.Animatable, Clutter.Contain
|
|
|
9176
9334
|
* into `value`.
|
|
9177
9335
|
* @param property_name the name of the property
|
|
9178
9336
|
*/
|
|
9179
|
-
get_property(property_name: string
|
|
9337
|
+
get_property(property_name: string): /* value */ any
|
|
9180
9338
|
|
|
9181
9339
|
// Overloads of get_property
|
|
9182
9340
|
|
|
@@ -9200,7 +9358,7 @@ interface Icon extends Atk.ImplementorIface, Clutter.Animatable, Clutter.Contain
|
|
|
9200
9358
|
* @param property_name the name of the property to get
|
|
9201
9359
|
* @param value return location for the property value
|
|
9202
9360
|
*/
|
|
9203
|
-
get_property(property_name: string
|
|
9361
|
+
get_property(property_name: string, value: any): void
|
|
9204
9362
|
/**
|
|
9205
9363
|
* Gets a property of an object.
|
|
9206
9364
|
*
|
|
@@ -9221,7 +9379,7 @@ interface Icon extends Atk.ImplementorIface, Clutter.Animatable, Clutter.Contain
|
|
|
9221
9379
|
* @param property_name the name of the property to get
|
|
9222
9380
|
* @param value return location for the property value
|
|
9223
9381
|
*/
|
|
9224
|
-
get_property(property_name: string
|
|
9382
|
+
get_property(property_name: string, value: any): void
|
|
9225
9383
|
|
|
9226
9384
|
// Class property signals of Mx-1.0.Mx.Icon
|
|
9227
9385
|
|
|
@@ -9543,6 +9701,7 @@ module IconTheme {
|
|
|
9543
9701
|
// Own constructor properties of Mx-1.0.Mx.IconTheme
|
|
9544
9702
|
|
|
9545
9703
|
theme_name?: string | null
|
|
9704
|
+
themeName?: string | null
|
|
9546
9705
|
}
|
|
9547
9706
|
|
|
9548
9707
|
}
|
|
@@ -9552,6 +9711,7 @@ interface IconTheme {
|
|
|
9552
9711
|
// Own properties of Mx-1.0.Mx.IconTheme
|
|
9553
9712
|
|
|
9554
9713
|
theme_name: string | null
|
|
9714
|
+
themeName: string | null
|
|
9555
9715
|
|
|
9556
9716
|
// Own fields of Mx-1.0.Mx.IconTheme
|
|
9557
9717
|
|
|
@@ -9569,22 +9729,22 @@ interface IconTheme {
|
|
|
9569
9729
|
* Get the value of the #MxIconTheme:theme-name property.
|
|
9570
9730
|
* @returns the current value of the "theme-name" property.
|
|
9571
9731
|
*/
|
|
9572
|
-
get_theme_name(): string
|
|
9573
|
-
has_icon(icon_name: string
|
|
9732
|
+
get_theme_name(): string
|
|
9733
|
+
has_icon(icon_name: string): boolean
|
|
9574
9734
|
/**
|
|
9575
9735
|
* If the icon is available, returns a #CoglHandle of the icon.
|
|
9576
9736
|
* @param icon_name The name of the icon
|
|
9577
9737
|
* @param size The desired size of the icon
|
|
9578
9738
|
* @returns a #CoglHandle of the icon, or %NULL.
|
|
9579
9739
|
*/
|
|
9580
|
-
lookup(icon_name: string
|
|
9740
|
+
lookup(icon_name: string, size: number): Cogl.Handle
|
|
9581
9741
|
/**
|
|
9582
9742
|
* If the icon is available, returns a #ClutterTexture of the icon.
|
|
9583
9743
|
* @param icon_name The name of the icon
|
|
9584
9744
|
* @param size The desired size of the icon
|
|
9585
9745
|
* @returns a #ClutterTexture of the icon, or %NULL.
|
|
9586
9746
|
*/
|
|
9587
|
-
lookup_texture(icon_name: string
|
|
9747
|
+
lookup_texture(icon_name: string, size: number): Clutter.Texture
|
|
9588
9748
|
/**
|
|
9589
9749
|
* Sets the directories the #MxIconTheme will search in to find icons.
|
|
9590
9750
|
* By default, it will look in the default system and local icon
|
|
@@ -9602,7 +9762,7 @@ interface IconTheme {
|
|
|
9602
9762
|
* icon theme, this function can be called with a %NULL `theme_name` argument.
|
|
9603
9763
|
* @param theme_name the name of an icon theme to load, or %NULL
|
|
9604
9764
|
*/
|
|
9605
|
-
set_theme_name(theme_name: string
|
|
9765
|
+
set_theme_name(theme_name: string): void
|
|
9606
9766
|
|
|
9607
9767
|
// Class property signals of Mx-1.0.Mx.IconTheme
|
|
9608
9768
|
|
|
@@ -9684,6 +9844,13 @@ module Image {
|
|
|
9684
9844
|
scale_mode?: ImageScaleMode | null
|
|
9685
9845
|
scale_width_threshold?: number | null
|
|
9686
9846
|
transition_duration?: number | null
|
|
9847
|
+
allowUpscale?: boolean | null
|
|
9848
|
+
imageRotation?: number | null
|
|
9849
|
+
loadAsync?: boolean | null
|
|
9850
|
+
scaleHeightThreshold?: number | null
|
|
9851
|
+
scaleMode?: ImageScaleMode | null
|
|
9852
|
+
scaleWidthThreshold?: number | null
|
|
9853
|
+
transitionDuration?: number | null
|
|
9687
9854
|
}
|
|
9688
9855
|
|
|
9689
9856
|
}
|
|
@@ -9693,12 +9860,19 @@ interface Image extends Atk.ImplementorIface, Clutter.Animatable, Clutter.Contai
|
|
|
9693
9860
|
// Own properties of Mx-1.0.Mx.Image
|
|
9694
9861
|
|
|
9695
9862
|
allow_upscale: boolean
|
|
9863
|
+
allowUpscale: boolean
|
|
9696
9864
|
image_rotation: number
|
|
9865
|
+
imageRotation: number
|
|
9697
9866
|
load_async: boolean
|
|
9867
|
+
loadAsync: boolean
|
|
9698
9868
|
scale_height_threshold: number
|
|
9869
|
+
scaleHeightThreshold: number
|
|
9699
9870
|
scale_mode: ImageScaleMode
|
|
9871
|
+
scaleMode: ImageScaleMode
|
|
9700
9872
|
scale_width_threshold: number
|
|
9873
|
+
scaleWidthThreshold: number
|
|
9701
9874
|
transition_duration: number
|
|
9875
|
+
transitionDuration: number
|
|
9702
9876
|
|
|
9703
9877
|
// Owm methods of Mx-1.0.Mx.Image
|
|
9704
9878
|
|
|
@@ -9806,7 +9980,7 @@ interface Image extends Atk.ImplementorIface, Clutter.Animatable, Clutter.Contai
|
|
|
9806
9980
|
* @param filename Filename to read the file from
|
|
9807
9981
|
* @returns #TRUE if the image was successfully updated
|
|
9808
9982
|
*/
|
|
9809
|
-
set_from_file(filename: string
|
|
9983
|
+
set_from_file(filename: string): boolean
|
|
9810
9984
|
/**
|
|
9811
9985
|
* Set the image data from an image file, and scale the image during loading.
|
|
9812
9986
|
* In case of failure, #FALSE is returned and `error` is set. The aspect ratio
|
|
@@ -9816,7 +9990,7 @@ interface Image extends Atk.ImplementorIface, Clutter.Animatable, Clutter.Contai
|
|
|
9816
9990
|
* @param height Height to scale the image to, or -1
|
|
9817
9991
|
* @returns #TRUE if the image was successfully updated
|
|
9818
9992
|
*/
|
|
9819
|
-
set_from_file_at_size(filename: string
|
|
9993
|
+
set_from_file_at_size(filename: string, width: number, height: number): boolean
|
|
9820
9994
|
/**
|
|
9821
9995
|
* Set the MxImage:image-rotation property.
|
|
9822
9996
|
* @param rotation Rotation angle in degrees
|
|
@@ -9871,7 +10045,7 @@ interface Image extends Atk.ImplementorIface, Clutter.Animatable, Clutter.Contai
|
|
|
9871
10045
|
* into `value`.
|
|
9872
10046
|
* @param property_name the name of the property
|
|
9873
10047
|
*/
|
|
9874
|
-
get_property(property_name: string
|
|
10048
|
+
get_property(property_name: string): /* value */ any
|
|
9875
10049
|
|
|
9876
10050
|
// Overloads of get_property
|
|
9877
10051
|
|
|
@@ -9895,7 +10069,7 @@ interface Image extends Atk.ImplementorIface, Clutter.Animatable, Clutter.Contai
|
|
|
9895
10069
|
* @param property_name the name of the property to get
|
|
9896
10070
|
* @param value return location for the property value
|
|
9897
10071
|
*/
|
|
9898
|
-
get_property(property_name: string
|
|
10072
|
+
get_property(property_name: string, value: any): void
|
|
9899
10073
|
/**
|
|
9900
10074
|
* Gets a property of an object.
|
|
9901
10075
|
*
|
|
@@ -9916,7 +10090,7 @@ interface Image extends Atk.ImplementorIface, Clutter.Animatable, Clutter.Contai
|
|
|
9916
10090
|
* @param property_name the name of the property to get
|
|
9917
10091
|
* @param value return location for the property value
|
|
9918
10092
|
*/
|
|
9919
|
-
get_property(property_name: string
|
|
10093
|
+
get_property(property_name: string, value: any): void
|
|
9920
10094
|
|
|
9921
10095
|
// Own virtual methods of Mx-1.0.Mx.Image
|
|
9922
10096
|
|
|
@@ -10269,6 +10443,7 @@ module ItemView {
|
|
|
10269
10443
|
factory?: GObject.Object | null
|
|
10270
10444
|
item_type?: GObject.GType | null
|
|
10271
10445
|
model?: Clutter.Model | null
|
|
10446
|
+
itemType?: GObject.GType | null
|
|
10272
10447
|
}
|
|
10273
10448
|
|
|
10274
10449
|
}
|
|
@@ -10279,6 +10454,7 @@ interface ItemView extends Atk.ImplementorIface, Clutter.Animatable, Clutter.Con
|
|
|
10279
10454
|
|
|
10280
10455
|
factory: GObject.Object
|
|
10281
10456
|
item_type: GObject.GType
|
|
10457
|
+
itemType: GObject.GType
|
|
10282
10458
|
model: Clutter.Model
|
|
10283
10459
|
|
|
10284
10460
|
// Owm methods of Mx-1.0.Mx.ItemView
|
|
@@ -10289,7 +10465,7 @@ interface ItemView extends Atk.ImplementorIface, Clutter.Animatable, Clutter.Con
|
|
|
10289
10465
|
* @param attribute Name of the attribute
|
|
10290
10466
|
* @param column Column number
|
|
10291
10467
|
*/
|
|
10292
|
-
add_attribute(attribute: string
|
|
10468
|
+
add_attribute(attribute: string, column: number): void
|
|
10293
10469
|
/**
|
|
10294
10470
|
* Freeze the view. This means that the view will not act on changes to the
|
|
10295
10471
|
* model until it is thawed. Call #mx_item_view_thaw to thaw the view
|
|
@@ -10339,7 +10515,7 @@ interface ItemView extends Atk.ImplementorIface, Clutter.Animatable, Clutter.Con
|
|
|
10339
10515
|
* into `value`.
|
|
10340
10516
|
* @param property_name the name of the property
|
|
10341
10517
|
*/
|
|
10342
|
-
get_property(property_name: string
|
|
10518
|
+
get_property(property_name: string): /* value */ any
|
|
10343
10519
|
|
|
10344
10520
|
// Overloads of get_property
|
|
10345
10521
|
|
|
@@ -10363,7 +10539,7 @@ interface ItemView extends Atk.ImplementorIface, Clutter.Animatable, Clutter.Con
|
|
|
10363
10539
|
* @param property_name the name of the property to get
|
|
10364
10540
|
* @param value return location for the property value
|
|
10365
10541
|
*/
|
|
10366
|
-
get_property(property_name: string
|
|
10542
|
+
get_property(property_name: string, value: any): void
|
|
10367
10543
|
/**
|
|
10368
10544
|
* Gets a property of an object.
|
|
10369
10545
|
*
|
|
@@ -10384,7 +10560,7 @@ interface ItemView extends Atk.ImplementorIface, Clutter.Animatable, Clutter.Con
|
|
|
10384
10560
|
* @param property_name the name of the property to get
|
|
10385
10561
|
* @param value return location for the property value
|
|
10386
10562
|
*/
|
|
10387
|
-
get_property(property_name: string
|
|
10563
|
+
get_property(property_name: string, value: any): void
|
|
10388
10564
|
|
|
10389
10565
|
// Class property signals of Mx-1.0.Mx.ItemView
|
|
10390
10566
|
|
|
@@ -10750,6 +10926,13 @@ module KineticScrollView {
|
|
|
10750
10926
|
overshoot?: number | null
|
|
10751
10927
|
scroll_policy?: ScrollPolicy | null
|
|
10752
10928
|
use_captured?: boolean | null
|
|
10929
|
+
accelerationFactor?: number | null
|
|
10930
|
+
clampDuration?: number | null
|
|
10931
|
+
clampMode?: number | null
|
|
10932
|
+
clampToCenter?: boolean | null
|
|
10933
|
+
mouseButton?: number | null
|
|
10934
|
+
scrollPolicy?: ScrollPolicy | null
|
|
10935
|
+
useCaptured?: boolean | null
|
|
10753
10936
|
}
|
|
10754
10937
|
|
|
10755
10938
|
}
|
|
@@ -10759,20 +10942,29 @@ interface KineticScrollView extends Atk.ImplementorIface, Clutter.Animatable, Cl
|
|
|
10759
10942
|
// Own properties of Mx-1.0.Mx.KineticScrollView
|
|
10760
10943
|
|
|
10761
10944
|
acceleration_factor: number
|
|
10945
|
+
accelerationFactor: number
|
|
10762
10946
|
clamp_duration: number
|
|
10947
|
+
clampDuration: number
|
|
10763
10948
|
clamp_mode: number
|
|
10949
|
+
clampMode: number
|
|
10764
10950
|
clamp_to_center: boolean
|
|
10951
|
+
clampToCenter: boolean
|
|
10765
10952
|
deceleration: number
|
|
10766
10953
|
mouse_button: number
|
|
10954
|
+
mouseButton: number
|
|
10767
10955
|
overshoot: number
|
|
10768
10956
|
scroll_policy: ScrollPolicy
|
|
10957
|
+
scrollPolicy: ScrollPolicy
|
|
10769
10958
|
readonly state: KineticScrollViewState
|
|
10770
10959
|
use_captured: boolean
|
|
10960
|
+
useCaptured: boolean
|
|
10771
10961
|
|
|
10772
10962
|
// Conflicting properties
|
|
10773
10963
|
|
|
10774
10964
|
x_align: any
|
|
10965
|
+
xAlign: any
|
|
10775
10966
|
y_align: any
|
|
10967
|
+
yAlign: any
|
|
10776
10968
|
|
|
10777
10969
|
// Owm methods of Mx-1.0.Mx.KineticScrollView
|
|
10778
10970
|
|
|
@@ -10889,7 +11081,7 @@ interface KineticScrollView extends Atk.ImplementorIface, Clutter.Animatable, Cl
|
|
|
10889
11081
|
* into `value`.
|
|
10890
11082
|
* @param property_name the name of the property
|
|
10891
11083
|
*/
|
|
10892
|
-
get_property(property_name: string
|
|
11084
|
+
get_property(property_name: string): /* value */ any
|
|
10893
11085
|
|
|
10894
11086
|
// Overloads of get_property
|
|
10895
11087
|
|
|
@@ -10913,7 +11105,7 @@ interface KineticScrollView extends Atk.ImplementorIface, Clutter.Animatable, Cl
|
|
|
10913
11105
|
* @param property_name the name of the property to get
|
|
10914
11106
|
* @param value return location for the property value
|
|
10915
11107
|
*/
|
|
10916
|
-
get_property(property_name: string
|
|
11108
|
+
get_property(property_name: string, value: any): void
|
|
10917
11109
|
/**
|
|
10918
11110
|
* Gets a property of an object.
|
|
10919
11111
|
*
|
|
@@ -10934,7 +11126,7 @@ interface KineticScrollView extends Atk.ImplementorIface, Clutter.Animatable, Cl
|
|
|
10934
11126
|
* @param property_name the name of the property to get
|
|
10935
11127
|
* @param value return location for the property value
|
|
10936
11128
|
*/
|
|
10937
|
-
get_property(property_name: string
|
|
11129
|
+
get_property(property_name: string, value: any): void
|
|
10938
11130
|
|
|
10939
11131
|
// Class property signals of Mx-1.0.Mx.KineticScrollView
|
|
10940
11132
|
|
|
@@ -11310,6 +11502,21 @@ module Label {
|
|
|
11310
11502
|
use_markup?: boolean | null
|
|
11311
11503
|
x_align: any
|
|
11312
11504
|
y_align: any
|
|
11505
|
+
fadeOut?: boolean | null
|
|
11506
|
+
/**
|
|
11507
|
+
* Whether to wrap the lines of #MxLabel:text if the contents
|
|
11508
|
+
* exceed the available allocation.
|
|
11509
|
+
*/
|
|
11510
|
+
lineWrap?: boolean | null
|
|
11511
|
+
/**
|
|
11512
|
+
* Show a tooltip when there is not enough space to display the text. If set
|
|
11513
|
+
* to %TRUE, this will also cause the #ClutterActor:reactive property to be
|
|
11514
|
+
* enabled.
|
|
11515
|
+
*/
|
|
11516
|
+
showTooltip?: boolean | null
|
|
11517
|
+
useMarkup?: boolean | null
|
|
11518
|
+
xAlign: any
|
|
11519
|
+
yAlign: any
|
|
11313
11520
|
}
|
|
11314
11521
|
|
|
11315
11522
|
}
|
|
@@ -11319,17 +11526,33 @@ interface Label extends Atk.ImplementorIface, Clutter.Animatable, Clutter.Contai
|
|
|
11319
11526
|
// Own properties of Mx-1.0.Mx.Label
|
|
11320
11527
|
|
|
11321
11528
|
readonly clutter_text: Clutter.Text
|
|
11529
|
+
readonly clutterText: Clutter.Text
|
|
11322
11530
|
fade_out: boolean
|
|
11531
|
+
fadeOut: boolean
|
|
11323
11532
|
/**
|
|
11324
11533
|
* Whether to wrap the lines of #MxLabel:text if the contents
|
|
11325
11534
|
* exceed the available allocation.
|
|
11326
11535
|
*/
|
|
11327
11536
|
line_wrap: boolean
|
|
11537
|
+
/**
|
|
11538
|
+
* Whether to wrap the lines of #MxLabel:text if the contents
|
|
11539
|
+
* exceed the available allocation.
|
|
11540
|
+
*/
|
|
11541
|
+
lineWrap: boolean
|
|
11328
11542
|
// Has conflict: show_tooltip: boolean
|
|
11543
|
+
/**
|
|
11544
|
+
* Show a tooltip when there is not enough space to display the text. If set
|
|
11545
|
+
* to %TRUE, this will also cause the #ClutterActor:reactive property to be
|
|
11546
|
+
* enabled.
|
|
11547
|
+
*/
|
|
11548
|
+
showTooltip: boolean
|
|
11329
11549
|
text: string | null
|
|
11330
11550
|
use_markup: boolean
|
|
11551
|
+
useMarkup: boolean
|
|
11331
11552
|
x_align: any
|
|
11553
|
+
xAlign: any
|
|
11332
11554
|
y_align: any
|
|
11555
|
+
yAlign: any
|
|
11333
11556
|
|
|
11334
11557
|
// Owm methods of Mx-1.0.Mx.Label
|
|
11335
11558
|
|
|
@@ -11358,7 +11581,7 @@ interface Label extends Atk.ImplementorIface, Clutter.Animatable, Clutter.Contai
|
|
|
11358
11581
|
* Get the text displayed on the label
|
|
11359
11582
|
* @returns the text for the label. This must not be freed by the application
|
|
11360
11583
|
*/
|
|
11361
|
-
get_text(): string
|
|
11584
|
+
get_text(): string
|
|
11362
11585
|
/**
|
|
11363
11586
|
* Determines whether the text of the label is being treated as Pango markup.
|
|
11364
11587
|
* @returns %TRUE if the text of the label is treated as Pango markup, %FALSE otherwise.
|
|
@@ -11405,7 +11628,7 @@ interface Label extends Atk.ImplementorIface, Clutter.Animatable, Clutter.Contai
|
|
|
11405
11628
|
* Sets the text displayed on the label
|
|
11406
11629
|
* @param text text to set the label to
|
|
11407
11630
|
*/
|
|
11408
|
-
set_text(text: string
|
|
11631
|
+
set_text(text: string): void
|
|
11409
11632
|
/**
|
|
11410
11633
|
* Sets whether the text of the label should be treated as Pango markup.
|
|
11411
11634
|
* @param use_markup %TRUE to use Pango markup, %FALSE otherwise
|
|
@@ -11443,7 +11666,7 @@ interface Label extends Atk.ImplementorIface, Clutter.Animatable, Clutter.Contai
|
|
|
11443
11666
|
* into `value`.
|
|
11444
11667
|
* @param property_name the name of the property
|
|
11445
11668
|
*/
|
|
11446
|
-
get_property(property_name: string
|
|
11669
|
+
get_property(property_name: string): /* value */ any
|
|
11447
11670
|
|
|
11448
11671
|
// Overloads of get_property
|
|
11449
11672
|
|
|
@@ -11467,7 +11690,7 @@ interface Label extends Atk.ImplementorIface, Clutter.Animatable, Clutter.Contai
|
|
|
11467
11690
|
* @param property_name the name of the property to get
|
|
11468
11691
|
* @param value return location for the property value
|
|
11469
11692
|
*/
|
|
11470
|
-
get_property(property_name: string
|
|
11693
|
+
get_property(property_name: string, value: any): void
|
|
11471
11694
|
/**
|
|
11472
11695
|
* Gets a property of an object.
|
|
11473
11696
|
*
|
|
@@ -11488,7 +11711,7 @@ interface Label extends Atk.ImplementorIface, Clutter.Animatable, Clutter.Contai
|
|
|
11488
11711
|
* @param property_name the name of the property to get
|
|
11489
11712
|
* @param value return location for the property value
|
|
11490
11713
|
*/
|
|
11491
|
-
get_property(property_name: string
|
|
11714
|
+
get_property(property_name: string, value: any): void
|
|
11492
11715
|
|
|
11493
11716
|
// Class property signals of Mx-1.0.Mx.Label
|
|
11494
11717
|
|
|
@@ -11816,7 +12039,7 @@ class Label extends Widget {
|
|
|
11816
12039
|
* @param text text to set the label to
|
|
11817
12040
|
* @returns a new #MxLabel
|
|
11818
12041
|
*/
|
|
11819
|
-
static new_with_text(text: string
|
|
12042
|
+
static new_with_text(text: string): Label
|
|
11820
12043
|
_init(config?: Label.ConstructorProperties): void
|
|
11821
12044
|
}
|
|
11822
12045
|
|
|
@@ -11831,6 +12054,7 @@ module ListView {
|
|
|
11831
12054
|
factory?: GObject.Object | null
|
|
11832
12055
|
item_type?: GObject.GType | null
|
|
11833
12056
|
model?: Clutter.Model | null
|
|
12057
|
+
itemType?: GObject.GType | null
|
|
11834
12058
|
}
|
|
11835
12059
|
|
|
11836
12060
|
}
|
|
@@ -11841,6 +12065,7 @@ interface ListView extends Atk.ImplementorIface, Clutter.Animatable, Clutter.Con
|
|
|
11841
12065
|
|
|
11842
12066
|
factory: GObject.Object
|
|
11843
12067
|
item_type: GObject.GType
|
|
12068
|
+
itemType: GObject.GType
|
|
11844
12069
|
model: Clutter.Model
|
|
11845
12070
|
|
|
11846
12071
|
// Owm methods of Mx-1.0.Mx.ListView
|
|
@@ -11851,7 +12076,7 @@ interface ListView extends Atk.ImplementorIface, Clutter.Animatable, Clutter.Con
|
|
|
11851
12076
|
* @param attribute Name of the attribute
|
|
11852
12077
|
* @param column Column number
|
|
11853
12078
|
*/
|
|
11854
|
-
add_attribute(attribute: string
|
|
12079
|
+
add_attribute(attribute: string, column: number): void
|
|
11855
12080
|
/**
|
|
11856
12081
|
* Freeze the view. This means that the view will not act on changes to the
|
|
11857
12082
|
* model until it is thawed. Call #mx_list_view_thaw to thaw the view.
|
|
@@ -11901,7 +12126,7 @@ interface ListView extends Atk.ImplementorIface, Clutter.Animatable, Clutter.Con
|
|
|
11901
12126
|
* into `value`.
|
|
11902
12127
|
* @param property_name the name of the property
|
|
11903
12128
|
*/
|
|
11904
|
-
get_property(property_name: string
|
|
12129
|
+
get_property(property_name: string): /* value */ any
|
|
11905
12130
|
|
|
11906
12131
|
// Overloads of get_property
|
|
11907
12132
|
|
|
@@ -11925,7 +12150,7 @@ interface ListView extends Atk.ImplementorIface, Clutter.Animatable, Clutter.Con
|
|
|
11925
12150
|
* @param property_name the name of the property to get
|
|
11926
12151
|
* @param value return location for the property value
|
|
11927
12152
|
*/
|
|
11928
|
-
get_property(property_name: string
|
|
12153
|
+
get_property(property_name: string, value: any): void
|
|
11929
12154
|
/**
|
|
11930
12155
|
* Gets a property of an object.
|
|
11931
12156
|
*
|
|
@@ -11946,7 +12171,7 @@ interface ListView extends Atk.ImplementorIface, Clutter.Animatable, Clutter.Con
|
|
|
11946
12171
|
* @param property_name the name of the property to get
|
|
11947
12172
|
* @param value return location for the property value
|
|
11948
12173
|
*/
|
|
11949
|
-
get_property(property_name: string
|
|
12174
|
+
get_property(property_name: string, value: any): void
|
|
11950
12175
|
/**
|
|
11951
12176
|
* Adds a #ClutterActor to `container`. This function will emit the
|
|
11952
12177
|
* "actor-added" signal. The actor should be parented to
|
|
@@ -12388,7 +12613,7 @@ interface Menu extends Atk.ImplementorIface, Clutter.Animatable, Clutter.Contain
|
|
|
12388
12613
|
* into `value`.
|
|
12389
12614
|
* @param property_name the name of the property
|
|
12390
12615
|
*/
|
|
12391
|
-
get_property(property_name: string
|
|
12616
|
+
get_property(property_name: string): /* value */ any
|
|
12392
12617
|
|
|
12393
12618
|
// Overloads of get_property
|
|
12394
12619
|
|
|
@@ -12412,7 +12637,7 @@ interface Menu extends Atk.ImplementorIface, Clutter.Animatable, Clutter.Contain
|
|
|
12412
12637
|
* @param property_name the name of the property to get
|
|
12413
12638
|
* @param value return location for the property value
|
|
12414
12639
|
*/
|
|
12415
|
-
get_property(property_name: string
|
|
12640
|
+
get_property(property_name: string, value: any): void
|
|
12416
12641
|
/**
|
|
12417
12642
|
* Gets a property of an object.
|
|
12418
12643
|
*
|
|
@@ -12433,7 +12658,7 @@ interface Menu extends Atk.ImplementorIface, Clutter.Animatable, Clutter.Contain
|
|
|
12433
12658
|
* @param property_name the name of the property to get
|
|
12434
12659
|
* @param value return location for the property value
|
|
12435
12660
|
*/
|
|
12436
|
-
get_property(property_name: string
|
|
12661
|
+
get_property(property_name: string, value: any): void
|
|
12437
12662
|
|
|
12438
12663
|
// Own virtual methods of Mx-1.0.Mx.Menu
|
|
12439
12664
|
|
|
@@ -12760,6 +12985,8 @@ module Notebook {
|
|
|
12760
12985
|
|
|
12761
12986
|
current_page?: Clutter.Actor | null
|
|
12762
12987
|
enable_gestures?: boolean | null
|
|
12988
|
+
currentPage?: Clutter.Actor | null
|
|
12989
|
+
enableGestures?: boolean | null
|
|
12763
12990
|
}
|
|
12764
12991
|
|
|
12765
12992
|
}
|
|
@@ -12769,7 +12996,9 @@ interface Notebook extends Atk.ImplementorIface, Clutter.Animatable, Clutter.Con
|
|
|
12769
12996
|
// Own properties of Mx-1.0.Mx.Notebook
|
|
12770
12997
|
|
|
12771
12998
|
current_page: Clutter.Actor
|
|
12999
|
+
currentPage: Clutter.Actor
|
|
12772
13000
|
enable_gestures: boolean
|
|
13001
|
+
enableGestures: boolean
|
|
12773
13002
|
|
|
12774
13003
|
// Own fields of Mx-1.0.Mx.Notebook
|
|
12775
13004
|
|
|
@@ -12794,7 +13023,7 @@ interface Notebook extends Atk.ImplementorIface, Clutter.Animatable, Clutter.Con
|
|
|
12794
13023
|
* into `value`.
|
|
12795
13024
|
* @param property_name the name of the property
|
|
12796
13025
|
*/
|
|
12797
|
-
get_property(property_name: string
|
|
13026
|
+
get_property(property_name: string): /* value */ any
|
|
12798
13027
|
|
|
12799
13028
|
// Overloads of get_property
|
|
12800
13029
|
|
|
@@ -12818,7 +13047,7 @@ interface Notebook extends Atk.ImplementorIface, Clutter.Animatable, Clutter.Con
|
|
|
12818
13047
|
* @param property_name the name of the property to get
|
|
12819
13048
|
* @param value return location for the property value
|
|
12820
13049
|
*/
|
|
12821
|
-
get_property(property_name: string
|
|
13050
|
+
get_property(property_name: string, value: any): void
|
|
12822
13051
|
/**
|
|
12823
13052
|
* Gets a property of an object.
|
|
12824
13053
|
*
|
|
@@ -12839,7 +13068,7 @@ interface Notebook extends Atk.ImplementorIface, Clutter.Animatable, Clutter.Con
|
|
|
12839
13068
|
* @param property_name the name of the property to get
|
|
12840
13069
|
* @param value return location for the property value
|
|
12841
13070
|
*/
|
|
12842
|
-
get_property(property_name: string
|
|
13071
|
+
get_property(property_name: string, value: any): void
|
|
12843
13072
|
|
|
12844
13073
|
// Class property signals of Mx-1.0.Mx.Notebook
|
|
12845
13074
|
|
|
@@ -13155,6 +13384,10 @@ module Offscreen {
|
|
|
13155
13384
|
child?: Clutter.Actor | null
|
|
13156
13385
|
pick_child?: boolean | null
|
|
13157
13386
|
redirect_enabled?: boolean | null
|
|
13387
|
+
accumulationEnabled?: boolean | null
|
|
13388
|
+
autoUpdate?: boolean | null
|
|
13389
|
+
pickChild?: boolean | null
|
|
13390
|
+
redirectEnabled?: boolean | null
|
|
13158
13391
|
}
|
|
13159
13392
|
|
|
13160
13393
|
}
|
|
@@ -13164,15 +13397,20 @@ interface Offscreen extends Atk.ImplementorIface, Clutter.Animatable, Clutter.Co
|
|
|
13164
13397
|
// Own properties of Mx-1.0.Mx.Offscreen
|
|
13165
13398
|
|
|
13166
13399
|
accumulation_enabled: boolean
|
|
13400
|
+
accumulationEnabled: boolean
|
|
13167
13401
|
readonly accumulation_material: any
|
|
13402
|
+
readonly accumulationMaterial: any
|
|
13168
13403
|
auto_update: boolean
|
|
13404
|
+
autoUpdate: boolean
|
|
13169
13405
|
/**
|
|
13170
13406
|
* The off-screen buffer used to draw the child.
|
|
13171
13407
|
*/
|
|
13172
13408
|
readonly buffer: any
|
|
13173
13409
|
child: Clutter.Actor
|
|
13174
13410
|
pick_child: boolean
|
|
13411
|
+
pickChild: boolean
|
|
13175
13412
|
redirect_enabled: boolean
|
|
13413
|
+
redirectEnabled: boolean
|
|
13176
13414
|
|
|
13177
13415
|
// Own fields of Mx-1.0.Mx.Offscreen
|
|
13178
13416
|
|
|
@@ -13613,6 +13851,7 @@ module PathBar {
|
|
|
13613
13851
|
|
|
13614
13852
|
clear_on_change?: boolean | null
|
|
13615
13853
|
editable?: boolean | null
|
|
13854
|
+
clearOnChange?: boolean | null
|
|
13616
13855
|
}
|
|
13617
13856
|
|
|
13618
13857
|
}
|
|
@@ -13622,6 +13861,7 @@ interface PathBar extends Atk.ImplementorIface, Clutter.Animatable, Clutter.Cont
|
|
|
13622
13861
|
// Own properties of Mx-1.0.Mx.PathBar
|
|
13623
13862
|
|
|
13624
13863
|
clear_on_change: boolean
|
|
13864
|
+
clearOnChange: boolean
|
|
13625
13865
|
editable: boolean
|
|
13626
13866
|
readonly entry: Entry
|
|
13627
13867
|
readonly level: number
|
|
@@ -13652,11 +13892,11 @@ interface PathBar extends Atk.ImplementorIface, Clutter.Animatable, Clutter.Cont
|
|
|
13652
13892
|
* @returns MxEntry *
|
|
13653
13893
|
*/
|
|
13654
13894
|
get_entry(): Entry
|
|
13655
|
-
get_label(level: number): string
|
|
13895
|
+
get_label(level: number): string
|
|
13656
13896
|
get_level(): number
|
|
13657
|
-
get_text(): string
|
|
13897
|
+
get_text(): string
|
|
13658
13898
|
pop(): number
|
|
13659
|
-
push(name: string
|
|
13899
|
+
push(name: string): number
|
|
13660
13900
|
/**
|
|
13661
13901
|
* Set theh value of the #MxPathBar:clear-on-change property
|
|
13662
13902
|
* @param clear_on_change the new value of the property
|
|
@@ -13672,12 +13912,12 @@ interface PathBar extends Atk.ImplementorIface, Clutter.Animatable, Clutter.Cont
|
|
|
13672
13912
|
* @param level A #gint
|
|
13673
13913
|
* @param label A #gchar
|
|
13674
13914
|
*/
|
|
13675
|
-
set_label(level: number, label: string
|
|
13915
|
+
set_label(level: number, label: string): void
|
|
13676
13916
|
/**
|
|
13677
13917
|
* Set the text in the editable area of the #MxPathBar
|
|
13678
13918
|
* @param text string to set the editable text to.
|
|
13679
13919
|
*/
|
|
13680
|
-
set_text(text: string
|
|
13920
|
+
set_text(text: string): void
|
|
13681
13921
|
|
|
13682
13922
|
// Conflicting methods
|
|
13683
13923
|
|
|
@@ -13686,7 +13926,7 @@ interface PathBar extends Atk.ImplementorIface, Clutter.Animatable, Clutter.Cont
|
|
|
13686
13926
|
* into `value`.
|
|
13687
13927
|
* @param property_name the name of the property
|
|
13688
13928
|
*/
|
|
13689
|
-
get_property(property_name: string
|
|
13929
|
+
get_property(property_name: string): /* value */ any
|
|
13690
13930
|
|
|
13691
13931
|
// Overloads of get_property
|
|
13692
13932
|
|
|
@@ -13710,7 +13950,7 @@ interface PathBar extends Atk.ImplementorIface, Clutter.Animatable, Clutter.Cont
|
|
|
13710
13950
|
* @param property_name the name of the property to get
|
|
13711
13951
|
* @param value return location for the property value
|
|
13712
13952
|
*/
|
|
13713
|
-
get_property(property_name: string
|
|
13953
|
+
get_property(property_name: string, value: any): void
|
|
13714
13954
|
/**
|
|
13715
13955
|
* Gets a property of an object.
|
|
13716
13956
|
*
|
|
@@ -13731,7 +13971,7 @@ interface PathBar extends Atk.ImplementorIface, Clutter.Animatable, Clutter.Cont
|
|
|
13731
13971
|
* @param property_name the name of the property to get
|
|
13732
13972
|
* @param value return location for the property value
|
|
13733
13973
|
*/
|
|
13734
|
-
get_property(property_name: string
|
|
13974
|
+
get_property(property_name: string, value: any): void
|
|
13735
13975
|
|
|
13736
13976
|
// Class property signals of Mx-1.0.Mx.PathBar
|
|
13737
13977
|
|
|
@@ -14079,7 +14319,7 @@ interface ProgressBar extends Atk.ImplementorIface, Clutter.Animatable, Clutter.
|
|
|
14079
14319
|
* into `value`.
|
|
14080
14320
|
* @param property_name the name of the property
|
|
14081
14321
|
*/
|
|
14082
|
-
get_property(property_name: string
|
|
14322
|
+
get_property(property_name: string): /* value */ any
|
|
14083
14323
|
|
|
14084
14324
|
// Overloads of get_property
|
|
14085
14325
|
|
|
@@ -14103,7 +14343,7 @@ interface ProgressBar extends Atk.ImplementorIface, Clutter.Animatable, Clutter.
|
|
|
14103
14343
|
* @param property_name the name of the property to get
|
|
14104
14344
|
* @param value return location for the property value
|
|
14105
14345
|
*/
|
|
14106
|
-
get_property(property_name: string
|
|
14346
|
+
get_property(property_name: string, value: any): void
|
|
14107
14347
|
/**
|
|
14108
14348
|
* Gets a property of an object.
|
|
14109
14349
|
*
|
|
@@ -14124,7 +14364,7 @@ interface ProgressBar extends Atk.ImplementorIface, Clutter.Animatable, Clutter.
|
|
|
14124
14364
|
* @param property_name the name of the property to get
|
|
14125
14365
|
* @param value return location for the property value
|
|
14126
14366
|
*/
|
|
14127
|
-
get_property(property_name: string
|
|
14367
|
+
get_property(property_name: string, value: any): void
|
|
14128
14368
|
|
|
14129
14369
|
// Class property signals of Mx-1.0.Mx.ProgressBar
|
|
14130
14370
|
|
|
@@ -14475,7 +14715,9 @@ interface ScrollBar extends Atk.ImplementorIface, Clutter.Animatable, Clutter.Co
|
|
|
14475
14715
|
// Conflicting properties
|
|
14476
14716
|
|
|
14477
14717
|
x_align: any
|
|
14718
|
+
xAlign: any
|
|
14478
14719
|
y_align: any
|
|
14720
|
+
yAlign: any
|
|
14479
14721
|
|
|
14480
14722
|
// Owm methods of Mx-1.0.Mx.ScrollBar
|
|
14481
14723
|
|
|
@@ -14496,7 +14738,7 @@ interface ScrollBar extends Atk.ImplementorIface, Clutter.Animatable, Clutter.Co
|
|
|
14496
14738
|
* into `value`.
|
|
14497
14739
|
* @param property_name the name of the property
|
|
14498
14740
|
*/
|
|
14499
|
-
get_property(property_name: string
|
|
14741
|
+
get_property(property_name: string): /* value */ any
|
|
14500
14742
|
|
|
14501
14743
|
// Overloads of get_property
|
|
14502
14744
|
|
|
@@ -14520,7 +14762,7 @@ interface ScrollBar extends Atk.ImplementorIface, Clutter.Animatable, Clutter.Co
|
|
|
14520
14762
|
* @param property_name the name of the property to get
|
|
14521
14763
|
* @param value return location for the property value
|
|
14522
14764
|
*/
|
|
14523
|
-
get_property(property_name: string
|
|
14765
|
+
get_property(property_name: string, value: any): void
|
|
14524
14766
|
/**
|
|
14525
14767
|
* Gets a property of an object.
|
|
14526
14768
|
*
|
|
@@ -14541,7 +14783,7 @@ interface ScrollBar extends Atk.ImplementorIface, Clutter.Animatable, Clutter.Co
|
|
|
14541
14783
|
* @param property_name the name of the property to get
|
|
14542
14784
|
* @param value return location for the property value
|
|
14543
14785
|
*/
|
|
14544
|
-
get_property(property_name: string
|
|
14786
|
+
get_property(property_name: string, value: any): void
|
|
14545
14787
|
|
|
14546
14788
|
// Own virtual methods of Mx-1.0.Mx.ScrollBar
|
|
14547
14789
|
|
|
@@ -14895,6 +15137,9 @@ module ScrollView {
|
|
|
14895
15137
|
enable_gestures?: boolean | null
|
|
14896
15138
|
enable_mouse_scrolling?: boolean | null
|
|
14897
15139
|
scroll_policy?: ScrollPolicy | null
|
|
15140
|
+
enableGestures?: boolean | null
|
|
15141
|
+
enableMouseScrolling?: boolean | null
|
|
15142
|
+
scrollPolicy?: ScrollPolicy | null
|
|
14898
15143
|
}
|
|
14899
15144
|
|
|
14900
15145
|
}
|
|
@@ -14904,13 +15149,18 @@ interface ScrollView extends Atk.ImplementorIface, Clutter.Animatable, Clutter.C
|
|
|
14904
15149
|
// Own properties of Mx-1.0.Mx.ScrollView
|
|
14905
15150
|
|
|
14906
15151
|
enable_gestures: boolean
|
|
15152
|
+
enableGestures: boolean
|
|
14907
15153
|
enable_mouse_scrolling: boolean
|
|
15154
|
+
enableMouseScrolling: boolean
|
|
14908
15155
|
scroll_policy: ScrollPolicy
|
|
15156
|
+
scrollPolicy: ScrollPolicy
|
|
14909
15157
|
|
|
14910
15158
|
// Conflicting properties
|
|
14911
15159
|
|
|
14912
15160
|
x_align: any
|
|
15161
|
+
xAlign: any
|
|
14913
15162
|
y_align: any
|
|
15163
|
+
yAlign: any
|
|
14914
15164
|
|
|
14915
15165
|
// Owm methods of Mx-1.0.Mx.ScrollView
|
|
14916
15166
|
|
|
@@ -14934,7 +15184,7 @@ interface ScrollView extends Atk.ImplementorIface, Clutter.Animatable, Clutter.C
|
|
|
14934
15184
|
* into `value`.
|
|
14935
15185
|
* @param property_name the name of the property
|
|
14936
15186
|
*/
|
|
14937
|
-
get_property(property_name: string
|
|
15187
|
+
get_property(property_name: string): /* value */ any
|
|
14938
15188
|
|
|
14939
15189
|
// Overloads of get_property
|
|
14940
15190
|
|
|
@@ -14958,7 +15208,7 @@ interface ScrollView extends Atk.ImplementorIface, Clutter.Animatable, Clutter.C
|
|
|
14958
15208
|
* @param property_name the name of the property to get
|
|
14959
15209
|
* @param value return location for the property value
|
|
14960
15210
|
*/
|
|
14961
|
-
get_property(property_name: string
|
|
15211
|
+
get_property(property_name: string, value: any): void
|
|
14962
15212
|
/**
|
|
14963
15213
|
* Gets a property of an object.
|
|
14964
15214
|
*
|
|
@@ -14979,7 +15229,7 @@ interface ScrollView extends Atk.ImplementorIface, Clutter.Animatable, Clutter.C
|
|
|
14979
15229
|
* @param property_name the name of the property to get
|
|
14980
15230
|
* @param value return location for the property value
|
|
14981
15231
|
*/
|
|
14982
|
-
get_property(property_name: string
|
|
15232
|
+
get_property(property_name: string, value: any): void
|
|
14983
15233
|
|
|
14984
15234
|
// Class property signals of Mx-1.0.Mx.ScrollView
|
|
14985
15235
|
|
|
@@ -15307,6 +15557,11 @@ module Settings {
|
|
|
15307
15557
|
icon_theme?: string | null
|
|
15308
15558
|
long_press_timeout?: number | null
|
|
15309
15559
|
small_screen?: boolean | null
|
|
15560
|
+
dragThreshold?: number | null
|
|
15561
|
+
fontName?: string | null
|
|
15562
|
+
iconTheme?: string | null
|
|
15563
|
+
longPressTimeout?: number | null
|
|
15564
|
+
smallScreen?: boolean | null
|
|
15310
15565
|
}
|
|
15311
15566
|
|
|
15312
15567
|
}
|
|
@@ -15316,10 +15571,15 @@ interface Settings {
|
|
|
15316
15571
|
// Own properties of Mx-1.0.Mx.Settings
|
|
15317
15572
|
|
|
15318
15573
|
drag_threshold: number
|
|
15574
|
+
dragThreshold: number
|
|
15319
15575
|
font_name: string | null
|
|
15576
|
+
fontName: string | null
|
|
15320
15577
|
icon_theme: string | null
|
|
15578
|
+
iconTheme: string | null
|
|
15321
15579
|
long_press_timeout: number
|
|
15580
|
+
longPressTimeout: number
|
|
15322
15581
|
small_screen: boolean
|
|
15582
|
+
smallScreen: boolean
|
|
15323
15583
|
|
|
15324
15584
|
// Own fields of Mx-1.0.Mx.Settings
|
|
15325
15585
|
|
|
@@ -15377,6 +15637,7 @@ module Slider {
|
|
|
15377
15637
|
|
|
15378
15638
|
buffer_value?: number | null
|
|
15379
15639
|
value?: number | null
|
|
15640
|
+
bufferValue?: number | null
|
|
15380
15641
|
}
|
|
15381
15642
|
|
|
15382
15643
|
}
|
|
@@ -15386,6 +15647,7 @@ interface Slider extends Atk.ImplementorIface, Clutter.Animatable, Clutter.Conta
|
|
|
15386
15647
|
// Own properties of Mx-1.0.Mx.Slider
|
|
15387
15648
|
|
|
15388
15649
|
buffer_value: number
|
|
15650
|
+
bufferValue: number
|
|
15389
15651
|
value: number
|
|
15390
15652
|
|
|
15391
15653
|
// Owm methods of Mx-1.0.Mx.Slider
|
|
@@ -15418,7 +15680,7 @@ interface Slider extends Atk.ImplementorIface, Clutter.Animatable, Clutter.Conta
|
|
|
15418
15680
|
* into `value`.
|
|
15419
15681
|
* @param property_name the name of the property
|
|
15420
15682
|
*/
|
|
15421
|
-
get_property(property_name: string
|
|
15683
|
+
get_property(property_name: string): /* value */ any
|
|
15422
15684
|
|
|
15423
15685
|
// Overloads of get_property
|
|
15424
15686
|
|
|
@@ -15442,7 +15704,7 @@ interface Slider extends Atk.ImplementorIface, Clutter.Animatable, Clutter.Conta
|
|
|
15442
15704
|
* @param property_name the name of the property to get
|
|
15443
15705
|
* @param value return location for the property value
|
|
15444
15706
|
*/
|
|
15445
|
-
get_property(property_name: string
|
|
15707
|
+
get_property(property_name: string, value: any): void
|
|
15446
15708
|
/**
|
|
15447
15709
|
* Gets a property of an object.
|
|
15448
15710
|
*
|
|
@@ -15463,7 +15725,7 @@ interface Slider extends Atk.ImplementorIface, Clutter.Animatable, Clutter.Conta
|
|
|
15463
15725
|
* @param property_name the name of the property to get
|
|
15464
15726
|
* @param value return location for the property value
|
|
15465
15727
|
*/
|
|
15466
|
-
get_property(property_name: string
|
|
15728
|
+
get_property(property_name: string, value: any): void
|
|
15467
15729
|
|
|
15468
15730
|
// Class property signals of Mx-1.0.Mx.Slider
|
|
15469
15731
|
|
|
@@ -15826,7 +16088,7 @@ interface Spinner extends Atk.ImplementorIface, Clutter.Animatable, Clutter.Cont
|
|
|
15826
16088
|
* into `value`.
|
|
15827
16089
|
* @param property_name the name of the property
|
|
15828
16090
|
*/
|
|
15829
|
-
get_property(property_name: string
|
|
16091
|
+
get_property(property_name: string): /* value */ any
|
|
15830
16092
|
|
|
15831
16093
|
// Overloads of get_property
|
|
15832
16094
|
|
|
@@ -15850,7 +16112,7 @@ interface Spinner extends Atk.ImplementorIface, Clutter.Animatable, Clutter.Cont
|
|
|
15850
16112
|
* @param property_name the name of the property to get
|
|
15851
16113
|
* @param value return location for the property value
|
|
15852
16114
|
*/
|
|
15853
|
-
get_property(property_name: string
|
|
16115
|
+
get_property(property_name: string, value: any): void
|
|
15854
16116
|
/**
|
|
15855
16117
|
* Gets a property of an object.
|
|
15856
16118
|
*
|
|
@@ -15871,7 +16133,7 @@ interface Spinner extends Atk.ImplementorIface, Clutter.Animatable, Clutter.Cont
|
|
|
15871
16133
|
* @param property_name the name of the property to get
|
|
15872
16134
|
* @param value return location for the property value
|
|
15873
16135
|
*/
|
|
15874
|
-
get_property(property_name: string
|
|
16136
|
+
get_property(property_name: string, value: any): void
|
|
15875
16137
|
|
|
15876
16138
|
// Own virtual methods of Mx-1.0.Mx.Spinner
|
|
15877
16139
|
|
|
@@ -16284,7 +16546,7 @@ interface Stack extends Atk.ImplementorIface, Clutter.Animatable, Clutter.Contai
|
|
|
16284
16546
|
* into `value`.
|
|
16285
16547
|
* @param property_name the name of the property
|
|
16286
16548
|
*/
|
|
16287
|
-
get_property(property_name: string
|
|
16549
|
+
get_property(property_name: string): /* value */ any
|
|
16288
16550
|
|
|
16289
16551
|
// Overloads of get_property
|
|
16290
16552
|
|
|
@@ -16308,7 +16570,7 @@ interface Stack extends Atk.ImplementorIface, Clutter.Animatable, Clutter.Contai
|
|
|
16308
16570
|
* @param property_name the name of the property to get
|
|
16309
16571
|
* @param value return location for the property value
|
|
16310
16572
|
*/
|
|
16311
|
-
get_property(property_name: string
|
|
16573
|
+
get_property(property_name: string, value: any): void
|
|
16312
16574
|
/**
|
|
16313
16575
|
* Gets a property of an object.
|
|
16314
16576
|
*
|
|
@@ -16329,7 +16591,7 @@ interface Stack extends Atk.ImplementorIface, Clutter.Animatable, Clutter.Contai
|
|
|
16329
16591
|
* @param property_name the name of the property to get
|
|
16330
16592
|
* @param value return location for the property value
|
|
16331
16593
|
*/
|
|
16332
|
-
get_property(property_name: string
|
|
16594
|
+
get_property(property_name: string, value: any): void
|
|
16333
16595
|
|
|
16334
16596
|
// Class property signals of Mx-1.0.Mx.Stack
|
|
16335
16597
|
|
|
@@ -16650,6 +16912,10 @@ module StackChild {
|
|
|
16650
16912
|
x_fill?: boolean | null
|
|
16651
16913
|
y_align?: Align | null
|
|
16652
16914
|
y_fill?: boolean | null
|
|
16915
|
+
xAlign?: Align | null
|
|
16916
|
+
xFill?: boolean | null
|
|
16917
|
+
yAlign?: Align | null
|
|
16918
|
+
yFill?: boolean | null
|
|
16653
16919
|
}
|
|
16654
16920
|
|
|
16655
16921
|
}
|
|
@@ -16661,9 +16927,13 @@ interface StackChild {
|
|
|
16661
16927
|
crop: boolean
|
|
16662
16928
|
fit: boolean
|
|
16663
16929
|
x_align: Align
|
|
16930
|
+
xAlign: Align
|
|
16664
16931
|
x_fill: boolean
|
|
16932
|
+
xFill: boolean
|
|
16665
16933
|
y_align: Align
|
|
16934
|
+
yAlign: Align
|
|
16666
16935
|
y_fill: boolean
|
|
16936
|
+
yFill: boolean
|
|
16667
16937
|
|
|
16668
16938
|
// Class property signals of Mx-1.0.Mx.StackChild
|
|
16669
16939
|
|
|
@@ -16761,13 +17031,13 @@ interface Style {
|
|
|
16761
17031
|
* @param property_name the name of the property to get
|
|
16762
17032
|
* @param value return location for the property value
|
|
16763
17033
|
*/
|
|
16764
|
-
get_property(property_name: string
|
|
17034
|
+
get_property(property_name: string, value: any): void
|
|
16765
17035
|
/**
|
|
16766
17036
|
* Load style information from the specified file.
|
|
16767
17037
|
* @param filename filename of the style sheet to load
|
|
16768
17038
|
* @returns TRUE if the style information was loaded successfully. Returns FALSE on error.
|
|
16769
17039
|
*/
|
|
16770
|
-
load_from_file(filename: string
|
|
17040
|
+
load_from_file(filename: string): boolean
|
|
16771
17041
|
|
|
16772
17042
|
// Own virtual methods of Mx-1.0.Mx.Style
|
|
16773
17043
|
|
|
@@ -16835,6 +17105,8 @@ module Table {
|
|
|
16835
17105
|
|
|
16836
17106
|
column_spacing?: number | null
|
|
16837
17107
|
row_spacing?: number | null
|
|
17108
|
+
columnSpacing?: number | null
|
|
17109
|
+
rowSpacing?: number | null
|
|
16838
17110
|
}
|
|
16839
17111
|
|
|
16840
17112
|
}
|
|
@@ -16844,9 +17116,13 @@ interface Table extends Atk.ImplementorIface, Clutter.Animatable, Clutter.Contai
|
|
|
16844
17116
|
// Own properties of Mx-1.0.Mx.Table
|
|
16845
17117
|
|
|
16846
17118
|
readonly column_count: number
|
|
17119
|
+
readonly columnCount: number
|
|
16847
17120
|
column_spacing: number
|
|
17121
|
+
columnSpacing: number
|
|
16848
17122
|
readonly row_count: number
|
|
17123
|
+
readonly rowCount: number
|
|
16849
17124
|
row_spacing: number
|
|
17125
|
+
rowSpacing: number
|
|
16850
17126
|
|
|
16851
17127
|
// Owm methods of Mx-1.0.Mx.Table
|
|
16852
17128
|
|
|
@@ -17040,7 +17316,7 @@ interface Table extends Atk.ImplementorIface, Clutter.Animatable, Clutter.Contai
|
|
|
17040
17316
|
* into `value`.
|
|
17041
17317
|
* @param property_name the name of the property
|
|
17042
17318
|
*/
|
|
17043
|
-
get_property(property_name: string
|
|
17319
|
+
get_property(property_name: string): /* value */ any
|
|
17044
17320
|
|
|
17045
17321
|
// Overloads of get_property
|
|
17046
17322
|
|
|
@@ -17064,7 +17340,7 @@ interface Table extends Atk.ImplementorIface, Clutter.Animatable, Clutter.Contai
|
|
|
17064
17340
|
* @param property_name the name of the property to get
|
|
17065
17341
|
* @param value return location for the property value
|
|
17066
17342
|
*/
|
|
17067
|
-
get_property(property_name: string
|
|
17343
|
+
get_property(property_name: string, value: any): void
|
|
17068
17344
|
/**
|
|
17069
17345
|
* Gets a property of an object.
|
|
17070
17346
|
*
|
|
@@ -17085,7 +17361,7 @@ interface Table extends Atk.ImplementorIface, Clutter.Animatable, Clutter.Contai
|
|
|
17085
17361
|
* @param property_name the name of the property to get
|
|
17086
17362
|
* @param value return location for the property value
|
|
17087
17363
|
*/
|
|
17088
|
-
get_property(property_name: string
|
|
17364
|
+
get_property(property_name: string, value: any): void
|
|
17089
17365
|
|
|
17090
17366
|
// Class property signals of Mx-1.0.Mx.Table
|
|
17091
17367
|
|
|
@@ -17422,6 +17698,14 @@ module TableChild {
|
|
|
17422
17698
|
y_align?: Align | null
|
|
17423
17699
|
y_expand?: boolean | null
|
|
17424
17700
|
y_fill?: boolean | null
|
|
17701
|
+
columnSpan?: number | null
|
|
17702
|
+
rowSpan?: number | null
|
|
17703
|
+
xAlign?: Align | null
|
|
17704
|
+
xExpand?: boolean | null
|
|
17705
|
+
xFill?: boolean | null
|
|
17706
|
+
yAlign?: Align | null
|
|
17707
|
+
yExpand?: boolean | null
|
|
17708
|
+
yFill?: boolean | null
|
|
17425
17709
|
}
|
|
17426
17710
|
|
|
17427
17711
|
}
|
|
@@ -17432,14 +17716,22 @@ interface TableChild {
|
|
|
17432
17716
|
|
|
17433
17717
|
column: number
|
|
17434
17718
|
column_span: number
|
|
17719
|
+
columnSpan: number
|
|
17435
17720
|
row: number
|
|
17436
17721
|
row_span: number
|
|
17722
|
+
rowSpan: number
|
|
17437
17723
|
x_align: Align
|
|
17724
|
+
xAlign: Align
|
|
17438
17725
|
x_expand: boolean
|
|
17726
|
+
xExpand: boolean
|
|
17439
17727
|
x_fill: boolean
|
|
17728
|
+
xFill: boolean
|
|
17440
17729
|
y_align: Align
|
|
17730
|
+
yAlign: Align
|
|
17441
17731
|
y_expand: boolean
|
|
17732
|
+
yExpand: boolean
|
|
17442
17733
|
y_fill: boolean
|
|
17734
|
+
yFill: boolean
|
|
17443
17735
|
|
|
17444
17736
|
// Class property signals of Mx-1.0.Mx.TableChild
|
|
17445
17737
|
|
|
@@ -17516,7 +17808,7 @@ interface TextureCache {
|
|
|
17516
17808
|
* @param uri A URI or path to an image file
|
|
17517
17809
|
* @returns %TRUE if the image exists, %FALSE otherwise
|
|
17518
17810
|
*/
|
|
17519
|
-
contains(uri: string
|
|
17811
|
+
contains(uri: string): boolean
|
|
17520
17812
|
/**
|
|
17521
17813
|
* Checks whether there are any textures associated with the given URI by
|
|
17522
17814
|
* the given identifier.
|
|
@@ -17524,14 +17816,14 @@ interface TextureCache {
|
|
|
17524
17816
|
* @param ident A unique identifier
|
|
17525
17817
|
* @returns %TRUE if the data exists, %FALSE otherwise
|
|
17526
17818
|
*/
|
|
17527
|
-
contains_meta(uri: string
|
|
17819
|
+
contains_meta(uri: string, ident: any): boolean
|
|
17528
17820
|
/**
|
|
17529
17821
|
* This is a wrapper around mx_texture_cache_get_texture() which returns
|
|
17530
17822
|
* a ClutterActor.
|
|
17531
17823
|
* @param uri A URI or path to a image file
|
|
17532
17824
|
* @returns a newly created ClutterTexture
|
|
17533
17825
|
*/
|
|
17534
|
-
get_actor(uri: string
|
|
17826
|
+
get_actor(uri: string): Clutter.Actor
|
|
17535
17827
|
/**
|
|
17536
17828
|
* Create a #CoglHandle representing a texture of the specified image. Adds
|
|
17537
17829
|
* the image to the cache if the image had not been previously loaded.
|
|
@@ -17540,7 +17832,7 @@ interface TextureCache {
|
|
|
17540
17832
|
* @param uri A URI or path to an image file
|
|
17541
17833
|
* @returns a #CoglHandle to the cached texture
|
|
17542
17834
|
*/
|
|
17543
|
-
get_cogl_texture(uri: string
|
|
17835
|
+
get_cogl_texture(uri: string): Cogl.Handle
|
|
17544
17836
|
/**
|
|
17545
17837
|
* Retrieves the #CoglHandle of the previously added image associated
|
|
17546
17838
|
* with the given unique identifier.
|
|
@@ -17550,7 +17842,7 @@ interface TextureCache {
|
|
|
17550
17842
|
* @param ident A unique identifier
|
|
17551
17843
|
* @returns A #CoglHandle to a texture, with an added reference. %NULL if no image was found.
|
|
17552
17844
|
*/
|
|
17553
|
-
get_meta_cogl_texture(uri: string
|
|
17845
|
+
get_meta_cogl_texture(uri: string, ident: any): Cogl.Handle
|
|
17554
17846
|
/**
|
|
17555
17847
|
* Create a new ClutterTexture using the previously added image associated
|
|
17556
17848
|
* with the given unique identifier.
|
|
@@ -17560,7 +17852,7 @@ interface TextureCache {
|
|
|
17560
17852
|
* @param ident A unique identifier
|
|
17561
17853
|
* @returns A newly allocated #ClutterTexture, or %NULL if no image was found
|
|
17562
17854
|
*/
|
|
17563
|
-
get_meta_texture(uri: string
|
|
17855
|
+
get_meta_texture(uri: string, ident: any): Clutter.Texture
|
|
17564
17856
|
/**
|
|
17565
17857
|
* Returns the number of items in the texture cache
|
|
17566
17858
|
* @returns the current size of the cache
|
|
@@ -17574,7 +17866,7 @@ interface TextureCache {
|
|
|
17574
17866
|
* @param uri A URI or path to a image file
|
|
17575
17867
|
* @returns a newly created ClutterTexture
|
|
17576
17868
|
*/
|
|
17577
|
-
get_texture(uri: string
|
|
17869
|
+
get_texture(uri: string): Clutter.Texture
|
|
17578
17870
|
/**
|
|
17579
17871
|
* Inserts a texture into the texture cache. This can be useful if you
|
|
17580
17872
|
* want to cache a texture from a custom or unhandled URI type, or you
|
|
@@ -17585,7 +17877,7 @@ interface TextureCache {
|
|
|
17585
17877
|
* @param uri A URI or local file path
|
|
17586
17878
|
* @param texture A #CoglHandle to a texture
|
|
17587
17879
|
*/
|
|
17588
|
-
insert(uri: string
|
|
17880
|
+
insert(uri: string, texture: Cogl.Handle): void
|
|
17589
17881
|
/**
|
|
17590
17882
|
* Inserts a texture that's associated with a URI into the cache.
|
|
17591
17883
|
* If the metadata already exists for this URI, it will be replaced.
|
|
@@ -17597,13 +17889,13 @@ interface TextureCache {
|
|
|
17597
17889
|
* @param texture A #CoglHandle to a texture
|
|
17598
17890
|
* @param destroy_func An optional destruction function for `ident`
|
|
17599
17891
|
*/
|
|
17600
|
-
insert_meta(uri: string
|
|
17601
|
-
load_cache(filename: string
|
|
17892
|
+
insert_meta(uri: string, ident: any, texture: Cogl.Handle, destroy_func: GLib.DestroyNotify): void
|
|
17893
|
+
load_cache(filename: string): void
|
|
17602
17894
|
|
|
17603
17895
|
// Own virtual methods of Mx-1.0.Mx.TextureCache
|
|
17604
17896
|
|
|
17605
17897
|
vfunc_error_loading(error: GLib.Error): void
|
|
17606
|
-
vfunc_loaded(uri: string
|
|
17898
|
+
vfunc_loaded(uri: string, texture: Clutter.Texture): void
|
|
17607
17899
|
|
|
17608
17900
|
// Class property signals of Mx-1.0.Mx.TextureCache
|
|
17609
17901
|
|
|
@@ -17650,6 +17942,7 @@ module TextureFrame {
|
|
|
17650
17942
|
parent_texture?: Clutter.Texture | null
|
|
17651
17943
|
right?: number | null
|
|
17652
17944
|
top?: number | null
|
|
17945
|
+
parentTexture?: Clutter.Texture | null
|
|
17653
17946
|
}
|
|
17654
17947
|
|
|
17655
17948
|
}
|
|
@@ -17661,6 +17954,7 @@ interface TextureFrame extends Atk.ImplementorIface, Clutter.Animatable, Clutter
|
|
|
17661
17954
|
bottom: number
|
|
17662
17955
|
left: number
|
|
17663
17956
|
parent_texture: Clutter.Texture
|
|
17957
|
+
parentTexture: Clutter.Texture
|
|
17664
17958
|
right: number
|
|
17665
17959
|
top: number
|
|
17666
17960
|
|
|
@@ -18061,7 +18355,7 @@ interface Toggle extends Atk.ImplementorIface, Clutter.Animatable, Clutter.Conta
|
|
|
18061
18355
|
* into `value`.
|
|
18062
18356
|
* @param property_name the name of the property
|
|
18063
18357
|
*/
|
|
18064
|
-
get_property(property_name: string
|
|
18358
|
+
get_property(property_name: string): /* value */ any
|
|
18065
18359
|
|
|
18066
18360
|
// Overloads of get_property
|
|
18067
18361
|
|
|
@@ -18085,7 +18379,7 @@ interface Toggle extends Atk.ImplementorIface, Clutter.Animatable, Clutter.Conta
|
|
|
18085
18379
|
* @param property_name the name of the property to get
|
|
18086
18380
|
* @param value return location for the property value
|
|
18087
18381
|
*/
|
|
18088
|
-
get_property(property_name: string
|
|
18382
|
+
get_property(property_name: string, value: any): void
|
|
18089
18383
|
/**
|
|
18090
18384
|
* Gets a property of an object.
|
|
18091
18385
|
*
|
|
@@ -18106,7 +18400,7 @@ interface Toggle extends Atk.ImplementorIface, Clutter.Animatable, Clutter.Conta
|
|
|
18106
18400
|
* @param property_name the name of the property to get
|
|
18107
18401
|
* @param value return location for the property value
|
|
18108
18402
|
*/
|
|
18109
|
-
get_property(property_name: string
|
|
18403
|
+
get_property(property_name: string, value: any): void
|
|
18110
18404
|
|
|
18111
18405
|
// Class property signals of Mx-1.0.Mx.Toggle
|
|
18112
18406
|
|
|
@@ -18425,6 +18719,7 @@ module Toolbar {
|
|
|
18425
18719
|
// Own constructor properties of Mx-1.0.Mx.Toolbar
|
|
18426
18720
|
|
|
18427
18721
|
has_close_button?: boolean | null
|
|
18722
|
+
hasCloseButton?: boolean | null
|
|
18428
18723
|
}
|
|
18429
18724
|
|
|
18430
18725
|
}
|
|
@@ -18434,11 +18729,14 @@ interface Toolbar extends Atk.ImplementorIface, Clutter.Animatable, Clutter.Cont
|
|
|
18434
18729
|
// Own properties of Mx-1.0.Mx.Toolbar
|
|
18435
18730
|
|
|
18436
18731
|
has_close_button: boolean
|
|
18732
|
+
hasCloseButton: boolean
|
|
18437
18733
|
|
|
18438
18734
|
// Conflicting properties
|
|
18439
18735
|
|
|
18440
18736
|
x_align: any
|
|
18737
|
+
xAlign: any
|
|
18441
18738
|
y_align: any
|
|
18739
|
+
yAlign: any
|
|
18442
18740
|
|
|
18443
18741
|
// Own fields of Mx-1.0.Mx.Toolbar
|
|
18444
18742
|
|
|
@@ -18465,7 +18763,7 @@ interface Toolbar extends Atk.ImplementorIface, Clutter.Animatable, Clutter.Cont
|
|
|
18465
18763
|
* into `value`.
|
|
18466
18764
|
* @param property_name the name of the property
|
|
18467
18765
|
*/
|
|
18468
|
-
get_property(property_name: string
|
|
18766
|
+
get_property(property_name: string): /* value */ any
|
|
18469
18767
|
|
|
18470
18768
|
// Overloads of get_property
|
|
18471
18769
|
|
|
@@ -18489,7 +18787,7 @@ interface Toolbar extends Atk.ImplementorIface, Clutter.Animatable, Clutter.Cont
|
|
|
18489
18787
|
* @param property_name the name of the property to get
|
|
18490
18788
|
* @param value return location for the property value
|
|
18491
18789
|
*/
|
|
18492
|
-
get_property(property_name: string
|
|
18790
|
+
get_property(property_name: string, value: any): void
|
|
18493
18791
|
/**
|
|
18494
18792
|
* Gets a property of an object.
|
|
18495
18793
|
*
|
|
@@ -18510,7 +18808,7 @@ interface Toolbar extends Atk.ImplementorIface, Clutter.Animatable, Clutter.Cont
|
|
|
18510
18808
|
* @param property_name the name of the property to get
|
|
18511
18809
|
* @param value return location for the property value
|
|
18512
18810
|
*/
|
|
18513
|
-
get_property(property_name: string
|
|
18811
|
+
get_property(property_name: string, value: any): void
|
|
18514
18812
|
|
|
18515
18813
|
// Own virtual methods of Mx-1.0.Mx.Toolbar
|
|
18516
18814
|
|
|
@@ -18851,6 +19149,7 @@ module Tooltip {
|
|
|
18851
19149
|
|
|
18852
19150
|
text?: string | null
|
|
18853
19151
|
tip_area?: Clutter.Geometry | null
|
|
19152
|
+
tipArea?: Clutter.Geometry | null
|
|
18854
19153
|
}
|
|
18855
19154
|
|
|
18856
19155
|
}
|
|
@@ -18861,6 +19160,7 @@ interface Tooltip extends Atk.ImplementorIface, Clutter.Animatable, Clutter.Cont
|
|
|
18861
19160
|
|
|
18862
19161
|
text: string | null
|
|
18863
19162
|
tip_area: Clutter.Geometry
|
|
19163
|
+
tipArea: Clutter.Geometry
|
|
18864
19164
|
|
|
18865
19165
|
// Owm methods of Mx-1.0.Mx.Tooltip
|
|
18866
19166
|
|
|
@@ -18868,7 +19168,7 @@ interface Tooltip extends Atk.ImplementorIface, Clutter.Animatable, Clutter.Cont
|
|
|
18868
19168
|
* Get the text displayed on the tooltip
|
|
18869
19169
|
* @returns the text for the tooltip. This must not be freed by the application
|
|
18870
19170
|
*/
|
|
18871
|
-
get_text(): string
|
|
19171
|
+
get_text(): string
|
|
18872
19172
|
/**
|
|
18873
19173
|
* Retrieve the area on the stage that the tooltip currently applies to
|
|
18874
19174
|
* @returns the #ClutterGeometry, owned by the tooltip which must not be freed by the application.
|
|
@@ -18882,7 +19182,7 @@ interface Tooltip extends Atk.ImplementorIface, Clutter.Animatable, Clutter.Cont
|
|
|
18882
19182
|
* Sets the text displayed on the tooltip
|
|
18883
19183
|
* @param text text to set the label to
|
|
18884
19184
|
*/
|
|
18885
|
-
set_text(text: string
|
|
19185
|
+
set_text(text: string): void
|
|
18886
19186
|
/**
|
|
18887
19187
|
* Set the area on the stage that the tooltip applies to.
|
|
18888
19188
|
* @param area A #ClutterGeometry
|
|
@@ -18907,7 +19207,7 @@ interface Tooltip extends Atk.ImplementorIface, Clutter.Animatable, Clutter.Cont
|
|
|
18907
19207
|
* into `value`.
|
|
18908
19208
|
* @param property_name the name of the property
|
|
18909
19209
|
*/
|
|
18910
|
-
get_property(property_name: string
|
|
19210
|
+
get_property(property_name: string): /* value */ any
|
|
18911
19211
|
|
|
18912
19212
|
// Overloads of get_property
|
|
18913
19213
|
|
|
@@ -18931,7 +19231,7 @@ interface Tooltip extends Atk.ImplementorIface, Clutter.Animatable, Clutter.Cont
|
|
|
18931
19231
|
* @param property_name the name of the property to get
|
|
18932
19232
|
* @param value return location for the property value
|
|
18933
19233
|
*/
|
|
18934
|
-
get_property(property_name: string
|
|
19234
|
+
get_property(property_name: string, value: any): void
|
|
18935
19235
|
/**
|
|
18936
19236
|
* Gets a property of an object.
|
|
18937
19237
|
*
|
|
@@ -18952,7 +19252,7 @@ interface Tooltip extends Atk.ImplementorIface, Clutter.Animatable, Clutter.Cont
|
|
|
18952
19252
|
* @param property_name the name of the property to get
|
|
18953
19253
|
* @param value return location for the property value
|
|
18954
19254
|
*/
|
|
18955
|
-
get_property(property_name: string
|
|
19255
|
+
get_property(property_name: string, value: any): void
|
|
18956
19256
|
|
|
18957
19257
|
// Class property signals of Mx-1.0.Mx.Tooltip
|
|
18958
19258
|
|
|
@@ -19273,6 +19573,10 @@ module Viewport {
|
|
|
19273
19573
|
x_origin?: number | null
|
|
19274
19574
|
y_origin?: number | null
|
|
19275
19575
|
z_origin?: number | null
|
|
19576
|
+
syncAdjustments?: boolean | null
|
|
19577
|
+
xOrigin?: number | null
|
|
19578
|
+
yOrigin?: number | null
|
|
19579
|
+
zOrigin?: number | null
|
|
19276
19580
|
}
|
|
19277
19581
|
|
|
19278
19582
|
}
|
|
@@ -19282,14 +19586,20 @@ interface Viewport extends Atk.ImplementorIface, Clutter.Animatable, Clutter.Con
|
|
|
19282
19586
|
// Own properties of Mx-1.0.Mx.Viewport
|
|
19283
19587
|
|
|
19284
19588
|
sync_adjustments: boolean
|
|
19589
|
+
syncAdjustments: boolean
|
|
19285
19590
|
x_origin: number
|
|
19591
|
+
xOrigin: number
|
|
19286
19592
|
y_origin: number
|
|
19593
|
+
yOrigin: number
|
|
19287
19594
|
z_origin: number
|
|
19595
|
+
zOrigin: number
|
|
19288
19596
|
|
|
19289
19597
|
// Conflicting properties
|
|
19290
19598
|
|
|
19291
19599
|
x_align: any
|
|
19600
|
+
xAlign: any
|
|
19292
19601
|
y_align: any
|
|
19602
|
+
yAlign: any
|
|
19293
19603
|
|
|
19294
19604
|
// Owm methods of Mx-1.0.Mx.Viewport
|
|
19295
19605
|
|
|
@@ -19305,7 +19615,7 @@ interface Viewport extends Atk.ImplementorIface, Clutter.Animatable, Clutter.Con
|
|
|
19305
19615
|
* into `value`.
|
|
19306
19616
|
* @param property_name the name of the property
|
|
19307
19617
|
*/
|
|
19308
|
-
get_property(property_name: string
|
|
19618
|
+
get_property(property_name: string): /* value */ any
|
|
19309
19619
|
|
|
19310
19620
|
// Overloads of get_property
|
|
19311
19621
|
|
|
@@ -19329,7 +19639,7 @@ interface Viewport extends Atk.ImplementorIface, Clutter.Animatable, Clutter.Con
|
|
|
19329
19639
|
* @param property_name the name of the property to get
|
|
19330
19640
|
* @param value return location for the property value
|
|
19331
19641
|
*/
|
|
19332
|
-
get_property(property_name: string
|
|
19642
|
+
get_property(property_name: string, value: any): void
|
|
19333
19643
|
/**
|
|
19334
19644
|
* Gets a property of an object.
|
|
19335
19645
|
*
|
|
@@ -19350,7 +19660,7 @@ interface Viewport extends Atk.ImplementorIface, Clutter.Animatable, Clutter.Con
|
|
|
19350
19660
|
* @param property_name the name of the property to get
|
|
19351
19661
|
* @param value return location for the property value
|
|
19352
19662
|
*/
|
|
19353
|
-
get_property(property_name: string
|
|
19663
|
+
get_property(property_name: string, value: any): void
|
|
19354
19664
|
|
|
19355
19665
|
// Class property signals of Mx-1.0.Mx.Viewport
|
|
19356
19666
|
|
|
@@ -19702,6 +20012,11 @@ module Widget {
|
|
|
19702
20012
|
* text displayed on the tooltip
|
|
19703
20013
|
*/
|
|
19704
20014
|
tooltip_text?: string | null
|
|
20015
|
+
tooltipDelay?: number | null
|
|
20016
|
+
/**
|
|
20017
|
+
* text displayed on the tooltip
|
|
20018
|
+
*/
|
|
20019
|
+
tooltipText?: string | null
|
|
19705
20020
|
}
|
|
19706
20021
|
|
|
19707
20022
|
}
|
|
@@ -19716,10 +20031,15 @@ interface Widget extends Atk.ImplementorIface, Clutter.Animatable, Clutter.Conta
|
|
|
19716
20031
|
*/
|
|
19717
20032
|
menu: Menu
|
|
19718
20033
|
tooltip_delay: number
|
|
20034
|
+
tooltipDelay: number
|
|
19719
20035
|
/**
|
|
19720
20036
|
* text displayed on the tooltip
|
|
19721
20037
|
*/
|
|
19722
20038
|
tooltip_text: string | null
|
|
20039
|
+
/**
|
|
20040
|
+
* text displayed on the tooltip
|
|
20041
|
+
*/
|
|
20042
|
+
tooltipText: string | null
|
|
19723
20043
|
|
|
19724
20044
|
// Owm methods of Mx-1.0.Mx.Widget
|
|
19725
20045
|
|
|
@@ -19774,7 +20094,7 @@ interface Widget extends Atk.ImplementorIface, Clutter.Animatable, Clutter.Conta
|
|
|
19774
20094
|
* Get the current tooltip string
|
|
19775
20095
|
* @returns The current tooltip string, owned by the #MxWidget
|
|
19776
20096
|
*/
|
|
19777
|
-
get_tooltip_text(): string
|
|
20097
|
+
get_tooltip_text(): string
|
|
19778
20098
|
/**
|
|
19779
20099
|
* Hide the tooltip for `widget`
|
|
19780
20100
|
*/
|
|
@@ -19821,7 +20141,7 @@ interface Widget extends Atk.ImplementorIface, Clutter.Animatable, Clutter.Conta
|
|
|
19821
20141
|
* %FALSE.
|
|
19822
20142
|
* @param text text to set as the tooltip
|
|
19823
20143
|
*/
|
|
19824
|
-
set_tooltip_text(text: string
|
|
20144
|
+
set_tooltip_text(text: string): void
|
|
19825
20145
|
/**
|
|
19826
20146
|
* Show the tooltip for `widget`
|
|
19827
20147
|
*/
|
|
@@ -19834,7 +20154,7 @@ interface Widget extends Atk.ImplementorIface, Clutter.Animatable, Clutter.Conta
|
|
|
19834
20154
|
* into `value`.
|
|
19835
20155
|
* @param property_name the name of the property
|
|
19836
20156
|
*/
|
|
19837
|
-
get_property(property_name: string
|
|
20157
|
+
get_property(property_name: string): /* value */ any
|
|
19838
20158
|
|
|
19839
20159
|
// Overloads of get_property
|
|
19840
20160
|
|
|
@@ -19858,7 +20178,7 @@ interface Widget extends Atk.ImplementorIface, Clutter.Animatable, Clutter.Conta
|
|
|
19858
20178
|
* @param property_name the name of the property to get
|
|
19859
20179
|
* @param value return location for the property value
|
|
19860
20180
|
*/
|
|
19861
|
-
get_property(property_name: string
|
|
20181
|
+
get_property(property_name: string, value: any): void
|
|
19862
20182
|
/**
|
|
19863
20183
|
* Gets a property of an object.
|
|
19864
20184
|
*
|
|
@@ -19879,7 +20199,7 @@ interface Widget extends Atk.ImplementorIface, Clutter.Animatable, Clutter.Conta
|
|
|
19879
20199
|
* @param property_name the name of the property to get
|
|
19880
20200
|
* @param value return location for the property value
|
|
19881
20201
|
*/
|
|
19882
|
-
get_property(property_name: string
|
|
20202
|
+
get_property(property_name: string, value: any): void
|
|
19883
20203
|
|
|
19884
20204
|
// Own virtual methods of Mx-1.0.Mx.Widget
|
|
19885
20205
|
|
|
@@ -20221,6 +20541,12 @@ module Window {
|
|
|
20221
20541
|
title?: string | null
|
|
20222
20542
|
toolbar?: Toolbar | null
|
|
20223
20543
|
window_rotation?: WindowRotation | null
|
|
20544
|
+
clutterStage?: Clutter.Stage | null
|
|
20545
|
+
hasToolbar?: boolean | null
|
|
20546
|
+
iconCoglTexture?: string | null
|
|
20547
|
+
iconName?: string | null
|
|
20548
|
+
smallScreen?: boolean | null
|
|
20549
|
+
windowRotation?: WindowRotation | null
|
|
20224
20550
|
}
|
|
20225
20551
|
|
|
20226
20552
|
}
|
|
@@ -20231,16 +20557,24 @@ interface Window {
|
|
|
20231
20557
|
|
|
20232
20558
|
child: Clutter.Actor
|
|
20233
20559
|
readonly clutter_stage: Clutter.Stage
|
|
20560
|
+
readonly clutterStage: Clutter.Stage
|
|
20234
20561
|
fullscreen: boolean
|
|
20235
20562
|
has_toolbar: boolean
|
|
20563
|
+
hasToolbar: boolean
|
|
20236
20564
|
icon_cogl_texture: string | null
|
|
20565
|
+
iconCoglTexture: string | null
|
|
20237
20566
|
icon_name: string | null
|
|
20567
|
+
iconName: string | null
|
|
20238
20568
|
small_screen: boolean
|
|
20569
|
+
smallScreen: boolean
|
|
20239
20570
|
title: string | null
|
|
20240
20571
|
toolbar: Toolbar
|
|
20241
20572
|
window_rotation: WindowRotation
|
|
20573
|
+
windowRotation: WindowRotation
|
|
20242
20574
|
readonly window_rotation_angle: number
|
|
20575
|
+
readonly windowRotationAngle: number
|
|
20243
20576
|
readonly window_rotation_timeline: Clutter.Timeline
|
|
20577
|
+
readonly windowRotationTimeline: Clutter.Timeline
|
|
20244
20578
|
|
|
20245
20579
|
// Own fields of Mx-1.0.Mx.Window
|
|
20246
20580
|
|
|
@@ -20275,7 +20609,7 @@ interface Window {
|
|
|
20275
20609
|
* set, or the icon was set with mx_window_set_icon_from_cogl_texture().
|
|
20276
20610
|
* @returns The window icon name, or %NULL
|
|
20277
20611
|
*/
|
|
20278
|
-
get_icon_name(): string
|
|
20612
|
+
get_icon_name(): string
|
|
20279
20613
|
/**
|
|
20280
20614
|
* Determines if the window is in small-screen mode.
|
|
20281
20615
|
* See mx_window_set_small_screen().
|
|
@@ -20286,7 +20620,7 @@ interface Window {
|
|
|
20286
20620
|
* Retrieves the title used for the window.
|
|
20287
20621
|
* @returns The title used for the window
|
|
20288
20622
|
*/
|
|
20289
|
-
get_title(): string
|
|
20623
|
+
get_title(): string
|
|
20290
20624
|
/**
|
|
20291
20625
|
* Retrieves the toolbar associated with the window.
|
|
20292
20626
|
* @returns A #MxToolbar
|
|
@@ -20364,7 +20698,7 @@ interface Window {
|
|
|
20364
20698
|
* window-system specific.
|
|
20365
20699
|
* @param title A string to use for the window title name
|
|
20366
20700
|
*/
|
|
20367
|
-
set_title(title: string
|
|
20701
|
+
set_title(title: string): void
|
|
20368
20702
|
/**
|
|
20369
20703
|
* Sets the toolbar associated with the window.
|
|
20370
20704
|
* @param toolbar
|
|
@@ -20653,7 +20987,7 @@ class BorderImage {
|
|
|
20653
20987
|
|
|
20654
20988
|
// Constructors of Mx-1.0.Mx.BorderImage
|
|
20655
20989
|
|
|
20656
|
-
static set_from_string(value: any, str: string
|
|
20990
|
+
static set_from_string(value: any, str: string, filename: string): void
|
|
20657
20991
|
}
|
|
20658
20992
|
|
|
20659
20993
|
interface BoxLayoutChildClass {
|
|
@@ -21694,10 +22028,10 @@ interface StylableIface {
|
|
|
21694
22028
|
|
|
21695
22029
|
get_style: (stylable: Stylable) => Style
|
|
21696
22030
|
set_style: (stylable: Stylable, style: Style) => void
|
|
21697
|
-
get_style_class: (stylable: Stylable) => string
|
|
21698
|
-
set_style_class: (stylable: Stylable, style_class: string
|
|
21699
|
-
get_style_pseudo_class: (stylable: Stylable) => string
|
|
21700
|
-
set_style_pseudo_class: (stylable: Stylable, pseudo_class: string
|
|
22031
|
+
get_style_class: (stylable: Stylable) => string
|
|
22032
|
+
set_style_class: (stylable: Stylable, style_class: string) => void
|
|
22033
|
+
get_style_pseudo_class: (stylable: Stylable) => string
|
|
22034
|
+
set_style_pseudo_class: (stylable: Stylable, pseudo_class: string) => void
|
|
21701
22035
|
style_changed: (stylable: Stylable, flags: StyleChangedFlags) => void
|
|
21702
22036
|
}
|
|
21703
22037
|
|
|
@@ -21815,7 +22149,7 @@ interface TextureCacheClass {
|
|
|
21815
22149
|
// Own fields of Mx-1.0.Mx.TextureCacheClass
|
|
21816
22150
|
|
|
21817
22151
|
parent_class: GObject.ObjectClass
|
|
21818
|
-
loaded: (self: TextureCache, uri: string
|
|
22152
|
+
loaded: (self: TextureCache, uri: string, texture: Clutter.Texture) => void
|
|
21819
22153
|
error_loading: (self: TextureCache, error: GLib.Error) => void
|
|
21820
22154
|
}
|
|
21821
22155
|
|