about summary refs log tree commit diff stats
path: root/src/tools
diff options
context:
space:
mode:
authorptitSeb <sebastien.chev@gmail.com>2023-12-06 17:39:19 +0100
committerptitSeb <sebastien.chev@gmail.com>2023-12-06 17:39:19 +0100
commitdf3e1ace6171f5e893db72c6c1fafed1cacab0cf (patch)
tree2f3fab8801d900b047bfbcdf89aaf1909ec6e57f /src/tools
parent6def5118bbc8dd4bba825fbe05b0e14e162141a9 (diff)
downloadbox64-df3e1ace6171f5e893db72c6c1fafed1cacab0cf.tar.gz
box64-df3e1ace6171f5e893db72c6c1fafed1cacab0cf.zip
[GTK3] Wrapped GtkFixed
Diffstat (limited to 'src/tools')
-rw-r--r--src/tools/gtkclass.c29
1 files changed, 29 insertions, 0 deletions
diff --git a/src/tools/gtkclass.c b/src/tools/gtkclass.c
index 8e9ea13f..97eac80d 100644
--- a/src/tools/gtkclass.c
+++ b/src/tools/gtkclass.c
@@ -1664,6 +1664,35 @@ static void bridgeGtkFixed2Instance(my_GtkFixed2_t* class)
 {
     bridgeGtkContainer2Instance(&class->parent);
 }
+
+// ----- GtkFixed3Class ------
+
+// wrap (so bridge all calls, just in case)
+static void wrapGtkFixed3Class(my_GtkFixed3Class_t* class)
+{
+    wrapGtkWidget3Class(&class->parent_class);
+}
+// unwrap (and use callback if not a native call anymore)
+static void unwrapGtkFixed3Class(my_GtkFixed3Class_t* class)
+{
+    unwrapGtkWidget3Class(&class->parent_class);
+}
+// autobridge
+static void bridgeGtkFixed3Class(my_GtkFixed3Class_t* class)
+{
+    bridgeGtkWidget3Class(&class->parent_class);
+}
+
+static void unwrapGtkFixed3Instance(my_GtkFixed3_t* class)
+{
+    unwrapGtkWidget3Instance(&class->parent);
+}
+// autobridge
+static void bridgeGtkFixed3Instance(my_GtkFixed3_t* class)
+{
+    bridgeGtkWidget3Instance(&class->parent);
+}
+
 // ----- MetaFrames2Class ------
 
 // wrap (so bridge all calls, just in case)