libnotify动作回调未被调用

时间:2013-06-20 16:33:50

标签: gnome libnotify

我正在尝试在gnome中创建一个简单的通知,它会在单击时执行一些代码。我在下面的代码编译并运行,但点击通知气泡不会做任何事情。我发现的所有代码示例表明这应该有效。

#include <stdlib.h>
#include <stdio.h>

#include <libnotify/notify.h>

void action(NotifyNotification *n, gchar *action, gpointer data) {
    system("gnome-terminal &");
}

int main(int argc, char **argv) {

    gtk_init(&argc, &argv);

    notify_init("MyApp");

    NotifyNotification *notification;
    notification = notify_notification_new("mynotification", "Hello", NULL, NULL);

    notify_notification_add_action(notification, "DoAction", "default",
            (NotifyActionCallback)action, NULL, NULL);

    notify_notification_show(notification, NULL);

    pause();

}

编译:

gcc main.c `pkg-config --cflags --libs libnotify`

我在RHEL 6.4,gnome 2.82.2。其他应用程序(例如firefox“下载完成”)能够创建通知,点击时执行操作;我不是以某种方式做对了。

1 个答案:

答案 0 :(得分:3)

有同样的问题。显然,您必须通过调用gtk_main或其中一个等效函数来使用GTK循环,而不是使用pause / sleep或其他非gtk阻塞函数。