@girs/foundrygtk-1 4.2.0 → 4.3.0
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 +8 -8
- package/foundrygtk-1-surface.d.ts +19 -1
- package/foundrygtk-1-surface.js +5 -1
- package/foundrygtk-1.d.ts +474 -6
- package/package.json +22 -21
- package/tsconfig.json +3 -0
package/README.md
CHANGED
|
@@ -5,25 +5,25 @@
|
|
|
5
5
|

|
|
6
6
|
|
|
7
7
|
|
|
8
|
-
GJS TypeScript type definitions for FoundryGtk-1 using [ts-for-gir](https://github.com/gjsify/ts-for-gir) v4.
|
|
8
|
+
GJS TypeScript type definitions for FoundryGtk-1 using [ts-for-gir](https://github.com/gjsify/ts-for-gir) v4.3.0.
|
|
9
9
|
|
|
10
10
|
## Install
|
|
11
11
|
|
|
12
|
-
|
|
12
|
+
Install the type definitions with npm:
|
|
13
13
|
```bash
|
|
14
14
|
npm install @girs/foundrygtk-1
|
|
15
15
|
```
|
|
16
16
|
|
|
17
17
|
## Usage
|
|
18
18
|
|
|
19
|
-
|
|
19
|
+
Import it like any other module:
|
|
20
20
|
```ts
|
|
21
21
|
import FoundryGtk from '@girs/foundrygtk-1';
|
|
22
22
|
```
|
|
23
23
|
|
|
24
24
|
### Ambient Modules
|
|
25
25
|
|
|
26
|
-
|
|
26
|
+
[Ambient modules](https://github.com/gjsify/ts-for-gir/tree/main/packages/cli#ambient-modules) let you write the same import you would in plain JavaScript.
|
|
27
27
|
For this you need to include `@girs/foundrygtk-1` or `@girs/foundrygtk-1/ambient` in your `tsconfig` or entry point Typescript file:
|
|
28
28
|
|
|
29
29
|
`index.ts`:
|
|
@@ -42,7 +42,7 @@ import '@girs/foundrygtk-1'
|
|
|
42
42
|
}
|
|
43
43
|
```
|
|
44
44
|
|
|
45
|
-
|
|
45
|
+
The ambient module now resolves with types:
|
|
46
46
|
|
|
47
47
|
```ts
|
|
48
48
|
import FoundryGtk from 'gi://FoundryGtk?version=1';
|
|
@@ -50,7 +50,7 @@ import FoundryGtk from 'gi://FoundryGtk?version=1';
|
|
|
50
50
|
|
|
51
51
|
### Global import
|
|
52
52
|
|
|
53
|
-
|
|
53
|
+
GJS's global `imports.gi` works too, with types.
|
|
54
54
|
For this you need to include `@girs/foundrygtk-1` or `@girs/foundrygtk-1/import` in your `tsconfig` or entry point Typescript file:
|
|
55
55
|
|
|
56
56
|
`index.ts`:
|
|
@@ -69,7 +69,7 @@ import '@girs/foundrygtk-1'
|
|
|
69
69
|
}
|
|
70
70
|
```
|
|
71
71
|
|
|
72
|
-
|
|
72
|
+
That form carries types as well:
|
|
73
73
|
|
|
74
74
|
```ts
|
|
75
75
|
const FoundryGtk = imports.gi.FoundryGtk;
|
|
@@ -77,7 +77,7 @@ const FoundryGtk = imports.gi.FoundryGtk;
|
|
|
77
77
|
|
|
78
78
|
### Bundle
|
|
79
79
|
|
|
80
|
-
|
|
80
|
+
Most projects want a bundler. [esbuild](https://esbuild.github.io/) is the smallest thing that works; the [examples directory](https://github.com/gjsify/ts-for-gir/tree/main/examples) has setups for several others.
|
|
81
81
|
|
|
82
82
|
## Other packages
|
|
83
83
|
|
|
@@ -3,7 +3,7 @@
|
|
|
3
3
|
*
|
|
4
4
|
* GENERATED — do not edit. Provenance: FoundryGtk-1 — dropped empty base(s): GObject.InitiallyUnowned GObject.Object
|
|
5
5
|
*
|
|
6
|
-
*
|
|
6
|
+
* 6 concrete widgets, 6 declarations, 0 enum nick unions, 0 slot candidates.
|
|
7
7
|
*
|
|
8
8
|
* Module-scoped exports only. There is no `JSX` namespace here, no tag spelling and
|
|
9
9
|
* no `on<Signal>` prop name: those are DIALECT, and every framework answers them
|
|
@@ -64,6 +64,17 @@ export interface FoundryDiagnosticsGutterRendererProps extends GtkSourceGutterRe
|
|
|
64
64
|
/** Settable only at construction — a renderer must REBUILD, not patch. */
|
|
65
65
|
export type FoundryDiagnosticsGutterRendererConstructOnly = GtkSourceGutterRendererConstructOnly | GtkAccessibleConstructOnly | GtkBuildableConstructOnly | GtkConstraintTargetConstructOnly;
|
|
66
66
|
|
|
67
|
+
/** A widget that displays Git graph lanes for a [class@Foundry.VcsGraphEntry]. */
|
|
68
|
+
export interface FoundryGitLanesProps extends GtkWidgetProps, GtkAccessibleProps, GtkBuildableProps, GtkConstraintTargetProps {
|
|
69
|
+
/**
|
|
70
|
+
* The graph entry to render.
|
|
71
|
+
* @since 1.2
|
|
72
|
+
*/
|
|
73
|
+
entry?: Foundry.VcsGraphEntry;
|
|
74
|
+
}
|
|
75
|
+
/** Settable only at construction — a renderer must REBUILD, not patch. */
|
|
76
|
+
export type FoundryGitLanesConstructOnly = GtkWidgetConstructOnly | GtkAccessibleConstructOnly | GtkBuildableConstructOnly | GtkConstraintTargetConstructOnly;
|
|
77
|
+
|
|
67
78
|
export interface FoundryMarkupViewProps extends GtkWidgetProps, GtkAccessibleProps, GtkBuildableProps, GtkConstraintTargetProps {
|
|
68
79
|
}
|
|
69
80
|
/** Settable only at construction — a renderer must REBUILD, not patch. */
|
|
@@ -122,6 +133,13 @@ export interface Widgets {
|
|
|
122
133
|
constructOnly: FoundryDiagnosticsGutterRendererConstructOnly;
|
|
123
134
|
slotCandidates: {};
|
|
124
135
|
};
|
|
136
|
+
FoundryGitLanes: {
|
|
137
|
+
class: FoundryGtk.GitLanes;
|
|
138
|
+
props: FoundryGitLanesProps;
|
|
139
|
+
signals: FoundryGtk.GitLanes.SignalSignatures;
|
|
140
|
+
constructOnly: FoundryGitLanesConstructOnly;
|
|
141
|
+
slotCandidates: {};
|
|
142
|
+
};
|
|
125
143
|
FoundryMarkupView: {
|
|
126
144
|
class: FoundryGtk.MarkupView;
|
|
127
145
|
props: FoundryMarkupViewProps;
|
package/foundrygtk-1-surface.js
CHANGED
|
@@ -11,6 +11,7 @@ export const SURFACE_PROVENANCE = 'FoundryGtk-1 — dropped empty base(s): GObje
|
|
|
11
11
|
export const OWN_PROPS = {
|
|
12
12
|
FoundryChangesGutterRenderer: ['show-overview'],
|
|
13
13
|
FoundryDiagnosticsGutterRenderer: ['diagnostics'],
|
|
14
|
+
FoundryGitLanes: ['entry'],
|
|
14
15
|
FoundrySourceView: ['document', 'enable-completion', 'enable-vim', 'font', 'line-height', 'show-diagnostics', 'show-line-changes', 'show-line-changes-overview'],
|
|
15
16
|
FoundryTerminal: ['palette'],
|
|
16
17
|
};
|
|
@@ -20,6 +21,7 @@ export const OWN_SIGNALS = {};
|
|
|
20
21
|
export const DECLS = {
|
|
21
22
|
FoundryChangesGutterRenderer: ['FoundryChangesGutterRenderer', 'GtkSourceGutterRenderer', 'GtkWidget', 'GtkAccessible', 'GtkBuildable', 'GtkConstraintTarget'],
|
|
22
23
|
FoundryDiagnosticsGutterRenderer: ['FoundryDiagnosticsGutterRenderer', 'GtkSourceGutterRenderer', 'GtkWidget', 'GtkAccessible', 'GtkBuildable', 'GtkConstraintTarget'],
|
|
24
|
+
FoundryGitLanes: ['FoundryGitLanes', 'GtkWidget', 'GtkAccessible', 'GtkBuildable', 'GtkConstraintTarget'],
|
|
23
25
|
FoundryMarkupView: ['FoundryMarkupView', 'GtkWidget', 'GtkAccessible', 'GtkBuildable', 'GtkConstraintTarget'],
|
|
24
26
|
FoundrySourceView: ['FoundrySourceView', 'GtkSourceView', 'GtkTextView', 'GtkWidget', 'GtkAccessible', 'GtkAccessibleText', 'GtkBuildable', 'GtkConstraintTarget', 'GtkScrollable'],
|
|
25
27
|
FoundryTerminal: ['FoundryTerminal', 'GtkWidget', 'GtkAccessible', 'GtkAccessibleText', 'GtkBuildable', 'GtkConstraintTarget', 'GtkScrollable'],
|
|
@@ -29,4 +31,6 @@ export const ENUM_NICKS = {};
|
|
|
29
31
|
|
|
30
32
|
export const SLOT_CANDIDATES = {};
|
|
31
33
|
|
|
32
|
-
export const SINCE = {
|
|
34
|
+
export const SINCE = {
|
|
35
|
+
'FoundryGitLanes.entry': '1.2',
|
|
36
|
+
};
|
package/foundrygtk-1.d.ts
CHANGED
|
@@ -30,6 +30,7 @@ import type freetype2 from '@girs/freetype2-2.0';
|
|
|
30
30
|
import type GdkPixbuf from '@girs/gdkpixbuf-2.0';
|
|
31
31
|
import type Foundry from '@girs/foundry-1';
|
|
32
32
|
import type Dex from '@girs/dex-1';
|
|
33
|
+
import type GioUnix from '@girs/giounix-2.0';
|
|
33
34
|
|
|
34
35
|
export namespace FoundryGtk {
|
|
35
36
|
|
|
@@ -271,6 +272,468 @@ export namespace FoundryGtk {
|
|
|
271
272
|
}
|
|
272
273
|
|
|
273
274
|
|
|
275
|
+
namespace GitLanes {
|
|
276
|
+
// Signal signatures
|
|
277
|
+
interface SignalSignatures extends Gtk.Widget.SignalSignatures {
|
|
278
|
+
"notify::entry": (pspec: GObject.ParamSpec) => void;
|
|
279
|
+
"notify::can-focus": (pspec: GObject.ParamSpec) => void;
|
|
280
|
+
"notify::can-target": (pspec: GObject.ParamSpec) => void;
|
|
281
|
+
"notify::css-classes": (pspec: GObject.ParamSpec) => void;
|
|
282
|
+
"notify::css-name": (pspec: GObject.ParamSpec) => void;
|
|
283
|
+
"notify::cursor": (pspec: GObject.ParamSpec) => void;
|
|
284
|
+
"notify::focus-on-click": (pspec: GObject.ParamSpec) => void;
|
|
285
|
+
"notify::focusable": (pspec: GObject.ParamSpec) => void;
|
|
286
|
+
"notify::halign": (pspec: GObject.ParamSpec) => void;
|
|
287
|
+
"notify::has-default": (pspec: GObject.ParamSpec) => void;
|
|
288
|
+
"notify::has-focus": (pspec: GObject.ParamSpec) => void;
|
|
289
|
+
"notify::has-tooltip": (pspec: GObject.ParamSpec) => void;
|
|
290
|
+
"notify::height-request": (pspec: GObject.ParamSpec) => void;
|
|
291
|
+
"notify::hexpand": (pspec: GObject.ParamSpec) => void;
|
|
292
|
+
"notify::hexpand-set": (pspec: GObject.ParamSpec) => void;
|
|
293
|
+
"notify::layout-manager": (pspec: GObject.ParamSpec) => void;
|
|
294
|
+
"notify::limit-events": (pspec: GObject.ParamSpec) => void;
|
|
295
|
+
"notify::margin-bottom": (pspec: GObject.ParamSpec) => void;
|
|
296
|
+
"notify::margin-end": (pspec: GObject.ParamSpec) => void;
|
|
297
|
+
"notify::margin-start": (pspec: GObject.ParamSpec) => void;
|
|
298
|
+
"notify::margin-top": (pspec: GObject.ParamSpec) => void;
|
|
299
|
+
"notify::name": (pspec: GObject.ParamSpec) => void;
|
|
300
|
+
"notify::opacity": (pspec: GObject.ParamSpec) => void;
|
|
301
|
+
"notify::overflow": (pspec: GObject.ParamSpec) => void;
|
|
302
|
+
"notify::parent": (pspec: GObject.ParamSpec) => void;
|
|
303
|
+
"notify::receives-default": (pspec: GObject.ParamSpec) => void;
|
|
304
|
+
"notify::root": (pspec: GObject.ParamSpec) => void;
|
|
305
|
+
"notify::scale-factor": (pspec: GObject.ParamSpec) => void;
|
|
306
|
+
"notify::sensitive": (pspec: GObject.ParamSpec) => void;
|
|
307
|
+
"notify::tooltip-markup": (pspec: GObject.ParamSpec) => void;
|
|
308
|
+
"notify::tooltip-text": (pspec: GObject.ParamSpec) => void;
|
|
309
|
+
"notify::valign": (pspec: GObject.ParamSpec) => void;
|
|
310
|
+
"notify::vexpand": (pspec: GObject.ParamSpec) => void;
|
|
311
|
+
"notify::vexpand-set": (pspec: GObject.ParamSpec) => void;
|
|
312
|
+
"notify::visible": (pspec: GObject.ParamSpec) => void;
|
|
313
|
+
"notify::width-request": (pspec: GObject.ParamSpec) => void;
|
|
314
|
+
"notify::accessible-role": (pspec: GObject.ParamSpec) => void;
|
|
315
|
+
}
|
|
316
|
+
|
|
317
|
+
// Constructor properties interface
|
|
318
|
+
interface ConstructorProps extends Gtk.Widget.ConstructorProps, Gtk.Accessible.ConstructorProps, Gtk.Buildable.ConstructorProps, Gtk.ConstraintTarget.ConstructorProps {
|
|
319
|
+
entry: Foundry.VcsGraphEntry;
|
|
320
|
+
}
|
|
321
|
+
}
|
|
322
|
+
|
|
323
|
+
/**
|
|
324
|
+
* A widget that displays Git graph lanes for a {@link Foundry.VcsGraphEntry}.
|
|
325
|
+
* @gir-type Class
|
|
326
|
+
* @since 1.2
|
|
327
|
+
*/
|
|
328
|
+
class GitLanes extends Gtk.Widget implements Gtk.Accessible, Gtk.Buildable, Gtk.ConstraintTarget {
|
|
329
|
+
static $gtype: GObject.GType<GitLanes>;
|
|
330
|
+
|
|
331
|
+
// Properties
|
|
332
|
+
/**
|
|
333
|
+
* The graph entry to render.
|
|
334
|
+
* @since 1.2
|
|
335
|
+
*/
|
|
336
|
+
get entry(): Foundry.VcsGraphEntry;
|
|
337
|
+
set entry(val: Foundry.VcsGraphEntry);
|
|
338
|
+
|
|
339
|
+
/**
|
|
340
|
+
* Compile-time signal type information.
|
|
341
|
+
*
|
|
342
|
+
* This instance property is generated only for TypeScript type checking.
|
|
343
|
+
* It is not defined at runtime and should not be accessed in JS code.
|
|
344
|
+
* @internal
|
|
345
|
+
*/
|
|
346
|
+
$signals: GitLanes.SignalSignatures;
|
|
347
|
+
|
|
348
|
+
// Constructors
|
|
349
|
+
constructor(properties?: Partial<GitLanes.ConstructorProps>, ...args: any[]);
|
|
350
|
+
|
|
351
|
+
_init(...args: any[]): void;
|
|
352
|
+
|
|
353
|
+
static ["new"](): GitLanes;
|
|
354
|
+
|
|
355
|
+
// Signals
|
|
356
|
+
/** @signal */
|
|
357
|
+
connect<K extends keyof GitLanes.SignalSignatures>(signal: K, callback: GObject.SignalCallback<this, GitLanes.SignalSignatures[K]>): number;
|
|
358
|
+
connect(signal: string, callback: (...args: any[]) => any): number;
|
|
359
|
+
|
|
360
|
+
/** @signal */
|
|
361
|
+
connect_after<K extends keyof GitLanes.SignalSignatures>(signal: K, callback: GObject.SignalCallback<this, GitLanes.SignalSignatures[K]>): number;
|
|
362
|
+
connect_after(signal: string, callback: (...args: any[]) => any): number;
|
|
363
|
+
|
|
364
|
+
/** @signal */
|
|
365
|
+
emit<K extends keyof GitLanes.SignalSignatures>(signal: K, ...args: GObject.GjsParameters<GitLanes.SignalSignatures[K]> extends [any, ...infer Q] ? Q : never): void;
|
|
366
|
+
emit(signal: string, ...args: any[]): void;
|
|
367
|
+
|
|
368
|
+
// Methods
|
|
369
|
+
/**
|
|
370
|
+
* Gets the graph entry displayed by `self`.
|
|
371
|
+
* @returns a {@link Foundry.VcsGraphEntry}
|
|
372
|
+
*/
|
|
373
|
+
dup_entry(): Foundry.VcsGraphEntry | null;
|
|
374
|
+
|
|
375
|
+
/**
|
|
376
|
+
* Sets the graph entry displayed by `self`.
|
|
377
|
+
* @param entry a {@link Foundry.VcsGraphEntry}
|
|
378
|
+
*/
|
|
379
|
+
set_entry(entry: Foundry.VcsGraphEntry | null): void;
|
|
380
|
+
|
|
381
|
+
/**
|
|
382
|
+
* Sets the colors to use when drawing graph lanes.
|
|
383
|
+
*
|
|
384
|
+
* If `colors` is `null`, the default lane colors are used. When `colors` is not
|
|
385
|
+
* `null`, the colors are copied and `n_colors` must be greater than zero.
|
|
386
|
+
* @param colors the lane colors
|
|
387
|
+
*/
|
|
388
|
+
set_lane_colors(colors: Gdk.RGBA[] | null): void;
|
|
389
|
+
|
|
390
|
+
/**
|
|
391
|
+
* The accessible role of the given {@link Gtk.Accessible} implementation.
|
|
392
|
+
*
|
|
393
|
+
* The accessible role cannot be changed once set.
|
|
394
|
+
* @default Gtk.AccessibleRole.NONE
|
|
395
|
+
* @category Inherited from Gtk.Accessible
|
|
396
|
+
*/
|
|
397
|
+
get accessible_role(): Gtk.AccessibleRole;
|
|
398
|
+
set accessible_role(val: Gtk.AccessibleRole);
|
|
399
|
+
|
|
400
|
+
/**
|
|
401
|
+
* The accessible role of the given {@link Gtk.Accessible} implementation.
|
|
402
|
+
*
|
|
403
|
+
* The accessible role cannot be changed once set.
|
|
404
|
+
* @default Gtk.AccessibleRole.NONE
|
|
405
|
+
* @category Inherited from Gtk.Accessible
|
|
406
|
+
*/
|
|
407
|
+
get accessibleRole(): Gtk.AccessibleRole;
|
|
408
|
+
set accessibleRole(val: Gtk.AccessibleRole);
|
|
409
|
+
|
|
410
|
+
/**
|
|
411
|
+
* Requests the user's screen reader to announce the given message.
|
|
412
|
+
*
|
|
413
|
+
* This kind of notification is useful for messages that
|
|
414
|
+
* either have only a visual representation or that are not
|
|
415
|
+
* exposed visually at all, e.g. a notification about a
|
|
416
|
+
* successful operation.
|
|
417
|
+
*
|
|
418
|
+
* Also, by using this API, you can ensure that the message
|
|
419
|
+
* does not interrupts the user's current screen reader output.
|
|
420
|
+
* @param message the string to announce
|
|
421
|
+
* @param priority the priority of the announcement
|
|
422
|
+
*/
|
|
423
|
+
announce(message: string, priority: Gtk.AccessibleAnnouncementPriority): void;
|
|
424
|
+
|
|
425
|
+
/**
|
|
426
|
+
* Retrieves the accessible identifier for the accessible object.
|
|
427
|
+
*
|
|
428
|
+
* This functionality can be overridden by {@link Gtk.Accessible}
|
|
429
|
+
* implementations.
|
|
430
|
+
*
|
|
431
|
+
* It is left to the accessible implementation to define the scope
|
|
432
|
+
* and uniqueness of the identifier.
|
|
433
|
+
* @returns the accessible identifier
|
|
434
|
+
*/
|
|
435
|
+
get_accessible_id(): string | null;
|
|
436
|
+
|
|
437
|
+
/**
|
|
438
|
+
* Retrieves the accessible parent for an accessible object.
|
|
439
|
+
*
|
|
440
|
+
* This function returns `NULL` for top level widgets.
|
|
441
|
+
* @returns the accessible parent
|
|
442
|
+
*/
|
|
443
|
+
get_accessible_parent(): Gtk.Accessible | null;
|
|
444
|
+
|
|
445
|
+
/**
|
|
446
|
+
* Retrieves the accessible role of an accessible object.
|
|
447
|
+
* @returns the accessible role
|
|
448
|
+
*/
|
|
449
|
+
get_accessible_role(): Gtk.AccessibleRole;
|
|
450
|
+
|
|
451
|
+
/**
|
|
452
|
+
* Retrieves the implementation for the given accessible object.
|
|
453
|
+
* @returns the accessible implementation object
|
|
454
|
+
*/
|
|
455
|
+
get_at_context(): Gtk.ATContext;
|
|
456
|
+
|
|
457
|
+
/**
|
|
458
|
+
* Queries the coordinates and dimensions of this accessible
|
|
459
|
+
*
|
|
460
|
+
* This functionality can be overridden by {@link Gtk.Accessible}
|
|
461
|
+
* implementations, e.g. to get the bounds from an ignored
|
|
462
|
+
* child widget.
|
|
463
|
+
* @returns true if the bounds are valid, and false otherwise
|
|
464
|
+
*/
|
|
465
|
+
get_bounds(): [boolean, number, number, number, number];
|
|
466
|
+
|
|
467
|
+
/**
|
|
468
|
+
* Retrieves the first accessible child of an accessible object.
|
|
469
|
+
* @returns the first accessible child
|
|
470
|
+
*/
|
|
471
|
+
get_first_accessible_child(): Gtk.Accessible | null;
|
|
472
|
+
|
|
473
|
+
/**
|
|
474
|
+
* Retrieves the next accessible sibling of an accessible object
|
|
475
|
+
* @returns the next accessible sibling
|
|
476
|
+
*/
|
|
477
|
+
get_next_accessible_sibling(): Gtk.Accessible | null;
|
|
478
|
+
|
|
479
|
+
/**
|
|
480
|
+
* Queries a platform state, such as focus.
|
|
481
|
+
*
|
|
482
|
+
* This functionality can be overridden by {@link Gtk.Accessible}
|
|
483
|
+
* implementations, e.g. to get platform state from an ignored
|
|
484
|
+
* child widget, as is the case for {@link Gtk.Text} wrappers.
|
|
485
|
+
* @param state platform state to query
|
|
486
|
+
* @returns the value of state for the accessible
|
|
487
|
+
*/
|
|
488
|
+
get_platform_state(state: Gtk.AccessiblePlatformState): boolean;
|
|
489
|
+
|
|
490
|
+
/**
|
|
491
|
+
* Resets the accessible property to its default value.
|
|
492
|
+
* @param property the accessible property
|
|
493
|
+
*/
|
|
494
|
+
reset_property(property: Gtk.AccessibleProperty): void;
|
|
495
|
+
|
|
496
|
+
/**
|
|
497
|
+
* Resets the accessible relation to its default value.
|
|
498
|
+
* @param relation the accessible relation
|
|
499
|
+
*/
|
|
500
|
+
reset_relation(relation: Gtk.AccessibleRelation): void;
|
|
501
|
+
|
|
502
|
+
/**
|
|
503
|
+
* Resets the accessible state to its default value.
|
|
504
|
+
* @param state the accessible state
|
|
505
|
+
*/
|
|
506
|
+
reset_state(state: Gtk.AccessibleState): void;
|
|
507
|
+
|
|
508
|
+
/**
|
|
509
|
+
* Sets the parent and sibling of an accessible object.
|
|
510
|
+
*
|
|
511
|
+
* This function is meant to be used by accessible implementations that are
|
|
512
|
+
* not part of the widget hierarchy, and but act as a logical bridge between
|
|
513
|
+
* widgets. For instance, if a widget creates an object that holds metadata
|
|
514
|
+
* for each child, and you want that object to implement the {@link Gtk.Accessible}
|
|
515
|
+
* interface, you will use this function to ensure that the parent of each
|
|
516
|
+
* child widget is the metadata object, and the parent of each metadata
|
|
517
|
+
* object is the container widget.
|
|
518
|
+
* @param parent the parent accessible object
|
|
519
|
+
* @param next_sibling the sibling accessible object
|
|
520
|
+
*/
|
|
521
|
+
set_accessible_parent(parent: Gtk.Accessible | null, next_sibling: Gtk.Accessible | null): void;
|
|
522
|
+
|
|
523
|
+
/**
|
|
524
|
+
* Updates the next accessible sibling.
|
|
525
|
+
*
|
|
526
|
+
* That might be useful when a new child of a custom accessible
|
|
527
|
+
* is created, and it needs to be linked to a previous child.
|
|
528
|
+
* @param new_sibling the new next accessible sibling to set
|
|
529
|
+
*/
|
|
530
|
+
update_next_accessible_sibling(new_sibling: Gtk.Accessible | null): void;
|
|
531
|
+
|
|
532
|
+
/**
|
|
533
|
+
* Informs ATs that the platform state has changed.
|
|
534
|
+
*
|
|
535
|
+
* This function should be used by {@link Gtk.Accessible} implementations that
|
|
536
|
+
* have a platform state but are not widgets. Widgets handle platform
|
|
537
|
+
* states automatically.
|
|
538
|
+
* @param state the platform state to update
|
|
539
|
+
*/
|
|
540
|
+
update_platform_state(state: Gtk.AccessiblePlatformState): void;
|
|
541
|
+
|
|
542
|
+
/**
|
|
543
|
+
* Updates an array of accessible properties.
|
|
544
|
+
*
|
|
545
|
+
* This function should be called by {@link Gtk.Widget} types whenever an accessible
|
|
546
|
+
* property change must be communicated to assistive technologies.
|
|
547
|
+
*
|
|
548
|
+
* This function is meant to be used by language bindings.
|
|
549
|
+
* @param properties an array of accessible properties
|
|
550
|
+
* @param values an array of `GValues`, one for each property
|
|
551
|
+
*/
|
|
552
|
+
update_property(properties: Gtk.AccessibleProperty[], values: (GObject.Value | any)[]): void;
|
|
553
|
+
|
|
554
|
+
/**
|
|
555
|
+
* Updates an array of accessible relations.
|
|
556
|
+
*
|
|
557
|
+
* This function should be called by {@link Gtk.Widget} types whenever an accessible
|
|
558
|
+
* relation change must be communicated to assistive technologies.
|
|
559
|
+
*
|
|
560
|
+
* This function is meant to be used by language bindings.
|
|
561
|
+
* @param relations an array of accessible relations
|
|
562
|
+
* @param values an array of `GValues`, one for each relation
|
|
563
|
+
*/
|
|
564
|
+
update_relation(relations: Gtk.AccessibleRelation[], values: (GObject.Value | any)[]): void;
|
|
565
|
+
|
|
566
|
+
/**
|
|
567
|
+
* Updates an array of accessible states.
|
|
568
|
+
*
|
|
569
|
+
* This function should be called by {@link Gtk.Widget} types whenever an accessible
|
|
570
|
+
* state change must be communicated to assistive technologies.
|
|
571
|
+
*
|
|
572
|
+
* This function is meant to be used by language bindings.
|
|
573
|
+
* @param states an array of accessible states
|
|
574
|
+
* @param values an array of `GValues`, one for each state
|
|
575
|
+
*/
|
|
576
|
+
update_state(states: Gtk.AccessibleState[], values: (GObject.Value | any)[]): void;
|
|
577
|
+
|
|
578
|
+
/**
|
|
579
|
+
* Retrieves the accessible identifier for the accessible object.
|
|
580
|
+
*
|
|
581
|
+
* This functionality can be overridden by {@link Gtk.Accessible}
|
|
582
|
+
* implementations.
|
|
583
|
+
*
|
|
584
|
+
* It is left to the accessible implementation to define the scope
|
|
585
|
+
* and uniqueness of the identifier.
|
|
586
|
+
* @virtual
|
|
587
|
+
*/
|
|
588
|
+
vfunc_get_accessible_id(): string | null;
|
|
589
|
+
|
|
590
|
+
/**
|
|
591
|
+
* Retrieves the accessible parent for an accessible object.
|
|
592
|
+
*
|
|
593
|
+
* This function returns `NULL` for top level widgets.
|
|
594
|
+
* @virtual
|
|
595
|
+
*/
|
|
596
|
+
vfunc_get_accessible_parent(): Gtk.Accessible | null;
|
|
597
|
+
|
|
598
|
+
/**
|
|
599
|
+
* Retrieves the implementation for the given accessible object.
|
|
600
|
+
* @virtual
|
|
601
|
+
*/
|
|
602
|
+
vfunc_get_at_context(): Gtk.ATContext | null;
|
|
603
|
+
|
|
604
|
+
/**
|
|
605
|
+
* Queries the coordinates and dimensions of this accessible
|
|
606
|
+
*
|
|
607
|
+
* This functionality can be overridden by {@link Gtk.Accessible}
|
|
608
|
+
* implementations, e.g. to get the bounds from an ignored
|
|
609
|
+
* child widget.
|
|
610
|
+
* @virtual
|
|
611
|
+
*/
|
|
612
|
+
vfunc_get_bounds(): [boolean, number, number, number, number];
|
|
613
|
+
|
|
614
|
+
/**
|
|
615
|
+
* Retrieves the first accessible child of an accessible object.
|
|
616
|
+
* @virtual
|
|
617
|
+
*/
|
|
618
|
+
vfunc_get_first_accessible_child(): Gtk.Accessible | null;
|
|
619
|
+
|
|
620
|
+
/**
|
|
621
|
+
* Retrieves the next accessible sibling of an accessible object
|
|
622
|
+
* @virtual
|
|
623
|
+
*/
|
|
624
|
+
vfunc_get_next_accessible_sibling(): Gtk.Accessible | null;
|
|
625
|
+
|
|
626
|
+
/**
|
|
627
|
+
* Queries a platform state, such as focus.
|
|
628
|
+
*
|
|
629
|
+
* This functionality can be overridden by {@link Gtk.Accessible}
|
|
630
|
+
* implementations, e.g. to get platform state from an ignored
|
|
631
|
+
* child widget, as is the case for {@link Gtk.Text} wrappers.
|
|
632
|
+
* @param state platform state to query
|
|
633
|
+
* @virtual
|
|
634
|
+
*/
|
|
635
|
+
vfunc_get_platform_state(state: Gtk.AccessiblePlatformState): boolean;
|
|
636
|
+
|
|
637
|
+
/**
|
|
638
|
+
* Gets the ID of the `buildable` object.
|
|
639
|
+
*
|
|
640
|
+
* {@link Gtk.Builder} sets the name based on the ID attribute
|
|
641
|
+
* of the `<object>` tag used to construct the `buildable`.
|
|
642
|
+
* @returns the ID of the buildable object
|
|
643
|
+
*/
|
|
644
|
+
get_buildable_id(): string | null;
|
|
645
|
+
|
|
646
|
+
/**
|
|
647
|
+
* Adds a child to `buildable`. `type` is an optional string
|
|
648
|
+
* describing how the child should be added.
|
|
649
|
+
* @param builder a {@link Gtk.Builder}
|
|
650
|
+
* @param child child to add
|
|
651
|
+
* @param type kind of child or `null`
|
|
652
|
+
* @virtual
|
|
653
|
+
*/
|
|
654
|
+
vfunc_add_child(builder: Gtk.Builder, child: GObject.Object, type: string | null): void;
|
|
655
|
+
|
|
656
|
+
/**
|
|
657
|
+
* Similar to `gtk_buildable_parser_finished()` but is
|
|
658
|
+
* called once for each custom tag handled by the `buildable`.
|
|
659
|
+
* @param builder a {@link Gtk.Builder}
|
|
660
|
+
* @param child child object or `null` for non-child tags
|
|
661
|
+
* @param tagname the name of the tag
|
|
662
|
+
* @param data user data created in custom_tag_start
|
|
663
|
+
* @virtual
|
|
664
|
+
*/
|
|
665
|
+
vfunc_custom_finished(builder: Gtk.Builder, child: GObject.Object | null, tagname: string, data: null): void;
|
|
666
|
+
|
|
667
|
+
/**
|
|
668
|
+
* Called at the end of each custom element handled by
|
|
669
|
+
* the buildable.
|
|
670
|
+
* @param builder {@link Gtk.Builder} used to construct this object
|
|
671
|
+
* @param child child object or `null` for non-child tags
|
|
672
|
+
* @param tagname name of tag
|
|
673
|
+
* @param data user data that will be passed in to parser functions
|
|
674
|
+
* @virtual
|
|
675
|
+
*/
|
|
676
|
+
vfunc_custom_tag_end(builder: Gtk.Builder, child: GObject.Object | null, tagname: string, data: null): void;
|
|
677
|
+
|
|
678
|
+
/**
|
|
679
|
+
* Called for each unknown element under `<child>`.
|
|
680
|
+
* @param builder a {@link Gtk.Builder} used to construct this object
|
|
681
|
+
* @param child child object or `null` for non-child tags
|
|
682
|
+
* @param tagname name of tag
|
|
683
|
+
* @virtual
|
|
684
|
+
*/
|
|
685
|
+
vfunc_custom_tag_start(builder: Gtk.Builder, child: GObject.Object | null, tagname: string): [boolean, Gtk.BuildableParser, never];
|
|
686
|
+
|
|
687
|
+
/**
|
|
688
|
+
* The getter corresponding to `set_id`. Implement this
|
|
689
|
+
* if you implement `set_id`.
|
|
690
|
+
* @virtual
|
|
691
|
+
*/
|
|
692
|
+
vfunc_get_id(): string;
|
|
693
|
+
|
|
694
|
+
/**
|
|
695
|
+
* Retrieves the internal child called `childname` of the `buildable` object.
|
|
696
|
+
* @param builder a {@link Gtk.Builder}
|
|
697
|
+
* @param childname name of child
|
|
698
|
+
* @virtual
|
|
699
|
+
*/
|
|
700
|
+
vfunc_get_internal_child<T = GObject.Object>(builder: Gtk.Builder, childname: string): T;
|
|
701
|
+
|
|
702
|
+
/**
|
|
703
|
+
* Called when a builder finishes the parsing
|
|
704
|
+
* of a UI definition. It is normally not necessary to implement this,
|
|
705
|
+
* unless you need to perform special cleanup actions. {@link Gtk.Window} sets
|
|
706
|
+
* the {@link Gtk.Widget.visible} property here.
|
|
707
|
+
* @param builder
|
|
708
|
+
* @virtual
|
|
709
|
+
*/
|
|
710
|
+
vfunc_parser_finished(builder: Gtk.Builder): void;
|
|
711
|
+
|
|
712
|
+
/**
|
|
713
|
+
* Sets a property of a buildable object.
|
|
714
|
+
* It is normally not necessary to implement this, `g_object_set_property()`
|
|
715
|
+
* is used by default. {@link Gtk.Window} implements this to delay showing itself
|
|
716
|
+
* (i.e. setting the {@link Gtk.Widget.visible} property) until the whole
|
|
717
|
+
* interface is created.
|
|
718
|
+
* @param builder
|
|
719
|
+
* @param name
|
|
720
|
+
* @param value
|
|
721
|
+
* @virtual
|
|
722
|
+
*/
|
|
723
|
+
vfunc_set_buildable_property(builder: Gtk.Builder, name: string, value: unknown): void;
|
|
724
|
+
|
|
725
|
+
/**
|
|
726
|
+
* Stores the id attribute given in the {@link Gtk.Builder} UI definition.
|
|
727
|
+
* {@link Gtk.Widget} stores the name as object data. Implement this method if your
|
|
728
|
+
* object has some notion of “ID” and it makes sense to map the XML id
|
|
729
|
+
* attribute to it.
|
|
730
|
+
* @param id
|
|
731
|
+
* @virtual
|
|
732
|
+
*/
|
|
733
|
+
vfunc_set_id(id: string): void;
|
|
734
|
+
}
|
|
735
|
+
|
|
736
|
+
|
|
274
737
|
namespace MarkupView {
|
|
275
738
|
// Signal signatures
|
|
276
739
|
interface SignalSignatures extends Gtk.Widget.SignalSignatures {
|
|
@@ -695,7 +1158,7 @@ export namespace FoundryGtk {
|
|
|
695
1158
|
/**
|
|
696
1159
|
* Stores the id attribute given in the {@link Gtk.Builder} UI definition.
|
|
697
1160
|
* {@link Gtk.Widget} stores the name as object data. Implement this method if your
|
|
698
|
-
* object has some notion of
|
|
1161
|
+
* object has some notion of “ID” and it makes sense to map the XML id
|
|
699
1162
|
* attribute to it.
|
|
700
1163
|
* @param id
|
|
701
1164
|
* @virtual
|
|
@@ -1982,12 +2445,12 @@ export namespace FoundryGtk {
|
|
|
1982
2445
|
namespace SourceViewAddin {
|
|
1983
2446
|
// Signal signatures
|
|
1984
2447
|
interface SignalSignatures extends GObject.Object.SignalSignatures {
|
|
1985
|
-
"notify::
|
|
2448
|
+
"notify::view": (pspec: GObject.ParamSpec) => void;
|
|
1986
2449
|
}
|
|
1987
2450
|
|
|
1988
2451
|
// Constructor properties interface
|
|
1989
2452
|
interface ConstructorProps extends GObject.Object.ConstructorProps {
|
|
1990
|
-
|
|
2453
|
+
view: SourceView | null;
|
|
1991
2454
|
}
|
|
1992
2455
|
}
|
|
1993
2456
|
|
|
@@ -2001,7 +2464,7 @@ export namespace FoundryGtk {
|
|
|
2001
2464
|
/**
|
|
2002
2465
|
* @read-only
|
|
2003
2466
|
*/
|
|
2004
|
-
get
|
|
2467
|
+
get view(): SourceView | null;
|
|
2005
2468
|
|
|
2006
2469
|
/**
|
|
2007
2470
|
* Compile-time signal type information.
|
|
@@ -2032,7 +2495,7 @@ export namespace FoundryGtk {
|
|
|
2032
2495
|
|
|
2033
2496
|
// Methods
|
|
2034
2497
|
/**
|
|
2035
|
-
* Gets
|
|
2498
|
+
* Gets the view for the addin.
|
|
2036
2499
|
*
|
|
2037
2500
|
* This will always be `null` before load has been called and after
|
|
2038
2501
|
* unload has been called.
|
|
@@ -2684,7 +3147,7 @@ export namespace FoundryGtk {
|
|
|
2684
3147
|
/**
|
|
2685
3148
|
* Stores the id attribute given in the {@link Gtk.Builder} UI definition.
|
|
2686
3149
|
* {@link Gtk.Widget} stores the name as object data. Implement this method if your
|
|
2687
|
-
* object has some notion of
|
|
3150
|
+
* object has some notion of “ID” and it makes sense to map the XML id
|
|
2688
3151
|
* attribute to it.
|
|
2689
3152
|
* @param id
|
|
2690
3153
|
* @virtual
|
|
@@ -2926,6 +3389,11 @@ export namespace FoundryGtk {
|
|
|
2926
3389
|
*/
|
|
2927
3390
|
type DiagnosticsGutterRendererClass = typeof DiagnosticsGutterRenderer;
|
|
2928
3391
|
|
|
3392
|
+
/**
|
|
3393
|
+
* @gir-type Alias
|
|
3394
|
+
*/
|
|
3395
|
+
type GitLanesClass = typeof GitLanes;
|
|
3396
|
+
|
|
2929
3397
|
/**
|
|
2930
3398
|
* @gir-type Alias
|
|
2931
3399
|
*/
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@girs/foundrygtk-1",
|
|
3
|
-
"version": "4.
|
|
3
|
+
"version": "4.3.0",
|
|
4
4
|
"description": "GJS TypeScript type definitions for FoundryGtk-1",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"module": "foundrygtk-1.js",
|
|
@@ -36,26 +36,27 @@
|
|
|
36
36
|
"test": "tsc --project tsconfig.json"
|
|
37
37
|
},
|
|
38
38
|
"dependencies": {
|
|
39
|
-
"@girs/gjs": "^4.
|
|
40
|
-
"@girs/peas-2": "^4.
|
|
41
|
-
"@girs/gio-2.0": "^4.
|
|
42
|
-
"@girs/gobject-2.0": "^4.
|
|
43
|
-
"@girs/glib-2.0": "^4.
|
|
44
|
-
"@girs/gmodule-2.0": "^4.
|
|
45
|
-
"@girs/json-1.0": "^4.
|
|
46
|
-
"@girs/gtksource-5": "^4.
|
|
47
|
-
"@girs/gtk-4.0": "^4.
|
|
48
|
-
"@girs/gsk-4.0": "^4.
|
|
49
|
-
"@girs/graphene-1.0": "^4.
|
|
50
|
-
"@girs/gdk-4.0": "^4.
|
|
51
|
-
"@girs/cairo-1.0": "^4.
|
|
52
|
-
"@girs/pangocairo-1.0": "^4.
|
|
53
|
-
"@girs/pango-1.0": "^4.
|
|
54
|
-
"@girs/harfbuzz-0.0": "^4.
|
|
55
|
-
"@girs/freetype2-2.0": "^4.
|
|
56
|
-
"@girs/gdkpixbuf-2.0": "^4.
|
|
57
|
-
"@girs/foundry-1": "^4.
|
|
58
|
-
"@girs/dex-1": "^4.
|
|
39
|
+
"@girs/gjs": "^4.3.0",
|
|
40
|
+
"@girs/peas-2": "^4.3.0",
|
|
41
|
+
"@girs/gio-2.0": "^4.3.0",
|
|
42
|
+
"@girs/gobject-2.0": "^4.3.0",
|
|
43
|
+
"@girs/glib-2.0": "^4.3.0",
|
|
44
|
+
"@girs/gmodule-2.0": "^4.3.0",
|
|
45
|
+
"@girs/json-1.0": "^4.3.0",
|
|
46
|
+
"@girs/gtksource-5": "^4.3.0",
|
|
47
|
+
"@girs/gtk-4.0": "^4.3.0",
|
|
48
|
+
"@girs/gsk-4.0": "^4.3.0",
|
|
49
|
+
"@girs/graphene-1.0": "^4.3.0",
|
|
50
|
+
"@girs/gdk-4.0": "^4.3.0",
|
|
51
|
+
"@girs/cairo-1.0": "^4.3.0",
|
|
52
|
+
"@girs/pangocairo-1.0": "^4.3.0",
|
|
53
|
+
"@girs/pango-1.0": "^4.3.0",
|
|
54
|
+
"@girs/harfbuzz-0.0": "^4.3.0",
|
|
55
|
+
"@girs/freetype2-2.0": "^4.3.0",
|
|
56
|
+
"@girs/gdkpixbuf-2.0": "^4.3.0",
|
|
57
|
+
"@girs/foundry-1": "^4.3.0",
|
|
58
|
+
"@girs/dex-1": "^4.3.0",
|
|
59
|
+
"@girs/giounix-2.0": "^4.3.0" },
|
|
59
60
|
"devDependencies": {
|
|
60
61
|
"typescript": "*"
|
|
61
62
|
},
|