@girs/eog-3.0 3.0.0-3.2.7 → 3.0.0-3.2.8
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +1 -1
- package/eog-3.0-ambient.js +2 -0
- package/eog-3.0-import.js +3 -0
- package/eog-3.0.d.cts +5 -127
- package/eog-3.0.d.ts +5 -127
- package/package.json +24 -18
package/README.md
CHANGED
|
@@ -5,7 +5,7 @@
|
|
|
5
5
|

|
|
6
6
|
|
|
7
7
|
|
|
8
|
-
GJS TypeScript type definitions for Eog-3.0, generated from library version 3.0.0 using [ts-for-gir](https://github.com/gjsify/ts-for-gir) v3.2.
|
|
8
|
+
GJS TypeScript type definitions for Eog-3.0, generated from library version 3.0.0 using [ts-for-gir](https://github.com/gjsify/ts-for-gir) v3.2.8.
|
|
9
9
|
|
|
10
10
|
|
|
11
11
|
## Install
|
package/eog-3.0.d.cts
CHANGED
|
@@ -2198,11 +2198,9 @@ export module RemotePresenter {
|
|
|
2198
2198
|
|
|
2199
2199
|
// Own constructor properties of Eog-3.0.Eog.RemotePresenter
|
|
2200
2200
|
|
|
2201
|
-
next_action?: string | null
|
|
2202
|
-
prev_action?: string | null
|
|
2203
|
-
thumbview?: ThumbView | null
|
|
2204
2201
|
nextAction?: string | null
|
|
2205
2202
|
prevAction?: string | null
|
|
2203
|
+
thumbview?: ThumbView | null
|
|
2206
2204
|
}
|
|
2207
2205
|
|
|
2208
2206
|
}
|
|
@@ -2211,9 +2209,7 @@ export interface RemotePresenter extends Atk.ImplementorIface, Gtk.Buildable {
|
|
|
2211
2209
|
|
|
2212
2210
|
// Own properties of Eog-3.0.Eog.RemotePresenter
|
|
2213
2211
|
|
|
2214
|
-
readonly next_action: string | null
|
|
2215
2212
|
readonly nextAction: string | null
|
|
2216
|
-
readonly prev_action: string | null
|
|
2217
2213
|
readonly prevAction: string | null
|
|
2218
2214
|
readonly thumbview: ThumbView
|
|
2219
2215
|
|
|
@@ -2637,59 +2633,22 @@ export module ScrollView {
|
|
|
2637
2633
|
* If %TRUE the displayed image will be filtered in a second pass
|
|
2638
2634
|
* while being zoomed in.
|
|
2639
2635
|
*/
|
|
2640
|
-
|
|
2636
|
+
antialiasingIn?: boolean | null
|
|
2641
2637
|
/**
|
|
2642
2638
|
* If %TRUE the displayed image will be filtered in a second pass
|
|
2643
2639
|
* while being zoomed out.
|
|
2644
2640
|
*/
|
|
2645
|
-
|
|
2641
|
+
antialiasingOut?: boolean | null
|
|
2646
2642
|
/**
|
|
2647
2643
|
* This is the default background color used for painting the background
|
|
2648
2644
|
* of the image view. If set to %NULL the color is determined by the
|
|
2649
2645
|
* active GTK theme.
|
|
2650
2646
|
*/
|
|
2651
|
-
|
|
2647
|
+
backgroundColor?: Gdk.RGBA | null
|
|
2652
2648
|
/**
|
|
2653
2649
|
* This is the currently display #EogImage.
|
|
2654
2650
|
*/
|
|
2655
2651
|
image?: Image | null
|
|
2656
|
-
/**
|
|
2657
|
-
* If %TRUE the scrollwheel will zoom the view, otherwise it will be
|
|
2658
|
-
* used for scrolling a zoomed image.
|
|
2659
|
-
*/
|
|
2660
|
-
scrollwheel_zoom?: boolean | null
|
|
2661
|
-
/**
|
|
2662
|
-
* This is the color used to fill the transparent parts of an image
|
|
2663
|
-
* if #EogScrollView:transparency-style is set to %EOG_TRANSP_COLOR.
|
|
2664
|
-
*/
|
|
2665
|
-
transparency_color?: Gdk.RGBA | null
|
|
2666
|
-
/**
|
|
2667
|
-
* Determines how to fill the shown image's transparent areas.
|
|
2668
|
-
*/
|
|
2669
|
-
transparency_style?: TransparencyStyle | null
|
|
2670
|
-
use_background_color?: boolean | null
|
|
2671
|
-
zoom_mode?: ZoomMode | null
|
|
2672
|
-
/**
|
|
2673
|
-
* The current zoom factor is multiplied with this value + 1.0 when
|
|
2674
|
-
* scrolling with the scrollwheel to determine the next zoom factor.
|
|
2675
|
-
*/
|
|
2676
|
-
zoom_multiplier?: number | null
|
|
2677
|
-
/**
|
|
2678
|
-
* If %TRUE the displayed image will be filtered in a second pass
|
|
2679
|
-
* while being zoomed in.
|
|
2680
|
-
*/
|
|
2681
|
-
antialiasingIn?: boolean | null
|
|
2682
|
-
/**
|
|
2683
|
-
* If %TRUE the displayed image will be filtered in a second pass
|
|
2684
|
-
* while being zoomed out.
|
|
2685
|
-
*/
|
|
2686
|
-
antialiasingOut?: boolean | null
|
|
2687
|
-
/**
|
|
2688
|
-
* This is the default background color used for painting the background
|
|
2689
|
-
* of the image view. If set to %NULL the color is determined by the
|
|
2690
|
-
* active GTK theme.
|
|
2691
|
-
*/
|
|
2692
|
-
backgroundColor?: Gdk.RGBA | null
|
|
2693
2652
|
/**
|
|
2694
2653
|
* If %TRUE the scrollwheel will zoom the view, otherwise it will be
|
|
2695
2654
|
* used for scrolling a zoomed image.
|
|
@@ -2719,32 +2678,16 @@ export interface ScrollView extends Atk.ImplementorIface, Gtk.Buildable, Gtk.Scr
|
|
|
2719
2678
|
|
|
2720
2679
|
// Own properties of Eog-3.0.Eog.ScrollView
|
|
2721
2680
|
|
|
2722
|
-
/**
|
|
2723
|
-
* If %TRUE the displayed image will be filtered in a second pass
|
|
2724
|
-
* while being zoomed in.
|
|
2725
|
-
*/
|
|
2726
|
-
antialiasing_in: boolean
|
|
2727
2681
|
/**
|
|
2728
2682
|
* If %TRUE the displayed image will be filtered in a second pass
|
|
2729
2683
|
* while being zoomed in.
|
|
2730
2684
|
*/
|
|
2731
2685
|
antialiasingIn: boolean
|
|
2732
|
-
/**
|
|
2733
|
-
* If %TRUE the displayed image will be filtered in a second pass
|
|
2734
|
-
* while being zoomed out.
|
|
2735
|
-
*/
|
|
2736
|
-
antialiasing_out: boolean
|
|
2737
2686
|
/**
|
|
2738
2687
|
* If %TRUE the displayed image will be filtered in a second pass
|
|
2739
2688
|
* while being zoomed out.
|
|
2740
2689
|
*/
|
|
2741
2690
|
antialiasingOut: boolean
|
|
2742
|
-
/**
|
|
2743
|
-
* This is the default background color used for painting the background
|
|
2744
|
-
* of the image view. If set to %NULL the color is determined by the
|
|
2745
|
-
* active GTK theme.
|
|
2746
|
-
*/
|
|
2747
|
-
background_color: Gdk.RGBA
|
|
2748
2691
|
/**
|
|
2749
2692
|
* This is the default background color used for painting the background
|
|
2750
2693
|
* of the image view. If set to %NULL the color is determined by the
|
|
@@ -2755,43 +2698,22 @@ export interface ScrollView extends Atk.ImplementorIface, Gtk.Buildable, Gtk.Scr
|
|
|
2755
2698
|
* This is the currently display #EogImage.
|
|
2756
2699
|
*/
|
|
2757
2700
|
image: Image
|
|
2758
|
-
/**
|
|
2759
|
-
* If %TRUE the scrollwheel will zoom the view, otherwise it will be
|
|
2760
|
-
* used for scrolling a zoomed image.
|
|
2761
|
-
*/
|
|
2762
|
-
scrollwheel_zoom: boolean
|
|
2763
2701
|
/**
|
|
2764
2702
|
* If %TRUE the scrollwheel will zoom the view, otherwise it will be
|
|
2765
2703
|
* used for scrolling a zoomed image.
|
|
2766
2704
|
*/
|
|
2767
2705
|
scrollwheelZoom: boolean
|
|
2768
|
-
/**
|
|
2769
|
-
* This is the color used to fill the transparent parts of an image
|
|
2770
|
-
* if #EogScrollView:transparency-style is set to %EOG_TRANSP_COLOR.
|
|
2771
|
-
*/
|
|
2772
|
-
transparency_color: Gdk.RGBA
|
|
2773
2706
|
/**
|
|
2774
2707
|
* This is the color used to fill the transparent parts of an image
|
|
2775
2708
|
* if #EogScrollView:transparency-style is set to %EOG_TRANSP_COLOR.
|
|
2776
2709
|
*/
|
|
2777
2710
|
transparencyColor: Gdk.RGBA
|
|
2778
|
-
/**
|
|
2779
|
-
* Determines how to fill the shown image's transparent areas.
|
|
2780
|
-
*/
|
|
2781
|
-
transparency_style: TransparencyStyle
|
|
2782
2711
|
/**
|
|
2783
2712
|
* Determines how to fill the shown image's transparent areas.
|
|
2784
2713
|
*/
|
|
2785
2714
|
transparencyStyle: TransparencyStyle
|
|
2786
|
-
use_background_color: boolean
|
|
2787
2715
|
useBackgroundColor: boolean
|
|
2788
|
-
zoom_mode: ZoomMode
|
|
2789
2716
|
zoomMode: ZoomMode
|
|
2790
|
-
/**
|
|
2791
|
-
* The current zoom factor is multiplied with this value + 1.0 when
|
|
2792
|
-
* scrolling with the scrollwheel to determine the next zoom factor.
|
|
2793
|
-
*/
|
|
2794
|
-
zoom_multiplier: number
|
|
2795
2717
|
/**
|
|
2796
2718
|
* The current zoom factor is multiplied with this value + 1.0 when
|
|
2797
2719
|
* scrolling with the scrollwheel to determine the next zoom factor.
|
|
@@ -3126,7 +3048,6 @@ export module Sidebar {
|
|
|
3126
3048
|
|
|
3127
3049
|
// Own constructor properties of Eog-3.0.Eog.Sidebar
|
|
3128
3050
|
|
|
3129
|
-
current_page?: Gtk.Widget | null
|
|
3130
3051
|
currentPage?: Gtk.Widget | null
|
|
3131
3052
|
}
|
|
3132
3053
|
|
|
@@ -3136,7 +3057,6 @@ export interface Sidebar extends Atk.ImplementorIface, Gtk.Buildable, Gtk.Orient
|
|
|
3136
3057
|
|
|
3137
3058
|
// Own properties of Eog-3.0.Eog.Sidebar
|
|
3138
3059
|
|
|
3139
|
-
current_page: Gtk.Widget
|
|
3140
3060
|
currentPage: Gtk.Widget
|
|
3141
3061
|
|
|
3142
3062
|
// Own fields of Eog-3.0.Eog.Sidebar
|
|
@@ -3667,9 +3587,8 @@ export module ThumbNav {
|
|
|
3667
3587
|
// Own constructor properties of Eog-3.0.Eog.ThumbNav
|
|
3668
3588
|
|
|
3669
3589
|
mode?: number | null
|
|
3670
|
-
show_buttons?: boolean | null
|
|
3671
|
-
thumbview?: ThumbView | null
|
|
3672
3590
|
showButtons?: boolean | null
|
|
3591
|
+
thumbview?: ThumbView | null
|
|
3673
3592
|
}
|
|
3674
3593
|
|
|
3675
3594
|
}
|
|
@@ -3679,7 +3598,6 @@ export interface ThumbNav extends Atk.ImplementorIface, Gtk.Buildable, Gtk.Orien
|
|
|
3679
3598
|
// Own properties of Eog-3.0.Eog.ThumbNav
|
|
3680
3599
|
|
|
3681
3600
|
mode: number
|
|
3682
|
-
show_buttons: boolean
|
|
3683
3601
|
showButtons: boolean
|
|
3684
3602
|
readonly thumbview: ThumbView
|
|
3685
3603
|
|
|
@@ -4363,11 +4281,6 @@ export module URIConverter {
|
|
|
4363
4281
|
|
|
4364
4282
|
// Own constructor properties of Eog-3.0.Eog.URIConverter
|
|
4365
4283
|
|
|
4366
|
-
convert_spaces?: boolean | null
|
|
4367
|
-
counter_n_digits?: number | null
|
|
4368
|
-
counter_start?: number | null
|
|
4369
|
-
n_images?: number | null
|
|
4370
|
-
space_character?: number | null
|
|
4371
4284
|
convertSpaces?: boolean | null
|
|
4372
4285
|
counterNDigits?: number | null
|
|
4373
4286
|
counterStart?: number | null
|
|
@@ -4381,15 +4294,10 @@ export interface URIConverter {
|
|
|
4381
4294
|
|
|
4382
4295
|
// Own properties of Eog-3.0.Eog.URIConverter
|
|
4383
4296
|
|
|
4384
|
-
convert_spaces: boolean
|
|
4385
4297
|
convertSpaces: boolean
|
|
4386
|
-
counter_n_digits: number
|
|
4387
4298
|
counterNDigits: number
|
|
4388
|
-
counter_start: number
|
|
4389
4299
|
counterStart: number
|
|
4390
|
-
n_images: number
|
|
4391
4300
|
nImages: number
|
|
4392
|
-
space_character: number
|
|
4393
4301
|
spaceCharacter: number
|
|
4394
4302
|
|
|
4395
4303
|
// Own fields of Eog-3.0.Eog.URIConverter
|
|
@@ -4461,21 +4369,6 @@ export module Window {
|
|
|
4461
4369
|
|
|
4462
4370
|
// Own constructor properties of Eog-3.0.Eog.Window
|
|
4463
4371
|
|
|
4464
|
-
/**
|
|
4465
|
-
* Determines the position of the image gallery in the window
|
|
4466
|
-
* relative to the image.
|
|
4467
|
-
*/
|
|
4468
|
-
gallery_position?: WindowGalleryPos | null
|
|
4469
|
-
/**
|
|
4470
|
-
* If %TRUE the gallery will be resizable by the user otherwise it will be
|
|
4471
|
-
* in single column/row mode.
|
|
4472
|
-
*/
|
|
4473
|
-
gallery_resizable?: boolean | null
|
|
4474
|
-
/**
|
|
4475
|
-
* A bitwise OR of #EogStartupFlags elements, indicating how the window
|
|
4476
|
-
* should behave upon creation.
|
|
4477
|
-
*/
|
|
4478
|
-
startup_flags?: StartupFlags | null
|
|
4479
4372
|
/**
|
|
4480
4373
|
* Determines the position of the image gallery in the window
|
|
4481
4374
|
* relative to the image.
|
|
@@ -4499,31 +4392,16 @@ export interface Window extends Atk.ImplementorIface, Gio.ActionGroup, Gio.Actio
|
|
|
4499
4392
|
|
|
4500
4393
|
// Own properties of Eog-3.0.Eog.Window
|
|
4501
4394
|
|
|
4502
|
-
/**
|
|
4503
|
-
* Determines the position of the image gallery in the window
|
|
4504
|
-
* relative to the image.
|
|
4505
|
-
*/
|
|
4506
|
-
gallery_position: WindowGalleryPos
|
|
4507
4395
|
/**
|
|
4508
4396
|
* Determines the position of the image gallery in the window
|
|
4509
4397
|
* relative to the image.
|
|
4510
4398
|
*/
|
|
4511
4399
|
galleryPosition: WindowGalleryPos
|
|
4512
|
-
/**
|
|
4513
|
-
* If %TRUE the gallery will be resizable by the user otherwise it will be
|
|
4514
|
-
* in single column/row mode.
|
|
4515
|
-
*/
|
|
4516
|
-
gallery_resizable: boolean
|
|
4517
4400
|
/**
|
|
4518
4401
|
* If %TRUE the gallery will be resizable by the user otherwise it will be
|
|
4519
4402
|
* in single column/row mode.
|
|
4520
4403
|
*/
|
|
4521
4404
|
galleryResizable: boolean
|
|
4522
|
-
/**
|
|
4523
|
-
* A bitwise OR of #EogStartupFlags elements, indicating how the window
|
|
4524
|
-
* should behave upon creation.
|
|
4525
|
-
*/
|
|
4526
|
-
readonly startup_flags: StartupFlags
|
|
4527
4405
|
/**
|
|
4528
4406
|
* A bitwise OR of #EogStartupFlags elements, indicating how the window
|
|
4529
4407
|
* should behave upon creation.
|
package/eog-3.0.d.ts
CHANGED
|
@@ -2200,11 +2200,9 @@ module RemotePresenter {
|
|
|
2200
2200
|
|
|
2201
2201
|
// Own constructor properties of Eog-3.0.Eog.RemotePresenter
|
|
2202
2202
|
|
|
2203
|
-
next_action?: string | null
|
|
2204
|
-
prev_action?: string | null
|
|
2205
|
-
thumbview?: ThumbView | null
|
|
2206
2203
|
nextAction?: string | null
|
|
2207
2204
|
prevAction?: string | null
|
|
2205
|
+
thumbview?: ThumbView | null
|
|
2208
2206
|
}
|
|
2209
2207
|
|
|
2210
2208
|
}
|
|
@@ -2213,9 +2211,7 @@ interface RemotePresenter extends Atk.ImplementorIface, Gtk.Buildable {
|
|
|
2213
2211
|
|
|
2214
2212
|
// Own properties of Eog-3.0.Eog.RemotePresenter
|
|
2215
2213
|
|
|
2216
|
-
readonly next_action: string | null
|
|
2217
2214
|
readonly nextAction: string | null
|
|
2218
|
-
readonly prev_action: string | null
|
|
2219
2215
|
readonly prevAction: string | null
|
|
2220
2216
|
readonly thumbview: ThumbView
|
|
2221
2217
|
|
|
@@ -2639,59 +2635,22 @@ module ScrollView {
|
|
|
2639
2635
|
* If %TRUE the displayed image will be filtered in a second pass
|
|
2640
2636
|
* while being zoomed in.
|
|
2641
2637
|
*/
|
|
2642
|
-
|
|
2638
|
+
antialiasingIn?: boolean | null
|
|
2643
2639
|
/**
|
|
2644
2640
|
* If %TRUE the displayed image will be filtered in a second pass
|
|
2645
2641
|
* while being zoomed out.
|
|
2646
2642
|
*/
|
|
2647
|
-
|
|
2643
|
+
antialiasingOut?: boolean | null
|
|
2648
2644
|
/**
|
|
2649
2645
|
* This is the default background color used for painting the background
|
|
2650
2646
|
* of the image view. If set to %NULL the color is determined by the
|
|
2651
2647
|
* active GTK theme.
|
|
2652
2648
|
*/
|
|
2653
|
-
|
|
2649
|
+
backgroundColor?: Gdk.RGBA | null
|
|
2654
2650
|
/**
|
|
2655
2651
|
* This is the currently display #EogImage.
|
|
2656
2652
|
*/
|
|
2657
2653
|
image?: Image | null
|
|
2658
|
-
/**
|
|
2659
|
-
* If %TRUE the scrollwheel will zoom the view, otherwise it will be
|
|
2660
|
-
* used for scrolling a zoomed image.
|
|
2661
|
-
*/
|
|
2662
|
-
scrollwheel_zoom?: boolean | null
|
|
2663
|
-
/**
|
|
2664
|
-
* This is the color used to fill the transparent parts of an image
|
|
2665
|
-
* if #EogScrollView:transparency-style is set to %EOG_TRANSP_COLOR.
|
|
2666
|
-
*/
|
|
2667
|
-
transparency_color?: Gdk.RGBA | null
|
|
2668
|
-
/**
|
|
2669
|
-
* Determines how to fill the shown image's transparent areas.
|
|
2670
|
-
*/
|
|
2671
|
-
transparency_style?: TransparencyStyle | null
|
|
2672
|
-
use_background_color?: boolean | null
|
|
2673
|
-
zoom_mode?: ZoomMode | null
|
|
2674
|
-
/**
|
|
2675
|
-
* The current zoom factor is multiplied with this value + 1.0 when
|
|
2676
|
-
* scrolling with the scrollwheel to determine the next zoom factor.
|
|
2677
|
-
*/
|
|
2678
|
-
zoom_multiplier?: number | null
|
|
2679
|
-
/**
|
|
2680
|
-
* If %TRUE the displayed image will be filtered in a second pass
|
|
2681
|
-
* while being zoomed in.
|
|
2682
|
-
*/
|
|
2683
|
-
antialiasingIn?: boolean | null
|
|
2684
|
-
/**
|
|
2685
|
-
* If %TRUE the displayed image will be filtered in a second pass
|
|
2686
|
-
* while being zoomed out.
|
|
2687
|
-
*/
|
|
2688
|
-
antialiasingOut?: boolean | null
|
|
2689
|
-
/**
|
|
2690
|
-
* This is the default background color used for painting the background
|
|
2691
|
-
* of the image view. If set to %NULL the color is determined by the
|
|
2692
|
-
* active GTK theme.
|
|
2693
|
-
*/
|
|
2694
|
-
backgroundColor?: Gdk.RGBA | null
|
|
2695
2654
|
/**
|
|
2696
2655
|
* If %TRUE the scrollwheel will zoom the view, otherwise it will be
|
|
2697
2656
|
* used for scrolling a zoomed image.
|
|
@@ -2721,32 +2680,16 @@ interface ScrollView extends Atk.ImplementorIface, Gtk.Buildable, Gtk.Scrollable
|
|
|
2721
2680
|
|
|
2722
2681
|
// Own properties of Eog-3.0.Eog.ScrollView
|
|
2723
2682
|
|
|
2724
|
-
/**
|
|
2725
|
-
* If %TRUE the displayed image will be filtered in a second pass
|
|
2726
|
-
* while being zoomed in.
|
|
2727
|
-
*/
|
|
2728
|
-
antialiasing_in: boolean
|
|
2729
2683
|
/**
|
|
2730
2684
|
* If %TRUE the displayed image will be filtered in a second pass
|
|
2731
2685
|
* while being zoomed in.
|
|
2732
2686
|
*/
|
|
2733
2687
|
antialiasingIn: boolean
|
|
2734
|
-
/**
|
|
2735
|
-
* If %TRUE the displayed image will be filtered in a second pass
|
|
2736
|
-
* while being zoomed out.
|
|
2737
|
-
*/
|
|
2738
|
-
antialiasing_out: boolean
|
|
2739
2688
|
/**
|
|
2740
2689
|
* If %TRUE the displayed image will be filtered in a second pass
|
|
2741
2690
|
* while being zoomed out.
|
|
2742
2691
|
*/
|
|
2743
2692
|
antialiasingOut: boolean
|
|
2744
|
-
/**
|
|
2745
|
-
* This is the default background color used for painting the background
|
|
2746
|
-
* of the image view. If set to %NULL the color is determined by the
|
|
2747
|
-
* active GTK theme.
|
|
2748
|
-
*/
|
|
2749
|
-
background_color: Gdk.RGBA
|
|
2750
2693
|
/**
|
|
2751
2694
|
* This is the default background color used for painting the background
|
|
2752
2695
|
* of the image view. If set to %NULL the color is determined by the
|
|
@@ -2757,43 +2700,22 @@ interface ScrollView extends Atk.ImplementorIface, Gtk.Buildable, Gtk.Scrollable
|
|
|
2757
2700
|
* This is the currently display #EogImage.
|
|
2758
2701
|
*/
|
|
2759
2702
|
image: Image
|
|
2760
|
-
/**
|
|
2761
|
-
* If %TRUE the scrollwheel will zoom the view, otherwise it will be
|
|
2762
|
-
* used for scrolling a zoomed image.
|
|
2763
|
-
*/
|
|
2764
|
-
scrollwheel_zoom: boolean
|
|
2765
2703
|
/**
|
|
2766
2704
|
* If %TRUE the scrollwheel will zoom the view, otherwise it will be
|
|
2767
2705
|
* used for scrolling a zoomed image.
|
|
2768
2706
|
*/
|
|
2769
2707
|
scrollwheelZoom: boolean
|
|
2770
|
-
/**
|
|
2771
|
-
* This is the color used to fill the transparent parts of an image
|
|
2772
|
-
* if #EogScrollView:transparency-style is set to %EOG_TRANSP_COLOR.
|
|
2773
|
-
*/
|
|
2774
|
-
transparency_color: Gdk.RGBA
|
|
2775
2708
|
/**
|
|
2776
2709
|
* This is the color used to fill the transparent parts of an image
|
|
2777
2710
|
* if #EogScrollView:transparency-style is set to %EOG_TRANSP_COLOR.
|
|
2778
2711
|
*/
|
|
2779
2712
|
transparencyColor: Gdk.RGBA
|
|
2780
|
-
/**
|
|
2781
|
-
* Determines how to fill the shown image's transparent areas.
|
|
2782
|
-
*/
|
|
2783
|
-
transparency_style: TransparencyStyle
|
|
2784
2713
|
/**
|
|
2785
2714
|
* Determines how to fill the shown image's transparent areas.
|
|
2786
2715
|
*/
|
|
2787
2716
|
transparencyStyle: TransparencyStyle
|
|
2788
|
-
use_background_color: boolean
|
|
2789
2717
|
useBackgroundColor: boolean
|
|
2790
|
-
zoom_mode: ZoomMode
|
|
2791
2718
|
zoomMode: ZoomMode
|
|
2792
|
-
/**
|
|
2793
|
-
* The current zoom factor is multiplied with this value + 1.0 when
|
|
2794
|
-
* scrolling with the scrollwheel to determine the next zoom factor.
|
|
2795
|
-
*/
|
|
2796
|
-
zoom_multiplier: number
|
|
2797
2719
|
/**
|
|
2798
2720
|
* The current zoom factor is multiplied with this value + 1.0 when
|
|
2799
2721
|
* scrolling with the scrollwheel to determine the next zoom factor.
|
|
@@ -3128,7 +3050,6 @@ module Sidebar {
|
|
|
3128
3050
|
|
|
3129
3051
|
// Own constructor properties of Eog-3.0.Eog.Sidebar
|
|
3130
3052
|
|
|
3131
|
-
current_page?: Gtk.Widget | null
|
|
3132
3053
|
currentPage?: Gtk.Widget | null
|
|
3133
3054
|
}
|
|
3134
3055
|
|
|
@@ -3138,7 +3059,6 @@ interface Sidebar extends Atk.ImplementorIface, Gtk.Buildable, Gtk.Orientable {
|
|
|
3138
3059
|
|
|
3139
3060
|
// Own properties of Eog-3.0.Eog.Sidebar
|
|
3140
3061
|
|
|
3141
|
-
current_page: Gtk.Widget
|
|
3142
3062
|
currentPage: Gtk.Widget
|
|
3143
3063
|
|
|
3144
3064
|
// Own fields of Eog-3.0.Eog.Sidebar
|
|
@@ -3669,9 +3589,8 @@ module ThumbNav {
|
|
|
3669
3589
|
// Own constructor properties of Eog-3.0.Eog.ThumbNav
|
|
3670
3590
|
|
|
3671
3591
|
mode?: number | null
|
|
3672
|
-
show_buttons?: boolean | null
|
|
3673
|
-
thumbview?: ThumbView | null
|
|
3674
3592
|
showButtons?: boolean | null
|
|
3593
|
+
thumbview?: ThumbView | null
|
|
3675
3594
|
}
|
|
3676
3595
|
|
|
3677
3596
|
}
|
|
@@ -3681,7 +3600,6 @@ interface ThumbNav extends Atk.ImplementorIface, Gtk.Buildable, Gtk.Orientable {
|
|
|
3681
3600
|
// Own properties of Eog-3.0.Eog.ThumbNav
|
|
3682
3601
|
|
|
3683
3602
|
mode: number
|
|
3684
|
-
show_buttons: boolean
|
|
3685
3603
|
showButtons: boolean
|
|
3686
3604
|
readonly thumbview: ThumbView
|
|
3687
3605
|
|
|
@@ -4365,11 +4283,6 @@ module URIConverter {
|
|
|
4365
4283
|
|
|
4366
4284
|
// Own constructor properties of Eog-3.0.Eog.URIConverter
|
|
4367
4285
|
|
|
4368
|
-
convert_spaces?: boolean | null
|
|
4369
|
-
counter_n_digits?: number | null
|
|
4370
|
-
counter_start?: number | null
|
|
4371
|
-
n_images?: number | null
|
|
4372
|
-
space_character?: number | null
|
|
4373
4286
|
convertSpaces?: boolean | null
|
|
4374
4287
|
counterNDigits?: number | null
|
|
4375
4288
|
counterStart?: number | null
|
|
@@ -4383,15 +4296,10 @@ interface URIConverter {
|
|
|
4383
4296
|
|
|
4384
4297
|
// Own properties of Eog-3.0.Eog.URIConverter
|
|
4385
4298
|
|
|
4386
|
-
convert_spaces: boolean
|
|
4387
4299
|
convertSpaces: boolean
|
|
4388
|
-
counter_n_digits: number
|
|
4389
4300
|
counterNDigits: number
|
|
4390
|
-
counter_start: number
|
|
4391
4301
|
counterStart: number
|
|
4392
|
-
n_images: number
|
|
4393
4302
|
nImages: number
|
|
4394
|
-
space_character: number
|
|
4395
4303
|
spaceCharacter: number
|
|
4396
4304
|
|
|
4397
4305
|
// Own fields of Eog-3.0.Eog.URIConverter
|
|
@@ -4463,21 +4371,6 @@ module Window {
|
|
|
4463
4371
|
|
|
4464
4372
|
// Own constructor properties of Eog-3.0.Eog.Window
|
|
4465
4373
|
|
|
4466
|
-
/**
|
|
4467
|
-
* Determines the position of the image gallery in the window
|
|
4468
|
-
* relative to the image.
|
|
4469
|
-
*/
|
|
4470
|
-
gallery_position?: WindowGalleryPos | null
|
|
4471
|
-
/**
|
|
4472
|
-
* If %TRUE the gallery will be resizable by the user otherwise it will be
|
|
4473
|
-
* in single column/row mode.
|
|
4474
|
-
*/
|
|
4475
|
-
gallery_resizable?: boolean | null
|
|
4476
|
-
/**
|
|
4477
|
-
* A bitwise OR of #EogStartupFlags elements, indicating how the window
|
|
4478
|
-
* should behave upon creation.
|
|
4479
|
-
*/
|
|
4480
|
-
startup_flags?: StartupFlags | null
|
|
4481
4374
|
/**
|
|
4482
4375
|
* Determines the position of the image gallery in the window
|
|
4483
4376
|
* relative to the image.
|
|
@@ -4501,31 +4394,16 @@ interface Window extends Atk.ImplementorIface, Gio.ActionGroup, Gio.ActionMap, G
|
|
|
4501
4394
|
|
|
4502
4395
|
// Own properties of Eog-3.0.Eog.Window
|
|
4503
4396
|
|
|
4504
|
-
/**
|
|
4505
|
-
* Determines the position of the image gallery in the window
|
|
4506
|
-
* relative to the image.
|
|
4507
|
-
*/
|
|
4508
|
-
gallery_position: WindowGalleryPos
|
|
4509
4397
|
/**
|
|
4510
4398
|
* Determines the position of the image gallery in the window
|
|
4511
4399
|
* relative to the image.
|
|
4512
4400
|
*/
|
|
4513
4401
|
galleryPosition: WindowGalleryPos
|
|
4514
|
-
/**
|
|
4515
|
-
* If %TRUE the gallery will be resizable by the user otherwise it will be
|
|
4516
|
-
* in single column/row mode.
|
|
4517
|
-
*/
|
|
4518
|
-
gallery_resizable: boolean
|
|
4519
4402
|
/**
|
|
4520
4403
|
* If %TRUE the gallery will be resizable by the user otherwise it will be
|
|
4521
4404
|
* in single column/row mode.
|
|
4522
4405
|
*/
|
|
4523
4406
|
galleryResizable: boolean
|
|
4524
|
-
/**
|
|
4525
|
-
* A bitwise OR of #EogStartupFlags elements, indicating how the window
|
|
4526
|
-
* should behave upon creation.
|
|
4527
|
-
*/
|
|
4528
|
-
readonly startup_flags: StartupFlags
|
|
4529
4407
|
/**
|
|
4530
4408
|
* A bitwise OR of #EogStartupFlags elements, indicating how the window
|
|
4531
4409
|
* should behave upon creation.
|
package/package.json
CHANGED
|
@@ -1,13 +1,19 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@girs/eog-3.0",
|
|
3
|
-
"version": "3.0.0-3.2.
|
|
3
|
+
"version": "3.0.0-3.2.8",
|
|
4
4
|
"description": "GJS TypeScript type definitions for Eog-3.0, generated from library version 3.0.0",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"module": "eog-3.0.js",
|
|
7
7
|
"main": "eog-3.0.js",
|
|
8
8
|
"exports": {
|
|
9
|
-
"./ambient":
|
|
10
|
-
|
|
9
|
+
"./ambient": {
|
|
10
|
+
"types": "./eog-3.0-ambient.d.ts",
|
|
11
|
+
"default": "./eog-3.0-ambient.js"
|
|
12
|
+
},
|
|
13
|
+
"./import": {
|
|
14
|
+
"types": "./eog-3.0-import.d.ts",
|
|
15
|
+
"default": "./eog-3.0-import.js"
|
|
16
|
+
},
|
|
11
17
|
".": {
|
|
12
18
|
"import": {
|
|
13
19
|
"types": "./eog-3.0.d.ts",
|
|
@@ -25,20 +31,20 @@
|
|
|
25
31
|
"test:cjs": "NODE_OPTIONS=--max_old_space_size=9216 tsc --noEmit eog-3.0.d.cts"
|
|
26
32
|
},
|
|
27
33
|
"dependencies": {
|
|
28
|
-
"@girs/atk-1.0": "^2.
|
|
29
|
-
"@girs/cairo-1.0": "^1.0.0-3.2.
|
|
30
|
-
"@girs/freetype2-2.0": "^2.0.0-3.2.
|
|
31
|
-
"@girs/gdk-3.0": "^3.24.
|
|
32
|
-
"@girs/gdkpixbuf-2.0": "^2.0.0-3.2.
|
|
33
|
-
"@girs/gio-2.0": "^2.
|
|
34
|
-
"@girs/gjs": "^3.2.
|
|
35
|
-
"@girs/glib-2.0": "^2.
|
|
36
|
-
"@girs/gmodule-2.0": "^2.0.0-3.2.
|
|
37
|
-
"@girs/gobject-2.0": "^2.
|
|
38
|
-
"@girs/gtk-3.0": "^3.24.
|
|
39
|
-
"@girs/harfbuzz-0.0": "^8.
|
|
40
|
-
"@girs/pango-1.0": "^1.51.0-3.2.
|
|
41
|
-
"@girs/xlib-2.0": "^2.0.0-3.2.
|
|
34
|
+
"@girs/atk-1.0": "^2.45.1-3.2.8",
|
|
35
|
+
"@girs/cairo-1.0": "^1.0.0-3.2.8",
|
|
36
|
+
"@girs/freetype2-2.0": "^2.0.0-3.2.8",
|
|
37
|
+
"@girs/gdk-3.0": "^3.24.39-3.2.8",
|
|
38
|
+
"@girs/gdkpixbuf-2.0": "^2.0.0-3.2.8",
|
|
39
|
+
"@girs/gio-2.0": "^2.77.0-3.2.8",
|
|
40
|
+
"@girs/gjs": "^3.2.8",
|
|
41
|
+
"@girs/glib-2.0": "^2.77.0-3.2.8",
|
|
42
|
+
"@girs/gmodule-2.0": "^2.0.0-3.2.8",
|
|
43
|
+
"@girs/gobject-2.0": "^2.77.0-3.2.8",
|
|
44
|
+
"@girs/gtk-3.0": "^3.24.39-3.2.8",
|
|
45
|
+
"@girs/harfbuzz-0.0": "^8.1.1-3.2.8",
|
|
46
|
+
"@girs/pango-1.0": "^1.51.0-3.2.8",
|
|
47
|
+
"@girs/xlib-2.0": "^2.0.0-3.2.8"
|
|
42
48
|
},
|
|
43
49
|
"devDependencies": {
|
|
44
50
|
"typescript": "*"
|
|
@@ -55,7 +61,7 @@
|
|
|
55
61
|
"license": "MIT",
|
|
56
62
|
"repository": {
|
|
57
63
|
"type": "git",
|
|
58
|
-
"url": "git+https://github.com/gjsify/
|
|
64
|
+
"url": "git+https://github.com/gjsify/ts-for-gir.git"
|
|
59
65
|
},
|
|
60
66
|
"bugs": {
|
|
61
67
|
"url": "https://github.com/gjsify/ts-for-gir/issues"
|