Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

groovy update: regenerate #19

Merged
merged 45 commits into from
Oct 24, 2020
Merged
Show file tree
Hide file tree
Changes from 16 commits
Commits
Show all changes
45 commits
Select commit Hold shift + click to select a range
5e280a6
groovy update: regenerate
bilelmoussaoui Oct 9, 2020
69073bd
gir: port to new builders syntax
bilelmoussaoui Oct 9, 2020
393e856
gir: remove removed types
bilelmoussaoui Oct 9, 2020
7192518
generate window handle/controls
bilelmoussaoui Oct 9, 2020
58ed2f5
generate a18y types
bilelmoussaoui Oct 9, 2020
afd281f
generate constraints types
bilelmoussaoui Oct 9, 2020
efa1e4a
generate shortcut types
bilelmoussaoui Oct 9, 2020
0d8326a
generate popover types
bilelmoussaoui Oct 9, 2020
ed43575
generate listview types
bilelmoussaoui Oct 9, 2020
42bd1d5
generate column view types
bilelmoussaoui Oct 9, 2020
c44415d
generate grid view types
bilelmoussaoui Oct 9, 2020
46f4779
generate action types
bilelmoussaoui Oct 9, 2020
c05b682
generate filter types
bilelmoussaoui Oct 9, 2020
ba01ccb
generate missing lists
bilelmoussaoui Oct 9, 2020
6c4a683
add missing manual types
bilelmoussaoui Oct 9, 2020
e6c04f4
generate sorter types
bilelmoussaoui Oct 9, 2020
af5fb72
generate expression types
bilelmoussaoui Oct 9, 2020
bf546c9
generate missing layouts
bilelmoussaoui Oct 9, 2020
ec65823
generate emoji chooser
bilelmoussaoui Oct 9, 2020
9cdda98
generate missing drag/drop types
bilelmoussaoui Oct 9, 2020
8e6d20b
generate missing css enums
bilelmoussaoui Oct 9, 2020
8ea37c2
generate selection types
bilelmoussaoui Oct 9, 2020
2a929a7
generate bitset & native types
bilelmoussaoui Oct 9, 2020
2ca0aa3
generate more missing types
bilelmoussaoui Oct 9, 2020
35a56b8
generate missing triggers
bilelmoussaoui Oct 9, 2020
4859b13
generate more missing types
bilelmoussaoui Oct 9, 2020
dea7225
generate tree expander
bilelmoussaoui Oct 9, 2020
2471d28
generate missing builder/buildable types
bilelmoussaoui Oct 9, 2020
4707e29
add missing manual gdk type
bilelmoussaoui Oct 9, 2020
3145cf8
re-generate missing builders
bilelmoussaoui Oct 9, 2020
cfb6cdf
gir: resort & regen
bilelmoussaoui Oct 9, 2020
68c3cc8
make it compile
bilelmoussaoui Oct 11, 2020
9d8ce2f
manual: add gio::Application
bilelmoussaoui Oct 11, 2020
338f6f2
gir: fix gir_check tests
bilelmoussaoui Oct 11, 2020
6558d02
enable v2_66 features & regen
bilelmoussaoui Oct 16, 2020
efe44ef
cargo: use gdk from gtk-rs
bilelmoussaoui Oct 19, 2020
da625df
CI: use a custom image
bilelmoussaoui Oct 19, 2020
1283745
Gir: add missing manual traits
bilelmoussaoui Oct 19, 2020
563e666
rt: remove unneded unsafe blocks
bilelmoussaoui Oct 19, 2020
590ab71
Cargo: use gsk from gtk-rs
bilelmoussaoui Oct 19, 2020
a26645c
re-add gsk::ColorStop
bilelmoussaoui Oct 19, 2020
d1e7aa6
re-add ShortcutTrigger
bilelmoussaoui Oct 19, 2020
308aa93
add ShortcutsShortcut
bilelmoussaoui Oct 19, 2020
86afd71
StringObject: get_string's return isn't nullable
bilelmoussaoui Oct 21, 2020
15d018a
disable *Expression types for now
bilelmoussaoui Oct 21, 2020
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
816 changes: 459 additions & 357 deletions Gir.toml

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion gir
Submodule gir updated 63 files
+1 −0 .github/FUNDING.yml
+179 −0 .github/workflows/main.yaml
+1 −0 .gitignore
+0 −25 .travis.yml
+49 −40 Cargo.lock
+61 −12 README.md
+0 −34 appveyor.yml
+16 −6 src/analysis/bounds.rs
+2 −2 src/analysis/class_builder.rs
+1 −0 src/analysis/conversion_type.rs
+58 −13 src/analysis/functions.rs
+45 −6 src/analysis/imports.rs
+2 −0 src/analysis/namespaces.rs
+2 −0 src/analysis/object.rs
+29 −8 src/analysis/out_parameters.rs
+1 −3 src/analysis/properties.rs
+45 −2 src/analysis/record.rs
+1 −0 src/analysis/ref_mode.rs
+3 −3 src/analysis/rust_type.rs
+21 −0 src/analysis/safety_assertion_mode.rs
+1 −2 src/analysis/signals.rs
+3 −3 src/analysis/special_functions.rs
+2 −2 src/chunk/chunk.rs
+64 −8 src/codegen/doc/mod.rs
+12 −4 src/codegen/enums.rs
+12 −4 src/codegen/flags.rs
+8 −1 src/codegen/function.rs
+17 −12 src/codegen/function_body_chunk.rs
+155 −12 src/codegen/general.rs
+14 −5 src/codegen/object.rs
+18 −5 src/codegen/record.rs
+1 −1 src/codegen/signal.rs
+57 −138 src/codegen/sys/build.rs
+47 −12 src/codegen/sys/cargo_toml.rs
+54 −8 src/codegen/sys/functions.rs
+16 −7 src/codegen/sys/lib_.rs
+23 −1 src/codegen/sys/mod.rs
+3 −0 src/codegen/sys/tests.rs
+16 −5 src/codegen/trampoline_from_glib.rs
+1 −0 src/codegen/translate_from_glib.rs
+107 −8 src/config/config.rs
+0 −1 src/config/error.rs
+0 −1 src/config/external_libraries.rs
+23 −9 src/config/functions.rs
+37 −26 src/config/gobjects.rs
+0 −2 src/config/property_generate_flags.rs
+1 −1 src/config/string_type.rs
+9 −1 src/config/work_mode.rs
+7 −8 src/file_saver.rs
+30 −0 src/fmt.rs
+5 −1 src/git.rs
+1 −0 src/lib.rs
+38 −6 src/library.rs
+58 −4 src/main.rs
+63 −0 src/nameutil.rs
+40 −9 src/parser.rs
+10 −0 src/writer/mod.rs
+1 −1 src/writer/primitives.rs
+3 −5 src/writer/to_code.rs
+1 −0 tests/sys/gir-gdk.toml
+8 −2 tests/sys/gir-secret.toml
+16 −0 tests/sys/secret-sys/Cargo.toml
+8 −0 tests/sys/secret-sys/tests/manual.h
2 changes: 1 addition & 1 deletion gir-files
Submodule gir-files updated 35 files
+1 −0 .github/FUNDING.yml
+4,286 −3,204 Atk-1.0.gir
+1,428 −1,087 GIRepository-2.0.gir
+16,188 −10,052 GLib-2.0.gir
+133 −59 GModule-2.0.gir
+4,058 −3,579 GObject-2.0.gir
+6,001 −5,928 Gdk-3.0.gir
+5,123 −7,032 Gdk-4.0.gir
+724 −724 GdkPixbuf-2.0.gir
+61 −61 GdkPixdata-2.0.gir
+400 −400 GdkX11-3.0.gir
+628 −358 GdkX11-4.0.gir
+17,633 −16,558 Gio-2.0.gir
+1,430 −1,430 Graphene-1.0.gir
+2,547 −2,244 Gsk-4.0.gir
+26,893 −26,865 Gtk-3.0.gir
+55,878 −60,363 Gtk-4.0.gir
+2,597 −2,597 GtkSource-3.0.gir
+10,127 −0 HarfBuzz-0.0.gir
+606 −764 JavaScriptCore-4.0.gir
+4,668 −2,915 Pango-1.0.gir
+170 −142 PangoCairo-1.0.gir
+165 −59 PangoFT2-1.0.gir
+726 −0 PangoFc-1.0.gir
+1,037 −0 PangoOT-1.0.gir
+227 −163 PangoXft-1.0.gir
+2,862 −1,536 Secret-1.gir
+4,587 −4,014 Soup-2.4.gir
+1,319 −869 Vte-2.91.gir
+6,110 −3,721 WebKit2-4.0.gir
+5,677 −5,325 WebKit2WebExtension-4.0.gir
+3 −2 dl.sh
+52 −8 fix.sh
+5 −3 gir-dl.sh
+6 −1 reformat.sh
Loading