@girs/gdaui-5.0 5.0.0-3.2.4 → 5.0.0-3.2.6
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 +14 -1
- package/gdaui-5.0-ambient.d.ts +4 -1
- package/gdaui-5.0-import.d.ts +0 -1
- package/gdaui-5.0.d.cts +124 -0
- package/gdaui-5.0.d.ts +124 -0
- package/package.json +17 -17
package/README.md
CHANGED
|
@@ -5,7 +5,7 @@
|
|
|
5
5
|

|
|
6
6
|
|
|
7
7
|
|
|
8
|
-
GJS TypeScript type definitions for Gdaui-5.0, generated from library version 5.0.0 using [ts-for-gir](https://github.com/gjsify/ts-for-gir) v3.2.
|
|
8
|
+
GJS TypeScript type definitions for Gdaui-5.0, generated from library version 5.0.0 using [ts-for-gir](https://github.com/gjsify/ts-for-gir) v3.2.6.
|
|
9
9
|
|
|
10
10
|
Libgda is a (relatively small) database access library. This package provides GTK+ widgets to database access.
|
|
11
11
|
|
|
@@ -82,6 +82,19 @@ Now you have also type support for this, too:
|
|
|
82
82
|
const Gdaui = imports.gi.Gdaui;
|
|
83
83
|
```
|
|
84
84
|
|
|
85
|
+
|
|
86
|
+
### ESM vs. CommonJS
|
|
87
|
+
|
|
88
|
+
GJS supports two different import syntaxes. The new modern ESM syntax and the old global imports syntax.
|
|
89
|
+
|
|
90
|
+
In TypeScript projects for GJS and GNOME Shell extensions, you have the flexibility to use `ESM` syntax and then decide the import syntax for your bundled file. If your bundler is configured to use `CommonJS`, it will convert to the GJS-specific global imports syntax, like `const moduleName = imports.gi[moduleName]`. This is different from the traditional `require` syntax seen in Node.js. The global imports syntax is chosen because it aligns with the CommonJS format supported by NPM, which is used for the generated type definitions and this package.
|
|
91
|
+
|
|
92
|
+
On the other hand, if you configure your bundler to use ESM, it will retain the ESM import syntax. It's crucial to ensure that your bundler is set up to correctly translate and bundle these imports into either CommonJS or ESM format, depending on your project's requirements.
|
|
93
|
+
|
|
94
|
+
This approach is particularly important due to the `@girs` types, which include both `*.cjs `files, using the GJS global imports syntax, and `*.js` files, which utilize the ESM syntax. By appropriately setting up your bundler, you can control which syntax—CommonJS or ESM—is used in your project. The choice of CommonJS in this context is also due to the similarity between the GJS-specific global imports and CommonJS syntax, allowing for easier management and bundling in these specific types of projects.
|
|
95
|
+
|
|
96
|
+
Since GNOME Shell 45, you should only use ESM, even for GNOME Shell extensions. Before that, extensions had to use the global import syntax, unlike normal GJS applications, where ESM has been available for some time.
|
|
97
|
+
|
|
85
98
|
### Bundle
|
|
86
99
|
|
|
87
100
|
Depending on your project configuration, it is recommended to use a bundler like [esbuild](https://esbuild.github.io/). You can find examples using different bundlers [here](https://github.com/gjsify/ts-for-gir/tree/main/examples).
|
package/gdaui-5.0-ambient.d.ts
CHANGED
package/gdaui-5.0-import.d.ts
CHANGED
package/gdaui-5.0.d.cts
CHANGED
|
@@ -929,6 +929,13 @@ export module BasicForm {
|
|
|
929
929
|
paramlist?: any | null
|
|
930
930
|
show_actions?: boolean | null
|
|
931
931
|
xml_layout?: any | null
|
|
932
|
+
entriesAutoDefault?: boolean | null
|
|
933
|
+
/**
|
|
934
|
+
* Deprecated
|
|
935
|
+
*/
|
|
936
|
+
headersSensitive?: boolean | null
|
|
937
|
+
showActions?: boolean | null
|
|
938
|
+
xmlLayout?: any | null
|
|
932
939
|
}
|
|
933
940
|
|
|
934
941
|
}
|
|
@@ -938,14 +945,22 @@ export interface BasicForm extends Atk.ImplementorIface, Gtk.Buildable, Gtk.Orie
|
|
|
938
945
|
// Own properties of Gdaui-5.0.Gdaui.BasicForm
|
|
939
946
|
|
|
940
947
|
readonly can_expand_v: boolean
|
|
948
|
+
readonly canExpandV: boolean
|
|
941
949
|
entries_auto_default: boolean
|
|
950
|
+
entriesAutoDefault: boolean
|
|
942
951
|
/**
|
|
943
952
|
* Deprecated
|
|
944
953
|
*/
|
|
945
954
|
headers_sensitive: boolean
|
|
955
|
+
/**
|
|
956
|
+
* Deprecated
|
|
957
|
+
*/
|
|
958
|
+
headersSensitive: boolean
|
|
946
959
|
paramlist: any
|
|
947
960
|
show_actions: boolean
|
|
961
|
+
showActions: boolean
|
|
948
962
|
xml_layout: any
|
|
963
|
+
xmlLayout: any
|
|
949
964
|
|
|
950
965
|
// Own fields of Gdaui-5.0.Gdaui.BasicForm
|
|
951
966
|
|
|
@@ -1365,6 +1380,10 @@ export module Cloud {
|
|
|
1365
1380
|
min_scale?: number | null
|
|
1366
1381
|
model?: Gda.DataModel | null
|
|
1367
1382
|
weight_column?: number | null
|
|
1383
|
+
labelColumn?: number | null
|
|
1384
|
+
maxScale?: number | null
|
|
1385
|
+
minScale?: number | null
|
|
1386
|
+
weightColumn?: number | null
|
|
1368
1387
|
}
|
|
1369
1388
|
|
|
1370
1389
|
}
|
|
@@ -1374,10 +1393,14 @@ export interface Cloud extends Atk.ImplementorIface, DataSelector, Gtk.Buildable
|
|
|
1374
1393
|
// Own properties of Gdaui-5.0.Gdaui.Cloud
|
|
1375
1394
|
|
|
1376
1395
|
label_column: number
|
|
1396
|
+
labelColumn: number
|
|
1377
1397
|
max_scale: number
|
|
1398
|
+
maxScale: number
|
|
1378
1399
|
min_scale: number
|
|
1400
|
+
minScale: number
|
|
1379
1401
|
model: Gda.DataModel
|
|
1380
1402
|
weight_column: number
|
|
1403
|
+
weightColumn: number
|
|
1381
1404
|
|
|
1382
1405
|
// Own fields of Gdaui-5.0.Gdaui.Cloud
|
|
1383
1406
|
|
|
@@ -1670,6 +1693,7 @@ export module Combo {
|
|
|
1670
1693
|
|
|
1671
1694
|
as_list?: boolean | null
|
|
1672
1695
|
model: any
|
|
1696
|
+
asList?: boolean | null
|
|
1673
1697
|
}
|
|
1674
1698
|
|
|
1675
1699
|
}
|
|
@@ -1679,6 +1703,7 @@ export interface Combo extends Atk.ImplementorIface, DataSelector, Gtk.Buildable
|
|
|
1679
1703
|
// Own properties of Gdaui-5.0.Gdaui.Combo
|
|
1680
1704
|
|
|
1681
1705
|
as_list: boolean
|
|
1706
|
+
asList: boolean
|
|
1682
1707
|
model: any
|
|
1683
1708
|
|
|
1684
1709
|
// Conflicting properties
|
|
@@ -2056,6 +2081,8 @@ export module DataCellRendererBin {
|
|
|
2056
2081
|
to_be_deleted?: boolean | null
|
|
2057
2082
|
type?: GObject.GType | null
|
|
2058
2083
|
value?: any | null
|
|
2084
|
+
dataHandler?: Gda.DataHandler | null
|
|
2085
|
+
toBeDeleted?: boolean | null
|
|
2059
2086
|
}
|
|
2060
2087
|
|
|
2061
2088
|
}
|
|
@@ -2065,8 +2092,10 @@ export interface DataCellRendererBin {
|
|
|
2065
2092
|
// Own properties of Gdaui-5.0.Gdaui.DataCellRendererBin
|
|
2066
2093
|
|
|
2067
2094
|
readonly data_handler: Gda.DataHandler
|
|
2095
|
+
readonly dataHandler: Gda.DataHandler
|
|
2068
2096
|
editable: boolean
|
|
2069
2097
|
to_be_deleted: boolean
|
|
2098
|
+
toBeDeleted: boolean
|
|
2070
2099
|
readonly type: GObject.GType
|
|
2071
2100
|
value: any
|
|
2072
2101
|
|
|
@@ -2265,6 +2294,8 @@ export module DataCellRendererBoolean {
|
|
|
2265
2294
|
to_be_deleted?: boolean | null
|
|
2266
2295
|
type?: GObject.GType | null
|
|
2267
2296
|
value?: any | null
|
|
2297
|
+
dataHandler?: Gda.DataHandler | null
|
|
2298
|
+
toBeDeleted?: boolean | null
|
|
2268
2299
|
}
|
|
2269
2300
|
|
|
2270
2301
|
}
|
|
@@ -2274,8 +2305,10 @@ export interface DataCellRendererBoolean {
|
|
|
2274
2305
|
// Own properties of Gdaui-5.0.Gdaui.DataCellRendererBoolean
|
|
2275
2306
|
|
|
2276
2307
|
readonly data_handler: Gda.DataHandler
|
|
2308
|
+
readonly dataHandler: Gda.DataHandler
|
|
2277
2309
|
editable: boolean
|
|
2278
2310
|
to_be_deleted: boolean
|
|
2311
|
+
toBeDeleted: boolean
|
|
2279
2312
|
readonly type: GObject.GType
|
|
2280
2313
|
value: any
|
|
2281
2314
|
|
|
@@ -2461,6 +2494,12 @@ export module DataCellRendererCombo {
|
|
|
2461
2494
|
to_be_deleted?: boolean | null
|
|
2462
2495
|
values?: any | null
|
|
2463
2496
|
values_display?: any | null
|
|
2497
|
+
dataSet?: Set | null
|
|
2498
|
+
dataSetSource?: any | null
|
|
2499
|
+
setDefaultIfInvalid?: boolean | null
|
|
2500
|
+
showExpander?: boolean | null
|
|
2501
|
+
toBeDeleted?: boolean | null
|
|
2502
|
+
valuesDisplay?: any | null
|
|
2464
2503
|
}
|
|
2465
2504
|
|
|
2466
2505
|
}
|
|
@@ -2470,12 +2509,18 @@ export interface DataCellRendererCombo {
|
|
|
2470
2509
|
// Own properties of Gdaui-5.0.Gdaui.DataCellRendererCombo
|
|
2471
2510
|
|
|
2472
2511
|
readonly data_set: Set
|
|
2512
|
+
readonly dataSet: Set
|
|
2473
2513
|
readonly data_set_source: any
|
|
2514
|
+
readonly dataSetSource: any
|
|
2474
2515
|
set_default_if_invalid: boolean
|
|
2516
|
+
setDefaultIfInvalid: boolean
|
|
2475
2517
|
show_expander: boolean
|
|
2518
|
+
showExpander: boolean
|
|
2476
2519
|
to_be_deleted: boolean
|
|
2520
|
+
toBeDeleted: boolean
|
|
2477
2521
|
values: any
|
|
2478
2522
|
values_display: any
|
|
2523
|
+
valuesDisplay: any
|
|
2479
2524
|
|
|
2480
2525
|
// Own fields of Gdaui-5.0.Gdaui.DataCellRendererCombo
|
|
2481
2526
|
|
|
@@ -2772,6 +2817,7 @@ export module DataCellRendererInfo {
|
|
|
2772
2817
|
iter?: Gda.DataModelIter | null
|
|
2773
2818
|
store?: DataStore | null
|
|
2774
2819
|
to_be_deleted?: boolean | null
|
|
2820
|
+
toBeDeleted?: boolean | null
|
|
2775
2821
|
}
|
|
2776
2822
|
|
|
2777
2823
|
}
|
|
@@ -2785,6 +2831,7 @@ export interface DataCellRendererInfo {
|
|
|
2785
2831
|
readonly iter: Gda.DataModelIter
|
|
2786
2832
|
readonly store: DataStore
|
|
2787
2833
|
to_be_deleted: boolean
|
|
2834
|
+
toBeDeleted: boolean
|
|
2788
2835
|
|
|
2789
2836
|
// Own fields of Gdaui-5.0.Gdaui.DataCellRendererInfo
|
|
2790
2837
|
|
|
@@ -2938,6 +2985,8 @@ export module DataCellRendererTextual {
|
|
|
2938
2985
|
to_be_deleted?: boolean | null
|
|
2939
2986
|
type?: GObject.GType | null
|
|
2940
2987
|
value?: any | null
|
|
2988
|
+
dataHandler?: Gda.DataHandler | null
|
|
2989
|
+
toBeDeleted?: boolean | null
|
|
2941
2990
|
}
|
|
2942
2991
|
|
|
2943
2992
|
}
|
|
@@ -2947,8 +2996,10 @@ export interface DataCellRendererTextual {
|
|
|
2947
2996
|
// Own properties of Gdaui-5.0.Gdaui.DataCellRendererTextual
|
|
2948
2997
|
|
|
2949
2998
|
readonly data_handler: Gda.DataHandler
|
|
2999
|
+
readonly dataHandler: Gda.DataHandler
|
|
2950
3000
|
options: string | null
|
|
2951
3001
|
to_be_deleted: boolean
|
|
3002
|
+
toBeDeleted: boolean
|
|
2952
3003
|
readonly type: GObject.GType
|
|
2953
3004
|
value: any
|
|
2954
3005
|
|
|
@@ -3249,6 +3300,7 @@ export module DataFilter {
|
|
|
3249
3300
|
// Own constructor properties of Gdaui-5.0.Gdaui.DataFilter
|
|
3250
3301
|
|
|
3251
3302
|
data_widget?: DataProxy | null
|
|
3303
|
+
dataWidget?: DataProxy | null
|
|
3252
3304
|
}
|
|
3253
3305
|
|
|
3254
3306
|
}
|
|
@@ -3258,6 +3310,7 @@ export interface DataFilter extends Atk.ImplementorIface, Gtk.Buildable, Gtk.Ori
|
|
|
3258
3310
|
// Own properties of Gdaui-5.0.Gdaui.DataFilter
|
|
3259
3311
|
|
|
3260
3312
|
data_widget: DataProxy
|
|
3313
|
+
dataWidget: DataProxy
|
|
3261
3314
|
|
|
3262
3315
|
// Own fields of Gdaui-5.0.Gdaui.DataFilter
|
|
3263
3316
|
|
|
@@ -3502,6 +3555,7 @@ export module DataProxyInfo {
|
|
|
3502
3555
|
// Own constructor properties of Gdaui-5.0.Gdaui.DataProxyInfo
|
|
3503
3556
|
|
|
3504
3557
|
data_proxy?: DataProxy | null
|
|
3558
|
+
dataProxy?: DataProxy | null
|
|
3505
3559
|
}
|
|
3506
3560
|
|
|
3507
3561
|
}
|
|
@@ -3511,11 +3565,17 @@ export interface DataProxyInfo extends Atk.ImplementorIface, Gtk.Buildable, Gtk.
|
|
|
3511
3565
|
// Own properties of Gdaui-5.0.Gdaui.DataProxyInfo
|
|
3512
3566
|
|
|
3513
3567
|
data_proxy: DataProxy
|
|
3568
|
+
dataProxy: DataProxy
|
|
3514
3569
|
/**
|
|
3515
3570
|
* Use this property to obtain the #GtkUIManager object internally used (to add new actions
|
|
3516
3571
|
* for example).
|
|
3517
3572
|
*/
|
|
3518
3573
|
readonly ui_manager: Gtk.UIManager
|
|
3574
|
+
/**
|
|
3575
|
+
* Use this property to obtain the #GtkUIManager object internally used (to add new actions
|
|
3576
|
+
* for example).
|
|
3577
|
+
*/
|
|
3578
|
+
readonly uiManager: Gtk.UIManager
|
|
3519
3579
|
|
|
3520
3580
|
// Own fields of Gdaui-5.0.Gdaui.DataProxyInfo
|
|
3521
3581
|
|
|
@@ -3764,6 +3824,7 @@ export module DataStore {
|
|
|
3764
3824
|
|
|
3765
3825
|
model?: any | null
|
|
3766
3826
|
prepend_null_entry?: boolean | null
|
|
3827
|
+
prependNullEntry?: boolean | null
|
|
3767
3828
|
}
|
|
3768
3829
|
|
|
3769
3830
|
}
|
|
@@ -3774,6 +3835,7 @@ export interface DataStore extends Gtk.TreeModel {
|
|
|
3774
3835
|
|
|
3775
3836
|
readonly model: any
|
|
3776
3837
|
prepend_null_entry: boolean
|
|
3838
|
+
prependNullEntry: boolean
|
|
3777
3839
|
readonly proxy: any
|
|
3778
3840
|
|
|
3779
3841
|
// Own fields of Gdaui-5.0.Gdaui.DataStore
|
|
@@ -4818,6 +4880,7 @@ export module EntryCombo {
|
|
|
4818
4880
|
// Own constructor properties of Gdaui-5.0.Gdaui.EntryCombo
|
|
4819
4881
|
|
|
4820
4882
|
set_default_if_invalid?: boolean | null
|
|
4883
|
+
setDefaultIfInvalid?: boolean | null
|
|
4821
4884
|
}
|
|
4822
4885
|
|
|
4823
4886
|
}
|
|
@@ -4827,6 +4890,7 @@ export interface EntryCombo extends Atk.ImplementorIface, DataEntry, Gtk.Buildab
|
|
|
4827
4890
|
// Own properties of Gdaui-5.0.Gdaui.EntryCombo
|
|
4828
4891
|
|
|
4829
4892
|
set_default_if_invalid: boolean
|
|
4893
|
+
setDefaultIfInvalid: boolean
|
|
4830
4894
|
|
|
4831
4895
|
// Own fields of Gdaui-5.0.Gdaui.EntryCombo
|
|
4832
4896
|
|
|
@@ -5142,6 +5206,7 @@ export module EntryCommonTime {
|
|
|
5142
5206
|
|
|
5143
5207
|
editing_canceled?: boolean | null
|
|
5144
5208
|
type?: number | null
|
|
5209
|
+
editingCanceled?: boolean | null
|
|
5145
5210
|
}
|
|
5146
5211
|
|
|
5147
5212
|
}
|
|
@@ -5151,6 +5216,7 @@ export interface EntryCommonTime extends Atk.ImplementorIface, DataEntry, Gtk.Bu
|
|
|
5151
5216
|
// Own properties of Gdaui-5.0.Gdaui.EntryCommonTime
|
|
5152
5217
|
|
|
5153
5218
|
editing_canceled: boolean
|
|
5219
|
+
editingCanceled: boolean
|
|
5154
5220
|
type: number
|
|
5155
5221
|
|
|
5156
5222
|
// Own fields of Gdaui-5.0.Gdaui.EntryCommonTime
|
|
@@ -5909,6 +5975,7 @@ export module EntryNumber {
|
|
|
5909
5975
|
|
|
5910
5976
|
editing_canceled?: boolean | null
|
|
5911
5977
|
options?: string | null
|
|
5978
|
+
editingCanceled?: boolean | null
|
|
5912
5979
|
}
|
|
5913
5980
|
|
|
5914
5981
|
}
|
|
@@ -5918,6 +5985,7 @@ export interface EntryNumber extends Atk.ImplementorIface, DataEntry, Gtk.Builda
|
|
|
5918
5985
|
// Own properties of Gdaui-5.0.Gdaui.EntryNumber
|
|
5919
5986
|
|
|
5920
5987
|
editing_canceled: boolean
|
|
5988
|
+
editingCanceled: boolean
|
|
5921
5989
|
options: string | null
|
|
5922
5990
|
|
|
5923
5991
|
// Own fields of Gdaui-5.0.Gdaui.EntryNumber
|
|
@@ -6187,6 +6255,7 @@ export module EntryShell {
|
|
|
6187
6255
|
actions?: boolean | null
|
|
6188
6256
|
handler?: Gda.DataHandler | null
|
|
6189
6257
|
is_cell_renderer?: boolean | null
|
|
6258
|
+
isCellRenderer?: boolean | null
|
|
6190
6259
|
}
|
|
6191
6260
|
|
|
6192
6261
|
}
|
|
@@ -6198,6 +6267,7 @@ export interface EntryShell extends Atk.ImplementorIface, Gtk.Buildable, Gtk.Scr
|
|
|
6198
6267
|
actions: boolean
|
|
6199
6268
|
handler: Gda.DataHandler
|
|
6200
6269
|
is_cell_renderer: boolean
|
|
6270
|
+
isCellRenderer: boolean
|
|
6201
6271
|
|
|
6202
6272
|
// Own fields of Gdaui-5.0.Gdaui.EntryShell
|
|
6203
6273
|
|
|
@@ -6453,6 +6523,7 @@ export module EntryString {
|
|
|
6453
6523
|
editing_canceled?: boolean | null
|
|
6454
6524
|
multiline?: boolean | null
|
|
6455
6525
|
options?: string | null
|
|
6526
|
+
editingCanceled?: boolean | null
|
|
6456
6527
|
}
|
|
6457
6528
|
|
|
6458
6529
|
}
|
|
@@ -6462,6 +6533,7 @@ export interface EntryString extends Atk.ImplementorIface, DataEntry, Gtk.Builda
|
|
|
6462
6533
|
// Own properties of Gdaui-5.0.Gdaui.EntryString
|
|
6463
6534
|
|
|
6464
6535
|
editing_canceled: boolean
|
|
6536
|
+
editingCanceled: boolean
|
|
6465
6537
|
multiline: boolean
|
|
6466
6538
|
options: string | null
|
|
6467
6539
|
|
|
@@ -7262,6 +7334,7 @@ export module EntryWrapper {
|
|
|
7262
7334
|
// Own constructor properties of Gdaui-5.0.Gdaui.EntryWrapper
|
|
7263
7335
|
|
|
7264
7336
|
set_default_if_invalid?: boolean | null
|
|
7337
|
+
setDefaultIfInvalid?: boolean | null
|
|
7265
7338
|
}
|
|
7266
7339
|
|
|
7267
7340
|
}
|
|
@@ -7271,6 +7344,7 @@ export interface EntryWrapper extends Atk.ImplementorIface, DataEntry, Gtk.Build
|
|
|
7271
7344
|
// Own properties of Gdaui-5.0.Gdaui.EntryWrapper
|
|
7272
7345
|
|
|
7273
7346
|
set_default_if_invalid: boolean
|
|
7347
|
+
setDefaultIfInvalid: boolean
|
|
7274
7348
|
|
|
7275
7349
|
// Own fields of Gdaui-5.0.Gdaui.EntryWrapper
|
|
7276
7350
|
|
|
@@ -7534,6 +7608,7 @@ export interface Form extends Atk.ImplementorIface, DataProxy, DataSelector, Gtk
|
|
|
7534
7608
|
readonly info: DataProxyInfo
|
|
7535
7609
|
readonly model: Gda.DataModel
|
|
7536
7610
|
readonly raw_form: RawForm
|
|
7611
|
+
readonly rawForm: RawForm
|
|
7537
7612
|
|
|
7538
7613
|
// Own fields of Gdaui-5.0.Gdaui.Form
|
|
7539
7614
|
|
|
@@ -8230,6 +8305,7 @@ export interface Grid extends Atk.ImplementorIface, DataProxy, DataSelector, Gtk
|
|
|
8230
8305
|
readonly info: DataProxyInfo
|
|
8231
8306
|
model: Gda.DataModel
|
|
8232
8307
|
readonly raw_grid: RawGrid
|
|
8308
|
+
readonly rawGrid: RawGrid
|
|
8233
8309
|
|
|
8234
8310
|
// Own fields of Gdaui-5.0.Gdaui.Grid
|
|
8235
8311
|
|
|
@@ -8803,6 +8879,9 @@ export module NumericEntry {
|
|
|
8803
8879
|
n_decimals?: number | null
|
|
8804
8880
|
thousands_sep?: number | null
|
|
8805
8881
|
type?: GObject.GType | null
|
|
8882
|
+
decimalSep?: number | null
|
|
8883
|
+
nDecimals?: number | null
|
|
8884
|
+
thousandsSep?: number | null
|
|
8806
8885
|
}
|
|
8807
8886
|
|
|
8808
8887
|
}
|
|
@@ -8812,8 +8891,11 @@ export interface NumericEntry extends Atk.ImplementorIface, Gtk.Buildable, Gtk.C
|
|
|
8812
8891
|
// Own properties of Gdaui-5.0.Gdaui.NumericEntry
|
|
8813
8892
|
|
|
8814
8893
|
decimal_sep: number
|
|
8894
|
+
decimalSep: number
|
|
8815
8895
|
n_decimals: number
|
|
8896
|
+
nDecimals: number
|
|
8816
8897
|
thousands_sep: number
|
|
8898
|
+
thousandsSep: number
|
|
8817
8899
|
type: GObject.GType
|
|
8818
8900
|
|
|
8819
8901
|
// Own fields of Gdaui-5.0.Gdaui.NumericEntry
|
|
@@ -9860,6 +9942,9 @@ export module RawGrid {
|
|
|
9860
9942
|
info_cell_visible?: boolean | null
|
|
9861
9943
|
model: any
|
|
9862
9944
|
xml_layout?: any | null
|
|
9945
|
+
globalActionsVisible?: boolean | null
|
|
9946
|
+
infoCellVisible?: boolean | null
|
|
9947
|
+
xmlLayout?: any | null
|
|
9863
9948
|
}
|
|
9864
9949
|
|
|
9865
9950
|
}
|
|
@@ -9869,9 +9954,12 @@ export interface RawGrid extends Atk.ImplementorIface, DataProxy, DataSelector,
|
|
|
9869
9954
|
// Own properties of Gdaui-5.0.Gdaui.RawGrid
|
|
9870
9955
|
|
|
9871
9956
|
global_actions_visible: boolean
|
|
9957
|
+
globalActionsVisible: boolean
|
|
9872
9958
|
info_cell_visible: boolean
|
|
9959
|
+
infoCellVisible: boolean
|
|
9873
9960
|
model: any
|
|
9874
9961
|
xml_layout: any
|
|
9962
|
+
xmlLayout: any
|
|
9875
9963
|
|
|
9876
9964
|
// Own fields of Gdaui-5.0.Gdaui.RawGrid
|
|
9877
9965
|
|
|
@@ -10265,6 +10353,22 @@ export module RtEditor {
|
|
|
10265
10353
|
* Instead of showing the formatted text, display the raw text (in the txt2tags syntax)
|
|
10266
10354
|
*/
|
|
10267
10355
|
show_markup?: boolean | null
|
|
10356
|
+
/**
|
|
10357
|
+
* Determines if the contents of the widget appears in a scrolled window or not.
|
|
10358
|
+
*/
|
|
10359
|
+
inScrolledWindow?: boolean | null
|
|
10360
|
+
/**
|
|
10361
|
+
* If set to %TRUE, then the default text background is removed
|
|
10362
|
+
* and thus the textbackground is the default widget's background.
|
|
10363
|
+
*
|
|
10364
|
+
* This property has to be set before the widget is realized, and is taken into account only
|
|
10365
|
+
* if the widget is not editable (when it's realized).
|
|
10366
|
+
*/
|
|
10367
|
+
noBackground?: boolean | null
|
|
10368
|
+
/**
|
|
10369
|
+
* Instead of showing the formatted text, display the raw text (in the txt2tags syntax)
|
|
10370
|
+
*/
|
|
10371
|
+
showMarkup?: boolean | null
|
|
10268
10372
|
}
|
|
10269
10373
|
|
|
10270
10374
|
}
|
|
@@ -10281,6 +10385,10 @@ export interface RtEditor extends Atk.ImplementorIface, Gtk.Buildable, Gtk.Orien
|
|
|
10281
10385
|
* Determines if the contents of the widget appears in a scrolled window or not.
|
|
10282
10386
|
*/
|
|
10283
10387
|
in_scrolled_window: boolean
|
|
10388
|
+
/**
|
|
10389
|
+
* Determines if the contents of the widget appears in a scrolled window or not.
|
|
10390
|
+
*/
|
|
10391
|
+
inScrolledWindow: boolean
|
|
10284
10392
|
/**
|
|
10285
10393
|
* If set to %TRUE, then the default text background is removed
|
|
10286
10394
|
* and thus the textbackground is the default widget's background.
|
|
@@ -10289,10 +10397,22 @@ export interface RtEditor extends Atk.ImplementorIface, Gtk.Buildable, Gtk.Orien
|
|
|
10289
10397
|
* if the widget is not editable (when it's realized).
|
|
10290
10398
|
*/
|
|
10291
10399
|
no_background: boolean
|
|
10400
|
+
/**
|
|
10401
|
+
* If set to %TRUE, then the default text background is removed
|
|
10402
|
+
* and thus the textbackground is the default widget's background.
|
|
10403
|
+
*
|
|
10404
|
+
* This property has to be set before the widget is realized, and is taken into account only
|
|
10405
|
+
* if the widget is not editable (when it's realized).
|
|
10406
|
+
*/
|
|
10407
|
+
noBackground: boolean
|
|
10292
10408
|
/**
|
|
10293
10409
|
* Instead of showing the formatted text, display the raw text (in the txt2tags syntax)
|
|
10294
10410
|
*/
|
|
10295
10411
|
show_markup: boolean
|
|
10412
|
+
/**
|
|
10413
|
+
* Instead of showing the formatted text, display the raw text (in the txt2tags syntax)
|
|
10414
|
+
*/
|
|
10415
|
+
showMarkup: boolean
|
|
10296
10416
|
|
|
10297
10417
|
// Own fields of Gdaui-5.0.Gdaui.RtEditor
|
|
10298
10418
|
|
|
@@ -10572,6 +10692,8 @@ export module ServerOperation {
|
|
|
10572
10692
|
|
|
10573
10693
|
hide_single_header?: boolean | null
|
|
10574
10694
|
server_operation?: Gda.ServerOperation | null
|
|
10695
|
+
hideSingleHeader?: boolean | null
|
|
10696
|
+
serverOperation?: Gda.ServerOperation | null
|
|
10575
10697
|
}
|
|
10576
10698
|
|
|
10577
10699
|
}
|
|
@@ -10581,7 +10703,9 @@ export interface ServerOperation extends Atk.ImplementorIface, Gtk.Buildable, Gt
|
|
|
10581
10703
|
// Own properties of Gdaui-5.0.Gdaui.ServerOperation
|
|
10582
10704
|
|
|
10583
10705
|
hide_single_header: boolean
|
|
10706
|
+
hideSingleHeader: boolean
|
|
10584
10707
|
readonly server_operation: Gda.ServerOperation
|
|
10708
|
+
readonly serverOperation: Gda.ServerOperation
|
|
10585
10709
|
|
|
10586
10710
|
// Own fields of Gdaui-5.0.Gdaui.ServerOperation
|
|
10587
10711
|
|
package/gdaui-5.0.d.ts
CHANGED
|
@@ -931,6 +931,13 @@ module BasicForm {
|
|
|
931
931
|
paramlist?: any | null
|
|
932
932
|
show_actions?: boolean | null
|
|
933
933
|
xml_layout?: any | null
|
|
934
|
+
entriesAutoDefault?: boolean | null
|
|
935
|
+
/**
|
|
936
|
+
* Deprecated
|
|
937
|
+
*/
|
|
938
|
+
headersSensitive?: boolean | null
|
|
939
|
+
showActions?: boolean | null
|
|
940
|
+
xmlLayout?: any | null
|
|
934
941
|
}
|
|
935
942
|
|
|
936
943
|
}
|
|
@@ -940,14 +947,22 @@ interface BasicForm extends Atk.ImplementorIface, Gtk.Buildable, Gtk.Orientable
|
|
|
940
947
|
// Own properties of Gdaui-5.0.Gdaui.BasicForm
|
|
941
948
|
|
|
942
949
|
readonly can_expand_v: boolean
|
|
950
|
+
readonly canExpandV: boolean
|
|
943
951
|
entries_auto_default: boolean
|
|
952
|
+
entriesAutoDefault: boolean
|
|
944
953
|
/**
|
|
945
954
|
* Deprecated
|
|
946
955
|
*/
|
|
947
956
|
headers_sensitive: boolean
|
|
957
|
+
/**
|
|
958
|
+
* Deprecated
|
|
959
|
+
*/
|
|
960
|
+
headersSensitive: boolean
|
|
948
961
|
paramlist: any
|
|
949
962
|
show_actions: boolean
|
|
963
|
+
showActions: boolean
|
|
950
964
|
xml_layout: any
|
|
965
|
+
xmlLayout: any
|
|
951
966
|
|
|
952
967
|
// Own fields of Gdaui-5.0.Gdaui.BasicForm
|
|
953
968
|
|
|
@@ -1367,6 +1382,10 @@ module Cloud {
|
|
|
1367
1382
|
min_scale?: number | null
|
|
1368
1383
|
model?: Gda.DataModel | null
|
|
1369
1384
|
weight_column?: number | null
|
|
1385
|
+
labelColumn?: number | null
|
|
1386
|
+
maxScale?: number | null
|
|
1387
|
+
minScale?: number | null
|
|
1388
|
+
weightColumn?: number | null
|
|
1370
1389
|
}
|
|
1371
1390
|
|
|
1372
1391
|
}
|
|
@@ -1376,10 +1395,14 @@ interface Cloud extends Atk.ImplementorIface, DataSelector, Gtk.Buildable, Gtk.O
|
|
|
1376
1395
|
// Own properties of Gdaui-5.0.Gdaui.Cloud
|
|
1377
1396
|
|
|
1378
1397
|
label_column: number
|
|
1398
|
+
labelColumn: number
|
|
1379
1399
|
max_scale: number
|
|
1400
|
+
maxScale: number
|
|
1380
1401
|
min_scale: number
|
|
1402
|
+
minScale: number
|
|
1381
1403
|
model: Gda.DataModel
|
|
1382
1404
|
weight_column: number
|
|
1405
|
+
weightColumn: number
|
|
1383
1406
|
|
|
1384
1407
|
// Own fields of Gdaui-5.0.Gdaui.Cloud
|
|
1385
1408
|
|
|
@@ -1672,6 +1695,7 @@ module Combo {
|
|
|
1672
1695
|
|
|
1673
1696
|
as_list?: boolean | null
|
|
1674
1697
|
model: any
|
|
1698
|
+
asList?: boolean | null
|
|
1675
1699
|
}
|
|
1676
1700
|
|
|
1677
1701
|
}
|
|
@@ -1681,6 +1705,7 @@ interface Combo extends Atk.ImplementorIface, DataSelector, Gtk.Buildable, Gtk.C
|
|
|
1681
1705
|
// Own properties of Gdaui-5.0.Gdaui.Combo
|
|
1682
1706
|
|
|
1683
1707
|
as_list: boolean
|
|
1708
|
+
asList: boolean
|
|
1684
1709
|
model: any
|
|
1685
1710
|
|
|
1686
1711
|
// Conflicting properties
|
|
@@ -2058,6 +2083,8 @@ module DataCellRendererBin {
|
|
|
2058
2083
|
to_be_deleted?: boolean | null
|
|
2059
2084
|
type?: GObject.GType | null
|
|
2060
2085
|
value?: any | null
|
|
2086
|
+
dataHandler?: Gda.DataHandler | null
|
|
2087
|
+
toBeDeleted?: boolean | null
|
|
2061
2088
|
}
|
|
2062
2089
|
|
|
2063
2090
|
}
|
|
@@ -2067,8 +2094,10 @@ interface DataCellRendererBin {
|
|
|
2067
2094
|
// Own properties of Gdaui-5.0.Gdaui.DataCellRendererBin
|
|
2068
2095
|
|
|
2069
2096
|
readonly data_handler: Gda.DataHandler
|
|
2097
|
+
readonly dataHandler: Gda.DataHandler
|
|
2070
2098
|
editable: boolean
|
|
2071
2099
|
to_be_deleted: boolean
|
|
2100
|
+
toBeDeleted: boolean
|
|
2072
2101
|
readonly type: GObject.GType
|
|
2073
2102
|
value: any
|
|
2074
2103
|
|
|
@@ -2267,6 +2296,8 @@ module DataCellRendererBoolean {
|
|
|
2267
2296
|
to_be_deleted?: boolean | null
|
|
2268
2297
|
type?: GObject.GType | null
|
|
2269
2298
|
value?: any | null
|
|
2299
|
+
dataHandler?: Gda.DataHandler | null
|
|
2300
|
+
toBeDeleted?: boolean | null
|
|
2270
2301
|
}
|
|
2271
2302
|
|
|
2272
2303
|
}
|
|
@@ -2276,8 +2307,10 @@ interface DataCellRendererBoolean {
|
|
|
2276
2307
|
// Own properties of Gdaui-5.0.Gdaui.DataCellRendererBoolean
|
|
2277
2308
|
|
|
2278
2309
|
readonly data_handler: Gda.DataHandler
|
|
2310
|
+
readonly dataHandler: Gda.DataHandler
|
|
2279
2311
|
editable: boolean
|
|
2280
2312
|
to_be_deleted: boolean
|
|
2313
|
+
toBeDeleted: boolean
|
|
2281
2314
|
readonly type: GObject.GType
|
|
2282
2315
|
value: any
|
|
2283
2316
|
|
|
@@ -2463,6 +2496,12 @@ module DataCellRendererCombo {
|
|
|
2463
2496
|
to_be_deleted?: boolean | null
|
|
2464
2497
|
values?: any | null
|
|
2465
2498
|
values_display?: any | null
|
|
2499
|
+
dataSet?: Set | null
|
|
2500
|
+
dataSetSource?: any | null
|
|
2501
|
+
setDefaultIfInvalid?: boolean | null
|
|
2502
|
+
showExpander?: boolean | null
|
|
2503
|
+
toBeDeleted?: boolean | null
|
|
2504
|
+
valuesDisplay?: any | null
|
|
2466
2505
|
}
|
|
2467
2506
|
|
|
2468
2507
|
}
|
|
@@ -2472,12 +2511,18 @@ interface DataCellRendererCombo {
|
|
|
2472
2511
|
// Own properties of Gdaui-5.0.Gdaui.DataCellRendererCombo
|
|
2473
2512
|
|
|
2474
2513
|
readonly data_set: Set
|
|
2514
|
+
readonly dataSet: Set
|
|
2475
2515
|
readonly data_set_source: any
|
|
2516
|
+
readonly dataSetSource: any
|
|
2476
2517
|
set_default_if_invalid: boolean
|
|
2518
|
+
setDefaultIfInvalid: boolean
|
|
2477
2519
|
show_expander: boolean
|
|
2520
|
+
showExpander: boolean
|
|
2478
2521
|
to_be_deleted: boolean
|
|
2522
|
+
toBeDeleted: boolean
|
|
2479
2523
|
values: any
|
|
2480
2524
|
values_display: any
|
|
2525
|
+
valuesDisplay: any
|
|
2481
2526
|
|
|
2482
2527
|
// Own fields of Gdaui-5.0.Gdaui.DataCellRendererCombo
|
|
2483
2528
|
|
|
@@ -2774,6 +2819,7 @@ module DataCellRendererInfo {
|
|
|
2774
2819
|
iter?: Gda.DataModelIter | null
|
|
2775
2820
|
store?: DataStore | null
|
|
2776
2821
|
to_be_deleted?: boolean | null
|
|
2822
|
+
toBeDeleted?: boolean | null
|
|
2777
2823
|
}
|
|
2778
2824
|
|
|
2779
2825
|
}
|
|
@@ -2787,6 +2833,7 @@ interface DataCellRendererInfo {
|
|
|
2787
2833
|
readonly iter: Gda.DataModelIter
|
|
2788
2834
|
readonly store: DataStore
|
|
2789
2835
|
to_be_deleted: boolean
|
|
2836
|
+
toBeDeleted: boolean
|
|
2790
2837
|
|
|
2791
2838
|
// Own fields of Gdaui-5.0.Gdaui.DataCellRendererInfo
|
|
2792
2839
|
|
|
@@ -2940,6 +2987,8 @@ module DataCellRendererTextual {
|
|
|
2940
2987
|
to_be_deleted?: boolean | null
|
|
2941
2988
|
type?: GObject.GType | null
|
|
2942
2989
|
value?: any | null
|
|
2990
|
+
dataHandler?: Gda.DataHandler | null
|
|
2991
|
+
toBeDeleted?: boolean | null
|
|
2943
2992
|
}
|
|
2944
2993
|
|
|
2945
2994
|
}
|
|
@@ -2949,8 +2998,10 @@ interface DataCellRendererTextual {
|
|
|
2949
2998
|
// Own properties of Gdaui-5.0.Gdaui.DataCellRendererTextual
|
|
2950
2999
|
|
|
2951
3000
|
readonly data_handler: Gda.DataHandler
|
|
3001
|
+
readonly dataHandler: Gda.DataHandler
|
|
2952
3002
|
options: string | null
|
|
2953
3003
|
to_be_deleted: boolean
|
|
3004
|
+
toBeDeleted: boolean
|
|
2954
3005
|
readonly type: GObject.GType
|
|
2955
3006
|
value: any
|
|
2956
3007
|
|
|
@@ -3251,6 +3302,7 @@ module DataFilter {
|
|
|
3251
3302
|
// Own constructor properties of Gdaui-5.0.Gdaui.DataFilter
|
|
3252
3303
|
|
|
3253
3304
|
data_widget?: DataProxy | null
|
|
3305
|
+
dataWidget?: DataProxy | null
|
|
3254
3306
|
}
|
|
3255
3307
|
|
|
3256
3308
|
}
|
|
@@ -3260,6 +3312,7 @@ interface DataFilter extends Atk.ImplementorIface, Gtk.Buildable, Gtk.Orientable
|
|
|
3260
3312
|
// Own properties of Gdaui-5.0.Gdaui.DataFilter
|
|
3261
3313
|
|
|
3262
3314
|
data_widget: DataProxy
|
|
3315
|
+
dataWidget: DataProxy
|
|
3263
3316
|
|
|
3264
3317
|
// Own fields of Gdaui-5.0.Gdaui.DataFilter
|
|
3265
3318
|
|
|
@@ -3504,6 +3557,7 @@ module DataProxyInfo {
|
|
|
3504
3557
|
// Own constructor properties of Gdaui-5.0.Gdaui.DataProxyInfo
|
|
3505
3558
|
|
|
3506
3559
|
data_proxy?: DataProxy | null
|
|
3560
|
+
dataProxy?: DataProxy | null
|
|
3507
3561
|
}
|
|
3508
3562
|
|
|
3509
3563
|
}
|
|
@@ -3513,11 +3567,17 @@ interface DataProxyInfo extends Atk.ImplementorIface, Gtk.Buildable, Gtk.Orienta
|
|
|
3513
3567
|
// Own properties of Gdaui-5.0.Gdaui.DataProxyInfo
|
|
3514
3568
|
|
|
3515
3569
|
data_proxy: DataProxy
|
|
3570
|
+
dataProxy: DataProxy
|
|
3516
3571
|
/**
|
|
3517
3572
|
* Use this property to obtain the #GtkUIManager object internally used (to add new actions
|
|
3518
3573
|
* for example).
|
|
3519
3574
|
*/
|
|
3520
3575
|
readonly ui_manager: Gtk.UIManager
|
|
3576
|
+
/**
|
|
3577
|
+
* Use this property to obtain the #GtkUIManager object internally used (to add new actions
|
|
3578
|
+
* for example).
|
|
3579
|
+
*/
|
|
3580
|
+
readonly uiManager: Gtk.UIManager
|
|
3521
3581
|
|
|
3522
3582
|
// Own fields of Gdaui-5.0.Gdaui.DataProxyInfo
|
|
3523
3583
|
|
|
@@ -3766,6 +3826,7 @@ module DataStore {
|
|
|
3766
3826
|
|
|
3767
3827
|
model?: any | null
|
|
3768
3828
|
prepend_null_entry?: boolean | null
|
|
3829
|
+
prependNullEntry?: boolean | null
|
|
3769
3830
|
}
|
|
3770
3831
|
|
|
3771
3832
|
}
|
|
@@ -3776,6 +3837,7 @@ interface DataStore extends Gtk.TreeModel {
|
|
|
3776
3837
|
|
|
3777
3838
|
readonly model: any
|
|
3778
3839
|
prepend_null_entry: boolean
|
|
3840
|
+
prependNullEntry: boolean
|
|
3779
3841
|
readonly proxy: any
|
|
3780
3842
|
|
|
3781
3843
|
// Own fields of Gdaui-5.0.Gdaui.DataStore
|
|
@@ -4820,6 +4882,7 @@ module EntryCombo {
|
|
|
4820
4882
|
// Own constructor properties of Gdaui-5.0.Gdaui.EntryCombo
|
|
4821
4883
|
|
|
4822
4884
|
set_default_if_invalid?: boolean | null
|
|
4885
|
+
setDefaultIfInvalid?: boolean | null
|
|
4823
4886
|
}
|
|
4824
4887
|
|
|
4825
4888
|
}
|
|
@@ -4829,6 +4892,7 @@ interface EntryCombo extends Atk.ImplementorIface, DataEntry, Gtk.Buildable, Gtk
|
|
|
4829
4892
|
// Own properties of Gdaui-5.0.Gdaui.EntryCombo
|
|
4830
4893
|
|
|
4831
4894
|
set_default_if_invalid: boolean
|
|
4895
|
+
setDefaultIfInvalid: boolean
|
|
4832
4896
|
|
|
4833
4897
|
// Own fields of Gdaui-5.0.Gdaui.EntryCombo
|
|
4834
4898
|
|
|
@@ -5144,6 +5208,7 @@ module EntryCommonTime {
|
|
|
5144
5208
|
|
|
5145
5209
|
editing_canceled?: boolean | null
|
|
5146
5210
|
type?: number | null
|
|
5211
|
+
editingCanceled?: boolean | null
|
|
5147
5212
|
}
|
|
5148
5213
|
|
|
5149
5214
|
}
|
|
@@ -5153,6 +5218,7 @@ interface EntryCommonTime extends Atk.ImplementorIface, DataEntry, Gtk.Buildable
|
|
|
5153
5218
|
// Own properties of Gdaui-5.0.Gdaui.EntryCommonTime
|
|
5154
5219
|
|
|
5155
5220
|
editing_canceled: boolean
|
|
5221
|
+
editingCanceled: boolean
|
|
5156
5222
|
type: number
|
|
5157
5223
|
|
|
5158
5224
|
// Own fields of Gdaui-5.0.Gdaui.EntryCommonTime
|
|
@@ -5911,6 +5977,7 @@ module EntryNumber {
|
|
|
5911
5977
|
|
|
5912
5978
|
editing_canceled?: boolean | null
|
|
5913
5979
|
options?: string | null
|
|
5980
|
+
editingCanceled?: boolean | null
|
|
5914
5981
|
}
|
|
5915
5982
|
|
|
5916
5983
|
}
|
|
@@ -5920,6 +5987,7 @@ interface EntryNumber extends Atk.ImplementorIface, DataEntry, Gtk.Buildable, Gt
|
|
|
5920
5987
|
// Own properties of Gdaui-5.0.Gdaui.EntryNumber
|
|
5921
5988
|
|
|
5922
5989
|
editing_canceled: boolean
|
|
5990
|
+
editingCanceled: boolean
|
|
5923
5991
|
options: string | null
|
|
5924
5992
|
|
|
5925
5993
|
// Own fields of Gdaui-5.0.Gdaui.EntryNumber
|
|
@@ -6189,6 +6257,7 @@ module EntryShell {
|
|
|
6189
6257
|
actions?: boolean | null
|
|
6190
6258
|
handler?: Gda.DataHandler | null
|
|
6191
6259
|
is_cell_renderer?: boolean | null
|
|
6260
|
+
isCellRenderer?: boolean | null
|
|
6192
6261
|
}
|
|
6193
6262
|
|
|
6194
6263
|
}
|
|
@@ -6200,6 +6269,7 @@ interface EntryShell extends Atk.ImplementorIface, Gtk.Buildable, Gtk.Scrollable
|
|
|
6200
6269
|
actions: boolean
|
|
6201
6270
|
handler: Gda.DataHandler
|
|
6202
6271
|
is_cell_renderer: boolean
|
|
6272
|
+
isCellRenderer: boolean
|
|
6203
6273
|
|
|
6204
6274
|
// Own fields of Gdaui-5.0.Gdaui.EntryShell
|
|
6205
6275
|
|
|
@@ -6455,6 +6525,7 @@ module EntryString {
|
|
|
6455
6525
|
editing_canceled?: boolean | null
|
|
6456
6526
|
multiline?: boolean | null
|
|
6457
6527
|
options?: string | null
|
|
6528
|
+
editingCanceled?: boolean | null
|
|
6458
6529
|
}
|
|
6459
6530
|
|
|
6460
6531
|
}
|
|
@@ -6464,6 +6535,7 @@ interface EntryString extends Atk.ImplementorIface, DataEntry, Gtk.Buildable, Gt
|
|
|
6464
6535
|
// Own properties of Gdaui-5.0.Gdaui.EntryString
|
|
6465
6536
|
|
|
6466
6537
|
editing_canceled: boolean
|
|
6538
|
+
editingCanceled: boolean
|
|
6467
6539
|
multiline: boolean
|
|
6468
6540
|
options: string | null
|
|
6469
6541
|
|
|
@@ -7264,6 +7336,7 @@ module EntryWrapper {
|
|
|
7264
7336
|
// Own constructor properties of Gdaui-5.0.Gdaui.EntryWrapper
|
|
7265
7337
|
|
|
7266
7338
|
set_default_if_invalid?: boolean | null
|
|
7339
|
+
setDefaultIfInvalid?: boolean | null
|
|
7267
7340
|
}
|
|
7268
7341
|
|
|
7269
7342
|
}
|
|
@@ -7273,6 +7346,7 @@ interface EntryWrapper extends Atk.ImplementorIface, DataEntry, Gtk.Buildable, G
|
|
|
7273
7346
|
// Own properties of Gdaui-5.0.Gdaui.EntryWrapper
|
|
7274
7347
|
|
|
7275
7348
|
set_default_if_invalid: boolean
|
|
7349
|
+
setDefaultIfInvalid: boolean
|
|
7276
7350
|
|
|
7277
7351
|
// Own fields of Gdaui-5.0.Gdaui.EntryWrapper
|
|
7278
7352
|
|
|
@@ -7536,6 +7610,7 @@ interface Form extends Atk.ImplementorIface, DataProxy, DataSelector, Gtk.Builda
|
|
|
7536
7610
|
readonly info: DataProxyInfo
|
|
7537
7611
|
readonly model: Gda.DataModel
|
|
7538
7612
|
readonly raw_form: RawForm
|
|
7613
|
+
readonly rawForm: RawForm
|
|
7539
7614
|
|
|
7540
7615
|
// Own fields of Gdaui-5.0.Gdaui.Form
|
|
7541
7616
|
|
|
@@ -8232,6 +8307,7 @@ interface Grid extends Atk.ImplementorIface, DataProxy, DataSelector, Gtk.Builda
|
|
|
8232
8307
|
readonly info: DataProxyInfo
|
|
8233
8308
|
model: Gda.DataModel
|
|
8234
8309
|
readonly raw_grid: RawGrid
|
|
8310
|
+
readonly rawGrid: RawGrid
|
|
8235
8311
|
|
|
8236
8312
|
// Own fields of Gdaui-5.0.Gdaui.Grid
|
|
8237
8313
|
|
|
@@ -8805,6 +8881,9 @@ module NumericEntry {
|
|
|
8805
8881
|
n_decimals?: number | null
|
|
8806
8882
|
thousands_sep?: number | null
|
|
8807
8883
|
type?: GObject.GType | null
|
|
8884
|
+
decimalSep?: number | null
|
|
8885
|
+
nDecimals?: number | null
|
|
8886
|
+
thousandsSep?: number | null
|
|
8808
8887
|
}
|
|
8809
8888
|
|
|
8810
8889
|
}
|
|
@@ -8814,8 +8893,11 @@ interface NumericEntry extends Atk.ImplementorIface, Gtk.Buildable, Gtk.CellEdit
|
|
|
8814
8893
|
// Own properties of Gdaui-5.0.Gdaui.NumericEntry
|
|
8815
8894
|
|
|
8816
8895
|
decimal_sep: number
|
|
8896
|
+
decimalSep: number
|
|
8817
8897
|
n_decimals: number
|
|
8898
|
+
nDecimals: number
|
|
8818
8899
|
thousands_sep: number
|
|
8900
|
+
thousandsSep: number
|
|
8819
8901
|
type: GObject.GType
|
|
8820
8902
|
|
|
8821
8903
|
// Own fields of Gdaui-5.0.Gdaui.NumericEntry
|
|
@@ -9862,6 +9944,9 @@ module RawGrid {
|
|
|
9862
9944
|
info_cell_visible?: boolean | null
|
|
9863
9945
|
model: any
|
|
9864
9946
|
xml_layout?: any | null
|
|
9947
|
+
globalActionsVisible?: boolean | null
|
|
9948
|
+
infoCellVisible?: boolean | null
|
|
9949
|
+
xmlLayout?: any | null
|
|
9865
9950
|
}
|
|
9866
9951
|
|
|
9867
9952
|
}
|
|
@@ -9871,9 +9956,12 @@ interface RawGrid extends Atk.ImplementorIface, DataProxy, DataSelector, Gtk.Bui
|
|
|
9871
9956
|
// Own properties of Gdaui-5.0.Gdaui.RawGrid
|
|
9872
9957
|
|
|
9873
9958
|
global_actions_visible: boolean
|
|
9959
|
+
globalActionsVisible: boolean
|
|
9874
9960
|
info_cell_visible: boolean
|
|
9961
|
+
infoCellVisible: boolean
|
|
9875
9962
|
model: any
|
|
9876
9963
|
xml_layout: any
|
|
9964
|
+
xmlLayout: any
|
|
9877
9965
|
|
|
9878
9966
|
// Own fields of Gdaui-5.0.Gdaui.RawGrid
|
|
9879
9967
|
|
|
@@ -10267,6 +10355,22 @@ module RtEditor {
|
|
|
10267
10355
|
* Instead of showing the formatted text, display the raw text (in the txt2tags syntax)
|
|
10268
10356
|
*/
|
|
10269
10357
|
show_markup?: boolean | null
|
|
10358
|
+
/**
|
|
10359
|
+
* Determines if the contents of the widget appears in a scrolled window or not.
|
|
10360
|
+
*/
|
|
10361
|
+
inScrolledWindow?: boolean | null
|
|
10362
|
+
/**
|
|
10363
|
+
* If set to %TRUE, then the default text background is removed
|
|
10364
|
+
* and thus the textbackground is the default widget's background.
|
|
10365
|
+
*
|
|
10366
|
+
* This property has to be set before the widget is realized, and is taken into account only
|
|
10367
|
+
* if the widget is not editable (when it's realized).
|
|
10368
|
+
*/
|
|
10369
|
+
noBackground?: boolean | null
|
|
10370
|
+
/**
|
|
10371
|
+
* Instead of showing the formatted text, display the raw text (in the txt2tags syntax)
|
|
10372
|
+
*/
|
|
10373
|
+
showMarkup?: boolean | null
|
|
10270
10374
|
}
|
|
10271
10375
|
|
|
10272
10376
|
}
|
|
@@ -10283,6 +10387,10 @@ interface RtEditor extends Atk.ImplementorIface, Gtk.Buildable, Gtk.Orientable {
|
|
|
10283
10387
|
* Determines if the contents of the widget appears in a scrolled window or not.
|
|
10284
10388
|
*/
|
|
10285
10389
|
in_scrolled_window: boolean
|
|
10390
|
+
/**
|
|
10391
|
+
* Determines if the contents of the widget appears in a scrolled window or not.
|
|
10392
|
+
*/
|
|
10393
|
+
inScrolledWindow: boolean
|
|
10286
10394
|
/**
|
|
10287
10395
|
* If set to %TRUE, then the default text background is removed
|
|
10288
10396
|
* and thus the textbackground is the default widget's background.
|
|
@@ -10291,10 +10399,22 @@ interface RtEditor extends Atk.ImplementorIface, Gtk.Buildable, Gtk.Orientable {
|
|
|
10291
10399
|
* if the widget is not editable (when it's realized).
|
|
10292
10400
|
*/
|
|
10293
10401
|
no_background: boolean
|
|
10402
|
+
/**
|
|
10403
|
+
* If set to %TRUE, then the default text background is removed
|
|
10404
|
+
* and thus the textbackground is the default widget's background.
|
|
10405
|
+
*
|
|
10406
|
+
* This property has to be set before the widget is realized, and is taken into account only
|
|
10407
|
+
* if the widget is not editable (when it's realized).
|
|
10408
|
+
*/
|
|
10409
|
+
noBackground: boolean
|
|
10294
10410
|
/**
|
|
10295
10411
|
* Instead of showing the formatted text, display the raw text (in the txt2tags syntax)
|
|
10296
10412
|
*/
|
|
10297
10413
|
show_markup: boolean
|
|
10414
|
+
/**
|
|
10415
|
+
* Instead of showing the formatted text, display the raw text (in the txt2tags syntax)
|
|
10416
|
+
*/
|
|
10417
|
+
showMarkup: boolean
|
|
10298
10418
|
|
|
10299
10419
|
// Own fields of Gdaui-5.0.Gdaui.RtEditor
|
|
10300
10420
|
|
|
@@ -10574,6 +10694,8 @@ module ServerOperation {
|
|
|
10574
10694
|
|
|
10575
10695
|
hide_single_header?: boolean | null
|
|
10576
10696
|
server_operation?: Gda.ServerOperation | null
|
|
10697
|
+
hideSingleHeader?: boolean | null
|
|
10698
|
+
serverOperation?: Gda.ServerOperation | null
|
|
10577
10699
|
}
|
|
10578
10700
|
|
|
10579
10701
|
}
|
|
@@ -10583,7 +10705,9 @@ interface ServerOperation extends Atk.ImplementorIface, Gtk.Buildable, Gtk.Orien
|
|
|
10583
10705
|
// Own properties of Gdaui-5.0.Gdaui.ServerOperation
|
|
10584
10706
|
|
|
10585
10707
|
hide_single_header: boolean
|
|
10708
|
+
hideSingleHeader: boolean
|
|
10586
10709
|
readonly server_operation: Gda.ServerOperation
|
|
10710
|
+
readonly serverOperation: Gda.ServerOperation
|
|
10587
10711
|
|
|
10588
10712
|
// Own fields of Gdaui-5.0.Gdaui.ServerOperation
|
|
10589
10713
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@girs/gdaui-5.0",
|
|
3
|
-
"version": "5.0.0-3.2.
|
|
3
|
+
"version": "5.0.0-3.2.6",
|
|
4
4
|
"description": "GJS TypeScript type definitions for Gdaui-5.0, generated from library version 5.0.0",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"module": "gdaui-5.0.js",
|
|
@@ -25,22 +25,22 @@
|
|
|
25
25
|
"test:cjs": "NODE_OPTIONS=--max_old_space_size=9216 tsc --noEmit gdaui-5.0.d.cts"
|
|
26
26
|
},
|
|
27
27
|
"dependencies": {
|
|
28
|
-
"@girs/atk-1.0": "^2.50.0-3.2.
|
|
29
|
-
"@girs/cairo-1.0": "^1.0.0-3.2.
|
|
30
|
-
"@girs/freetype2-2.0": "^2.0.0-3.2.
|
|
31
|
-
"@girs/gda-5.0": "^5.0.0-3.2.
|
|
32
|
-
"@girs/gdk-3.0": "^3.24.38-3.2.
|
|
33
|
-
"@girs/gdkpixbuf-2.0": "^2.0.0-3.2.
|
|
34
|
-
"@girs/gio-2.0": "^2.78.0-3.2.
|
|
35
|
-
"@girs/gjs": "^3.2.
|
|
36
|
-
"@girs/glib-2.0": "^2.78.0-3.2.
|
|
37
|
-
"@girs/gmodule-2.0": "^2.0.0-3.2.
|
|
38
|
-
"@girs/gobject-2.0": "^2.78.0-3.2.
|
|
39
|
-
"@girs/gtk-3.0": "^3.24.38-3.2.
|
|
40
|
-
"@girs/harfbuzz-0.0": "^8.2.1-3.2.
|
|
41
|
-
"@girs/libxml2-2.0": "^2.0.0-3.2.
|
|
42
|
-
"@girs/pango-1.0": "^1.51.0-3.2.
|
|
43
|
-
"@girs/xlib-2.0": "^2.0.0-3.2.
|
|
28
|
+
"@girs/atk-1.0": "^2.50.0-3.2.6",
|
|
29
|
+
"@girs/cairo-1.0": "^1.0.0-3.2.6",
|
|
30
|
+
"@girs/freetype2-2.0": "^2.0.0-3.2.6",
|
|
31
|
+
"@girs/gda-5.0": "^5.0.0-3.2.6",
|
|
32
|
+
"@girs/gdk-3.0": "^3.24.38-3.2.6",
|
|
33
|
+
"@girs/gdkpixbuf-2.0": "^2.0.0-3.2.6",
|
|
34
|
+
"@girs/gio-2.0": "^2.78.0-3.2.6",
|
|
35
|
+
"@girs/gjs": "^3.2.6",
|
|
36
|
+
"@girs/glib-2.0": "^2.78.0-3.2.6",
|
|
37
|
+
"@girs/gmodule-2.0": "^2.0.0-3.2.6",
|
|
38
|
+
"@girs/gobject-2.0": "^2.78.0-3.2.6",
|
|
39
|
+
"@girs/gtk-3.0": "^3.24.38-3.2.6",
|
|
40
|
+
"@girs/harfbuzz-0.0": "^8.2.1-3.2.6",
|
|
41
|
+
"@girs/libxml2-2.0": "^2.0.0-3.2.6",
|
|
42
|
+
"@girs/pango-1.0": "^1.51.0-3.2.6",
|
|
43
|
+
"@girs/xlib-2.0": "^2.0.0-3.2.6"
|
|
44
44
|
},
|
|
45
45
|
"devDependencies": {
|
|
46
46
|
"typescript": "*"
|