aboutsummaryrefslogtreecommitdiff
path: root/plugin
diff options
context:
space:
mode:
authorhiro <hiro@ee746299-78ed-0310-b773-934348b2243d>2013-02-13 08:44:28 +0000
committerhiro <hiro@ee746299-78ed-0310-b773-934348b2243d>2013-02-13 08:44:28 +0000
commit40a57dbe977d3d7b2a2b22f2bc7ffcb20832e9e4 (patch)
treea662ed6715beed9ed2c112710bc88431e8ef72ef /plugin
parentdef6dee82e3ddfbaaba95255f08e196575444f58 (diff)
added plug-in API for notification window.
git-svn-id: svn://sylpheed.sraoss.jp/sylpheed/trunk@3217 ee746299-78ed-0310-b773-934348b2243d
Diffstat (limited to 'plugin')
-rw-r--r--plugin/test/test.c5
1 files changed, 4 insertions, 1 deletions
diff --git a/plugin/test/test.c b/plugin/test/test.c
index a7e63ebe..945a53fe 100644
--- a/plugin/test/test.c
+++ b/plugin/test/test.c
@@ -28,7 +28,7 @@
static SylPluginInfo info = {
"Test Plugin",
- "3.2.0",
+ "3.4.0",
"Hiroyuki Yamamoto",
"Test plug-in for Sylpheed plug-in system"
};
@@ -146,6 +146,9 @@ static void init_done_cb(GObject *obj, gpointer data)
syl_plugin_update_check_set_jump_url("http://localhost/index.html");
syl_plugin_update_check_set_check_plugin_url("http://localhost/plugin_version.txt");
syl_plugin_update_check_set_jump_plugin_url("http://localhost/plugin.html");
+
+ syl_plugin_notification_window_open("Sylpheed app init done", "Normal text\n<b>Bold</b>\n<s>Strikethrough</s>", 5);
+
g_print("test: %p: app init done\n", obj);
}