@girs/gdl-3 3.0.0-3.2.5 → 3.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 CHANGED
@@ -5,7 +5,7 @@
5
5
  ![downloads/week](https://img.shields.io/npm/dw/@girs/gdl-3)
6
6
 
7
7
 
8
- GJS TypeScript type definitions for Gdl-3, generated from library version 3.0.0 using [ts-for-gir](https://github.com/gjsify/ts-for-gir) v3.2.5.
8
+ GJS TypeScript type definitions for Gdl-3, generated from library version 3.0.0 using [ts-for-gir](https://github.com/gjsify/ts-for-gir) v3.2.6.
9
9
 
10
10
  The GNOME Devtools Library package provides a docking system and several utilities useful to GNOME development tools and GNOME applications in general.
11
11
 
package/gdl-3.d.cts CHANGED
@@ -283,6 +283,14 @@ export module Dock {
283
283
  */
284
284
  skip_taskbar?: boolean | null
285
285
  width?: number | null
286
+ defaultTitle?: string | null
287
+ /**
288
+ * Whether or not to prevent a floating dock window from appearing in the
289
+ * taskbar. Note that this only affects floating windows that are created
290
+ * after this flag is set; existing windows are not affected. Usually,
291
+ * this property is used when you create the dock.
292
+ */
293
+ skipTaskbar?: boolean | null
286
294
  }
287
295
 
288
296
  }
@@ -292,6 +300,7 @@ export interface Dock extends Atk.ImplementorIface, Gtk.Buildable {
292
300
  // Own properties of Gdl-3.Gdl.Dock
293
301
 
294
302
  default_title: string | null
303
+ defaultTitle: string | null
295
304
  readonly floating: boolean
296
305
  floatx: number
297
306
  floaty: number
@@ -303,6 +312,13 @@ export interface Dock extends Atk.ImplementorIface, Gtk.Buildable {
303
312
  * this property is used when you create the dock.
304
313
  */
305
314
  skip_taskbar: boolean
315
+ /**
316
+ * Whether or not to prevent a floating dock window from appearing in the
317
+ * taskbar. Note that this only affects floating windows that are created
318
+ * after this flag is set; existing windows are not affected. Usually,
319
+ * this property is used when you create the dock.
320
+ */
321
+ skipTaskbar: boolean
306
322
  width: number
307
323
 
308
324
  // Conflicting properties
@@ -727,6 +743,7 @@ export module DockBar {
727
743
  * The #GdlDockMaster object attached to the dockbar.
728
744
  */
729
745
  master?: GObject.Object | null
746
+ dockbarStyle?: DockBarStyle | null
730
747
  }
731
748
 
732
749
  }
@@ -736,6 +753,7 @@ export interface DockBar extends Atk.ImplementorIface, Gtk.Buildable, Gtk.Orient
736
753
  // Own properties of Gdl-3.Gdl.DockBar
737
754
 
738
755
  dockbar_style: DockBarStyle
756
+ dockbarStyle: DockBarStyle
739
757
  /**
740
758
  * The #GdlDockMaster object attached to the dockbar.
741
759
  */
@@ -1093,6 +1111,8 @@ export module DockItem {
1093
1111
  preferred_height?: number | null
1094
1112
  preferred_width?: number | null
1095
1113
  resize?: boolean | null
1114
+ preferredHeight?: number | null
1115
+ preferredWidth?: number | null
1096
1116
  }
1097
1117
 
1098
1118
  }
@@ -1122,7 +1142,9 @@ export interface DockItem extends Atk.ImplementorIface, Gtk.Buildable {
1122
1142
  */
1123
1143
  orientation: Gtk.Orientation
1124
1144
  preferred_height: number
1145
+ preferredHeight: number
1125
1146
  preferred_width: number
1147
+ preferredWidth: number
1126
1148
  resize: boolean
1127
1149
 
1128
1150
  // Conflicting properties
@@ -2290,6 +2312,10 @@ export module DockMaster {
2290
2312
  switcher_style?: SwitcherStyle | null
2291
2313
  tab_pos?: Gtk.PositionType | null
2292
2314
  tab_reorderable?: boolean | null
2315
+ defaultTitle?: string | null
2316
+ switcherStyle?: SwitcherStyle | null
2317
+ tabPos?: Gtk.PositionType | null
2318
+ tabReorderable?: boolean | null
2293
2319
  }
2294
2320
 
2295
2321
  }
@@ -2299,10 +2325,14 @@ export interface DockMaster {
2299
2325
  // Own properties of Gdl-3.Gdl.DockMaster
2300
2326
 
2301
2327
  default_title: string | null
2328
+ defaultTitle: string | null
2302
2329
  locked: number
2303
2330
  switcher_style: SwitcherStyle
2331
+ switcherStyle: SwitcherStyle
2304
2332
  tab_pos: Gtk.PositionType
2333
+ tabPos: Gtk.PositionType
2305
2334
  tab_reorderable: boolean
2335
+ tabReorderable: boolean
2306
2336
 
2307
2337
  // Own fields of Gdl-3.Gdl.DockMaster
2308
2338
 
@@ -2831,6 +2861,18 @@ export module DockObject {
2831
2861
  * A stock id to use for the icon of the dock object.
2832
2862
  */
2833
2863
  stock_id?: string | null
2864
+ /**
2865
+ * A long descriptive name.
2866
+ */
2867
+ longName?: string | null
2868
+ /**
2869
+ * A GdkPixbuf to use for the icon of the dock object.
2870
+ */
2871
+ pixbufIcon?: any | null
2872
+ /**
2873
+ * A stock id to use for the icon of the dock object.
2874
+ */
2875
+ stockId?: string | null
2834
2876
  }
2835
2877
 
2836
2878
  }
@@ -2843,6 +2885,10 @@ export interface DockObject extends Atk.ImplementorIface, Gtk.Buildable {
2843
2885
  * A long descriptive name.
2844
2886
  */
2845
2887
  long_name: string | null
2888
+ /**
2889
+ * A long descriptive name.
2890
+ */
2891
+ longName: string | null
2846
2892
  /**
2847
2893
  * The master which manages all the objects in a dock ring
2848
2894
  */
@@ -2856,10 +2902,18 @@ export interface DockObject extends Atk.ImplementorIface, Gtk.Buildable {
2856
2902
  * A GdkPixbuf to use for the icon of the dock object.
2857
2903
  */
2858
2904
  pixbuf_icon: any
2905
+ /**
2906
+ * A GdkPixbuf to use for the icon of the dock object.
2907
+ */
2908
+ pixbufIcon: any
2859
2909
  /**
2860
2910
  * A stock id to use for the icon of the dock object.
2861
2911
  */
2862
2912
  stock_id: string | null
2913
+ /**
2914
+ * A stock id to use for the icon of the dock object.
2915
+ */
2916
+ stockId: string | null
2863
2917
 
2864
2918
  // Own fields of Gdl-3.Gdl.DockObject
2865
2919
 
@@ -3795,6 +3849,7 @@ export module DockPlaceholder {
3795
3849
  next_placement?: DockPlacement | null
3796
3850
  sticky?: boolean | null
3797
3851
  width?: number | null
3852
+ nextPlacement?: DockPlacement | null
3798
3853
  }
3799
3854
 
3800
3855
  }
@@ -3809,6 +3864,7 @@ export interface DockPlaceholder extends Atk.ImplementorIface, Gtk.Buildable {
3809
3864
  height: number
3810
3865
  host: DockObject
3811
3866
  next_placement: DockPlacement
3867
+ nextPlacement: DockPlacement
3812
3868
  readonly sticky: boolean
3813
3869
  width: number
3814
3870
 
@@ -4816,6 +4872,9 @@ export module Switcher {
4816
4872
  switcher_style?: SwitcherStyle | null
4817
4873
  tab_pos?: Gtk.PositionType | null
4818
4874
  tab_reorderable?: boolean | null
4875
+ switcherStyle?: SwitcherStyle | null
4876
+ tabPos?: Gtk.PositionType | null
4877
+ tabReorderable?: boolean | null
4819
4878
  }
4820
4879
 
4821
4880
  }
@@ -4825,8 +4884,11 @@ export interface Switcher extends Atk.ImplementorIface, Gtk.Buildable {
4825
4884
  // Own properties of Gdl-3.Gdl.Switcher
4826
4885
 
4827
4886
  switcher_style: SwitcherStyle
4887
+ switcherStyle: SwitcherStyle
4828
4888
  tab_pos: Gtk.PositionType
4889
+ tabPos: Gtk.PositionType
4829
4890
  tab_reorderable: boolean
4891
+ tabReorderable: boolean
4830
4892
 
4831
4893
  // Own fields of Gdl-3.Gdl.Switcher
4832
4894
 
package/gdl-3.d.ts CHANGED
@@ -285,6 +285,14 @@ module Dock {
285
285
  */
286
286
  skip_taskbar?: boolean | null
287
287
  width?: number | null
288
+ defaultTitle?: string | null
289
+ /**
290
+ * Whether or not to prevent a floating dock window from appearing in the
291
+ * taskbar. Note that this only affects floating windows that are created
292
+ * after this flag is set; existing windows are not affected. Usually,
293
+ * this property is used when you create the dock.
294
+ */
295
+ skipTaskbar?: boolean | null
288
296
  }
289
297
 
290
298
  }
@@ -294,6 +302,7 @@ interface Dock extends Atk.ImplementorIface, Gtk.Buildable {
294
302
  // Own properties of Gdl-3.Gdl.Dock
295
303
 
296
304
  default_title: string | null
305
+ defaultTitle: string | null
297
306
  readonly floating: boolean
298
307
  floatx: number
299
308
  floaty: number
@@ -305,6 +314,13 @@ interface Dock extends Atk.ImplementorIface, Gtk.Buildable {
305
314
  * this property is used when you create the dock.
306
315
  */
307
316
  skip_taskbar: boolean
317
+ /**
318
+ * Whether or not to prevent a floating dock window from appearing in the
319
+ * taskbar. Note that this only affects floating windows that are created
320
+ * after this flag is set; existing windows are not affected. Usually,
321
+ * this property is used when you create the dock.
322
+ */
323
+ skipTaskbar: boolean
308
324
  width: number
309
325
 
310
326
  // Conflicting properties
@@ -729,6 +745,7 @@ module DockBar {
729
745
  * The #GdlDockMaster object attached to the dockbar.
730
746
  */
731
747
  master?: GObject.Object | null
748
+ dockbarStyle?: DockBarStyle | null
732
749
  }
733
750
 
734
751
  }
@@ -738,6 +755,7 @@ interface DockBar extends Atk.ImplementorIface, Gtk.Buildable, Gtk.Orientable {
738
755
  // Own properties of Gdl-3.Gdl.DockBar
739
756
 
740
757
  dockbar_style: DockBarStyle
758
+ dockbarStyle: DockBarStyle
741
759
  /**
742
760
  * The #GdlDockMaster object attached to the dockbar.
743
761
  */
@@ -1095,6 +1113,8 @@ module DockItem {
1095
1113
  preferred_height?: number | null
1096
1114
  preferred_width?: number | null
1097
1115
  resize?: boolean | null
1116
+ preferredHeight?: number | null
1117
+ preferredWidth?: number | null
1098
1118
  }
1099
1119
 
1100
1120
  }
@@ -1124,7 +1144,9 @@ interface DockItem extends Atk.ImplementorIface, Gtk.Buildable {
1124
1144
  */
1125
1145
  orientation: Gtk.Orientation
1126
1146
  preferred_height: number
1147
+ preferredHeight: number
1127
1148
  preferred_width: number
1149
+ preferredWidth: number
1128
1150
  resize: boolean
1129
1151
 
1130
1152
  // Conflicting properties
@@ -2292,6 +2314,10 @@ module DockMaster {
2292
2314
  switcher_style?: SwitcherStyle | null
2293
2315
  tab_pos?: Gtk.PositionType | null
2294
2316
  tab_reorderable?: boolean | null
2317
+ defaultTitle?: string | null
2318
+ switcherStyle?: SwitcherStyle | null
2319
+ tabPos?: Gtk.PositionType | null
2320
+ tabReorderable?: boolean | null
2295
2321
  }
2296
2322
 
2297
2323
  }
@@ -2301,10 +2327,14 @@ interface DockMaster {
2301
2327
  // Own properties of Gdl-3.Gdl.DockMaster
2302
2328
 
2303
2329
  default_title: string | null
2330
+ defaultTitle: string | null
2304
2331
  locked: number
2305
2332
  switcher_style: SwitcherStyle
2333
+ switcherStyle: SwitcherStyle
2306
2334
  tab_pos: Gtk.PositionType
2335
+ tabPos: Gtk.PositionType
2307
2336
  tab_reorderable: boolean
2337
+ tabReorderable: boolean
2308
2338
 
2309
2339
  // Own fields of Gdl-3.Gdl.DockMaster
2310
2340
 
@@ -2833,6 +2863,18 @@ module DockObject {
2833
2863
  * A stock id to use for the icon of the dock object.
2834
2864
  */
2835
2865
  stock_id?: string | null
2866
+ /**
2867
+ * A long descriptive name.
2868
+ */
2869
+ longName?: string | null
2870
+ /**
2871
+ * A GdkPixbuf to use for the icon of the dock object.
2872
+ */
2873
+ pixbufIcon?: any | null
2874
+ /**
2875
+ * A stock id to use for the icon of the dock object.
2876
+ */
2877
+ stockId?: string | null
2836
2878
  }
2837
2879
 
2838
2880
  }
@@ -2845,6 +2887,10 @@ interface DockObject extends Atk.ImplementorIface, Gtk.Buildable {
2845
2887
  * A long descriptive name.
2846
2888
  */
2847
2889
  long_name: string | null
2890
+ /**
2891
+ * A long descriptive name.
2892
+ */
2893
+ longName: string | null
2848
2894
  /**
2849
2895
  * The master which manages all the objects in a dock ring
2850
2896
  */
@@ -2858,10 +2904,18 @@ interface DockObject extends Atk.ImplementorIface, Gtk.Buildable {
2858
2904
  * A GdkPixbuf to use for the icon of the dock object.
2859
2905
  */
2860
2906
  pixbuf_icon: any
2907
+ /**
2908
+ * A GdkPixbuf to use for the icon of the dock object.
2909
+ */
2910
+ pixbufIcon: any
2861
2911
  /**
2862
2912
  * A stock id to use for the icon of the dock object.
2863
2913
  */
2864
2914
  stock_id: string | null
2915
+ /**
2916
+ * A stock id to use for the icon of the dock object.
2917
+ */
2918
+ stockId: string | null
2865
2919
 
2866
2920
  // Own fields of Gdl-3.Gdl.DockObject
2867
2921
 
@@ -3797,6 +3851,7 @@ module DockPlaceholder {
3797
3851
  next_placement?: DockPlacement | null
3798
3852
  sticky?: boolean | null
3799
3853
  width?: number | null
3854
+ nextPlacement?: DockPlacement | null
3800
3855
  }
3801
3856
 
3802
3857
  }
@@ -3811,6 +3866,7 @@ interface DockPlaceholder extends Atk.ImplementorIface, Gtk.Buildable {
3811
3866
  height: number
3812
3867
  host: DockObject
3813
3868
  next_placement: DockPlacement
3869
+ nextPlacement: DockPlacement
3814
3870
  readonly sticky: boolean
3815
3871
  width: number
3816
3872
 
@@ -4818,6 +4874,9 @@ module Switcher {
4818
4874
  switcher_style?: SwitcherStyle | null
4819
4875
  tab_pos?: Gtk.PositionType | null
4820
4876
  tab_reorderable?: boolean | null
4877
+ switcherStyle?: SwitcherStyle | null
4878
+ tabPos?: Gtk.PositionType | null
4879
+ tabReorderable?: boolean | null
4821
4880
  }
4822
4881
 
4823
4882
  }
@@ -4827,8 +4886,11 @@ interface Switcher extends Atk.ImplementorIface, Gtk.Buildable {
4827
4886
  // Own properties of Gdl-3.Gdl.Switcher
4828
4887
 
4829
4888
  switcher_style: SwitcherStyle
4889
+ switcherStyle: SwitcherStyle
4830
4890
  tab_pos: Gtk.PositionType
4891
+ tabPos: Gtk.PositionType
4831
4892
  tab_reorderable: boolean
4893
+ tabReorderable: boolean
4832
4894
 
4833
4895
  // Own fields of Gdl-3.Gdl.Switcher
4834
4896
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@girs/gdl-3",
3
- "version": "3.0.0-3.2.5",
3
+ "version": "3.0.0-3.2.6",
4
4
  "description": "GJS TypeScript type definitions for Gdl-3, generated from library version 3.0.0",
5
5
  "type": "module",
6
6
  "module": "gdl-3.js",
@@ -25,20 +25,20 @@
25
25
  "test:cjs": "NODE_OPTIONS=--max_old_space_size=9216 tsc --noEmit gdl-3.d.cts"
26
26
  },
27
27
  "dependencies": {
28
- "@girs/atk-1.0": "^2.50.0-3.2.5",
29
- "@girs/cairo-1.0": "^1.0.0-3.2.5",
30
- "@girs/freetype2-2.0": "^2.0.0-3.2.5",
31
- "@girs/gdk-3.0": "^3.24.38-3.2.5",
32
- "@girs/gdkpixbuf-2.0": "^2.0.0-3.2.5",
33
- "@girs/gio-2.0": "^2.78.0-3.2.5",
34
- "@girs/gjs": "^3.2.5",
35
- "@girs/glib-2.0": "^2.78.0-3.2.5",
36
- "@girs/gmodule-2.0": "^2.0.0-3.2.5",
37
- "@girs/gobject-2.0": "^2.78.0-3.2.5",
38
- "@girs/gtk-3.0": "^3.24.38-3.2.5",
39
- "@girs/harfbuzz-0.0": "^8.2.1-3.2.5",
40
- "@girs/pango-1.0": "^1.51.0-3.2.5",
41
- "@girs/xlib-2.0": "^2.0.0-3.2.5"
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/gdk-3.0": "^3.24.38-3.2.6",
32
+ "@girs/gdkpixbuf-2.0": "^2.0.0-3.2.6",
33
+ "@girs/gio-2.0": "^2.78.0-3.2.6",
34
+ "@girs/gjs": "^3.2.6",
35
+ "@girs/glib-2.0": "^2.78.0-3.2.6",
36
+ "@girs/gmodule-2.0": "^2.0.0-3.2.6",
37
+ "@girs/gobject-2.0": "^2.78.0-3.2.6",
38
+ "@girs/gtk-3.0": "^3.24.38-3.2.6",
39
+ "@girs/harfbuzz-0.0": "^8.2.1-3.2.6",
40
+ "@girs/pango-1.0": "^1.51.0-3.2.6",
41
+ "@girs/xlib-2.0": "^2.0.0-3.2.6"
42
42
  },
43
43
  "devDependencies": {
44
44
  "typescript": "*"