@girs/meta-10 4.2.0 → 4.4.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/meta-10.d.ts +150 -0
- package/package.json +24 -24
package/README.md
CHANGED
|
@@ -5,25 +5,25 @@
|
|
|
5
5
|

|
|
6
6
|
|
|
7
7
|
|
|
8
|
-
GJS TypeScript type definitions for Meta-10 using [ts-for-gir](https://github.com/gjsify/ts-for-gir) v4.
|
|
8
|
+
GJS TypeScript type definitions for Meta-10 using [ts-for-gir](https://github.com/gjsify/ts-for-gir) v4.4.0.
|
|
9
9
|
|
|
10
10
|
## Install
|
|
11
11
|
|
|
12
|
-
|
|
12
|
+
Install the type definitions with npm:
|
|
13
13
|
```bash
|
|
14
14
|
npm install @girs/meta-10
|
|
15
15
|
```
|
|
16
16
|
|
|
17
17
|
## Usage
|
|
18
18
|
|
|
19
|
-
|
|
19
|
+
Import it like any other module:
|
|
20
20
|
```ts
|
|
21
21
|
import Meta from '@girs/meta-10';
|
|
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/meta-10` or `@girs/meta-10/ambient` in your `tsconfig` or entry point Typescript file:
|
|
28
28
|
|
|
29
29
|
`index.ts`:
|
|
@@ -42,7 +42,7 @@ import '@girs/meta-10'
|
|
|
42
42
|
}
|
|
43
43
|
```
|
|
44
44
|
|
|
45
|
-
|
|
45
|
+
The ambient module now resolves with types:
|
|
46
46
|
|
|
47
47
|
```ts
|
|
48
48
|
import Meta from 'gi://Meta?version=10';
|
|
@@ -50,7 +50,7 @@ import Meta from 'gi://Meta?version=10';
|
|
|
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/meta-10` or `@girs/meta-10/import` in your `tsconfig` or entry point Typescript file:
|
|
55
55
|
|
|
56
56
|
`index.ts`:
|
|
@@ -69,7 +69,7 @@ import '@girs/meta-10'
|
|
|
69
69
|
}
|
|
70
70
|
```
|
|
71
71
|
|
|
72
|
-
|
|
72
|
+
That form carries types as well:
|
|
73
73
|
|
|
74
74
|
```ts
|
|
75
75
|
const Meta = imports.gi.Meta;
|
|
@@ -77,7 +77,7 @@ const Meta = imports.gi.Meta;
|
|
|
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
|
|
package/meta-10.d.ts
CHANGED
|
@@ -2496,6 +2496,7 @@ export namespace Meta {
|
|
|
2496
2496
|
* instance.
|
|
2497
2497
|
* @param cancellable optional {@link Gio.Cancellable} object, `null` to ignore.
|
|
2498
2498
|
* @returns `true` if successful. If an error has occurred, this function will return `false` and set `error` appropriately if present.
|
|
2499
|
+
* @since 2.22
|
|
2499
2500
|
*/
|
|
2500
2501
|
init(cancellable: Gio.Cancellable | null): boolean;
|
|
2501
2502
|
|
|
@@ -2539,6 +2540,7 @@ export namespace Meta {
|
|
|
2539
2540
|
* on the result of `g_object_new()`, regardless of whether it is in fact a new
|
|
2540
2541
|
* instance.
|
|
2541
2542
|
* @param cancellable optional {@link Gio.Cancellable} object, `null` to ignore.
|
|
2543
|
+
* @since 2.22
|
|
2542
2544
|
* @virtual
|
|
2543
2545
|
*/
|
|
2544
2546
|
vfunc_init(cancellable: Gio.Cancellable | null): boolean;
|
|
@@ -2791,6 +2793,7 @@ export namespace Meta {
|
|
|
2791
2793
|
* Finds the {@link GObject.ParamSpec} for `property_name`
|
|
2792
2794
|
* @param property_name the name of the animatable property to find
|
|
2793
2795
|
* @returns The {@link GObject.ParamSpec} for the given property or `null`
|
|
2796
|
+
* @since 1.4
|
|
2794
2797
|
*/
|
|
2795
2798
|
find_property(property_name: string): GObject.ParamSpec;
|
|
2796
2799
|
|
|
@@ -2804,6 +2807,7 @@ export namespace Meta {
|
|
|
2804
2807
|
* Retrieves the current state of `property_name` and sets `value` with it
|
|
2805
2808
|
* @param property_name the name of the animatable property to retrieve
|
|
2806
2809
|
* @param value a {@link GObject.Value} initialized to the type of the property to retrieve
|
|
2810
|
+
* @since 1.4
|
|
2807
2811
|
*/
|
|
2808
2812
|
get_initial_state(property_name: string, value: GObject.Value | any): void;
|
|
2809
2813
|
|
|
@@ -2821,6 +2825,7 @@ export namespace Meta {
|
|
|
2821
2825
|
* @param interval a {@link Clutter.Interval} with the animation range
|
|
2822
2826
|
* @param progress the progress to use to interpolate between the initial and final values of the `interval`
|
|
2823
2827
|
* @returns `true` if the interpolation was successful, and `false` otherwise
|
|
2828
|
+
* @since 1.8
|
|
2824
2829
|
*/
|
|
2825
2830
|
interpolate_value(property_name: string, interval: Clutter.Interval, progress: number): [boolean, unknown];
|
|
2826
2831
|
|
|
@@ -2828,12 +2833,14 @@ export namespace Meta {
|
|
|
2828
2833
|
* Sets the current state of `property_name` to `value`
|
|
2829
2834
|
* @param property_name the name of the animatable property to set
|
|
2830
2835
|
* @param value the value of the animatable property to set
|
|
2836
|
+
* @since 1.4
|
|
2831
2837
|
*/
|
|
2832
2838
|
set_final_state(property_name: string, value: GObject.Value | any): void;
|
|
2833
2839
|
|
|
2834
2840
|
/**
|
|
2835
2841
|
* Finds the {@link GObject.ParamSpec} for `property_name`
|
|
2836
2842
|
* @param property_name the name of the animatable property to find
|
|
2843
|
+
* @since 1.4
|
|
2837
2844
|
* @virtual
|
|
2838
2845
|
*/
|
|
2839
2846
|
vfunc_find_property(property_name: string): GObject.ParamSpec;
|
|
@@ -2848,6 +2855,7 @@ export namespace Meta {
|
|
|
2848
2855
|
* Retrieves the current state of `property_name` and sets `value` with it
|
|
2849
2856
|
* @param property_name the name of the animatable property to retrieve
|
|
2850
2857
|
* @param value a {@link GObject.Value} initialized to the type of the property to retrieve
|
|
2858
|
+
* @since 1.4
|
|
2851
2859
|
* @virtual
|
|
2852
2860
|
*/
|
|
2853
2861
|
vfunc_get_initial_state(property_name: string, value: unknown): void;
|
|
@@ -2865,6 +2873,7 @@ export namespace Meta {
|
|
|
2865
2873
|
* @param property_name the name of the property to interpolate
|
|
2866
2874
|
* @param interval a {@link Clutter.Interval} with the animation range
|
|
2867
2875
|
* @param progress the progress to use to interpolate between the initial and final values of the `interval`
|
|
2876
|
+
* @since 1.8
|
|
2868
2877
|
* @virtual
|
|
2869
2878
|
*/
|
|
2870
2879
|
vfunc_interpolate_value(property_name: string, interval: Clutter.Interval, progress: number): [boolean, GObject.Value | any];
|
|
@@ -2873,6 +2882,7 @@ export namespace Meta {
|
|
|
2873
2882
|
* Sets the current state of `property_name` to `value`
|
|
2874
2883
|
* @param property_name the name of the animatable property to set
|
|
2875
2884
|
* @param value the value of the animatable property to set
|
|
2885
|
+
* @since 1.4
|
|
2876
2886
|
* @virtual
|
|
2877
2887
|
*/
|
|
2878
2888
|
vfunc_set_final_state(property_name: string, value: unknown): void;
|
|
@@ -2887,6 +2897,8 @@ export namespace Meta {
|
|
|
2887
2897
|
* deprecated virtual function. The default implementation will
|
|
2888
2898
|
* call `clutter_actor_add_child()`.
|
|
2889
2899
|
* @param actor the first {@link Clutter.Actor} to add
|
|
2900
|
+
* @since 0.4
|
|
2901
|
+
* @deprecated since 1.10: Use `clutter_actor_add_child()` instead.
|
|
2890
2902
|
*/
|
|
2891
2903
|
add_actor(actor: Clutter.Actor): void;
|
|
2892
2904
|
|
|
@@ -2901,6 +2913,7 @@ export namespace Meta {
|
|
|
2901
2913
|
* @param child a {@link Clutter.Actor} that is a child of `container`.
|
|
2902
2914
|
* @param property the name of the property to set.
|
|
2903
2915
|
* @param value the value.
|
|
2916
|
+
* @since 0.8
|
|
2904
2917
|
*/
|
|
2905
2918
|
child_get_property(child: Clutter.Actor, property: string, value: GObject.Value | any): void;
|
|
2906
2919
|
|
|
@@ -2910,6 +2923,7 @@ export namespace Meta {
|
|
|
2910
2923
|
* {@link Clutter.Container.SignalSignatures.child_notify | Clutter.Container::child-notify} signal.
|
|
2911
2924
|
* @param child a {@link Clutter.Actor}
|
|
2912
2925
|
* @param pspec a {@link GObject.ParamSpec}
|
|
2926
|
+
* @since 1.6
|
|
2913
2927
|
*/
|
|
2914
2928
|
child_notify(child: Clutter.Actor, pspec: GObject.ParamSpec): void;
|
|
2915
2929
|
|
|
@@ -2918,6 +2932,7 @@ export namespace Meta {
|
|
|
2918
2932
|
* @param child a {@link Clutter.Actor} that is a child of `container`.
|
|
2919
2933
|
* @param property the name of the property to set.
|
|
2920
2934
|
* @param value the value.
|
|
2935
|
+
* @since 0.8
|
|
2921
2936
|
*/
|
|
2922
2937
|
child_set_property(child: Clutter.Actor, property: string, value: GObject.Value | any): void;
|
|
2923
2938
|
|
|
@@ -2932,6 +2947,7 @@ export namespace Meta {
|
|
|
2932
2947
|
*
|
|
2933
2948
|
* Applications should not call this function.
|
|
2934
2949
|
* @param actor a {@link Clutter.Actor}
|
|
2950
|
+
* @since 1.2
|
|
2935
2951
|
*/
|
|
2936
2952
|
create_child_meta(actor: Clutter.Actor): void;
|
|
2937
2953
|
|
|
@@ -2945,6 +2961,7 @@ export namespace Meta {
|
|
|
2945
2961
|
*
|
|
2946
2962
|
* Applications should not call this function.
|
|
2947
2963
|
* @param actor a {@link Clutter.Actor}
|
|
2964
|
+
* @since 1.2
|
|
2948
2965
|
*/
|
|
2949
2966
|
destroy_child_meta(actor: Clutter.Actor): void;
|
|
2950
2967
|
|
|
@@ -2953,6 +2970,7 @@ export namespace Meta {
|
|
|
2953
2970
|
* into any child container.
|
|
2954
2971
|
* @param child_name the name of the requested child.
|
|
2955
2972
|
* @returns The child actor with the requested name, or `null` if no actor with that name was found.
|
|
2973
|
+
* @since 0.6
|
|
2956
2974
|
*/
|
|
2957
2975
|
find_child_by_name(child_name: string): Clutter.Actor;
|
|
2958
2976
|
|
|
@@ -2961,6 +2979,7 @@ export namespace Meta {
|
|
|
2961
2979
|
* `container` specific state for `actor`.
|
|
2962
2980
|
* @param actor a {@link Clutter.Actor} that is a child of `container`.
|
|
2963
2981
|
* @returns the {@link Clutter.ChildMeta} for the `actor` child of `container` or `null` if the specifiec actor does not exist or the container is not configured to provide {@link Clutter.ChildMeta}<!-- -->s
|
|
2982
|
+
* @since 0.8
|
|
2964
2983
|
*/
|
|
2965
2984
|
get_child_meta(actor: Clutter.Actor): Clutter.ChildMeta;
|
|
2966
2985
|
|
|
@@ -2974,6 +2993,8 @@ export namespace Meta {
|
|
|
2974
2993
|
* deprecated virtual function. The default implementation will call
|
|
2975
2994
|
* `clutter_actor_remove_child()`.
|
|
2976
2995
|
* @param actor a {@link Clutter.Actor}
|
|
2996
|
+
* @since 0.4
|
|
2997
|
+
* @deprecated since 1.10: Use `clutter_actor_remove_child()` instead.
|
|
2977
2998
|
*/
|
|
2978
2999
|
remove_actor(actor: Clutter.Actor): void;
|
|
2979
3000
|
|
|
@@ -2999,6 +3020,8 @@ export namespace Meta {
|
|
|
2999
3020
|
* deprecated virtual function. The default implementation will
|
|
3000
3021
|
* call `clutter_actor_add_child()`.
|
|
3001
3022
|
* @param actor the first {@link Clutter.Actor} to add
|
|
3023
|
+
* @since 0.4
|
|
3024
|
+
* @deprecated since 1.10: Use `clutter_actor_add_child()` instead.
|
|
3002
3025
|
* @virtual
|
|
3003
3026
|
*/
|
|
3004
3027
|
vfunc_add(actor: Clutter.Actor): void;
|
|
@@ -3009,6 +3032,7 @@ export namespace Meta {
|
|
|
3009
3032
|
* {@link Clutter.Container.SignalSignatures.child_notify | Clutter.Container::child-notify} signal.
|
|
3010
3033
|
* @param child a {@link Clutter.Actor}
|
|
3011
3034
|
* @param pspec a {@link GObject.ParamSpec}
|
|
3035
|
+
* @since 1.6
|
|
3012
3036
|
* @virtual
|
|
3013
3037
|
*/
|
|
3014
3038
|
vfunc_child_notify(child: Clutter.Actor, pspec: GObject.ParamSpec): void;
|
|
@@ -3024,6 +3048,7 @@ export namespace Meta {
|
|
|
3024
3048
|
*
|
|
3025
3049
|
* Applications should not call this function.
|
|
3026
3050
|
* @param actor a {@link Clutter.Actor}
|
|
3051
|
+
* @since 1.2
|
|
3027
3052
|
* @virtual
|
|
3028
3053
|
*/
|
|
3029
3054
|
vfunc_create_child_meta(actor: Clutter.Actor): void;
|
|
@@ -3038,6 +3063,7 @@ export namespace Meta {
|
|
|
3038
3063
|
*
|
|
3039
3064
|
* Applications should not call this function.
|
|
3040
3065
|
* @param actor a {@link Clutter.Actor}
|
|
3066
|
+
* @since 1.2
|
|
3041
3067
|
* @virtual
|
|
3042
3068
|
*/
|
|
3043
3069
|
vfunc_destroy_child_meta(actor: Clutter.Actor): void;
|
|
@@ -3046,6 +3072,7 @@ export namespace Meta {
|
|
|
3046
3072
|
* Retrieves the {@link Clutter.ChildMeta} which contains the data about the
|
|
3047
3073
|
* `container` specific state for `actor`.
|
|
3048
3074
|
* @param actor a {@link Clutter.Actor} that is a child of `container`.
|
|
3075
|
+
* @since 0.8
|
|
3049
3076
|
* @virtual
|
|
3050
3077
|
*/
|
|
3051
3078
|
vfunc_get_child_meta(actor: Clutter.Actor): Clutter.ChildMeta;
|
|
@@ -3060,6 +3087,8 @@ export namespace Meta {
|
|
|
3060
3087
|
* deprecated virtual function. The default implementation will call
|
|
3061
3088
|
* `clutter_actor_remove_child()`.
|
|
3062
3089
|
* @param actor a {@link Clutter.Actor}
|
|
3090
|
+
* @since 0.4
|
|
3091
|
+
* @deprecated since 1.10: Use `clutter_actor_remove_child()` instead.
|
|
3063
3092
|
* @virtual
|
|
3064
3093
|
*/
|
|
3065
3094
|
vfunc_remove(actor: Clutter.Actor): void;
|
|
@@ -3067,6 +3096,7 @@ export namespace Meta {
|
|
|
3067
3096
|
/**
|
|
3068
3097
|
* Retrieves the id of `scriptable` set using `clutter_scriptable_set_id()`.
|
|
3069
3098
|
* @returns the id of the object. The returned string is owned by the scriptable object and should never be modified of freed
|
|
3099
|
+
* @since 0.6
|
|
3070
3100
|
*/
|
|
3071
3101
|
get_id(): string;
|
|
3072
3102
|
|
|
@@ -3078,6 +3108,7 @@ export namespace Meta {
|
|
|
3078
3108
|
* @param name the name of the node
|
|
3079
3109
|
* @param node the JSON node to be parsed
|
|
3080
3110
|
* @returns `true` if the node was successfully parsed, `false` otherwise.
|
|
3111
|
+
* @since 0.6
|
|
3081
3112
|
*/
|
|
3082
3113
|
parse_custom_node(script: Clutter.Script, value: GObject.Value | any, name: string, node: Json.Node): boolean;
|
|
3083
3114
|
|
|
@@ -3087,6 +3118,7 @@ export namespace Meta {
|
|
|
3087
3118
|
* @param script the {@link Clutter.Script} creating the scriptable instance
|
|
3088
3119
|
* @param name the name of the property
|
|
3089
3120
|
* @param value the value of the property
|
|
3121
|
+
* @since 0.6
|
|
3090
3122
|
*/
|
|
3091
3123
|
set_custom_property(script: Clutter.Script, name: string, value: GObject.Value | any): void;
|
|
3092
3124
|
|
|
@@ -3098,11 +3130,13 @@ export namespace Meta {
|
|
|
3098
3130
|
* define a unique name for an object constructable using the UI
|
|
3099
3131
|
* definition language parsed by {@link Clutter.Script}.
|
|
3100
3132
|
* @param id_ the {@link Clutter.Script} id of the object
|
|
3133
|
+
* @since 0.6
|
|
3101
3134
|
*/
|
|
3102
3135
|
set_id(id_: string): void;
|
|
3103
3136
|
|
|
3104
3137
|
/**
|
|
3105
3138
|
* Retrieves the id of `scriptable` set using `clutter_scriptable_set_id()`.
|
|
3139
|
+
* @since 0.6
|
|
3106
3140
|
* @virtual
|
|
3107
3141
|
*/
|
|
3108
3142
|
vfunc_get_id(): string;
|
|
@@ -3114,6 +3148,7 @@ export namespace Meta {
|
|
|
3114
3148
|
* @param value the generic value to be set
|
|
3115
3149
|
* @param name the name of the node
|
|
3116
3150
|
* @param node the JSON node to be parsed
|
|
3151
|
+
* @since 0.6
|
|
3117
3152
|
* @virtual
|
|
3118
3153
|
*/
|
|
3119
3154
|
vfunc_parse_custom_node(script: Clutter.Script, value: unknown, name: string, node: Json.Node): boolean;
|
|
@@ -3124,6 +3159,7 @@ export namespace Meta {
|
|
|
3124
3159
|
* @param script the {@link Clutter.Script} creating the scriptable instance
|
|
3125
3160
|
* @param name the name of the property
|
|
3126
3161
|
* @param value the value of the property
|
|
3162
|
+
* @since 0.6
|
|
3127
3163
|
* @virtual
|
|
3128
3164
|
*/
|
|
3129
3165
|
vfunc_set_custom_property(script: Clutter.Script, name: string, value: unknown): void;
|
|
@@ -3136,6 +3172,7 @@ export namespace Meta {
|
|
|
3136
3172
|
* define a unique name for an object constructable using the UI
|
|
3137
3173
|
* definition language parsed by {@link Clutter.Script}.
|
|
3138
3174
|
* @param id_ the {@link Clutter.Script} id of the object
|
|
3175
|
+
* @since 0.6
|
|
3139
3176
|
* @virtual
|
|
3140
3177
|
*/
|
|
3141
3178
|
vfunc_set_id(id_: string): void;
|
|
@@ -3314,6 +3351,7 @@ export namespace Meta {
|
|
|
3314
3351
|
* would have regardless of the allocation of the actor that is painting it,
|
|
3315
3352
|
* for instance the size of an image data.
|
|
3316
3353
|
* @returns `true` if the content has a preferred size, and `false` otherwise
|
|
3354
|
+
* @since 1.10
|
|
3317
3355
|
*/
|
|
3318
3356
|
get_preferred_size(): [boolean, number, number];
|
|
3319
3357
|
|
|
@@ -3323,6 +3361,7 @@ export namespace Meta {
|
|
|
3323
3361
|
* This function should be called by {@link Clutter.Content} implementations when
|
|
3324
3362
|
* they change the way a the content should be painted regardless of the
|
|
3325
3363
|
* actor state.
|
|
3364
|
+
* @since 1.10
|
|
3326
3365
|
*/
|
|
3327
3366
|
invalidate(): void;
|
|
3328
3367
|
|
|
@@ -3353,6 +3392,7 @@ export namespace Meta {
|
|
|
3353
3392
|
* The natural size of a {@link Clutter.Content} is defined as the size the content
|
|
3354
3393
|
* would have regardless of the allocation of the actor that is painting it,
|
|
3355
3394
|
* for instance the size of an image data.
|
|
3395
|
+
* @since 1.10
|
|
3356
3396
|
* @virtual
|
|
3357
3397
|
*/
|
|
3358
3398
|
vfunc_get_preferred_size(): [boolean, number, number];
|
|
@@ -3363,6 +3403,7 @@ export namespace Meta {
|
|
|
3363
3403
|
* This function should be called by {@link Clutter.Content} implementations when
|
|
3364
3404
|
* they change the way a the content should be painted regardless of the
|
|
3365
3405
|
* actor state.
|
|
3406
|
+
* @since 1.10
|
|
3366
3407
|
* @virtual
|
|
3367
3408
|
*/
|
|
3368
3409
|
vfunc_invalidate(): void;
|
|
@@ -3505,6 +3546,7 @@ export namespace Meta {
|
|
|
3505
3546
|
* Finds the {@link GObject.ParamSpec} for `property_name`
|
|
3506
3547
|
* @param property_name the name of the animatable property to find
|
|
3507
3548
|
* @returns The {@link GObject.ParamSpec} for the given property or `null`
|
|
3549
|
+
* @since 1.4
|
|
3508
3550
|
*/
|
|
3509
3551
|
find_property(property_name: string): GObject.ParamSpec;
|
|
3510
3552
|
|
|
@@ -3518,6 +3560,7 @@ export namespace Meta {
|
|
|
3518
3560
|
* Retrieves the current state of `property_name` and sets `value` with it
|
|
3519
3561
|
* @param property_name the name of the animatable property to retrieve
|
|
3520
3562
|
* @param value a {@link GObject.Value} initialized to the type of the property to retrieve
|
|
3563
|
+
* @since 1.4
|
|
3521
3564
|
*/
|
|
3522
3565
|
get_initial_state(property_name: string, value: GObject.Value | any): void;
|
|
3523
3566
|
|
|
@@ -3535,6 +3578,7 @@ export namespace Meta {
|
|
|
3535
3578
|
* @param interval a {@link Clutter.Interval} with the animation range
|
|
3536
3579
|
* @param progress the progress to use to interpolate between the initial and final values of the `interval`
|
|
3537
3580
|
* @returns `true` if the interpolation was successful, and `false` otherwise
|
|
3581
|
+
* @since 1.8
|
|
3538
3582
|
*/
|
|
3539
3583
|
interpolate_value(property_name: string, interval: Clutter.Interval, progress: number): [boolean, unknown];
|
|
3540
3584
|
|
|
@@ -3542,12 +3586,14 @@ export namespace Meta {
|
|
|
3542
3586
|
* Sets the current state of `property_name` to `value`
|
|
3543
3587
|
* @param property_name the name of the animatable property to set
|
|
3544
3588
|
* @param value the value of the animatable property to set
|
|
3589
|
+
* @since 1.4
|
|
3545
3590
|
*/
|
|
3546
3591
|
set_final_state(property_name: string, value: GObject.Value | any): void;
|
|
3547
3592
|
|
|
3548
3593
|
/**
|
|
3549
3594
|
* Finds the {@link GObject.ParamSpec} for `property_name`
|
|
3550
3595
|
* @param property_name the name of the animatable property to find
|
|
3596
|
+
* @since 1.4
|
|
3551
3597
|
* @virtual
|
|
3552
3598
|
*/
|
|
3553
3599
|
vfunc_find_property(property_name: string): GObject.ParamSpec;
|
|
@@ -3562,6 +3608,7 @@ export namespace Meta {
|
|
|
3562
3608
|
* Retrieves the current state of `property_name` and sets `value` with it
|
|
3563
3609
|
* @param property_name the name of the animatable property to retrieve
|
|
3564
3610
|
* @param value a {@link GObject.Value} initialized to the type of the property to retrieve
|
|
3611
|
+
* @since 1.4
|
|
3565
3612
|
* @virtual
|
|
3566
3613
|
*/
|
|
3567
3614
|
vfunc_get_initial_state(property_name: string, value: unknown): void;
|
|
@@ -3579,6 +3626,7 @@ export namespace Meta {
|
|
|
3579
3626
|
* @param property_name the name of the property to interpolate
|
|
3580
3627
|
* @param interval a {@link Clutter.Interval} with the animation range
|
|
3581
3628
|
* @param progress the progress to use to interpolate between the initial and final values of the `interval`
|
|
3629
|
+
* @since 1.8
|
|
3582
3630
|
* @virtual
|
|
3583
3631
|
*/
|
|
3584
3632
|
vfunc_interpolate_value(property_name: string, interval: Clutter.Interval, progress: number): [boolean, GObject.Value | any];
|
|
@@ -3587,6 +3635,7 @@ export namespace Meta {
|
|
|
3587
3635
|
* Sets the current state of `property_name` to `value`
|
|
3588
3636
|
* @param property_name the name of the animatable property to set
|
|
3589
3637
|
* @param value the value of the animatable property to set
|
|
3638
|
+
* @since 1.4
|
|
3590
3639
|
* @virtual
|
|
3591
3640
|
*/
|
|
3592
3641
|
vfunc_set_final_state(property_name: string, value: unknown): void;
|
|
@@ -3601,6 +3650,8 @@ export namespace Meta {
|
|
|
3601
3650
|
* deprecated virtual function. The default implementation will
|
|
3602
3651
|
* call `clutter_actor_add_child()`.
|
|
3603
3652
|
* @param actor the first {@link Clutter.Actor} to add
|
|
3653
|
+
* @since 0.4
|
|
3654
|
+
* @deprecated since 1.10: Use `clutter_actor_add_child()` instead.
|
|
3604
3655
|
*/
|
|
3605
3656
|
add_actor(actor: Clutter.Actor): void;
|
|
3606
3657
|
|
|
@@ -3615,6 +3666,7 @@ export namespace Meta {
|
|
|
3615
3666
|
* @param child a {@link Clutter.Actor} that is a child of `container`.
|
|
3616
3667
|
* @param property the name of the property to set.
|
|
3617
3668
|
* @param value the value.
|
|
3669
|
+
* @since 0.8
|
|
3618
3670
|
*/
|
|
3619
3671
|
child_get_property(child: Clutter.Actor, property: string, value: GObject.Value | any): void;
|
|
3620
3672
|
|
|
@@ -3624,6 +3676,7 @@ export namespace Meta {
|
|
|
3624
3676
|
* {@link Clutter.Container.SignalSignatures.child_notify | Clutter.Container::child-notify} signal.
|
|
3625
3677
|
* @param child a {@link Clutter.Actor}
|
|
3626
3678
|
* @param pspec a {@link GObject.ParamSpec}
|
|
3679
|
+
* @since 1.6
|
|
3627
3680
|
*/
|
|
3628
3681
|
child_notify(child: Clutter.Actor, pspec: GObject.ParamSpec): void;
|
|
3629
3682
|
|
|
@@ -3632,6 +3685,7 @@ export namespace Meta {
|
|
|
3632
3685
|
* @param child a {@link Clutter.Actor} that is a child of `container`.
|
|
3633
3686
|
* @param property the name of the property to set.
|
|
3634
3687
|
* @param value the value.
|
|
3688
|
+
* @since 0.8
|
|
3635
3689
|
*/
|
|
3636
3690
|
child_set_property(child: Clutter.Actor, property: string, value: GObject.Value | any): void;
|
|
3637
3691
|
|
|
@@ -3646,6 +3700,7 @@ export namespace Meta {
|
|
|
3646
3700
|
*
|
|
3647
3701
|
* Applications should not call this function.
|
|
3648
3702
|
* @param actor a {@link Clutter.Actor}
|
|
3703
|
+
* @since 1.2
|
|
3649
3704
|
*/
|
|
3650
3705
|
create_child_meta(actor: Clutter.Actor): void;
|
|
3651
3706
|
|
|
@@ -3659,6 +3714,7 @@ export namespace Meta {
|
|
|
3659
3714
|
*
|
|
3660
3715
|
* Applications should not call this function.
|
|
3661
3716
|
* @param actor a {@link Clutter.Actor}
|
|
3717
|
+
* @since 1.2
|
|
3662
3718
|
*/
|
|
3663
3719
|
destroy_child_meta(actor: Clutter.Actor): void;
|
|
3664
3720
|
|
|
@@ -3667,6 +3723,7 @@ export namespace Meta {
|
|
|
3667
3723
|
* into any child container.
|
|
3668
3724
|
* @param child_name the name of the requested child.
|
|
3669
3725
|
* @returns The child actor with the requested name, or `null` if no actor with that name was found.
|
|
3726
|
+
* @since 0.6
|
|
3670
3727
|
*/
|
|
3671
3728
|
find_child_by_name(child_name: string): Clutter.Actor;
|
|
3672
3729
|
|
|
@@ -3675,6 +3732,7 @@ export namespace Meta {
|
|
|
3675
3732
|
* `container` specific state for `actor`.
|
|
3676
3733
|
* @param actor a {@link Clutter.Actor} that is a child of `container`.
|
|
3677
3734
|
* @returns the {@link Clutter.ChildMeta} for the `actor` child of `container` or `null` if the specifiec actor does not exist or the container is not configured to provide {@link Clutter.ChildMeta}<!-- -->s
|
|
3735
|
+
* @since 0.8
|
|
3678
3736
|
*/
|
|
3679
3737
|
get_child_meta(actor: Clutter.Actor): Clutter.ChildMeta;
|
|
3680
3738
|
|
|
@@ -3688,6 +3746,8 @@ export namespace Meta {
|
|
|
3688
3746
|
* deprecated virtual function. The default implementation will call
|
|
3689
3747
|
* `clutter_actor_remove_child()`.
|
|
3690
3748
|
* @param actor a {@link Clutter.Actor}
|
|
3749
|
+
* @since 0.4
|
|
3750
|
+
* @deprecated since 1.10: Use `clutter_actor_remove_child()` instead.
|
|
3691
3751
|
*/
|
|
3692
3752
|
remove_actor(actor: Clutter.Actor): void;
|
|
3693
3753
|
|
|
@@ -3713,6 +3773,8 @@ export namespace Meta {
|
|
|
3713
3773
|
* deprecated virtual function. The default implementation will
|
|
3714
3774
|
* call `clutter_actor_add_child()`.
|
|
3715
3775
|
* @param actor the first {@link Clutter.Actor} to add
|
|
3776
|
+
* @since 0.4
|
|
3777
|
+
* @deprecated since 1.10: Use `clutter_actor_add_child()` instead.
|
|
3716
3778
|
* @virtual
|
|
3717
3779
|
*/
|
|
3718
3780
|
vfunc_add(actor: Clutter.Actor): void;
|
|
@@ -3723,6 +3785,7 @@ export namespace Meta {
|
|
|
3723
3785
|
* {@link Clutter.Container.SignalSignatures.child_notify | Clutter.Container::child-notify} signal.
|
|
3724
3786
|
* @param child a {@link Clutter.Actor}
|
|
3725
3787
|
* @param pspec a {@link GObject.ParamSpec}
|
|
3788
|
+
* @since 1.6
|
|
3726
3789
|
* @virtual
|
|
3727
3790
|
*/
|
|
3728
3791
|
vfunc_child_notify(child: Clutter.Actor, pspec: GObject.ParamSpec): void;
|
|
@@ -3738,6 +3801,7 @@ export namespace Meta {
|
|
|
3738
3801
|
*
|
|
3739
3802
|
* Applications should not call this function.
|
|
3740
3803
|
* @param actor a {@link Clutter.Actor}
|
|
3804
|
+
* @since 1.2
|
|
3741
3805
|
* @virtual
|
|
3742
3806
|
*/
|
|
3743
3807
|
vfunc_create_child_meta(actor: Clutter.Actor): void;
|
|
@@ -3752,6 +3816,7 @@ export namespace Meta {
|
|
|
3752
3816
|
*
|
|
3753
3817
|
* Applications should not call this function.
|
|
3754
3818
|
* @param actor a {@link Clutter.Actor}
|
|
3819
|
+
* @since 1.2
|
|
3755
3820
|
* @virtual
|
|
3756
3821
|
*/
|
|
3757
3822
|
vfunc_destroy_child_meta(actor: Clutter.Actor): void;
|
|
@@ -3760,6 +3825,7 @@ export namespace Meta {
|
|
|
3760
3825
|
* Retrieves the {@link Clutter.ChildMeta} which contains the data about the
|
|
3761
3826
|
* `container` specific state for `actor`.
|
|
3762
3827
|
* @param actor a {@link Clutter.Actor} that is a child of `container`.
|
|
3828
|
+
* @since 0.8
|
|
3763
3829
|
* @virtual
|
|
3764
3830
|
*/
|
|
3765
3831
|
vfunc_get_child_meta(actor: Clutter.Actor): Clutter.ChildMeta;
|
|
@@ -3774,6 +3840,8 @@ export namespace Meta {
|
|
|
3774
3840
|
* deprecated virtual function. The default implementation will call
|
|
3775
3841
|
* `clutter_actor_remove_child()`.
|
|
3776
3842
|
* @param actor a {@link Clutter.Actor}
|
|
3843
|
+
* @since 0.4
|
|
3844
|
+
* @deprecated since 1.10: Use `clutter_actor_remove_child()` instead.
|
|
3777
3845
|
* @virtual
|
|
3778
3846
|
*/
|
|
3779
3847
|
vfunc_remove(actor: Clutter.Actor): void;
|
|
@@ -3781,6 +3849,7 @@ export namespace Meta {
|
|
|
3781
3849
|
/**
|
|
3782
3850
|
* Retrieves the id of `scriptable` set using `clutter_scriptable_set_id()`.
|
|
3783
3851
|
* @returns the id of the object. The returned string is owned by the scriptable object and should never be modified of freed
|
|
3852
|
+
* @since 0.6
|
|
3784
3853
|
*/
|
|
3785
3854
|
get_id(): string;
|
|
3786
3855
|
|
|
@@ -3792,6 +3861,7 @@ export namespace Meta {
|
|
|
3792
3861
|
* @param name the name of the node
|
|
3793
3862
|
* @param node the JSON node to be parsed
|
|
3794
3863
|
* @returns `true` if the node was successfully parsed, `false` otherwise.
|
|
3864
|
+
* @since 0.6
|
|
3795
3865
|
*/
|
|
3796
3866
|
parse_custom_node(script: Clutter.Script, value: GObject.Value | any, name: string, node: Json.Node): boolean;
|
|
3797
3867
|
|
|
@@ -3801,6 +3871,7 @@ export namespace Meta {
|
|
|
3801
3871
|
* @param script the {@link Clutter.Script} creating the scriptable instance
|
|
3802
3872
|
* @param name the name of the property
|
|
3803
3873
|
* @param value the value of the property
|
|
3874
|
+
* @since 0.6
|
|
3804
3875
|
*/
|
|
3805
3876
|
set_custom_property(script: Clutter.Script, name: string, value: GObject.Value | any): void;
|
|
3806
3877
|
|
|
@@ -3812,11 +3883,13 @@ export namespace Meta {
|
|
|
3812
3883
|
* define a unique name for an object constructable using the UI
|
|
3813
3884
|
* definition language parsed by {@link Clutter.Script}.
|
|
3814
3885
|
* @param id_ the {@link Clutter.Script} id of the object
|
|
3886
|
+
* @since 0.6
|
|
3815
3887
|
*/
|
|
3816
3888
|
set_id(id_: string): void;
|
|
3817
3889
|
|
|
3818
3890
|
/**
|
|
3819
3891
|
* Retrieves the id of `scriptable` set using `clutter_scriptable_set_id()`.
|
|
3892
|
+
* @since 0.6
|
|
3820
3893
|
* @virtual
|
|
3821
3894
|
*/
|
|
3822
3895
|
vfunc_get_id(): string;
|
|
@@ -3828,6 +3901,7 @@ export namespace Meta {
|
|
|
3828
3901
|
* @param value the generic value to be set
|
|
3829
3902
|
* @param name the name of the node
|
|
3830
3903
|
* @param node the JSON node to be parsed
|
|
3904
|
+
* @since 0.6
|
|
3831
3905
|
* @virtual
|
|
3832
3906
|
*/
|
|
3833
3907
|
vfunc_parse_custom_node(script: Clutter.Script, value: unknown, name: string, node: Json.Node): boolean;
|
|
@@ -3838,6 +3912,7 @@ export namespace Meta {
|
|
|
3838
3912
|
* @param script the {@link Clutter.Script} creating the scriptable instance
|
|
3839
3913
|
* @param name the name of the property
|
|
3840
3914
|
* @param value the value of the property
|
|
3915
|
+
* @since 0.6
|
|
3841
3916
|
* @virtual
|
|
3842
3917
|
*/
|
|
3843
3918
|
vfunc_set_custom_property(script: Clutter.Script, name: string, value: unknown): void;
|
|
@@ -3850,6 +3925,7 @@ export namespace Meta {
|
|
|
3850
3925
|
* define a unique name for an object constructable using the UI
|
|
3851
3926
|
* definition language parsed by {@link Clutter.Script}.
|
|
3852
3927
|
* @param id_ the {@link Clutter.Script} id of the object
|
|
3928
|
+
* @since 0.6
|
|
3853
3929
|
* @virtual
|
|
3854
3930
|
*/
|
|
3855
3931
|
vfunc_set_id(id_: string): void;
|
|
@@ -6085,6 +6161,7 @@ export namespace Meta {
|
|
|
6085
6161
|
* would have regardless of the allocation of the actor that is painting it,
|
|
6086
6162
|
* for instance the size of an image data.
|
|
6087
6163
|
* @returns `true` if the content has a preferred size, and `false` otherwise
|
|
6164
|
+
* @since 1.10
|
|
6088
6165
|
*/
|
|
6089
6166
|
get_preferred_size(): [boolean, number, number];
|
|
6090
6167
|
|
|
@@ -6094,6 +6171,7 @@ export namespace Meta {
|
|
|
6094
6171
|
* This function should be called by {@link Clutter.Content} implementations when
|
|
6095
6172
|
* they change the way a the content should be painted regardless of the
|
|
6096
6173
|
* actor state.
|
|
6174
|
+
* @since 1.10
|
|
6097
6175
|
*/
|
|
6098
6176
|
invalidate(): void;
|
|
6099
6177
|
|
|
@@ -6124,6 +6202,7 @@ export namespace Meta {
|
|
|
6124
6202
|
* The natural size of a {@link Clutter.Content} is defined as the size the content
|
|
6125
6203
|
* would have regardless of the allocation of the actor that is painting it,
|
|
6126
6204
|
* for instance the size of an image data.
|
|
6205
|
+
* @since 1.10
|
|
6127
6206
|
* @virtual
|
|
6128
6207
|
*/
|
|
6129
6208
|
vfunc_get_preferred_size(): [boolean, number, number];
|
|
@@ -6134,6 +6213,7 @@ export namespace Meta {
|
|
|
6134
6213
|
* This function should be called by {@link Clutter.Content} implementations when
|
|
6135
6214
|
* they change the way a the content should be painted regardless of the
|
|
6136
6215
|
* actor state.
|
|
6216
|
+
* @since 1.10
|
|
6137
6217
|
* @virtual
|
|
6138
6218
|
*/
|
|
6139
6219
|
vfunc_invalidate(): void;
|
|
@@ -7784,6 +7864,7 @@ export namespace Meta {
|
|
|
7784
7864
|
* Finds the {@link GObject.ParamSpec} for `property_name`
|
|
7785
7865
|
* @param property_name the name of the animatable property to find
|
|
7786
7866
|
* @returns The {@link GObject.ParamSpec} for the given property or `null`
|
|
7867
|
+
* @since 1.4
|
|
7787
7868
|
*/
|
|
7788
7869
|
find_property(property_name: string): GObject.ParamSpec;
|
|
7789
7870
|
|
|
@@ -7797,6 +7878,7 @@ export namespace Meta {
|
|
|
7797
7878
|
* Retrieves the current state of `property_name` and sets `value` with it
|
|
7798
7879
|
* @param property_name the name of the animatable property to retrieve
|
|
7799
7880
|
* @param value a {@link GObject.Value} initialized to the type of the property to retrieve
|
|
7881
|
+
* @since 1.4
|
|
7800
7882
|
*/
|
|
7801
7883
|
get_initial_state(property_name: string, value: GObject.Value | any): void;
|
|
7802
7884
|
|
|
@@ -7814,6 +7896,7 @@ export namespace Meta {
|
|
|
7814
7896
|
* @param interval a {@link Clutter.Interval} with the animation range
|
|
7815
7897
|
* @param progress the progress to use to interpolate between the initial and final values of the `interval`
|
|
7816
7898
|
* @returns `true` if the interpolation was successful, and `false` otherwise
|
|
7899
|
+
* @since 1.8
|
|
7817
7900
|
*/
|
|
7818
7901
|
interpolate_value(property_name: string, interval: Clutter.Interval, progress: number): [boolean, unknown];
|
|
7819
7902
|
|
|
@@ -7821,12 +7904,14 @@ export namespace Meta {
|
|
|
7821
7904
|
* Sets the current state of `property_name` to `value`
|
|
7822
7905
|
* @param property_name the name of the animatable property to set
|
|
7823
7906
|
* @param value the value of the animatable property to set
|
|
7907
|
+
* @since 1.4
|
|
7824
7908
|
*/
|
|
7825
7909
|
set_final_state(property_name: string, value: GObject.Value | any): void;
|
|
7826
7910
|
|
|
7827
7911
|
/**
|
|
7828
7912
|
* Finds the {@link GObject.ParamSpec} for `property_name`
|
|
7829
7913
|
* @param property_name the name of the animatable property to find
|
|
7914
|
+
* @since 1.4
|
|
7830
7915
|
* @virtual
|
|
7831
7916
|
*/
|
|
7832
7917
|
vfunc_find_property(property_name: string): GObject.ParamSpec;
|
|
@@ -7841,6 +7926,7 @@ export namespace Meta {
|
|
|
7841
7926
|
* Retrieves the current state of `property_name` and sets `value` with it
|
|
7842
7927
|
* @param property_name the name of the animatable property to retrieve
|
|
7843
7928
|
* @param value a {@link GObject.Value} initialized to the type of the property to retrieve
|
|
7929
|
+
* @since 1.4
|
|
7844
7930
|
* @virtual
|
|
7845
7931
|
*/
|
|
7846
7932
|
vfunc_get_initial_state(property_name: string, value: unknown): void;
|
|
@@ -7858,6 +7944,7 @@ export namespace Meta {
|
|
|
7858
7944
|
* @param property_name the name of the property to interpolate
|
|
7859
7945
|
* @param interval a {@link Clutter.Interval} with the animation range
|
|
7860
7946
|
* @param progress the progress to use to interpolate between the initial and final values of the `interval`
|
|
7947
|
+
* @since 1.8
|
|
7861
7948
|
* @virtual
|
|
7862
7949
|
*/
|
|
7863
7950
|
vfunc_interpolate_value(property_name: string, interval: Clutter.Interval, progress: number): [boolean, GObject.Value | any];
|
|
@@ -7866,6 +7953,7 @@ export namespace Meta {
|
|
|
7866
7953
|
* Sets the current state of `property_name` to `value`
|
|
7867
7954
|
* @param property_name the name of the animatable property to set
|
|
7868
7955
|
* @param value the value of the animatable property to set
|
|
7956
|
+
* @since 1.4
|
|
7869
7957
|
* @virtual
|
|
7870
7958
|
*/
|
|
7871
7959
|
vfunc_set_final_state(property_name: string, value: unknown): void;
|
|
@@ -7880,6 +7968,8 @@ export namespace Meta {
|
|
|
7880
7968
|
* deprecated virtual function. The default implementation will
|
|
7881
7969
|
* call `clutter_actor_add_child()`.
|
|
7882
7970
|
* @param actor the first {@link Clutter.Actor} to add
|
|
7971
|
+
* @since 0.4
|
|
7972
|
+
* @deprecated since 1.10: Use `clutter_actor_add_child()` instead.
|
|
7883
7973
|
*/
|
|
7884
7974
|
add_actor(actor: Clutter.Actor): void;
|
|
7885
7975
|
|
|
@@ -7894,6 +7984,7 @@ export namespace Meta {
|
|
|
7894
7984
|
* @param child a {@link Clutter.Actor} that is a child of `container`.
|
|
7895
7985
|
* @param property the name of the property to set.
|
|
7896
7986
|
* @param value the value.
|
|
7987
|
+
* @since 0.8
|
|
7897
7988
|
*/
|
|
7898
7989
|
child_get_property(child: Clutter.Actor, property: string, value: GObject.Value | any): void;
|
|
7899
7990
|
|
|
@@ -7903,6 +7994,7 @@ export namespace Meta {
|
|
|
7903
7994
|
* {@link Clutter.Container.SignalSignatures.child_notify | Clutter.Container::child-notify} signal.
|
|
7904
7995
|
* @param child a {@link Clutter.Actor}
|
|
7905
7996
|
* @param pspec a {@link GObject.ParamSpec}
|
|
7997
|
+
* @since 1.6
|
|
7906
7998
|
*/
|
|
7907
7999
|
child_notify(child: Clutter.Actor, pspec: GObject.ParamSpec): void;
|
|
7908
8000
|
|
|
@@ -7911,6 +8003,7 @@ export namespace Meta {
|
|
|
7911
8003
|
* @param child a {@link Clutter.Actor} that is a child of `container`.
|
|
7912
8004
|
* @param property the name of the property to set.
|
|
7913
8005
|
* @param value the value.
|
|
8006
|
+
* @since 0.8
|
|
7914
8007
|
*/
|
|
7915
8008
|
child_set_property(child: Clutter.Actor, property: string, value: GObject.Value | any): void;
|
|
7916
8009
|
|
|
@@ -7925,6 +8018,7 @@ export namespace Meta {
|
|
|
7925
8018
|
*
|
|
7926
8019
|
* Applications should not call this function.
|
|
7927
8020
|
* @param actor a {@link Clutter.Actor}
|
|
8021
|
+
* @since 1.2
|
|
7928
8022
|
*/
|
|
7929
8023
|
create_child_meta(actor: Clutter.Actor): void;
|
|
7930
8024
|
|
|
@@ -7938,6 +8032,7 @@ export namespace Meta {
|
|
|
7938
8032
|
*
|
|
7939
8033
|
* Applications should not call this function.
|
|
7940
8034
|
* @param actor a {@link Clutter.Actor}
|
|
8035
|
+
* @since 1.2
|
|
7941
8036
|
*/
|
|
7942
8037
|
destroy_child_meta(actor: Clutter.Actor): void;
|
|
7943
8038
|
|
|
@@ -7946,6 +8041,7 @@ export namespace Meta {
|
|
|
7946
8041
|
* into any child container.
|
|
7947
8042
|
* @param child_name the name of the requested child.
|
|
7948
8043
|
* @returns The child actor with the requested name, or `null` if no actor with that name was found.
|
|
8044
|
+
* @since 0.6
|
|
7949
8045
|
*/
|
|
7950
8046
|
find_child_by_name(child_name: string): Clutter.Actor;
|
|
7951
8047
|
|
|
@@ -7954,6 +8050,7 @@ export namespace Meta {
|
|
|
7954
8050
|
* `container` specific state for `actor`.
|
|
7955
8051
|
* @param actor a {@link Clutter.Actor} that is a child of `container`.
|
|
7956
8052
|
* @returns the {@link Clutter.ChildMeta} for the `actor` child of `container` or `null` if the specifiec actor does not exist or the container is not configured to provide {@link Clutter.ChildMeta}<!-- -->s
|
|
8053
|
+
* @since 0.8
|
|
7957
8054
|
*/
|
|
7958
8055
|
get_child_meta(actor: Clutter.Actor): Clutter.ChildMeta;
|
|
7959
8056
|
|
|
@@ -7967,6 +8064,8 @@ export namespace Meta {
|
|
|
7967
8064
|
* deprecated virtual function. The default implementation will call
|
|
7968
8065
|
* `clutter_actor_remove_child()`.
|
|
7969
8066
|
* @param actor a {@link Clutter.Actor}
|
|
8067
|
+
* @since 0.4
|
|
8068
|
+
* @deprecated since 1.10: Use `clutter_actor_remove_child()` instead.
|
|
7970
8069
|
*/
|
|
7971
8070
|
remove_actor(actor: Clutter.Actor): void;
|
|
7972
8071
|
|
|
@@ -7992,6 +8091,8 @@ export namespace Meta {
|
|
|
7992
8091
|
* deprecated virtual function. The default implementation will
|
|
7993
8092
|
* call `clutter_actor_add_child()`.
|
|
7994
8093
|
* @param actor the first {@link Clutter.Actor} to add
|
|
8094
|
+
* @since 0.4
|
|
8095
|
+
* @deprecated since 1.10: Use `clutter_actor_add_child()` instead.
|
|
7995
8096
|
* @virtual
|
|
7996
8097
|
*/
|
|
7997
8098
|
vfunc_add(actor: Clutter.Actor): void;
|
|
@@ -8002,6 +8103,7 @@ export namespace Meta {
|
|
|
8002
8103
|
* {@link Clutter.Container.SignalSignatures.child_notify | Clutter.Container::child-notify} signal.
|
|
8003
8104
|
* @param child a {@link Clutter.Actor}
|
|
8004
8105
|
* @param pspec a {@link GObject.ParamSpec}
|
|
8106
|
+
* @since 1.6
|
|
8005
8107
|
* @virtual
|
|
8006
8108
|
*/
|
|
8007
8109
|
vfunc_child_notify(child: Clutter.Actor, pspec: GObject.ParamSpec): void;
|
|
@@ -8017,6 +8119,7 @@ export namespace Meta {
|
|
|
8017
8119
|
*
|
|
8018
8120
|
* Applications should not call this function.
|
|
8019
8121
|
* @param actor a {@link Clutter.Actor}
|
|
8122
|
+
* @since 1.2
|
|
8020
8123
|
* @virtual
|
|
8021
8124
|
*/
|
|
8022
8125
|
vfunc_create_child_meta(actor: Clutter.Actor): void;
|
|
@@ -8031,6 +8134,7 @@ export namespace Meta {
|
|
|
8031
8134
|
*
|
|
8032
8135
|
* Applications should not call this function.
|
|
8033
8136
|
* @param actor a {@link Clutter.Actor}
|
|
8137
|
+
* @since 1.2
|
|
8034
8138
|
* @virtual
|
|
8035
8139
|
*/
|
|
8036
8140
|
vfunc_destroy_child_meta(actor: Clutter.Actor): void;
|
|
@@ -8039,6 +8143,7 @@ export namespace Meta {
|
|
|
8039
8143
|
* Retrieves the {@link Clutter.ChildMeta} which contains the data about the
|
|
8040
8144
|
* `container` specific state for `actor`.
|
|
8041
8145
|
* @param actor a {@link Clutter.Actor} that is a child of `container`.
|
|
8146
|
+
* @since 0.8
|
|
8042
8147
|
* @virtual
|
|
8043
8148
|
*/
|
|
8044
8149
|
vfunc_get_child_meta(actor: Clutter.Actor): Clutter.ChildMeta;
|
|
@@ -8053,6 +8158,8 @@ export namespace Meta {
|
|
|
8053
8158
|
* deprecated virtual function. The default implementation will call
|
|
8054
8159
|
* `clutter_actor_remove_child()`.
|
|
8055
8160
|
* @param actor a {@link Clutter.Actor}
|
|
8161
|
+
* @since 0.4
|
|
8162
|
+
* @deprecated since 1.10: Use `clutter_actor_remove_child()` instead.
|
|
8056
8163
|
* @virtual
|
|
8057
8164
|
*/
|
|
8058
8165
|
vfunc_remove(actor: Clutter.Actor): void;
|
|
@@ -8060,6 +8167,7 @@ export namespace Meta {
|
|
|
8060
8167
|
/**
|
|
8061
8168
|
* Retrieves the id of `scriptable` set using `clutter_scriptable_set_id()`.
|
|
8062
8169
|
* @returns the id of the object. The returned string is owned by the scriptable object and should never be modified of freed
|
|
8170
|
+
* @since 0.6
|
|
8063
8171
|
*/
|
|
8064
8172
|
get_id(): string;
|
|
8065
8173
|
|
|
@@ -8071,6 +8179,7 @@ export namespace Meta {
|
|
|
8071
8179
|
* @param name the name of the node
|
|
8072
8180
|
* @param node the JSON node to be parsed
|
|
8073
8181
|
* @returns `true` if the node was successfully parsed, `false` otherwise.
|
|
8182
|
+
* @since 0.6
|
|
8074
8183
|
*/
|
|
8075
8184
|
parse_custom_node(script: Clutter.Script, value: GObject.Value | any, name: string, node: Json.Node): boolean;
|
|
8076
8185
|
|
|
@@ -8080,6 +8189,7 @@ export namespace Meta {
|
|
|
8080
8189
|
* @param script the {@link Clutter.Script} creating the scriptable instance
|
|
8081
8190
|
* @param name the name of the property
|
|
8082
8191
|
* @param value the value of the property
|
|
8192
|
+
* @since 0.6
|
|
8083
8193
|
*/
|
|
8084
8194
|
set_custom_property(script: Clutter.Script, name: string, value: GObject.Value | any): void;
|
|
8085
8195
|
|
|
@@ -8091,11 +8201,13 @@ export namespace Meta {
|
|
|
8091
8201
|
* define a unique name for an object constructable using the UI
|
|
8092
8202
|
* definition language parsed by {@link Clutter.Script}.
|
|
8093
8203
|
* @param id_ the {@link Clutter.Script} id of the object
|
|
8204
|
+
* @since 0.6
|
|
8094
8205
|
*/
|
|
8095
8206
|
set_id(id_: string): void;
|
|
8096
8207
|
|
|
8097
8208
|
/**
|
|
8098
8209
|
* Retrieves the id of `scriptable` set using `clutter_scriptable_set_id()`.
|
|
8210
|
+
* @since 0.6
|
|
8099
8211
|
* @virtual
|
|
8100
8212
|
*/
|
|
8101
8213
|
vfunc_get_id(): string;
|
|
@@ -8107,6 +8219,7 @@ export namespace Meta {
|
|
|
8107
8219
|
* @param value the generic value to be set
|
|
8108
8220
|
* @param name the name of the node
|
|
8109
8221
|
* @param node the JSON node to be parsed
|
|
8222
|
+
* @since 0.6
|
|
8110
8223
|
* @virtual
|
|
8111
8224
|
*/
|
|
8112
8225
|
vfunc_parse_custom_node(script: Clutter.Script, value: unknown, name: string, node: Json.Node): boolean;
|
|
@@ -8117,6 +8230,7 @@ export namespace Meta {
|
|
|
8117
8230
|
* @param script the {@link Clutter.Script} creating the scriptable instance
|
|
8118
8231
|
* @param name the name of the property
|
|
8119
8232
|
* @param value the value of the property
|
|
8233
|
+
* @since 0.6
|
|
8120
8234
|
* @virtual
|
|
8121
8235
|
*/
|
|
8122
8236
|
vfunc_set_custom_property(script: Clutter.Script, name: string, value: unknown): void;
|
|
@@ -8129,6 +8243,7 @@ export namespace Meta {
|
|
|
8129
8243
|
* define a unique name for an object constructable using the UI
|
|
8130
8244
|
* definition language parsed by {@link Clutter.Script}.
|
|
8131
8245
|
* @param id_ the {@link Clutter.Script} id of the object
|
|
8246
|
+
* @since 0.6
|
|
8132
8247
|
* @virtual
|
|
8133
8248
|
*/
|
|
8134
8249
|
vfunc_set_id(id_: string): void;
|
|
@@ -8251,6 +8366,7 @@ export namespace Meta {
|
|
|
8251
8366
|
* Finds the {@link GObject.ParamSpec} for `property_name`
|
|
8252
8367
|
* @param property_name the name of the animatable property to find
|
|
8253
8368
|
* @returns The {@link GObject.ParamSpec} for the given property or `null`
|
|
8369
|
+
* @since 1.4
|
|
8254
8370
|
*/
|
|
8255
8371
|
find_property(property_name: string): GObject.ParamSpec;
|
|
8256
8372
|
|
|
@@ -8264,6 +8380,7 @@ export namespace Meta {
|
|
|
8264
8380
|
* Retrieves the current state of `property_name` and sets `value` with it
|
|
8265
8381
|
* @param property_name the name of the animatable property to retrieve
|
|
8266
8382
|
* @param value a {@link GObject.Value} initialized to the type of the property to retrieve
|
|
8383
|
+
* @since 1.4
|
|
8267
8384
|
*/
|
|
8268
8385
|
get_initial_state(property_name: string, value: GObject.Value | any): void;
|
|
8269
8386
|
|
|
@@ -8281,6 +8398,7 @@ export namespace Meta {
|
|
|
8281
8398
|
* @param interval a {@link Clutter.Interval} with the animation range
|
|
8282
8399
|
* @param progress the progress to use to interpolate between the initial and final values of the `interval`
|
|
8283
8400
|
* @returns `true` if the interpolation was successful, and `false` otherwise
|
|
8401
|
+
* @since 1.8
|
|
8284
8402
|
*/
|
|
8285
8403
|
interpolate_value(property_name: string, interval: Clutter.Interval, progress: number): [boolean, unknown];
|
|
8286
8404
|
|
|
@@ -8288,12 +8406,14 @@ export namespace Meta {
|
|
|
8288
8406
|
* Sets the current state of `property_name` to `value`
|
|
8289
8407
|
* @param property_name the name of the animatable property to set
|
|
8290
8408
|
* @param value the value of the animatable property to set
|
|
8409
|
+
* @since 1.4
|
|
8291
8410
|
*/
|
|
8292
8411
|
set_final_state(property_name: string, value: GObject.Value | any): void;
|
|
8293
8412
|
|
|
8294
8413
|
/**
|
|
8295
8414
|
* Finds the {@link GObject.ParamSpec} for `property_name`
|
|
8296
8415
|
* @param property_name the name of the animatable property to find
|
|
8416
|
+
* @since 1.4
|
|
8297
8417
|
* @virtual
|
|
8298
8418
|
*/
|
|
8299
8419
|
vfunc_find_property(property_name: string): GObject.ParamSpec;
|
|
@@ -8308,6 +8428,7 @@ export namespace Meta {
|
|
|
8308
8428
|
* Retrieves the current state of `property_name` and sets `value` with it
|
|
8309
8429
|
* @param property_name the name of the animatable property to retrieve
|
|
8310
8430
|
* @param value a {@link GObject.Value} initialized to the type of the property to retrieve
|
|
8431
|
+
* @since 1.4
|
|
8311
8432
|
* @virtual
|
|
8312
8433
|
*/
|
|
8313
8434
|
vfunc_get_initial_state(property_name: string, value: unknown): void;
|
|
@@ -8325,6 +8446,7 @@ export namespace Meta {
|
|
|
8325
8446
|
* @param property_name the name of the property to interpolate
|
|
8326
8447
|
* @param interval a {@link Clutter.Interval} with the animation range
|
|
8327
8448
|
* @param progress the progress to use to interpolate between the initial and final values of the `interval`
|
|
8449
|
+
* @since 1.8
|
|
8328
8450
|
* @virtual
|
|
8329
8451
|
*/
|
|
8330
8452
|
vfunc_interpolate_value(property_name: string, interval: Clutter.Interval, progress: number): [boolean, GObject.Value | any];
|
|
@@ -8333,6 +8455,7 @@ export namespace Meta {
|
|
|
8333
8455
|
* Sets the current state of `property_name` to `value`
|
|
8334
8456
|
* @param property_name the name of the animatable property to set
|
|
8335
8457
|
* @param value the value of the animatable property to set
|
|
8458
|
+
* @since 1.4
|
|
8336
8459
|
* @virtual
|
|
8337
8460
|
*/
|
|
8338
8461
|
vfunc_set_final_state(property_name: string, value: unknown): void;
|
|
@@ -8347,6 +8470,8 @@ export namespace Meta {
|
|
|
8347
8470
|
* deprecated virtual function. The default implementation will
|
|
8348
8471
|
* call `clutter_actor_add_child()`.
|
|
8349
8472
|
* @param actor the first {@link Clutter.Actor} to add
|
|
8473
|
+
* @since 0.4
|
|
8474
|
+
* @deprecated since 1.10: Use `clutter_actor_add_child()` instead.
|
|
8350
8475
|
*/
|
|
8351
8476
|
add_actor(actor: Clutter.Actor): void;
|
|
8352
8477
|
|
|
@@ -8361,6 +8486,7 @@ export namespace Meta {
|
|
|
8361
8486
|
* @param child a {@link Clutter.Actor} that is a child of `container`.
|
|
8362
8487
|
* @param property the name of the property to set.
|
|
8363
8488
|
* @param value the value.
|
|
8489
|
+
* @since 0.8
|
|
8364
8490
|
*/
|
|
8365
8491
|
child_get_property(child: Clutter.Actor, property: string, value: GObject.Value | any): void;
|
|
8366
8492
|
|
|
@@ -8370,6 +8496,7 @@ export namespace Meta {
|
|
|
8370
8496
|
* {@link Clutter.Container.SignalSignatures.child_notify | Clutter.Container::child-notify} signal.
|
|
8371
8497
|
* @param child a {@link Clutter.Actor}
|
|
8372
8498
|
* @param pspec a {@link GObject.ParamSpec}
|
|
8499
|
+
* @since 1.6
|
|
8373
8500
|
*/
|
|
8374
8501
|
child_notify(child: Clutter.Actor, pspec: GObject.ParamSpec): void;
|
|
8375
8502
|
|
|
@@ -8378,6 +8505,7 @@ export namespace Meta {
|
|
|
8378
8505
|
* @param child a {@link Clutter.Actor} that is a child of `container`.
|
|
8379
8506
|
* @param property the name of the property to set.
|
|
8380
8507
|
* @param value the value.
|
|
8508
|
+
* @since 0.8
|
|
8381
8509
|
*/
|
|
8382
8510
|
child_set_property(child: Clutter.Actor, property: string, value: GObject.Value | any): void;
|
|
8383
8511
|
|
|
@@ -8392,6 +8520,7 @@ export namespace Meta {
|
|
|
8392
8520
|
*
|
|
8393
8521
|
* Applications should not call this function.
|
|
8394
8522
|
* @param actor a {@link Clutter.Actor}
|
|
8523
|
+
* @since 1.2
|
|
8395
8524
|
*/
|
|
8396
8525
|
create_child_meta(actor: Clutter.Actor): void;
|
|
8397
8526
|
|
|
@@ -8405,6 +8534,7 @@ export namespace Meta {
|
|
|
8405
8534
|
*
|
|
8406
8535
|
* Applications should not call this function.
|
|
8407
8536
|
* @param actor a {@link Clutter.Actor}
|
|
8537
|
+
* @since 1.2
|
|
8408
8538
|
*/
|
|
8409
8539
|
destroy_child_meta(actor: Clutter.Actor): void;
|
|
8410
8540
|
|
|
@@ -8413,6 +8543,7 @@ export namespace Meta {
|
|
|
8413
8543
|
* into any child container.
|
|
8414
8544
|
* @param child_name the name of the requested child.
|
|
8415
8545
|
* @returns The child actor with the requested name, or `null` if no actor with that name was found.
|
|
8546
|
+
* @since 0.6
|
|
8416
8547
|
*/
|
|
8417
8548
|
find_child_by_name(child_name: string): Clutter.Actor;
|
|
8418
8549
|
|
|
@@ -8421,6 +8552,7 @@ export namespace Meta {
|
|
|
8421
8552
|
* `container` specific state for `actor`.
|
|
8422
8553
|
* @param actor a {@link Clutter.Actor} that is a child of `container`.
|
|
8423
8554
|
* @returns the {@link Clutter.ChildMeta} for the `actor` child of `container` or `null` if the specifiec actor does not exist or the container is not configured to provide {@link Clutter.ChildMeta}<!-- -->s
|
|
8555
|
+
* @since 0.8
|
|
8424
8556
|
*/
|
|
8425
8557
|
get_child_meta(actor: Clutter.Actor): Clutter.ChildMeta;
|
|
8426
8558
|
|
|
@@ -8434,6 +8566,8 @@ export namespace Meta {
|
|
|
8434
8566
|
* deprecated virtual function. The default implementation will call
|
|
8435
8567
|
* `clutter_actor_remove_child()`.
|
|
8436
8568
|
* @param actor a {@link Clutter.Actor}
|
|
8569
|
+
* @since 0.4
|
|
8570
|
+
* @deprecated since 1.10: Use `clutter_actor_remove_child()` instead.
|
|
8437
8571
|
*/
|
|
8438
8572
|
remove_actor(actor: Clutter.Actor): void;
|
|
8439
8573
|
|
|
@@ -8459,6 +8593,8 @@ export namespace Meta {
|
|
|
8459
8593
|
* deprecated virtual function. The default implementation will
|
|
8460
8594
|
* call `clutter_actor_add_child()`.
|
|
8461
8595
|
* @param actor the first {@link Clutter.Actor} to add
|
|
8596
|
+
* @since 0.4
|
|
8597
|
+
* @deprecated since 1.10: Use `clutter_actor_add_child()` instead.
|
|
8462
8598
|
* @virtual
|
|
8463
8599
|
*/
|
|
8464
8600
|
vfunc_add(actor: Clutter.Actor): void;
|
|
@@ -8469,6 +8605,7 @@ export namespace Meta {
|
|
|
8469
8605
|
* {@link Clutter.Container.SignalSignatures.child_notify | Clutter.Container::child-notify} signal.
|
|
8470
8606
|
* @param child a {@link Clutter.Actor}
|
|
8471
8607
|
* @param pspec a {@link GObject.ParamSpec}
|
|
8608
|
+
* @since 1.6
|
|
8472
8609
|
* @virtual
|
|
8473
8610
|
*/
|
|
8474
8611
|
vfunc_child_notify(child: Clutter.Actor, pspec: GObject.ParamSpec): void;
|
|
@@ -8484,6 +8621,7 @@ export namespace Meta {
|
|
|
8484
8621
|
*
|
|
8485
8622
|
* Applications should not call this function.
|
|
8486
8623
|
* @param actor a {@link Clutter.Actor}
|
|
8624
|
+
* @since 1.2
|
|
8487
8625
|
* @virtual
|
|
8488
8626
|
*/
|
|
8489
8627
|
vfunc_create_child_meta(actor: Clutter.Actor): void;
|
|
@@ -8498,6 +8636,7 @@ export namespace Meta {
|
|
|
8498
8636
|
*
|
|
8499
8637
|
* Applications should not call this function.
|
|
8500
8638
|
* @param actor a {@link Clutter.Actor}
|
|
8639
|
+
* @since 1.2
|
|
8501
8640
|
* @virtual
|
|
8502
8641
|
*/
|
|
8503
8642
|
vfunc_destroy_child_meta(actor: Clutter.Actor): void;
|
|
@@ -8506,6 +8645,7 @@ export namespace Meta {
|
|
|
8506
8645
|
* Retrieves the {@link Clutter.ChildMeta} which contains the data about the
|
|
8507
8646
|
* `container` specific state for `actor`.
|
|
8508
8647
|
* @param actor a {@link Clutter.Actor} that is a child of `container`.
|
|
8648
|
+
* @since 0.8
|
|
8509
8649
|
* @virtual
|
|
8510
8650
|
*/
|
|
8511
8651
|
vfunc_get_child_meta(actor: Clutter.Actor): Clutter.ChildMeta;
|
|
@@ -8520,6 +8660,8 @@ export namespace Meta {
|
|
|
8520
8660
|
* deprecated virtual function. The default implementation will call
|
|
8521
8661
|
* `clutter_actor_remove_child()`.
|
|
8522
8662
|
* @param actor a {@link Clutter.Actor}
|
|
8663
|
+
* @since 0.4
|
|
8664
|
+
* @deprecated since 1.10: Use `clutter_actor_remove_child()` instead.
|
|
8523
8665
|
* @virtual
|
|
8524
8666
|
*/
|
|
8525
8667
|
vfunc_remove(actor: Clutter.Actor): void;
|
|
@@ -8527,6 +8669,7 @@ export namespace Meta {
|
|
|
8527
8669
|
/**
|
|
8528
8670
|
* Retrieves the id of `scriptable` set using `clutter_scriptable_set_id()`.
|
|
8529
8671
|
* @returns the id of the object. The returned string is owned by the scriptable object and should never be modified of freed
|
|
8672
|
+
* @since 0.6
|
|
8530
8673
|
*/
|
|
8531
8674
|
get_id(): string;
|
|
8532
8675
|
|
|
@@ -8538,6 +8681,7 @@ export namespace Meta {
|
|
|
8538
8681
|
* @param name the name of the node
|
|
8539
8682
|
* @param node the JSON node to be parsed
|
|
8540
8683
|
* @returns `true` if the node was successfully parsed, `false` otherwise.
|
|
8684
|
+
* @since 0.6
|
|
8541
8685
|
*/
|
|
8542
8686
|
parse_custom_node(script: Clutter.Script, value: GObject.Value | any, name: string, node: Json.Node): boolean;
|
|
8543
8687
|
|
|
@@ -8547,6 +8691,7 @@ export namespace Meta {
|
|
|
8547
8691
|
* @param script the {@link Clutter.Script} creating the scriptable instance
|
|
8548
8692
|
* @param name the name of the property
|
|
8549
8693
|
* @param value the value of the property
|
|
8694
|
+
* @since 0.6
|
|
8550
8695
|
*/
|
|
8551
8696
|
set_custom_property(script: Clutter.Script, name: string, value: GObject.Value | any): void;
|
|
8552
8697
|
|
|
@@ -8558,11 +8703,13 @@ export namespace Meta {
|
|
|
8558
8703
|
* define a unique name for an object constructable using the UI
|
|
8559
8704
|
* definition language parsed by {@link Clutter.Script}.
|
|
8560
8705
|
* @param id_ the {@link Clutter.Script} id of the object
|
|
8706
|
+
* @since 0.6
|
|
8561
8707
|
*/
|
|
8562
8708
|
set_id(id_: string): void;
|
|
8563
8709
|
|
|
8564
8710
|
/**
|
|
8565
8711
|
* Retrieves the id of `scriptable` set using `clutter_scriptable_set_id()`.
|
|
8712
|
+
* @since 0.6
|
|
8566
8713
|
* @virtual
|
|
8567
8714
|
*/
|
|
8568
8715
|
vfunc_get_id(): string;
|
|
@@ -8574,6 +8721,7 @@ export namespace Meta {
|
|
|
8574
8721
|
* @param value the generic value to be set
|
|
8575
8722
|
* @param name the name of the node
|
|
8576
8723
|
* @param node the JSON node to be parsed
|
|
8724
|
+
* @since 0.6
|
|
8577
8725
|
* @virtual
|
|
8578
8726
|
*/
|
|
8579
8727
|
vfunc_parse_custom_node(script: Clutter.Script, value: unknown, name: string, node: Json.Node): boolean;
|
|
@@ -8584,6 +8732,7 @@ export namespace Meta {
|
|
|
8584
8732
|
* @param script the {@link Clutter.Script} creating the scriptable instance
|
|
8585
8733
|
* @param name the name of the property
|
|
8586
8734
|
* @param value the value of the property
|
|
8735
|
+
* @since 0.6
|
|
8587
8736
|
* @virtual
|
|
8588
8737
|
*/
|
|
8589
8738
|
vfunc_set_custom_property(script: Clutter.Script, name: string, value: unknown): void;
|
|
@@ -8596,6 +8745,7 @@ export namespace Meta {
|
|
|
8596
8745
|
* define a unique name for an object constructable using the UI
|
|
8597
8746
|
* definition language parsed by {@link Clutter.Script}.
|
|
8598
8747
|
* @param id_ the {@link Clutter.Script} id of the object
|
|
8748
|
+
* @since 0.6
|
|
8599
8749
|
* @virtual
|
|
8600
8750
|
*/
|
|
8601
8751
|
vfunc_set_id(id_: string): void;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@girs/meta-10",
|
|
3
|
-
"version": "4.
|
|
3
|
+
"version": "4.4.0",
|
|
4
4
|
"description": "GJS TypeScript type definitions for Meta-10",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"module": "meta-10.js",
|
|
@@ -31,29 +31,29 @@
|
|
|
31
31
|
"test": "tsc --project tsconfig.json"
|
|
32
32
|
},
|
|
33
33
|
"dependencies": {
|
|
34
|
-
"@girs/gjs": "^4.
|
|
35
|
-
"@girs/xlib-2.0": "^4.
|
|
36
|
-
"@girs/xfixes-4.0": "^4.
|
|
37
|
-
"@girs/gtk-3.0": "^4.
|
|
38
|
-
"@girs/gdk-3.0": "^4.
|
|
39
|
-
"@girs/cairo-1.0": "^4.
|
|
40
|
-
"@girs/gobject-2.0": "^4.
|
|
41
|
-
"@girs/glib-2.0": "^4.
|
|
42
|
-
"@girs/pango-1.0": "^4.
|
|
43
|
-
"@girs/harfbuzz-0.0": "^4.
|
|
44
|
-
"@girs/freetype2-2.0": "^4.
|
|
45
|
-
"@girs/gio-2.0": "^4.
|
|
46
|
-
"@girs/gmodule-2.0": "^4.
|
|
47
|
-
"@girs/gdkpixbuf-2.0": "^4.
|
|
48
|
-
"@girs/atk-1.0": "^4.
|
|
49
|
-
"@girs/gdesktopenums-3.0": "^4.
|
|
50
|
-
"@girs/coglpango-10": "^4.
|
|
51
|
-
"@girs/pangocairo-1.0": "^4.
|
|
52
|
-
"@girs/cogl-10": "^4.
|
|
53
|
-
"@girs/graphene-1.0": "^4.
|
|
54
|
-
"@girs/gl-1.0": "^4.
|
|
55
|
-
"@girs/clutter-10": "^4.
|
|
56
|
-
"@girs/json-1.0": "^4.
|
|
34
|
+
"@girs/gjs": "^4.4.0",
|
|
35
|
+
"@girs/xlib-2.0": "^4.4.0",
|
|
36
|
+
"@girs/xfixes-4.0": "^4.4.0",
|
|
37
|
+
"@girs/gtk-3.0": "^4.4.0",
|
|
38
|
+
"@girs/gdk-3.0": "^4.4.0",
|
|
39
|
+
"@girs/cairo-1.0": "^4.4.0",
|
|
40
|
+
"@girs/gobject-2.0": "^4.4.0",
|
|
41
|
+
"@girs/glib-2.0": "^4.4.0",
|
|
42
|
+
"@girs/pango-1.0": "^4.4.0",
|
|
43
|
+
"@girs/harfbuzz-0.0": "^4.4.0",
|
|
44
|
+
"@girs/freetype2-2.0": "^4.4.0",
|
|
45
|
+
"@girs/gio-2.0": "^4.4.0",
|
|
46
|
+
"@girs/gmodule-2.0": "^4.4.0",
|
|
47
|
+
"@girs/gdkpixbuf-2.0": "^4.4.0",
|
|
48
|
+
"@girs/atk-1.0": "^4.4.0",
|
|
49
|
+
"@girs/gdesktopenums-3.0": "^4.4.0",
|
|
50
|
+
"@girs/coglpango-10": "^4.4.0",
|
|
51
|
+
"@girs/pangocairo-1.0": "^4.4.0",
|
|
52
|
+
"@girs/cogl-10": "^4.4.0",
|
|
53
|
+
"@girs/graphene-1.0": "^4.4.0",
|
|
54
|
+
"@girs/gl-1.0": "^4.4.0",
|
|
55
|
+
"@girs/clutter-10": "^4.4.0",
|
|
56
|
+
"@girs/json-1.0": "^4.4.0" },
|
|
57
57
|
"devDependencies": {
|
|
58
58
|
"typescript": "*"
|
|
59
59
|
},
|