int tray_plugin_init (hexchat_plugin *plugin_handle, char **plugin_name, char **plugin_desc, char **plugin_version, char *arg) { /* we need to save this for use with any hexchat_* functions */ ph = plugin_handle; *plugin_name = ""; *plugin_desc = ""; *plugin_version = ""; hexchat_hook_print (ph, "Channel Msg Hilight", -1, tray_hilight_cb, NULL); hexchat_hook_print (ph, "Channel Action Hilight", -1, tray_hilight_cb, NULL); hexchat_hook_print (ph, "Channel Message", -1, tray_message_cb, NULL); hexchat_hook_print (ph, "Channel Action", -1, tray_message_cb, NULL); hexchat_hook_print (ph, "Channel Notice", -1, tray_message_cb, NULL); hexchat_hook_print (ph, "Private Message", -1, tray_priv_cb, NULL); hexchat_hook_print (ph, "Private Message to Dialog", -1, tray_priv_cb, NULL); hexchat_hook_print (ph, "Notice", -1, tray_priv_cb, NULL); hexchat_hook_print (ph, "Invited", -1, tray_invited_cb, NULL); hexchat_hook_print (ph, "DCC Offer", -1, tray_dcc_cb, NULL); hexchat_hook_print (ph, "Focus Window", -1, tray_focus_cb, NULL); if (prefs.hex_gui_tray && !hextray_mode ()) tray_init (); return 1; /* return 1 for success */ }
void tray_apply_setup (void) { if (sticon) { if (!prefs.hex_gui_tray) tray_cleanup (); } else { if (prefs.hex_gui_tray && !hextray_mode ()) tray_init (); } }
int main (int argc, char *argv[]) { int ret; #ifdef WIN32 char hexchat_lang[13]; /* LC_ALL= plus 5 chars of gui_lang and trailing \0 */ HANDLE mutex; #endif srand (time (0)); /* CL: do this only once! */ load_config (); #ifdef WIN32 /* we MUST do this after load_config () AND before fe_init (thus gtk_init) otherwise it will fail */ strcpy (hexchat_lang, "LC_ALL="); switch (prefs.gui_lang) { case 0: strcat (hexchat_lang, "sq"); break; case 1: strcat (hexchat_lang, "am"); break; case 2: strcat (hexchat_lang, "az"); break; case 3: strcat (hexchat_lang, "eu"); break; case 4: strcat (hexchat_lang, "be"); break; case 5: strcat (hexchat_lang, "bg"); break; case 6: strcat (hexchat_lang, "ca"); break; case 7: strcat (hexchat_lang, "zh_CN"); break; case 8: strcat (hexchat_lang, "zh_TW"); break; case 9: strcat (hexchat_lang, "cs"); break; case 10: strcat (hexchat_lang, "nl"); break; case 11: strcat (hexchat_lang, "en_GB"); break; case 12: strcat (hexchat_lang, "en_US"); break; case 13: strcat (hexchat_lang, "et"); break; case 14: strcat (hexchat_lang, "fi"); break; case 15: strcat (hexchat_lang, "fr"); break; case 16: strcat (hexchat_lang, "gl"); break; case 17: strcat (hexchat_lang, "de"); break; case 18: strcat (hexchat_lang, "el"); break; case 19: strcat (hexchat_lang, "hi"); break; case 20: strcat (hexchat_lang, "hu_HU"); break; case 21: strcat (hexchat_lang, "it"); break; case 22: strcat (hexchat_lang, "ja"); break; case 23: strcat (hexchat_lang, "kn"); break; case 24: strcat (hexchat_lang, "ko"); break; case 25: strcat (hexchat_lang, "lv"); break; case 26: strcat (hexchat_lang, "lt"); break; case 27: strcat (hexchat_lang, "mk"); break; case 28: strcat (hexchat_lang, "ms"); break; case 29: strcat (hexchat_lang, "nb"); break; case 30: strcat (hexchat_lang, "no"); break; case 31: strcat (hexchat_lang, "pl"); break; case 32: strcat (hexchat_lang, "pt"); break; case 33: strcat (hexchat_lang, "pt_BR"); break; case 34: strcat (hexchat_lang, "pa"); break; case 35: strcat (hexchat_lang, "ru"); break; case 36: strcat (hexchat_lang, "sr"); break; case 37: strcat (hexchat_lang, "sk"); break; case 38: strcat (hexchat_lang, "sl"); break; case 39: strcat (hexchat_lang, "es"); break; case 40: strcat (hexchat_lang, "sv"); break; case 41: strcat (hexchat_lang, "th"); break; case 42: strcat (hexchat_lang, "uk"); break; case 43: strcat (hexchat_lang, "vi"); break; case 44: strcat (hexchat_lang, "wa"); break; default: strcat (hexchat_lang, "en_US"); break; } putenv (hexchat_lang); if (prefs.gui_one_instance && !portable_mode ()) { DWORD error; mutex = CreateMutex (NULL, TRUE, "Local\\hexchat"); error = GetLastError (); if (error == ERROR_ALREADY_EXISTS || mutex == NULL) { /* restoring the XChat window from the tray via the taskbar icon * only works correctly when X-Tray is used, but it's not a big deal * since you can only minimize XChat to tray via the taskbar if you * use X-Tray*/ if (hextray_mode ()) { /* FindWindow() doesn't support wildcards so we check all the open windows */ EnumWindows (enum_windows_impl, NULL); return 0; } else { return 1; } } } #endif #ifdef SOCKS SOCKSinit (argv[0]); #endif ret = fe_args (argc, argv); if (ret != -1) return ret; #ifdef USE_DBUS xchat_remote (); #endif #ifdef USE_LIBPROXY libproxy_factory = px_proxy_factory_new(); #endif fe_init (); xchat_init (); fe_main (); #ifdef USE_LIBPROXY px_proxy_factory_free(libproxy_factory); #endif #ifdef USE_OPENSSL if (ctx) _SSL_context_free (ctx); #endif #ifdef USE_DEBUG xchat_mem_list (); #endif #ifdef WIN32 WSACleanup (); if (prefs.gui_one_instance && !portable_mode ()) { ReleaseMutex (mutex); CloseHandle (mutex); } #endif return 0; }