@girs/builder-1.0 1.0.0-3.2.5 → 1.0.0-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/builder-1.0.d.cts +91 -41
- package/builder-1.0.d.ts +91 -41
- package/package.json +22 -22
package/README.md
CHANGED
|
@@ -5,7 +5,7 @@
|
|
|
5
5
|

|
|
6
6
|
|
|
7
7
|
|
|
8
|
-
GJS TypeScript type definitions for Builder-1.0, generated from library version 1.0.0 using [ts-for-gir](https://github.com/gjsify/ts-for-gir) v3.2.
|
|
8
|
+
GJS TypeScript type definitions for Builder-1.0, generated from library version 1.0.0 using [ts-for-gir](https://github.com/gjsify/ts-for-gir) v3.2.7.
|
|
9
9
|
|
|
10
10
|
|
|
11
11
|
## Install
|
package/builder-1.0.d.cts
CHANGED
|
@@ -137,6 +137,7 @@ export interface Document {
|
|
|
137
137
|
|
|
138
138
|
readonly modified: boolean
|
|
139
139
|
readonly read_only: boolean
|
|
140
|
+
readonly readOnly: boolean
|
|
140
141
|
readonly title: string | null
|
|
141
142
|
|
|
142
143
|
// Owm methods of Builder-1.0.Builder.Document
|
|
@@ -145,7 +146,7 @@ export interface Document {
|
|
|
145
146
|
get_modified(): boolean
|
|
146
147
|
get_mtime(mtime: GLib.TimeVal): boolean
|
|
147
148
|
get_read_only(): boolean
|
|
148
|
-
get_title(): string
|
|
149
|
+
get_title(): string
|
|
149
150
|
is_untitled(): boolean
|
|
150
151
|
save_as_async(toplevel: Gtk.Widget, cancellable: Gio.Cancellable | null, callback: Gio.AsyncReadyCallback<this> | null): void
|
|
151
152
|
|
|
@@ -182,7 +183,7 @@ export interface Document {
|
|
|
182
183
|
vfunc_get_modified(): boolean
|
|
183
184
|
vfunc_get_mtime(mtime: GLib.TimeVal): boolean
|
|
184
185
|
vfunc_get_read_only(): boolean
|
|
185
|
-
vfunc_get_title(): string
|
|
186
|
+
vfunc_get_title(): string
|
|
186
187
|
vfunc_is_untitled(): boolean
|
|
187
188
|
vfunc_save_as_async(toplevel: Gtk.Widget, cancellable: Gio.Cancellable | null, callback: Gio.AsyncReadyCallback<this> | null): void
|
|
188
189
|
vfunc_save_as_finish(result: Gio.AsyncResult): boolean
|
|
@@ -238,7 +239,7 @@ export interface EditorViewAddin {
|
|
|
238
239
|
|
|
239
240
|
// Own virtual methods of Builder-1.0.Builder.EditorViewAddin
|
|
240
241
|
|
|
241
|
-
vfunc_language_changed(language_id: string
|
|
242
|
+
vfunc_language_changed(language_id: string): void
|
|
242
243
|
vfunc_load(view: EditorView): void
|
|
243
244
|
vfunc_unload(view: EditorView): void
|
|
244
245
|
|
|
@@ -276,8 +277,8 @@ export interface Application extends Gio.ActionGroup, Gio.ActionMap {
|
|
|
276
277
|
|
|
277
278
|
// Owm methods of Builder-1.0.Builder.Application
|
|
278
279
|
|
|
279
|
-
get_argv0(): string
|
|
280
|
-
get_keybindings_mode(): string
|
|
280
|
+
get_argv0(): string
|
|
281
|
+
get_keybindings_mode(): string
|
|
281
282
|
get_started_at(): GLib.DateTime
|
|
282
283
|
/**
|
|
283
284
|
* Asynchronously requests a #GDBusProxy to a service provided in a worker
|
|
@@ -293,7 +294,7 @@ export interface Application extends Gio.ActionGroup, Gio.ActionMap {
|
|
|
293
294
|
* @param cancellable A #GCancellable or %NULL.
|
|
294
295
|
* @param callback A #GAsyncReadyCallback or %NULL.
|
|
295
296
|
*/
|
|
296
|
-
get_worker_async(plugin_name: string
|
|
297
|
+
get_worker_async(plugin_name: string, cancellable: Gio.Cancellable | null, callback: Gio.AsyncReadyCallback<this> | null): void
|
|
297
298
|
|
|
298
299
|
// Overloads of get_worker_async
|
|
299
300
|
|
|
@@ -313,7 +314,7 @@ export interface Application extends Gio.ActionGroup, Gio.ActionMap {
|
|
|
313
314
|
* @param cancellable A #GCancellable or %NULL.
|
|
314
315
|
* @returns A Promise of: A #GDBusProxy or %NULL.
|
|
315
316
|
*/
|
|
316
|
-
get_worker_async(plugin_name: string
|
|
317
|
+
get_worker_async(plugin_name: string, cancellable: Gio.Cancellable | null): globalThis.Promise<Gio.DBusProxy>
|
|
317
318
|
/**
|
|
318
319
|
* Completes an asynchronous request to get a proxy to a worker process.
|
|
319
320
|
* @param result A #GAsyncResult
|
|
@@ -439,7 +440,7 @@ export interface EditorView extends Atk.ImplementorIface, Gtk.Buildable, Gtk.Ori
|
|
|
439
440
|
* @param child the child widget
|
|
440
441
|
* @param child_property the name of a child property installed on the class of `container`
|
|
441
442
|
*/
|
|
442
|
-
child_notify(child: Gtk.Widget, child_property: string
|
|
443
|
+
child_notify(child: Gtk.Widget, child_property: string): void
|
|
443
444
|
|
|
444
445
|
// Overloads of child_notify
|
|
445
446
|
|
|
@@ -453,7 +454,7 @@ export interface EditorView extends Atk.ImplementorIface, Gtk.Buildable, Gtk.Ori
|
|
|
453
454
|
* Also see gtk_container_child_notify().
|
|
454
455
|
* @param child_property the name of a child property installed on the class of `widget’`s parent
|
|
455
456
|
*/
|
|
456
|
-
child_notify(child_property: string
|
|
457
|
+
child_notify(child_property: string): void
|
|
457
458
|
/**
|
|
458
459
|
* Emits a #GtkWidget::child-notify signal for the
|
|
459
460
|
* [child property][child-properties] `child_property`
|
|
@@ -464,7 +465,7 @@ export interface EditorView extends Atk.ImplementorIface, Gtk.Buildable, Gtk.Ori
|
|
|
464
465
|
* Also see gtk_container_child_notify().
|
|
465
466
|
* @param child_property the name of a child property installed on the class of `widget’`s parent
|
|
466
467
|
*/
|
|
467
|
-
child_notify(child_property: string
|
|
468
|
+
child_notify(child_property: string): void
|
|
468
469
|
|
|
469
470
|
// Own signals of Builder-1.0.Builder.EditorView
|
|
470
471
|
|
|
@@ -694,7 +695,7 @@ export class MenuExtension extends GObject.Object {
|
|
|
694
695
|
constructor(config?: MenuExtension.ConstructorProperties)
|
|
695
696
|
constructor(menu: Gio.Menu)
|
|
696
697
|
static new(menu: Gio.Menu): MenuExtension
|
|
697
|
-
static new_for_section(menu: Gio.Menu, section: string
|
|
698
|
+
static new_for_section(menu: Gio.Menu, section: string): MenuExtension
|
|
698
699
|
_init(config?: MenuExtension.ConstructorProperties): void
|
|
699
700
|
}
|
|
700
701
|
|
|
@@ -726,6 +727,7 @@ export module Tree {
|
|
|
726
727
|
root?: TreeNode | null
|
|
727
728
|
selection?: TreeNode | null
|
|
728
729
|
show_icons?: boolean | null
|
|
730
|
+
showIcons?: boolean | null
|
|
729
731
|
}
|
|
730
732
|
|
|
731
733
|
}
|
|
@@ -737,6 +739,7 @@ export interface Tree extends Atk.ImplementorIface, Gtk.Buildable, Gtk.Scrollabl
|
|
|
737
739
|
root: TreeNode
|
|
738
740
|
selection: TreeNode
|
|
739
741
|
show_icons: boolean
|
|
742
|
+
showIcons: boolean
|
|
740
743
|
|
|
741
744
|
// Own fields of Builder-1.0.Builder.Tree
|
|
742
745
|
|
|
@@ -821,7 +824,7 @@ export interface Tree extends Atk.ImplementorIface, Gtk.Buildable, Gtk.Scrollabl
|
|
|
821
824
|
* @param child the child widget
|
|
822
825
|
* @param child_property the name of a child property installed on the class of `container`
|
|
823
826
|
*/
|
|
824
|
-
child_notify(child: Gtk.Widget, child_property: string
|
|
827
|
+
child_notify(child: Gtk.Widget, child_property: string): void
|
|
825
828
|
|
|
826
829
|
// Overloads of child_notify
|
|
827
830
|
|
|
@@ -835,7 +838,7 @@ export interface Tree extends Atk.ImplementorIface, Gtk.Buildable, Gtk.Scrollabl
|
|
|
835
838
|
* Also see gtk_container_child_notify().
|
|
836
839
|
* @param child_property the name of a child property installed on the class of `widget’`s parent
|
|
837
840
|
*/
|
|
838
|
-
child_notify(child_property: string
|
|
841
|
+
child_notify(child_property: string): void
|
|
839
842
|
/**
|
|
840
843
|
* Emits a #GtkWidget::child-notify signal for the
|
|
841
844
|
* [child property][child-properties] `child_property`
|
|
@@ -846,11 +849,11 @@ export interface Tree extends Atk.ImplementorIface, Gtk.Buildable, Gtk.Scrollabl
|
|
|
846
849
|
* Also see gtk_container_child_notify().
|
|
847
850
|
* @param child_property the name of a child property installed on the class of `widget’`s parent
|
|
848
851
|
*/
|
|
849
|
-
child_notify(child_property: string
|
|
852
|
+
child_notify(child_property: string): void
|
|
850
853
|
|
|
851
854
|
// Own virtual methods of Builder-1.0.Builder.Tree
|
|
852
855
|
|
|
853
|
-
vfunc_action(action_group: string
|
|
856
|
+
vfunc_action(action_group: string, action_name: string, param: string): void
|
|
854
857
|
vfunc_populate_popup(widget: Gtk.Widget): void
|
|
855
858
|
|
|
856
859
|
// Own signals of Builder-1.0.Builder.Tree
|
|
@@ -1262,6 +1265,27 @@ export module TreeNode {
|
|
|
1262
1265
|
* If the "text" property includes #GMarkup.
|
|
1263
1266
|
*/
|
|
1264
1267
|
use_markup?: boolean | null
|
|
1268
|
+
/**
|
|
1269
|
+
* This property allows for more lazy loading of nodes.
|
|
1270
|
+
*
|
|
1271
|
+
* When a node becomes visible, we normally build it's children nodes
|
|
1272
|
+
* so that we know if we need an expansion arrow. However, that can
|
|
1273
|
+
* be expensive when rendering directories with lots of subdirectories.
|
|
1274
|
+
*
|
|
1275
|
+
* Using this, you can always show an arrow without building the children
|
|
1276
|
+
* and simply hide the arrow if there were in fact no children (upon
|
|
1277
|
+
* expansion).
|
|
1278
|
+
*/
|
|
1279
|
+
childrenPossible?: boolean | null
|
|
1280
|
+
/**
|
|
1281
|
+
* An icon-name to display on the row.
|
|
1282
|
+
*/
|
|
1283
|
+
iconName?: string | null
|
|
1284
|
+
useDimLabel?: boolean | null
|
|
1285
|
+
/**
|
|
1286
|
+
* If the "text" property includes #GMarkup.
|
|
1287
|
+
*/
|
|
1288
|
+
useMarkup?: boolean | null
|
|
1265
1289
|
}
|
|
1266
1290
|
|
|
1267
1291
|
}
|
|
@@ -1282,10 +1306,26 @@ export interface TreeNode {
|
|
|
1282
1306
|
* expansion).
|
|
1283
1307
|
*/
|
|
1284
1308
|
children_possible: boolean
|
|
1309
|
+
/**
|
|
1310
|
+
* This property allows for more lazy loading of nodes.
|
|
1311
|
+
*
|
|
1312
|
+
* When a node becomes visible, we normally build it's children nodes
|
|
1313
|
+
* so that we know if we need an expansion arrow. However, that can
|
|
1314
|
+
* be expensive when rendering directories with lots of subdirectories.
|
|
1315
|
+
*
|
|
1316
|
+
* Using this, you can always show an arrow without building the children
|
|
1317
|
+
* and simply hide the arrow if there were in fact no children (upon
|
|
1318
|
+
* expansion).
|
|
1319
|
+
*/
|
|
1320
|
+
childrenPossible: boolean
|
|
1285
1321
|
/**
|
|
1286
1322
|
* An icon-name to display on the row.
|
|
1287
1323
|
*/
|
|
1288
1324
|
icon_name: string | null
|
|
1325
|
+
/**
|
|
1326
|
+
* An icon-name to display on the row.
|
|
1327
|
+
*/
|
|
1328
|
+
iconName: string | null
|
|
1289
1329
|
/**
|
|
1290
1330
|
* An optional #GObject to associate with the node.
|
|
1291
1331
|
*/
|
|
@@ -1303,10 +1343,15 @@ export interface TreeNode {
|
|
|
1303
1343
|
*/
|
|
1304
1344
|
tree: Tree
|
|
1305
1345
|
use_dim_label: boolean
|
|
1346
|
+
useDimLabel: boolean
|
|
1306
1347
|
/**
|
|
1307
1348
|
* If the "text" property includes #GMarkup.
|
|
1308
1349
|
*/
|
|
1309
1350
|
use_markup: boolean
|
|
1351
|
+
/**
|
|
1352
|
+
* If the "text" property includes #GMarkup.
|
|
1353
|
+
*/
|
|
1354
|
+
useMarkup: boolean
|
|
1310
1355
|
|
|
1311
1356
|
// Owm methods of Builder-1.0.Builder.TreeNode
|
|
1312
1357
|
|
|
@@ -1323,7 +1368,7 @@ export interface TreeNode {
|
|
|
1323
1368
|
/**
|
|
1324
1369
|
* Fetches the icon-name of the icon to display, or NULL for no icon.
|
|
1325
1370
|
*/
|
|
1326
|
-
get_icon_name(): string
|
|
1371
|
+
get_icon_name(): string
|
|
1327
1372
|
/**
|
|
1328
1373
|
* Gets a #GObject for the node, if one was set.
|
|
1329
1374
|
* @returns A #GObject or %NULL.
|
|
@@ -1340,7 +1385,7 @@ export interface TreeNode {
|
|
|
1340
1385
|
* @returns A #GtkTreePath if successful; otherwise %NULL.
|
|
1341
1386
|
*/
|
|
1342
1387
|
get_path(): Gtk.TreePath | null
|
|
1343
|
-
get_text(): string
|
|
1388
|
+
get_text(): string
|
|
1344
1389
|
/**
|
|
1345
1390
|
* Fetches the #GbTree instance that owns the node.
|
|
1346
1391
|
* @returns A #GbTree.
|
|
@@ -1378,7 +1423,7 @@ export interface TreeNode {
|
|
|
1378
1423
|
* cell of the GbTree.
|
|
1379
1424
|
* @param icon_name The icon name.
|
|
1380
1425
|
*/
|
|
1381
|
-
set_icon_name(icon_name: string
|
|
1426
|
+
set_icon_name(icon_name: string): void
|
|
1382
1427
|
/**
|
|
1383
1428
|
* An optional object to associate with the node. This is handy to save needing
|
|
1384
1429
|
* to subclass the #GbTreeNode class.
|
|
@@ -1390,7 +1435,7 @@ export interface TreeNode {
|
|
|
1390
1435
|
* cell of the GbTree.
|
|
1391
1436
|
* @param text The node text.
|
|
1392
1437
|
*/
|
|
1393
|
-
set_text(text: string
|
|
1438
|
+
set_text(text: string): void
|
|
1394
1439
|
set_use_dim_label(use_dim_label: boolean): void
|
|
1395
1440
|
set_use_markup(use_markup: boolean): void
|
|
1396
1441
|
show_popover(popover: Gtk.Popover): void
|
|
@@ -1468,9 +1513,11 @@ export interface View extends Atk.ImplementorIface, Gtk.Buildable, Gtk.Orientabl
|
|
|
1468
1513
|
// Own properties of Builder-1.0.Builder.View
|
|
1469
1514
|
|
|
1470
1515
|
readonly can_split: boolean
|
|
1516
|
+
readonly canSplit: boolean
|
|
1471
1517
|
readonly document: Document
|
|
1472
1518
|
readonly modified: boolean
|
|
1473
1519
|
readonly special_title: string | null
|
|
1520
|
+
readonly specialTitle: string | null
|
|
1474
1521
|
readonly title: string | null
|
|
1475
1522
|
|
|
1476
1523
|
// Own fields of Builder-1.0.Builder.View
|
|
@@ -1507,8 +1554,8 @@ export interface View extends Atk.ImplementorIface, Gtk.Buildable, Gtk.Orientabl
|
|
|
1507
1554
|
get_document(): Document
|
|
1508
1555
|
get_menu(): Gio.Menu
|
|
1509
1556
|
get_modified(): boolean
|
|
1510
|
-
get_special_title(): string
|
|
1511
|
-
get_title(): string
|
|
1557
|
+
get_special_title(): string
|
|
1558
|
+
get_title(): string
|
|
1512
1559
|
navigate_to(location: Ide.SourceLocation): void
|
|
1513
1560
|
set_back_forward_list(back_forward_list: Ide.BackForwardList): void
|
|
1514
1561
|
/**
|
|
@@ -1530,7 +1577,7 @@ export interface View extends Atk.ImplementorIface, Gtk.Buildable, Gtk.Orientabl
|
|
|
1530
1577
|
* @param child the child widget
|
|
1531
1578
|
* @param child_property the name of a child property installed on the class of `container`
|
|
1532
1579
|
*/
|
|
1533
|
-
child_notify(child: Gtk.Widget, child_property: string
|
|
1580
|
+
child_notify(child: Gtk.Widget, child_property: string): void
|
|
1534
1581
|
|
|
1535
1582
|
// Overloads of child_notify
|
|
1536
1583
|
|
|
@@ -1544,7 +1591,7 @@ export interface View extends Atk.ImplementorIface, Gtk.Buildable, Gtk.Orientabl
|
|
|
1544
1591
|
* Also see gtk_container_child_notify().
|
|
1545
1592
|
* @param child_property the name of a child property installed on the class of `widget’`s parent
|
|
1546
1593
|
*/
|
|
1547
|
-
child_notify(child_property: string
|
|
1594
|
+
child_notify(child_property: string): void
|
|
1548
1595
|
/**
|
|
1549
1596
|
* Emits a #GtkWidget::child-notify signal for the
|
|
1550
1597
|
* [child property][child-properties] `child_property`
|
|
@@ -1555,7 +1602,7 @@ export interface View extends Atk.ImplementorIface, Gtk.Buildable, Gtk.Orientabl
|
|
|
1555
1602
|
* Also see gtk_container_child_notify().
|
|
1556
1603
|
* @param child_property the name of a child property installed on the class of `widget’`s parent
|
|
1557
1604
|
*/
|
|
1558
|
-
child_notify(child_property: string
|
|
1605
|
+
child_notify(child_property: string): void
|
|
1559
1606
|
|
|
1560
1607
|
// Own virtual methods of Builder-1.0.Builder.View
|
|
1561
1608
|
|
|
@@ -1585,8 +1632,8 @@ export interface View extends Atk.ImplementorIface, Gtk.Buildable, Gtk.Orientabl
|
|
|
1585
1632
|
*/
|
|
1586
1633
|
vfunc_get_document(): Document
|
|
1587
1634
|
vfunc_get_modified(): boolean
|
|
1588
|
-
vfunc_get_special_title(): string
|
|
1589
|
-
vfunc_get_title(): string
|
|
1635
|
+
vfunc_get_special_title(): string
|
|
1636
|
+
vfunc_get_title(): string
|
|
1590
1637
|
vfunc_navigate_to(location: Ide.SourceLocation): void
|
|
1591
1638
|
vfunc_set_back_forward_list(back_forward_list: Ide.BackForwardList): void
|
|
1592
1639
|
/**
|
|
@@ -1815,7 +1862,7 @@ export interface ViewGrid extends Atk.ImplementorIface, Gtk.Buildable {
|
|
|
1815
1862
|
* @param child the child widget
|
|
1816
1863
|
* @param child_property the name of a child property installed on the class of `container`
|
|
1817
1864
|
*/
|
|
1818
|
-
child_notify(child: Gtk.Widget, child_property: string
|
|
1865
|
+
child_notify(child: Gtk.Widget, child_property: string): void
|
|
1819
1866
|
|
|
1820
1867
|
// Overloads of child_notify
|
|
1821
1868
|
|
|
@@ -1829,7 +1876,7 @@ export interface ViewGrid extends Atk.ImplementorIface, Gtk.Buildable {
|
|
|
1829
1876
|
* Also see gtk_container_child_notify().
|
|
1830
1877
|
* @param child_property the name of a child property installed on the class of `widget’`s parent
|
|
1831
1878
|
*/
|
|
1832
|
-
child_notify(child_property: string
|
|
1879
|
+
child_notify(child_property: string): void
|
|
1833
1880
|
/**
|
|
1834
1881
|
* Emits a #GtkWidget::child-notify signal for the
|
|
1835
1882
|
* [child property][child-properties] `child_property`
|
|
@@ -1840,7 +1887,7 @@ export interface ViewGrid extends Atk.ImplementorIface, Gtk.Buildable {
|
|
|
1840
1887
|
* Also see gtk_container_child_notify().
|
|
1841
1888
|
* @param child_property the name of a child property installed on the class of `widget’`s parent
|
|
1842
1889
|
*/
|
|
1843
|
-
child_notify(child_property: string
|
|
1890
|
+
child_notify(child_property: string): void
|
|
1844
1891
|
|
|
1845
1892
|
// Class property signals of Builder-1.0.Builder.ViewGrid
|
|
1846
1893
|
|
|
@@ -2017,6 +2064,7 @@ export module ViewStack {
|
|
|
2017
2064
|
// Own constructor properties of Builder-1.0.Builder.ViewStack
|
|
2018
2065
|
|
|
2019
2066
|
active_view?: View | null
|
|
2067
|
+
activeView?: View | null
|
|
2020
2068
|
}
|
|
2021
2069
|
|
|
2022
2070
|
}
|
|
@@ -2026,6 +2074,7 @@ export interface ViewStack extends Atk.ImplementorIface, Gtk.Buildable {
|
|
|
2026
2074
|
// Own properties of Builder-1.0.Builder.ViewStack
|
|
2027
2075
|
|
|
2028
2076
|
active_view: View
|
|
2077
|
+
activeView: View
|
|
2029
2078
|
|
|
2030
2079
|
// Owm methods of Builder-1.0.Builder.ViewStack
|
|
2031
2080
|
|
|
@@ -2072,7 +2121,7 @@ export interface ViewStack extends Atk.ImplementorIface, Gtk.Buildable {
|
|
|
2072
2121
|
* @param child the child widget
|
|
2073
2122
|
* @param child_property the name of a child property installed on the class of `container`
|
|
2074
2123
|
*/
|
|
2075
|
-
child_notify(child: Gtk.Widget, child_property: string
|
|
2124
|
+
child_notify(child: Gtk.Widget, child_property: string): void
|
|
2076
2125
|
|
|
2077
2126
|
// Overloads of child_notify
|
|
2078
2127
|
|
|
@@ -2086,7 +2135,7 @@ export interface ViewStack extends Atk.ImplementorIface, Gtk.Buildable {
|
|
|
2086
2135
|
* Also see gtk_container_child_notify().
|
|
2087
2136
|
* @param child_property the name of a child property installed on the class of `widget’`s parent
|
|
2088
2137
|
*/
|
|
2089
|
-
child_notify(child_property: string
|
|
2138
|
+
child_notify(child_property: string): void
|
|
2090
2139
|
/**
|
|
2091
2140
|
* Emits a #GtkWidget::child-notify signal for the
|
|
2092
2141
|
* [child property][child-properties] `child_property`
|
|
@@ -2097,7 +2146,7 @@ export interface ViewStack extends Atk.ImplementorIface, Gtk.Buildable {
|
|
|
2097
2146
|
* Also see gtk_container_child_notify().
|
|
2098
2147
|
* @param child_property the name of a child property installed on the class of `widget’`s parent
|
|
2099
2148
|
*/
|
|
2100
|
-
child_notify(child_property: string
|
|
2149
|
+
child_notify(child_property: string): void
|
|
2101
2150
|
|
|
2102
2151
|
// Own signals of Builder-1.0.Builder.ViewStack
|
|
2103
2152
|
|
|
@@ -2294,6 +2343,7 @@ export interface Workbench extends Atk.ImplementorIface, Gio.ActionGroup, Gio.Ac
|
|
|
2294
2343
|
// Own properties of Builder-1.0.Builder.Workbench
|
|
2295
2344
|
|
|
2296
2345
|
readonly active_view: View
|
|
2346
|
+
readonly activeView: View
|
|
2297
2347
|
readonly building: boolean
|
|
2298
2348
|
/**
|
|
2299
2349
|
* The "context" property is the #IdeContext that shall be worked upon in
|
|
@@ -2340,7 +2390,7 @@ export interface Workbench extends Atk.ImplementorIface, Gio.ActionGroup, Gio.Ac
|
|
|
2340
2390
|
get_view_grid(): Gtk.Widget
|
|
2341
2391
|
get_workspace(): Gtk.Widget
|
|
2342
2392
|
open(file: Gio.File): void
|
|
2343
|
-
open_uri_list(uri_list: string
|
|
2393
|
+
open_uri_list(uri_list: string): void
|
|
2344
2394
|
open_with_editor(file: Gio.File): void
|
|
2345
2395
|
reveal_file(file: Gio.File): void
|
|
2346
2396
|
/**
|
|
@@ -2384,7 +2434,7 @@ export interface Workbench extends Atk.ImplementorIface, Gio.ActionGroup, Gio.Ac
|
|
|
2384
2434
|
* @param child the child widget
|
|
2385
2435
|
* @param child_property the name of a child property installed on the class of `container`
|
|
2386
2436
|
*/
|
|
2387
|
-
child_notify(child: Gtk.Widget, child_property: string
|
|
2437
|
+
child_notify(child: Gtk.Widget, child_property: string): void
|
|
2388
2438
|
|
|
2389
2439
|
// Overloads of child_notify
|
|
2390
2440
|
|
|
@@ -2398,7 +2448,7 @@ export interface Workbench extends Atk.ImplementorIface, Gio.ActionGroup, Gio.Ac
|
|
|
2398
2448
|
* Also see gtk_container_child_notify().
|
|
2399
2449
|
* @param child_property the name of a child property installed on the class of `widget’`s parent
|
|
2400
2450
|
*/
|
|
2401
|
-
child_notify(child_property: string
|
|
2451
|
+
child_notify(child_property: string): void
|
|
2402
2452
|
/**
|
|
2403
2453
|
* Emits a #GtkWidget::child-notify signal for the
|
|
2404
2454
|
* [child property][child-properties] `child_property`
|
|
@@ -2409,7 +2459,7 @@ export interface Workbench extends Atk.ImplementorIface, Gio.ActionGroup, Gio.Ac
|
|
|
2409
2459
|
* Also see gtk_container_child_notify().
|
|
2410
2460
|
* @param child_property the name of a child property installed on the class of `widget’`s parent
|
|
2411
2461
|
*/
|
|
2412
|
-
child_notify(child_property: string
|
|
2462
|
+
child_notify(child_property: string): void
|
|
2413
2463
|
|
|
2414
2464
|
// Own signals of Builder-1.0.Builder.Workbench
|
|
2415
2465
|
|
|
@@ -2718,7 +2768,7 @@ export interface DocumentInterface {
|
|
|
2718
2768
|
get_modified: (document: Document) => boolean
|
|
2719
2769
|
get_mtime: (document: Document, mtime: GLib.TimeVal) => boolean
|
|
2720
2770
|
get_read_only: (document: Document) => boolean
|
|
2721
|
-
get_title: (document: Document) => string
|
|
2771
|
+
get_title: (document: Document) => string
|
|
2722
2772
|
is_untitled: (document: Document) => boolean
|
|
2723
2773
|
save_async: (document: Document, toplevel: Gtk.Widget, cancellable: Gio.Cancellable | null, callback: Gio.AsyncReadyCallback | null) => void
|
|
2724
2774
|
save_finish: (document: Document, result: Gio.AsyncResult) => boolean
|
|
@@ -2740,7 +2790,7 @@ export interface EditorViewAddinInterface {
|
|
|
2740
2790
|
parent: GObject.TypeInterface
|
|
2741
2791
|
load: (self: EditorViewAddin, view: EditorView) => void
|
|
2742
2792
|
unload: (self: EditorViewAddin, view: EditorView) => void
|
|
2743
|
-
language_changed: (self: EditorViewAddin, language_id: string
|
|
2793
|
+
language_changed: (self: EditorViewAddin, language_id: string) => void
|
|
2744
2794
|
}
|
|
2745
2795
|
|
|
2746
2796
|
export abstract class EditorViewAddinInterface {
|
|
@@ -2804,7 +2854,7 @@ export interface TreeClass {
|
|
|
2804
2854
|
// Own fields of Builder-1.0.Builder.TreeClass
|
|
2805
2855
|
|
|
2806
2856
|
parent_class: Gtk.TreeViewClass
|
|
2807
|
-
action: (self: Tree, action_group: string
|
|
2857
|
+
action: (self: Tree, action_group: string, action_name: string, param: string) => void
|
|
2808
2858
|
populate_popup: (self: Tree, widget: Gtk.Widget) => void
|
|
2809
2859
|
}
|
|
2810
2860
|
|
|
@@ -2838,8 +2888,8 @@ export interface ViewClass {
|
|
|
2838
2888
|
get_can_split: (self: View) => boolean
|
|
2839
2889
|
get_document: (self: View) => Document
|
|
2840
2890
|
get_modified: (self: View) => boolean
|
|
2841
|
-
get_title: (self: View) => string
|
|
2842
|
-
get_special_title: (self: View) => string
|
|
2891
|
+
get_title: (self: View) => string
|
|
2892
|
+
get_special_title: (self: View) => string
|
|
2843
2893
|
create_split: (self: View) => View
|
|
2844
2894
|
set_split_view: (self: View, split_view: boolean) => void
|
|
2845
2895
|
set_back_forward_list: (self: View, back_forward_list: Ide.BackForwardList) => void
|
package/builder-1.0.d.ts
CHANGED
|
@@ -139,6 +139,7 @@ interface Document {
|
|
|
139
139
|
|
|
140
140
|
readonly modified: boolean
|
|
141
141
|
readonly read_only: boolean
|
|
142
|
+
readonly readOnly: boolean
|
|
142
143
|
readonly title: string | null
|
|
143
144
|
|
|
144
145
|
// Owm methods of Builder-1.0.Builder.Document
|
|
@@ -147,7 +148,7 @@ interface Document {
|
|
|
147
148
|
get_modified(): boolean
|
|
148
149
|
get_mtime(mtime: GLib.TimeVal): boolean
|
|
149
150
|
get_read_only(): boolean
|
|
150
|
-
get_title(): string
|
|
151
|
+
get_title(): string
|
|
151
152
|
is_untitled(): boolean
|
|
152
153
|
save_as_async(toplevel: Gtk.Widget, cancellable: Gio.Cancellable | null, callback: Gio.AsyncReadyCallback<this> | null): void
|
|
153
154
|
|
|
@@ -184,7 +185,7 @@ interface Document {
|
|
|
184
185
|
vfunc_get_modified(): boolean
|
|
185
186
|
vfunc_get_mtime(mtime: GLib.TimeVal): boolean
|
|
186
187
|
vfunc_get_read_only(): boolean
|
|
187
|
-
vfunc_get_title(): string
|
|
188
|
+
vfunc_get_title(): string
|
|
188
189
|
vfunc_is_untitled(): boolean
|
|
189
190
|
vfunc_save_as_async(toplevel: Gtk.Widget, cancellable: Gio.Cancellable | null, callback: Gio.AsyncReadyCallback<this> | null): void
|
|
190
191
|
vfunc_save_as_finish(result: Gio.AsyncResult): boolean
|
|
@@ -240,7 +241,7 @@ interface EditorViewAddin {
|
|
|
240
241
|
|
|
241
242
|
// Own virtual methods of Builder-1.0.Builder.EditorViewAddin
|
|
242
243
|
|
|
243
|
-
vfunc_language_changed(language_id: string
|
|
244
|
+
vfunc_language_changed(language_id: string): void
|
|
244
245
|
vfunc_load(view: EditorView): void
|
|
245
246
|
vfunc_unload(view: EditorView): void
|
|
246
247
|
|
|
@@ -278,8 +279,8 @@ interface Application extends Gio.ActionGroup, Gio.ActionMap {
|
|
|
278
279
|
|
|
279
280
|
// Owm methods of Builder-1.0.Builder.Application
|
|
280
281
|
|
|
281
|
-
get_argv0(): string
|
|
282
|
-
get_keybindings_mode(): string
|
|
282
|
+
get_argv0(): string
|
|
283
|
+
get_keybindings_mode(): string
|
|
283
284
|
get_started_at(): GLib.DateTime
|
|
284
285
|
/**
|
|
285
286
|
* Asynchronously requests a #GDBusProxy to a service provided in a worker
|
|
@@ -295,7 +296,7 @@ interface Application extends Gio.ActionGroup, Gio.ActionMap {
|
|
|
295
296
|
* @param cancellable A #GCancellable or %NULL.
|
|
296
297
|
* @param callback A #GAsyncReadyCallback or %NULL.
|
|
297
298
|
*/
|
|
298
|
-
get_worker_async(plugin_name: string
|
|
299
|
+
get_worker_async(plugin_name: string, cancellable: Gio.Cancellable | null, callback: Gio.AsyncReadyCallback<this> | null): void
|
|
299
300
|
|
|
300
301
|
// Overloads of get_worker_async
|
|
301
302
|
|
|
@@ -315,7 +316,7 @@ interface Application extends Gio.ActionGroup, Gio.ActionMap {
|
|
|
315
316
|
* @param cancellable A #GCancellable or %NULL.
|
|
316
317
|
* @returns A Promise of: A #GDBusProxy or %NULL.
|
|
317
318
|
*/
|
|
318
|
-
get_worker_async(plugin_name: string
|
|
319
|
+
get_worker_async(plugin_name: string, cancellable: Gio.Cancellable | null): globalThis.Promise<Gio.DBusProxy>
|
|
319
320
|
/**
|
|
320
321
|
* Completes an asynchronous request to get a proxy to a worker process.
|
|
321
322
|
* @param result A #GAsyncResult
|
|
@@ -441,7 +442,7 @@ interface EditorView extends Atk.ImplementorIface, Gtk.Buildable, Gtk.Orientable
|
|
|
441
442
|
* @param child the child widget
|
|
442
443
|
* @param child_property the name of a child property installed on the class of `container`
|
|
443
444
|
*/
|
|
444
|
-
child_notify(child: Gtk.Widget, child_property: string
|
|
445
|
+
child_notify(child: Gtk.Widget, child_property: string): void
|
|
445
446
|
|
|
446
447
|
// Overloads of child_notify
|
|
447
448
|
|
|
@@ -455,7 +456,7 @@ interface EditorView extends Atk.ImplementorIface, Gtk.Buildable, Gtk.Orientable
|
|
|
455
456
|
* Also see gtk_container_child_notify().
|
|
456
457
|
* @param child_property the name of a child property installed on the class of `widget’`s parent
|
|
457
458
|
*/
|
|
458
|
-
child_notify(child_property: string
|
|
459
|
+
child_notify(child_property: string): void
|
|
459
460
|
/**
|
|
460
461
|
* Emits a #GtkWidget::child-notify signal for the
|
|
461
462
|
* [child property][child-properties] `child_property`
|
|
@@ -466,7 +467,7 @@ interface EditorView extends Atk.ImplementorIface, Gtk.Buildable, Gtk.Orientable
|
|
|
466
467
|
* Also see gtk_container_child_notify().
|
|
467
468
|
* @param child_property the name of a child property installed on the class of `widget’`s parent
|
|
468
469
|
*/
|
|
469
|
-
child_notify(child_property: string
|
|
470
|
+
child_notify(child_property: string): void
|
|
470
471
|
|
|
471
472
|
// Own signals of Builder-1.0.Builder.EditorView
|
|
472
473
|
|
|
@@ -696,7 +697,7 @@ class MenuExtension extends GObject.Object {
|
|
|
696
697
|
constructor(config?: MenuExtension.ConstructorProperties)
|
|
697
698
|
constructor(menu: Gio.Menu)
|
|
698
699
|
static new(menu: Gio.Menu): MenuExtension
|
|
699
|
-
static new_for_section(menu: Gio.Menu, section: string
|
|
700
|
+
static new_for_section(menu: Gio.Menu, section: string): MenuExtension
|
|
700
701
|
_init(config?: MenuExtension.ConstructorProperties): void
|
|
701
702
|
}
|
|
702
703
|
|
|
@@ -728,6 +729,7 @@ module Tree {
|
|
|
728
729
|
root?: TreeNode | null
|
|
729
730
|
selection?: TreeNode | null
|
|
730
731
|
show_icons?: boolean | null
|
|
732
|
+
showIcons?: boolean | null
|
|
731
733
|
}
|
|
732
734
|
|
|
733
735
|
}
|
|
@@ -739,6 +741,7 @@ interface Tree extends Atk.ImplementorIface, Gtk.Buildable, Gtk.Scrollable {
|
|
|
739
741
|
root: TreeNode
|
|
740
742
|
selection: TreeNode
|
|
741
743
|
show_icons: boolean
|
|
744
|
+
showIcons: boolean
|
|
742
745
|
|
|
743
746
|
// Own fields of Builder-1.0.Builder.Tree
|
|
744
747
|
|
|
@@ -823,7 +826,7 @@ interface Tree extends Atk.ImplementorIface, Gtk.Buildable, Gtk.Scrollable {
|
|
|
823
826
|
* @param child the child widget
|
|
824
827
|
* @param child_property the name of a child property installed on the class of `container`
|
|
825
828
|
*/
|
|
826
|
-
child_notify(child: Gtk.Widget, child_property: string
|
|
829
|
+
child_notify(child: Gtk.Widget, child_property: string): void
|
|
827
830
|
|
|
828
831
|
// Overloads of child_notify
|
|
829
832
|
|
|
@@ -837,7 +840,7 @@ interface Tree extends Atk.ImplementorIface, Gtk.Buildable, Gtk.Scrollable {
|
|
|
837
840
|
* Also see gtk_container_child_notify().
|
|
838
841
|
* @param child_property the name of a child property installed on the class of `widget’`s parent
|
|
839
842
|
*/
|
|
840
|
-
child_notify(child_property: string
|
|
843
|
+
child_notify(child_property: string): void
|
|
841
844
|
/**
|
|
842
845
|
* Emits a #GtkWidget::child-notify signal for the
|
|
843
846
|
* [child property][child-properties] `child_property`
|
|
@@ -848,11 +851,11 @@ interface Tree extends Atk.ImplementorIface, Gtk.Buildable, Gtk.Scrollable {
|
|
|
848
851
|
* Also see gtk_container_child_notify().
|
|
849
852
|
* @param child_property the name of a child property installed on the class of `widget’`s parent
|
|
850
853
|
*/
|
|
851
|
-
child_notify(child_property: string
|
|
854
|
+
child_notify(child_property: string): void
|
|
852
855
|
|
|
853
856
|
// Own virtual methods of Builder-1.0.Builder.Tree
|
|
854
857
|
|
|
855
|
-
vfunc_action(action_group: string
|
|
858
|
+
vfunc_action(action_group: string, action_name: string, param: string): void
|
|
856
859
|
vfunc_populate_popup(widget: Gtk.Widget): void
|
|
857
860
|
|
|
858
861
|
// Own signals of Builder-1.0.Builder.Tree
|
|
@@ -1264,6 +1267,27 @@ module TreeNode {
|
|
|
1264
1267
|
* If the "text" property includes #GMarkup.
|
|
1265
1268
|
*/
|
|
1266
1269
|
use_markup?: boolean | null
|
|
1270
|
+
/**
|
|
1271
|
+
* This property allows for more lazy loading of nodes.
|
|
1272
|
+
*
|
|
1273
|
+
* When a node becomes visible, we normally build it's children nodes
|
|
1274
|
+
* so that we know if we need an expansion arrow. However, that can
|
|
1275
|
+
* be expensive when rendering directories with lots of subdirectories.
|
|
1276
|
+
*
|
|
1277
|
+
* Using this, you can always show an arrow without building the children
|
|
1278
|
+
* and simply hide the arrow if there were in fact no children (upon
|
|
1279
|
+
* expansion).
|
|
1280
|
+
*/
|
|
1281
|
+
childrenPossible?: boolean | null
|
|
1282
|
+
/**
|
|
1283
|
+
* An icon-name to display on the row.
|
|
1284
|
+
*/
|
|
1285
|
+
iconName?: string | null
|
|
1286
|
+
useDimLabel?: boolean | null
|
|
1287
|
+
/**
|
|
1288
|
+
* If the "text" property includes #GMarkup.
|
|
1289
|
+
*/
|
|
1290
|
+
useMarkup?: boolean | null
|
|
1267
1291
|
}
|
|
1268
1292
|
|
|
1269
1293
|
}
|
|
@@ -1284,10 +1308,26 @@ interface TreeNode {
|
|
|
1284
1308
|
* expansion).
|
|
1285
1309
|
*/
|
|
1286
1310
|
children_possible: boolean
|
|
1311
|
+
/**
|
|
1312
|
+
* This property allows for more lazy loading of nodes.
|
|
1313
|
+
*
|
|
1314
|
+
* When a node becomes visible, we normally build it's children nodes
|
|
1315
|
+
* so that we know if we need an expansion arrow. However, that can
|
|
1316
|
+
* be expensive when rendering directories with lots of subdirectories.
|
|
1317
|
+
*
|
|
1318
|
+
* Using this, you can always show an arrow without building the children
|
|
1319
|
+
* and simply hide the arrow if there were in fact no children (upon
|
|
1320
|
+
* expansion).
|
|
1321
|
+
*/
|
|
1322
|
+
childrenPossible: boolean
|
|
1287
1323
|
/**
|
|
1288
1324
|
* An icon-name to display on the row.
|
|
1289
1325
|
*/
|
|
1290
1326
|
icon_name: string | null
|
|
1327
|
+
/**
|
|
1328
|
+
* An icon-name to display on the row.
|
|
1329
|
+
*/
|
|
1330
|
+
iconName: string | null
|
|
1291
1331
|
/**
|
|
1292
1332
|
* An optional #GObject to associate with the node.
|
|
1293
1333
|
*/
|
|
@@ -1305,10 +1345,15 @@ interface TreeNode {
|
|
|
1305
1345
|
*/
|
|
1306
1346
|
tree: Tree
|
|
1307
1347
|
use_dim_label: boolean
|
|
1348
|
+
useDimLabel: boolean
|
|
1308
1349
|
/**
|
|
1309
1350
|
* If the "text" property includes #GMarkup.
|
|
1310
1351
|
*/
|
|
1311
1352
|
use_markup: boolean
|
|
1353
|
+
/**
|
|
1354
|
+
* If the "text" property includes #GMarkup.
|
|
1355
|
+
*/
|
|
1356
|
+
useMarkup: boolean
|
|
1312
1357
|
|
|
1313
1358
|
// Owm methods of Builder-1.0.Builder.TreeNode
|
|
1314
1359
|
|
|
@@ -1325,7 +1370,7 @@ interface TreeNode {
|
|
|
1325
1370
|
/**
|
|
1326
1371
|
* Fetches the icon-name of the icon to display, or NULL for no icon.
|
|
1327
1372
|
*/
|
|
1328
|
-
get_icon_name(): string
|
|
1373
|
+
get_icon_name(): string
|
|
1329
1374
|
/**
|
|
1330
1375
|
* Gets a #GObject for the node, if one was set.
|
|
1331
1376
|
* @returns A #GObject or %NULL.
|
|
@@ -1342,7 +1387,7 @@ interface TreeNode {
|
|
|
1342
1387
|
* @returns A #GtkTreePath if successful; otherwise %NULL.
|
|
1343
1388
|
*/
|
|
1344
1389
|
get_path(): Gtk.TreePath | null
|
|
1345
|
-
get_text(): string
|
|
1390
|
+
get_text(): string
|
|
1346
1391
|
/**
|
|
1347
1392
|
* Fetches the #GbTree instance that owns the node.
|
|
1348
1393
|
* @returns A #GbTree.
|
|
@@ -1380,7 +1425,7 @@ interface TreeNode {
|
|
|
1380
1425
|
* cell of the GbTree.
|
|
1381
1426
|
* @param icon_name The icon name.
|
|
1382
1427
|
*/
|
|
1383
|
-
set_icon_name(icon_name: string
|
|
1428
|
+
set_icon_name(icon_name: string): void
|
|
1384
1429
|
/**
|
|
1385
1430
|
* An optional object to associate with the node. This is handy to save needing
|
|
1386
1431
|
* to subclass the #GbTreeNode class.
|
|
@@ -1392,7 +1437,7 @@ interface TreeNode {
|
|
|
1392
1437
|
* cell of the GbTree.
|
|
1393
1438
|
* @param text The node text.
|
|
1394
1439
|
*/
|
|
1395
|
-
set_text(text: string
|
|
1440
|
+
set_text(text: string): void
|
|
1396
1441
|
set_use_dim_label(use_dim_label: boolean): void
|
|
1397
1442
|
set_use_markup(use_markup: boolean): void
|
|
1398
1443
|
show_popover(popover: Gtk.Popover): void
|
|
@@ -1470,9 +1515,11 @@ interface View extends Atk.ImplementorIface, Gtk.Buildable, Gtk.Orientable {
|
|
|
1470
1515
|
// Own properties of Builder-1.0.Builder.View
|
|
1471
1516
|
|
|
1472
1517
|
readonly can_split: boolean
|
|
1518
|
+
readonly canSplit: boolean
|
|
1473
1519
|
readonly document: Document
|
|
1474
1520
|
readonly modified: boolean
|
|
1475
1521
|
readonly special_title: string | null
|
|
1522
|
+
readonly specialTitle: string | null
|
|
1476
1523
|
readonly title: string | null
|
|
1477
1524
|
|
|
1478
1525
|
// Own fields of Builder-1.0.Builder.View
|
|
@@ -1509,8 +1556,8 @@ interface View extends Atk.ImplementorIface, Gtk.Buildable, Gtk.Orientable {
|
|
|
1509
1556
|
get_document(): Document
|
|
1510
1557
|
get_menu(): Gio.Menu
|
|
1511
1558
|
get_modified(): boolean
|
|
1512
|
-
get_special_title(): string
|
|
1513
|
-
get_title(): string
|
|
1559
|
+
get_special_title(): string
|
|
1560
|
+
get_title(): string
|
|
1514
1561
|
navigate_to(location: Ide.SourceLocation): void
|
|
1515
1562
|
set_back_forward_list(back_forward_list: Ide.BackForwardList): void
|
|
1516
1563
|
/**
|
|
@@ -1532,7 +1579,7 @@ interface View extends Atk.ImplementorIface, Gtk.Buildable, Gtk.Orientable {
|
|
|
1532
1579
|
* @param child the child widget
|
|
1533
1580
|
* @param child_property the name of a child property installed on the class of `container`
|
|
1534
1581
|
*/
|
|
1535
|
-
child_notify(child: Gtk.Widget, child_property: string
|
|
1582
|
+
child_notify(child: Gtk.Widget, child_property: string): void
|
|
1536
1583
|
|
|
1537
1584
|
// Overloads of child_notify
|
|
1538
1585
|
|
|
@@ -1546,7 +1593,7 @@ interface View extends Atk.ImplementorIface, Gtk.Buildable, Gtk.Orientable {
|
|
|
1546
1593
|
* Also see gtk_container_child_notify().
|
|
1547
1594
|
* @param child_property the name of a child property installed on the class of `widget’`s parent
|
|
1548
1595
|
*/
|
|
1549
|
-
child_notify(child_property: string
|
|
1596
|
+
child_notify(child_property: string): void
|
|
1550
1597
|
/**
|
|
1551
1598
|
* Emits a #GtkWidget::child-notify signal for the
|
|
1552
1599
|
* [child property][child-properties] `child_property`
|
|
@@ -1557,7 +1604,7 @@ interface View extends Atk.ImplementorIface, Gtk.Buildable, Gtk.Orientable {
|
|
|
1557
1604
|
* Also see gtk_container_child_notify().
|
|
1558
1605
|
* @param child_property the name of a child property installed on the class of `widget’`s parent
|
|
1559
1606
|
*/
|
|
1560
|
-
child_notify(child_property: string
|
|
1607
|
+
child_notify(child_property: string): void
|
|
1561
1608
|
|
|
1562
1609
|
// Own virtual methods of Builder-1.0.Builder.View
|
|
1563
1610
|
|
|
@@ -1587,8 +1634,8 @@ interface View extends Atk.ImplementorIface, Gtk.Buildable, Gtk.Orientable {
|
|
|
1587
1634
|
*/
|
|
1588
1635
|
vfunc_get_document(): Document
|
|
1589
1636
|
vfunc_get_modified(): boolean
|
|
1590
|
-
vfunc_get_special_title(): string
|
|
1591
|
-
vfunc_get_title(): string
|
|
1637
|
+
vfunc_get_special_title(): string
|
|
1638
|
+
vfunc_get_title(): string
|
|
1592
1639
|
vfunc_navigate_to(location: Ide.SourceLocation): void
|
|
1593
1640
|
vfunc_set_back_forward_list(back_forward_list: Ide.BackForwardList): void
|
|
1594
1641
|
/**
|
|
@@ -1817,7 +1864,7 @@ interface ViewGrid extends Atk.ImplementorIface, Gtk.Buildable {
|
|
|
1817
1864
|
* @param child the child widget
|
|
1818
1865
|
* @param child_property the name of a child property installed on the class of `container`
|
|
1819
1866
|
*/
|
|
1820
|
-
child_notify(child: Gtk.Widget, child_property: string
|
|
1867
|
+
child_notify(child: Gtk.Widget, child_property: string): void
|
|
1821
1868
|
|
|
1822
1869
|
// Overloads of child_notify
|
|
1823
1870
|
|
|
@@ -1831,7 +1878,7 @@ interface ViewGrid extends Atk.ImplementorIface, Gtk.Buildable {
|
|
|
1831
1878
|
* Also see gtk_container_child_notify().
|
|
1832
1879
|
* @param child_property the name of a child property installed on the class of `widget’`s parent
|
|
1833
1880
|
*/
|
|
1834
|
-
child_notify(child_property: string
|
|
1881
|
+
child_notify(child_property: string): void
|
|
1835
1882
|
/**
|
|
1836
1883
|
* Emits a #GtkWidget::child-notify signal for the
|
|
1837
1884
|
* [child property][child-properties] `child_property`
|
|
@@ -1842,7 +1889,7 @@ interface ViewGrid extends Atk.ImplementorIface, Gtk.Buildable {
|
|
|
1842
1889
|
* Also see gtk_container_child_notify().
|
|
1843
1890
|
* @param child_property the name of a child property installed on the class of `widget’`s parent
|
|
1844
1891
|
*/
|
|
1845
|
-
child_notify(child_property: string
|
|
1892
|
+
child_notify(child_property: string): void
|
|
1846
1893
|
|
|
1847
1894
|
// Class property signals of Builder-1.0.Builder.ViewGrid
|
|
1848
1895
|
|
|
@@ -2019,6 +2066,7 @@ module ViewStack {
|
|
|
2019
2066
|
// Own constructor properties of Builder-1.0.Builder.ViewStack
|
|
2020
2067
|
|
|
2021
2068
|
active_view?: View | null
|
|
2069
|
+
activeView?: View | null
|
|
2022
2070
|
}
|
|
2023
2071
|
|
|
2024
2072
|
}
|
|
@@ -2028,6 +2076,7 @@ interface ViewStack extends Atk.ImplementorIface, Gtk.Buildable {
|
|
|
2028
2076
|
// Own properties of Builder-1.0.Builder.ViewStack
|
|
2029
2077
|
|
|
2030
2078
|
active_view: View
|
|
2079
|
+
activeView: View
|
|
2031
2080
|
|
|
2032
2081
|
// Owm methods of Builder-1.0.Builder.ViewStack
|
|
2033
2082
|
|
|
@@ -2074,7 +2123,7 @@ interface ViewStack extends Atk.ImplementorIface, Gtk.Buildable {
|
|
|
2074
2123
|
* @param child the child widget
|
|
2075
2124
|
* @param child_property the name of a child property installed on the class of `container`
|
|
2076
2125
|
*/
|
|
2077
|
-
child_notify(child: Gtk.Widget, child_property: string
|
|
2126
|
+
child_notify(child: Gtk.Widget, child_property: string): void
|
|
2078
2127
|
|
|
2079
2128
|
// Overloads of child_notify
|
|
2080
2129
|
|
|
@@ -2088,7 +2137,7 @@ interface ViewStack extends Atk.ImplementorIface, Gtk.Buildable {
|
|
|
2088
2137
|
* Also see gtk_container_child_notify().
|
|
2089
2138
|
* @param child_property the name of a child property installed on the class of `widget’`s parent
|
|
2090
2139
|
*/
|
|
2091
|
-
child_notify(child_property: string
|
|
2140
|
+
child_notify(child_property: string): void
|
|
2092
2141
|
/**
|
|
2093
2142
|
* Emits a #GtkWidget::child-notify signal for the
|
|
2094
2143
|
* [child property][child-properties] `child_property`
|
|
@@ -2099,7 +2148,7 @@ interface ViewStack extends Atk.ImplementorIface, Gtk.Buildable {
|
|
|
2099
2148
|
* Also see gtk_container_child_notify().
|
|
2100
2149
|
* @param child_property the name of a child property installed on the class of `widget’`s parent
|
|
2101
2150
|
*/
|
|
2102
|
-
child_notify(child_property: string
|
|
2151
|
+
child_notify(child_property: string): void
|
|
2103
2152
|
|
|
2104
2153
|
// Own signals of Builder-1.0.Builder.ViewStack
|
|
2105
2154
|
|
|
@@ -2296,6 +2345,7 @@ interface Workbench extends Atk.ImplementorIface, Gio.ActionGroup, Gio.ActionMap
|
|
|
2296
2345
|
// Own properties of Builder-1.0.Builder.Workbench
|
|
2297
2346
|
|
|
2298
2347
|
readonly active_view: View
|
|
2348
|
+
readonly activeView: View
|
|
2299
2349
|
readonly building: boolean
|
|
2300
2350
|
/**
|
|
2301
2351
|
* The "context" property is the #IdeContext that shall be worked upon in
|
|
@@ -2342,7 +2392,7 @@ interface Workbench extends Atk.ImplementorIface, Gio.ActionGroup, Gio.ActionMap
|
|
|
2342
2392
|
get_view_grid(): Gtk.Widget
|
|
2343
2393
|
get_workspace(): Gtk.Widget
|
|
2344
2394
|
open(file: Gio.File): void
|
|
2345
|
-
open_uri_list(uri_list: string
|
|
2395
|
+
open_uri_list(uri_list: string): void
|
|
2346
2396
|
open_with_editor(file: Gio.File): void
|
|
2347
2397
|
reveal_file(file: Gio.File): void
|
|
2348
2398
|
/**
|
|
@@ -2386,7 +2436,7 @@ interface Workbench extends Atk.ImplementorIface, Gio.ActionGroup, Gio.ActionMap
|
|
|
2386
2436
|
* @param child the child widget
|
|
2387
2437
|
* @param child_property the name of a child property installed on the class of `container`
|
|
2388
2438
|
*/
|
|
2389
|
-
child_notify(child: Gtk.Widget, child_property: string
|
|
2439
|
+
child_notify(child: Gtk.Widget, child_property: string): void
|
|
2390
2440
|
|
|
2391
2441
|
// Overloads of child_notify
|
|
2392
2442
|
|
|
@@ -2400,7 +2450,7 @@ interface Workbench extends Atk.ImplementorIface, Gio.ActionGroup, Gio.ActionMap
|
|
|
2400
2450
|
* Also see gtk_container_child_notify().
|
|
2401
2451
|
* @param child_property the name of a child property installed on the class of `widget’`s parent
|
|
2402
2452
|
*/
|
|
2403
|
-
child_notify(child_property: string
|
|
2453
|
+
child_notify(child_property: string): void
|
|
2404
2454
|
/**
|
|
2405
2455
|
* Emits a #GtkWidget::child-notify signal for the
|
|
2406
2456
|
* [child property][child-properties] `child_property`
|
|
@@ -2411,7 +2461,7 @@ interface Workbench extends Atk.ImplementorIface, Gio.ActionGroup, Gio.ActionMap
|
|
|
2411
2461
|
* Also see gtk_container_child_notify().
|
|
2412
2462
|
* @param child_property the name of a child property installed on the class of `widget’`s parent
|
|
2413
2463
|
*/
|
|
2414
|
-
child_notify(child_property: string
|
|
2464
|
+
child_notify(child_property: string): void
|
|
2415
2465
|
|
|
2416
2466
|
// Own signals of Builder-1.0.Builder.Workbench
|
|
2417
2467
|
|
|
@@ -2720,7 +2770,7 @@ interface DocumentInterface {
|
|
|
2720
2770
|
get_modified: (document: Document) => boolean
|
|
2721
2771
|
get_mtime: (document: Document, mtime: GLib.TimeVal) => boolean
|
|
2722
2772
|
get_read_only: (document: Document) => boolean
|
|
2723
|
-
get_title: (document: Document) => string
|
|
2773
|
+
get_title: (document: Document) => string
|
|
2724
2774
|
is_untitled: (document: Document) => boolean
|
|
2725
2775
|
save_async: (document: Document, toplevel: Gtk.Widget, cancellable: Gio.Cancellable | null, callback: Gio.AsyncReadyCallback | null) => void
|
|
2726
2776
|
save_finish: (document: Document, result: Gio.AsyncResult) => boolean
|
|
@@ -2742,7 +2792,7 @@ interface EditorViewAddinInterface {
|
|
|
2742
2792
|
parent: GObject.TypeInterface
|
|
2743
2793
|
load: (self: EditorViewAddin, view: EditorView) => void
|
|
2744
2794
|
unload: (self: EditorViewAddin, view: EditorView) => void
|
|
2745
|
-
language_changed: (self: EditorViewAddin, language_id: string
|
|
2795
|
+
language_changed: (self: EditorViewAddin, language_id: string) => void
|
|
2746
2796
|
}
|
|
2747
2797
|
|
|
2748
2798
|
abstract class EditorViewAddinInterface {
|
|
@@ -2806,7 +2856,7 @@ interface TreeClass {
|
|
|
2806
2856
|
// Own fields of Builder-1.0.Builder.TreeClass
|
|
2807
2857
|
|
|
2808
2858
|
parent_class: Gtk.TreeViewClass
|
|
2809
|
-
action: (self: Tree, action_group: string
|
|
2859
|
+
action: (self: Tree, action_group: string, action_name: string, param: string) => void
|
|
2810
2860
|
populate_popup: (self: Tree, widget: Gtk.Widget) => void
|
|
2811
2861
|
}
|
|
2812
2862
|
|
|
@@ -2840,8 +2890,8 @@ interface ViewClass {
|
|
|
2840
2890
|
get_can_split: (self: View) => boolean
|
|
2841
2891
|
get_document: (self: View) => Document
|
|
2842
2892
|
get_modified: (self: View) => boolean
|
|
2843
|
-
get_title: (self: View) => string
|
|
2844
|
-
get_special_title: (self: View) => string
|
|
2893
|
+
get_title: (self: View) => string
|
|
2894
|
+
get_special_title: (self: View) => string
|
|
2845
2895
|
create_split: (self: View) => View
|
|
2846
2896
|
set_split_view: (self: View, split_view: boolean) => void
|
|
2847
2897
|
set_back_forward_list: (self: View, back_forward_list: Ide.BackForwardList) => void
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@girs/builder-1.0",
|
|
3
|
-
"version": "1.0.0-3.2.
|
|
3
|
+
"version": "1.0.0-3.2.7",
|
|
4
4
|
"description": "GJS TypeScript type definitions for Builder-1.0, generated from library version 1.0.0",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"module": "builder-1.0.js",
|
|
@@ -25,27 +25,27 @@
|
|
|
25
25
|
"test:cjs": "NODE_OPTIONS=--max_old_space_size=9216 tsc --noEmit builder-1.0.d.cts"
|
|
26
26
|
},
|
|
27
27
|
"dependencies": {
|
|
28
|
-
"@girs/atk-1.0": "^2.50.0-3.2.
|
|
29
|
-
"@girs/cairo-1.0": "^1.0.0-3.2.
|
|
30
|
-
"@girs/dazzle-1.0": "^3.44.0-3.2.
|
|
31
|
-
"@girs/freetype2-2.0": "^2.0.0-3.2.
|
|
32
|
-
"@girs/gdk-3.0": "^3.24.38-3.2.
|
|
33
|
-
"@girs/gdkpixbuf-2.0": "^2.0.0-3.2.
|
|
34
|
-
"@girs/gio-2.0": "^2.78.0-3.2.
|
|
35
|
-
"@girs/girepository-2.0": "^1.78.1-3.2.
|
|
36
|
-
"@girs/gjs": "^3.2.
|
|
37
|
-
"@girs/glib-2.0": "^2.78.0-3.2.
|
|
38
|
-
"@girs/gmodule-2.0": "^2.0.0-3.2.
|
|
39
|
-
"@girs/gobject-2.0": "^2.78.0-3.2.
|
|
40
|
-
"@girs/gtk-3.0": "^3.24.38-3.2.
|
|
41
|
-
"@girs/gtksource-3.0": "^3.0.0-3.2.
|
|
42
|
-
"@girs/harfbuzz-0.0": "^8.2.1-3.2.
|
|
43
|
-
"@girs/ide-1.0": "^1.0.0-3.2.
|
|
44
|
-
"@girs/json-1.0": "^1.7.1-3.2.
|
|
45
|
-
"@girs/pango-1.0": "^1.51.0-3.2.
|
|
46
|
-
"@girs/peas-1.0": "^1.0.0-3.2.
|
|
47
|
-
"@girs/template-1.0": "^3.36.2-3.2.
|
|
48
|
-
"@girs/xlib-2.0": "^2.0.0-3.2.
|
|
28
|
+
"@girs/atk-1.0": "^2.50.0-3.2.7",
|
|
29
|
+
"@girs/cairo-1.0": "^1.0.0-3.2.7",
|
|
30
|
+
"@girs/dazzle-1.0": "^3.44.0-3.2.7",
|
|
31
|
+
"@girs/freetype2-2.0": "^2.0.0-3.2.7",
|
|
32
|
+
"@girs/gdk-3.0": "^3.24.38-3.2.7",
|
|
33
|
+
"@girs/gdkpixbuf-2.0": "^2.0.0-3.2.7",
|
|
34
|
+
"@girs/gio-2.0": "^2.78.0-3.2.7",
|
|
35
|
+
"@girs/girepository-2.0": "^1.78.1-3.2.7",
|
|
36
|
+
"@girs/gjs": "^3.2.7",
|
|
37
|
+
"@girs/glib-2.0": "^2.78.0-3.2.7",
|
|
38
|
+
"@girs/gmodule-2.0": "^2.0.0-3.2.7",
|
|
39
|
+
"@girs/gobject-2.0": "^2.78.0-3.2.7",
|
|
40
|
+
"@girs/gtk-3.0": "^3.24.38-3.2.7",
|
|
41
|
+
"@girs/gtksource-3.0": "^3.0.0-3.2.7",
|
|
42
|
+
"@girs/harfbuzz-0.0": "^8.2.1-3.2.7",
|
|
43
|
+
"@girs/ide-1.0": "^1.0.0-3.2.7",
|
|
44
|
+
"@girs/json-1.0": "^1.7.1-3.2.7",
|
|
45
|
+
"@girs/pango-1.0": "^1.51.0-3.2.7",
|
|
46
|
+
"@girs/peas-1.0": "^1.0.0-3.2.7",
|
|
47
|
+
"@girs/template-1.0": "^3.36.2-3.2.7",
|
|
48
|
+
"@girs/xlib-2.0": "^2.0.0-3.2.7"
|
|
49
49
|
},
|
|
50
50
|
"devDependencies": {
|
|
51
51
|
"typescript": "*"
|