我有一个用Vala编写的非常基本的GTK应用程序(非工作源树here),它打算从GResource加载主应用程序窗口的资源。
因此,我创建了一个资源文件,使用glib-compile-resources
对其进行了编译,并将其作为VALAFLAGS
添加到--gresources=$(top_srcdir)/data/gauthenticator.gresource.xml
。
数据文件的相关部分如下所示:
<gresource prefix="/eu/polonkai/gergely/gauthenticator">
<file preprocess="xml-stripblanks">gauth-window.ui</file>
</gresource>
我这样用它:
[GtkTemplate (ui = "/eu/polonkai/gergely/gauthenticator/gauth-window.ui")]
class Window : Gtk.ApplicationWindow {
[GtkChild]
private Gtk.ProgressBar countdown;
}
Makefile.am
的相关部分:
gresource_file = $(top_srcdir)/data/gauthenticator.gresource.xml
gauthenticator_VALAFLAGS = --pkg gtk+-3.0 --target-glib=2.38 --gresources $(gresource_file)
编译期间一切正常,但在运行时我收到此错误:
(gauthenticator:16501): Gtk-CRITICAL **: Unable to load resource for composite template for type 'GAuthenticatorWindow': The resource at '/eu/polonkai/gergely/gauthenticator/gauth-window.ui' does not exist
(gauthenticator:16501): Gtk-CRITICAL **: gtk_widget_class_bind_template_child_full: assertion 'widget_class->priv->template != NULL' failed
(gauthenticator:16501): Gtk-CRITICAL **: gtk_widget_init_template: assertion 'template != NULL' failed
我从GNOME Boxes存储库中复制了大多数与资源相关的行,但显然遗漏了一些东西。
答案 0 :(得分:4)
您如何使用glib-compile-resources
编译资源?我建议将其编译为C文件:
glib-compile-resources --sourcedir data --generate-source --target my_build_dir/resources/resources.c data/gauthenticator.gresource.xml
然后将my_build_dir/resources/resources.c
添加到_SOURCES
,以便与您的Vala源一起编译。 --gresources
的{{1}}选项仅对Vala的GTK +复合模板支持进行类型检查。
我没有尝试将GResource C文件编译为Vala到C的一部分,然后是C到二进制编译过程。目前看起来你只是在整个编译过程中使用valac
。