如何使用 GTK/GIO 设置徽章?
我正在尝试使用 gio 设置标志
#include <gtk/gtk.h>
#include <gdk/gdk.h>
#include <glib.h>
#include <gio/gio.h>
#include <stdio.h>
int main (int argc, char *argv[])
{
GFile *gfile = NULL;
g_type_init();
gfile = g_file_new_for_path("./foo.txt");
if (g_file_set_attribute_string(gfile,
"metadata::emblems",
"favorite",
G_FILE_QUERY_INFO_NONE,
NULL, NULL) == TRUE) {
puts("Success");
} else {
puts("Fail");
}
return 0;
}
,如果文件存在,函数返回 TRUE,根据文档,这意味着元数据已设置,但 Nautilus (GNOME) 不显示 favorite
标志。网上的例子不多,所以我有点卡住了。
I'm trying to set an emblem using gio
#include <gtk/gtk.h>
#include <gdk/gdk.h>
#include <glib.h>
#include <gio/gio.h>
#include <stdio.h>
int main (int argc, char *argv[])
{
GFile *gfile = NULL;
g_type_init();
gfile = g_file_new_for_path("./foo.txt");
if (g_file_set_attribute_string(gfile,
"metadata::emblems",
"favorite",
G_FILE_QUERY_INFO_NONE,
NULL, NULL) == TRUE) {
puts("Success");
} else {
puts("Fail");
}
return 0;
}
if the file exists, the function returns TRUE, which, according the docs means the metadata was set, but Nautilus (GNOME) doesn't display the favorite
emblem. There are not many example on the net, so I'm kind of stuck.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
即使您只设置一个值,metadata::emblems 看起来也需要一组字符串。
这似乎有效:
It looks like metadata::emblems needs an array of strings even if you are only setting one value.
This seems to work:
如果您希望 Nautilus 显示标志,您实际上需要为 Nautilus 提供扩展才能执行此操作。您的扩展程序应使用 nautilus-info-提供者接口,以及nautilus_info_provider_update_file_info()
函数,您可以调用 nautilus_file_info_add_emblem() 函数添加徽章。
If you want Nautilus to show an emblem, you need to actually provide an extension to Nautilus to do so. Your extension should use the nautilus-info-provider interface, and in the nautilus_info_provider_update_file_info()
function you can call the nautilus_file_info_add_emblem() function to add an emblem.