@girs/gdk-3.0 3.24.41-3.2.9 → 3.24.41-3.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 +1 -1
- package/gdk-3.0.d.cts +10 -10
- package/gdk-3.0.d.ts +10 -10
- package/package.json +11 -11
package/README.md
CHANGED
|
@@ -5,7 +5,7 @@
|
|
|
5
5
|

|
|
6
6
|
|
|
7
7
|
|
|
8
|
-
GJS TypeScript type definitions for Gdk-3.0, generated from library version 3.24.41 using [ts-for-gir](https://github.com/gjsify/ts-for-gir) v3.
|
|
8
|
+
GJS TypeScript type definitions for Gdk-3.0, generated from library version 3.24.41 using [ts-for-gir](https://github.com/gjsify/ts-for-gir) v3.3.0.
|
|
9
9
|
|
|
10
10
|
An intermediate layer which isolates GTK+ from the details of the windowing system.
|
|
11
11
|
|
package/gdk-3.0.d.cts
CHANGED
|
@@ -5222,7 +5222,7 @@ export function keyval_to_upper(keyval: number): number
|
|
|
5222
5222
|
* and might expect pixels to be in a certain format.
|
|
5223
5223
|
*
|
|
5224
5224
|
* Call g_list_free() on the return value when you’re finished with it.
|
|
5225
|
-
* @returns
|
|
5225
|
+
* @returns a list of visuals; the list must be freed, but not its contents
|
|
5226
5226
|
*/
|
|
5227
5227
|
export function list_visuals(): Visual[]
|
|
5228
5228
|
/**
|
|
@@ -6745,14 +6745,14 @@ export interface Device {
|
|
|
6745
6745
|
/**
|
|
6746
6746
|
* Returns a #GList of #GdkAtoms, containing the labels for
|
|
6747
6747
|
* the axes that `device` currently has.
|
|
6748
|
-
* @returns
|
|
6748
|
+
* @returns A #GList of #GdkAtoms, free with g_list_free().
|
|
6749
6749
|
*/
|
|
6750
6750
|
list_axes(): Atom[]
|
|
6751
6751
|
/**
|
|
6752
6752
|
* If the device if of type %GDK_DEVICE_TYPE_MASTER, it will return
|
|
6753
6753
|
* the list of slave devices attached to it, otherwise it will return
|
|
6754
6754
|
* %NULL
|
|
6755
|
-
* @returns
|
|
6755
|
+
* @returns the list of slave devices, or %NULL. The list must be freed with g_list_free(), the contents of the list are owned by GTK+ and should not be freed.
|
|
6756
6756
|
*/
|
|
6757
6757
|
list_slave_devices(): Device[] | null
|
|
6758
6758
|
/**
|
|
@@ -7420,7 +7420,7 @@ export interface Display {
|
|
|
7420
7420
|
/**
|
|
7421
7421
|
* Returns the list of available input devices attached to `display`.
|
|
7422
7422
|
* The list is statically allocated and should not be freed.
|
|
7423
|
-
* @returns
|
|
7423
|
+
* @returns a list of #GdkDevice
|
|
7424
7424
|
*/
|
|
7425
7425
|
list_devices(): Device[]
|
|
7426
7426
|
/**
|
|
@@ -9248,7 +9248,7 @@ export interface Screen {
|
|
|
9248
9248
|
*
|
|
9249
9249
|
* The returned list should be freed with g_list_free(), but
|
|
9250
9250
|
* its elements need not be freed.
|
|
9251
|
-
* @returns
|
|
9251
|
+
* @returns list of toplevel windows, free with g_list_free()
|
|
9252
9252
|
*/
|
|
9253
9253
|
get_toplevel_windows(): Window[]
|
|
9254
9254
|
/**
|
|
@@ -9303,7 +9303,7 @@ export interface Screen {
|
|
|
9303
9303
|
* and might expect pixels to be in a certain format.
|
|
9304
9304
|
*
|
|
9305
9305
|
* Call g_list_free() on the return value when you’re finished with it.
|
|
9306
|
-
* @returns
|
|
9306
|
+
* @returns a list of visuals; the list must be freed, but not its contents
|
|
9307
9307
|
*/
|
|
9308
9308
|
list_visuals(): Visual[]
|
|
9309
9309
|
/**
|
|
@@ -10192,7 +10192,7 @@ export interface Window {
|
|
|
10192
10192
|
*
|
|
10193
10193
|
* The returned list must be freed, but the elements in the
|
|
10194
10194
|
* list need not be.
|
|
10195
|
-
* @returns
|
|
10195
|
+
* @returns list of child windows inside @window
|
|
10196
10196
|
*/
|
|
10197
10197
|
get_children(): Window[]
|
|
10198
10198
|
/**
|
|
@@ -10205,7 +10205,7 @@ export interface Window {
|
|
|
10205
10205
|
* The list is returned in (relative) stacking order, i.e. the
|
|
10206
10206
|
* lowest window is first.
|
|
10207
10207
|
* @param user_data user data to look for
|
|
10208
|
-
* @returns
|
|
10208
|
+
* @returns list of child windows inside @window
|
|
10209
10209
|
*/
|
|
10210
10210
|
get_children_with_user_data(user_data: any | null): Window[]
|
|
10211
10211
|
/**
|
|
@@ -10787,7 +10787,7 @@ export interface Window {
|
|
|
10787
10787
|
/**
|
|
10788
10788
|
* Like gdk_window_get_children(), but does not copy the list of
|
|
10789
10789
|
* children, so the list does not need to be freed.
|
|
10790
|
-
* @returns
|
|
10790
|
+
* @returns a reference to the list of child windows in @window
|
|
10791
10791
|
*/
|
|
10792
10792
|
peek_children(): Window[]
|
|
10793
10793
|
/**
|
|
@@ -11123,7 +11123,7 @@ export interface Window {
|
|
|
11123
11123
|
* icon by a small amount or not at all.
|
|
11124
11124
|
*
|
|
11125
11125
|
* Note that some platforms don't support window icons.
|
|
11126
|
-
* @param pixbufs
|
|
11126
|
+
* @param pixbufs A list of pixbufs, of different sizes.
|
|
11127
11127
|
*/
|
|
11128
11128
|
set_icon_list(pixbufs: GdkPixbuf.Pixbuf[]): void
|
|
11129
11129
|
/**
|
package/gdk-3.0.d.ts
CHANGED
|
@@ -5224,7 +5224,7 @@ function keyval_to_upper(keyval: number): number
|
|
|
5224
5224
|
* and might expect pixels to be in a certain format.
|
|
5225
5225
|
*
|
|
5226
5226
|
* Call g_list_free() on the return value when you’re finished with it.
|
|
5227
|
-
* @returns
|
|
5227
|
+
* @returns a list of visuals; the list must be freed, but not its contents
|
|
5228
5228
|
*/
|
|
5229
5229
|
function list_visuals(): Visual[]
|
|
5230
5230
|
/**
|
|
@@ -6747,14 +6747,14 @@ interface Device {
|
|
|
6747
6747
|
/**
|
|
6748
6748
|
* Returns a #GList of #GdkAtoms, containing the labels for
|
|
6749
6749
|
* the axes that `device` currently has.
|
|
6750
|
-
* @returns
|
|
6750
|
+
* @returns A #GList of #GdkAtoms, free with g_list_free().
|
|
6751
6751
|
*/
|
|
6752
6752
|
list_axes(): Atom[]
|
|
6753
6753
|
/**
|
|
6754
6754
|
* If the device if of type %GDK_DEVICE_TYPE_MASTER, it will return
|
|
6755
6755
|
* the list of slave devices attached to it, otherwise it will return
|
|
6756
6756
|
* %NULL
|
|
6757
|
-
* @returns
|
|
6757
|
+
* @returns the list of slave devices, or %NULL. The list must be freed with g_list_free(), the contents of the list are owned by GTK+ and should not be freed.
|
|
6758
6758
|
*/
|
|
6759
6759
|
list_slave_devices(): Device[] | null
|
|
6760
6760
|
/**
|
|
@@ -7422,7 +7422,7 @@ interface Display {
|
|
|
7422
7422
|
/**
|
|
7423
7423
|
* Returns the list of available input devices attached to `display`.
|
|
7424
7424
|
* The list is statically allocated and should not be freed.
|
|
7425
|
-
* @returns
|
|
7425
|
+
* @returns a list of #GdkDevice
|
|
7426
7426
|
*/
|
|
7427
7427
|
list_devices(): Device[]
|
|
7428
7428
|
/**
|
|
@@ -9250,7 +9250,7 @@ interface Screen {
|
|
|
9250
9250
|
*
|
|
9251
9251
|
* The returned list should be freed with g_list_free(), but
|
|
9252
9252
|
* its elements need not be freed.
|
|
9253
|
-
* @returns
|
|
9253
|
+
* @returns list of toplevel windows, free with g_list_free()
|
|
9254
9254
|
*/
|
|
9255
9255
|
get_toplevel_windows(): Window[]
|
|
9256
9256
|
/**
|
|
@@ -9305,7 +9305,7 @@ interface Screen {
|
|
|
9305
9305
|
* and might expect pixels to be in a certain format.
|
|
9306
9306
|
*
|
|
9307
9307
|
* Call g_list_free() on the return value when you’re finished with it.
|
|
9308
|
-
* @returns
|
|
9308
|
+
* @returns a list of visuals; the list must be freed, but not its contents
|
|
9309
9309
|
*/
|
|
9310
9310
|
list_visuals(): Visual[]
|
|
9311
9311
|
/**
|
|
@@ -10194,7 +10194,7 @@ interface Window {
|
|
|
10194
10194
|
*
|
|
10195
10195
|
* The returned list must be freed, but the elements in the
|
|
10196
10196
|
* list need not be.
|
|
10197
|
-
* @returns
|
|
10197
|
+
* @returns list of child windows inside @window
|
|
10198
10198
|
*/
|
|
10199
10199
|
get_children(): Window[]
|
|
10200
10200
|
/**
|
|
@@ -10207,7 +10207,7 @@ interface Window {
|
|
|
10207
10207
|
* The list is returned in (relative) stacking order, i.e. the
|
|
10208
10208
|
* lowest window is first.
|
|
10209
10209
|
* @param user_data user data to look for
|
|
10210
|
-
* @returns
|
|
10210
|
+
* @returns list of child windows inside @window
|
|
10211
10211
|
*/
|
|
10212
10212
|
get_children_with_user_data(user_data: any | null): Window[]
|
|
10213
10213
|
/**
|
|
@@ -10789,7 +10789,7 @@ interface Window {
|
|
|
10789
10789
|
/**
|
|
10790
10790
|
* Like gdk_window_get_children(), but does not copy the list of
|
|
10791
10791
|
* children, so the list does not need to be freed.
|
|
10792
|
-
* @returns
|
|
10792
|
+
* @returns a reference to the list of child windows in @window
|
|
10793
10793
|
*/
|
|
10794
10794
|
peek_children(): Window[]
|
|
10795
10795
|
/**
|
|
@@ -11125,7 +11125,7 @@ interface Window {
|
|
|
11125
11125
|
* icon by a small amount or not at all.
|
|
11126
11126
|
*
|
|
11127
11127
|
* Note that some platforms don't support window icons.
|
|
11128
|
-
* @param pixbufs
|
|
11128
|
+
* @param pixbufs A list of pixbufs, of different sizes.
|
|
11129
11129
|
*/
|
|
11130
11130
|
set_icon_list(pixbufs: GdkPixbuf.Pixbuf[]): void
|
|
11131
11131
|
/**
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@girs/gdk-3.0",
|
|
3
|
-
"version": "3.24.41-3.
|
|
3
|
+
"version": "3.24.41-3.3.0",
|
|
4
4
|
"description": "GJS TypeScript type definitions for Gdk-3.0, generated from library version 3.24.41",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"module": "gdk-3.0.js",
|
|
@@ -31,16 +31,16 @@
|
|
|
31
31
|
"test:cjs": "NODE_OPTIONS=--max_old_space_size=9216 tsc --noEmit gdk-3.0.d.cts"
|
|
32
32
|
},
|
|
33
33
|
"dependencies": {
|
|
34
|
-
"@girs/cairo-1.0": "^1.0.0-3.
|
|
35
|
-
"@girs/freetype2-2.0": "^2.0.0-3.
|
|
36
|
-
"@girs/gdkpixbuf-2.0": "^2.0.0-3.
|
|
37
|
-
"@girs/gio-2.0": "^2.78.0-3.
|
|
38
|
-
"@girs/gjs": "^3.
|
|
39
|
-
"@girs/glib-2.0": "^2.78.0-3.
|
|
40
|
-
"@girs/gmodule-2.0": "^2.0.0-3.
|
|
41
|
-
"@girs/gobject-2.0": "^2.78.0-3.
|
|
42
|
-
"@girs/harfbuzz-0.0": "^8.2.1-3.
|
|
43
|
-
"@girs/pango-1.0": "^1.51.0-3.
|
|
34
|
+
"@girs/cairo-1.0": "^1.0.0-3.3.0",
|
|
35
|
+
"@girs/freetype2-2.0": "^2.0.0-3.3.0",
|
|
36
|
+
"@girs/gdkpixbuf-2.0": "^2.0.0-3.3.0",
|
|
37
|
+
"@girs/gio-2.0": "^2.78.0-3.3.0",
|
|
38
|
+
"@girs/gjs": "^3.3.0",
|
|
39
|
+
"@girs/glib-2.0": "^2.78.0-3.3.0",
|
|
40
|
+
"@girs/gmodule-2.0": "^2.0.0-3.3.0",
|
|
41
|
+
"@girs/gobject-2.0": "^2.78.0-3.3.0",
|
|
42
|
+
"@girs/harfbuzz-0.0": "^8.2.1-3.3.0",
|
|
43
|
+
"@girs/pango-1.0": "^1.51.0-3.3.0"
|
|
44
44
|
},
|
|
45
45
|
"devDependencies": {
|
|
46
46
|
"typescript": "*"
|