summary refs log tree commit diff stats
path: root/plugins/hextray/hextray.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'plugins/hextray/hextray.cpp')
-rw-r--r--plugins/hextray/hextray.cpp246
1 files changed, 0 insertions, 246 deletions
diff --git a/plugins/hextray/hextray.cpp b/plugins/hextray/hextray.cpp
deleted file mode 100644
index bf09f736..00000000
--- a/plugins/hextray/hextray.cpp
+++ /dev/null
@@ -1,246 +0,0 @@
-/* X-Tray

- * Copyright (C) 2005 Michael Hotaling <Mike.Hotaling@SinisterDevelopments.com>

- *

- * X-Tray is free software; you can redistribute it and/or modify

- * it under the terms of the GNU General Public License as published by

- * the Free Software Foundation; either version 2 of the License, or

- * (at your option) any later version.

- * 

- * X-Tray is distributed in the hope that it will be useful,

- * but WITHOUT ANY WARRANTY; without even the implied warranty of

- * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the

- * GNU General Public License for more details.

- * 

- * You should have received a copy of the GNU General Public License

- * along with X-Tray; if not, write to the Free Software

- * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA

- */

-

-#define _WIN32_IE 0x0601

-

-#include <windows.h>

-#include <list>

-#include <string>

-#include <shobjidl.h>

-

-#include "hexchat-plugin.h"

-#include "resource.h"

-#include "callbacks.h"

-#include "utility.h"

-#include "hextray.h"

-#include "sdTray.h"

-#include "sdAlerts.h"

-

-/*****************************************************/

-/**** Don't want to pollute the namespace do we? *****/

-/*****************************************************/

-std::list<hexchat_hook *> g_vHooks;

-

-/*****************************************************/

-/************ Global Identifiers *********************/

-/*****************************************************/

-WNDPROC g_hOldProc;

-hexchat_plugin *ph;

-

-/*****************************************************/

-/***************** Resources *************************/

-/*****************************************************/

-HWND	g_hXchatWnd;

-HWND	g_hHotkeyWnd;

-HWND	g_hPrefDlg;

-HMENU	g_hTrayMenu;

-HICON	g_hIcons[24];

-HANDLE	g_hInstance;

-/*****************************************************/

-/***************** Preferences ***********************/

-/*****************************************************/

-unsigned int g_dwPrefs;

-TCHAR	g_szAway[512];

-int		g_iTime;

-

-

-BOOL WINAPI DllMain(HANDLE hModule, DWORD fdwReason, LPVOID lpVoid)

-{

-	if((fdwReason == DLL_PROCESS_ATTACH) || (fdwReason == DLL_THREAD_ATTACH))

-	{

-		g_hInstance = hModule;

-	}

-

-	return TRUE;

-}

-

-int hexchat_plugin_init(hexchat_plugin *plugin_handle, char **plugin_name, char **plugin_desc, char **plugin_version, char *arg)

