@girs/mx-2.0 1.99.4-3.2.5 → 1.99.4-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-2.0.d.cts +411 -102
- package/mx-2.0.d.ts +411 -102
- package/package.json +19 -19
package/mx-2.0.d.ts
CHANGED
|
@@ -289,10 +289,10 @@ const VERSION_HEX: number
|
|
|
289
289
|
* The full version of the Mx library, in string form (suited for
|
|
290
290
|
* string concatenation)
|
|
291
291
|
*/
|
|
292
|
-
const VERSION_S: string
|
|
292
|
+
const VERSION_S: string
|
|
293
293
|
function actor_box_clamp_to_pixels(box: Clutter.ActorBox): void
|
|
294
294
|
function allocate_align_fill(child: Clutter.Actor, childbox: Clutter.ActorBox, x_alignment: Align, y_alignment: Align, x_fill: boolean, y_fill: boolean): void
|
|
295
|
-
function border_image_set_from_string(value: any, str: string
|
|
295
|
+
function border_image_set_from_string(value: any, str: string, filename: string): void
|
|
296
296
|
/**
|
|
297
297
|
* Transforms a focus direction to a focus hint. This is a convenience
|
|
298
298
|
* function for actors that implement the #MxFocusable interface, to
|
|
@@ -310,7 +310,7 @@ function border_image_set_from_string(value: any, str: string | null, filename:
|
|
|
310
310
|
* @returns A #MxFocusHint
|
|
311
311
|
*/
|
|
312
312
|
function focus_hint_from_direction(direction: FocusDirection): FocusHint
|
|
313
|
-
function font_weight_set_from_string(value: any, str: string
|
|
313
|
+
function font_weight_set_from_string(value: any, str: string): void
|
|
314
314
|
function image_error_quark(): GLib.Quark
|
|
315
315
|
/**
|
|
316
316
|
* Initializes internationalization support for Mx. If MxApplication is
|
|
@@ -341,7 +341,7 @@ interface ActionCallbackFunc {
|
|
|
341
341
|
* @param text text from the clipboard
|
|
342
342
|
*/
|
|
343
343
|
interface ClipboardCallbackFunc {
|
|
344
|
-
(clipboard: Clipboard, text: string
|
|
344
|
+
(clipboard: Clipboard, text: string): void
|
|
345
345
|
}
|
|
346
346
|
module Draggable {
|
|
347
347
|
|
|
@@ -379,6 +379,9 @@ module Draggable {
|
|
|
379
379
|
drag_actor?: Clutter.Actor | null
|
|
380
380
|
drag_enabled?: boolean | null
|
|
381
381
|
drag_threshold?: number | null
|
|
382
|
+
dragActor?: Clutter.Actor | null
|
|
383
|
+
dragEnabled?: boolean | null
|
|
384
|
+
dragThreshold?: number | null
|
|
382
385
|
}
|
|
383
386
|
|
|
384
387
|
}
|
|
@@ -389,8 +392,11 @@ interface Draggable extends Clutter.Actor {
|
|
|
389
392
|
|
|
390
393
|
axis: DragAxis
|
|
391
394
|
drag_actor: Clutter.Actor
|
|
395
|
+
dragActor: Clutter.Actor
|
|
392
396
|
drag_enabled: boolean
|
|
397
|
+
dragEnabled: boolean
|
|
393
398
|
drag_threshold: number
|
|
399
|
+
dragThreshold: number
|
|
394
400
|
|
|
395
401
|
// Owm methods of Mx-2.0.Mx.Draggable
|
|
396
402
|
|
|
@@ -744,6 +750,7 @@ module Droppable {
|
|
|
744
750
|
// Own constructor properties of Mx-2.0.Mx.Droppable
|
|
745
751
|
|
|
746
752
|
drop_enabled?: boolean | null
|
|
753
|
+
dropEnabled?: boolean | null
|
|
747
754
|
}
|
|
748
755
|
|
|
749
756
|
}
|
|
@@ -753,6 +760,7 @@ interface Droppable extends Clutter.Actor {
|
|
|
753
760
|
// Own properties of Mx-2.0.Mx.Droppable
|
|
754
761
|
|
|
755
762
|
drop_enabled: boolean
|
|
763
|
+
dropEnabled: boolean
|
|
756
764
|
|
|
757
765
|
// Owm methods of Mx-2.0.Mx.Droppable
|
|
758
766
|
|
|
@@ -1189,6 +1197,8 @@ module Scrollable {
|
|
|
1189
1197
|
|
|
1190
1198
|
horizontal_adjustment?: Adjustment | null
|
|
1191
1199
|
vertical_adjustment?: Adjustment | null
|
|
1200
|
+
horizontalAdjustment?: Adjustment | null
|
|
1201
|
+
verticalAdjustment?: Adjustment | null
|
|
1192
1202
|
}
|
|
1193
1203
|
|
|
1194
1204
|
}
|
|
@@ -1198,7 +1208,9 @@ interface Scrollable {
|
|
|
1198
1208
|
// Own properties of Mx-2.0.Mx.Scrollable
|
|
1199
1209
|
|
|
1200
1210
|
horizontal_adjustment: Adjustment
|
|
1211
|
+
horizontalAdjustment: Adjustment
|
|
1201
1212
|
vertical_adjustment: Adjustment
|
|
1213
|
+
verticalAdjustment: Adjustment
|
|
1202
1214
|
|
|
1203
1215
|
// Owm methods of Mx-2.0.Mx.Scrollable
|
|
1204
1216
|
|
|
@@ -1271,6 +1283,8 @@ module Stylable {
|
|
|
1271
1283
|
style?: Style | null
|
|
1272
1284
|
style_class?: string | null
|
|
1273
1285
|
style_pseudo_class?: string | null
|
|
1286
|
+
styleClass?: string | null
|
|
1287
|
+
stylePseudoClass?: string | null
|
|
1274
1288
|
}
|
|
1275
1289
|
|
|
1276
1290
|
}
|
|
@@ -1281,7 +1295,9 @@ interface Stylable {
|
|
|
1281
1295
|
|
|
1282
1296
|
style: Style
|
|
1283
1297
|
style_class: string | null
|
|
1298
|
+
styleClass: string | null
|
|
1284
1299
|
style_pseudo_class: string | null
|
|
1300
|
+
stylePseudoClass: string | null
|
|
1285
1301
|
|
|
1286
1302
|
// Owm methods of Mx-2.0.Mx.Stylable
|
|
1287
1303
|
|
|
@@ -1294,14 +1310,14 @@ interface Stylable {
|
|
|
1294
1310
|
* @param property_name the name of the property to find
|
|
1295
1311
|
* @returns a #GParamSpec for the given property, or %NULL if no property with that name was found
|
|
1296
1312
|
*/
|
|
1297
|
-
find_property(property_name: string
|
|
1313
|
+
find_property(property_name: string): GObject.ParamSpec
|
|
1298
1314
|
/**
|
|
1299
1315
|
* Query `stylable` for the default value of property `property_name` and
|
|
1300
1316
|
* fill `value_out` with the result.
|
|
1301
1317
|
* @param property_name name of the property to query
|
|
1302
1318
|
* @returns %TRUE if property @property_name exists and the default value has been returned.
|
|
1303
1319
|
*/
|
|
1304
|
-
get_default_value(property_name: string
|
|
1320
|
+
get_default_value(property_name: string): [ /* returnType */ boolean, /* value_out */ any ]
|
|
1305
1321
|
/**
|
|
1306
1322
|
* Retrieves the #MxStyle used by `stylable`. This function does not
|
|
1307
1323
|
* alter the reference count of the returned object.
|
|
@@ -1312,19 +1328,19 @@ interface Stylable {
|
|
|
1312
1328
|
* Get the current style class name
|
|
1313
1329
|
* @returns the class name string. The string is owned by the #MxWidget and should not be modified or freed.
|
|
1314
1330
|
*/
|
|
1315
|
-
get_style_class(): string
|
|
1331
|
+
get_style_class(): string
|
|
1316
1332
|
/**
|
|
1317
1333
|
* Retrieves the value of `property_name` for `stylable,` and puts it
|
|
1318
1334
|
* into `value`.
|
|
1319
1335
|
* @param property_name the name of the property
|
|
1320
1336
|
*/
|
|
1321
|
-
get_style_property(property_name: string
|
|
1337
|
+
get_style_property(property_name: string): /* value */ any
|
|
1322
1338
|
/**
|
|
1323
1339
|
* Get the current style pseudo class. This can contain multiple pseudo class
|
|
1324
1340
|
* names, separated by ':'.
|
|
1325
1341
|
* @returns the pseudo class string. The string is owned by the #MxWidget and should not be modified or freed.
|
|
1326
1342
|
*/
|
|
1327
|
-
get_style_pseudo_class(): string
|
|
1343
|
+
get_style_pseudo_class(): string
|
|
1328
1344
|
/**
|
|
1329
1345
|
* Retrieves all the #GParamSpec<!-- -->s installed by `stylable`.
|
|
1330
1346
|
* @returns an array of #GParamSpec<!-- -->s. Free it with g_free() when done.
|
|
@@ -1344,13 +1360,13 @@ interface Stylable {
|
|
|
1344
1360
|
* Set the style class name
|
|
1345
1361
|
* @param style_class a new style class string
|
|
1346
1362
|
*/
|
|
1347
|
-
set_style_class(style_class: string
|
|
1363
|
+
set_style_class(style_class: string): void
|
|
1348
1364
|
/**
|
|
1349
1365
|
* Set the style pseudo class. The string can contain multiple pseudo class
|
|
1350
1366
|
* names, separated by ':'.
|
|
1351
1367
|
* @param pseudo_class a new pseudo class string
|
|
1352
1368
|
*/
|
|
1353
|
-
set_style_pseudo_class(pseudo_class: string
|
|
1369
|
+
set_style_pseudo_class(pseudo_class: string): void
|
|
1354
1370
|
/**
|
|
1355
1371
|
* Emit the "style-changed" signal on `stylable` to notify it that one or more
|
|
1356
1372
|
* of the style properties has changed.
|
|
@@ -1366,20 +1382,20 @@ interface Stylable {
|
|
|
1366
1382
|
* #MxStylable:style-pseudo-class property.
|
|
1367
1383
|
* @param new_class A pseudo-class name to add
|
|
1368
1384
|
*/
|
|
1369
|
-
style_pseudo_class_add(new_class: string
|
|
1385
|
+
style_pseudo_class_add(new_class: string): void
|
|
1370
1386
|
/**
|
|
1371
1387
|
* Check if the given pseudo-class name is contained in the list of
|
|
1372
1388
|
* set pseudo classes on this #MxStylable object.
|
|
1373
1389
|
* @param pseudo_class A pseudo-class name
|
|
1374
1390
|
* @returns %TRUE if the given pseudo-class is set, %FALSE otherwise
|
|
1375
1391
|
*/
|
|
1376
|
-
style_pseudo_class_contains(pseudo_class: string
|
|
1392
|
+
style_pseudo_class_contains(pseudo_class: string): boolean
|
|
1377
1393
|
/**
|
|
1378
1394
|
* Remove the specified pseudo class name from the list of pseudo classes
|
|
1379
1395
|
* contained in the #MxStylable:style-pseudo-class property.
|
|
1380
1396
|
* @param remove_class A pseudo class name to remove
|
|
1381
1397
|
*/
|
|
1382
|
-
style_pseudo_class_remove(remove_class: string
|
|
1398
|
+
style_pseudo_class_remove(remove_class: string): void
|
|
1383
1399
|
|
|
1384
1400
|
// Own virtual methods of Mx-2.0.Mx.Stylable
|
|
1385
1401
|
|
|
@@ -1395,14 +1411,14 @@ interface Stylable {
|
|
|
1395
1411
|
* @virtual
|
|
1396
1412
|
* @returns the class name string. The string is owned by the #MxWidget and should not be modified or freed.
|
|
1397
1413
|
*/
|
|
1398
|
-
vfunc_get_style_class(): string
|
|
1414
|
+
vfunc_get_style_class(): string
|
|
1399
1415
|
/**
|
|
1400
1416
|
* Get the current style pseudo class. This can contain multiple pseudo class
|
|
1401
1417
|
* names, separated by ':'.
|
|
1402
1418
|
* @virtual
|
|
1403
1419
|
* @returns the pseudo class string. The string is owned by the #MxWidget and should not be modified or freed.
|
|
1404
1420
|
*/
|
|
1405
|
-
vfunc_get_style_pseudo_class(): string
|
|
1421
|
+
vfunc_get_style_pseudo_class(): string
|
|
1406
1422
|
/**
|
|
1407
1423
|
* Sets `style` as the new #MxStyle to be used by `stylable`.
|
|
1408
1424
|
*
|
|
@@ -1419,14 +1435,14 @@ interface Stylable {
|
|
|
1419
1435
|
* @virtual
|
|
1420
1436
|
* @param style_class a new style class string
|
|
1421
1437
|
*/
|
|
1422
|
-
vfunc_set_style_class(style_class: string
|
|
1438
|
+
vfunc_set_style_class(style_class: string): void
|
|
1423
1439
|
/**
|
|
1424
1440
|
* Set the style pseudo class. The string can contain multiple pseudo class
|
|
1425
1441
|
* names, separated by ':'.
|
|
1426
1442
|
* @virtual
|
|
1427
1443
|
* @param pseudo_class a new pseudo class string
|
|
1428
1444
|
*/
|
|
1429
|
-
vfunc_set_style_pseudo_class(pseudo_class: string
|
|
1445
|
+
vfunc_set_style_pseudo_class(pseudo_class: string): void
|
|
1430
1446
|
/**
|
|
1431
1447
|
* Emit the "style-changed" signal on `stylable` to notify it that one or more
|
|
1432
1448
|
* of the style properties has changed.
|
|
@@ -1543,6 +1559,7 @@ module Action {
|
|
|
1543
1559
|
active?: boolean | null
|
|
1544
1560
|
display_name?: string | null
|
|
1545
1561
|
icon?: string | null
|
|
1562
|
+
displayName?: string | null
|
|
1546
1563
|
}
|
|
1547
1564
|
|
|
1548
1565
|
}
|
|
@@ -1553,6 +1570,7 @@ interface Action extends Gio.Action {
|
|
|
1553
1570
|
|
|
1554
1571
|
active: boolean
|
|
1555
1572
|
display_name: string | null
|
|
1573
|
+
displayName: string | null
|
|
1556
1574
|
icon: string | null
|
|
1557
1575
|
|
|
1558
1576
|
// Owm methods of Mx-2.0.Mx.Action
|
|
@@ -1566,17 +1584,17 @@ interface Action extends Gio.Action {
|
|
|
1566
1584
|
* Get the display name of the action
|
|
1567
1585
|
* @returns display-name of the action, owned by MxAction
|
|
1568
1586
|
*/
|
|
1569
|
-
get_display_name(): string
|
|
1587
|
+
get_display_name(): string
|
|
1570
1588
|
/**
|
|
1571
1589
|
* Get the icon of the action
|
|
1572
1590
|
* @returns icon of the action, owned by MxAction
|
|
1573
1591
|
*/
|
|
1574
|
-
get_icon(): string
|
|
1592
|
+
get_icon(): string
|
|
1575
1593
|
/**
|
|
1576
1594
|
* Get the name of the action
|
|
1577
1595
|
* @returns name of the action, owned by MxAction
|
|
1578
1596
|
*/
|
|
1579
|
-
get_name(): string
|
|
1597
|
+
get_name(): string
|
|
1580
1598
|
/**
|
|
1581
1599
|
* Set the value of the active property
|
|
1582
1600
|
* @param active the value to set
|
|
@@ -1586,17 +1604,17 @@ interface Action extends Gio.Action {
|
|
|
1586
1604
|
* Set the name of the action to display to the user
|
|
1587
1605
|
* @param name new display name to set
|
|
1588
1606
|
*/
|
|
1589
|
-
set_display_name(name: string
|
|
1607
|
+
set_display_name(name: string): void
|
|
1590
1608
|
/**
|
|
1591
1609
|
* The icon to be used in a visual representation of an action.
|
|
1592
1610
|
* @param name new icon to set
|
|
1593
1611
|
*/
|
|
1594
|
-
set_icon(name: string
|
|
1612
|
+
set_icon(name: string): void
|
|
1595
1613
|
/**
|
|
1596
1614
|
* Set the name of the action
|
|
1597
1615
|
* @param name new name to set
|
|
1598
1616
|
*/
|
|
1599
|
-
set_name(name: string
|
|
1617
|
+
set_name(name: string): void
|
|
1600
1618
|
|
|
1601
1619
|
// Own virtual methods of Mx-2.0.Mx.Action
|
|
1602
1620
|
|
|
@@ -1678,7 +1696,7 @@ class Action extends GObject.InitiallyUnowned {
|
|
|
1678
1696
|
* @param activated_cb callback to connect to the activated signal
|
|
1679
1697
|
* @returns a newly allocated #MxAction
|
|
1680
1698
|
*/
|
|
1681
|
-
static new_full(name: string
|
|
1699
|
+
static new_full(name: string, display_name: string, activated_cb: ActionCallbackFunc | null): Action
|
|
1682
1700
|
/**
|
|
1683
1701
|
* Creates a new stateful action.
|
|
1684
1702
|
*
|
|
@@ -1690,7 +1708,7 @@ class Action extends GObject.InitiallyUnowned {
|
|
|
1690
1708
|
* @param state the initial state of the action
|
|
1691
1709
|
* @returns a new #MxAction
|
|
1692
1710
|
*/
|
|
1693
|
-
static new_stateful(name: string
|
|
1711
|
+
static new_stateful(name: string, parameter_type: GLib.VariantType | null, state: GLib.Variant): Action
|
|
1694
1712
|
/**
|
|
1695
1713
|
* Creates a new action with a parameter.
|
|
1696
1714
|
*
|
|
@@ -1700,7 +1718,7 @@ class Action extends GObject.InitiallyUnowned {
|
|
|
1700
1718
|
* @param parameter_type the type of parameter to the activate function
|
|
1701
1719
|
* @returns a new #MxAction
|
|
1702
1720
|
*/
|
|
1703
|
-
static new_with_parameter(name: string
|
|
1721
|
+
static new_with_parameter(name: string, parameter_type?: GLib.VariantType | null): Action
|
|
1704
1722
|
_init(config?: Action.ConstructorProperties): void
|
|
1705
1723
|
}
|
|
1706
1724
|
|
|
@@ -1766,6 +1784,7 @@ module ActorManager {
|
|
|
1766
1784
|
|
|
1767
1785
|
stage?: Clutter.Stage | null
|
|
1768
1786
|
time_slice?: number | null
|
|
1787
|
+
timeSlice?: number | null
|
|
1769
1788
|
}
|
|
1770
1789
|
|
|
1771
1790
|
}
|
|
@@ -1775,8 +1794,10 @@ interface ActorManager {
|
|
|
1775
1794
|
// Own properties of Mx-2.0.Mx.ActorManager
|
|
1776
1795
|
|
|
1777
1796
|
readonly n_operations: number
|
|
1797
|
+
readonly nOperations: number
|
|
1778
1798
|
readonly stage: Clutter.Stage
|
|
1779
1799
|
time_slice: number
|
|
1800
|
+
timeSlice: number
|
|
1780
1801
|
|
|
1781
1802
|
// Own fields of Mx-2.0.Mx.ActorManager
|
|
1782
1803
|
|
|
@@ -2001,6 +2022,10 @@ module Adjustment {
|
|
|
2001
2022
|
step_increment?: number | null
|
|
2002
2023
|
upper?: number | null
|
|
2003
2024
|
value?: number | null
|
|
2025
|
+
clampValue?: boolean | null
|
|
2026
|
+
pageIncrement?: number | null
|
|
2027
|
+
pageSize?: number | null
|
|
2028
|
+
stepIncrement?: number | null
|
|
2004
2029
|
}
|
|
2005
2030
|
|
|
2006
2031
|
}
|
|
@@ -2010,11 +2035,15 @@ interface Adjustment {
|
|
|
2010
2035
|
// Own properties of Mx-2.0.Mx.Adjustment
|
|
2011
2036
|
|
|
2012
2037
|
clamp_value: boolean
|
|
2038
|
+
clampValue: boolean
|
|
2013
2039
|
elastic: boolean
|
|
2014
2040
|
lower: number
|
|
2015
2041
|
page_increment: number
|
|
2042
|
+
pageIncrement: number
|
|
2016
2043
|
page_size: number
|
|
2044
|
+
pageSize: number
|
|
2017
2045
|
step_increment: number
|
|
2046
|
+
stepIncrement: number
|
|
2018
2047
|
upper: number
|
|
2019
2048
|
value: number
|
|
2020
2049
|
|
|
@@ -2257,7 +2286,7 @@ interface Application extends Gio.ActionGroup, Gio.ActionMap {
|
|
|
2257
2286
|
* @param window_title Title for the new window
|
|
2258
2287
|
* @returns The newly created MxWindow
|
|
2259
2288
|
*/
|
|
2260
|
-
create_window(window_title: string
|
|
2289
|
+
create_window(window_title: string): Window
|
|
2261
2290
|
/**
|
|
2262
2291
|
* Retrieves all windows added to `application`.
|
|
2263
2292
|
* @returns a list of #MxWindow<!-- -->s. The returned list is owned by @application and must not be altered.
|
|
@@ -2325,7 +2354,7 @@ class Application extends Gio.Application {
|
|
|
2325
2354
|
* @param flags Application flags.
|
|
2326
2355
|
* @returns the #MxApplication singleton.
|
|
2327
2356
|
*/
|
|
2328
|
-
constructor(application_id: string
|
|
2357
|
+
constructor(application_id: string, flags: Gio.ApplicationFlags)
|
|
2329
2358
|
/**
|
|
2330
2359
|
* Intialises everything needed to operate Clutter and use #MxApplication.
|
|
2331
2360
|
* See clutter_init().
|
|
@@ -2334,7 +2363,7 @@ class Application extends Gio.Application {
|
|
|
2334
2363
|
* @param flags Application flags.
|
|
2335
2364
|
* @returns the #MxApplication singleton.
|
|
2336
2365
|
*/
|
|
2337
|
-
static new(application_id: string
|
|
2366
|
+
static new(application_id: string, flags: Gio.ApplicationFlags): Application
|
|
2338
2367
|
|
|
2339
2368
|
// Overloads of new
|
|
2340
2369
|
|
|
@@ -2383,6 +2412,22 @@ module Bin {
|
|
|
2383
2412
|
* Whether the child should fill the vertical allocation
|
|
2384
2413
|
*/
|
|
2385
2414
|
y_fill?: boolean | null
|
|
2415
|
+
/**
|
|
2416
|
+
* The horizontal alignment of the #MxBin child.
|
|
2417
|
+
*/
|
|
2418
|
+
xAlign: any
|
|
2419
|
+
/**
|
|
2420
|
+
* Whether the child should fill the horizontal allocation
|
|
2421
|
+
*/
|
|
2422
|
+
xFill?: boolean | null
|
|
2423
|
+
/**
|
|
2424
|
+
* The vertical alignment of the #MxBin child.
|
|
2425
|
+
*/
|
|
2426
|
+
yAlign: any
|
|
2427
|
+
/**
|
|
2428
|
+
* Whether the child should fill the vertical allocation
|
|
2429
|
+
*/
|
|
2430
|
+
yFill?: boolean | null
|
|
2386
2431
|
}
|
|
2387
2432
|
|
|
2388
2433
|
}
|
|
@@ -2399,18 +2444,34 @@ interface Bin extends Atk.ImplementorIface, Clutter.Animatable, Clutter.Containe
|
|
|
2399
2444
|
* The horizontal alignment of the #MxBin child.
|
|
2400
2445
|
*/
|
|
2401
2446
|
x_align: any
|
|
2447
|
+
/**
|
|
2448
|
+
* The horizontal alignment of the #MxBin child.
|
|
2449
|
+
*/
|
|
2450
|
+
xAlign: any
|
|
2402
2451
|
/**
|
|
2403
2452
|
* Whether the child should fill the horizontal allocation
|
|
2404
2453
|
*/
|
|
2405
2454
|
x_fill: boolean
|
|
2455
|
+
/**
|
|
2456
|
+
* Whether the child should fill the horizontal allocation
|
|
2457
|
+
*/
|
|
2458
|
+
xFill: boolean
|
|
2406
2459
|
/**
|
|
2407
2460
|
* The vertical alignment of the #MxBin child.
|
|
2408
2461
|
*/
|
|
2409
2462
|
y_align: any
|
|
2463
|
+
/**
|
|
2464
|
+
* The vertical alignment of the #MxBin child.
|
|
2465
|
+
*/
|
|
2466
|
+
yAlign: any
|
|
2410
2467
|
/**
|
|
2411
2468
|
* Whether the child should fill the vertical allocation
|
|
2412
2469
|
*/
|
|
2413
2470
|
y_fill: boolean
|
|
2471
|
+
/**
|
|
2472
|
+
* Whether the child should fill the vertical allocation
|
|
2473
|
+
*/
|
|
2474
|
+
yFill: boolean
|
|
2414
2475
|
|
|
2415
2476
|
// Owm methods of Mx-2.0.Mx.Bin
|
|
2416
2477
|
|
|
@@ -2797,6 +2858,8 @@ module BoxLayout {
|
|
|
2797
2858
|
orientation?: Orientation | null
|
|
2798
2859
|
scroll_to_focused?: boolean | null
|
|
2799
2860
|
spacing?: number | null
|
|
2861
|
+
enableAnimations?: boolean | null
|
|
2862
|
+
scrollToFocused?: boolean | null
|
|
2800
2863
|
}
|
|
2801
2864
|
|
|
2802
2865
|
}
|
|
@@ -2806,8 +2869,10 @@ interface BoxLayout extends Atk.ImplementorIface, Clutter.Animatable, Clutter.Co
|
|
|
2806
2869
|
// Own properties of Mx-2.0.Mx.BoxLayout
|
|
2807
2870
|
|
|
2808
2871
|
enable_animations: boolean
|
|
2872
|
+
enableAnimations: boolean
|
|
2809
2873
|
orientation: Orientation
|
|
2810
2874
|
scroll_to_focused: boolean
|
|
2875
|
+
scrollToFocused: boolean
|
|
2811
2876
|
spacing: number
|
|
2812
2877
|
|
|
2813
2878
|
// Owm methods of Mx-2.0.Mx.BoxLayout
|
|
@@ -3277,6 +3342,10 @@ module BoxLayoutChild {
|
|
|
3277
3342
|
x_fill?: boolean | null
|
|
3278
3343
|
y_align?: Align | null
|
|
3279
3344
|
y_fill?: boolean | null
|
|
3345
|
+
xAlign?: Align | null
|
|
3346
|
+
xFill?: boolean | null
|
|
3347
|
+
yAlign?: Align | null
|
|
3348
|
+
yFill?: boolean | null
|
|
3280
3349
|
}
|
|
3281
3350
|
|
|
3282
3351
|
}
|
|
@@ -3287,9 +3356,13 @@ interface BoxLayoutChild {
|
|
|
3287
3356
|
|
|
3288
3357
|
expand: boolean
|
|
3289
3358
|
x_align: Align
|
|
3359
|
+
xAlign: Align
|
|
3290
3360
|
x_fill: boolean
|
|
3361
|
+
xFill: boolean
|
|
3291
3362
|
y_align: Align
|
|
3363
|
+
yAlign: Align
|
|
3292
3364
|
y_fill: boolean
|
|
3365
|
+
yFill: boolean
|
|
3293
3366
|
|
|
3294
3367
|
// Class property signals of Mx-2.0.Mx.BoxLayoutChild
|
|
3295
3368
|
|
|
@@ -3359,6 +3432,12 @@ module Button {
|
|
|
3359
3432
|
label?: string | null
|
|
3360
3433
|
label_visible?: boolean | null
|
|
3361
3434
|
toggled?: boolean | null
|
|
3435
|
+
iconName?: string | null
|
|
3436
|
+
iconPosition?: Position | null
|
|
3437
|
+
iconSize?: number | null
|
|
3438
|
+
iconVisible?: boolean | null
|
|
3439
|
+
isToggle?: boolean | null
|
|
3440
|
+
labelVisible?: boolean | null
|
|
3362
3441
|
}
|
|
3363
3442
|
|
|
3364
3443
|
}
|
|
@@ -3369,12 +3448,18 @@ interface Button extends Atk.ImplementorIface, Clutter.Animatable, Clutter.Conta
|
|
|
3369
3448
|
|
|
3370
3449
|
action: Action
|
|
3371
3450
|
icon_name: string | null
|
|
3451
|
+
iconName: string | null
|
|
3372
3452
|
icon_position: Position
|
|
3453
|
+
iconPosition: Position
|
|
3373
3454
|
icon_size: number
|
|
3455
|
+
iconSize: number
|
|
3374
3456
|
icon_visible: boolean
|
|
3457
|
+
iconVisible: boolean
|
|
3375
3458
|
is_toggle: boolean
|
|
3459
|
+
isToggle: boolean
|
|
3376
3460
|
label: string | null
|
|
3377
3461
|
label_visible: boolean
|
|
3462
|
+
labelVisible: boolean
|
|
3378
3463
|
toggled: boolean
|
|
3379
3464
|
|
|
3380
3465
|
// Owm methods of Mx-2.0.Mx.Button
|
|
@@ -3393,12 +3478,12 @@ interface Button extends Atk.ImplementorIface, Clutter.Animatable, Clutter.Conta
|
|
|
3393
3478
|
* @param name the name of the action to retrieve
|
|
3394
3479
|
* @returns a #ClutterAction for the given name, or %NULL. The returned #ClutterAction is owned by the actor and it should not be unreferenced directly
|
|
3395
3480
|
*/
|
|
3396
|
-
get_action(name: string
|
|
3481
|
+
get_action(name: string): Clutter.Action
|
|
3397
3482
|
/**
|
|
3398
3483
|
* Get the icon-name being used on the button.
|
|
3399
3484
|
* @returns the icon-name. This must not be freed by the application. %NULL if no icon has been set
|
|
3400
3485
|
*/
|
|
3401
|
-
get_icon_name(): string
|
|
3486
|
+
get_icon_name(): string
|
|
3402
3487
|
/**
|
|
3403
3488
|
* Retrieves the icon's relative position to the text.
|
|
3404
3489
|
* @returns A #MxPosition
|
|
@@ -3423,7 +3508,7 @@ interface Button extends Atk.ImplementorIface, Clutter.Animatable, Clutter.Conta
|
|
|
3423
3508
|
* Get the text displayed on the button
|
|
3424
3509
|
* @returns the text for the button. This must not be freed by the application
|
|
3425
3510
|
*/
|
|
3426
|
-
get_label(): string
|
|
3511
|
+
get_label(): string
|
|
3427
3512
|
/**
|
|
3428
3513
|
* Retrieves the visibility of the text associated with the button's action.
|
|
3429
3514
|
* @returns %TRUE if the text is visible, %FALSE otherwise
|
|
@@ -3474,7 +3559,7 @@ interface Button extends Atk.ImplementorIface, Clutter.Animatable, Clutter.Conta
|
|
|
3474
3559
|
* Sets the text displayed on the button
|
|
3475
3560
|
* @param text text to set the label to
|
|
3476
3561
|
*/
|
|
3477
|
-
set_label(text: string
|
|
3562
|
+
set_label(text: string): void
|
|
3478
3563
|
/**
|
|
3479
3564
|
* Sets the visibility of the text associated with the button's action.
|
|
3480
3565
|
* @param visible %TRUE if the text should be visible
|
|
@@ -3853,7 +3938,7 @@ class Button extends Widget {
|
|
|
3853
3938
|
* @param text text to set the label to
|
|
3854
3939
|
* @returns a new #MxButton
|
|
3855
3940
|
*/
|
|
3856
|
-
static new_with_label(text: string
|
|
3941
|
+
static new_with_label(text: string): Button
|
|
3857
3942
|
_init(config?: Button.ConstructorProperties): void
|
|
3858
3943
|
}
|
|
3859
3944
|
|
|
@@ -3867,6 +3952,8 @@ module ButtonGroup {
|
|
|
3867
3952
|
|
|
3868
3953
|
active_button?: Button | null
|
|
3869
3954
|
allow_no_active?: boolean | null
|
|
3955
|
+
activeButton?: Button | null
|
|
3956
|
+
allowNoActive?: boolean | null
|
|
3870
3957
|
}
|
|
3871
3958
|
|
|
3872
3959
|
}
|
|
@@ -3876,7 +3963,9 @@ interface ButtonGroup {
|
|
|
3876
3963
|
// Own properties of Mx-2.0.Mx.ButtonGroup
|
|
3877
3964
|
|
|
3878
3965
|
active_button: Button
|
|
3966
|
+
activeButton: Button
|
|
3879
3967
|
allow_no_active: boolean
|
|
3968
|
+
allowNoActive: boolean
|
|
3880
3969
|
|
|
3881
3970
|
// Own fields of Mx-2.0.Mx.ButtonGroup
|
|
3882
3971
|
|
|
@@ -3994,7 +4083,7 @@ interface Clipboard {
|
|
|
3994
4083
|
* Sets text as the current contents of the clipboard.
|
|
3995
4084
|
* @param text text to copy to the clipboard
|
|
3996
4085
|
*/
|
|
3997
|
-
set_text(text: string
|
|
4086
|
+
set_text(text: string): void
|
|
3998
4087
|
|
|
3999
4088
|
// Class property signals of Mx-2.0.Mx.Clipboard
|
|
4000
4089
|
|
|
@@ -4038,6 +4127,8 @@ module ComboBox {
|
|
|
4038
4127
|
active_icon_name?: string | null
|
|
4039
4128
|
active_text?: string | null
|
|
4040
4129
|
index?: number | null
|
|
4130
|
+
activeIconName?: string | null
|
|
4131
|
+
activeText?: string | null
|
|
4041
4132
|
}
|
|
4042
4133
|
|
|
4043
4134
|
}
|
|
@@ -4047,7 +4138,9 @@ interface ComboBox extends Atk.ImplementorIface, Clutter.Animatable, Clutter.Con
|
|
|
4047
4138
|
// Own properties of Mx-2.0.Mx.ComboBox
|
|
4048
4139
|
|
|
4049
4140
|
active_icon_name: string | null
|
|
4141
|
+
activeIconName: string | null
|
|
4050
4142
|
active_text: string | null
|
|
4143
|
+
activeText: string | null
|
|
4051
4144
|
index: number
|
|
4052
4145
|
|
|
4053
4146
|
// Owm methods of Mx-2.0.Mx.ComboBox
|
|
@@ -4056,17 +4149,17 @@ interface ComboBox extends Atk.ImplementorIface, Clutter.Animatable, Clutter.Con
|
|
|
4056
4149
|
* Append an item to the combo box list
|
|
4057
4150
|
* @param text name of the item
|
|
4058
4151
|
*/
|
|
4059
|
-
append_text(text: string
|
|
4152
|
+
append_text(text: string): void
|
|
4060
4153
|
/**
|
|
4061
4154
|
* Get the name of the icon displayed in the combo box
|
|
4062
4155
|
* @returns the text string of the name of the displayed icon, owned by the combo box, or %NULL if there is no active icon.
|
|
4063
4156
|
*/
|
|
4064
|
-
get_active_icon_name(): string
|
|
4157
|
+
get_active_icon_name(): string
|
|
4065
4158
|
/**
|
|
4066
4159
|
* Get the text displayed in the combo box
|
|
4067
4160
|
* @returns the text string, owned by the combo box
|
|
4068
4161
|
*/
|
|
4069
|
-
get_active_text(): string
|
|
4162
|
+
get_active_text(): string
|
|
4070
4163
|
/**
|
|
4071
4164
|
* Get the index of the last item selected
|
|
4072
4165
|
* @returns gint
|
|
@@ -4077,19 +4170,19 @@ interface ComboBox extends Atk.ImplementorIface, Clutter.Animatable, Clutter.Con
|
|
|
4077
4170
|
* @param position zero indexed position to insert the item at
|
|
4078
4171
|
* @param text name of the item
|
|
4079
4172
|
*/
|
|
4080
|
-
insert_text(position: number, text: string
|
|
4173
|
+
insert_text(position: number, text: string): void
|
|
4081
4174
|
/**
|
|
4082
4175
|
* Insert an item with text and an icon into the combo box list.
|
|
4083
4176
|
* @param position zero indexed position to insert the item at
|
|
4084
4177
|
* @param text name of the item
|
|
4085
4178
|
* @param icon name of an icon from the icon theme
|
|
4086
4179
|
*/
|
|
4087
|
-
insert_text_with_icon(position: number, text: string
|
|
4180
|
+
insert_text_with_icon(position: number, text: string, icon: string): void
|
|
4088
4181
|
/**
|
|
4089
4182
|
* Prepend an item to the combo box list
|
|
4090
4183
|
* @param text name of the item
|
|
4091
4184
|
*/
|
|
4092
|
-
prepend_text(text: string
|
|
4185
|
+
prepend_text(text: string): void
|
|
4093
4186
|
/**
|
|
4094
4187
|
* Remove all the items of `box`
|
|
4095
4188
|
*/
|
|
@@ -4108,7 +4201,7 @@ interface ComboBox extends Atk.ImplementorIface, Clutter.Animatable, Clutter.Con
|
|
|
4108
4201
|
* Set the text displayed in the combo box
|
|
4109
4202
|
* @param text text to display
|
|
4110
4203
|
*/
|
|
4111
|
-
set_active_text(text: string
|
|
4204
|
+
set_active_text(text: string): void
|
|
4112
4205
|
/**
|
|
4113
4206
|
* Set the current combo box text from the item at `index` in the list.
|
|
4114
4207
|
* @param index the index of the list item to set
|
|
@@ -4874,6 +4967,10 @@ module Entry {
|
|
|
4874
4967
|
primary_icon_tooltip_text?: string | null
|
|
4875
4968
|
secondary_icon_tooltip_text?: string | null
|
|
4876
4969
|
text?: string | null
|
|
4970
|
+
iconHighlightSuffix?: string | null
|
|
4971
|
+
passwordChar?: number | null
|
|
4972
|
+
primaryIconTooltipText?: string | null
|
|
4973
|
+
secondaryIconTooltipText?: string | null
|
|
4877
4974
|
}
|
|
4878
4975
|
|
|
4879
4976
|
}
|
|
@@ -4883,11 +4980,16 @@ interface Entry extends Atk.ImplementorIface, Clutter.Animatable, Clutter.Contai
|
|
|
4883
4980
|
// Own properties of Mx-2.0.Mx.Entry
|
|
4884
4981
|
|
|
4885
4982
|
readonly clutter_text: Clutter.Text
|
|
4983
|
+
readonly clutterText: Clutter.Text
|
|
4886
4984
|
icon_highlight_suffix: string | null
|
|
4985
|
+
iconHighlightSuffix: string | null
|
|
4887
4986
|
password_char: number
|
|
4987
|
+
passwordChar: number
|
|
4888
4988
|
placeholder: string | null
|
|
4889
4989
|
primary_icon_tooltip_text: string | null
|
|
4990
|
+
primaryIconTooltipText: string | null
|
|
4890
4991
|
secondary_icon_tooltip_text: string | null
|
|
4992
|
+
secondaryIconTooltipText: string | null
|
|
4891
4993
|
text: string | null
|
|
4892
4994
|
|
|
4893
4995
|
// Owm methods of Mx-2.0.Mx.Entry
|
|
@@ -4902,7 +5004,7 @@ interface Entry extends Atk.ImplementorIface, Clutter.Animatable, Clutter.Contai
|
|
|
4902
5004
|
* of the icon.
|
|
4903
5005
|
* @returns the highlight filename suffix. This string is owned by the #MxEntry and should not be freed or modified.
|
|
4904
5006
|
*/
|
|
4905
|
-
get_icon_highlight_suffix(): string
|
|
5007
|
+
get_icon_highlight_suffix(): string
|
|
4906
5008
|
/**
|
|
4907
5009
|
* Gets the character to display instead of the text.
|
|
4908
5010
|
* @returns a character, or 0 if input should not be hidden.
|
|
@@ -4912,12 +5014,12 @@ interface Entry extends Atk.ImplementorIface, Clutter.Animatable, Clutter.Contai
|
|
|
4912
5014
|
* Gets the text that is displayed when the entry is empty and unfocused
|
|
4913
5015
|
* @returns the current value of the placeholder property. This string is owned by the #MxEntry and should not be freed or modified.
|
|
4914
5016
|
*/
|
|
4915
|
-
get_placeholder(): string
|
|
5017
|
+
get_placeholder(): string
|
|
4916
5018
|
/**
|
|
4917
5019
|
* Get the text displayed on the entry
|
|
4918
5020
|
* @returns the text for the entry. This must not be freed by the application
|
|
4919
5021
|
*/
|
|
4920
|
-
get_text(): string
|
|
5022
|
+
get_text(): string
|
|
4921
5023
|
/**
|
|
4922
5024
|
* Sets the suffix appended to the filename to use for the highlighted version
|
|
4923
5025
|
* of the icon. e.g. if you have set your primay icon to "primary-icon.png"
|
|
@@ -4925,7 +5027,7 @@ interface Entry extends Atk.ImplementorIface, Clutter.Animatable, Clutter.Contai
|
|
|
4925
5027
|
* "primary-icon-highlight.png"
|
|
4926
5028
|
* @param suffix the suffix to append to the filename for the highlight version
|
|
4927
5029
|
*/
|
|
4928
|
-
set_icon_highlight_suffix(suffix: string
|
|
5030
|
+
set_icon_highlight_suffix(suffix: string): void
|
|
4929
5031
|
/**
|
|
4930
5032
|
* Sets the character to display instead of the text. Use 0 to display
|
|
4931
5033
|
* the actual text.
|
|
@@ -4938,24 +5040,24 @@ interface Entry extends Atk.ImplementorIface, Clutter.Animatable, Clutter.Contai
|
|
|
4938
5040
|
* A value of NULL unsets the hint.
|
|
4939
5041
|
* @param text text to set as the entry hint
|
|
4940
5042
|
*/
|
|
4941
|
-
set_placeholder(text: string
|
|
5043
|
+
set_placeholder(text: string): void
|
|
4942
5044
|
/**
|
|
4943
5045
|
* Set the primary icon of the entry to the given filename
|
|
4944
5046
|
* @param filename filename of an icon
|
|
4945
5047
|
*/
|
|
4946
|
-
set_primary_icon_from_file(filename: string
|
|
4947
|
-
set_primary_icon_tooltip_text(text: string
|
|
5048
|
+
set_primary_icon_from_file(filename: string): void
|
|
5049
|
+
set_primary_icon_tooltip_text(text: string): void
|
|
4948
5050
|
/**
|
|
4949
5051
|
* Set the primary icon of the entry to the given filename
|
|
4950
5052
|
* @param filename filename of an icon
|
|
4951
5053
|
*/
|
|
4952
|
-
set_secondary_icon_from_file(filename: string
|
|
4953
|
-
set_secondary_icon_tooltip_text(text: string
|
|
5054
|
+
set_secondary_icon_from_file(filename: string): void
|
|
5055
|
+
set_secondary_icon_tooltip_text(text: string): void
|
|
4954
5056
|
/**
|
|
4955
5057
|
* Sets the text displayed on the entry
|
|
4956
5058
|
* @param text text to set the entry to
|
|
4957
5059
|
*/
|
|
4958
|
-
set_text(text: string
|
|
5060
|
+
set_text(text: string): void
|
|
4959
5061
|
|
|
4960
5062
|
// Conflicting methods
|
|
4961
5063
|
|
|
@@ -5321,7 +5423,7 @@ class Entry extends Widget {
|
|
|
5321
5423
|
* @param text text to set the entry to
|
|
5322
5424
|
* @returns a new #MxEntry
|
|
5323
5425
|
*/
|
|
5324
|
-
static new_with_text(text: string
|
|
5426
|
+
static new_with_text(text: string): Entry
|
|
5325
5427
|
_init(config?: Entry.ConstructorProperties): void
|
|
5326
5428
|
}
|
|
5327
5429
|
|
|
@@ -5373,7 +5475,7 @@ interface Expander extends Atk.ImplementorIface, Clutter.Animatable, Clutter.Con
|
|
|
5373
5475
|
* Sets the text displayed as the title of the expander
|
|
5374
5476
|
* @param label string to set as the expander label
|
|
5375
5477
|
*/
|
|
5376
|
-
set_label(label: string
|
|
5478
|
+
set_label(label: string): void
|
|
5377
5479
|
|
|
5378
5480
|
// Conflicting methods
|
|
5379
5481
|
|
|
@@ -5735,6 +5837,15 @@ module FadeEffect {
|
|
|
5735
5837
|
bounds_y?: number | null
|
|
5736
5838
|
color?: Clutter.Color | null
|
|
5737
5839
|
freeze_update?: boolean | null
|
|
5840
|
+
borderBottom?: number | null
|
|
5841
|
+
borderLeft?: number | null
|
|
5842
|
+
borderRight?: number | null
|
|
5843
|
+
borderTop?: number | null
|
|
5844
|
+
boundsHeight?: number | null
|
|
5845
|
+
boundsWidth?: number | null
|
|
5846
|
+
boundsX?: number | null
|
|
5847
|
+
boundsY?: number | null
|
|
5848
|
+
freezeUpdate?: boolean | null
|
|
5738
5849
|
}
|
|
5739
5850
|
|
|
5740
5851
|
}
|
|
@@ -5744,15 +5855,24 @@ interface FadeEffect {
|
|
|
5744
5855
|
// Own properties of Mx-2.0.Mx.FadeEffect
|
|
5745
5856
|
|
|
5746
5857
|
border_bottom: number
|
|
5858
|
+
borderBottom: number
|
|
5747
5859
|
border_left: number
|
|
5860
|
+
borderLeft: number
|
|
5748
5861
|
border_right: number
|
|
5862
|
+
borderRight: number
|
|
5749
5863
|
border_top: number
|
|
5864
|
+
borderTop: number
|
|
5750
5865
|
bounds_height: number
|
|
5866
|
+
boundsHeight: number
|
|
5751
5867
|
bounds_width: number
|
|
5868
|
+
boundsWidth: number
|
|
5752
5869
|
bounds_x: number
|
|
5870
|
+
boundsX: number
|
|
5753
5871
|
bounds_y: number
|
|
5872
|
+
boundsY: number
|
|
5754
5873
|
color: Clutter.Color
|
|
5755
5874
|
freeze_update: boolean
|
|
5875
|
+
freezeUpdate: boolean
|
|
5756
5876
|
|
|
5757
5877
|
// Own fields of Mx-2.0.Mx.FadeEffect
|
|
5758
5878
|
|
|
@@ -6662,6 +6782,14 @@ module Grid {
|
|
|
6662
6782
|
max_stride?: number | null
|
|
6663
6783
|
orientation?: Orientation | null
|
|
6664
6784
|
row_spacing?: number | null
|
|
6785
|
+
childXAlign?: Align | null
|
|
6786
|
+
childYAlign?: Align | null
|
|
6787
|
+
columnSpacing?: number | null
|
|
6788
|
+
homogenousColumns?: boolean | null
|
|
6789
|
+
homogenousRows?: boolean | null
|
|
6790
|
+
lineAlignment?: Align | null
|
|
6791
|
+
maxStride?: number | null
|
|
6792
|
+
rowSpacing?: number | null
|
|
6665
6793
|
}
|
|
6666
6794
|
|
|
6667
6795
|
}
|
|
@@ -6671,14 +6799,22 @@ interface Grid extends Atk.ImplementorIface, Clutter.Animatable, Clutter.Contain
|
|
|
6671
6799
|
// Own properties of Mx-2.0.Mx.Grid
|
|
6672
6800
|
|
|
6673
6801
|
child_x_align: Align
|
|
6802
|
+
childXAlign: Align
|
|
6674
6803
|
child_y_align: Align
|
|
6804
|
+
childYAlign: Align
|
|
6675
6805
|
column_spacing: number
|
|
6806
|
+
columnSpacing: number
|
|
6676
6807
|
homogenous_columns: boolean
|
|
6808
|
+
homogenousColumns: boolean
|
|
6677
6809
|
homogenous_rows: boolean
|
|
6810
|
+
homogenousRows: boolean
|
|
6678
6811
|
line_alignment: Align
|
|
6812
|
+
lineAlignment: Align
|
|
6679
6813
|
max_stride: number
|
|
6814
|
+
maxStride: number
|
|
6680
6815
|
orientation: Orientation
|
|
6681
6816
|
row_spacing: number
|
|
6817
|
+
rowSpacing: number
|
|
6682
6818
|
|
|
6683
6819
|
// Owm methods of Mx-2.0.Mx.Grid
|
|
6684
6820
|
|
|
@@ -7060,6 +7196,8 @@ module Icon {
|
|
|
7060
7196
|
|
|
7061
7197
|
icon_name?: string | null
|
|
7062
7198
|
icon_size?: number | null
|
|
7199
|
+
iconName?: string | null
|
|
7200
|
+
iconSize?: number | null
|
|
7063
7201
|
}
|
|
7064
7202
|
|
|
7065
7203
|
}
|
|
@@ -7069,13 +7207,15 @@ interface Icon extends Atk.ImplementorIface, Clutter.Animatable, Clutter.Contain
|
|
|
7069
7207
|
// Own properties of Mx-2.0.Mx.Icon
|
|
7070
7208
|
|
|
7071
7209
|
icon_name: string | null
|
|
7210
|
+
iconName: string | null
|
|
7072
7211
|
icon_size: number
|
|
7212
|
+
iconSize: number
|
|
7073
7213
|
|
|
7074
7214
|
// Owm methods of Mx-2.0.Mx.Icon
|
|
7075
7215
|
|
|
7076
|
-
get_icon_name(): string
|
|
7216
|
+
get_icon_name(): string
|
|
7077
7217
|
get_icon_size(): number
|
|
7078
|
-
set_icon_name(icon_name: string
|
|
7218
|
+
set_icon_name(icon_name: string): void
|
|
7079
7219
|
set_icon_size(size: number): void
|
|
7080
7220
|
|
|
7081
7221
|
// Conflicting methods
|
|
@@ -7419,6 +7559,7 @@ module IconTheme {
|
|
|
7419
7559
|
// Own constructor properties of Mx-2.0.Mx.IconTheme
|
|
7420
7560
|
|
|
7421
7561
|
theme_name?: string | null
|
|
7562
|
+
themeName?: string | null
|
|
7422
7563
|
}
|
|
7423
7564
|
|
|
7424
7565
|
}
|
|
@@ -7428,6 +7569,7 @@ interface IconTheme {
|
|
|
7428
7569
|
// Own properties of Mx-2.0.Mx.IconTheme
|
|
7429
7570
|
|
|
7430
7571
|
theme_name: string | null
|
|
7572
|
+
themeName: string | null
|
|
7431
7573
|
|
|
7432
7574
|
// Own fields of Mx-2.0.Mx.IconTheme
|
|
7433
7575
|
|
|
@@ -7445,22 +7587,22 @@ interface IconTheme {
|
|
|
7445
7587
|
* Get the value of the #MxIconTheme:theme-name property.
|
|
7446
7588
|
* @returns the current value of the "theme-name" property.
|
|
7447
7589
|
*/
|
|
7448
|
-
get_theme_name(): string
|
|
7449
|
-
has_icon(icon_name: string
|
|
7590
|
+
get_theme_name(): string
|
|
7591
|
+
has_icon(icon_name: string): boolean
|
|
7450
7592
|
/**
|
|
7451
7593
|
* If the icon is available, returns a #CoglHandle of the icon.
|
|
7452
7594
|
* @param icon_name The name of the icon
|
|
7453
7595
|
* @param size The desired size of the icon
|
|
7454
7596
|
* @returns a #CoglHandle of the icon, or %NULL.
|
|
7455
7597
|
*/
|
|
7456
|
-
lookup(icon_name: string
|
|
7598
|
+
lookup(icon_name: string, size: number): Cogl.Handle
|
|
7457
7599
|
/**
|
|
7458
7600
|
* If the icon is available, returns a #ClutterTexture of the icon.
|
|
7459
7601
|
* @param icon_name The name of the icon
|
|
7460
7602
|
* @param size The desired size of the icon
|
|
7461
7603
|
* @returns a #ClutterTexture of the icon, or %NULL.
|
|
7462
7604
|
*/
|
|
7463
|
-
lookup_texture(icon_name: string
|
|
7605
|
+
lookup_texture(icon_name: string, size: number): Clutter.Texture
|
|
7464
7606
|
/**
|
|
7465
7607
|
* Sets the directories the #MxIconTheme will search in to find icons.
|
|
7466
7608
|
* By default, it will look in the default system and local icon
|
|
@@ -7478,7 +7620,7 @@ interface IconTheme {
|
|
|
7478
7620
|
* icon theme, this function can be called with a %NULL `theme_name` argument.
|
|
7479
7621
|
* @param theme_name the name of an icon theme to load, or %NULL
|
|
7480
7622
|
*/
|
|
7481
|
-
set_theme_name(theme_name: string
|
|
7623
|
+
set_theme_name(theme_name: string): void
|
|
7482
7624
|
|
|
7483
7625
|
// Class property signals of Mx-2.0.Mx.IconTheme
|
|
7484
7626
|
|
|
@@ -7561,6 +7703,13 @@ module Image {
|
|
|
7561
7703
|
scale_mode?: ImageScaleMode | null
|
|
7562
7704
|
scale_width_threshold?: number | null
|
|
7563
7705
|
transition_duration?: number | null
|
|
7706
|
+
allowUpscale?: boolean | null
|
|
7707
|
+
imageRotation?: number | null
|
|
7708
|
+
loadAsync?: boolean | null
|
|
7709
|
+
scaleHeightThreshold?: number | null
|
|
7710
|
+
scaleMode?: ImageScaleMode | null
|
|
7711
|
+
scaleWidthThreshold?: number | null
|
|
7712
|
+
transitionDuration?: number | null
|
|
7564
7713
|
}
|
|
7565
7714
|
|
|
7566
7715
|
}
|
|
@@ -7570,13 +7719,20 @@ interface Image extends Atk.ImplementorIface, Clutter.Animatable, Clutter.Contai
|
|
|
7570
7719
|
// Own properties of Mx-2.0.Mx.Image
|
|
7571
7720
|
|
|
7572
7721
|
allow_upscale: boolean
|
|
7722
|
+
allowUpscale: boolean
|
|
7573
7723
|
filename: string | null
|
|
7574
7724
|
image_rotation: number
|
|
7725
|
+
imageRotation: number
|
|
7575
7726
|
load_async: boolean
|
|
7727
|
+
loadAsync: boolean
|
|
7576
7728
|
scale_height_threshold: number
|
|
7729
|
+
scaleHeightThreshold: number
|
|
7577
7730
|
scale_mode: ImageScaleMode
|
|
7731
|
+
scaleMode: ImageScaleMode
|
|
7578
7732
|
scale_width_threshold: number
|
|
7733
|
+
scaleWidthThreshold: number
|
|
7579
7734
|
transition_duration: number
|
|
7735
|
+
transitionDuration: number
|
|
7580
7736
|
|
|
7581
7737
|
// Owm methods of Mx-2.0.Mx.Image
|
|
7582
7738
|
|
|
@@ -7684,7 +7840,7 @@ interface Image extends Atk.ImplementorIface, Clutter.Animatable, Clutter.Contai
|
|
|
7684
7840
|
* @param filename Filename to read the file from
|
|
7685
7841
|
* @returns #TRUE if the image was successfully updated
|
|
7686
7842
|
*/
|
|
7687
|
-
set_from_file(filename: string
|
|
7843
|
+
set_from_file(filename: string): boolean
|
|
7688
7844
|
/**
|
|
7689
7845
|
* Set the image data from an image file, and scale the image during loading.
|
|
7690
7846
|
* In case of failure, #FALSE is returned and `error` is set. The aspect ratio
|
|
@@ -7694,7 +7850,7 @@ interface Image extends Atk.ImplementorIface, Clutter.Animatable, Clutter.Contai
|
|
|
7694
7850
|
* @param height Height to scale the image to, or -1
|
|
7695
7851
|
* @returns #TRUE if the image was successfully updated
|
|
7696
7852
|
*/
|
|
7697
|
-
set_from_file_at_size(filename: string
|
|
7853
|
+
set_from_file_at_size(filename: string, width: number, height: number): boolean
|
|
7698
7854
|
/**
|
|
7699
7855
|
* Set the MxImage:image-rotation property.
|
|
7700
7856
|
* @param rotation Rotation angle in degrees
|
|
@@ -8117,6 +8273,7 @@ module ItemView {
|
|
|
8117
8273
|
factory?: GObject.Object | null
|
|
8118
8274
|
item_type?: GObject.GType | null
|
|
8119
8275
|
model?: Clutter.Model | null
|
|
8276
|
+
itemType?: GObject.GType | null
|
|
8120
8277
|
}
|
|
8121
8278
|
|
|
8122
8279
|
}
|
|
@@ -8127,6 +8284,7 @@ interface ItemView extends Atk.ImplementorIface, Clutter.Animatable, Clutter.Con
|
|
|
8127
8284
|
|
|
8128
8285
|
factory: GObject.Object
|
|
8129
8286
|
item_type: GObject.GType
|
|
8287
|
+
itemType: GObject.GType
|
|
8130
8288
|
model: Clutter.Model
|
|
8131
8289
|
|
|
8132
8290
|
// Owm methods of Mx-2.0.Mx.ItemView
|
|
@@ -8137,7 +8295,7 @@ interface ItemView extends Atk.ImplementorIface, Clutter.Animatable, Clutter.Con
|
|
|
8137
8295
|
* @param attribute Name of the attribute
|
|
8138
8296
|
* @param column Column number
|
|
8139
8297
|
*/
|
|
8140
|
-
add_attribute(attribute: string
|
|
8298
|
+
add_attribute(attribute: string, column: number): void
|
|
8141
8299
|
/**
|
|
8142
8300
|
* Freeze the view. This means that the view will not act on changes to the
|
|
8143
8301
|
* model until it is thawed. Call #mx_item_view_thaw to thaw the view
|
|
@@ -8567,6 +8725,15 @@ module KineticScrollView {
|
|
|
8567
8725
|
snap_on_page?: boolean | null
|
|
8568
8726
|
use_captured?: boolean | null
|
|
8569
8727
|
use_grab?: boolean | null
|
|
8728
|
+
accelerationFactor?: number | null
|
|
8729
|
+
clampDuration?: number | null
|
|
8730
|
+
clampMode?: number | null
|
|
8731
|
+
clampToCenter?: boolean | null
|
|
8732
|
+
mouseButton?: number | null
|
|
8733
|
+
scrollPolicy?: ScrollPolicy | null
|
|
8734
|
+
snapOnPage?: boolean | null
|
|
8735
|
+
useCaptured?: boolean | null
|
|
8736
|
+
useGrab?: boolean | null
|
|
8570
8737
|
}
|
|
8571
8738
|
|
|
8572
8739
|
}
|
|
@@ -8576,17 +8743,26 @@ interface KineticScrollView extends Atk.ImplementorIface, Clutter.Animatable, Cl
|
|
|
8576
8743
|
// Own properties of Mx-2.0.Mx.KineticScrollView
|
|
8577
8744
|
|
|
8578
8745
|
acceleration_factor: number
|
|
8746
|
+
accelerationFactor: number
|
|
8579
8747
|
clamp_duration: number
|
|
8748
|
+
clampDuration: number
|
|
8580
8749
|
clamp_mode: number
|
|
8750
|
+
clampMode: number
|
|
8581
8751
|
clamp_to_center: boolean
|
|
8752
|
+
clampToCenter: boolean
|
|
8582
8753
|
deceleration: number
|
|
8583
8754
|
mouse_button: number
|
|
8755
|
+
mouseButton: number
|
|
8584
8756
|
overshoot: number
|
|
8585
8757
|
scroll_policy: ScrollPolicy
|
|
8758
|
+
scrollPolicy: ScrollPolicy
|
|
8586
8759
|
snap_on_page: boolean
|
|
8760
|
+
snapOnPage: boolean
|
|
8587
8761
|
readonly state: KineticScrollViewState
|
|
8588
8762
|
use_captured: boolean
|
|
8763
|
+
useCaptured: boolean
|
|
8589
8764
|
use_grab: boolean
|
|
8765
|
+
useGrab: boolean
|
|
8590
8766
|
|
|
8591
8767
|
// Owm methods of Mx-2.0.Mx.KineticScrollView
|
|
8592
8768
|
|
|
@@ -9121,6 +9297,21 @@ module Label {
|
|
|
9121
9297
|
use_markup?: boolean | null
|
|
9122
9298
|
x_align: any
|
|
9123
9299
|
y_align: any
|
|
9300
|
+
fadeOut?: boolean | null
|
|
9301
|
+
/**
|
|
9302
|
+
* Whether to wrap the lines of #MxLabel:text if the contents
|
|
9303
|
+
* exceed the available allocation.
|
|
9304
|
+
*/
|
|
9305
|
+
lineWrap?: boolean | null
|
|
9306
|
+
/**
|
|
9307
|
+
* Show a tooltip when there is not enough space to display the text. If set
|
|
9308
|
+
* to %TRUE, this will also cause the #ClutterActor:reactive property to be
|
|
9309
|
+
* enabled.
|
|
9310
|
+
*/
|
|
9311
|
+
showTooltip?: boolean | null
|
|
9312
|
+
useMarkup?: boolean | null
|
|
9313
|
+
xAlign: any
|
|
9314
|
+
yAlign: any
|
|
9124
9315
|
}
|
|
9125
9316
|
|
|
9126
9317
|
}
|
|
@@ -9130,17 +9321,33 @@ interface Label extends Atk.ImplementorIface, Clutter.Animatable, Clutter.Contai
|
|
|
9130
9321
|
// Own properties of Mx-2.0.Mx.Label
|
|
9131
9322
|
|
|
9132
9323
|
readonly clutter_text: Clutter.Text
|
|
9324
|
+
readonly clutterText: Clutter.Text
|
|
9133
9325
|
fade_out: boolean
|
|
9326
|
+
fadeOut: boolean
|
|
9134
9327
|
/**
|
|
9135
9328
|
* Whether to wrap the lines of #MxLabel:text if the contents
|
|
9136
9329
|
* exceed the available allocation.
|
|
9137
9330
|
*/
|
|
9138
9331
|
line_wrap: boolean
|
|
9332
|
+
/**
|
|
9333
|
+
* Whether to wrap the lines of #MxLabel:text if the contents
|
|
9334
|
+
* exceed the available allocation.
|
|
9335
|
+
*/
|
|
9336
|
+
lineWrap: boolean
|
|
9139
9337
|
// Has conflict: show_tooltip: boolean
|
|
9338
|
+
/**
|
|
9339
|
+
* Show a tooltip when there is not enough space to display the text. If set
|
|
9340
|
+
* to %TRUE, this will also cause the #ClutterActor:reactive property to be
|
|
9341
|
+
* enabled.
|
|
9342
|
+
*/
|
|
9343
|
+
showTooltip: boolean
|
|
9140
9344
|
text: string | null
|
|
9141
9345
|
use_markup: boolean
|
|
9346
|
+
useMarkup: boolean
|
|
9142
9347
|
x_align: any
|
|
9348
|
+
xAlign: any
|
|
9143
9349
|
y_align: any
|
|
9350
|
+
yAlign: any
|
|
9144
9351
|
|
|
9145
9352
|
// Owm methods of Mx-2.0.Mx.Label
|
|
9146
9353
|
|
|
@@ -9173,7 +9380,7 @@ interface Label extends Atk.ImplementorIface, Clutter.Animatable, Clutter.Contai
|
|
|
9173
9380
|
* Get the text displayed on the label
|
|
9174
9381
|
* @returns the text for the label. This must not be freed by the application
|
|
9175
9382
|
*/
|
|
9176
|
-
get_text(): string
|
|
9383
|
+
get_text(): string
|
|
9177
9384
|
/**
|
|
9178
9385
|
* Determines whether the text of the label is being treated as Pango markup.
|
|
9179
9386
|
* @returns %TRUE if the text of the label is treated as Pango markup, %FALSE otherwise.
|
|
@@ -9226,7 +9433,7 @@ interface Label extends Atk.ImplementorIface, Clutter.Animatable, Clutter.Contai
|
|
|
9226
9433
|
* Sets the text displayed on the label
|
|
9227
9434
|
* @param text text to set the label to
|
|
9228
9435
|
*/
|
|
9229
|
-
set_text(text: string
|
|
9436
|
+
set_text(text: string): void
|
|
9230
9437
|
/**
|
|
9231
9438
|
* Sets whether the text of the label should be treated as Pango markup.
|
|
9232
9439
|
* @param use_markup %TRUE to use Pango markup, %FALSE otherwise
|
|
@@ -9604,7 +9811,7 @@ class Label extends Widget {
|
|
|
9604
9811
|
* @param text text to set the label to
|
|
9605
9812
|
* @returns a new #MxLabel
|
|
9606
9813
|
*/
|
|
9607
|
-
static new_with_text(text: string
|
|
9814
|
+
static new_with_text(text: string): Label
|
|
9608
9815
|
_init(config?: Label.ConstructorProperties): void
|
|
9609
9816
|
}
|
|
9610
9817
|
|
|
@@ -9619,6 +9826,7 @@ module ListView {
|
|
|
9619
9826
|
factory?: GObject.Object | null
|
|
9620
9827
|
item_type?: GObject.GType | null
|
|
9621
9828
|
model?: Clutter.Model | null
|
|
9829
|
+
itemType?: GObject.GType | null
|
|
9622
9830
|
}
|
|
9623
9831
|
|
|
9624
9832
|
}
|
|
@@ -9629,6 +9837,7 @@ interface ListView extends Atk.ImplementorIface, Clutter.Animatable, Clutter.Con
|
|
|
9629
9837
|
|
|
9630
9838
|
factory: GObject.Object
|
|
9631
9839
|
item_type: GObject.GType
|
|
9840
|
+
itemType: GObject.GType
|
|
9632
9841
|
model: Clutter.Model
|
|
9633
9842
|
|
|
9634
9843
|
// Owm methods of Mx-2.0.Mx.ListView
|
|
@@ -9639,7 +9848,7 @@ interface ListView extends Atk.ImplementorIface, Clutter.Animatable, Clutter.Con
|
|
|
9639
9848
|
* @param attribute Name of the attribute
|
|
9640
9849
|
* @param column Column number
|
|
9641
9850
|
*/
|
|
9642
|
-
add_attribute(attribute: string
|
|
9851
|
+
add_attribute(attribute: string, column: number): void
|
|
9643
9852
|
/**
|
|
9644
9853
|
* Freeze the view. This means that the view will not act on changes to the
|
|
9645
9854
|
* model until it is thawed. Call #mx_list_view_thaw to thaw the view.
|
|
@@ -10448,6 +10657,7 @@ module Notebook {
|
|
|
10448
10657
|
// Own constructor properties of Mx-2.0.Mx.Notebook
|
|
10449
10658
|
|
|
10450
10659
|
current_page?: Clutter.Actor | null
|
|
10660
|
+
currentPage?: Clutter.Actor | null
|
|
10451
10661
|
}
|
|
10452
10662
|
|
|
10453
10663
|
}
|
|
@@ -10457,6 +10667,7 @@ interface Notebook extends Atk.ImplementorIface, Clutter.Animatable, Clutter.Con
|
|
|
10457
10667
|
// Own properties of Mx-2.0.Mx.Notebook
|
|
10458
10668
|
|
|
10459
10669
|
current_page: Clutter.Actor
|
|
10670
|
+
currentPage: Clutter.Actor
|
|
10460
10671
|
|
|
10461
10672
|
// Own fields of Mx-2.0.Mx.Notebook
|
|
10462
10673
|
|
|
@@ -10810,6 +11021,9 @@ module Pager {
|
|
|
10810
11021
|
edge_previews?: boolean | null
|
|
10811
11022
|
page_actor?: Clutter.Actor | null
|
|
10812
11023
|
page_num?: number | null
|
|
11024
|
+
edgePreviews?: boolean | null
|
|
11025
|
+
pageActor?: Clutter.Actor | null
|
|
11026
|
+
pageNum?: number | null
|
|
10813
11027
|
}
|
|
10814
11028
|
|
|
10815
11029
|
}
|
|
@@ -10819,8 +11033,11 @@ interface Pager extends Atk.ImplementorIface, Clutter.Animatable, Clutter.Contai
|
|
|
10819
11033
|
// Own properties of Mx-2.0.Mx.Pager
|
|
10820
11034
|
|
|
10821
11035
|
edge_previews: boolean
|
|
11036
|
+
edgePreviews: boolean
|
|
10822
11037
|
page_actor: Clutter.Actor
|
|
11038
|
+
pageActor: Clutter.Actor
|
|
10823
11039
|
page_num: number
|
|
11040
|
+
pageNum: number
|
|
10824
11041
|
|
|
10825
11042
|
// Owm methods of Mx-2.0.Mx.Pager
|
|
10826
11043
|
|
|
@@ -11200,6 +11417,7 @@ module PathBar {
|
|
|
11200
11417
|
|
|
11201
11418
|
clear_on_change?: boolean | null
|
|
11202
11419
|
editable?: boolean | null
|
|
11420
|
+
clearOnChange?: boolean | null
|
|
11203
11421
|
}
|
|
11204
11422
|
|
|
11205
11423
|
}
|
|
@@ -11209,6 +11427,7 @@ interface PathBar extends Atk.ImplementorIface, Clutter.Animatable, Clutter.Cont
|
|
|
11209
11427
|
// Own properties of Mx-2.0.Mx.PathBar
|
|
11210
11428
|
|
|
11211
11429
|
clear_on_change: boolean
|
|
11430
|
+
clearOnChange: boolean
|
|
11212
11431
|
editable: boolean
|
|
11213
11432
|
readonly entry: Entry
|
|
11214
11433
|
readonly level: number
|
|
@@ -11239,11 +11458,11 @@ interface PathBar extends Atk.ImplementorIface, Clutter.Animatable, Clutter.Cont
|
|
|
11239
11458
|
* @returns MxEntry *
|
|
11240
11459
|
*/
|
|
11241
11460
|
get_entry(): Entry
|
|
11242
|
-
get_label(level: number): string
|
|
11461
|
+
get_label(level: number): string
|
|
11243
11462
|
get_level(): number
|
|
11244
|
-
get_text(): string
|
|
11463
|
+
get_text(): string
|
|
11245
11464
|
pop(): number
|
|
11246
|
-
push(name: string
|
|
11465
|
+
push(name: string): number
|
|
11247
11466
|
/**
|
|
11248
11467
|
* Set theh value of the #MxPathBar:clear-on-change property
|
|
11249
11468
|
* @param clear_on_change the new value of the property
|
|
@@ -11259,12 +11478,12 @@ interface PathBar extends Atk.ImplementorIface, Clutter.Animatable, Clutter.Cont
|
|
|
11259
11478
|
* @param level A #gint
|
|
11260
11479
|
* @param label A #gchar
|
|
11261
11480
|
*/
|
|
11262
|
-
set_label(level: number, label: string
|
|
11481
|
+
set_label(level: number, label: string): void
|
|
11263
11482
|
/**
|
|
11264
11483
|
* Set the text in the editable area of the #MxPathBar
|
|
11265
11484
|
* @param text string to set the editable text to.
|
|
11266
11485
|
*/
|
|
11267
|
-
set_text(text: string
|
|
11486
|
+
set_text(text: string): void
|
|
11268
11487
|
|
|
11269
11488
|
// Conflicting methods
|
|
11270
11489
|
|
|
@@ -12369,6 +12588,9 @@ module ScrollView {
|
|
|
12369
12588
|
enable_mouse_scrolling?: boolean | null
|
|
12370
12589
|
scroll_policy?: ScrollPolicy | null
|
|
12371
12590
|
scroll_visibility?: ScrollPolicy | null
|
|
12591
|
+
enableMouseScrolling?: boolean | null
|
|
12592
|
+
scrollPolicy?: ScrollPolicy | null
|
|
12593
|
+
scrollVisibility?: ScrollPolicy | null
|
|
12372
12594
|
}
|
|
12373
12595
|
|
|
12374
12596
|
}
|
|
@@ -12378,8 +12600,11 @@ interface ScrollView extends Atk.ImplementorIface, Clutter.Animatable, Clutter.C
|
|
|
12378
12600
|
// Own properties of Mx-2.0.Mx.ScrollView
|
|
12379
12601
|
|
|
12380
12602
|
enable_mouse_scrolling: boolean
|
|
12603
|
+
enableMouseScrolling: boolean
|
|
12381
12604
|
scroll_policy: ScrollPolicy
|
|
12605
|
+
scrollPolicy: ScrollPolicy
|
|
12382
12606
|
scroll_visibility: ScrollPolicy
|
|
12607
|
+
scrollVisibility: ScrollPolicy
|
|
12383
12608
|
|
|
12384
12609
|
// Owm methods of Mx-2.0.Mx.ScrollView
|
|
12385
12610
|
|
|
@@ -12735,6 +12960,12 @@ module Settings {
|
|
|
12735
12960
|
long_press_timeout?: number | null
|
|
12736
12961
|
small_screen?: boolean | null
|
|
12737
12962
|
touch_mode?: boolean | null
|
|
12963
|
+
dragThreshold?: number | null
|
|
12964
|
+
fontName?: string | null
|
|
12965
|
+
iconTheme?: string | null
|
|
12966
|
+
longPressTimeout?: number | null
|
|
12967
|
+
smallScreen?: boolean | null
|
|
12968
|
+
touchMode?: boolean | null
|
|
12738
12969
|
}
|
|
12739
12970
|
|
|
12740
12971
|
}
|
|
@@ -12744,11 +12975,17 @@ interface Settings {
|
|
|
12744
12975
|
// Own properties of Mx-2.0.Mx.Settings
|
|
12745
12976
|
|
|
12746
12977
|
drag_threshold: number
|
|
12978
|
+
dragThreshold: number
|
|
12747
12979
|
font_name: string | null
|
|
12980
|
+
fontName: string | null
|
|
12748
12981
|
icon_theme: string | null
|
|
12982
|
+
iconTheme: string | null
|
|
12749
12983
|
long_press_timeout: number
|
|
12984
|
+
longPressTimeout: number
|
|
12750
12985
|
small_screen: boolean
|
|
12986
|
+
smallScreen: boolean
|
|
12751
12987
|
touch_mode: boolean
|
|
12988
|
+
touchMode: boolean
|
|
12752
12989
|
|
|
12753
12990
|
// Own fields of Mx-2.0.Mx.Settings
|
|
12754
12991
|
|
|
@@ -12826,6 +13063,7 @@ module Slider {
|
|
|
12826
13063
|
|
|
12827
13064
|
buffer_value?: number | null
|
|
12828
13065
|
value?: number | null
|
|
13066
|
+
bufferValue?: number | null
|
|
12829
13067
|
}
|
|
12830
13068
|
|
|
12831
13069
|
}
|
|
@@ -12835,6 +13073,7 @@ interface Slider extends Atk.ImplementorIface, Clutter.Animatable, Clutter.Conta
|
|
|
12835
13073
|
// Own properties of Mx-2.0.Mx.Slider
|
|
12836
13074
|
|
|
12837
13075
|
buffer_value: number
|
|
13076
|
+
bufferValue: number
|
|
12838
13077
|
value: number
|
|
12839
13078
|
|
|
12840
13079
|
// Owm methods of Mx-2.0.Mx.Slider
|
|
@@ -14009,6 +14248,10 @@ module StackChild {
|
|
|
14009
14248
|
x_fill?: boolean | null
|
|
14010
14249
|
y_align?: Align | null
|
|
14011
14250
|
y_fill?: boolean | null
|
|
14251
|
+
xAlign?: Align | null
|
|
14252
|
+
xFill?: boolean | null
|
|
14253
|
+
yAlign?: Align | null
|
|
14254
|
+
yFill?: boolean | null
|
|
14012
14255
|
}
|
|
14013
14256
|
|
|
14014
14257
|
}
|
|
@@ -14020,9 +14263,13 @@ interface StackChild {
|
|
|
14020
14263
|
crop: boolean
|
|
14021
14264
|
fit: boolean
|
|
14022
14265
|
x_align: Align
|
|
14266
|
+
xAlign: Align
|
|
14023
14267
|
x_fill: boolean
|
|
14268
|
+
xFill: boolean
|
|
14024
14269
|
y_align: Align
|
|
14270
|
+
yAlign: Align
|
|
14025
14271
|
y_fill: boolean
|
|
14272
|
+
yFill: boolean
|
|
14026
14273
|
|
|
14027
14274
|
// Class property signals of Mx-2.0.Mx.StackChild
|
|
14028
14275
|
|
|
@@ -14120,7 +14367,7 @@ interface Style {
|
|
|
14120
14367
|
* @param property_name the name of the property to get
|
|
14121
14368
|
* @param value return location for the property value
|
|
14122
14369
|
*/
|
|
14123
|
-
get_property(property_name: string
|
|
14370
|
+
get_property(property_name: string, value: any): void
|
|
14124
14371
|
/**
|
|
14125
14372
|
* Load style information from `data,` using `id` to identify the stylesheet.
|
|
14126
14373
|
* `id` is usually the file name of the style sheet, which is used in the search
|
|
@@ -14129,14 +14376,14 @@ interface Style {
|
|
|
14129
14376
|
* @param data CSS data to parse
|
|
14130
14377
|
* @returns TRUE if the style information was loaded successfully. Returns FALSE on error.
|
|
14131
14378
|
*/
|
|
14132
|
-
load_from_data(id: string
|
|
14379
|
+
load_from_data(id: string, data: string): boolean
|
|
14133
14380
|
/**
|
|
14134
14381
|
* Load style information from the specified file.
|
|
14135
14382
|
* @param filename filename of the style sheet to load
|
|
14136
14383
|
* @returns TRUE if the style information was loaded successfully. Returns FALSE on error.
|
|
14137
14384
|
*/
|
|
14138
|
-
load_from_file(filename: string
|
|
14139
|
-
load_from_resource(path: string
|
|
14385
|
+
load_from_file(filename: string): boolean
|
|
14386
|
+
load_from_resource(path: string): boolean
|
|
14140
14387
|
|
|
14141
14388
|
// Own virtual methods of Mx-2.0.Mx.Style
|
|
14142
14389
|
|
|
@@ -14204,6 +14451,8 @@ module Table {
|
|
|
14204
14451
|
|
|
14205
14452
|
column_spacing?: number | null
|
|
14206
14453
|
row_spacing?: number | null
|
|
14454
|
+
columnSpacing?: number | null
|
|
14455
|
+
rowSpacing?: number | null
|
|
14207
14456
|
}
|
|
14208
14457
|
|
|
14209
14458
|
}
|
|
@@ -14213,9 +14462,13 @@ interface Table extends Atk.ImplementorIface, Clutter.Animatable, Clutter.Contai
|
|
|
14213
14462
|
// Own properties of Mx-2.0.Mx.Table
|
|
14214
14463
|
|
|
14215
14464
|
readonly column_count: number
|
|
14465
|
+
readonly columnCount: number
|
|
14216
14466
|
column_spacing: number
|
|
14467
|
+
columnSpacing: number
|
|
14217
14468
|
readonly row_count: number
|
|
14469
|
+
readonly rowCount: number
|
|
14218
14470
|
row_spacing: number
|
|
14471
|
+
rowSpacing: number
|
|
14219
14472
|
|
|
14220
14473
|
// Owm methods of Mx-2.0.Mx.Table
|
|
14221
14474
|
|
|
@@ -14750,6 +15003,14 @@ module TableChild {
|
|
|
14750
15003
|
y_align?: Align | null
|
|
14751
15004
|
y_expand?: boolean | null
|
|
14752
15005
|
y_fill?: boolean | null
|
|
15006
|
+
columnSpan?: number | null
|
|
15007
|
+
rowSpan?: number | null
|
|
15008
|
+
xAlign?: Align | null
|
|
15009
|
+
xExpand?: boolean | null
|
|
15010
|
+
xFill?: boolean | null
|
|
15011
|
+
yAlign?: Align | null
|
|
15012
|
+
yExpand?: boolean | null
|
|
15013
|
+
yFill?: boolean | null
|
|
14753
15014
|
}
|
|
14754
15015
|
|
|
14755
15016
|
}
|
|
@@ -14760,14 +15021,22 @@ interface TableChild {
|
|
|
14760
15021
|
|
|
14761
15022
|
column: number
|
|
14762
15023
|
column_span: number
|
|
15024
|
+
columnSpan: number
|
|
14763
15025
|
row: number
|
|
14764
15026
|
row_span: number
|
|
15027
|
+
rowSpan: number
|
|
14765
15028
|
x_align: Align
|
|
15029
|
+
xAlign: Align
|
|
14766
15030
|
x_expand: boolean
|
|
15031
|
+
xExpand: boolean
|
|
14767
15032
|
x_fill: boolean
|
|
15033
|
+
xFill: boolean
|
|
14768
15034
|
y_align: Align
|
|
15035
|
+
yAlign: Align
|
|
14769
15036
|
y_expand: boolean
|
|
15037
|
+
yExpand: boolean
|
|
14770
15038
|
y_fill: boolean
|
|
15039
|
+
yFill: boolean
|
|
14771
15040
|
|
|
14772
15041
|
// Class property signals of Mx-2.0.Mx.TableChild
|
|
14773
15042
|
|
|
@@ -14844,7 +15113,7 @@ interface TextureCache {
|
|
|
14844
15113
|
* @param uri A URI or path to an image file
|
|
14845
15114
|
* @returns %TRUE if the image exists, %FALSE otherwise
|
|
14846
15115
|
*/
|
|
14847
|
-
contains(uri: string
|
|
15116
|
+
contains(uri: string): boolean
|
|
14848
15117
|
/**
|
|
14849
15118
|
* Checks whether there are any textures associated with the given URI by
|
|
14850
15119
|
* the given identifier.
|
|
@@ -14852,14 +15121,14 @@ interface TextureCache {
|
|
|
14852
15121
|
* @param ident A unique identifier
|
|
14853
15122
|
* @returns %TRUE if the data exists, %FALSE otherwise
|
|
14854
15123
|
*/
|
|
14855
|
-
contains_meta(uri: string
|
|
15124
|
+
contains_meta(uri: string, ident: any): boolean
|
|
14856
15125
|
/**
|
|
14857
15126
|
* This is a wrapper around mx_texture_cache_get_texture() which returns
|
|
14858
15127
|
* a ClutterActor.
|
|
14859
15128
|
* @param uri A URI or path to a image file
|
|
14860
15129
|
* @returns a newly created ClutterTexture
|
|
14861
15130
|
*/
|
|
14862
|
-
get_actor(uri: string
|
|
15131
|
+
get_actor(uri: string): Clutter.Actor
|
|
14863
15132
|
/**
|
|
14864
15133
|
* Create a #CoglHandle representing a texture of the specified image. Adds
|
|
14865
15134
|
* the image to the cache if the image had not been previously loaded.
|
|
@@ -14868,7 +15137,7 @@ interface TextureCache {
|
|
|
14868
15137
|
* @param uri A URI or path to an image file
|
|
14869
15138
|
* @returns a #CoglHandle to the cached texture
|
|
14870
15139
|
*/
|
|
14871
|
-
get_cogl_texture(uri: string
|
|
15140
|
+
get_cogl_texture(uri: string): Cogl.Handle
|
|
14872
15141
|
/**
|
|
14873
15142
|
* Retrieves the #CoglHandle of the previously added image associated
|
|
14874
15143
|
* with the given unique identifier.
|
|
@@ -14878,7 +15147,7 @@ interface TextureCache {
|
|
|
14878
15147
|
* @param ident A unique identifier
|
|
14879
15148
|
* @returns A #CoglHandle to a texture, with an added reference. %NULL if no image was found.
|
|
14880
15149
|
*/
|
|
14881
|
-
get_meta_cogl_texture(uri: string
|
|
15150
|
+
get_meta_cogl_texture(uri: string, ident: any): Cogl.Handle
|
|
14882
15151
|
/**
|
|
14883
15152
|
* Create a new ClutterTexture using the previously added image associated
|
|
14884
15153
|
* with the given unique identifier.
|
|
@@ -14888,7 +15157,7 @@ interface TextureCache {
|
|
|
14888
15157
|
* @param ident A unique identifier
|
|
14889
15158
|
* @returns A newly allocated #ClutterTexture, or %NULL if no image was found
|
|
14890
15159
|
*/
|
|
14891
|
-
get_meta_texture(uri: string
|
|
15160
|
+
get_meta_texture(uri: string, ident: any): Clutter.Texture
|
|
14892
15161
|
/**
|
|
14893
15162
|
* Returns the number of items in the texture cache
|
|
14894
15163
|
* @returns the current size of the cache
|
|
@@ -14902,7 +15171,7 @@ interface TextureCache {
|
|
|
14902
15171
|
* @param uri A URI or path to a image file
|
|
14903
15172
|
* @returns a newly created ClutterTexture
|
|
14904
15173
|
*/
|
|
14905
|
-
get_texture(uri: string
|
|
15174
|
+
get_texture(uri: string): Clutter.Texture
|
|
14906
15175
|
/**
|
|
14907
15176
|
* Inserts a texture into the texture cache. This can be useful if you
|
|
14908
15177
|
* want to cache a texture from a custom or unhandled URI type, or you
|
|
@@ -14913,7 +15182,7 @@ interface TextureCache {
|
|
|
14913
15182
|
* @param uri A URI or local file path
|
|
14914
15183
|
* @param texture A #CoglHandle to a texture
|
|
14915
15184
|
*/
|
|
14916
|
-
insert(uri: string
|
|
15185
|
+
insert(uri: string, texture: Cogl.Handle): void
|
|
14917
15186
|
/**
|
|
14918
15187
|
* Inserts a texture that's associated with a URI into the cache.
|
|
14919
15188
|
* If the metadata already exists for this URI, it will be replaced.
|
|
@@ -14925,13 +15194,13 @@ interface TextureCache {
|
|
|
14925
15194
|
* @param texture A #CoglHandle to a texture
|
|
14926
15195
|
* @param destroy_func An optional destruction function for `ident`
|
|
14927
15196
|
*/
|
|
14928
|
-
insert_meta(uri: string
|
|
14929
|
-
load_cache(filename: string
|
|
15197
|
+
insert_meta(uri: string, ident: any, texture: Cogl.Handle, destroy_func: GLib.DestroyNotify): void
|
|
15198
|
+
load_cache(filename: string): void
|
|
14930
15199
|
|
|
14931
15200
|
// Own virtual methods of Mx-2.0.Mx.TextureCache
|
|
14932
15201
|
|
|
14933
15202
|
vfunc_error_loading(error: GLib.Error): void
|
|
14934
|
-
vfunc_loaded(uri: string
|
|
15203
|
+
vfunc_loaded(uri: string, texture: Clutter.Texture): void
|
|
14935
15204
|
|
|
14936
15205
|
// Class property signals of Mx-2.0.Mx.TextureCache
|
|
14937
15206
|
|
|
@@ -14978,6 +15247,7 @@ module TextureFrame {
|
|
|
14978
15247
|
parent_texture?: Clutter.Texture | null
|
|
14979
15248
|
right?: number | null
|
|
14980
15249
|
top?: number | null
|
|
15250
|
+
parentTexture?: Clutter.Texture | null
|
|
14981
15251
|
}
|
|
14982
15252
|
|
|
14983
15253
|
}
|
|
@@ -14989,6 +15259,7 @@ interface TextureFrame extends Atk.ImplementorIface, Clutter.Animatable, Clutter
|
|
|
14989
15259
|
bottom: number
|
|
14990
15260
|
left: number
|
|
14991
15261
|
parent_texture: Clutter.Texture
|
|
15262
|
+
parentTexture: Clutter.Texture
|
|
14992
15263
|
right: number
|
|
14993
15264
|
top: number
|
|
14994
15265
|
|
|
@@ -15722,6 +15993,7 @@ module Toolbar {
|
|
|
15722
15993
|
// Own constructor properties of Mx-2.0.Mx.Toolbar
|
|
15723
15994
|
|
|
15724
15995
|
has_close_button?: boolean | null
|
|
15996
|
+
hasCloseButton?: boolean | null
|
|
15725
15997
|
}
|
|
15726
15998
|
|
|
15727
15999
|
}
|
|
@@ -15731,6 +16003,7 @@ interface Toolbar extends Atk.ImplementorIface, Clutter.Animatable, Clutter.Cont
|
|
|
15731
16003
|
// Own properties of Mx-2.0.Mx.Toolbar
|
|
15732
16004
|
|
|
15733
16005
|
has_close_button: boolean
|
|
16006
|
+
hasCloseButton: boolean
|
|
15734
16007
|
|
|
15735
16008
|
// Own fields of Mx-2.0.Mx.Toolbar
|
|
15736
16009
|
|
|
@@ -16101,6 +16374,7 @@ module Tooltip {
|
|
|
16101
16374
|
|
|
16102
16375
|
text?: string | null
|
|
16103
16376
|
tip_area?: Clutter.Geometry | null
|
|
16377
|
+
tipArea?: Clutter.Geometry | null
|
|
16104
16378
|
}
|
|
16105
16379
|
|
|
16106
16380
|
}
|
|
@@ -16111,6 +16385,7 @@ interface Tooltip extends Atk.ImplementorIface, Clutter.Animatable, Clutter.Cont
|
|
|
16111
16385
|
|
|
16112
16386
|
text: string | null
|
|
16113
16387
|
tip_area: Clutter.Geometry
|
|
16388
|
+
tipArea: Clutter.Geometry
|
|
16114
16389
|
|
|
16115
16390
|
// Owm methods of Mx-2.0.Mx.Tooltip
|
|
16116
16391
|
|
|
@@ -16118,7 +16393,7 @@ interface Tooltip extends Atk.ImplementorIface, Clutter.Animatable, Clutter.Cont
|
|
|
16118
16393
|
* Get the text displayed on the tooltip
|
|
16119
16394
|
* @returns the text for the tooltip. This must not be freed by the application
|
|
16120
16395
|
*/
|
|
16121
|
-
get_text(): string
|
|
16396
|
+
get_text(): string
|
|
16122
16397
|
/**
|
|
16123
16398
|
* Retrieve the area on the stage that the tooltip currently applies to
|
|
16124
16399
|
* @returns the #ClutterGeometry, owned by the tooltip which must not be freed by the application.
|
|
@@ -16132,7 +16407,7 @@ interface Tooltip extends Atk.ImplementorIface, Clutter.Animatable, Clutter.Cont
|
|
|
16132
16407
|
* Sets the text displayed on the tooltip
|
|
16133
16408
|
* @param text text to set the label to
|
|
16134
16409
|
*/
|
|
16135
|
-
set_text(text: string
|
|
16410
|
+
set_text(text: string): void
|
|
16136
16411
|
/**
|
|
16137
16412
|
* Set the area on the stage that the tooltip applies to.
|
|
16138
16413
|
* @param area A #ClutterGeometry
|
|
@@ -16490,6 +16765,10 @@ module Viewport {
|
|
|
16490
16765
|
x_origin?: number | null
|
|
16491
16766
|
y_origin?: number | null
|
|
16492
16767
|
z_origin?: number | null
|
|
16768
|
+
syncAdjustments?: boolean | null
|
|
16769
|
+
xOrigin?: number | null
|
|
16770
|
+
yOrigin?: number | null
|
|
16771
|
+
zOrigin?: number | null
|
|
16493
16772
|
}
|
|
16494
16773
|
|
|
16495
16774
|
}
|
|
@@ -16499,14 +16778,20 @@ interface Viewport extends Atk.ImplementorIface, Clutter.Animatable, Clutter.Con
|
|
|
16499
16778
|
// Own properties of Mx-2.0.Mx.Viewport
|
|
16500
16779
|
|
|
16501
16780
|
sync_adjustments: boolean
|
|
16781
|
+
syncAdjustments: boolean
|
|
16502
16782
|
x_origin: number
|
|
16783
|
+
xOrigin: number
|
|
16503
16784
|
y_origin: number
|
|
16785
|
+
yOrigin: number
|
|
16504
16786
|
z_origin: number
|
|
16787
|
+
zOrigin: number
|
|
16505
16788
|
|
|
16506
16789
|
// Conflicting properties
|
|
16507
16790
|
|
|
16508
16791
|
x_align: any
|
|
16792
|
+
xAlign: any
|
|
16509
16793
|
y_align: any
|
|
16794
|
+
yAlign: any
|
|
16510
16795
|
|
|
16511
16796
|
// Owm methods of Mx-2.0.Mx.Viewport
|
|
16512
16797
|
|
|
@@ -16886,6 +17171,11 @@ module Widget {
|
|
|
16886
17171
|
* text displayed on the tooltip
|
|
16887
17172
|
*/
|
|
16888
17173
|
tooltip_text?: string | null
|
|
17174
|
+
tooltipDelay?: number | null
|
|
17175
|
+
/**
|
|
17176
|
+
* text displayed on the tooltip
|
|
17177
|
+
*/
|
|
17178
|
+
tooltipText?: string | null
|
|
16889
17179
|
}
|
|
16890
17180
|
|
|
16891
17181
|
}
|
|
@@ -16900,10 +17190,15 @@ interface Widget extends Atk.ImplementorIface, Clutter.Animatable, Clutter.Conta
|
|
|
16900
17190
|
*/
|
|
16901
17191
|
menu: Menu
|
|
16902
17192
|
tooltip_delay: number
|
|
17193
|
+
tooltipDelay: number
|
|
16903
17194
|
/**
|
|
16904
17195
|
* text displayed on the tooltip
|
|
16905
17196
|
*/
|
|
16906
17197
|
tooltip_text: string | null
|
|
17198
|
+
/**
|
|
17199
|
+
* text displayed on the tooltip
|
|
17200
|
+
*/
|
|
17201
|
+
tooltipText: string | null
|
|
16907
17202
|
|
|
16908
17203
|
// Owm methods of Mx-2.0.Mx.Widget
|
|
16909
17204
|
|
|
@@ -16965,7 +17260,7 @@ interface Widget extends Atk.ImplementorIface, Clutter.Animatable, Clutter.Conta
|
|
|
16965
17260
|
* Get the current tooltip string
|
|
16966
17261
|
* @returns The current tooltip string, owned by the #MxWidget
|
|
16967
17262
|
*/
|
|
16968
|
-
get_tooltip_text(): string
|
|
17263
|
+
get_tooltip_text(): string
|
|
16969
17264
|
/**
|
|
16970
17265
|
* Hide the tooltip for `widget`
|
|
16971
17266
|
*/
|
|
@@ -17004,7 +17299,7 @@ interface Widget extends Atk.ImplementorIface, Clutter.Animatable, Clutter.Conta
|
|
|
17004
17299
|
* %FALSE.
|
|
17005
17300
|
* @param text text to set as the tooltip
|
|
17006
17301
|
*/
|
|
17007
|
-
set_tooltip_text(text: string
|
|
17302
|
+
set_tooltip_text(text: string): void
|
|
17008
17303
|
/**
|
|
17009
17304
|
* Show the tooltip for `widget`
|
|
17010
17305
|
*/
|
|
@@ -17342,6 +17637,12 @@ module Window {
|
|
|
17342
17637
|
title?: string | null
|
|
17343
17638
|
toolbar?: Toolbar | null
|
|
17344
17639
|
window_rotation?: WindowRotation | null
|
|
17640
|
+
clutterStage?: Clutter.Stage | null
|
|
17641
|
+
hasToolbar?: boolean | null
|
|
17642
|
+
iconCoglTexture?: string | null
|
|
17643
|
+
iconName?: string | null
|
|
17644
|
+
smallScreen?: boolean | null
|
|
17645
|
+
windowRotation?: WindowRotation | null
|
|
17345
17646
|
}
|
|
17346
17647
|
|
|
17347
17648
|
}
|
|
@@ -17352,16 +17653,24 @@ interface Window {
|
|
|
17352
17653
|
|
|
17353
17654
|
child: Clutter.Actor
|
|
17354
17655
|
readonly clutter_stage: Clutter.Stage
|
|
17656
|
+
readonly clutterStage: Clutter.Stage
|
|
17355
17657
|
fullscreen: boolean
|
|
17356
17658
|
has_toolbar: boolean
|
|
17659
|
+
hasToolbar: boolean
|
|
17357
17660
|
icon_cogl_texture: string | null
|
|
17661
|
+
iconCoglTexture: string | null
|
|
17358
17662
|
icon_name: string | null
|
|
17663
|
+
iconName: string | null
|
|
17359
17664
|
small_screen: boolean
|
|
17665
|
+
smallScreen: boolean
|
|
17360
17666
|
title: string | null
|
|
17361
17667
|
toolbar: Toolbar
|
|
17362
17668
|
window_rotation: WindowRotation
|
|
17669
|
+
windowRotation: WindowRotation
|
|
17363
17670
|
readonly window_rotation_angle: number
|
|
17671
|
+
readonly windowRotationAngle: number
|
|
17364
17672
|
readonly window_rotation_timeline: Clutter.Timeline
|
|
17673
|
+
readonly windowRotationTimeline: Clutter.Timeline
|
|
17365
17674
|
|
|
17366
17675
|
// Own fields of Mx-2.0.Mx.Window
|
|
17367
17676
|
|
|
@@ -17396,7 +17705,7 @@ interface Window {
|
|
|
17396
17705
|
* set, or the icon was set with mx_window_set_icon_from_cogl_texture().
|
|
17397
17706
|
* @returns The window icon name, or %NULL
|
|
17398
17707
|
*/
|
|
17399
|
-
get_icon_name(): string
|
|
17708
|
+
get_icon_name(): string
|
|
17400
17709
|
/**
|
|
17401
17710
|
* Determines if the window is in small-screen mode.
|
|
17402
17711
|
* See mx_window_set_small_screen().
|
|
@@ -17407,7 +17716,7 @@ interface Window {
|
|
|
17407
17716
|
* Retrieves the title used for the window.
|
|
17408
17717
|
* @returns The title used for the window
|
|
17409
17718
|
*/
|
|
17410
|
-
get_title(): string
|
|
17719
|
+
get_title(): string
|
|
17411
17720
|
/**
|
|
17412
17721
|
* Retrieves the toolbar associated with the window.
|
|
17413
17722
|
* @returns A #MxToolbar
|
|
@@ -17485,7 +17794,7 @@ interface Window {
|
|
|
17485
17794
|
* window-system specific.
|
|
17486
17795
|
* @param title A string to use for the window title name
|
|
17487
17796
|
*/
|
|
17488
|
-
set_title(title: string
|
|
17797
|
+
set_title(title: string): void
|
|
17489
17798
|
/**
|
|
17490
17799
|
* Sets the toolbar associated with the window.
|
|
17491
17800
|
* @param toolbar
|
|
@@ -17776,7 +18085,7 @@ class BorderImage {
|
|
|
17776
18085
|
|
|
17777
18086
|
// Constructors of Mx-2.0.Mx.BorderImage
|
|
17778
18087
|
|
|
17779
|
-
static set_from_string(value: any, str: string
|
|
18088
|
+
static set_from_string(value: any, str: string, filename: string): void
|
|
17780
18089
|
}
|
|
17781
18090
|
|
|
17782
18091
|
interface BoxLayoutChildClass {
|
|
@@ -18715,10 +19024,10 @@ interface StylableIface {
|
|
|
18715
19024
|
|
|
18716
19025
|
get_style: (stylable: Stylable) => Style
|
|
18717
19026
|
set_style: (stylable: Stylable, style: Style) => void
|
|
18718
|
-
get_style_class: (stylable: Stylable) => string
|
|
18719
|
-
set_style_class: (stylable: Stylable, style_class: string
|
|
18720
|
-
get_style_pseudo_class: (stylable: Stylable) => string
|
|
18721
|
-
set_style_pseudo_class: (stylable: Stylable, pseudo_class: string
|
|
19027
|
+
get_style_class: (stylable: Stylable) => string
|
|
19028
|
+
set_style_class: (stylable: Stylable, style_class: string) => void
|
|
19029
|
+
get_style_pseudo_class: (stylable: Stylable) => string
|
|
19030
|
+
set_style_pseudo_class: (stylable: Stylable, pseudo_class: string) => void
|
|
18722
19031
|
style_changed: (stylable: Stylable, flags: StyleChangedFlags) => void
|
|
18723
19032
|
}
|
|
18724
19033
|
|
|
@@ -18857,7 +19166,7 @@ interface TextureCacheClass {
|
|
|
18857
19166
|
// Own fields of Mx-2.0.Mx.TextureCacheClass
|
|
18858
19167
|
|
|
18859
19168
|
parent_class: GObject.ObjectClass
|
|
18860
|
-
loaded: (self: TextureCache, uri: string
|
|
19169
|
+
loaded: (self: TextureCache, uri: string, texture: Clutter.Texture) => void
|
|
18861
19170
|
error_loading: (self: TextureCache, error: GLib.Error) => void
|
|
18862
19171
|
}
|
|
18863
19172
|
|