1998-10-11 15:17:47 +02:00
|
|
|
/*
|
|
|
|
* Native Font control
|
|
|
|
*
|
1999-03-12 18:42:50 +01:00
|
|
|
* Copyright 1998, 1999 Eric Kohl
|
1998-10-11 15:17:47 +02:00
|
|
|
*
|
2002-03-10 00:29:33 +01:00
|
|
|
* This library is free software; you can redistribute it and/or
|
|
|
|
* modify it under the terms of the GNU Lesser General Public
|
|
|
|
* License as published by the Free Software Foundation; either
|
|
|
|
* version 2.1 of the License, or (at your option) any later version.
|
|
|
|
*
|
|
|
|
* This library 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
|
|
|
|
* Lesser General Public License for more details.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU Lesser General Public
|
|
|
|
* License along with this library; if not, write to the Free Software
|
|
|
|
* Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
|
|
|
|
*
|
1998-10-11 15:17:47 +02:00
|
|
|
* NOTES
|
|
|
|
* This is just a dummy control. An author is needed! Any volunteers?
|
|
|
|
* I will only improve this control once in a while.
|
|
|
|
* Eric <ekohl@abo.rhein-zeitung.de>
|
|
|
|
*
|
|
|
|
* TODO:
|
|
|
|
* - All messages.
|
|
|
|
* - All notifications.
|
|
|
|
*/
|
|
|
|
|
2001-01-26 21:43:40 +01:00
|
|
|
#include <string.h>
|
1999-03-16 11:53:11 +01:00
|
|
|
#include "winbase.h"
|
1998-10-11 15:17:47 +02:00
|
|
|
#include "commctrl.h"
|
2002-03-10 00:29:33 +01:00
|
|
|
#include "wine/debug.h"
|
1998-10-11 15:17:47 +02:00
|
|
|
|
2002-03-10 00:29:33 +01:00
|
|
|
WINE_DEFAULT_DEBUG_CHANNEL(nativefont);
|
1999-04-19 16:56:29 +02:00
|
|
|
|
2000-08-09 02:41:17 +02:00
|
|
|
typedef struct
|
|
|
|
{
|
|
|
|
DWORD dwDummy; /* just to keep the compiler happy ;-) */
|
|
|
|
} NATIVEFONT_INFO;
|
1998-10-11 15:17:47 +02:00
|
|
|
|
1999-03-12 18:42:50 +01:00
|
|
|
#define NATIVEFONT_GetInfoPtr(hwnd) ((NATIVEFONT_INFO *)GetWindowLongA (hwnd, 0))
|
1998-10-11 15:17:47 +02:00
|
|
|
|
|
|
|
|
|
|
|
static LRESULT
|
1999-03-12 18:42:50 +01:00
|
|
|
NATIVEFONT_Create (HWND hwnd, WPARAM wParam, LPARAM lParam)
|
1998-10-11 15:17:47 +02:00
|
|
|
{
|
|
|
|
NATIVEFONT_INFO *infoPtr;
|
|
|
|
|
|
|
|
/* allocate memory for info structure */
|
|
|
|
infoPtr = (NATIVEFONT_INFO *)COMCTL32_Alloc (sizeof(NATIVEFONT_INFO));
|
1999-03-12 18:42:50 +01:00
|
|
|
SetWindowLongA (hwnd, 0, (DWORD)infoPtr);
|
1998-10-11 15:17:47 +02:00
|
|
|
|
|
|
|
|
|
|
|
/* initialize info structure */
|
|
|
|
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
static LRESULT
|
1999-03-12 18:42:50 +01:00
|
|
|
NATIVEFONT_Destroy (HWND hwnd, WPARAM wParam, LPARAM lParam)
|
1998-10-11 15:17:47 +02:00
|
|
|
{
|
1999-03-12 18:42:50 +01:00
|
|
|
NATIVEFONT_INFO *infoPtr = NATIVEFONT_GetInfoPtr (hwnd);
|
1998-10-11 15:17:47 +02:00
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
/* free comboex info data */
|
|
|
|
COMCTL32_Free (infoPtr);
|
2001-02-12 04:42:23 +01:00
|
|
|
SetWindowLongA( hwnd, 0, 0 );
|
1998-10-11 15:17:47 +02:00
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
1999-07-31 16:41:43 +02:00
|
|
|
static LRESULT WINAPI
|
1999-02-26 12:11:13 +01:00
|
|
|
NATIVEFONT_WindowProc (HWND hwnd, UINT uMsg, WPARAM wParam, LPARAM lParam)
|
1998-10-11 15:17:47 +02:00
|
|
|
{
|
2001-02-12 04:42:23 +01:00
|
|
|
if (!NATIVEFONT_GetInfoPtr(hwnd) && (uMsg != WM_CREATE))
|
|
|
|
return DefWindowProcA( hwnd, uMsg, wParam, lParam );
|
|
|
|
|
1998-10-11 15:17:47 +02:00
|
|
|
switch (uMsg)
|
|
|
|
{
|
|
|
|
|
|
|
|
case WM_CREATE:
|
1999-03-12 18:42:50 +01:00
|
|
|
return NATIVEFONT_Create (hwnd, wParam, lParam);
|
1998-10-11 15:17:47 +02:00
|
|
|
|
|
|
|
case WM_DESTROY:
|
1999-03-12 18:42:50 +01:00
|
|
|
return NATIVEFONT_Destroy (hwnd, wParam, lParam);
|
1998-10-11 15:17:47 +02:00
|
|
|
|
2002-01-29 18:11:30 +01:00
|
|
|
case WM_MOVE:
|
|
|
|
case WM_SIZE:
|
|
|
|
case WM_SHOWWINDOW:
|
|
|
|
case WM_WINDOWPOSCHANGING:
|
|
|
|
case WM_WINDOWPOSCHANGED:
|
|
|
|
case WM_SETFONT:
|
|
|
|
case WM_GETDLGCODE:
|
|
|
|
/* FIXME("message %04x seen but stubbed\n", uMsg); */
|
|
|
|
return DefWindowProcA (hwnd, uMsg, wParam, lParam);
|
|
|
|
|
1998-10-11 15:17:47 +02:00
|
|
|
default:
|
1999-06-12 17:45:58 +02:00
|
|
|
ERR("unknown msg %04x wp=%08x lp=%08lx\n",
|
1998-10-11 15:17:47 +02:00
|
|
|
uMsg, wParam, lParam);
|
1999-02-26 12:11:13 +01:00
|
|
|
return DefWindowProcA (hwnd, uMsg, wParam, lParam);
|
1998-10-11 15:17:47 +02:00
|
|
|
}
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
VOID
|
1999-06-12 10:27:49 +02:00
|
|
|
NATIVEFONT_Register (void)
|
1998-10-11 15:17:47 +02:00
|
|
|
{
|
1999-02-26 12:11:13 +01:00
|
|
|
WNDCLASSA wndClass;
|
1998-10-11 15:17:47 +02:00
|
|
|
|
1999-02-26 12:11:13 +01:00
|
|
|
ZeroMemory (&wndClass, sizeof(WNDCLASSA));
|
1998-10-11 15:17:47 +02:00
|
|
|
wndClass.style = CS_GLOBALCLASS;
|
1999-02-26 12:11:13 +01:00
|
|
|
wndClass.lpfnWndProc = (WNDPROC)NATIVEFONT_WindowProc;
|
1998-10-11 15:17:47 +02:00
|
|
|
wndClass.cbClsExtra = 0;
|
|
|
|
wndClass.cbWndExtra = sizeof(NATIVEFONT_INFO *);
|
1999-02-26 12:11:13 +01:00
|
|
|
wndClass.hCursor = LoadCursorA (0, IDC_ARROWA);
|
|
|
|
wndClass.hbrBackground = (HBRUSH)(COLOR_WINDOW + 1);
|
|
|
|
wndClass.lpszClassName = WC_NATIVEFONTCTLA;
|
2002-06-01 01:06:46 +02:00
|
|
|
|
1999-02-26 12:11:13 +01:00
|
|
|
RegisterClassA (&wndClass);
|
1998-10-11 15:17:47 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
VOID
|
1999-06-12 10:27:49 +02:00
|
|
|
NATIVEFONT_Unregister (void)
|
1998-10-11 15:17:47 +02:00
|
|
|
{
|
2002-12-02 19:10:57 +01:00
|
|
|
UnregisterClassA (WC_NATIVEFONTCTLA, NULL);
|
1998-10-11 15:17:47 +02:00
|
|
|
}
|