Mercurial > pidgin.yaz
comparison finch/gntui.c @ 19516:e1751162ab1f
Add certificate UI in finch.
author | Sadrul Habib Chowdhury <imadil@gmail.com> |
---|---|
date | Wed, 29 Aug 2007 05:18:39 +0000 |
parents | 907c41608ada |
children | bc23f7323ed2 |
comparison
equal
deleted
inserted
replaced
19515:b62683f4120d | 19516:e1751162ab1f |
---|---|
23 | 23 |
24 #include "gntui.h" | 24 #include "gntui.h" |
25 | 25 |
26 #include "gntaccount.h" | 26 #include "gntaccount.h" |
27 #include "gntblist.h" | 27 #include "gntblist.h" |
28 #include "gntcertmgr.h" | |
28 #include "gntconn.h" | 29 #include "gntconn.h" |
29 #include "gntconv.h" | 30 #include "gntconv.h" |
30 #include "gntdebug.h" | 31 #include "gntdebug.h" |
31 #include "gntft.h" | 32 #include "gntft.h" |
32 #include "gntnotify.h" | 33 #include "gntnotify.h" |
35 #include "gntprefs.h" | 36 #include "gntprefs.h" |
36 #include "gntrequest.h" | 37 #include "gntrequest.h" |
37 #include "gntstatus.h" | 38 #include "gntstatus.h" |
38 #include "gntsound.h" | 39 #include "gntsound.h" |
39 | 40 |
41 #include <dbus-server.h> | |
40 #include <prefs.h> | 42 #include <prefs.h> |
41 | 43 |
42 void gnt_ui_init() | 44 void gnt_ui_init() |
43 { | 45 { |
44 #ifdef STANDALONE | 46 #ifdef STANDALONE |
79 purple_xfers_set_ui_ops(finch_xfers_get_ui_ops()); | 81 purple_xfers_set_ui_ops(finch_xfers_get_ui_ops()); |
80 | 82 |
81 gnt_register_action(_("Accounts"), finch_accounts_show_all); | 83 gnt_register_action(_("Accounts"), finch_accounts_show_all); |
82 gnt_register_action(_("Buddy List"), finch_blist_show); | 84 gnt_register_action(_("Buddy List"), finch_blist_show); |
83 gnt_register_action(_("Buddy Pounces"), finch_pounces_manager_show); | 85 gnt_register_action(_("Buddy Pounces"), finch_pounces_manager_show); |
86 gnt_register_action(_("Certificates"), finch_certmgr_show); | |
84 gnt_register_action(_("Debug Window"), finch_debug_window_show); | 87 gnt_register_action(_("Debug Window"), finch_debug_window_show); |
85 gnt_register_action(_("File Transfers"), finch_xfer_dialog_show); | 88 gnt_register_action(_("File Transfers"), finch_xfer_dialog_show); |
86 gnt_register_action(_("Plugins"), finch_plugins_show_all); | 89 gnt_register_action(_("Plugins"), finch_plugins_show_all); |
87 gnt_register_action(_("Sounds"), finch_sounds_show_all); | 90 gnt_register_action(_("Sounds"), finch_sounds_show_all); |
88 gnt_register_action(_("Preferences"), finch_prefs_show_all); | 91 gnt_register_action(_("Preferences"), finch_prefs_show_all); |
89 gnt_register_action(_("Statuses"), finch_savedstatus_show_all); | 92 gnt_register_action(_("Statuses"), finch_savedstatus_show_all); |
93 gnt_register_action("Disable Dbus", purple_dbus_uninit); | |
90 | 94 |
91 #ifdef STANDALONE | 95 #ifdef STANDALONE |
92 | 96 |
93 finch_plugins_save_loaded(); | 97 finch_plugins_save_loaded(); |
94 } | 98 } |