@girs/meta-3 3.30.2-4.0.0-beta.39 → 3.30.2-4.0.0-beta.40
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/meta-3.d.ts +19 -38
- package/package.json +23 -23
package/README.md
CHANGED
|
@@ -5,7 +5,7 @@
|
|
|
5
5
|

|
|
6
6
|
|
|
7
7
|
|
|
8
|
-
GJS TypeScript type definitions for Meta-3, generated from library version 3.30.2 using [ts-for-gir](https://github.com/gjsify/ts-for-gir) v4.0.0-beta.
|
|
8
|
+
GJS TypeScript type definitions for Meta-3, generated from library version 3.30.2 using [ts-for-gir](https://github.com/gjsify/ts-for-gir) v4.0.0-beta.40.
|
|
9
9
|
|
|
10
10
|
## Install
|
|
11
11
|
|
package/meta-3.d.ts
CHANGED
|
@@ -37,21 +37,15 @@ export namespace Meta {
|
|
|
37
37
|
* Meta-3
|
|
38
38
|
*/
|
|
39
39
|
|
|
40
|
-
|
|
41
|
-
|
|
42
|
-
|
|
43
|
-
* breaking all existing themes.
|
|
44
|
-
*/
|
|
40
|
+
export namespace ButtonFunction {
|
|
41
|
+
export const $gtype: GObject.GType<ButtonFunction>;
|
|
42
|
+
}
|
|
45
43
|
|
|
46
44
|
/**
|
|
47
45
|
* Function a window button can have. Note, you can't add stuff here
|
|
48
46
|
* without extending the theme format to draw a new function and
|
|
49
47
|
* breaking all existing themes.
|
|
50
48
|
*/
|
|
51
|
-
export namespace ButtonFunction {
|
|
52
|
-
export const $gtype: GObject.GType<ButtonFunction>;
|
|
53
|
-
}
|
|
54
|
-
|
|
55
49
|
enum ButtonFunction {
|
|
56
50
|
/**
|
|
57
51
|
* Menu
|
|
@@ -84,19 +78,15 @@ export namespace Meta {
|
|
|
84
78
|
WAIT,
|
|
85
79
|
FORCE_CLOSE,
|
|
86
80
|
}
|
|
87
|
-
/**
|
|
88
|
-
* Indicates the appropriate effect to show the user for
|
|
89
|
-
* meta_compositor_show_window() and meta_compositor_hide_window()
|
|
90
|
-
*/
|
|
91
81
|
|
|
92
|
-
/**
|
|
93
|
-
* Indicates the appropriate effect to show the user for
|
|
94
|
-
* meta_compositor_show_window() and meta_compositor_hide_window()
|
|
95
|
-
*/
|
|
96
82
|
export namespace CompEffect {
|
|
97
83
|
export const $gtype: GObject.GType<CompEffect>;
|
|
98
84
|
}
|
|
99
85
|
|
|
86
|
+
/**
|
|
87
|
+
* Indicates the appropriate effect to show the user for
|
|
88
|
+
* meta_compositor_show_window() and meta_compositor_hide_window()
|
|
89
|
+
*/
|
|
100
90
|
enum CompEffect {
|
|
101
91
|
/**
|
|
102
92
|
* The window is newly created
|
|
@@ -1080,19 +1070,15 @@ export namespace Meta {
|
|
|
1080
1070
|
FULLSCREEN,
|
|
1081
1071
|
UNFULLSCREEN,
|
|
1082
1072
|
}
|
|
1083
|
-
/**
|
|
1084
|
-
* Layers a window can be in.
|
|
1085
|
-
* These MUST be in the order of stacking.
|
|
1086
|
-
*/
|
|
1087
1073
|
|
|
1088
|
-
/**
|
|
1089
|
-
* Layers a window can be in.
|
|
1090
|
-
* These MUST be in the order of stacking.
|
|
1091
|
-
*/
|
|
1092
1074
|
export namespace StackLayer {
|
|
1093
1075
|
export const $gtype: GObject.GType<StackLayer>;
|
|
1094
1076
|
}
|
|
1095
1077
|
|
|
1078
|
+
/**
|
|
1079
|
+
* Layers a window can be in.
|
|
1080
|
+
* These MUST be in the order of stacking.
|
|
1081
|
+
*/
|
|
1096
1082
|
enum StackLayer {
|
|
1097
1083
|
/**
|
|
1098
1084
|
* Desktop layer
|
|
@@ -1176,17 +1162,14 @@ export namespace Meta {
|
|
|
1176
1162
|
*/
|
|
1177
1163
|
X11,
|
|
1178
1164
|
}
|
|
1179
|
-
/**
|
|
1180
|
-
* Menu the compositor should display for a given window
|
|
1181
|
-
*/
|
|
1182
1165
|
|
|
1183
|
-
/**
|
|
1184
|
-
* Menu the compositor should display for a given window
|
|
1185
|
-
*/
|
|
1186
1166
|
export namespace WindowMenuType {
|
|
1187
1167
|
export const $gtype: GObject.GType<WindowMenuType>;
|
|
1188
1168
|
}
|
|
1189
1169
|
|
|
1170
|
+
/**
|
|
1171
|
+
* Menu the compositor should display for a given window
|
|
1172
|
+
*/
|
|
1190
1173
|
enum WindowMenuType {
|
|
1191
1174
|
/**
|
|
1192
1175
|
* the window manager menu
|
|
@@ -1268,6 +1251,7 @@ export namespace Meta {
|
|
|
1268
1251
|
*/
|
|
1269
1252
|
OVERRIDE_OTHER,
|
|
1270
1253
|
}
|
|
1254
|
+
|
|
1271
1255
|
const CURRENT_TIME: number;
|
|
1272
1256
|
const DEFAULT_ICON_NAME: string;
|
|
1273
1257
|
const ICON_HEIGHT: number;
|
|
@@ -1480,7 +1464,6 @@ export namespace Meta {
|
|
|
1480
1464
|
interface WindowForeachFunc {
|
|
1481
1465
|
(window: Window): boolean;
|
|
1482
1466
|
}
|
|
1483
|
-
|
|
1484
1467
|
export namespace BarrierDirection {
|
|
1485
1468
|
export const $gtype: GObject.GType<BarrierDirection>;
|
|
1486
1469
|
}
|
|
@@ -1768,17 +1751,14 @@ export namespace Meta {
|
|
|
1768
1751
|
*/
|
|
1769
1752
|
BOTH,
|
|
1770
1753
|
}
|
|
1771
|
-
/**
|
|
1772
|
-
* Options that can be provided when calling meta_plugin_begin_modal().
|
|
1773
|
-
*/
|
|
1774
1754
|
|
|
1775
|
-
/**
|
|
1776
|
-
* Options that can be provided when calling meta_plugin_begin_modal().
|
|
1777
|
-
*/
|
|
1778
1755
|
export namespace ModalOptions {
|
|
1779
1756
|
export const $gtype: GObject.GType<ModalOptions>;
|
|
1780
1757
|
}
|
|
1781
1758
|
|
|
1759
|
+
/**
|
|
1760
|
+
* Options that can be provided when calling meta_plugin_begin_modal().
|
|
1761
|
+
*/
|
|
1782
1762
|
enum ModalOptions {
|
|
1783
1763
|
/**
|
|
1784
1764
|
* if set the pointer is already
|
|
@@ -1838,6 +1818,7 @@ export namespace Meta {
|
|
|
1838
1818
|
*/
|
|
1839
1819
|
MOD5_MASK,
|
|
1840
1820
|
}
|
|
1821
|
+
|
|
1841
1822
|
namespace Backend {
|
|
1842
1823
|
// Signal signatures
|
|
1843
1824
|
interface SignalSignatures extends GObject.Object.SignalSignatures {
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@girs/meta-3",
|
|
3
|
-
"version": "3.30.2-4.0.0-beta.
|
|
3
|
+
"version": "3.30.2-4.0.0-beta.40",
|
|
4
4
|
"description": "GJS TypeScript type definitions for Meta-3, generated from library version 3.30.2",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"module": "meta-3.js",
|
|
@@ -31,28 +31,28 @@
|
|
|
31
31
|
"test": "tsc --project tsconfig.json"
|
|
32
32
|
},
|
|
33
33
|
"dependencies": {
|
|
34
|
-
"@girs/gjs": "4.0.0-beta.
|
|
35
|
-
"@girs/xlib-2.0": "2.0.0-4.0.0-beta.
|
|
36
|
-
"@girs/xfixes-4.0": "4.0.0-4.0.0-beta.
|
|
37
|
-
"@girs/gtk-3.0": "3.24.51-4.0.0-beta.
|
|
38
|
-
"@girs/gdk-3.0": "3.24.51-4.0.0-beta.
|
|
39
|
-
"@girs/cairo-1.0": "1.0.0-4.0.0-beta.
|
|
40
|
-
"@girs/gobject-2.0": "2.86.4-4.0.0-beta.
|
|
41
|
-
"@girs/glib-2.0": "2.86.4-4.0.0-beta.
|
|
42
|
-
"@girs/pango-1.0": "1.57.0-4.0.0-beta.
|
|
43
|
-
"@girs/harfbuzz-0.0": "11.5.1-4.0.0-beta.
|
|
44
|
-
"@girs/freetype2-2.0": "2.0.0-4.0.0-beta.
|
|
45
|
-
"@girs/gio-2.0": "2.86.4-4.0.0-beta.
|
|
46
|
-
"@girs/gmodule-2.0": "2.0.0-4.0.0-beta.
|
|
47
|
-
"@girs/gdkpixbuf-2.0": "2.0.0-4.0.0-beta.
|
|
48
|
-
"@girs/atk-1.0": "2.58.3-4.0.0-beta.
|
|
49
|
-
"@girs/gdesktopenums-3.0": "3.0.0-4.0.0-beta.
|
|
50
|
-
"@girs/cogl-3": "3.0.0-4.0.0-beta.
|
|
51
|
-
"@girs/gl-1.0": "1.0.0-4.0.0-beta.
|
|
52
|
-
"@girs/clutter-3": "1.26.1-4.0.0-beta.
|
|
53
|
-
"@girs/json-1.0": "1.10.8-4.0.0-beta.
|
|
54
|
-
"@girs/coglpango-3": "3.0.0-4.0.0-beta.
|
|
55
|
-
"@girs/pangocairo-1.0": "1.0.0-4.0.0-beta.
|
|
34
|
+
"@girs/gjs": "4.0.0-beta.40",
|
|
35
|
+
"@girs/xlib-2.0": "2.0.0-4.0.0-beta.40",
|
|
36
|
+
"@girs/xfixes-4.0": "4.0.0-4.0.0-beta.40",
|
|
37
|
+
"@girs/gtk-3.0": "3.24.51-4.0.0-beta.40",
|
|
38
|
+
"@girs/gdk-3.0": "3.24.51-4.0.0-beta.40",
|
|
39
|
+
"@girs/cairo-1.0": "1.0.0-4.0.0-beta.40",
|
|
40
|
+
"@girs/gobject-2.0": "2.86.4-4.0.0-beta.40",
|
|
41
|
+
"@girs/glib-2.0": "2.86.4-4.0.0-beta.40",
|
|
42
|
+
"@girs/pango-1.0": "1.57.0-4.0.0-beta.40",
|
|
43
|
+
"@girs/harfbuzz-0.0": "11.5.1-4.0.0-beta.40",
|
|
44
|
+
"@girs/freetype2-2.0": "2.0.0-4.0.0-beta.40",
|
|
45
|
+
"@girs/gio-2.0": "2.86.4-4.0.0-beta.40",
|
|
46
|
+
"@girs/gmodule-2.0": "2.0.0-4.0.0-beta.40",
|
|
47
|
+
"@girs/gdkpixbuf-2.0": "2.0.0-4.0.0-beta.40",
|
|
48
|
+
"@girs/atk-1.0": "2.58.3-4.0.0-beta.40",
|
|
49
|
+
"@girs/gdesktopenums-3.0": "3.0.0-4.0.0-beta.40",
|
|
50
|
+
"@girs/cogl-3": "3.0.0-4.0.0-beta.40",
|
|
51
|
+
"@girs/gl-1.0": "1.0.0-4.0.0-beta.40",
|
|
52
|
+
"@girs/clutter-3": "1.26.1-4.0.0-beta.40",
|
|
53
|
+
"@girs/json-1.0": "1.10.8-4.0.0-beta.40",
|
|
54
|
+
"@girs/coglpango-3": "3.0.0-4.0.0-beta.40",
|
|
55
|
+
"@girs/pangocairo-1.0": "1.0.0-4.0.0-beta.40" },
|
|
56
56
|
"devDependencies": {
|
|
57
57
|
"typescript": "*"
|
|
58
58
|
},
|