Skip to content

Commit

Permalink
regenerate code
Browse files Browse the repository at this point in the history
  • Loading branch information
jwahlstrand committed Aug 25, 2024
1 parent d0cac18 commit 6f427c8
Show file tree
Hide file tree
Showing 2 changed files with 0 additions and 90 deletions.
72 changes: 0 additions & 72 deletions src/gen/gsk4_structs
Original file line number Diff line number Diff line change
Expand Up @@ -123,78 +123,6 @@ $(Expr(:toplevel, quote
end
const GskPathPointLike = GskPathPoint
end
mutable struct GskPath <: GBoxed
handle::Ptr{GskPath}
begin
(GLib.g_type(::Type{T}) where T <: GskPath) = begin
ccall(("gsk_path_get_type", libgtk4), GType, ())
end
function GskPath(ref::Ptr{T}, own::Bool = false) where T <: GBoxed
x = new(ref)
if own
finalizer(x) do x
GLib.delboxed(x)
end
end
x
end
push!(gboxed_types, GskPath)
end
end
mutable struct GskPathBuilder <: GBoxed
handle::Ptr{GskPathBuilder}
begin
(GLib.g_type(::Type{T}) where T <: GskPathBuilder) = begin
ccall(("gsk_path_builder_get_type", libgtk4), GType, ())
end
function GskPathBuilder(ref::Ptr{T}, own::Bool = false) where T <: GBoxed
x = new(ref)
if own
finalizer(x) do x
GLib.delboxed(x)
end
end
x
end
push!(gboxed_types, GskPathBuilder)
end
end
mutable struct GskPathMeasure <: GBoxed
handle::Ptr{GskPathMeasure}
begin
(GLib.g_type(::Type{T}) where T <: GskPathMeasure) = begin
ccall(("gsk_path_measure_get_type", libgtk4), GType, ())
end
function GskPathMeasure(ref::Ptr{T}, own::Bool = false) where T <: GBoxed
x = new(ref)
if own
finalizer(x) do x
GLib.delboxed(x)
end
end
x
end
push!(gboxed_types, GskPathMeasure)
end
end
mutable struct GskPathPoint <: GBoxed
handle::Ptr{GskPathPoint}
begin
(GLib.g_type(::Type{T}) where T <: GskPathPoint) = begin
ccall(("gsk_path_point_get_type", libgtk4), GType, ())
end
function GskPathPoint(ref::Ptr{T}, own::Bool = false) where T <: GBoxed
x = new(ref)
if own
finalizer(x) do x
GLib.delboxed(x)
end
end
x
end
push!(gboxed_types, GskPathPoint)
end
end
begin
mutable struct GskRoundedRect
handle::Ptr{GskRoundedRect}
Expand Down
18 changes: 0 additions & 18 deletions src/gen/gtk4_structs
Original file line number Diff line number Diff line change
Expand Up @@ -268,24 +268,6 @@ $(Expr(:toplevel, quote
end
const GtkPrintSetupLike = GtkPrintSetup
end
mutable struct GtkPrintSetup <: GBoxed
handle::Ptr{GtkPrintSetup}
begin
(GLib.g_type(::Type{T}) where T <: GtkPrintSetup) = begin
ccall(("gtk_print_setup_get_type", libgtk4), GType, ())
end
function GtkPrintSetup(ref::Ptr{T}, own::Bool = false) where T <: GBoxed
x = new(ref)
if own
finalizer(x) do x
GLib.delboxed(x)
end
end
x
end
push!(gboxed_types, GtkPrintSetup)
end
end
begin
struct _GtkRecentData
display_name::Cstring
Expand Down

0 comments on commit 6f427c8

Please sign in to comment.