@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.cts
CHANGED
|
@@ -287,10 +287,10 @@ export const VERSION_HEX: number
|
|
|
287
287
|
* The full version of the Mx library, in string form (suited for
|
|
288
288
|
* string concatenation)
|
|
289
289
|
*/
|
|
290
|
-
export const VERSION_S: string
|
|
290
|
+
export const VERSION_S: string
|
|
291
291
|
export function actor_box_clamp_to_pixels(box: Clutter.ActorBox): void
|
|
292
292
|
export function allocate_align_fill(child: Clutter.Actor, childbox: Clutter.ActorBox, x_alignment: Align, y_alignment: Align, x_fill: boolean, y_fill: boolean): void
|
|
293
|
-
export function border_image_set_from_string(value: any, str: string
|
|
293
|
+
export function border_image_set_from_string(value: any, str: string, filename: string): void
|
|
294
294
|
/**
|
|
295
295
|
* Transforms a focus direction to a focus hint. This is a convenience
|
|
296
296
|
* function for actors that implement the #MxFocusable interface, to
|
|
@@ -308,7 +308,7 @@ export function border_image_set_from_string(value: any, str: string | null, fil
|
|
|
308
308
|
* @returns A #MxFocusHint
|
|
309
309
|
*/
|
|
310
310
|
export function focus_hint_from_direction(direction: FocusDirection): FocusHint
|
|
311
|
-
export function font_weight_set_from_string(value: any, str: string
|
|
311
|
+
export function font_weight_set_from_string(value: any, str: string): void
|
|
312
312
|
export function image_error_quark(): GLib.Quark
|
|
313
313
|
/**
|
|
314
314
|
* Initializes internationalization support for Mx. If MxApplication is
|
|
@@ -339,7 +339,7 @@ export interface ActionCallbackFunc {
|
|
|
339
339
|
* @param text text from the clipboard
|
|
340
340
|
*/
|
|
341
341
|
export interface ClipboardCallbackFunc {
|
|
342
|
-
(clipboard: Clipboard, text: string
|
|
342
|
+
(clipboard: Clipboard, text: string): void
|
|
343
343
|
}
|
|
344
344
|
export module Draggable {
|
|
345
345
|
|
|
@@ -377,6 +377,9 @@ export module Draggable {
|
|
|
377
377
|
drag_actor?: Clutter.Actor | null
|
|
378
378
|
drag_enabled?: boolean | null
|
|
379
379
|
drag_threshold?: number | null
|
|
380
|
+
dragActor?: Clutter.Actor | null
|
|
381
|
+
dragEnabled?: boolean | null
|
|
382
|
+
dragThreshold?: number | null
|
|
380
383
|
}
|
|
381
384
|
|
|
382
385
|
}
|
|
@@ -387,8 +390,11 @@ export interface Draggable extends Clutter.Actor {
|
|
|
387
390
|
|
|
388
391
|
axis: DragAxis
|
|
389
392
|
drag_actor: Clutter.Actor
|
|
393
|
+
dragActor: Clutter.Actor
|
|
390
394
|
drag_enabled: boolean
|
|
395
|
+
dragEnabled: boolean
|
|
391
396
|
drag_threshold: number
|
|
397
|
+
dragThreshold: number
|
|
392
398
|
|
|
393
399
|
// Owm methods of Mx-2.0.Mx.Draggable
|
|
394
400
|
|
|
@@ -742,6 +748,7 @@ export module Droppable {
|
|
|
742
748
|
// Own constructor properties of Mx-2.0.Mx.Droppable
|
|
743
749
|
|
|
744
750
|
drop_enabled?: boolean | null
|
|
751
|
+
dropEnabled?: boolean | null
|
|
745
752
|
}
|
|
746
753
|
|
|
747
754
|
}
|
|
@@ -751,6 +758,7 @@ export interface Droppable extends Clutter.Actor {
|
|
|
751
758
|
// Own properties of Mx-2.0.Mx.Droppable
|
|
752
759
|
|
|
753
760
|
drop_enabled: boolean
|
|
761
|
+
dropEnabled: boolean
|
|
754
762
|
|
|
755
763
|
// Owm methods of Mx-2.0.Mx.Droppable
|
|
756
764
|
|
|
@@ -1187,6 +1195,8 @@ export module Scrollable {
|
|
|
1187
1195
|
|
|
1188
1196
|
horizontal_adjustment?: Adjustment | null
|
|
1189
1197
|
vertical_adjustment?: Adjustment | null
|
|
1198
|
+
horizontalAdjustment?: Adjustment | null
|
|
1199
|
+
verticalAdjustment?: Adjustment | null
|
|
1190
1200
|
}
|
|
1191
1201
|
|
|
1192
1202
|
}
|
|
@@ -1196,7 +1206,9 @@ export interface Scrollable {
|
|
|
1196
1206
|
// Own properties of Mx-2.0.Mx.Scrollable
|
|
1197
1207
|
|
|
1198
1208
|
horizontal_adjustment: Adjustment
|
|
1209
|
+
horizontalAdjustment: Adjustment
|
|
1199
1210
|
vertical_adjustment: Adjustment
|
|
1211
|
+
verticalAdjustment: Adjustment
|
|
1200
1212
|
|
|
1201
1213
|
// Owm methods of Mx-2.0.Mx.Scrollable
|
|
1202
1214
|
|
|
@@ -1269,6 +1281,8 @@ export module Stylable {
|
|
|
1269
1281
|
style?: Style | null
|
|
1270
1282
|
style_class?: string | null
|
|
1271
1283
|
style_pseudo_class?: string | null
|
|
1284
|
+
styleClass?: string | null
|
|
1285
|
+
stylePseudoClass?: string | null
|
|
1272
1286
|
}
|
|
1273
1287
|
|
|
1274
1288
|
}
|
|
@@ -1279,7 +1293,9 @@ export interface Stylable {
|
|
|
1279
1293
|
|
|
1280
1294
|
style: Style
|
|
1281
1295
|
style_class: string | null
|
|
1296
|
+
styleClass: string | null
|
|
1282
1297
|
style_pseudo_class: string | null
|
|
1298
|
+
stylePseudoClass: string | null
|
|
1283
1299
|
|
|
1284
1300
|
// Owm methods of Mx-2.0.Mx.Stylable
|
|
1285
1301
|
|
|
@@ -1292,14 +1308,14 @@ export interface Stylable {
|
|
|
1292
1308
|
* @param property_name the name of the property to find
|
|
1293
1309
|
* @returns a #GParamSpec for the given property, or %NULL if no property with that name was found
|
|
1294
1310
|
*/
|
|
1295
|
-
find_property(property_name: string
|
|
1311
|
+
find_property(property_name: string): GObject.ParamSpec
|
|
1296
1312
|
/**
|
|
1297
1313
|
* Query `stylable` for the default value of property `property_name` and
|
|
1298
1314
|
* fill `value_out` with the result.
|
|
1299
1315
|
* @param property_name name of the property to query
|
|
1300
1316
|
* @returns %TRUE if property @property_name exists and the default value has been returned.
|
|
1301
1317
|
*/
|
|
1302
|
-
get_default_value(property_name: string
|
|
1318
|
+
get_default_value(property_name: string): [ /* returnType */ boolean, /* value_out */ any ]
|
|
1303
1319
|
/**
|
|
1304
1320
|
* Retrieves the #MxStyle used by `stylable`. This function does not
|
|
1305
1321
|
* alter the reference count of the returned object.
|
|
@@ -1310,19 +1326,19 @@ export interface Stylable {
|
|
|
1310
1326
|
* Get the current style class name
|
|
1311
1327
|
* @returns the class name string. The string is owned by the #MxWidget and should not be modified or freed.
|
|
1312
1328
|
*/
|
|
1313
|
-
get_style_class(): string
|
|
1329
|
+
get_style_class(): string
|
|
1314
1330
|
/**
|
|
1315
1331
|
* Retrieves the value of `property_name` for `stylable,` and puts it
|
|
1316
1332
|
* into `value`.
|
|
1317
1333
|
* @param property_name the name of the property
|
|
1318
1334
|
*/
|
|
1319
|
-
get_style_property(property_name: string
|
|
1335
|
+
get_style_property(property_name: string): /* value */ any
|
|
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 @@ export 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 @@ export 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-2.0.Mx.Stylable
|
|
1383
1399
|
|
|
@@ -1393,14 +1409,14 @@ export 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 @@ export 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 @@ export 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 @@ export 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-2.0.Mx.Action
|
|
@@ -1564,17 +1582,17 @@ export 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 @@ export 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-2.0.Mx.Action
|
|
1600
1618
|
|
|
@@ -1676,7 +1694,7 @@ export 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 @@ export 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 @@ export 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 @@ export 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 @@ export interface ActorManager {
|
|
|
1773
1792
|
// Own properties of Mx-2.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-2.0.Mx.ActorManager
|
|
1780
1801
|
|
|
@@ -1999,6 +2020,10 @@ export module Adjustment {
|
|
|
1999
2020
|
step_increment?: number | null
|
|
2000
2021
|
upper?: number | null
|
|
2001
2022
|
value?: number | null
|
|
2023
|
+
clampValue?: boolean | null
|
|
2024
|
+
pageIncrement?: number | null
|
|
2025
|
+
pageSize?: number | null
|
|
2026
|
+
stepIncrement?: number | null
|
|
2002
2027
|
}
|
|
2003
2028
|
|
|
2004
2029
|
}
|
|
@@ -2008,11 +2033,15 @@ export interface Adjustment {
|
|
|
2008
2033
|
// Own properties of Mx-2.0.Mx.Adjustment
|
|
2009
2034
|
|
|
2010
2035
|
clamp_value: boolean
|
|
2036
|
+
clampValue: boolean
|
|
2011
2037
|
elastic: boolean
|
|
2012
2038
|
lower: number
|
|
2013
2039
|
page_increment: number
|
|
2040
|
+
pageIncrement: number
|
|
2014
2041
|
page_size: number
|
|
2042
|
+
pageSize: number
|
|
2015
2043
|
step_increment: number
|
|
2044
|
+
stepIncrement: number
|
|
2016
2045
|
upper: number
|
|
2017
2046
|
value: number
|
|
2018
2047
|
|
|
@@ -2255,7 +2284,7 @@ export interface Application extends Gio.ActionGroup, Gio.ActionMap {
|
|
|
2255
2284
|
* @param window_title Title for the new window
|
|
2256
2285
|
* @returns The newly created MxWindow
|
|
2257
2286
|
*/
|
|
2258
|
-
create_window(window_title: string
|
|
2287
|
+
create_window(window_title: string): Window
|
|
2259
2288
|
/**
|
|
2260
2289
|
* Retrieves all windows added to `application`.
|
|
2261
2290
|
* @returns a list of #MxWindow<!-- -->s. The returned list is owned by @application and must not be altered.
|
|
@@ -2323,7 +2352,7 @@ export class Application extends Gio.Application {
|
|
|
2323
2352
|
* @param flags Application flags.
|
|
2324
2353
|
* @returns the #MxApplication singleton.
|
|
2325
2354
|
*/
|
|
2326
|
-
constructor(application_id: string
|
|
2355
|
+
constructor(application_id: string, flags: Gio.ApplicationFlags)
|
|
2327
2356
|
/**
|
|
2328
2357
|
* Intialises everything needed to operate Clutter and use #MxApplication.
|
|
2329
2358
|
* See clutter_init().
|
|
@@ -2332,7 +2361,7 @@ export class Application extends Gio.Application {
|
|
|
2332
2361
|
* @param flags Application flags.
|
|
2333
2362
|
* @returns the #MxApplication singleton.
|
|
2334
2363
|
*/
|
|
2335
|
-
static new(application_id: string
|
|
2364
|
+
static new(application_id: string, flags: Gio.ApplicationFlags): Application
|
|
2336
2365
|
|
|
2337
2366
|
// Overloads of new
|
|
2338
2367
|
|
|
@@ -2381,6 +2410,22 @@ export module Bin {
|
|
|
2381
2410
|
* Whether the child should fill the vertical allocation
|
|
2382
2411
|
*/
|
|
2383
2412
|
y_fill?: boolean | null
|
|
2413
|
+
/**
|
|
2414
|
+
* The horizontal alignment of the #MxBin child.
|
|
2415
|
+
*/
|
|
2416
|
+
xAlign: any
|
|
2417
|
+
/**
|
|
2418
|
+
* Whether the child should fill the horizontal allocation
|
|
2419
|
+
*/
|
|
2420
|
+
xFill?: boolean | null
|
|
2421
|
+
/**
|
|
2422
|
+
* The vertical alignment of the #MxBin child.
|
|
2423
|
+
*/
|
|
2424
|
+
yAlign: any
|
|
2425
|
+
/**
|
|
2426
|
+
* Whether the child should fill the vertical allocation
|
|
2427
|
+
*/
|
|
2428
|
+
yFill?: boolean | null
|
|
2384
2429
|
}
|
|
2385
2430
|
|
|
2386
2431
|
}
|
|
@@ -2397,18 +2442,34 @@ export interface Bin extends Atk.ImplementorIface, Clutter.Animatable, Clutter.C
|
|
|
2397
2442
|
* The horizontal alignment of the #MxBin child.
|
|
2398
2443
|
*/
|
|
2399
2444
|
x_align: any
|
|
2445
|
+
/**
|
|
2446
|
+
* The horizontal alignment of the #MxBin child.
|
|
2447
|
+
*/
|
|
2448
|
+
xAlign: any
|
|
2400
2449
|
/**
|
|
2401
2450
|
* Whether the child should fill the horizontal allocation
|
|
2402
2451
|
*/
|
|
2403
2452
|
x_fill: boolean
|
|
2453
|
+
/**
|
|
2454
|
+
* Whether the child should fill the horizontal allocation
|
|
2455
|
+
*/
|
|
2456
|
+
xFill: boolean
|
|
2404
2457
|
/**
|
|
2405
2458
|
* The vertical alignment of the #MxBin child.
|
|
2406
2459
|
*/
|
|
2407
2460
|
y_align: any
|
|
2461
|
+
/**
|
|
2462
|
+
* The vertical alignment of the #MxBin child.
|
|
2463
|
+
*/
|
|
2464
|
+
yAlign: any
|
|
2408
2465
|
/**
|
|
2409
2466
|
* Whether the child should fill the vertical allocation
|
|
2410
2467
|
*/
|
|
2411
2468
|
y_fill: boolean
|
|
2469
|
+
/**
|
|
2470
|
+
* Whether the child should fill the vertical allocation
|
|
2471
|
+
*/
|
|
2472
|
+
yFill: boolean
|
|
2412
2473
|
|
|
2413
2474
|
// Owm methods of Mx-2.0.Mx.Bin
|
|
2414
2475
|
|
|
@@ -2795,6 +2856,8 @@ export module BoxLayout {
|
|
|
2795
2856
|
orientation?: Orientation | null
|
|
2796
2857
|
scroll_to_focused?: boolean | null
|
|
2797
2858
|
spacing?: number | null
|
|
2859
|
+
enableAnimations?: boolean | null
|
|
2860
|
+
scrollToFocused?: boolean | null
|
|
2798
2861
|
}
|
|
2799
2862
|
|
|
2800
2863
|
}
|
|
@@ -2804,8 +2867,10 @@ export interface BoxLayout extends Atk.ImplementorIface, Clutter.Animatable, Clu
|
|
|
2804
2867
|
// Own properties of Mx-2.0.Mx.BoxLayout
|
|
2805
2868
|
|
|
2806
2869
|
enable_animations: boolean
|
|
2870
|
+
enableAnimations: boolean
|
|
2807
2871
|
orientation: Orientation
|
|
2808
2872
|
scroll_to_focused: boolean
|
|
2873
|
+
scrollToFocused: boolean
|
|
2809
2874
|
spacing: number
|
|
2810
2875
|
|
|
2811
2876
|
// Owm methods of Mx-2.0.Mx.BoxLayout
|
|
@@ -3275,6 +3340,10 @@ export module BoxLayoutChild {
|
|
|
3275
3340
|
x_fill?: boolean | null
|
|
3276
3341
|
y_align?: Align | null
|
|
3277
3342
|
y_fill?: boolean | null
|
|
3343
|
+
xAlign?: Align | null
|
|
3344
|
+
xFill?: boolean | null
|
|
3345
|
+
yAlign?: Align | null
|
|
3346
|
+
yFill?: boolean | null
|
|
3278
3347
|
}
|
|
3279
3348
|
|
|
3280
3349
|
}
|
|
@@ -3285,9 +3354,13 @@ export interface BoxLayoutChild {
|
|
|
3285
3354
|
|
|
3286
3355
|
expand: boolean
|
|
3287
3356
|
x_align: Align
|
|
3357
|
+
xAlign: Align
|
|
3288
3358
|
x_fill: boolean
|
|
3359
|
+
xFill: boolean
|
|
3289
3360
|
y_align: Align
|
|
3361
|
+
yAlign: Align
|
|
3290
3362
|
y_fill: boolean
|
|
3363
|
+
yFill: boolean
|
|
3291
3364
|
|
|
3292
3365
|
// Class property signals of Mx-2.0.Mx.BoxLayoutChild
|
|
3293
3366
|
|
|
@@ -3357,6 +3430,12 @@ export module Button {
|
|
|
3357
3430
|
label?: string | null
|
|
3358
3431
|
label_visible?: boolean | null
|
|
3359
3432
|
toggled?: boolean | null
|
|
3433
|
+
iconName?: string | null
|
|
3434
|
+
iconPosition?: Position | null
|
|
3435
|
+
iconSize?: number | null
|
|
3436
|
+
iconVisible?: boolean | null
|
|
3437
|
+
isToggle?: boolean | null
|
|
3438
|
+
labelVisible?: boolean | null
|
|
3360
3439
|
}
|
|
3361
3440
|
|
|
3362
3441
|
}
|
|
@@ -3367,12 +3446,18 @@ export interface Button extends Atk.ImplementorIface, Clutter.Animatable, Clutte
|
|
|
3367
3446
|
|
|
3368
3447
|
action: Action
|
|
3369
3448
|
icon_name: string | null
|
|
3449
|
+
iconName: string | null
|
|
3370
3450
|
icon_position: Position
|
|
3451
|
+
iconPosition: Position
|
|
3371
3452
|
icon_size: number
|
|
3453
|
+
iconSize: number
|
|
3372
3454
|
icon_visible: boolean
|
|
3455
|
+
iconVisible: boolean
|
|
3373
3456
|
is_toggle: boolean
|
|
3457
|
+
isToggle: boolean
|
|
3374
3458
|
label: string | null
|
|
3375
3459
|
label_visible: boolean
|
|
3460
|
+
labelVisible: boolean
|
|
3376
3461
|
toggled: boolean
|
|
3377
3462
|
|
|
3378
3463
|
// Owm methods of Mx-2.0.Mx.Button
|
|
@@ -3391,12 +3476,12 @@ export interface Button extends Atk.ImplementorIface, Clutter.Animatable, Clutte
|
|
|
3391
3476
|
* @param name the name of the action to retrieve
|
|
3392
3477
|
* @returns a #ClutterAction for the given name, or %NULL. The returned #ClutterAction is owned by the actor and it should not be unreferenced directly
|
|
3393
3478
|
*/
|
|
3394
|
-
get_action(name: string
|
|
3479
|
+
get_action(name: string): Clutter.Action
|
|
3395
3480
|
/**
|
|
3396
3481
|
* Get the icon-name being used on the button.
|
|
3397
3482
|
* @returns the icon-name. This must not be freed by the application. %NULL if no icon has been set
|
|
3398
3483
|
*/
|
|
3399
|
-
get_icon_name(): string
|
|
3484
|
+
get_icon_name(): string
|
|
3400
3485
|
/**
|
|
3401
3486
|
* Retrieves the icon's relative position to the text.
|
|
3402
3487
|
* @returns A #MxPosition
|
|
@@ -3421,7 +3506,7 @@ export interface Button extends Atk.ImplementorIface, Clutter.Animatable, Clutte
|
|
|
3421
3506
|
* Get the text displayed on the button
|
|
3422
3507
|
* @returns the text for the button. This must not be freed by the application
|
|
3423
3508
|
*/
|
|
3424
|
-
get_label(): string
|
|
3509
|
+
get_label(): string
|
|
3425
3510
|
/**
|
|
3426
3511
|
* Retrieves the visibility of the text associated with the button's action.
|
|
3427
3512
|
* @returns %TRUE if the text is visible, %FALSE otherwise
|
|
@@ -3472,7 +3557,7 @@ export interface Button extends Atk.ImplementorIface, Clutter.Animatable, Clutte
|
|
|
3472
3557
|
* Sets the text displayed on the button
|
|
3473
3558
|
* @param text text to set the label to
|
|
3474
3559
|
*/
|
|
3475
|
-
set_label(text: string
|
|
3560
|
+
set_label(text: string): void
|
|
3476
3561
|
/**
|
|
3477
3562
|
* Sets the visibility of the text associated with the button's action.
|
|
3478
3563
|
* @param visible %TRUE if the text should be visible
|
|
@@ -3851,7 +3936,7 @@ export class Button extends Widget {
|
|
|
3851
3936
|
* @param text text to set the label to
|
|
3852
3937
|
* @returns a new #MxButton
|
|
3853
3938
|
*/
|
|
3854
|
-
static new_with_label(text: string
|
|
3939
|
+
static new_with_label(text: string): Button
|
|
3855
3940
|
_init(config?: Button.ConstructorProperties): void
|
|
3856
3941
|
}
|
|
3857
3942
|
|
|
@@ -3865,6 +3950,8 @@ export module ButtonGroup {
|
|
|
3865
3950
|
|
|
3866
3951
|
active_button?: Button | null
|
|
3867
3952
|
allow_no_active?: boolean | null
|
|
3953
|
+
activeButton?: Button | null
|
|
3954
|
+
allowNoActive?: boolean | null
|
|
3868
3955
|
}
|
|
3869
3956
|
|
|
3870
3957
|
}
|
|
@@ -3874,7 +3961,9 @@ export interface ButtonGroup {
|
|
|
3874
3961
|
// Own properties of Mx-2.0.Mx.ButtonGroup
|
|
3875
3962
|
|
|
3876
3963
|
active_button: Button
|
|
3964
|
+
activeButton: Button
|
|
3877
3965
|
allow_no_active: boolean
|
|
3966
|
+
allowNoActive: boolean
|
|
3878
3967
|
|
|
3879
3968
|
// Own fields of Mx-2.0.Mx.ButtonGroup
|
|
3880
3969
|
|
|
@@ -3992,7 +4081,7 @@ export interface Clipboard {
|
|
|
3992
4081
|
* Sets text as the current contents of the clipboard.
|
|
3993
4082
|
* @param text text to copy to the clipboard
|
|
3994
4083
|
*/
|
|
3995
|
-
set_text(text: string
|
|
4084
|
+
set_text(text: string): void
|
|
3996
4085
|
|
|
3997
4086
|
// Class property signals of Mx-2.0.Mx.Clipboard
|
|
3998
4087
|
|
|
@@ -4036,6 +4125,8 @@ export module ComboBox {
|
|
|
4036
4125
|
active_icon_name?: string | null
|
|
4037
4126
|
active_text?: string | null
|
|
4038
4127
|
index?: number | null
|
|
4128
|
+
activeIconName?: string | null
|
|
4129
|
+
activeText?: string | null
|
|
4039
4130
|
}
|
|
4040
4131
|
|
|
4041
4132
|
}
|
|
@@ -4045,7 +4136,9 @@ export interface ComboBox extends Atk.ImplementorIface, Clutter.Animatable, Clut
|
|
|
4045
4136
|
// Own properties of Mx-2.0.Mx.ComboBox
|
|
4046
4137
|
|
|
4047
4138
|
active_icon_name: string | null
|
|
4139
|
+
activeIconName: string | null
|
|
4048
4140
|
active_text: string | null
|
|
4141
|
+
activeText: string | null
|
|
4049
4142
|
index: number
|
|
4050
4143
|
|
|
4051
4144
|
// Owm methods of Mx-2.0.Mx.ComboBox
|
|
@@ -4054,17 +4147,17 @@ export interface ComboBox extends Atk.ImplementorIface, Clutter.Animatable, Clut
|
|
|
4054
4147
|
* Append an item to the combo box list
|
|
4055
4148
|
* @param text name of the item
|
|
4056
4149
|
*/
|
|
4057
|
-
append_text(text: string
|
|
4150
|
+
append_text(text: string): void
|
|
4058
4151
|
/**
|
|
4059
4152
|
* Get the name of the icon displayed in the combo box
|
|
4060
4153
|
* @returns the text string of the name of the displayed icon, owned by the combo box, or %NULL if there is no active icon.
|
|
4061
4154
|
*/
|
|
4062
|
-
get_active_icon_name(): string
|
|
4155
|
+
get_active_icon_name(): string
|
|
4063
4156
|
/**
|
|
4064
4157
|
* Get the text displayed in the combo box
|
|
4065
4158
|
* @returns the text string, owned by the combo box
|
|
4066
4159
|
*/
|
|
4067
|
-
get_active_text(): string
|
|
4160
|
+
get_active_text(): string
|
|
4068
4161
|
/**
|
|
4069
4162
|
* Get the index of the last item selected
|
|
4070
4163
|
* @returns gint
|
|
@@ -4075,19 +4168,19 @@ export interface ComboBox extends Atk.ImplementorIface, Clutter.Animatable, Clut
|
|
|
4075
4168
|
* @param position zero indexed position to insert the item at
|
|
4076
4169
|
* @param text name of the item
|
|
4077
4170
|
*/
|
|
4078
|
-
insert_text(position: number, text: string
|
|
4171
|
+
insert_text(position: number, text: string): void
|
|
4079
4172
|
/**
|
|
4080
4173
|
* Insert an item with text and an icon into the combo box list.
|
|
4081
4174
|
* @param position zero indexed position to insert the item at
|
|
4082
4175
|
* @param text name of the item
|
|
4083
4176
|
* @param icon name of an icon from the icon theme
|
|
4084
4177
|
*/
|
|
4085
|
-
insert_text_with_icon(position: number, text: string
|
|
4178
|
+
insert_text_with_icon(position: number, text: string, icon: string): void
|
|
4086
4179
|
/**
|
|
4087
4180
|
* Prepend an item to the combo box list
|
|
4088
4181
|
* @param text name of the item
|
|
4089
4182
|
*/
|
|
4090
|
-
prepend_text(text: string
|
|
4183
|
+
prepend_text(text: string): void
|
|
4091
4184
|
/**
|
|
4092
4185
|
* Remove all the items of `box`
|
|
4093
4186
|
*/
|
|
@@ -4106,7 +4199,7 @@ export interface ComboBox extends Atk.ImplementorIface, Clutter.Animatable, Clut
|
|
|
4106
4199
|
* Set the text displayed in the combo box
|
|
4107
4200
|
* @param text text to display
|
|
4108
4201
|
*/
|
|
4109
|
-
set_active_text(text: string
|
|
4202
|
+
set_active_text(text: string): void
|
|
4110
4203
|
/**
|
|
4111
4204
|
* Set the current combo box text from the item at `index` in the list.
|
|
4112
4205
|
* @param index the index of the list item to set
|
|
@@ -4872,6 +4965,10 @@ export module Entry {
|
|
|
4872
4965
|
primary_icon_tooltip_text?: string | null
|
|
4873
4966
|
secondary_icon_tooltip_text?: string | null
|
|
4874
4967
|
text?: string | null
|
|
4968
|
+
iconHighlightSuffix?: string | null
|
|
4969
|
+
passwordChar?: number | null
|
|
4970
|
+
primaryIconTooltipText?: string | null
|
|
4971
|
+
secondaryIconTooltipText?: string | null
|
|
4875
4972
|
}
|
|
4876
4973
|
|
|
4877
4974
|
}
|
|
@@ -4881,11 +4978,16 @@ export interface Entry extends Atk.ImplementorIface, Clutter.Animatable, Clutter
|
|
|
4881
4978
|
// Own properties of Mx-2.0.Mx.Entry
|
|
4882
4979
|
|
|
4883
4980
|
readonly clutter_text: Clutter.Text
|
|
4981
|
+
readonly clutterText: Clutter.Text
|
|
4884
4982
|
icon_highlight_suffix: string | null
|
|
4983
|
+
iconHighlightSuffix: string | null
|
|
4885
4984
|
password_char: number
|
|
4985
|
+
passwordChar: number
|
|
4886
4986
|
placeholder: string | null
|
|
4887
4987
|
primary_icon_tooltip_text: string | null
|
|
4988
|
+
primaryIconTooltipText: string | null
|
|
4888
4989
|
secondary_icon_tooltip_text: string | null
|
|
4990
|
+
secondaryIconTooltipText: string | null
|
|
4889
4991
|
text: string | null
|
|
4890
4992
|
|
|
4891
4993
|
// Owm methods of Mx-2.0.Mx.Entry
|
|
@@ -4900,7 +5002,7 @@ export interface Entry extends Atk.ImplementorIface, Clutter.Animatable, Clutter
|
|
|
4900
5002
|
* of the icon.
|
|
4901
5003
|
* @returns the highlight filename suffix. This string is owned by the #MxEntry and should not be freed or modified.
|
|
4902
5004
|
*/
|
|
4903
|
-
get_icon_highlight_suffix(): string
|
|
5005
|
+
get_icon_highlight_suffix(): string
|
|
4904
5006
|
/**
|
|
4905
5007
|
* Gets the character to display instead of the text.
|
|
4906
5008
|
* @returns a character, or 0 if input should not be hidden.
|
|
@@ -4910,12 +5012,12 @@ export interface Entry extends Atk.ImplementorIface, Clutter.Animatable, Clutter
|
|
|
4910
5012
|
* Gets the text that is displayed when the entry is empty and unfocused
|
|
4911
5013
|
* @returns the current value of the placeholder property. This string is owned by the #MxEntry and should not be freed or modified.
|
|
4912
5014
|
*/
|
|
4913
|
-
get_placeholder(): string
|
|
5015
|
+
get_placeholder(): string
|
|
4914
5016
|
/**
|
|
4915
5017
|
* Get the text displayed on the entry
|
|
4916
5018
|
* @returns the text for the entry. This must not be freed by the application
|
|
4917
5019
|
*/
|
|
4918
|
-
get_text(): string
|
|
5020
|
+
get_text(): string
|
|
4919
5021
|
/**
|
|
4920
5022
|
* Sets the suffix appended to the filename to use for the highlighted version
|
|
4921
5023
|
* of the icon. e.g. if you have set your primay icon to "primary-icon.png"
|
|
@@ -4923,7 +5025,7 @@ export interface Entry extends Atk.ImplementorIface, Clutter.Animatable, Clutter
|
|
|
4923
5025
|
* "primary-icon-highlight.png"
|
|
4924
5026
|
* @param suffix the suffix to append to the filename for the highlight version
|
|
4925
5027
|
*/
|
|
4926
|
-
set_icon_highlight_suffix(suffix: string
|
|
5028
|
+
set_icon_highlight_suffix(suffix: string): void
|
|
4927
5029
|
/**
|
|
4928
5030
|
* Sets the character to display instead of the text. Use 0 to display
|
|
4929
5031
|
* the actual text.
|
|
@@ -4936,24 +5038,24 @@ export interface Entry extends Atk.ImplementorIface, Clutter.Animatable, Clutter
|
|
|
4936
5038
|
* A value of NULL unsets the hint.
|
|
4937
5039
|
* @param text text to set as the entry hint
|
|
4938
5040
|
*/
|
|
4939
|
-
set_placeholder(text: string
|
|
5041
|
+
set_placeholder(text: string): void
|
|
4940
5042
|
/**
|
|
4941
5043
|
* Set the primary icon of the entry to the given filename
|
|
4942
5044
|
* @param filename filename of an icon
|
|
4943
5045
|
*/
|
|
4944
|
-
set_primary_icon_from_file(filename: string
|
|
4945
|
-
set_primary_icon_tooltip_text(text: string
|
|
5046
|
+
set_primary_icon_from_file(filename: string): void
|
|
5047
|
+
set_primary_icon_tooltip_text(text: string): void
|
|
4946
5048
|
/**
|
|
4947
5049
|
* Set the primary icon of the entry to the given filename
|
|
4948
5050
|
* @param filename filename of an icon
|
|
4949
5051
|
*/
|
|
4950
|
-
set_secondary_icon_from_file(filename: string
|
|
4951
|
-
set_secondary_icon_tooltip_text(text: string
|
|
5052
|
+
set_secondary_icon_from_file(filename: string): void
|
|
5053
|
+
set_secondary_icon_tooltip_text(text: string): void
|
|
4952
5054
|
/**
|
|
4953
5055
|
* Sets the text displayed on the entry
|
|
4954
5056
|
* @param text text to set the entry to
|
|
4955
5057
|
*/
|
|
4956
|
-
set_text(text: string
|
|
5058
|
+
set_text(text: string): void
|
|
4957
5059
|
|
|
4958
5060
|
// Conflicting methods
|
|
4959
5061
|
|
|
@@ -5319,7 +5421,7 @@ export class Entry extends Widget {
|
|
|
5319
5421
|
* @param text text to set the entry to
|
|
5320
5422
|
* @returns a new #MxEntry
|
|
5321
5423
|
*/
|
|
5322
|
-
static new_with_text(text: string
|
|
5424
|
+
static new_with_text(text: string): Entry
|
|
5323
5425
|
_init(config?: Entry.ConstructorProperties): void
|
|
5324
5426
|
}
|
|
5325
5427
|
|
|
@@ -5371,7 +5473,7 @@ export interface Expander extends Atk.ImplementorIface, Clutter.Animatable, Clut
|
|
|
5371
5473
|
* Sets the text displayed as the title of the expander
|
|
5372
5474
|
* @param label string to set as the expander label
|
|
5373
5475
|
*/
|
|
5374
|
-
set_label(label: string
|
|
5476
|
+
set_label(label: string): void
|
|
5375
5477
|
|
|
5376
5478
|
// Conflicting methods
|
|
5377
5479
|
|
|
@@ -5733,6 +5835,15 @@ export module FadeEffect {
|
|
|
5733
5835
|
bounds_y?: number | null
|
|
5734
5836
|
color?: Clutter.Color | null
|
|
5735
5837
|
freeze_update?: boolean | null
|
|
5838
|
+
borderBottom?: number | null
|
|
5839
|
+
borderLeft?: number | null
|
|
5840
|
+
borderRight?: number | null
|
|
5841
|
+
borderTop?: number | null
|
|
5842
|
+
boundsHeight?: number | null
|
|
5843
|
+
boundsWidth?: number | null
|
|
5844
|
+
boundsX?: number | null
|
|
5845
|
+
boundsY?: number | null
|
|
5846
|
+
freezeUpdate?: boolean | null
|
|
5736
5847
|
}
|
|
5737
5848
|
|
|
5738
5849
|
}
|
|
@@ -5742,15 +5853,24 @@ export interface FadeEffect {
|
|
|
5742
5853
|
// Own properties of Mx-2.0.Mx.FadeEffect
|
|
5743
5854
|
|
|
5744
5855
|
border_bottom: number
|
|
5856
|
+
borderBottom: number
|
|
5745
5857
|
border_left: number
|
|
5858
|
+
borderLeft: number
|
|
5746
5859
|
border_right: number
|
|
5860
|
+
borderRight: number
|
|
5747
5861
|
border_top: number
|
|
5862
|
+
borderTop: number
|
|
5748
5863
|
bounds_height: number
|
|
5864
|
+
boundsHeight: number
|
|
5749
5865
|
bounds_width: number
|
|
5866
|
+
boundsWidth: number
|
|
5750
5867
|
bounds_x: number
|
|
5868
|
+
boundsX: number
|
|
5751
5869
|
bounds_y: number
|
|
5870
|
+
boundsY: number
|
|
5752
5871
|
color: Clutter.Color
|
|
5753
5872
|
freeze_update: boolean
|
|
5873
|
+
freezeUpdate: boolean
|
|
5754
5874
|
|
|
5755
5875
|
// Own fields of Mx-2.0.Mx.FadeEffect
|
|
5756
5876
|
|
|
@@ -6660,6 +6780,14 @@ export module Grid {
|
|
|
6660
6780
|
max_stride?: number | null
|
|
6661
6781
|
orientation?: Orientation | null
|
|
6662
6782
|
row_spacing?: number | null
|
|
6783
|
+
childXAlign?: Align | null
|
|
6784
|
+
childYAlign?: Align | null
|
|
6785
|
+
columnSpacing?: number | null
|
|
6786
|
+
homogenousColumns?: boolean | null
|
|
6787
|
+
homogenousRows?: boolean | null
|
|
6788
|
+
lineAlignment?: Align | null
|
|
6789
|
+
maxStride?: number | null
|
|
6790
|
+
rowSpacing?: number | null
|
|
6663
6791
|
}
|
|
6664
6792
|
|
|
6665
6793
|
}
|
|
@@ -6669,14 +6797,22 @@ export interface Grid extends Atk.ImplementorIface, Clutter.Animatable, Clutter.
|
|
|
6669
6797
|
// Own properties of Mx-2.0.Mx.Grid
|
|
6670
6798
|
|
|
6671
6799
|
child_x_align: Align
|
|
6800
|
+
childXAlign: Align
|
|
6672
6801
|
child_y_align: Align
|
|
6802
|
+
childYAlign: Align
|
|
6673
6803
|
column_spacing: number
|
|
6804
|
+
columnSpacing: number
|
|
6674
6805
|
homogenous_columns: boolean
|
|
6806
|
+
homogenousColumns: boolean
|
|
6675
6807
|
homogenous_rows: boolean
|
|
6808
|
+
homogenousRows: boolean
|
|
6676
6809
|
line_alignment: Align
|
|
6810
|
+
lineAlignment: Align
|
|
6677
6811
|
max_stride: number
|
|
6812
|
+
maxStride: number
|
|
6678
6813
|
orientation: Orientation
|
|
6679
6814
|
row_spacing: number
|
|
6815
|
+
rowSpacing: number
|
|
6680
6816
|
|
|
6681
6817
|
// Owm methods of Mx-2.0.Mx.Grid
|
|
6682
6818
|
|
|
@@ -7058,6 +7194,8 @@ export module Icon {
|
|
|
7058
7194
|
|
|
7059
7195
|
icon_name?: string | null
|
|
7060
7196
|
icon_size?: number | null
|
|
7197
|
+
iconName?: string | null
|
|
7198
|
+
iconSize?: number | null
|
|
7061
7199
|
}
|
|
7062
7200
|
|
|
7063
7201
|
}
|
|
@@ -7067,13 +7205,15 @@ export interface Icon extends Atk.ImplementorIface, Clutter.Animatable, Clutter.
|
|
|
7067
7205
|
// Own properties of Mx-2.0.Mx.Icon
|
|
7068
7206
|
|
|
7069
7207
|
icon_name: string | null
|
|
7208
|
+
iconName: string | null
|
|
7070
7209
|
icon_size: number
|
|
7210
|
+
iconSize: number
|
|
7071
7211
|
|
|
7072
7212
|
// Owm methods of Mx-2.0.Mx.Icon
|
|
7073
7213
|
|
|
7074
|
-
get_icon_name(): string
|
|
7214
|
+
get_icon_name(): string
|
|
7075
7215
|
get_icon_size(): number
|
|
7076
|
-
set_icon_name(icon_name: string
|
|
7216
|
+
set_icon_name(icon_name: string): void
|
|
7077
7217
|
set_icon_size(size: number): void
|
|
7078
7218
|
|
|
7079
7219
|
// Conflicting methods
|
|
@@ -7417,6 +7557,7 @@ export module IconTheme {
|
|
|
7417
7557
|
// Own constructor properties of Mx-2.0.Mx.IconTheme
|
|
7418
7558
|
|
|
7419
7559
|
theme_name?: string | null
|
|
7560
|
+
themeName?: string | null
|
|
7420
7561
|
}
|
|
7421
7562
|
|
|
7422
7563
|
}
|
|
@@ -7426,6 +7567,7 @@ export interface IconTheme {
|
|
|
7426
7567
|
// Own properties of Mx-2.0.Mx.IconTheme
|
|
7427
7568
|
|
|
7428
7569
|
theme_name: string | null
|
|
7570
|
+
themeName: string | null
|
|
7429
7571
|
|
|
7430
7572
|
// Own fields of Mx-2.0.Mx.IconTheme
|
|
7431
7573
|
|
|
@@ -7443,22 +7585,22 @@ export interface IconTheme {
|
|
|
7443
7585
|
* Get the value of the #MxIconTheme:theme-name property.
|
|
7444
7586
|
* @returns the current value of the "theme-name" property.
|
|
7445
7587
|
*/
|
|
7446
|
-
get_theme_name(): string
|
|
7447
|
-
has_icon(icon_name: string
|
|
7588
|
+
get_theme_name(): string
|
|
7589
|
+
has_icon(icon_name: string): boolean
|
|
7448
7590
|
/**
|
|
7449
7591
|
* If the icon is available, returns a #CoglHandle of the icon.
|
|
7450
7592
|
* @param icon_name The name of the icon
|
|
7451
7593
|
* @param size The desired size of the icon
|
|
7452
7594
|
* @returns a #CoglHandle of the icon, or %NULL.
|
|
7453
7595
|
*/
|
|
7454
|
-
lookup(icon_name: string
|
|
7596
|
+
lookup(icon_name: string, size: number): Cogl.Handle
|
|
7455
7597
|
/**
|
|
7456
7598
|
* If the icon is available, returns a #ClutterTexture of the icon.
|
|
7457
7599
|
* @param icon_name The name of the icon
|
|
7458
7600
|
* @param size The desired size of the icon
|
|
7459
7601
|
* @returns a #ClutterTexture of the icon, or %NULL.
|
|
7460
7602
|
*/
|
|
7461
|
-
lookup_texture(icon_name: string
|
|
7603
|
+
lookup_texture(icon_name: string, size: number): Clutter.Texture
|
|
7462
7604
|
/**
|
|
7463
7605
|
* Sets the directories the #MxIconTheme will search in to find icons.
|
|
7464
7606
|
* By default, it will look in the default system and local icon
|
|
@@ -7476,7 +7618,7 @@ export interface IconTheme {
|
|
|
7476
7618
|
* icon theme, this function can be called with a %NULL `theme_name` argument.
|
|
7477
7619
|
* @param theme_name the name of an icon theme to load, or %NULL
|
|
7478
7620
|
*/
|
|
7479
|
-
set_theme_name(theme_name: string
|
|
7621
|
+
set_theme_name(theme_name: string): void
|
|
7480
7622
|
|
|
7481
7623
|
// Class property signals of Mx-2.0.Mx.IconTheme
|
|
7482
7624
|
|
|
@@ -7559,6 +7701,13 @@ export module Image {
|
|
|
7559
7701
|
scale_mode?: ImageScaleMode | null
|
|
7560
7702
|
scale_width_threshold?: number | null
|
|
7561
7703
|
transition_duration?: number | null
|
|
7704
|
+
allowUpscale?: boolean | null
|
|
7705
|
+
imageRotation?: number | null
|
|
7706
|
+
loadAsync?: boolean | null
|
|
7707
|
+
scaleHeightThreshold?: number | null
|
|
7708
|
+
scaleMode?: ImageScaleMode | null
|
|
7709
|
+
scaleWidthThreshold?: number | null
|
|
7710
|
+
transitionDuration?: number | null
|
|
7562
7711
|
}
|
|
7563
7712
|
|
|
7564
7713
|
}
|
|
@@ -7568,13 +7717,20 @@ export interface Image extends Atk.ImplementorIface, Clutter.Animatable, Clutter
|
|
|
7568
7717
|
// Own properties of Mx-2.0.Mx.Image
|
|
7569
7718
|
|
|
7570
7719
|
allow_upscale: boolean
|
|
7720
|
+
allowUpscale: boolean
|
|
7571
7721
|
filename: string | null
|
|
7572
7722
|
image_rotation: number
|
|
7723
|
+
imageRotation: number
|
|
7573
7724
|
load_async: boolean
|
|
7725
|
+
loadAsync: boolean
|
|
7574
7726
|
scale_height_threshold: number
|
|
7727
|
+
scaleHeightThreshold: number
|
|
7575
7728
|
scale_mode: ImageScaleMode
|
|
7729
|
+
scaleMode: ImageScaleMode
|
|
7576
7730
|
scale_width_threshold: number
|
|
7731
|
+
scaleWidthThreshold: number
|
|
7577
7732
|
transition_duration: number
|
|
7733
|
+
transitionDuration: number
|
|
7578
7734
|
|
|
7579
7735
|
// Owm methods of Mx-2.0.Mx.Image
|
|
7580
7736
|
|
|
@@ -7682,7 +7838,7 @@ export interface Image extends Atk.ImplementorIface, Clutter.Animatable, Clutter
|
|
|
7682
7838
|
* @param filename Filename to read the file from
|
|
7683
7839
|
* @returns #TRUE if the image was successfully updated
|
|
7684
7840
|
*/
|
|
7685
|
-
set_from_file(filename: string
|
|
7841
|
+
set_from_file(filename: string): boolean
|
|
7686
7842
|
/**
|
|
7687
7843
|
* Set the image data from an image file, and scale the image during loading.
|
|
7688
7844
|
* In case of failure, #FALSE is returned and `error` is set. The aspect ratio
|
|
@@ -7692,7 +7848,7 @@ export interface Image extends Atk.ImplementorIface, Clutter.Animatable, Clutter
|
|
|
7692
7848
|
* @param height Height to scale the image to, or -1
|
|
7693
7849
|
* @returns #TRUE if the image was successfully updated
|
|
7694
7850
|
*/
|
|
7695
|
-
set_from_file_at_size(filename: string
|
|
7851
|
+
set_from_file_at_size(filename: string, width: number, height: number): boolean
|
|
7696
7852
|
/**
|
|
7697
7853
|
* Set the MxImage:image-rotation property.
|
|
7698
7854
|
* @param rotation Rotation angle in degrees
|
|
@@ -8115,6 +8271,7 @@ export module ItemView {
|
|
|
8115
8271
|
factory?: GObject.Object | null
|
|
8116
8272
|
item_type?: GObject.GType | null
|
|
8117
8273
|
model?: Clutter.Model | null
|
|
8274
|
+
itemType?: GObject.GType | null
|
|
8118
8275
|
}
|
|
8119
8276
|
|
|
8120
8277
|
}
|
|
@@ -8125,6 +8282,7 @@ export interface ItemView extends Atk.ImplementorIface, Clutter.Animatable, Clut
|
|
|
8125
8282
|
|
|
8126
8283
|
factory: GObject.Object
|
|
8127
8284
|
item_type: GObject.GType
|
|
8285
|
+
itemType: GObject.GType
|
|
8128
8286
|
model: Clutter.Model
|
|
8129
8287
|
|
|
8130
8288
|
// Owm methods of Mx-2.0.Mx.ItemView
|
|
@@ -8135,7 +8293,7 @@ export interface ItemView extends Atk.ImplementorIface, Clutter.Animatable, Clut
|
|
|
8135
8293
|
* @param attribute Name of the attribute
|
|
8136
8294
|
* @param column Column number
|
|
8137
8295
|
*/
|
|
8138
|
-
add_attribute(attribute: string
|
|
8296
|
+
add_attribute(attribute: string, column: number): void
|
|
8139
8297
|
/**
|
|
8140
8298
|
* Freeze the view. This means that the view will not act on changes to the
|
|
8141
8299
|
* model until it is thawed. Call #mx_item_view_thaw to thaw the view
|
|
@@ -8565,6 +8723,15 @@ export module KineticScrollView {
|
|
|
8565
8723
|
snap_on_page?: boolean | null
|
|
8566
8724
|
use_captured?: boolean | null
|
|
8567
8725
|
use_grab?: boolean | null
|
|
8726
|
+
accelerationFactor?: number | null
|
|
8727
|
+
clampDuration?: number | null
|
|
8728
|
+
clampMode?: number | null
|
|
8729
|
+
clampToCenter?: boolean | null
|
|
8730
|
+
mouseButton?: number | null
|
|
8731
|
+
scrollPolicy?: ScrollPolicy | null
|
|
8732
|
+
snapOnPage?: boolean | null
|
|
8733
|
+
useCaptured?: boolean | null
|
|
8734
|
+
useGrab?: boolean | null
|
|
8568
8735
|
}
|
|
8569
8736
|
|
|
8570
8737
|
}
|
|
@@ -8574,17 +8741,26 @@ export interface KineticScrollView extends Atk.ImplementorIface, Clutter.Animata
|
|
|
8574
8741
|
// Own properties of Mx-2.0.Mx.KineticScrollView
|
|
8575
8742
|
|
|
8576
8743
|
acceleration_factor: number
|
|
8744
|
+
accelerationFactor: number
|
|
8577
8745
|
clamp_duration: number
|
|
8746
|
+
clampDuration: number
|
|
8578
8747
|
clamp_mode: number
|
|
8748
|
+
clampMode: number
|
|
8579
8749
|
clamp_to_center: boolean
|
|
8750
|
+
clampToCenter: boolean
|
|
8580
8751
|
deceleration: number
|
|
8581
8752
|
mouse_button: number
|
|
8753
|
+
mouseButton: number
|
|
8582
8754
|
overshoot: number
|
|
8583
8755
|
scroll_policy: ScrollPolicy
|
|
8756
|
+
scrollPolicy: ScrollPolicy
|
|
8584
8757
|
snap_on_page: boolean
|
|
8758
|
+
snapOnPage: boolean
|
|
8585
8759
|
readonly state: KineticScrollViewState
|
|
8586
8760
|
use_captured: boolean
|
|
8761
|
+
useCaptured: boolean
|
|
8587
8762
|
use_grab: boolean
|
|
8763
|
+
useGrab: boolean
|
|
8588
8764
|
|
|
8589
8765
|
// Owm methods of Mx-2.0.Mx.KineticScrollView
|
|
8590
8766
|
|
|
@@ -9119,6 +9295,21 @@ export module Label {
|
|
|
9119
9295
|
use_markup?: boolean | null
|
|
9120
9296
|
x_align: any
|
|
9121
9297
|
y_align: any
|
|
9298
|
+
fadeOut?: boolean | null
|
|
9299
|
+
/**
|
|
9300
|
+
* Whether to wrap the lines of #MxLabel:text if the contents
|
|
9301
|
+
* exceed the available allocation.
|
|
9302
|
+
*/
|
|
9303
|
+
lineWrap?: boolean | null
|
|
9304
|
+
/**
|
|
9305
|
+
* Show a tooltip when there is not enough space to display the text. If set
|
|
9306
|
+
* to %TRUE, this will also cause the #ClutterActor:reactive property to be
|
|
9307
|
+
* enabled.
|
|
9308
|
+
*/
|
|
9309
|
+
showTooltip?: boolean | null
|
|
9310
|
+
useMarkup?: boolean | null
|
|
9311
|
+
xAlign: any
|
|
9312
|
+
yAlign: any
|
|
9122
9313
|
}
|
|
9123
9314
|
|
|
9124
9315
|
}
|
|
@@ -9128,17 +9319,33 @@ export interface Label extends Atk.ImplementorIface, Clutter.Animatable, Clutter
|
|
|
9128
9319
|
// Own properties of Mx-2.0.Mx.Label
|
|
9129
9320
|
|
|
9130
9321
|
readonly clutter_text: Clutter.Text
|
|
9322
|
+
readonly clutterText: Clutter.Text
|
|
9131
9323
|
fade_out: boolean
|
|
9324
|
+
fadeOut: boolean
|
|
9132
9325
|
/**
|
|
9133
9326
|
* Whether to wrap the lines of #MxLabel:text if the contents
|
|
9134
9327
|
* exceed the available allocation.
|
|
9135
9328
|
*/
|
|
9136
9329
|
line_wrap: boolean
|
|
9330
|
+
/**
|
|
9331
|
+
* Whether to wrap the lines of #MxLabel:text if the contents
|
|
9332
|
+
* exceed the available allocation.
|
|
9333
|
+
*/
|
|
9334
|
+
lineWrap: boolean
|
|
9137
9335
|
// Has conflict: show_tooltip: boolean
|
|
9336
|
+
/**
|
|
9337
|
+
* Show a tooltip when there is not enough space to display the text. If set
|
|
9338
|
+
* to %TRUE, this will also cause the #ClutterActor:reactive property to be
|
|
9339
|
+
* enabled.
|
|
9340
|
+
*/
|
|
9341
|
+
showTooltip: boolean
|
|
9138
9342
|
text: string | null
|
|
9139
9343
|
use_markup: boolean
|
|
9344
|
+
useMarkup: boolean
|
|
9140
9345
|
x_align: any
|
|
9346
|
+
xAlign: any
|
|
9141
9347
|
y_align: any
|
|
9348
|
+
yAlign: any
|
|
9142
9349
|
|
|
9143
9350
|
// Owm methods of Mx-2.0.Mx.Label
|
|
9144
9351
|
|
|
@@ -9171,7 +9378,7 @@ export interface Label extends Atk.ImplementorIface, Clutter.Animatable, Clutter
|
|
|
9171
9378
|
* Get the text displayed on the label
|
|
9172
9379
|
* @returns the text for the label. This must not be freed by the application
|
|
9173
9380
|
*/
|
|
9174
|
-
get_text(): string
|
|
9381
|
+
get_text(): string
|
|
9175
9382
|
/**
|
|
9176
9383
|
* Determines whether the text of the label is being treated as Pango markup.
|
|
9177
9384
|
* @returns %TRUE if the text of the label is treated as Pango markup, %FALSE otherwise.
|
|
@@ -9224,7 +9431,7 @@ export interface Label extends Atk.ImplementorIface, Clutter.Animatable, Clutter
|
|
|
9224
9431
|
* Sets the text displayed on the label
|
|
9225
9432
|
* @param text text to set the label to
|
|
9226
9433
|
*/
|
|
9227
|
-
set_text(text: string
|
|
9434
|
+
set_text(text: string): void
|
|
9228
9435
|
/**
|
|
9229
9436
|
* Sets whether the text of the label should be treated as Pango markup.
|
|
9230
9437
|
* @param use_markup %TRUE to use Pango markup, %FALSE otherwise
|
|
@@ -9602,7 +9809,7 @@ export class Label extends Widget {
|
|
|
9602
9809
|
* @param text text to set the label to
|
|
9603
9810
|
* @returns a new #MxLabel
|
|
9604
9811
|
*/
|
|
9605
|
-
static new_with_text(text: string
|
|
9812
|
+
static new_with_text(text: string): Label
|
|
9606
9813
|
_init(config?: Label.ConstructorProperties): void
|
|
9607
9814
|
}
|
|
9608
9815
|
|
|
@@ -9617,6 +9824,7 @@ export module ListView {
|
|
|
9617
9824
|
factory?: GObject.Object | null
|
|
9618
9825
|
item_type?: GObject.GType | null
|
|
9619
9826
|
model?: Clutter.Model | null
|
|
9827
|
+
itemType?: GObject.GType | null
|
|
9620
9828
|
}
|
|
9621
9829
|
|
|
9622
9830
|
}
|
|
@@ -9627,6 +9835,7 @@ export interface ListView extends Atk.ImplementorIface, Clutter.Animatable, Clut
|
|
|
9627
9835
|
|
|
9628
9836
|
factory: GObject.Object
|
|
9629
9837
|
item_type: GObject.GType
|
|
9838
|
+
itemType: GObject.GType
|
|
9630
9839
|
model: Clutter.Model
|
|
9631
9840
|
|
|
9632
9841
|
// Owm methods of Mx-2.0.Mx.ListView
|
|
@@ -9637,7 +9846,7 @@ export interface ListView extends Atk.ImplementorIface, Clutter.Animatable, Clut
|
|
|
9637
9846
|
* @param attribute Name of the attribute
|
|
9638
9847
|
* @param column Column number
|
|
9639
9848
|
*/
|
|
9640
|
-
add_attribute(attribute: string
|
|
9849
|
+
add_attribute(attribute: string, column: number): void
|
|
9641
9850
|
/**
|
|
9642
9851
|
* Freeze the view. This means that the view will not act on changes to the
|
|
9643
9852
|
* model until it is thawed. Call #mx_list_view_thaw to thaw the view.
|
|
@@ -10446,6 +10655,7 @@ export module Notebook {
|
|
|
10446
10655
|
// Own constructor properties of Mx-2.0.Mx.Notebook
|
|
10447
10656
|
|
|
10448
10657
|
current_page?: Clutter.Actor | null
|
|
10658
|
+
currentPage?: Clutter.Actor | null
|
|
10449
10659
|
}
|
|
10450
10660
|
|
|
10451
10661
|
}
|
|
@@ -10455,6 +10665,7 @@ export interface Notebook extends Atk.ImplementorIface, Clutter.Animatable, Clut
|
|
|
10455
10665
|
// Own properties of Mx-2.0.Mx.Notebook
|
|
10456
10666
|
|
|
10457
10667
|
current_page: Clutter.Actor
|
|
10668
|
+
currentPage: Clutter.Actor
|
|
10458
10669
|
|
|
10459
10670
|
// Own fields of Mx-2.0.Mx.Notebook
|
|
10460
10671
|
|
|
@@ -10808,6 +11019,9 @@ export module Pager {
|
|
|
10808
11019
|
edge_previews?: boolean | null
|
|
10809
11020
|
page_actor?: Clutter.Actor | null
|
|
10810
11021
|
page_num?: number | null
|
|
11022
|
+
edgePreviews?: boolean | null
|
|
11023
|
+
pageActor?: Clutter.Actor | null
|
|
11024
|
+
pageNum?: number | null
|
|
10811
11025
|
}
|
|
10812
11026
|
|
|
10813
11027
|
}
|
|
@@ -10817,8 +11031,11 @@ export interface Pager extends Atk.ImplementorIface, Clutter.Animatable, Clutter
|
|
|
10817
11031
|
// Own properties of Mx-2.0.Mx.Pager
|
|
10818
11032
|
|
|
10819
11033
|
edge_previews: boolean
|
|
11034
|
+
edgePreviews: boolean
|
|
10820
11035
|
page_actor: Clutter.Actor
|
|
11036
|
+
pageActor: Clutter.Actor
|
|
10821
11037
|
page_num: number
|
|
11038
|
+
pageNum: number
|
|
10822
11039
|
|
|
10823
11040
|
// Owm methods of Mx-2.0.Mx.Pager
|
|
10824
11041
|
|
|
@@ -11198,6 +11415,7 @@ export module PathBar {
|
|
|
11198
11415
|
|
|
11199
11416
|
clear_on_change?: boolean | null
|
|
11200
11417
|
editable?: boolean | null
|
|
11418
|
+
clearOnChange?: boolean | null
|
|
11201
11419
|
}
|
|
11202
11420
|
|
|
11203
11421
|
}
|
|
@@ -11207,6 +11425,7 @@ export interface PathBar extends Atk.ImplementorIface, Clutter.Animatable, Clutt
|
|
|
11207
11425
|
// Own properties of Mx-2.0.Mx.PathBar
|
|
11208
11426
|
|
|
11209
11427
|
clear_on_change: boolean
|
|
11428
|
+
clearOnChange: boolean
|
|
11210
11429
|
editable: boolean
|
|
11211
11430
|
readonly entry: Entry
|
|
11212
11431
|
readonly level: number
|
|
@@ -11237,11 +11456,11 @@ export interface PathBar extends Atk.ImplementorIface, Clutter.Animatable, Clutt
|
|
|
11237
11456
|
* @returns MxEntry *
|
|
11238
11457
|
*/
|
|
11239
11458
|
get_entry(): Entry
|
|
11240
|
-
get_label(level: number): string
|
|
11459
|
+
get_label(level: number): string
|
|
11241
11460
|
get_level(): number
|
|
11242
|
-
get_text(): string
|
|
11461
|
+
get_text(): string
|
|
11243
11462
|
pop(): number
|
|
11244
|
-
push(name: string
|
|
11463
|
+
push(name: string): number
|
|
11245
11464
|
/**
|
|
11246
11465
|
* Set theh value of the #MxPathBar:clear-on-change property
|
|
11247
11466
|
* @param clear_on_change the new value of the property
|
|
@@ -11257,12 +11476,12 @@ export interface PathBar extends Atk.ImplementorIface, Clutter.Animatable, Clutt
|
|
|
11257
11476
|
* @param level A #gint
|
|
11258
11477
|
* @param label A #gchar
|
|
11259
11478
|
*/
|
|
11260
|
-
set_label(level: number, label: string
|
|
11479
|
+
set_label(level: number, label: string): void
|
|
11261
11480
|
/**
|
|
11262
11481
|
* Set the text in the editable area of the #MxPathBar
|
|
11263
11482
|
* @param text string to set the editable text to.
|
|
11264
11483
|
*/
|
|
11265
|
-
set_text(text: string
|
|
11484
|
+
set_text(text: string): void
|
|
11266
11485
|
|
|
11267
11486
|
// Conflicting methods
|
|
11268
11487
|
|
|
@@ -12367,6 +12586,9 @@ export module ScrollView {
|
|
|
12367
12586
|
enable_mouse_scrolling?: boolean | null
|
|
12368
12587
|
scroll_policy?: ScrollPolicy | null
|
|
12369
12588
|
scroll_visibility?: ScrollPolicy | null
|
|
12589
|
+
enableMouseScrolling?: boolean | null
|
|
12590
|
+
scrollPolicy?: ScrollPolicy | null
|
|
12591
|
+
scrollVisibility?: ScrollPolicy | null
|
|
12370
12592
|
}
|
|
12371
12593
|
|
|
12372
12594
|
}
|
|
@@ -12376,8 +12598,11 @@ export interface ScrollView extends Atk.ImplementorIface, Clutter.Animatable, Cl
|
|
|
12376
12598
|
// Own properties of Mx-2.0.Mx.ScrollView
|
|
12377
12599
|
|
|
12378
12600
|
enable_mouse_scrolling: boolean
|
|
12601
|
+
enableMouseScrolling: boolean
|
|
12379
12602
|
scroll_policy: ScrollPolicy
|
|
12603
|
+
scrollPolicy: ScrollPolicy
|
|
12380
12604
|
scroll_visibility: ScrollPolicy
|
|
12605
|
+
scrollVisibility: ScrollPolicy
|
|
12381
12606
|
|
|
12382
12607
|
// Owm methods of Mx-2.0.Mx.ScrollView
|
|
12383
12608
|
|
|
@@ -12733,6 +12958,12 @@ export module Settings {
|
|
|
12733
12958
|
long_press_timeout?: number | null
|
|
12734
12959
|
small_screen?: boolean | null
|
|
12735
12960
|
touch_mode?: boolean | null
|
|
12961
|
+
dragThreshold?: number | null
|
|
12962
|
+
fontName?: string | null
|
|
12963
|
+
iconTheme?: string | null
|
|
12964
|
+
longPressTimeout?: number | null
|
|
12965
|
+
smallScreen?: boolean | null
|
|
12966
|
+
touchMode?: boolean | null
|
|
12736
12967
|
}
|
|
12737
12968
|
|
|
12738
12969
|
}
|
|
@@ -12742,11 +12973,17 @@ export interface Settings {
|
|
|
12742
12973
|
// Own properties of Mx-2.0.Mx.Settings
|
|
12743
12974
|
|
|
12744
12975
|
drag_threshold: number
|
|
12976
|
+
dragThreshold: number
|
|
12745
12977
|
font_name: string | null
|
|
12978
|
+
fontName: string | null
|
|
12746
12979
|
icon_theme: string | null
|
|
12980
|
+
iconTheme: string | null
|
|
12747
12981
|
long_press_timeout: number
|
|
12982
|
+
longPressTimeout: number
|
|
12748
12983
|
small_screen: boolean
|
|
12984
|
+
smallScreen: boolean
|
|
12749
12985
|
touch_mode: boolean
|
|
12986
|
+
touchMode: boolean
|
|
12750
12987
|
|
|
12751
12988
|
// Own fields of Mx-2.0.Mx.Settings
|
|
12752
12989
|
|
|
@@ -12824,6 +13061,7 @@ export module Slider {
|
|
|
12824
13061
|
|
|
12825
13062
|
buffer_value?: number | null
|
|
12826
13063
|
value?: number | null
|
|
13064
|
+
bufferValue?: number | null
|
|
12827
13065
|
}
|
|
12828
13066
|
|
|
12829
13067
|
}
|
|
@@ -12833,6 +13071,7 @@ export interface Slider extends Atk.ImplementorIface, Clutter.Animatable, Clutte
|
|
|
12833
13071
|
// Own properties of Mx-2.0.Mx.Slider
|
|
12834
13072
|
|
|
12835
13073
|
buffer_value: number
|
|
13074
|
+
bufferValue: number
|
|
12836
13075
|
value: number
|
|
12837
13076
|
|
|
12838
13077
|
// Owm methods of Mx-2.0.Mx.Slider
|
|
@@ -14007,6 +14246,10 @@ export module StackChild {
|
|
|
14007
14246
|
x_fill?: boolean | null
|
|
14008
14247
|
y_align?: Align | null
|
|
14009
14248
|
y_fill?: boolean | null
|
|
14249
|
+
xAlign?: Align | null
|
|
14250
|
+
xFill?: boolean | null
|
|
14251
|
+
yAlign?: Align | null
|
|
14252
|
+
yFill?: boolean | null
|
|
14010
14253
|
}
|
|
14011
14254
|
|
|
14012
14255
|
}
|
|
@@ -14018,9 +14261,13 @@ export interface StackChild {
|
|
|
14018
14261
|
crop: boolean
|
|
14019
14262
|
fit: boolean
|
|
14020
14263
|
x_align: Align
|
|
14264
|
+
xAlign: Align
|
|
14021
14265
|
x_fill: boolean
|
|
14266
|
+
xFill: boolean
|
|
14022
14267
|
y_align: Align
|
|
14268
|
+
yAlign: Align
|
|
14023
14269
|
y_fill: boolean
|
|
14270
|
+
yFill: boolean
|
|
14024
14271
|
|
|
14025
14272
|
// Class property signals of Mx-2.0.Mx.StackChild
|
|
14026
14273
|
|
|
@@ -14118,7 +14365,7 @@ export interface Style {
|
|
|
14118
14365
|
* @param property_name the name of the property to get
|
|
14119
14366
|
* @param value return location for the property value
|
|
14120
14367
|
*/
|
|
14121
|
-
get_property(property_name: string
|
|
14368
|
+
get_property(property_name: string, value: any): void
|
|
14122
14369
|
/**
|
|
14123
14370
|
* Load style information from `data,` using `id` to identify the stylesheet.
|
|
14124
14371
|
* `id` is usually the file name of the style sheet, which is used in the search
|
|
@@ -14127,14 +14374,14 @@ export interface Style {
|
|
|
14127
14374
|
* @param data CSS data to parse
|
|
14128
14375
|
* @returns TRUE if the style information was loaded successfully. Returns FALSE on error.
|
|
14129
14376
|
*/
|
|
14130
|
-
load_from_data(id: string
|
|
14377
|
+
load_from_data(id: string, data: string): boolean
|
|
14131
14378
|
/**
|
|
14132
14379
|
* Load style information from the specified file.
|
|
14133
14380
|
* @param filename filename of the style sheet to load
|
|
14134
14381
|
* @returns TRUE if the style information was loaded successfully. Returns FALSE on error.
|
|
14135
14382
|
*/
|
|
14136
|
-
load_from_file(filename: string
|
|
14137
|
-
load_from_resource(path: string
|
|
14383
|
+
load_from_file(filename: string): boolean
|
|
14384
|
+
load_from_resource(path: string): boolean
|
|
14138
14385
|
|
|
14139
14386
|
// Own virtual methods of Mx-2.0.Mx.Style
|
|
14140
14387
|
|
|
@@ -14202,6 +14449,8 @@ export module Table {
|
|
|
14202
14449
|
|
|
14203
14450
|
column_spacing?: number | null
|
|
14204
14451
|
row_spacing?: number | null
|
|
14452
|
+
columnSpacing?: number | null
|
|
14453
|
+
rowSpacing?: number | null
|
|
14205
14454
|
}
|
|
14206
14455
|
|
|
14207
14456
|
}
|
|
@@ -14211,9 +14460,13 @@ export interface Table extends Atk.ImplementorIface, Clutter.Animatable, Clutter
|
|
|
14211
14460
|
// Own properties of Mx-2.0.Mx.Table
|
|
14212
14461
|
|
|
14213
14462
|
readonly column_count: number
|
|
14463
|
+
readonly columnCount: number
|
|
14214
14464
|
column_spacing: number
|
|
14465
|
+
columnSpacing: number
|
|
14215
14466
|
readonly row_count: number
|
|
14467
|
+
readonly rowCount: number
|
|
14216
14468
|
row_spacing: number
|
|
14469
|
+
rowSpacing: number
|
|
14217
14470
|
|
|
14218
14471
|
// Owm methods of Mx-2.0.Mx.Table
|
|
14219
14472
|
|
|
@@ -14748,6 +15001,14 @@ export module TableChild {
|
|
|
14748
15001
|
y_align?: Align | null
|
|
14749
15002
|
y_expand?: boolean | null
|
|
14750
15003
|
y_fill?: boolean | null
|
|
15004
|
+
columnSpan?: number | null
|
|
15005
|
+
rowSpan?: number | null
|
|
15006
|
+
xAlign?: Align | null
|
|
15007
|
+
xExpand?: boolean | null
|
|
15008
|
+
xFill?: boolean | null
|
|
15009
|
+
yAlign?: Align | null
|
|
15010
|
+
yExpand?: boolean | null
|
|
15011
|
+
yFill?: boolean | null
|
|
14751
15012
|
}
|
|
14752
15013
|
|
|
14753
15014
|
}
|
|
@@ -14758,14 +15019,22 @@ export interface TableChild {
|
|
|
14758
15019
|
|
|
14759
15020
|
column: number
|
|
14760
15021
|
column_span: number
|
|
15022
|
+
columnSpan: number
|
|
14761
15023
|
row: number
|
|
14762
15024
|
row_span: number
|
|
15025
|
+
rowSpan: number
|
|
14763
15026
|
x_align: Align
|
|
15027
|
+
xAlign: Align
|
|
14764
15028
|
x_expand: boolean
|
|
15029
|
+
xExpand: boolean
|
|
14765
15030
|
x_fill: boolean
|
|
15031
|
+
xFill: boolean
|
|
14766
15032
|
y_align: Align
|
|
15033
|
+
yAlign: Align
|
|
14767
15034
|
y_expand: boolean
|
|
15035
|
+
yExpand: boolean
|
|
14768
15036
|
y_fill: boolean
|
|
15037
|
+
yFill: boolean
|
|
14769
15038
|
|
|
14770
15039
|
// Class property signals of Mx-2.0.Mx.TableChild
|
|
14771
15040
|
|
|
@@ -14842,7 +15111,7 @@ export interface TextureCache {
|
|
|
14842
15111
|
* @param uri A URI or path to an image file
|
|
14843
15112
|
* @returns %TRUE if the image exists, %FALSE otherwise
|
|
14844
15113
|
*/
|
|
14845
|
-
contains(uri: string
|
|
15114
|
+
contains(uri: string): boolean
|
|
14846
15115
|
/**
|
|
14847
15116
|
* Checks whether there are any textures associated with the given URI by
|
|
14848
15117
|
* the given identifier.
|
|
@@ -14850,14 +15119,14 @@ export interface TextureCache {
|
|
|
14850
15119
|
* @param ident A unique identifier
|
|
14851
15120
|
* @returns %TRUE if the data exists, %FALSE otherwise
|
|
14852
15121
|
*/
|
|
14853
|
-
contains_meta(uri: string
|
|
15122
|
+
contains_meta(uri: string, ident: any): boolean
|
|
14854
15123
|
/**
|
|
14855
15124
|
* This is a wrapper around mx_texture_cache_get_texture() which returns
|
|
14856
15125
|
* a ClutterActor.
|
|
14857
15126
|
* @param uri A URI or path to a image file
|
|
14858
15127
|
* @returns a newly created ClutterTexture
|
|
14859
15128
|
*/
|
|
14860
|
-
get_actor(uri: string
|
|
15129
|
+
get_actor(uri: string): Clutter.Actor
|
|
14861
15130
|
/**
|
|
14862
15131
|
* Create a #CoglHandle representing a texture of the specified image. Adds
|
|
14863
15132
|
* the image to the cache if the image had not been previously loaded.
|
|
@@ -14866,7 +15135,7 @@ export interface TextureCache {
|
|
|
14866
15135
|
* @param uri A URI or path to an image file
|
|
14867
15136
|
* @returns a #CoglHandle to the cached texture
|
|
14868
15137
|
*/
|
|
14869
|
-
get_cogl_texture(uri: string
|
|
15138
|
+
get_cogl_texture(uri: string): Cogl.Handle
|
|
14870
15139
|
/**
|
|
14871
15140
|
* Retrieves the #CoglHandle of the previously added image associated
|
|
14872
15141
|
* with the given unique identifier.
|
|
@@ -14876,7 +15145,7 @@ export interface TextureCache {
|
|
|
14876
15145
|
* @param ident A unique identifier
|
|
14877
15146
|
* @returns A #CoglHandle to a texture, with an added reference. %NULL if no image was found.
|
|
14878
15147
|
*/
|
|
14879
|
-
get_meta_cogl_texture(uri: string
|
|
15148
|
+
get_meta_cogl_texture(uri: string, ident: any): Cogl.Handle
|
|
14880
15149
|
/**
|
|
14881
15150
|
* Create a new ClutterTexture using the previously added image associated
|
|
14882
15151
|
* with the given unique identifier.
|
|
@@ -14886,7 +15155,7 @@ export interface TextureCache {
|
|
|
14886
15155
|
* @param ident A unique identifier
|
|
14887
15156
|
* @returns A newly allocated #ClutterTexture, or %NULL if no image was found
|
|
14888
15157
|
*/
|
|
14889
|
-
get_meta_texture(uri: string
|
|
15158
|
+
get_meta_texture(uri: string, ident: any): Clutter.Texture
|
|
14890
15159
|
/**
|
|
14891
15160
|
* Returns the number of items in the texture cache
|
|
14892
15161
|
* @returns the current size of the cache
|
|
@@ -14900,7 +15169,7 @@ export interface TextureCache {
|
|
|
14900
15169
|
* @param uri A URI or path to a image file
|
|
14901
15170
|
* @returns a newly created ClutterTexture
|
|
14902
15171
|
*/
|
|
14903
|
-
get_texture(uri: string
|
|
15172
|
+
get_texture(uri: string): Clutter.Texture
|
|
14904
15173
|
/**
|
|
14905
15174
|
* Inserts a texture into the texture cache. This can be useful if you
|
|
14906
15175
|
* want to cache a texture from a custom or unhandled URI type, or you
|
|
@@ -14911,7 +15180,7 @@ export interface TextureCache {
|
|
|
14911
15180
|
* @param uri A URI or local file path
|
|
14912
15181
|
* @param texture A #CoglHandle to a texture
|
|
14913
15182
|
*/
|
|
14914
|
-
insert(uri: string
|
|
15183
|
+
insert(uri: string, texture: Cogl.Handle): void
|
|
14915
15184
|
/**
|
|
14916
15185
|
* Inserts a texture that's associated with a URI into the cache.
|
|
14917
15186
|
* If the metadata already exists for this URI, it will be replaced.
|
|
@@ -14923,13 +15192,13 @@ export interface TextureCache {
|
|
|
14923
15192
|
* @param texture A #CoglHandle to a texture
|
|
14924
15193
|
* @param destroy_func An optional destruction function for `ident`
|
|
14925
15194
|
*/
|
|
14926
|
-
insert_meta(uri: string
|
|
14927
|
-
load_cache(filename: string
|
|
15195
|
+
insert_meta(uri: string, ident: any, texture: Cogl.Handle, destroy_func: GLib.DestroyNotify): void
|
|
15196
|
+
load_cache(filename: string): void
|
|
14928
15197
|
|
|
14929
15198
|
// Own virtual methods of Mx-2.0.Mx.TextureCache
|
|
14930
15199
|
|
|
14931
15200
|
vfunc_error_loading(error: GLib.Error): void
|
|
14932
|
-
vfunc_loaded(uri: string
|
|
15201
|
+
vfunc_loaded(uri: string, texture: Clutter.Texture): void
|
|
14933
15202
|
|
|
14934
15203
|
// Class property signals of Mx-2.0.Mx.TextureCache
|
|
14935
15204
|
|
|
@@ -14976,6 +15245,7 @@ export module TextureFrame {
|
|
|
14976
15245
|
parent_texture?: Clutter.Texture | null
|
|
14977
15246
|
right?: number | null
|
|
14978
15247
|
top?: number | null
|
|
15248
|
+
parentTexture?: Clutter.Texture | null
|
|
14979
15249
|
}
|
|
14980
15250
|
|
|
14981
15251
|
}
|
|
@@ -14987,6 +15257,7 @@ export interface TextureFrame extends Atk.ImplementorIface, Clutter.Animatable,
|
|
|
14987
15257
|
bottom: number
|
|
14988
15258
|
left: number
|
|
14989
15259
|
parent_texture: Clutter.Texture
|
|
15260
|
+
parentTexture: Clutter.Texture
|
|
14990
15261
|
right: number
|
|
14991
15262
|
top: number
|
|
14992
15263
|
|
|
@@ -15720,6 +15991,7 @@ export module Toolbar {
|
|
|
15720
15991
|
// Own constructor properties of Mx-2.0.Mx.Toolbar
|
|
15721
15992
|
|
|
15722
15993
|
has_close_button?: boolean | null
|
|
15994
|
+
hasCloseButton?: boolean | null
|
|
15723
15995
|
}
|
|
15724
15996
|
|
|
15725
15997
|
}
|
|
@@ -15729,6 +16001,7 @@ export interface Toolbar extends Atk.ImplementorIface, Clutter.Animatable, Clutt
|
|
|
15729
16001
|
// Own properties of Mx-2.0.Mx.Toolbar
|
|
15730
16002
|
|
|
15731
16003
|
has_close_button: boolean
|
|
16004
|
+
hasCloseButton: boolean
|
|
15732
16005
|
|
|
15733
16006
|
// Own fields of Mx-2.0.Mx.Toolbar
|
|
15734
16007
|
|
|
@@ -16099,6 +16372,7 @@ export module Tooltip {
|
|
|
16099
16372
|
|
|
16100
16373
|
text?: string | null
|
|
16101
16374
|
tip_area?: Clutter.Geometry | null
|
|
16375
|
+
tipArea?: Clutter.Geometry | null
|
|
16102
16376
|
}
|
|
16103
16377
|
|
|
16104
16378
|
}
|
|
@@ -16109,6 +16383,7 @@ export interface Tooltip extends Atk.ImplementorIface, Clutter.Animatable, Clutt
|
|
|
16109
16383
|
|
|
16110
16384
|
text: string | null
|
|
16111
16385
|
tip_area: Clutter.Geometry
|
|
16386
|
+
tipArea: Clutter.Geometry
|
|
16112
16387
|
|
|
16113
16388
|
// Owm methods of Mx-2.0.Mx.Tooltip
|
|
16114
16389
|
|
|
@@ -16116,7 +16391,7 @@ export interface Tooltip extends Atk.ImplementorIface, Clutter.Animatable, Clutt
|
|
|
16116
16391
|
* Get the text displayed on the tooltip
|
|
16117
16392
|
* @returns the text for the tooltip. This must not be freed by the application
|
|
16118
16393
|
*/
|
|
16119
|
-
get_text(): string
|
|
16394
|
+
get_text(): string
|
|
16120
16395
|
/**
|
|
16121
16396
|
* Retrieve the area on the stage that the tooltip currently applies to
|
|
16122
16397
|
* @returns the #ClutterGeometry, owned by the tooltip which must not be freed by the application.
|
|
@@ -16130,7 +16405,7 @@ export interface Tooltip extends Atk.ImplementorIface, Clutter.Animatable, Clutt
|
|
|
16130
16405
|
* Sets the text displayed on the tooltip
|
|
16131
16406
|
* @param text text to set the label to
|
|
16132
16407
|
*/
|
|
16133
|
-
set_text(text: string
|
|
16408
|
+
set_text(text: string): void
|
|
16134
16409
|
/**
|
|
16135
16410
|
* Set the area on the stage that the tooltip applies to.
|
|
16136
16411
|
* @param area A #ClutterGeometry
|
|
@@ -16488,6 +16763,10 @@ export module Viewport {
|
|
|
16488
16763
|
x_origin?: number | null
|
|
16489
16764
|
y_origin?: number | null
|
|
16490
16765
|
z_origin?: number | null
|
|
16766
|
+
syncAdjustments?: boolean | null
|
|
16767
|
+
xOrigin?: number | null
|
|
16768
|
+
yOrigin?: number | null
|
|
16769
|
+
zOrigin?: number | null
|
|
16491
16770
|
}
|
|
16492
16771
|
|
|
16493
16772
|
}
|
|
@@ -16497,14 +16776,20 @@ export interface Viewport extends Atk.ImplementorIface, Clutter.Animatable, Clut
|
|
|
16497
16776
|
// Own properties of Mx-2.0.Mx.Viewport
|
|
16498
16777
|
|
|
16499
16778
|
sync_adjustments: boolean
|
|
16779
|
+
syncAdjustments: boolean
|
|
16500
16780
|
x_origin: number
|
|
16781
|
+
xOrigin: number
|
|
16501
16782
|
y_origin: number
|
|
16783
|
+
yOrigin: number
|
|
16502
16784
|
z_origin: number
|
|
16785
|
+
zOrigin: number
|
|
16503
16786
|
|
|
16504
16787
|
// Conflicting properties
|
|
16505
16788
|
|
|
16506
16789
|
x_align: any
|
|
16790
|
+
xAlign: any
|
|
16507
16791
|
y_align: any
|
|
16792
|
+
yAlign: any
|
|
16508
16793
|
|
|
16509
16794
|
// Owm methods of Mx-2.0.Mx.Viewport
|
|
16510
16795
|
|
|
@@ -16884,6 +17169,11 @@ export module Widget {
|
|
|
16884
17169
|
* text displayed on the tooltip
|
|
16885
17170
|
*/
|
|
16886
17171
|
tooltip_text?: string | null
|
|
17172
|
+
tooltipDelay?: number | null
|
|
17173
|
+
/**
|
|
17174
|
+
* text displayed on the tooltip
|
|
17175
|
+
*/
|
|
17176
|
+
tooltipText?: string | null
|
|
16887
17177
|
}
|
|
16888
17178
|
|
|
16889
17179
|
}
|
|
@@ -16898,10 +17188,15 @@ export interface Widget extends Atk.ImplementorIface, Clutter.Animatable, Clutte
|
|
|
16898
17188
|
*/
|
|
16899
17189
|
menu: Menu
|
|
16900
17190
|
tooltip_delay: number
|
|
17191
|
+
tooltipDelay: number
|
|
16901
17192
|
/**
|
|
16902
17193
|
* text displayed on the tooltip
|
|
16903
17194
|
*/
|
|
16904
17195
|
tooltip_text: string | null
|
|
17196
|
+
/**
|
|
17197
|
+
* text displayed on the tooltip
|
|
17198
|
+
*/
|
|
17199
|
+
tooltipText: string | null
|
|
16905
17200
|
|
|
16906
17201
|
// Owm methods of Mx-2.0.Mx.Widget
|
|
16907
17202
|
|
|
@@ -16963,7 +17258,7 @@ export interface Widget extends Atk.ImplementorIface, Clutter.Animatable, Clutte
|
|
|
16963
17258
|
* Get the current tooltip string
|
|
16964
17259
|
* @returns The current tooltip string, owned by the #MxWidget
|
|
16965
17260
|
*/
|
|
16966
|
-
get_tooltip_text(): string
|
|
17261
|
+
get_tooltip_text(): string
|
|
16967
17262
|
/**
|
|
16968
17263
|
* Hide the tooltip for `widget`
|
|
16969
17264
|
*/
|
|
@@ -17002,7 +17297,7 @@ export interface Widget extends Atk.ImplementorIface, Clutter.Animatable, Clutte
|
|
|
17002
17297
|
* %FALSE.
|
|
17003
17298
|
* @param text text to set as the tooltip
|
|
17004
17299
|
*/
|
|
17005
|
-
set_tooltip_text(text: string
|
|
17300
|
+
set_tooltip_text(text: string): void
|
|
17006
17301
|
/**
|
|
17007
17302
|
* Show the tooltip for `widget`
|
|
17008
17303
|
*/
|
|
@@ -17340,6 +17635,12 @@ export module Window {
|
|
|
17340
17635
|
title?: string | null
|
|
17341
17636
|
toolbar?: Toolbar | null
|
|
17342
17637
|
window_rotation?: WindowRotation | null
|
|
17638
|
+
clutterStage?: Clutter.Stage | null
|
|
17639
|
+
hasToolbar?: boolean | null
|
|
17640
|
+
iconCoglTexture?: string | null
|
|
17641
|
+
iconName?: string | null
|
|
17642
|
+
smallScreen?: boolean | null
|
|
17643
|
+
windowRotation?: WindowRotation | null
|
|
17343
17644
|
}
|
|
17344
17645
|
|
|
17345
17646
|
}
|
|
@@ -17350,16 +17651,24 @@ export interface Window {
|
|
|
17350
17651
|
|
|
17351
17652
|
child: Clutter.Actor
|
|
17352
17653
|
readonly clutter_stage: Clutter.Stage
|
|
17654
|
+
readonly clutterStage: Clutter.Stage
|
|
17353
17655
|
fullscreen: boolean
|
|
17354
17656
|
has_toolbar: boolean
|
|
17657
|
+
hasToolbar: boolean
|
|
17355
17658
|
icon_cogl_texture: string | null
|
|
17659
|
+
iconCoglTexture: string | null
|
|
17356
17660
|
icon_name: string | null
|
|
17661
|
+
iconName: string | null
|
|
17357
17662
|
small_screen: boolean
|
|
17663
|
+
smallScreen: boolean
|
|
17358
17664
|
title: string | null
|
|
17359
17665
|
toolbar: Toolbar
|
|
17360
17666
|
window_rotation: WindowRotation
|
|
17667
|
+
windowRotation: WindowRotation
|
|
17361
17668
|
readonly window_rotation_angle: number
|
|
17669
|
+
readonly windowRotationAngle: number
|
|
17362
17670
|
readonly window_rotation_timeline: Clutter.Timeline
|
|
17671
|
+
readonly windowRotationTimeline: Clutter.Timeline
|
|
17363
17672
|
|
|
17364
17673
|
// Own fields of Mx-2.0.Mx.Window
|
|
17365
17674
|
|
|
@@ -17394,7 +17703,7 @@ export interface Window {
|
|
|
17394
17703
|
* set, or the icon was set with mx_window_set_icon_from_cogl_texture().
|
|
17395
17704
|
* @returns The window icon name, or %NULL
|
|
17396
17705
|
*/
|
|
17397
|
-
get_icon_name(): string
|
|
17706
|
+
get_icon_name(): string
|
|
17398
17707
|
/**
|
|
17399
17708
|
* Determines if the window is in small-screen mode.
|
|
17400
17709
|
* See mx_window_set_small_screen().
|
|
@@ -17405,7 +17714,7 @@ export interface Window {
|
|
|
17405
17714
|
* Retrieves the title used for the window.
|
|
17406
17715
|
* @returns The title used for the window
|
|
17407
17716
|
*/
|
|
17408
|
-
get_title(): string
|
|
17717
|
+
get_title(): string
|
|
17409
17718
|
/**
|
|
17410
17719
|
* Retrieves the toolbar associated with the window.
|
|
17411
17720
|
* @returns A #MxToolbar
|
|
@@ -17483,7 +17792,7 @@ export interface Window {
|
|
|
17483
17792
|
* window-system specific.
|
|
17484
17793
|
* @param title A string to use for the window title name
|
|
17485
17794
|
*/
|
|
17486
|
-
set_title(title: string
|
|
17795
|
+
set_title(title: string): void
|
|
17487
17796
|
/**
|
|
17488
17797
|
* Sets the toolbar associated with the window.
|
|
17489
17798
|
* @param toolbar
|
|
@@ -17774,7 +18083,7 @@ export class BorderImage {
|
|
|
17774
18083
|
|
|
17775
18084
|
// Constructors of Mx-2.0.Mx.BorderImage
|
|
17776
18085
|
|
|
17777
|
-
static set_from_string(value: any, str: string
|
|
18086
|
+
static set_from_string(value: any, str: string, filename: string): void
|
|
17778
18087
|
}
|
|
17779
18088
|
|
|
17780
18089
|
export interface BoxLayoutChildClass {
|
|
@@ -18713,10 +19022,10 @@ export interface StylableIface {
|
|
|
18713
19022
|
|
|
18714
19023
|
get_style: (stylable: Stylable) => Style
|
|
18715
19024
|
set_style: (stylable: Stylable, style: Style) => void
|
|
18716
|
-
get_style_class: (stylable: Stylable) => string
|
|
18717
|
-
set_style_class: (stylable: Stylable, style_class: string
|
|
18718
|
-
get_style_pseudo_class: (stylable: Stylable) => string
|
|
18719
|
-
set_style_pseudo_class: (stylable: Stylable, pseudo_class: string
|
|
19025
|
+
get_style_class: (stylable: Stylable) => string
|
|
19026
|
+
set_style_class: (stylable: Stylable, style_class: string) => void
|
|
19027
|
+
get_style_pseudo_class: (stylable: Stylable) => string
|
|
19028
|
+
set_style_pseudo_class: (stylable: Stylable, pseudo_class: string) => void
|
|
18720
19029
|
style_changed: (stylable: Stylable, flags: StyleChangedFlags) => void
|
|
18721
19030
|
}
|
|
18722
19031
|
|
|
@@ -18855,7 +19164,7 @@ export interface TextureCacheClass {
|
|
|
18855
19164
|
// Own fields of Mx-2.0.Mx.TextureCacheClass
|
|
18856
19165
|
|
|
18857
19166
|
parent_class: GObject.ObjectClass
|
|
18858
|
-
loaded: (self: TextureCache, uri: string
|
|
19167
|
+
loaded: (self: TextureCache, uri: string, texture: Clutter.Texture) => void
|
|
18859
19168
|
error_loading: (self: TextureCache, error: GLib.Error) => void
|
|
18860
19169
|
}
|
|
18861
19170
|
|