-{

-	ph = plugin_handle;

-

-	*plugin_name	= "HexTray";

-	*plugin_desc	= "Minimize HexChat to the Windows system tray";

-	*plugin_version = "1.3.0";

-

-	char buffer[256];

-

-	/***************************************************************************************************************************/

-	/************************* Initialize our preferences if they don't exist yet **********************************************/

-	/***************************************************************************************************************************/

-

-	if (hexchat_pluginpref_get_int (ph, "settings") == -1)

-	{

-		hexchat_pluginpref_set_int (ph, "settings", HT_DEF_SET);

-	}

-	if (hexchat_pluginpref_get_int (ph, "aot") == -1)

-	{

-		hexchat_pluginpref_set_int (ph, "aot", HT_DEF_AOT);

-	}

-	if (hexchat_pluginpref_get_int (ph, "key") == -1)

-	{

-		hexchat_pluginpref_set_int (ph, "key", HT_DEF_KEY);

-	}

-	if (hexchat_pluginpref_get_int (ph, "mod") == -1)

-	{

-		hexchat_pluginpref_set_int (ph, "mod", HT_DEF_MOD);

-	}

-	if (hexchat_pluginpref_get_str (ph, "away", buffer) == 0)

-	{

-		hexchat_pluginpref_set_str (ph, "away", "");

-	}

-

-	/***************************************************************************************************************************/

-	/************************* Load our preferences ****************************************************************************/

-	/***************************************************************************************************************************/

-	LoadPrefs();

-

-	/***************************************************************************************************************************/

-	/************************* Finds the HexChat window and saves it for later use *********************************************/

-	/***************************************************************************************************************************/

-	g_hXchatWnd = (HWND)hexchat_get_info(ph, "win_ptr");

-

-	if(g_hXchatWnd == NULL)

-	{

-		EnumThreadWindows(GetCurrentThreadId(), EnumWindowsProc, 0);

-	}

-

-	g_hOldProc	= (WNDPROC)GetWindowLongPtr(g_hXchatWnd, GWLP_WNDPROC);

-	SetWindowLongPtr(g_hXchatWnd, GWLP_WNDPROC, (LONG_PTR)WindowProc);

-

-	/***************************************************************************************************************************/	

-	/************************* Grab the HexChat Icon, Load our menu, create the window to receive the hotkey messages  *********/

-	/************************* and register the windows message so we know if explorer crashes                       ***********/

-	/***************************************************************************************************************************/

-	g_hTrayMenu		= GetSubMenu(LoadMenu((HINSTANCE)g_hInstance, MAKEINTRESOURCE(IDR_TRAY_MENU)), 0);

-	g_hHotkeyWnd	= CreateDialog((HINSTANCE)g_hInstance, MAKEINTRESOURCE(IDD_ALERT), NULL,		(DLGPROC)HotKeyProc);

-	g_hPrefDlg		= CreateDialog((HINSTANCE)g_hInstance, MAKEINTRESOURCE(IDD_PREF),  g_hXchatWnd, (DLGPROC)PrefProc);

-

-	g_hIcons[0]	= (HICON)LoadImage((HINSTANCE)g_hInstance, MAKEINTRESOURCE(ICO_XCHAT),			IMAGE_ICON, 16, 16, LR_DEFAULTCOLOR);

-	g_hIcons[2]	= (HICON)LoadImage((HINSTANCE)g_hInstance, MAKEINTRESOURCE(ICO_HIGHLIGHT),		IMAGE_ICON, 16, 16, LR_DEFAULTCOLOR);

-	g_hIcons[5]	= (HICON)LoadImage((HINSTANCE)g_hInstance, MAKEINTRESOURCE(ICO_BANNED),			IMAGE_ICON, 16, 16, LR_DEFAULTCOLOR);

-	g_hIcons[6]	= (HICON)LoadImage((HINSTANCE)g_hInstance, MAKEINTRESOURCE(ICO_KICKED),			IMAGE_ICON, 16, 16, LR_DEFAULTCOLOR);

-	g_hIcons[8]	= (HICON)LoadImage((HINSTANCE)g_hInstance, MAKEINTRESOURCE(ICO_PMSG),			IMAGE_ICON, 16, 16, LR_DEFAULTCOLOR);

-	g_hIcons[10]= (HICON)LoadImage((HINSTANCE)g_hInstance, MAKEINTRESOURCE(ICO_SNOTICE),		IMAGE_ICON, 16, 16, LR_DEFAULTCOLOR);

-	g_hIcons[11]= (HICON)LoadImage((HINSTANCE)g_hInstance, MAKEINTRESOURCE(ICO_DISCONNECTED),	IMAGE_ICON, 16, 16, LR_DEFAULTCOLOR);

-	g_hIcons[22]	= (HICON)LoadImage((HINSTANCE)g_hInstance, MAKEINTRESOURCE(ICO_CHANMSG),		IMAGE_ICON, 16, 16, LR_DEFAULTCOLOR);

-

-	/***************************************************************************************************************************/

-	/************************* Add our icon to the tray ************************************************************************/

-	/***************************************************************************************************************************/

-	char szVersion[64];

-	_snprintf(szVersion, 64, "HexChat %s", hexchat_get_info(ph, "version"));

-	AddIcon(g_hXchatWnd, 1, g_hIcons[0], szVersion, (NIF_ICON | NIF_MESSAGE | NIF_TIP), WM_TRAYMSG);

-

-	/***************************************************************************************************************************/

-	/***************************************************************************************************************************/

-	/***************************************************************************************************************************/

-	if(g_dwPrefs & (1<<PREF_DNSIT))

-	{

-		DWORD dwStyle;

-		dwStyle = GetWindowLong(g_hXchatWnd, GWL_STYLE);

-		dwStyle |= (1<<WS_CHILD);

-		SetWindowLongPtr(g_hXchatWnd, GWL_STYLE, (LONG_PTR)dwStyle);

-		SetWindowLongPtr(g_hXchatWnd, GWL_HWNDPARENT, (LONG_PTR)g_hHotkeyWnd);

-	}

-

-	/***************************************************************************************************************************/

-	/************************* Set our hooks and save them for later so we can unhook them *************************************/

-	/***************************************************************************************************************************/

-	g_vHooks.push_back(hexchat_hook_print(ph, "Channel Msg Hilight",			HEXCHAT_PRI_NORM, event_cb,	(void *)CHAN_HILIGHT));

-	g_vHooks.push_back(hexchat_hook_print(ph, "Channel Message",				HEXCHAT_PRI_NORM, event_cb,	(void *)CHAN_MESSAGE));

-	g_vHooks.push_back(hexchat_hook_print(ph, "Topic Change",					HEXCHAT_PRI_NORM, event_cb,	(void *)CHAN_TOPIC_CHANGE));

-	g_vHooks.push_back(hexchat_hook_print(ph, "Channel Action Hilight",		HEXCHAT_PRI_NORM, event_cb,	(void *)CHAN_HILIGHT));

-	g_vHooks.push_back(hexchat_hook_print(ph, "Channel INVITE",				HEXCHAT_PRI_NORM, event_cb,	(void *)CHAN_INVITE));

-	g_vHooks.push_back(hexchat_hook_print(ph, "You Kicked",					HEXCHAT_PRI_NORM, event_cb,	(void *)CHAN_KICKED));

-	g_vHooks.push_back(hexchat_hook_print(ph, "Banned",						HEXCHAT_PRI_NORM, event_cb,	(void *)CHAN_BANNED));

-	g_vHooks.push_back(hexchat_hook_print(ph, "CTCP Generic",					HEXCHAT_PRI_NORM, event_cb,	(void *)CTCP_GENERIC));

-	g_vHooks.push_back(hexchat_hook_print(ph, "Private Message",				HEXCHAT_PRI_NORM, event_cb,	(void *)PMSG_RECEIVE));

-	g_vHooks.push_back(hexchat_hook_print(ph, "Private Message to Dialog",	HEXCHAT_PRI_NORM, event_cb,	(void *)PMSG_RECEIVE));

-	g_vHooks.push_back(hexchat_hook_print(ph, "Disconnected",					HEXCHAT_PRI_NORM, event_cb,	(void *)SERV_DISCONNECT));

-	g_vHooks.push_back(hexchat_hook_print(ph, "Killed",						HEXCHAT_PRI_NORM, event_cb,	(void *)SERV_KILLED));

-	g_vHooks.push_back(hexchat_hook_print(ph, "Notice",						HEXCHAT_PRI_NORM, event_cb,	(void *)SERV_NOTICE));

-	g_vHooks.push_back(hexchat_hook_command(ph, "tray_alert",					HEXCHAT_PRI_NORM, command_cb,	"Create an Alert", NULL));

-

-	return 1;

-}

