mirror of
https://github.com/moparisthebest/hexchat
synced 2024-11-22 01:02:20 -05:00
fix for x64 xtray
This commit is contained in:
parent
5607488e9f
commit
3fab4f0d7d
2
config.h
2
config.h
@ -3,7 +3,7 @@
|
|||||||
#define USE_GMODULE
|
#define USE_GMODULE
|
||||||
#define USE_PLUGIN
|
#define USE_PLUGIN
|
||||||
#define PACKAGE_NAME "xchat"
|
#define PACKAGE_NAME "xchat"
|
||||||
#define PACKAGE_VERSION "r1409-7"
|
#define PACKAGE_VERSION "r1409-8"
|
||||||
#define XCHATLIBDIR "."
|
#define XCHATLIBDIR "."
|
||||||
#define XCHATSHAREDIR "."
|
#define XCHATSHAREDIR "."
|
||||||
#define OLD_PERL
|
#define OLD_PERL
|
||||||
|
@ -321,24 +321,16 @@ void CheckPrefs(HWND hwnd, int iDlg)
|
|||||||
DWORD dwStyle;
|
DWORD dwStyle;
|
||||||
dwStyle = GetWindowLong(g_hXchatWnd, GWL_STYLE);
|
dwStyle = GetWindowLong(g_hXchatWnd, GWL_STYLE);
|
||||||
dwStyle |= (1<<WS_CHILD);
|
dwStyle |= (1<<WS_CHILD);
|
||||||
SetWindowLong(g_hXchatWnd, GWL_STYLE, dwStyle);
|
SetWindowLongPtr(g_hXchatWnd, GWL_STYLE, (LONG_PTR)dwStyle);
|
||||||
#ifdef _WIN64
|
SetWindowLongPtr(g_hXchatWnd, GWL_HWNDPARENT, (LONG_PTR)g_hHotkeyWnd);
|
||||||
SetWindowLong(g_hXchatWnd, GWLP_HWNDPARENT, (long)g_hHotkeyWnd);
|
|
||||||
#else
|
|
||||||
SetWindowLong(g_hXchatWnd, GWL_HWNDPARENT, (long)g_hHotkeyWnd);
|
|
||||||
#endif
|
|
||||||
}
|
}
|
||||||
else
|
else
|
||||||
{
|
{
|
||||||
DWORD dwStyle;
|
DWORD dwStyle;
|
||||||
dwStyle = GetWindowLong(g_hXchatWnd, GWL_STYLE);
|
dwStyle = GetWindowLong(g_hXchatWnd, GWL_STYLE);
|
||||||
dwStyle &= ~(1<<WS_CHILD);
|
dwStyle &= ~(1<<WS_CHILD);
|
||||||
SetWindowLong(g_hXchatWnd, GWL_STYLE, dwStyle);
|
SetWindowLongPtr(g_hXchatWnd, GWL_STYLE, (LONG_PTR)dwStyle);
|
||||||
#ifdef _WIN64
|
SetWindowLongPtr(g_hXchatWnd, GWL_HWNDPARENT, NULL);
|
||||||
SetWindowLong(g_hXchatWnd, GWLP_HWNDPARENT, NULL);
|
|
||||||
#else
|
|
||||||
SetWindowLong(g_hXchatWnd, GWL_HWNDPARENT, NULL);
|
|
||||||
#endif
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
break;
|
break;
|
||||||
|
@ -93,7 +93,7 @@ int xchat_plugin_init(xchat_plugin *plugin_handle, char **plugin_name, char **pl
|
|||||||
}
|
}
|
||||||
|
|
||||||
g_hOldProc = (WNDPROC)GetWindowLongPtr(g_hXchatWnd, GWLP_WNDPROC);
|
g_hOldProc = (WNDPROC)GetWindowLongPtr(g_hXchatWnd, GWLP_WNDPROC);
|
||||||
SetWindowLong(g_hXchatWnd, GWLP_WNDPROC, (long)WindowProc);
|
SetWindowLongPtr(g_hXchatWnd, GWLP_WNDPROC, (LONG_PTR)WindowProc);
|
||||||
|
|
||||||
/***************************************************************************************************************************/
|
/***************************************************************************************************************************/
|
||||||
/************************* Grab the xChat Icon, Load our menu, create the window to receive the hotkey messages ***********/
|
/************************* Grab the xChat Icon, Load our menu, create the window to receive the hotkey messages ***********/
|
||||||
@ -127,12 +127,8 @@ int xchat_plugin_init(xchat_plugin *plugin_handle, char **plugin_name, char **pl
|
|||||||
DWORD dwStyle;
|
DWORD dwStyle;
|
||||||
dwStyle = GetWindowLong(g_hXchatWnd, GWL_STYLE);
|
dwStyle = GetWindowLong(g_hXchatWnd, GWL_STYLE);
|
||||||
dwStyle |= (1<<WS_CHILD);
|
dwStyle |= (1<<WS_CHILD);
|
||||||
SetWindowLong(g_hXchatWnd, GWL_STYLE, dwStyle);
|
SetWindowLongPtr(g_hXchatWnd, GWL_STYLE, (LONG_PTR)dwStyle);
|
||||||
#ifdef _WIN64
|
SetWindowLongPtr(g_hXchatWnd, GWL_HWNDPARENT, (LONG_PTR)g_hHotkeyWnd);
|
||||||
SetWindowLong(g_hXchatWnd, GWLP_HWNDPARENT, (long)g_hHotkeyWnd);
|
|
||||||
#else
|
|
||||||
SetWindowLong(g_hXchatWnd, GWL_HWNDPARENT, (long)g_hHotkeyWnd);
|
|
||||||
#endif
|
|
||||||
}
|
}
|
||||||
|
|
||||||
/***************************************************************************************************************************/
|
/***************************************************************************************************************************/
|
||||||
@ -171,12 +167,8 @@ int xchat_plugin_deinit(xchat_plugin *plugin_handle)
|
|||||||
DWORD dwStyle;
|
DWORD dwStyle;
|
||||||
dwStyle = GetWindowLong(g_hXchatWnd, GWL_STYLE);
|
dwStyle = GetWindowLong(g_hXchatWnd, GWL_STYLE);
|
||||||
dwStyle &= ~(1<<WS_CHILD);
|
dwStyle &= ~(1<<WS_CHILD);
|
||||||
SetWindowLong(g_hXchatWnd, GWL_STYLE, dwStyle);
|
SetWindowLongPtr(g_hXchatWnd, GWL_STYLE, (LONG_PTR)dwStyle);
|
||||||
#ifdef _WIN64
|
SetWindowLongPtr(g_hXchatWnd, GWL_HWNDPARENT, NULL);
|
||||||
SetWindowLong(g_hXchatWnd, GWLP_HWNDPARENT, NULL);
|
|
||||||
#else
|
|
||||||
SetWindowLong(g_hXchatWnd, GWL_HWNDPARENT, NULL);
|
|
||||||
#endif
|
|
||||||
}
|
}
|
||||||
|
|
||||||
/******************************************/
|
/******************************************/
|
||||||
@ -192,7 +184,7 @@ int xchat_plugin_deinit(xchat_plugin *plugin_handle)
|
|||||||
/******************************************/
|
/******************************************/
|
||||||
/****** Remove our window hook ************/
|
/****** Remove our window hook ************/
|
||||||
/******************************************/
|
/******************************************/
|
||||||
SetWindowLong(g_hXchatWnd, GWLP_WNDPROC, (long)g_hOldProc);
|
SetWindowLongPtr(g_hXchatWnd, GWLP_WNDPROC, (LONG_PTR)g_hOldProc);
|
||||||
|
|
||||||
/******************************************/
|
/******************************************/
|
||||||
/****** Remove our hotkey, and destroy ****/
|
/****** Remove our hotkey, and destroy ****/
|
||||||
|
@ -63,3 +63,12 @@ extern struct _xchat_plugin *ph;
|
|||||||
#define PREF_DNSIT 20 // Do not show in taskbar
|
#define PREF_DNSIT 20 // Do not show in taskbar
|
||||||
/******************************************************/
|
/******************************************************/
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
|
#ifdef _WIN64
|
||||||
|
/* use replacement with the same value, and use SetWindowLongPtr instead
|
||||||
|
of SetWindowLong. more info:
|
||||||
|
|
||||||
|
http://msdn.microsoft.com/en-us/library/ms633591.aspx
|
||||||
|
http://msdn.microsoft.com/en-us/library/ms644898.aspx */
|
||||||
|
#define GWL_HWNDPARENT GWLP_HWNDPARENT
|
||||||
|
#endif
|
||||||
|
@ -508,6 +508,18 @@ diff -ruN --strip-trailing-cr xchat-wdk.orig/src/common/xchat.h xchat-wdk/src/co
|
|||||||
#include <direct.h>
|
#include <direct.h>
|
||||||
#define F_OK 0
|
#define F_OK 0
|
||||||
#define X_OK 1
|
#define X_OK 1
|
||||||
|
diff -ruN --strip-trailing-cr xchat-wdk.orig/src/fe-gtk/about.c xchat-wdk/src/fe-gtk/about.c
|
||||||
|
--- xchat-wdk.orig/src/fe-gtk/about.c 2008-06-08 09:58:58 +0200
|
||||||
|
+++ xchat-wdk/src/fe-gtk/about.c 2010-04-02 10:27:10 +0200
|
||||||
|
@@ -119,7 +119,7 @@
|
||||||
|
"%s\n\n"
|
||||||
|
#ifdef WIN32
|
||||||
|
/* leave this message to avoid time wasting bug reports! */
|
||||||
|
- "This version is unofficial and comes with no support.\n\n"
|
||||||
|
+ "This version is unofficial and\ncomes with no support.\n\n"
|
||||||
|
#endif
|
||||||
|
"%s\n"
|
||||||
|
"<b>Charset</b>: %s "
|
||||||
diff -ruN --strip-trailing-cr xchat-wdk.orig/src/fe-gtk/banlist.c xchat-wdk/src/fe-gtk/banlist.c
|
diff -ruN --strip-trailing-cr xchat-wdk.orig/src/fe-gtk/banlist.c xchat-wdk/src/fe-gtk/banlist.c
|
||||||
--- xchat-wdk.orig/src/fe-gtk/banlist.c 2008-09-01 11:28:58 +0200
|
--- xchat-wdk.orig/src/fe-gtk/banlist.c 2008-09-01 11:28:58 +0200
|
||||||
+++ xchat-wdk/src/fe-gtk/banlist.c 2010-03-29 12:59:40 +0200
|
+++ xchat-wdk/src/fe-gtk/banlist.c 2010-03-29 12:59:40 +0200
|
||||||
|
Loading…
Reference in New Issue
Block a user