@girs/gda-5.0 5.0.0-4.0.0-beta.21 → 5.0.0-4.0.0-beta.23

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.
Files changed (3) hide show
  1. package/README.md +1 -1
  2. package/gda-5.0.d.ts +750 -85
  3. package/package.json +5 -5
package/README.md CHANGED
@@ -5,7 +5,7 @@
5
5
  ![downloads/week](https://img.shields.io/npm/dw/@girs/gda-5.0)
6
6
 
7
7
 
8
- GJS TypeScript type definitions for Gda-5.0, generated from library version 5.0.0 using [ts-for-gir](https://github.com/gjsify/ts-for-gir) v4.0.0-beta.21.
8
+ GJS TypeScript type definitions for Gda-5.0, generated from library version 5.0.0 using [ts-for-gir](https://github.com/gjsify/ts-for-gir) v4.0.0-beta.23.
9
9
 
10
10
 
11
11
  ## Install
package/gda-5.0.d.ts CHANGED
@@ -7,6 +7,8 @@
7
7
  * The based EJS template file is used for the generated .d.ts file of each GIR module like Gtk-4.0, GObject-2.0, ...
8
8
  */
9
9
 
10
+ import '@girs/gjs';
11
+
10
12
  // Module dependencies
11
13
  import type libxml2 from '@girs/libxml2-2.0';
12
14
  import type GObject from '@girs/gobject-2.0';
@@ -3657,7 +3659,21 @@ export namespace Gda {
3657
3659
  * @returns the data if found, or %NULL if no such data exists.
3658
3660
  */
3659
3661
  get_data(key: string): any | null;
3660
- get_property(property_name: string): any;
3662
+ /**
3663
+ * Gets a property of an object.
3664
+ *
3665
+ * The value can be:
3666
+ * - an empty GObject.Value initialized by G_VALUE_INIT, which will be automatically initialized with the expected type of the property (since GLib 2.60)
3667
+ * - a GObject.Value initialized with the expected type of the property
3668
+ * - a GObject.Value initialized with a type to which the expected type of the property can be transformed
3669
+ *
3670
+ * In general, a copy is made of the property contents and the caller is responsible for freeing the memory by calling GObject.Value.unset.
3671
+ *
3672
+ * Note that GObject.Object.get_property is really intended for language bindings, GObject.Object.get is much more convenient for C programming.
3673
+ * @param property_name The name of the property to get
3674
+ * @param value Return location for the property value. Can be an empty GObject.Value initialized by G_VALUE_INIT (auto-initialized with expected type since GLib 2.60), a GObject.Value initialized with the expected property type, or a GObject.Value initialized with a transformable type
3675
+ */
3676
+ get_property(property_name: string, value: GObject.Value | any): any;
3661
3677
  /**
3662
3678
  * This function gets back user data pointers stored via
3663
3679
  * g_object_set_qdata().
@@ -3785,7 +3801,12 @@ export namespace Gda {
3785
3801
  * @param data data to associate with that key
3786
3802
  */
3787
3803
  set_data(key: string, data?: any | null): void;
3788
- set_property(property_name: string, value: any): void;
3804
+ /**
3805
+ * Sets a property on an object.
3806
+ * @param property_name The name of the property to set
3807
+ * @param value The value to set the property to
3808
+ */
3809
+ set_property(property_name: string, value: GObject.Value | any): void;
3789
3810
  /**
3790
3811
  * Remove a specified datum from the object's data associations,
3791
3812
  * without invoking the association's destroy handler.
@@ -3935,11 +3956,31 @@ export namespace Gda {
3935
3956
  * @param pspec
3936
3957
  */
3937
3958
  vfunc_set_property(property_id: number, value: GObject.Value | any, pspec: GObject.ParamSpec): void;
3959
+ /**
3960
+ * Disconnects a handler from an instance so it will not be called during any future or currently ongoing emissions of the signal it has been connected to.
3961
+ * @param id Handler ID of the handler to be disconnected
3962
+ */
3938
3963
  disconnect(id: number): void;
3964
+ /**
3965
+ * Sets multiple properties of an object at once. The properties argument should be a dictionary mapping property names to values.
3966
+ * @param properties Object containing the properties to set
3967
+ */
3939
3968
  set(properties: { [key: string]: any }): void;
3940
- block_signal_handler(id: number): any;
3941
- unblock_signal_handler(id: number): any;
3942
- stop_emission_by_name(detailedName: string): any;
3969
+ /**
3970
+ * Blocks a handler of an instance so it will not be called during any signal emissions
3971
+ * @param id Handler ID of the handler to be blocked
3972
+ */
3973
+ block_signal_handler(id: number): void;
3974
+ /**
3975
+ * Unblocks a handler so it will be called again during any signal emissions
3976
+ * @param id Handler ID of the handler to be unblocked
3977
+ */
3978
+ unblock_signal_handler(id: number): void;
3979
+ /**
3980
+ * Stops a signal's emission by the given signal name. This will prevent the default handler and any subsequent signal handlers from being invoked.
3981
+ * @param detailedName Name of the signal to stop emission of
3982
+ */
3983
+ stop_emission_by_name(detailedName: string): void;
3943
3984
  }
3944
3985
 
3945
3986
  namespace ConnectionEvent {
@@ -4880,7 +4921,21 @@ export namespace Gda {
4880
4921
  * @returns the data if found, or %NULL if no such data exists.
4881
4922
  */
4882
4923
  get_data(key: string): any | null;
4883
- get_property(property_name: string): any;
4924
+ /**
4925
+ * Gets a property of an object.
4926
+ *
4927
+ * The value can be:
4928
+ * - an empty GObject.Value initialized by G_VALUE_INIT, which will be automatically initialized with the expected type of the property (since GLib 2.60)
4929
+ * - a GObject.Value initialized with the expected type of the property
4930
+ * - a GObject.Value initialized with a type to which the expected type of the property can be transformed
4931
+ *
4932
+ * In general, a copy is made of the property contents and the caller is responsible for freeing the memory by calling GObject.Value.unset.
4933
+ *
4934
+ * Note that GObject.Object.get_property is really intended for language bindings, GObject.Object.get is much more convenient for C programming.
4935
+ * @param property_name The name of the property to get
4936
+ * @param value Return location for the property value. Can be an empty GObject.Value initialized by G_VALUE_INIT (auto-initialized with expected type since GLib 2.60), a GObject.Value initialized with the expected property type, or a GObject.Value initialized with a transformable type
4937
+ */
4938
+ get_property(property_name: string, value: GObject.Value | any): any;
4884
4939
  /**
4885
4940
  * This function gets back user data pointers stored via
4886
4941
  * g_object_set_qdata().
@@ -5008,7 +5063,12 @@ export namespace Gda {
5008
5063
  * @param data data to associate with that key
5009
5064
  */
5010
5065
  set_data(key: string, data?: any | null): void;
5011
- set_property(property_name: string, value: any): void;
5066
+ /**
5067
+ * Sets a property on an object.
5068
+ * @param property_name The name of the property to set
5069
+ * @param value The value to set the property to
5070
+ */
5071
+ set_property(property_name: string, value: GObject.Value | any): void;
5012
5072
  /**
5013
5073
  * Remove a specified datum from the object's data associations,
5014
5074
  * without invoking the association's destroy handler.
@@ -5158,11 +5218,31 @@ export namespace Gda {
5158
5218
  * @param pspec
5159
5219
  */
5160
5220
  vfunc_set_property(property_id: number, value: GObject.Value | any, pspec: GObject.ParamSpec): void;
5221
+ /**
5222
+ * Disconnects a handler from an instance so it will not be called during any future or currently ongoing emissions of the signal it has been connected to.
5223
+ * @param id Handler ID of the handler to be disconnected
5224
+ */
5161
5225
  disconnect(id: number): void;
5226
+ /**
5227
+ * Sets multiple properties of an object at once. The properties argument should be a dictionary mapping property names to values.
5228
+ * @param properties Object containing the properties to set
5229
+ */
5162
5230
  set(properties: { [key: string]: any }): void;
5163
- block_signal_handler(id: number): any;
5164
- unblock_signal_handler(id: number): any;
5165
- stop_emission_by_name(detailedName: string): any;
5231
+ /**
5232
+ * Blocks a handler of an instance so it will not be called during any signal emissions
5233
+ * @param id Handler ID of the handler to be blocked
5234
+ */
5235
+ block_signal_handler(id: number): void;
5236
+ /**
5237
+ * Unblocks a handler so it will be called again during any signal emissions
5238
+ * @param id Handler ID of the handler to be unblocked
5239
+ */
5240
+ unblock_signal_handler(id: number): void;
5241
+ /**
5242
+ * Stops a signal's emission by the given signal name. This will prevent the default handler and any subsequent signal handlers from being invoked.
5243
+ * @param detailedName Name of the signal to stop emission of
5244
+ */
5245
+ stop_emission_by_name(detailedName: string): void;
5166
5246
  }
5167
5247
 
5168
5248
  namespace DataComparator {
@@ -6111,7 +6191,21 @@ export namespace Gda {
6111
6191
  * @returns the data if found, or %NULL if no such data exists.
6112
6192
  */
6113
6193
  get_data(key: string): any | null;
6114
- get_property(property_name: string): any;
6194
+ /**
6195
+ * Gets a property of an object.
6196
+ *
6197
+ * The value can be:
6198
+ * - an empty GObject.Value initialized by G_VALUE_INIT, which will be automatically initialized with the expected type of the property (since GLib 2.60)
6199
+ * - a GObject.Value initialized with the expected type of the property
6200
+ * - a GObject.Value initialized with a type to which the expected type of the property can be transformed
6201
+ *
6202
+ * In general, a copy is made of the property contents and the caller is responsible for freeing the memory by calling GObject.Value.unset.
6203
+ *
6204
+ * Note that GObject.Object.get_property is really intended for language bindings, GObject.Object.get is much more convenient for C programming.
6205
+ * @param property_name The name of the property to get
6206
+ * @param value Return location for the property value. Can be an empty GObject.Value initialized by G_VALUE_INIT (auto-initialized with expected type since GLib 2.60), a GObject.Value initialized with the expected property type, or a GObject.Value initialized with a transformable type
6207
+ */
6208
+ get_property(property_name: string, value: GObject.Value | any): any;
6115
6209
  /**
6116
6210
  * This function gets back user data pointers stored via
6117
6211
  * g_object_set_qdata().
@@ -6239,7 +6333,12 @@ export namespace Gda {
6239
6333
  * @param data data to associate with that key
6240
6334
  */
6241
6335
  set_data(key: string, data?: any | null): void;
6242
- set_property(property_name: string, value: any): void;
6336
+ /**
6337
+ * Sets a property on an object.
6338
+ * @param property_name The name of the property to set
6339
+ * @param value The value to set the property to
6340
+ */
6341
+ set_property(property_name: string, value: GObject.Value | any): void;
6243
6342
  /**
6244
6343
  * Remove a specified datum from the object's data associations,
6245
6344
  * without invoking the association's destroy handler.
@@ -6389,11 +6488,31 @@ export namespace Gda {
6389
6488
  * @param pspec
6390
6489
  */
6391
6490
  vfunc_set_property(property_id: number, value: GObject.Value | any, pspec: GObject.ParamSpec): void;
6491
+ /**
6492
+ * Disconnects a handler from an instance so it will not be called during any future or currently ongoing emissions of the signal it has been connected to.
6493
+ * @param id Handler ID of the handler to be disconnected
6494
+ */
6392
6495
  disconnect(id: number): void;
6496
+ /**
6497
+ * Sets multiple properties of an object at once. The properties argument should be a dictionary mapping property names to values.
6498
+ * @param properties Object containing the properties to set
6499
+ */
6393
6500
  set(properties: { [key: string]: any }): void;
6394
- block_signal_handler(id: number): any;
6395
- unblock_signal_handler(id: number): any;
6396
- stop_emission_by_name(detailedName: string): any;
6501
+ /**
6502
+ * Blocks a handler of an instance so it will not be called during any signal emissions
6503
+ * @param id Handler ID of the handler to be blocked
6504
+ */
6505
+ block_signal_handler(id: number): void;
6506
+ /**
6507
+ * Unblocks a handler so it will be called again during any signal emissions
6508
+ * @param id Handler ID of the handler to be unblocked
6509
+ */
6510
+ unblock_signal_handler(id: number): void;
6511
+ /**
6512
+ * Stops a signal's emission by the given signal name. This will prevent the default handler and any subsequent signal handlers from being invoked.
6513
+ * @param detailedName Name of the signal to stop emission of
6514
+ */
6515
+ stop_emission_by_name(detailedName: string): void;
6397
6516
  }
6398
6517
 
6399
6518
  namespace DataModelDir {
@@ -7225,7 +7344,21 @@ export namespace Gda {
7225
7344
  * @returns the data if found, or %NULL if no such data exists.
7226
7345
  */
7227
7346
  get_data(key: string): any | null;
7228
- get_property(property_name: string): any;
7347
+ /**
7348
+ * Gets a property of an object.
7349
+ *
7350
+ * The value can be:
7351
+ * - an empty GObject.Value initialized by G_VALUE_INIT, which will be automatically initialized with the expected type of the property (since GLib 2.60)
7352
+ * - a GObject.Value initialized with the expected type of the property
7353
+ * - a GObject.Value initialized with a type to which the expected type of the property can be transformed
7354
+ *
7355
+ * In general, a copy is made of the property contents and the caller is responsible for freeing the memory by calling GObject.Value.unset.
7356
+ *
7357
+ * Note that GObject.Object.get_property is really intended for language bindings, GObject.Object.get is much more convenient for C programming.
7358
+ * @param property_name The name of the property to get
7359
+ * @param value Return location for the property value. Can be an empty GObject.Value initialized by G_VALUE_INIT (auto-initialized with expected type since GLib 2.60), a GObject.Value initialized with the expected property type, or a GObject.Value initialized with a transformable type
7360
+ */
7361
+ get_property(property_name: string, value: GObject.Value | any): any;
7229
7362
  /**
7230
7363
  * This function gets back user data pointers stored via
7231
7364
  * g_object_set_qdata().
@@ -7353,7 +7486,12 @@ export namespace Gda {
7353
7486
  * @param data data to associate with that key
7354
7487
  */
7355
7488
  set_data(key: string, data?: any | null): void;
7356
- set_property(property_name: string, value: any): void;
7489
+ /**
7490
+ * Sets a property on an object.
7491
+ * @param property_name The name of the property to set
7492
+ * @param value The value to set the property to
7493
+ */
7494
+ set_property(property_name: string, value: GObject.Value | any): void;
7357
7495
  /**
7358
7496
  * Remove a specified datum from the object's data associations,
7359
7497
  * without invoking the association's destroy handler.
@@ -7503,11 +7641,31 @@ export namespace Gda {
7503
7641
  * @param pspec
7504
7642
  */
7505
7643
  vfunc_set_property(property_id: number, value: GObject.Value | any, pspec: GObject.ParamSpec): void;
7644
+ /**
7645
+ * Disconnects a handler from an instance so it will not be called during any future or currently ongoing emissions of the signal it has been connected to.
7646
+ * @param id Handler ID of the handler to be disconnected
7647
+ */
7506
7648
  disconnect(id: number): void;
7649
+ /**
7650
+ * Sets multiple properties of an object at once. The properties argument should be a dictionary mapping property names to values.
7651
+ * @param properties Object containing the properties to set
7652
+ */
7507
7653
  set(properties: { [key: string]: any }): void;
7508
- block_signal_handler(id: number): any;
7509
- unblock_signal_handler(id: number): any;
7510
- stop_emission_by_name(detailedName: string): any;
7654
+ /**
7655
+ * Blocks a handler of an instance so it will not be called during any signal emissions
7656
+ * @param id Handler ID of the handler to be blocked
7657
+ */
7658
+ block_signal_handler(id: number): void;
7659
+ /**
7660
+ * Unblocks a handler so it will be called again during any signal emissions
7661
+ * @param id Handler ID of the handler to be unblocked
7662
+ */
7663
+ unblock_signal_handler(id: number): void;
7664
+ /**
7665
+ * Stops a signal's emission by the given signal name. This will prevent the default handler and any subsequent signal handlers from being invoked.
7666
+ * @param detailedName Name of the signal to stop emission of
7667
+ */
7668
+ stop_emission_by_name(detailedName: string): void;
7511
7669
  }
7512
7670
 
7513
7671
  namespace DataModelImport {
@@ -8422,7 +8580,21 @@ export namespace Gda {
8422
8580
  * @returns the data if found, or %NULL if no such data exists.
8423
8581
  */
8424
8582
  get_data(key: string): any | null;
8425
- get_property(property_name: string): any;
8583
+ /**
8584
+ * Gets a property of an object.
8585
+ *
8586
+ * The value can be:
8587
+ * - an empty GObject.Value initialized by G_VALUE_INIT, which will be automatically initialized with the expected type of the property (since GLib 2.60)
8588
+ * - a GObject.Value initialized with the expected type of the property
8589
+ * - a GObject.Value initialized with a type to which the expected type of the property can be transformed
8590
+ *
8591
+ * In general, a copy is made of the property contents and the caller is responsible for freeing the memory by calling GObject.Value.unset.
8592
+ *
8593
+ * Note that GObject.Object.get_property is really intended for language bindings, GObject.Object.get is much more convenient for C programming.
8594
+ * @param property_name The name of the property to get
8595
+ * @param value Return location for the property value. Can be an empty GObject.Value initialized by G_VALUE_INIT (auto-initialized with expected type since GLib 2.60), a GObject.Value initialized with the expected property type, or a GObject.Value initialized with a transformable type
8596
+ */
8597
+ get_property(property_name: string, value: GObject.Value | any): any;
8426
8598
  /**
8427
8599
  * This function gets back user data pointers stored via
8428
8600
  * g_object_set_qdata().
@@ -8550,7 +8722,12 @@ export namespace Gda {
8550
8722
  * @param data data to associate with that key
8551
8723
  */
8552
8724
  set_data(key: string, data?: any | null): void;
8553
- set_property(property_name: string, value: any): void;
8725
+ /**
8726
+ * Sets a property on an object.
8727
+ * @param property_name The name of the property to set
8728
+ * @param value The value to set the property to
8729
+ */
8730
+ set_property(property_name: string, value: GObject.Value | any): void;
8554
8731
  /**
8555
8732
  * Remove a specified datum from the object's data associations,
8556
8733
  * without invoking the association's destroy handler.
@@ -8700,11 +8877,31 @@ export namespace Gda {
8700
8877
  * @param pspec
8701
8878
  */
8702
8879
  vfunc_set_property(property_id: number, value: GObject.Value | any, pspec: GObject.ParamSpec): void;
8880
+ /**
8881
+ * Disconnects a handler from an instance so it will not be called during any future or currently ongoing emissions of the signal it has been connected to.
8882
+ * @param id Handler ID of the handler to be disconnected
8883
+ */
8703
8884
  disconnect(id: number): void;
8885
+ /**
8886
+ * Sets multiple properties of an object at once. The properties argument should be a dictionary mapping property names to values.
8887
+ * @param properties Object containing the properties to set
8888
+ */
8704
8889
  set(properties: { [key: string]: any }): void;
8705
- block_signal_handler(id: number): any;
8706
- unblock_signal_handler(id: number): any;
8707
- stop_emission_by_name(detailedName: string): any;
8890
+ /**
8891
+ * Blocks a handler of an instance so it will not be called during any signal emissions
8892
+ * @param id Handler ID of the handler to be blocked
8893
+ */
8894
+ block_signal_handler(id: number): void;
8895
+ /**
8896
+ * Unblocks a handler so it will be called again during any signal emissions
8897
+ * @param id Handler ID of the handler to be unblocked
8898
+ */
8899
+ unblock_signal_handler(id: number): void;
8900
+ /**
8901
+ * Stops a signal's emission by the given signal name. This will prevent the default handler and any subsequent signal handlers from being invoked.
8902
+ * @param detailedName Name of the signal to stop emission of
8903
+ */
8904
+ stop_emission_by_name(detailedName: string): void;
8708
8905
  }
8709
8906
 
8710
8907
  namespace DataModelIter {
@@ -9769,7 +9966,21 @@ export namespace Gda {
9769
9966
  * @returns the data if found, or %NULL if no such data exists.
9770
9967
  */
9771
9968
  get_data(key: string): any | null;
9772
- get_property(property_name: string): any;
9969
+ /**
9970
+ * Gets a property of an object.
9971
+ *
9972
+ * The value can be:
9973
+ * - an empty GObject.Value initialized by G_VALUE_INIT, which will be automatically initialized with the expected type of the property (since GLib 2.60)
9974
+ * - a GObject.Value initialized with the expected type of the property
9975
+ * - a GObject.Value initialized with a type to which the expected type of the property can be transformed
9976
+ *
9977
+ * In general, a copy is made of the property contents and the caller is responsible for freeing the memory by calling GObject.Value.unset.
9978
+ *
9979
+ * Note that GObject.Object.get_property is really intended for language bindings, GObject.Object.get is much more convenient for C programming.
9980
+ * @param property_name The name of the property to get
9981
+ * @param value Return location for the property value. Can be an empty GObject.Value initialized by G_VALUE_INIT (auto-initialized with expected type since GLib 2.60), a GObject.Value initialized with the expected property type, or a GObject.Value initialized with a transformable type
9982
+ */
9983
+ get_property(property_name: string, value: GObject.Value | any): any;
9773
9984
  /**
9774
9985
  * This function gets back user data pointers stored via
9775
9986
  * g_object_set_qdata().
@@ -9897,7 +10108,12 @@ export namespace Gda {
9897
10108
  * @param data data to associate with that key
9898
10109
  */
9899
10110
  set_data(key: string, data?: any | null): void;
9900
- set_property(property_name: string, value: any): void;
10111
+ /**
10112
+ * Sets a property on an object.
10113
+ * @param property_name The name of the property to set
10114
+ * @param value The value to set the property to
10115
+ */
10116
+ set_property(property_name: string, value: GObject.Value | any): void;
9901
10117
  /**
9902
10118
  * Remove a specified datum from the object's data associations,
9903
10119
  * without invoking the association's destroy handler.
@@ -10047,11 +10263,31 @@ export namespace Gda {
10047
10263
  * @param pspec
10048
10264
  */
10049
10265
  vfunc_set_property(property_id: number, value: GObject.Value | any, pspec: GObject.ParamSpec): void;
10266
+ /**
10267
+ * Disconnects a handler from an instance so it will not be called during any future or currently ongoing emissions of the signal it has been connected to.
10268
+ * @param id Handler ID of the handler to be disconnected
10269
+ */
10050
10270
  disconnect(id: number): void;
10271
+ /**
10272
+ * Sets multiple properties of an object at once. The properties argument should be a dictionary mapping property names to values.
10273
+ * @param properties Object containing the properties to set
10274
+ */
10051
10275
  set(properties: { [key: string]: any }): void;
10052
- block_signal_handler(id: number): any;
10053
- unblock_signal_handler(id: number): any;
10054
- stop_emission_by_name(detailedName: string): any;
10276
+ /**
10277
+ * Blocks a handler of an instance so it will not be called during any signal emissions
10278
+ * @param id Handler ID of the handler to be blocked
10279
+ */
10280
+ block_signal_handler(id: number): void;
10281
+ /**
10282
+ * Unblocks a handler so it will be called again during any signal emissions
10283
+ * @param id Handler ID of the handler to be unblocked
10284
+ */
10285
+ unblock_signal_handler(id: number): void;
10286
+ /**
10287
+ * Stops a signal's emission by the given signal name. This will prevent the default handler and any subsequent signal handlers from being invoked.
10288
+ * @param detailedName Name of the signal to stop emission of
10289
+ */
10290
+ stop_emission_by_name(detailedName: string): void;
10055
10291
  }
10056
10292
 
10057
10293
  namespace DataPivot {
@@ -10923,7 +11159,21 @@ export namespace Gda {
10923
11159
  * @returns the data if found, or %NULL if no such data exists.
10924
11160
  */
10925
11161
  get_data(key: string): any | null;
10926
- get_property(property_name: string): any;
11162
+ /**
11163
+ * Gets a property of an object.
11164
+ *
11165
+ * The value can be:
11166
+ * - an empty GObject.Value initialized by G_VALUE_INIT, which will be automatically initialized with the expected type of the property (since GLib 2.60)
11167
+ * - a GObject.Value initialized with the expected type of the property
11168
+ * - a GObject.Value initialized with a type to which the expected type of the property can be transformed
11169
+ *
11170
+ * In general, a copy is made of the property contents and the caller is responsible for freeing the memory by calling GObject.Value.unset.
11171
+ *
11172
+ * Note that GObject.Object.get_property is really intended for language bindings, GObject.Object.get is much more convenient for C programming.
11173
+ * @param property_name The name of the property to get
11174
+ * @param value Return location for the property value. Can be an empty GObject.Value initialized by G_VALUE_INIT (auto-initialized with expected type since GLib 2.60), a GObject.Value initialized with the expected property type, or a GObject.Value initialized with a transformable type
11175
+ */
11176
+ get_property(property_name: string, value: GObject.Value | any): any;
10927
11177
  /**
10928
11178
  * This function gets back user data pointers stored via
10929
11179
  * g_object_set_qdata().
@@ -11051,7 +11301,12 @@ export namespace Gda {
11051
11301
  * @param data data to associate with that key
11052
11302
  */
11053
11303
  set_data(key: string, data?: any | null): void;
11054
- set_property(property_name: string, value: any): void;
11304
+ /**
11305
+ * Sets a property on an object.
11306
+ * @param property_name The name of the property to set
11307
+ * @param value The value to set the property to
11308
+ */
11309
+ set_property(property_name: string, value: GObject.Value | any): void;
11055
11310
  /**
11056
11311
  * Remove a specified datum from the object's data associations,
11057
11312
  * without invoking the association's destroy handler.
@@ -11201,11 +11456,31 @@ export namespace Gda {
11201
11456
  * @param pspec
11202
11457
  */
11203
11458
  vfunc_set_property(property_id: number, value: GObject.Value | any, pspec: GObject.ParamSpec): void;
11459
+ /**
11460
+ * Disconnects a handler from an instance so it will not be called during any future or currently ongoing emissions of the signal it has been connected to.
11461
+ * @param id Handler ID of the handler to be disconnected
11462
+ */
11204
11463
  disconnect(id: number): void;
11464
+ /**
11465
+ * Sets multiple properties of an object at once. The properties argument should be a dictionary mapping property names to values.
11466
+ * @param properties Object containing the properties to set
11467
+ */
11205
11468
  set(properties: { [key: string]: any }): void;
11206
- block_signal_handler(id: number): any;
11207
- unblock_signal_handler(id: number): any;
11208
- stop_emission_by_name(detailedName: string): any;
11469
+ /**
11470
+ * Blocks a handler of an instance so it will not be called during any signal emissions
11471
+ * @param id Handler ID of the handler to be blocked
11472
+ */
11473
+ block_signal_handler(id: number): void;
11474
+ /**
11475
+ * Unblocks a handler so it will be called again during any signal emissions
11476
+ * @param id Handler ID of the handler to be unblocked
11477
+ */
11478
+ unblock_signal_handler(id: number): void;
11479
+ /**
11480
+ * Stops a signal's emission by the given signal name. This will prevent the default handler and any subsequent signal handlers from being invoked.
11481
+ * @param detailedName Name of the signal to stop emission of
11482
+ */
11483
+ stop_emission_by_name(detailedName: string): void;
11209
11484
  }
11210
11485
 
11211
11486
  namespace DataProxy {
@@ -12352,7 +12627,21 @@ export namespace Gda {
12352
12627
  * @returns the data if found, or %NULL if no such data exists.
12353
12628
  */
12354
12629
  get_data(key: string): any | null;
12355
- get_property(property_name: string): any;
12630
+ /**
12631
+ * Gets a property of an object.
12632
+ *
12633
+ * The value can be:
12634
+ * - an empty GObject.Value initialized by G_VALUE_INIT, which will be automatically initialized with the expected type of the property (since GLib 2.60)
12635
+ * - a GObject.Value initialized with the expected type of the property
12636
+ * - a GObject.Value initialized with a type to which the expected type of the property can be transformed
12637
+ *
12638
+ * In general, a copy is made of the property contents and the caller is responsible for freeing the memory by calling GObject.Value.unset.
12639
+ *
12640
+ * Note that GObject.Object.get_property is really intended for language bindings, GObject.Object.get is much more convenient for C programming.
12641
+ * @param property_name The name of the property to get
12642
+ * @param value Return location for the property value. Can be an empty GObject.Value initialized by G_VALUE_INIT (auto-initialized with expected type since GLib 2.60), a GObject.Value initialized with the expected property type, or a GObject.Value initialized with a transformable type
12643
+ */
12644
+ get_property(property_name: string, value: GObject.Value | any): any;
12356
12645
  /**
12357
12646
  * This function gets back user data pointers stored via
12358
12647
  * g_object_set_qdata().
@@ -12480,7 +12769,12 @@ export namespace Gda {
12480
12769
  * @param data data to associate with that key
12481
12770
  */
12482
12771
  set_data(key: string, data?: any | null): void;
12483
- set_property(property_name: string, value: any): void;
12772
+ /**
12773
+ * Sets a property on an object.
12774
+ * @param property_name The name of the property to set
12775
+ * @param value The value to set the property to
12776
+ */
12777
+ set_property(property_name: string, value: GObject.Value | any): void;
12484
12778
  /**
12485
12779
  * Remove a specified datum from the object's data associations,
12486
12780
  * without invoking the association's destroy handler.
@@ -12630,11 +12924,31 @@ export namespace Gda {
12630
12924
  * @param pspec
12631
12925
  */
12632
12926
  vfunc_set_property(property_id: number, value: GObject.Value | any, pspec: GObject.ParamSpec): void;
12927
+ /**
12928
+ * Disconnects a handler from an instance so it will not be called during any future or currently ongoing emissions of the signal it has been connected to.
12929
+ * @param id Handler ID of the handler to be disconnected
12930
+ */
12633
12931
  disconnect(id: number): void;
12932
+ /**
12933
+ * Sets multiple properties of an object at once. The properties argument should be a dictionary mapping property names to values.
12934
+ * @param properties Object containing the properties to set
12935
+ */
12634
12936
  set(properties: { [key: string]: any }): void;
12635
- block_signal_handler(id: number): any;
12636
- unblock_signal_handler(id: number): any;
12637
- stop_emission_by_name(detailedName: string): any;
12937
+ /**
12938
+ * Blocks a handler of an instance so it will not be called during any signal emissions
12939
+ * @param id Handler ID of the handler to be blocked
12940
+ */
12941
+ block_signal_handler(id: number): void;
12942
+ /**
12943
+ * Unblocks a handler so it will be called again during any signal emissions
12944
+ * @param id Handler ID of the handler to be unblocked
12945
+ */
12946
+ unblock_signal_handler(id: number): void;
12947
+ /**
12948
+ * Stops a signal's emission by the given signal name. This will prevent the default handler and any subsequent signal handlers from being invoked.
12949
+ * @param detailedName Name of the signal to stop emission of
12950
+ */
12951
+ stop_emission_by_name(detailedName: string): void;
12638
12952
  }
12639
12953
 
12640
12954
  namespace DataSelect {
@@ -13666,7 +13980,21 @@ export namespace Gda {
13666
13980
  * @returns the data if found, or %NULL if no such data exists.
13667
13981
  */
13668
13982
  get_data(key: string): any | null;
13669
- get_property(property_name: string): any;
13983
+ /**
13984
+ * Gets a property of an object.
13985
+ *
13986
+ * The value can be:
13987
+ * - an empty GObject.Value initialized by G_VALUE_INIT, which will be automatically initialized with the expected type of the property (since GLib 2.60)
13988
+ * - a GObject.Value initialized with the expected type of the property
13989
+ * - a GObject.Value initialized with a type to which the expected type of the property can be transformed
13990
+ *
13991
+ * In general, a copy is made of the property contents and the caller is responsible for freeing the memory by calling GObject.Value.unset.
13992
+ *
13993
+ * Note that GObject.Object.get_property is really intended for language bindings, GObject.Object.get is much more convenient for C programming.
13994
+ * @param property_name The name of the property to get
13995
+ * @param value Return location for the property value. Can be an empty GObject.Value initialized by G_VALUE_INIT (auto-initialized with expected type since GLib 2.60), a GObject.Value initialized with the expected property type, or a GObject.Value initialized with a transformable type
13996
+ */
13997
+ get_property(property_name: string, value: GObject.Value | any): any;
13670
13998
  /**
13671
13999
  * This function gets back user data pointers stored via
13672
14000
  * g_object_set_qdata().
@@ -13794,7 +14122,12 @@ export namespace Gda {
13794
14122
  * @param data data to associate with that key
13795
14123
  */
13796
14124
  set_data(key: string, data?: any | null): void;
13797
- set_property(property_name: string, value: any): void;
14125
+ /**
14126
+ * Sets a property on an object.
14127
+ * @param property_name The name of the property to set
14128
+ * @param value The value to set the property to
14129
+ */
14130
+ set_property(property_name: string, value: GObject.Value | any): void;
13798
14131
  /**
13799
14132
  * Remove a specified datum from the object's data associations,
13800
14133
  * without invoking the association's destroy handler.
@@ -13944,11 +14277,31 @@ export namespace Gda {
13944
14277
  * @param pspec
13945
14278
  */
13946
14279
  vfunc_set_property(property_id: number, value: GObject.Value | any, pspec: GObject.ParamSpec): void;
14280
+ /**
14281
+ * Disconnects a handler from an instance so it will not be called during any future or currently ongoing emissions of the signal it has been connected to.
14282
+ * @param id Handler ID of the handler to be disconnected
14283
+ */
13947
14284
  disconnect(id: number): void;
14285
+ /**
14286
+ * Sets multiple properties of an object at once. The properties argument should be a dictionary mapping property names to values.
14287
+ * @param properties Object containing the properties to set
14288
+ */
13948
14289
  set(properties: { [key: string]: any }): void;
13949
- block_signal_handler(id: number): any;
13950
- unblock_signal_handler(id: number): any;
13951
- stop_emission_by_name(detailedName: string): any;
14290
+ /**
14291
+ * Blocks a handler of an instance so it will not be called during any signal emissions
14292
+ * @param id Handler ID of the handler to be blocked
14293
+ */
14294
+ block_signal_handler(id: number): void;
14295
+ /**
14296
+ * Unblocks a handler so it will be called again during any signal emissions
14297
+ * @param id Handler ID of the handler to be unblocked
14298
+ */
14299
+ unblock_signal_handler(id: number): void;
14300
+ /**
14301
+ * Stops a signal's emission by the given signal name. This will prevent the default handler and any subsequent signal handlers from being invoked.
14302
+ * @param detailedName Name of the signal to stop emission of
14303
+ */
14304
+ stop_emission_by_name(detailedName: string): void;
13952
14305
  }
13953
14306
 
13954
14307
  namespace HandlerBin {
@@ -14226,7 +14579,21 @@ export namespace Gda {
14226
14579
  * @returns the data if found, or %NULL if no such data exists.
14227
14580
  */
14228
14581
  get_data(key: string): any | null;
14229
- get_property(property_name: string): any;
14582
+ /**
14583
+ * Gets a property of an object.
14584
+ *
14585
+ * The value can be:
14586
+ * - an empty GObject.Value initialized by G_VALUE_INIT, which will be automatically initialized with the expected type of the property (since GLib 2.60)
14587
+ * - a GObject.Value initialized with the expected type of the property
14588
+ * - a GObject.Value initialized with a type to which the expected type of the property can be transformed
14589
+ *
14590
+ * In general, a copy is made of the property contents and the caller is responsible for freeing the memory by calling GObject.Value.unset.
14591
+ *
14592
+ * Note that GObject.Object.get_property is really intended for language bindings, GObject.Object.get is much more convenient for C programming.
14593
+ * @param property_name The name of the property to get
14594
+ * @param value Return location for the property value. Can be an empty GObject.Value initialized by G_VALUE_INIT (auto-initialized with expected type since GLib 2.60), a GObject.Value initialized with the expected property type, or a GObject.Value initialized with a transformable type
14595
+ */
14596
+ get_property(property_name: string, value: GObject.Value | any): any;
14230
14597
  /**
14231
14598
  * This function gets back user data pointers stored via
14232
14599
  * g_object_set_qdata().
@@ -14354,7 +14721,12 @@ export namespace Gda {
14354
14721
  * @param data data to associate with that key
14355
14722
  */
14356
14723
  set_data(key: string, data?: any | null): void;
14357
- set_property(property_name: string, value: any): void;
14724
+ /**
14725
+ * Sets a property on an object.
14726
+ * @param property_name The name of the property to set
14727
+ * @param value The value to set the property to
14728
+ */
14729
+ set_property(property_name: string, value: GObject.Value | any): void;
14358
14730
  /**
14359
14731
  * Remove a specified datum from the object's data associations,
14360
14732
  * without invoking the association's destroy handler.
@@ -14504,11 +14876,31 @@ export namespace Gda {
14504
14876
  * @param pspec
14505
14877
  */
14506
14878
  vfunc_set_property(property_id: number, value: GObject.Value | any, pspec: GObject.ParamSpec): void;
14879
+ /**
14880
+ * Disconnects a handler from an instance so it will not be called during any future or currently ongoing emissions of the signal it has been connected to.
14881
+ * @param id Handler ID of the handler to be disconnected
14882
+ */
14507
14883
  disconnect(id: number): void;
14884
+ /**
14885
+ * Sets multiple properties of an object at once. The properties argument should be a dictionary mapping property names to values.
14886
+ * @param properties Object containing the properties to set
14887
+ */
14508
14888
  set(properties: { [key: string]: any }): void;
14509
- block_signal_handler(id: number): any;
14510
- unblock_signal_handler(id: number): any;
14511
- stop_emission_by_name(detailedName: string): any;
14889
+ /**
14890
+ * Blocks a handler of an instance so it will not be called during any signal emissions
14891
+ * @param id Handler ID of the handler to be blocked
14892
+ */
14893
+ block_signal_handler(id: number): void;
14894
+ /**
14895
+ * Unblocks a handler so it will be called again during any signal emissions
14896
+ * @param id Handler ID of the handler to be unblocked
14897
+ */
14898
+ unblock_signal_handler(id: number): void;
14899
+ /**
14900
+ * Stops a signal's emission by the given signal name. This will prevent the default handler and any subsequent signal handlers from being invoked.
14901
+ * @param detailedName Name of the signal to stop emission of
14902
+ */
14903
+ stop_emission_by_name(detailedName: string): void;
14512
14904
  }
14513
14905
 
14514
14906
  namespace HandlerBoolean {
@@ -14786,7 +15178,21 @@ export namespace Gda {
14786
15178
  * @returns the data if found, or %NULL if no such data exists.
14787
15179
  */
14788
15180
  get_data(key: string): any | null;
14789
- get_property(property_name: string): any;
15181
+ /**
15182
+ * Gets a property of an object.
15183
+ *
15184
+ * The value can be:
15185
+ * - an empty GObject.Value initialized by G_VALUE_INIT, which will be automatically initialized with the expected type of the property (since GLib 2.60)
15186
+ * - a GObject.Value initialized with the expected type of the property
15187
+ * - a GObject.Value initialized with a type to which the expected type of the property can be transformed
15188
+ *
15189
+ * In general, a copy is made of the property contents and the caller is responsible for freeing the memory by calling GObject.Value.unset.
15190
+ *
15191
+ * Note that GObject.Object.get_property is really intended for language bindings, GObject.Object.get is much more convenient for C programming.
15192
+ * @param property_name The name of the property to get
15193
+ * @param value Return location for the property value. Can be an empty GObject.Value initialized by G_VALUE_INIT (auto-initialized with expected type since GLib 2.60), a GObject.Value initialized with the expected property type, or a GObject.Value initialized with a transformable type
15194
+ */
15195
+ get_property(property_name: string, value: GObject.Value | any): any;
14790
15196
  /**
14791
15197
  * This function gets back user data pointers stored via
14792
15198
  * g_object_set_qdata().
@@ -14914,7 +15320,12 @@ export namespace Gda {
14914
15320
  * @param data data to associate with that key
14915
15321
  */
14916
15322
  set_data(key: string, data?: any | null): void;
14917
- set_property(property_name: string, value: any): void;
15323
+ /**
15324
+ * Sets a property on an object.
15325
+ * @param property_name The name of the property to set
15326
+ * @param value The value to set the property to
15327
+ */
15328
+ set_property(property_name: string, value: GObject.Value | any): void;
14918
15329
  /**
14919
15330
  * Remove a specified datum from the object's data associations,
14920
15331
  * without invoking the association's destroy handler.
@@ -15064,11 +15475,31 @@ export namespace Gda {
15064
15475
  * @param pspec
15065
15476
  */
15066
15477
  vfunc_set_property(property_id: number, value: GObject.Value | any, pspec: GObject.ParamSpec): void;
15478
+ /**
15479
+ * Disconnects a handler from an instance so it will not be called during any future or currently ongoing emissions of the signal it has been connected to.
15480
+ * @param id Handler ID of the handler to be disconnected
15481
+ */
15067
15482
  disconnect(id: number): void;
15483
+ /**
15484
+ * Sets multiple properties of an object at once. The properties argument should be a dictionary mapping property names to values.
15485
+ * @param properties Object containing the properties to set
15486
+ */
15068
15487
  set(properties: { [key: string]: any }): void;
15069
- block_signal_handler(id: number): any;
15070
- unblock_signal_handler(id: number): any;
15071
- stop_emission_by_name(detailedName: string): any;
15488
+ /**
15489
+ * Blocks a handler of an instance so it will not be called during any signal emissions
15490
+ * @param id Handler ID of the handler to be blocked
15491
+ */
15492
+ block_signal_handler(id: number): void;
15493
+ /**
15494
+ * Unblocks a handler so it will be called again during any signal emissions
15495
+ * @param id Handler ID of the handler to be unblocked
15496
+ */
15497
+ unblock_signal_handler(id: number): void;
15498
+ /**
15499
+ * Stops a signal's emission by the given signal name. This will prevent the default handler and any subsequent signal handlers from being invoked.
15500
+ * @param detailedName Name of the signal to stop emission of
15501
+ */
15502
+ stop_emission_by_name(detailedName: string): void;
15072
15503
  }
15073
15504
 
15074
15505
  namespace HandlerNumerical {
@@ -15346,7 +15777,21 @@ export namespace Gda {
15346
15777
  * @returns the data if found, or %NULL if no such data exists.
15347
15778
  */
15348
15779
  get_data(key: string): any | null;
15349
- get_property(property_name: string): any;
15780
+ /**
15781
+ * Gets a property of an object.
15782
+ *
15783
+ * The value can be:
15784
+ * - an empty GObject.Value initialized by G_VALUE_INIT, which will be automatically initialized with the expected type of the property (since GLib 2.60)
15785
+ * - a GObject.Value initialized with the expected type of the property
15786
+ * - a GObject.Value initialized with a type to which the expected type of the property can be transformed
15787
+ *
15788
+ * In general, a copy is made of the property contents and the caller is responsible for freeing the memory by calling GObject.Value.unset.
15789
+ *
15790
+ * Note that GObject.Object.get_property is really intended for language bindings, GObject.Object.get is much more convenient for C programming.
15791
+ * @param property_name The name of the property to get
15792
+ * @param value Return location for the property value. Can be an empty GObject.Value initialized by G_VALUE_INIT (auto-initialized with expected type since GLib 2.60), a GObject.Value initialized with the expected property type, or a GObject.Value initialized with a transformable type
15793
+ */
15794
+ get_property(property_name: string, value: GObject.Value | any): any;
15350
15795
  /**
15351
15796
  * This function gets back user data pointers stored via
15352
15797
  * g_object_set_qdata().
@@ -15474,7 +15919,12 @@ export namespace Gda {
15474
15919
  * @param data data to associate with that key
15475
15920
  */
15476
15921
  set_data(key: string, data?: any | null): void;
15477
- set_property(property_name: string, value: any): void;
15922
+ /**
15923
+ * Sets a property on an object.
15924
+ * @param property_name The name of the property to set
15925
+ * @param value The value to set the property to
15926
+ */
15927
+ set_property(property_name: string, value: GObject.Value | any): void;
15478
15928
  /**
15479
15929
  * Remove a specified datum from the object's data associations,
15480
15930
  * without invoking the association's destroy handler.
@@ -15624,11 +16074,31 @@ export namespace Gda {
15624
16074
  * @param pspec
15625
16075
  */
15626
16076
  vfunc_set_property(property_id: number, value: GObject.Value | any, pspec: GObject.ParamSpec): void;
16077
+ /**
16078
+ * Disconnects a handler from an instance so it will not be called during any future or currently ongoing emissions of the signal it has been connected to.
16079
+ * @param id Handler ID of the handler to be disconnected
16080
+ */
15627
16081
  disconnect(id: number): void;
16082
+ /**
16083
+ * Sets multiple properties of an object at once. The properties argument should be a dictionary mapping property names to values.
16084
+ * @param properties Object containing the properties to set
16085
+ */
15628
16086
  set(properties: { [key: string]: any }): void;
15629
- block_signal_handler(id: number): any;
15630
- unblock_signal_handler(id: number): any;
15631
- stop_emission_by_name(detailedName: string): any;
16087
+ /**
16088
+ * Blocks a handler of an instance so it will not be called during any signal emissions
16089
+ * @param id Handler ID of the handler to be blocked
16090
+ */
16091
+ block_signal_handler(id: number): void;
16092
+ /**
16093
+ * Unblocks a handler so it will be called again during any signal emissions
16094
+ * @param id Handler ID of the handler to be unblocked
16095
+ */
16096
+ unblock_signal_handler(id: number): void;
16097
+ /**
16098
+ * Stops a signal's emission by the given signal name. This will prevent the default handler and any subsequent signal handlers from being invoked.
16099
+ * @param detailedName Name of the signal to stop emission of
16100
+ */
16101
+ stop_emission_by_name(detailedName: string): void;
15632
16102
  }
15633
16103
 
15634
16104
  namespace HandlerString {
@@ -15913,7 +16383,21 @@ export namespace Gda {
15913
16383
  * @returns the data if found, or %NULL if no such data exists.
15914
16384
  */
15915
16385
  get_data(key: string): any | null;
15916
- get_property(property_name: string): any;
16386
+ /**
16387
+ * Gets a property of an object.
16388
+ *
16389
+ * The value can be:
16390
+ * - an empty GObject.Value initialized by G_VALUE_INIT, which will be automatically initialized with the expected type of the property (since GLib 2.60)
16391
+ * - a GObject.Value initialized with the expected type of the property
16392
+ * - a GObject.Value initialized with a type to which the expected type of the property can be transformed
16393
+ *
16394
+ * In general, a copy is made of the property contents and the caller is responsible for freeing the memory by calling GObject.Value.unset.
16395
+ *
16396
+ * Note that GObject.Object.get_property is really intended for language bindings, GObject.Object.get is much more convenient for C programming.
16397
+ * @param property_name The name of the property to get
16398
+ * @param value Return location for the property value. Can be an empty GObject.Value initialized by G_VALUE_INIT (auto-initialized with expected type since GLib 2.60), a GObject.Value initialized with the expected property type, or a GObject.Value initialized with a transformable type
16399
+ */
16400
+ get_property(property_name: string, value: GObject.Value | any): any;
15917
16401
  /**
15918
16402
  * This function gets back user data pointers stored via
15919
16403
  * g_object_set_qdata().
@@ -16041,7 +16525,12 @@ export namespace Gda {
16041
16525
  * @param data data to associate with that key
16042
16526
  */
16043
16527
  set_data(key: string, data?: any | null): void;
16044
- set_property(property_name: string, value: any): void;
16528
+ /**
16529
+ * Sets a property on an object.
16530
+ * @param property_name The name of the property to set
16531
+ * @param value The value to set the property to
16532
+ */
16533
+ set_property(property_name: string, value: GObject.Value | any): void;
16045
16534
  /**
16046
16535
  * Remove a specified datum from the object's data associations,
16047
16536
  * without invoking the association's destroy handler.
@@ -16191,11 +16680,31 @@ export namespace Gda {
16191
16680
  * @param pspec
16192
16681
  */
16193
16682
  vfunc_set_property(property_id: number, value: GObject.Value | any, pspec: GObject.ParamSpec): void;
16683
+ /**
16684
+ * Disconnects a handler from an instance so it will not be called during any future or currently ongoing emissions of the signal it has been connected to.
16685
+ * @param id Handler ID of the handler to be disconnected
16686
+ */
16194
16687
  disconnect(id: number): void;
16688
+ /**
16689
+ * Sets multiple properties of an object at once. The properties argument should be a dictionary mapping property names to values.
16690
+ * @param properties Object containing the properties to set
16691
+ */
16195
16692
  set(properties: { [key: string]: any }): void;
16196
- block_signal_handler(id: number): any;
16197
- unblock_signal_handler(id: number): any;
16198
- stop_emission_by_name(detailedName: string): any;
16693
+ /**
16694
+ * Blocks a handler of an instance so it will not be called during any signal emissions
16695
+ * @param id Handler ID of the handler to be blocked
16696
+ */
16697
+ block_signal_handler(id: number): void;
16698
+ /**
16699
+ * Unblocks a handler so it will be called again during any signal emissions
16700
+ * @param id Handler ID of the handler to be unblocked
16701
+ */
16702
+ unblock_signal_handler(id: number): void;
16703
+ /**
16704
+ * Stops a signal's emission by the given signal name. This will prevent the default handler and any subsequent signal handlers from being invoked.
16705
+ * @param detailedName Name of the signal to stop emission of
16706
+ */
16707
+ stop_emission_by_name(detailedName: string): void;
16199
16708
  }
16200
16709
 
16201
16710
  namespace HandlerTime {
@@ -16530,7 +17039,21 @@ export namespace Gda {
16530
17039
  * @returns the data if found, or %NULL if no such data exists.
16531
17040
  */
16532
17041
  get_data(key: string): any | null;
16533
- get_property(property_name: string): any;
17042
+ /**
17043
+ * Gets a property of an object.
17044
+ *
17045
+ * The value can be:
17046
+ * - an empty GObject.Value initialized by G_VALUE_INIT, which will be automatically initialized with the expected type of the property (since GLib 2.60)
17047
+ * - a GObject.Value initialized with the expected type of the property
17048
+ * - a GObject.Value initialized with a type to which the expected type of the property can be transformed
17049
+ *
17050
+ * In general, a copy is made of the property contents and the caller is responsible for freeing the memory by calling GObject.Value.unset.
17051
+ *
17052
+ * Note that GObject.Object.get_property is really intended for language bindings, GObject.Object.get is much more convenient for C programming.
17053
+ * @param property_name The name of the property to get
17054
+ * @param value Return location for the property value. Can be an empty GObject.Value initialized by G_VALUE_INIT (auto-initialized with expected type since GLib 2.60), a GObject.Value initialized with the expected property type, or a GObject.Value initialized with a transformable type
17055
+ */
17056
+ get_property(property_name: string, value: GObject.Value | any): any;
16534
17057
  /**
16535
17058
  * This function gets back user data pointers stored via
16536
17059
  * g_object_set_qdata().
@@ -16658,7 +17181,12 @@ export namespace Gda {
16658
17181
  * @param data data to associate with that key
16659
17182
  */
16660
17183
  set_data(key: string, data?: any | null): void;
16661
- set_property(property_name: string, value: any): void;
17184
+ /**
17185
+ * Sets a property on an object.
17186
+ * @param property_name The name of the property to set
17187
+ * @param value The value to set the property to
17188
+ */
17189
+ set_property(property_name: string, value: GObject.Value | any): void;
16662
17190
  /**
16663
17191
  * Remove a specified datum from the object's data associations,
16664
17192
  * without invoking the association's destroy handler.
@@ -16808,11 +17336,31 @@ export namespace Gda {
16808
17336
  * @param pspec
16809
17337
  */
16810
17338
  vfunc_set_property(property_id: number, value: GObject.Value | any, pspec: GObject.ParamSpec): void;
17339
+ /**
17340
+ * Disconnects a handler from an instance so it will not be called during any future or currently ongoing emissions of the signal it has been connected to.
17341
+ * @param id Handler ID of the handler to be disconnected
17342
+ */
16811
17343
  disconnect(id: number): void;
17344
+ /**
17345
+ * Sets multiple properties of an object at once. The properties argument should be a dictionary mapping property names to values.
17346
+ * @param properties Object containing the properties to set
17347
+ */
16812
17348
  set(properties: { [key: string]: any }): void;
16813
- block_signal_handler(id: number): any;
16814
- unblock_signal_handler(id: number): any;
16815
- stop_emission_by_name(detailedName: string): any;
17349
+ /**
17350
+ * Blocks a handler of an instance so it will not be called during any signal emissions
17351
+ * @param id Handler ID of the handler to be blocked
17352
+ */
17353
+ block_signal_handler(id: number): void;
17354
+ /**
17355
+ * Unblocks a handler so it will be called again during any signal emissions
17356
+ * @param id Handler ID of the handler to be unblocked
17357
+ */
17358
+ unblock_signal_handler(id: number): void;
17359
+ /**
17360
+ * Stops a signal's emission by the given signal name. This will prevent the default handler and any subsequent signal handlers from being invoked.
17361
+ * @param detailedName Name of the signal to stop emission of
17362
+ */
17363
+ stop_emission_by_name(detailedName: string): void;
16816
17364
  }
16817
17365
 
16818
17366
  namespace HandlerType {
@@ -17090,7 +17638,21 @@ export namespace Gda {
17090
17638
  * @returns the data if found, or %NULL if no such data exists.
17091
17639
  */
17092
17640
  get_data(key: string): any | null;
17093
- get_property(property_name: string): any;
17641
+ /**
17642
+ * Gets a property of an object.
17643
+ *
17644
+ * The value can be:
17645
+ * - an empty GObject.Value initialized by G_VALUE_INIT, which will be automatically initialized with the expected type of the property (since GLib 2.60)
17646
+ * - a GObject.Value initialized with the expected type of the property
17647
+ * - a GObject.Value initialized with a type to which the expected type of the property can be transformed
17648
+ *
17649
+ * In general, a copy is made of the property contents and the caller is responsible for freeing the memory by calling GObject.Value.unset.
17650
+ *
17651
+ * Note that GObject.Object.get_property is really intended for language bindings, GObject.Object.get is much more convenient for C programming.
17652
+ * @param property_name The name of the property to get
17653
+ * @param value Return location for the property value. Can be an empty GObject.Value initialized by G_VALUE_INIT (auto-initialized with expected type since GLib 2.60), a GObject.Value initialized with the expected property type, or a GObject.Value initialized with a transformable type
17654
+ */
17655
+ get_property(property_name: string, value: GObject.Value | any): any;
17094
17656
  /**
17095
17657
  * This function gets back user data pointers stored via
17096
17658
  * g_object_set_qdata().
@@ -17218,7 +17780,12 @@ export namespace Gda {
17218
17780
  * @param data data to associate with that key
17219
17781
  */
17220
17782
  set_data(key: string, data?: any | null): void;
17221
- set_property(property_name: string, value: any): void;
17783
+ /**
17784
+ * Sets a property on an object.
17785
+ * @param property_name The name of the property to set
17786
+ * @param value The value to set the property to
17787
+ */
17788
+ set_property(property_name: string, value: GObject.Value | any): void;
17222
17789
  /**
17223
17790
  * Remove a specified datum from the object's data associations,
17224
17791
  * without invoking the association's destroy handler.
@@ -17368,11 +17935,31 @@ export namespace Gda {
17368
17935
  * @param pspec
17369
17936
  */
17370
17937
  vfunc_set_property(property_id: number, value: GObject.Value | any, pspec: GObject.ParamSpec): void;
17938
+ /**
17939
+ * Disconnects a handler from an instance so it will not be called during any future or currently ongoing emissions of the signal it has been connected to.
17940
+ * @param id Handler ID of the handler to be disconnected
17941
+ */
17371
17942
  disconnect(id: number): void;
17943
+ /**
17944
+ * Sets multiple properties of an object at once. The properties argument should be a dictionary mapping property names to values.
17945
+ * @param properties Object containing the properties to set
17946
+ */
17372
17947
  set(properties: { [key: string]: any }): void;
17373
- block_signal_handler(id: number): any;
17374
- unblock_signal_handler(id: number): any;
17375
- stop_emission_by_name(detailedName: string): any;
17948
+ /**
17949
+ * Blocks a handler of an instance so it will not be called during any signal emissions
17950
+ * @param id Handler ID of the handler to be blocked
17951
+ */
17952
+ block_signal_handler(id: number): void;
17953
+ /**
17954
+ * Unblocks a handler so it will be called again during any signal emissions
17955
+ * @param id Handler ID of the handler to be unblocked
17956
+ */
17957
+ unblock_signal_handler(id: number): void;
17958
+ /**
17959
+ * Stops a signal's emission by the given signal name. This will prevent the default handler and any subsequent signal handlers from being invoked.
17960
+ * @param detailedName Name of the signal to stop emission of
17961
+ */
17962
+ stop_emission_by_name(detailedName: string): void;
17376
17963
  }
17377
17964
 
17378
17965
  namespace Holder {
@@ -17913,7 +18500,21 @@ export namespace Gda {
17913
18500
  * @returns the data if found, or %NULL if no such data exists.
17914
18501
  */
17915
18502
  get_data(key: string): any | null;
17916
- get_property(property_name: string): any;
18503
+ /**
18504
+ * Gets a property of an object.
18505
+ *
18506
+ * The value can be:
18507
+ * - an empty GObject.Value initialized by G_VALUE_INIT, which will be automatically initialized with the expected type of the property (since GLib 2.60)
18508
+ * - a GObject.Value initialized with the expected type of the property
18509
+ * - a GObject.Value initialized with a type to which the expected type of the property can be transformed
18510
+ *
18511
+ * In general, a copy is made of the property contents and the caller is responsible for freeing the memory by calling GObject.Value.unset.
18512
+ *
18513
+ * Note that GObject.Object.get_property is really intended for language bindings, GObject.Object.get is much more convenient for C programming.
18514
+ * @param property_name The name of the property to get
18515
+ * @param value Return location for the property value. Can be an empty GObject.Value initialized by G_VALUE_INIT (auto-initialized with expected type since GLib 2.60), a GObject.Value initialized with the expected property type, or a GObject.Value initialized with a transformable type
18516
+ */
18517
+ get_property(property_name: string, value: GObject.Value | any): any;
17917
18518
  /**
17918
18519
  * This function gets back user data pointers stored via
17919
18520
  * g_object_set_qdata().
@@ -18041,7 +18642,12 @@ export namespace Gda {
18041
18642
  * @param data data to associate with that key
18042
18643
  */
18043
18644
  set_data(key: string, data?: any | null): void;
18044
- set_property(property_name: string, value: any): void;
18645
+ /**
18646
+ * Sets a property on an object.
18647
+ * @param property_name The name of the property to set
18648
+ * @param value The value to set the property to
18649
+ */
18650
+ set_property(property_name: string, value: GObject.Value | any): void;
18045
18651
  /**
18046
18652
  * Remove a specified datum from the object's data associations,
18047
18653
  * without invoking the association's destroy handler.
@@ -18191,11 +18797,31 @@ export namespace Gda {
18191
18797
  * @param pspec
18192
18798
  */
18193
18799
  vfunc_set_property(property_id: number, value: GObject.Value | any, pspec: GObject.ParamSpec): void;
18800
+ /**
18801
+ * Disconnects a handler from an instance so it will not be called during any future or currently ongoing emissions of the signal it has been connected to.
18802
+ * @param id Handler ID of the handler to be disconnected
18803
+ */
18194
18804
  disconnect(id: number): void;
18805
+ /**
18806
+ * Sets multiple properties of an object at once. The properties argument should be a dictionary mapping property names to values.
18807
+ * @param properties Object containing the properties to set
18808
+ */
18195
18809
  set(properties: { [key: string]: any }): void;
18196
- block_signal_handler(id: number): any;
18197
- unblock_signal_handler(id: number): any;
18198
- stop_emission_by_name(detailedName: string): any;
18810
+ /**
18811
+ * Blocks a handler of an instance so it will not be called during any signal emissions
18812
+ * @param id Handler ID of the handler to be blocked
18813
+ */
18814
+ block_signal_handler(id: number): void;
18815
+ /**
18816
+ * Unblocks a handler so it will be called again during any signal emissions
18817
+ * @param id Handler ID of the handler to be unblocked
18818
+ */
18819
+ unblock_signal_handler(id: number): void;
18820
+ /**
18821
+ * Stops a signal's emission by the given signal name. This will prevent the default handler and any subsequent signal handlers from being invoked.
18822
+ * @param detailedName Name of the signal to stop emission of
18823
+ */
18824
+ stop_emission_by_name(detailedName: string): void;
18199
18825
  }
18200
18826
 
18201
18827
  namespace MetaStore {
@@ -20217,7 +20843,21 @@ export namespace Gda {
20217
20843
  * @returns the data if found, or %NULL if no such data exists.
20218
20844
  */
20219
20845
  get_data(key: string): any | null;
20220
- get_property(property_name: string): any;
20846
+ /**
20847
+ * Gets a property of an object.
20848
+ *
20849
+ * The value can be:
20850
+ * - an empty GObject.Value initialized by G_VALUE_INIT, which will be automatically initialized with the expected type of the property (since GLib 2.60)
20851
+ * - a GObject.Value initialized with the expected type of the property
20852
+ * - a GObject.Value initialized with a type to which the expected type of the property can be transformed
20853
+ *
20854
+ * In general, a copy is made of the property contents and the caller is responsible for freeing the memory by calling GObject.Value.unset.
20855
+ *
20856
+ * Note that GObject.Object.get_property is really intended for language bindings, GObject.Object.get is much more convenient for C programming.
20857
+ * @param property_name The name of the property to get
20858
+ * @param value Return location for the property value. Can be an empty GObject.Value initialized by G_VALUE_INIT (auto-initialized with expected type since GLib 2.60), a GObject.Value initialized with the expected property type, or a GObject.Value initialized with a transformable type
20859
+ */
20860
+ get_property(property_name: string, value: GObject.Value | any): any;
20221
20861
  /**
20222
20862
  * This function gets back user data pointers stored via
20223
20863
  * g_object_set_qdata().
@@ -20345,7 +20985,12 @@ export namespace Gda {
20345
20985
  * @param data data to associate with that key
20346
20986
  */
20347
20987
  set_data(key: string, data?: any | null): void;
20348
- set_property(property_name: string, value: any): void;
20988
+ /**
20989
+ * Sets a property on an object.
20990
+ * @param property_name The name of the property to set
20991
+ * @param value The value to set the property to
20992
+ */
20993
+ set_property(property_name: string, value: GObject.Value | any): void;
20349
20994
  /**
20350
20995
  * Remove a specified datum from the object's data associations,
20351
20996
  * without invoking the association's destroy handler.
@@ -20495,11 +21140,31 @@ export namespace Gda {
20495
21140
  * @param pspec
20496
21141
  */
20497
21142
  vfunc_set_property(property_id: number, value: GObject.Value | any, pspec: GObject.ParamSpec): void;
21143
+ /**
21144
+ * Disconnects a handler from an instance so it will not be called during any future or currently ongoing emissions of the signal it has been connected to.
21145
+ * @param id Handler ID of the handler to be disconnected
21146
+ */
20498
21147
  disconnect(id: number): void;
21148
+ /**
21149
+ * Sets multiple properties of an object at once. The properties argument should be a dictionary mapping property names to values.
21150
+ * @param properties Object containing the properties to set
21151
+ */
20499
21152
  set(properties: { [key: string]: any }): void;
20500
- block_signal_handler(id: number): any;
20501
- unblock_signal_handler(id: number): any;
20502
- stop_emission_by_name(detailedName: string): any;
21153
+ /**
21154
+ * Blocks a handler of an instance so it will not be called during any signal emissions
21155
+ * @param id Handler ID of the handler to be blocked
21156
+ */
21157
+ block_signal_handler(id: number): void;
21158
+ /**
21159
+ * Unblocks a handler so it will be called again during any signal emissions
21160
+ * @param id Handler ID of the handler to be unblocked
21161
+ */
21162
+ unblock_signal_handler(id: number): void;
21163
+ /**
21164
+ * Stops a signal's emission by the given signal name. This will prevent the default handler and any subsequent signal handlers from being invoked.
21165
+ * @param detailedName Name of the signal to stop emission of
21166
+ */
21167
+ stop_emission_by_name(detailedName: string): void;
20503
21168
  }
20504
21169
 
20505
21170
  namespace Statement {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@girs/gda-5.0",
3
- "version": "5.0.0-4.0.0-beta.21",
3
+ "version": "5.0.0-4.0.0-beta.23",
4
4
  "description": "GJS TypeScript type definitions for Gda-5.0, generated from library version 5.0.0",
5
5
  "type": "module",
6
6
  "module": "gda-5.0.js",
@@ -31,10 +31,10 @@
31
31
  "test": "tsc --project tsconfig.json"
32
32
  },
33
33
  "dependencies": {
34
- "@girs/gjs": "^4.0.0-beta.21",
35
- "@girs/glib-2.0": "^2.83.3-4.0.0-beta.21",
36
- "@girs/gobject-2.0": "^2.83.3-4.0.0-beta.21",
37
- "@girs/libxml2-2.0": "^2.0.0-4.0.0-beta.21"
34
+ "@girs/gjs": "^4.0.0-beta.23",
35
+ "@girs/glib-2.0": "^2.84.0-4.0.0-beta.23",
36
+ "@girs/gobject-2.0": "^2.84.0-4.0.0-beta.23",
37
+ "@girs/libxml2-2.0": "^2.0.0-4.0.0-beta.23"
38
38
  },
39
39
  "devDependencies": {
40
40
  "typescript": "*"