-

-int hexchat_plugin_deinit(hexchat_plugin *plugin_handle)

-{

-	/******************************************/

-	/****** Remove the Icon from the tray *****/

-	/******************************************/

-	StopBlink(g_hXchatWnd, 1, g_hIcons[0]);

-	RemoveIcon(g_hXchatWnd, 1);

-	

-	/*******************************************/

-	/*******************************************/

-	/*******************************************/

-	if(g_dwPrefs & (1<<PREF_DNSIT))

-	{

-		DWORD dwStyle;

-		dwStyle = GetWindowLong(g_hXchatWnd, GWL_STYLE);

-		dwStyle &= ~(1<<WS_CHILD);

-		SetWindowLongPtr(g_hXchatWnd, GWL_STYLE, (LONG_PTR)dwStyle);

-		SetWindowLongPtr(g_hXchatWnd, GWL_HWNDPARENT, NULL);

-	}

-

-	/******************************************/

-	/****** Unload our resources **************/

-	/******************************************/

-	DestroyMenu(g_hTrayMenu);

-

-	for(int i = 0; i <= 11; i++)

-	{

-		DestroyIcon(g_hIcons[i]);

-	}

-

-	/******************************************/

-	/****** Remove our window hook ************/

-	/******************************************/

-	SetWindowLongPtr(g_hXchatWnd, GWLP_WNDPROC, (LONG_PTR)g_hOldProc);

-

-	/******************************************/

-	/****** Remove our hotkey, and destroy ****/

-	/****** the window that receives its   ****/

-	/****** messages                       ****/

-	/******************************************/

-	UnregisterHotKey(g_hHotkeyWnd, 1);

-	DestroyWindow(g_hHotkeyWnd);

-	DestroyWindow(g_hPrefDlg);

-

-	/******************************************/

-	/************* Clean up Isle 7 ************/

-	/******************************************/

-	if(sdAlertNum())

-	{

-		sdCloseAlerts();

-	}

-	/******************************************/

-	/****** remove our hexchat_hook_*s **********/

-	/******************************************/

-	while(!g_vHooks.empty())

-	{

-		if(g_vHooks.back() != NULL)

-		{

-			hexchat_unhook(ph, g_vHooks.back());

-		}

-		g_vHooks.pop_back();

-	}

-

-	return 1;

-}