mirror of
https://github.com/reactos/reactos.git
synced 2025-04-05 13:11:22 +00:00
First shot at STATIC control
svn path=/trunk/; revision=4899
This commit is contained in:
parent
628c166c14
commit
4d4af768ba
6 changed files with 687 additions and 3 deletions
|
@ -700,9 +700,11 @@ extern "C" {
|
|||
#define SS_RIGHTJUST (0x400L)
|
||||
#define SS_SIMPLE (0xbL)
|
||||
#define SS_SUNKEN (0x1000L)
|
||||
#define SS_TYPEMASK (0x1FL)
|
||||
#define SS_USERITEM (0xaL)
|
||||
#define SS_WHITEFRAME (0x9L)
|
||||
#define SS_WHITERECT (0x6L)
|
||||
#define SS_WORDELLIPSIS (0xC000L)
|
||||
#define DS_3DLOOK (0x4L)
|
||||
#define DS_ABSALIGN (0x1L)
|
||||
#define DS_CENTER (0x800L)
|
||||
|
|
37
reactos/include/user32/regcontrol.h
Normal file
37
reactos/include/user32/regcontrol.h
Normal file
|
@ -0,0 +1,37 @@
|
|||
/* $Id: regcontrol.h,v 1.1 2003/06/16 13:46:26 gvg Exp $
|
||||
*
|
||||
* COPYRIGHT: See COPYING in the top level directory
|
||||
* PROJECT: ReactOS User32
|
||||
* PURPOSE: Built-in control registration
|
||||
* FILE: include/user32/regcontrol.h
|
||||
* PROGRAMER: Ge van Geldorp (ge@gse.nl)
|
||||
* REVISION HISTORY: 2003/06/16 GvG Created
|
||||
* NOTES:
|
||||
*/
|
||||
|
||||
/* Built-in class descriptor */
|
||||
struct builtin_class_descr
|
||||
{
|
||||
LPCSTR name; /* class name */
|
||||
UINT style; /* class style */
|
||||
WNDPROC procA; /* ASCII window procedure */
|
||||
WNDPROC procW; /* Unicode window procedure */
|
||||
INT extra; /* window extra bytes */
|
||||
LPCSTR cursor; /* cursor name */
|
||||
HBRUSH brush; /* brush or system color */
|
||||
};
|
||||
|
||||
extern void ControlsInit(void);
|
||||
|
||||
extern const struct builtin_class_descr BUTTON_builtin_class;
|
||||
extern const struct builtin_class_descr COMBO_builtin_class;
|
||||
extern const struct builtin_class_descr COMBOLBOX_builtin_class;
|
||||
extern const struct builtin_class_descr DIALOG_builtin_class;
|
||||
extern const struct builtin_class_descr DESKTOP_builtin_class;
|
||||
extern const struct builtin_class_descr EDIT_builtin_class;
|
||||
extern const struct builtin_class_descr ICONTITLE_builtin_class;
|
||||
extern const struct builtin_class_descr LISTBOX_builtin_class;
|
||||
extern const struct builtin_class_descr MDICLIENT_builtin_class;
|
||||
extern const struct builtin_class_descr MENU_builtin_class;
|
||||
extern const struct builtin_class_descr SCROLL_builtin_class;
|
||||
extern const struct builtin_class_descr STATIC_builtin_class;
|
|
@ -1,4 +1,4 @@
|
|||
# $Id: Makefile,v 1.13 2003/04/14 12:14:50 hyperion Exp $
|
||||
# $Id: Makefile,v 1.14 2003/06/16 13:46:26 gvg Exp $
|
||||
|
||||
PATH_TO_TOP = ../..
|
||||
|
||||
|
@ -22,7 +22,9 @@ TARGET_LFLAGS = -nostartfiles -nostdlib
|
|||
CONTROLS_OBJECTS = \
|
||||
controls/combobox.o \
|
||||
controls/listbox.o \
|
||||
controls/scrollbar.o
|
||||
controls/scrollbar.o \
|
||||
controls/static.o \
|
||||
controls/regcontrol.o
|
||||
|
||||
MISC_OBJECTS = \
|
||||
misc/dde.o \
|
||||
|
|
54
reactos/lib/user32/controls/regcontrol.c
Normal file
54
reactos/lib/user32/controls/regcontrol.c
Normal file
|
@ -0,0 +1,54 @@
|
|||
/* $Id: regcontrol.c,v 1.1 2003/06/16 13:46:26 gvg Exp $
|
||||
*
|
||||
* COPYRIGHT: See COPYING in the top level directory
|
||||
* PROJECT: ReactOS User32
|
||||
* PURPOSE: Built-in control registration
|
||||
* FILE: lib/user32/controls/regcontrol.c
|
||||
* PROGRAMER: Ge van Geldorp (ge@gse.nl)
|
||||
* REVISION HISTORY: 2003/06/16 GvG Created
|
||||
* NOTES: Adapted from Wine
|
||||
*/
|
||||
|
||||
#include "windows.h"
|
||||
#include "user32/regcontrol.h"
|
||||
|
||||
static void RegisterBuiltinClass(const struct builtin_class_descr *Descr)
|
||||
{
|
||||
WNDCLASSA wca;
|
||||
|
||||
wca.lpszClassName = Descr->name;
|
||||
wca.lpfnWndProc = Descr->procA;
|
||||
wca.style = Descr->style;
|
||||
wca.hInstance = NULL;
|
||||
wca.hIcon = NULL;
|
||||
wca.hCursor = LoadCursorA(NULL, Descr->cursor);
|
||||
wca.hbrBackground = Descr->brush;
|
||||
wca.lpszMenuName = NULL;
|
||||
wca.cbClsExtra = 0;
|
||||
wca.cbWndExtra = Descr->extra;
|
||||
|
||||
RegisterClassA(&wca);
|
||||
}
|
||||
|
||||
/***********************************************************************
|
||||
* ControlsInit
|
||||
*
|
||||
* Register the classes for the builtin controls
|
||||
*/
|
||||
void ControlsInit(void)
|
||||
{
|
||||
#if 0
|
||||
RegisterBuiltinClass(&BUTTON_builtin_class);
|
||||
RegisterBuiltinClass(&COMBO_builtin_class);
|
||||
RegisterBuiltinClass(&COMBOLBOX_builtin_class);
|
||||
RegisterBuiltinClass(&DIALOG_builtin_class);
|
||||
RegisterBuiltinClass(&DESKTOP_builtin_class);
|
||||
RegisterBuiltinClass(&EDIT_builtin_class);
|
||||
RegisterBuiltinClass(&ICONTITLE_builtin_class);
|
||||
RegisterBuiltinClass(&LISTBOX_builtin_class);
|
||||
RegisterBuiltinClass(&MDICLIENT_builtin_class);
|
||||
RegisterBuiltinClass(&MENU_builtin_class);
|
||||
RegisterBuiltinClass(&SCROLL_builtin_class);
|
||||
#endif
|
||||
RegisterBuiltinClass(&STATIC_builtin_class);
|
||||
}
|
572
reactos/lib/user32/controls/static.c
Normal file
572
reactos/lib/user32/controls/static.c
Normal file
|
@ -0,0 +1,572 @@
|
|||
/* $Id: static.c,v 1.3 2003/06/16 13:46:26 gvg Exp $
|
||||
*
|
||||
* COPYRIGHT: See COPYING in the top level directory
|
||||
* PROJECT: ReactOS User32
|
||||
* PURPOSE: Static control
|
||||
* FILE: lib/user32/controls/static.c
|
||||
* PROGRAMER: Ge van Geldorp (ge@gse.nl)
|
||||
* REVISION HISTORY: 2003/05/28 GvG Created
|
||||
* NOTES: Adapted from Wine
|
||||
*/
|
||||
|
||||
#include "windows.h"
|
||||
#include "user32/regcontrol.h"
|
||||
|
||||
static void STATIC_PaintOwnerDrawfn( HWND hwnd, HDC hdc, DWORD style );
|
||||
static void STATIC_PaintTextfn( HWND hwnd, HDC hdc, DWORD style );
|
||||
static void STATIC_PaintRectfn( HWND hwnd, HDC hdc, DWORD style );
|
||||
static void STATIC_PaintIconfn( HWND hwnd, HDC hdc, DWORD style );
|
||||
static void STATIC_PaintBitmapfn( HWND hwnd, HDC hdc, DWORD style );
|
||||
static void STATIC_PaintEtchedfn( HWND hwnd, HDC hdc, DWORD style );
|
||||
static LRESULT CALLBACK StaticWndProcA( HWND hWnd, UINT uMsg, WPARAM wParam, LPARAM lParam );
|
||||
static LRESULT CALLBACK StaticWndProcW( HWND hWnd, UINT uMsg, WPARAM wParam, LPARAM lParam );
|
||||
|
||||
static COLORREF color_windowframe, color_background, color_window;
|
||||
|
||||
/* offsets for GetWindowLong for static private information */
|
||||
#define HFONT_GWL_OFFSET 0
|
||||
#define HICON_GWL_OFFSET (sizeof(HFONT))
|
||||
#define STATIC_EXTRA_BYTES (HICON_GWL_OFFSET + sizeof(HICON))
|
||||
|
||||
typedef void (*pfPaint)( HWND hwnd, HDC hdc, DWORD style );
|
||||
|
||||
static pfPaint staticPaintFunc[SS_TYPEMASK+1] =
|
||||
{
|
||||
STATIC_PaintTextfn, /* SS_LEFT */
|
||||
STATIC_PaintTextfn, /* SS_CENTER */
|
||||
STATIC_PaintTextfn, /* SS_RIGHT */
|
||||
STATIC_PaintIconfn, /* SS_ICON */
|
||||
STATIC_PaintRectfn, /* SS_BLACKRECT */
|
||||
STATIC_PaintRectfn, /* SS_GRAYRECT */
|
||||
STATIC_PaintRectfn, /* SS_WHITERECT */
|
||||
STATIC_PaintRectfn, /* SS_BLACKFRAME */
|
||||
STATIC_PaintRectfn, /* SS_GRAYFRAME */
|
||||
STATIC_PaintRectfn, /* SS_WHITEFRAME */
|
||||
NULL, /* SS_USERITEM */
|
||||
STATIC_PaintTextfn, /* SS_SIMPLE */
|
||||
STATIC_PaintTextfn, /* SS_LEFTNOWORDWRAP */
|
||||
STATIC_PaintOwnerDrawfn, /* SS_OWNERDRAW */
|
||||
STATIC_PaintBitmapfn, /* SS_BITMAP */
|
||||
NULL, /* SS_ENHMETAFILE */
|
||||
STATIC_PaintEtchedfn, /* SS_ETCHEDHORIZ */
|
||||
STATIC_PaintEtchedfn, /* SS_ETCHEDVERT */
|
||||
STATIC_PaintEtchedfn, /* SS_ETCHEDFRAME */
|
||||
};
|
||||
|
||||
|
||||
/*********************************************************************
|
||||
* static class descriptor
|
||||
*/
|
||||
const struct builtin_class_descr STATIC_builtin_class =
|
||||
{
|
||||
"Static", /* name */
|
||||
CS_GLOBALCLASS | CS_DBLCLKS | CS_PARENTDC, /* style */
|
||||
(WNDPROC) StaticWndProcA, /* procA */
|
||||
(WNDPROC) StaticWndProcW, /* procW */
|
||||
STATIC_EXTRA_BYTES, /* extra */
|
||||
(LPCSTR) IDC_ARROW, /* cursor */ /* FIXME Wine uses IDC_ARROWA */
|
||||
0 /* brush */
|
||||
};
|
||||
|
||||
|
||||
/***********************************************************************
|
||||
* STATIC_SetIcon
|
||||
*
|
||||
* Set the icon for an SS_ICON control.
|
||||
*/
|
||||
static HICON STATIC_SetIcon( HWND hwnd, HICON hicon, DWORD style )
|
||||
{
|
||||
#if 0 /* FIXME */
|
||||
HICON prevIcon;
|
||||
CURSORICONINFO *info = hicon?(CURSORICONINFO *) GlobalLock16(HICON_16(hicon)):NULL;
|
||||
|
||||
if ((style & SS_TYPEMASK) != SS_ICON) return 0;
|
||||
if (hicon && !info) {
|
||||
ERR("huh? hicon!=0, but info=0???\n");
|
||||
return 0;
|
||||
}
|
||||
prevIcon = (HICON)SetWindowLongA( hwnd, HICON_GWL_OFFSET, (LONG)hicon );
|
||||
if (hicon)
|
||||
{
|
||||
SetWindowPos( hwnd, 0, 0, 0, info->nWidth, info->nHeight,
|
||||
SWP_NOACTIVATE | SWP_NOMOVE | SWP_NOZORDER );
|
||||
GlobalUnlock16(HICON_16(hicon));
|
||||
}
|
||||
return prevIcon;
|
||||
#else
|
||||
OutputDebugStringA("STATIC_SetIcon not implemented\n");
|
||||
return NULL;
|
||||
#endif
|
||||
}
|
||||
|
||||
/***********************************************************************
|
||||
* STATIC_SetBitmap
|
||||
*
|
||||
* Set the bitmap for an SS_BITMAP control.
|
||||
*/
|
||||
static HBITMAP STATIC_SetBitmap( HWND hwnd, HBITMAP hBitmap, DWORD style )
|
||||
{
|
||||
HBITMAP hOldBitmap;
|
||||
|
||||
if ((style & SS_TYPEMASK) != SS_BITMAP) return 0;
|
||||
if (hBitmap && GetObjectType(hBitmap) != OBJ_BITMAP) {
|
||||
OutputDebugStringA("huh? hBitmap!=0, but not bitmap\n");
|
||||
return 0;
|
||||
}
|
||||
hOldBitmap = (HBITMAP)SetWindowLongA( hwnd, HICON_GWL_OFFSET, (LONG)hBitmap );
|
||||
if (hBitmap)
|
||||
{
|
||||
BITMAP bm;
|
||||
GetObjectW(hBitmap, sizeof(bm), &bm);
|
||||
SetWindowPos( hwnd, 0, 0, 0, bm.bmWidth, bm.bmHeight,
|
||||
SWP_NOACTIVATE | SWP_NOMOVE | SWP_NOZORDER );
|
||||
}
|
||||
return hOldBitmap;
|
||||
}
|
||||
|
||||
/***********************************************************************
|
||||
* STATIC_LoadIconA
|
||||
*
|
||||
* Load the icon for an SS_ICON control.
|
||||
*/
|
||||
static HICON STATIC_LoadIconA( HWND hwnd, LPCSTR name )
|
||||
{
|
||||
HINSTANCE hInstance = (HINSTANCE)GetWindowLongA( hwnd, GWL_HINSTANCE );
|
||||
HICON hicon = LoadIconA( hInstance, name );
|
||||
if (!hicon) hicon = LoadIconA( 0, name );
|
||||
return hicon;
|
||||
}
|
||||
|
||||
/***********************************************************************
|
||||
* STATIC_LoadIconW
|
||||
*
|
||||
* Load the icon for an SS_ICON control.
|
||||
*/
|
||||
static HICON STATIC_LoadIconW( HWND hwnd, LPCWSTR name )
|
||||
{
|
||||
HINSTANCE hInstance = (HINSTANCE)GetWindowLongA( hwnd, GWL_HINSTANCE );
|
||||
HICON hicon = LoadIconW( hInstance, name );
|
||||
if (!hicon) hicon = LoadIconW( 0, name );
|
||||
return hicon;
|
||||
}
|
||||
|
||||
/***********************************************************************
|
||||
* STATIC_LoadBitmapA
|
||||
*
|
||||
* Load the bitmap for an SS_BITMAP control.
|
||||
*/
|
||||
static HBITMAP STATIC_LoadBitmapA( HWND hwnd, LPCSTR name )
|
||||
{
|
||||
HINSTANCE hInstance = (HINSTANCE)GetWindowLongA( hwnd, GWL_HINSTANCE );
|
||||
HBITMAP hbitmap = LoadBitmapA( hInstance, name );
|
||||
if (!hbitmap) /* Try OEM icon (FIXME: is this right?) */
|
||||
hbitmap = LoadBitmapA( 0, name );
|
||||
return hbitmap;
|
||||
}
|
||||
|
||||
/***********************************************************************
|
||||
* STATIC_LoadBitmapW
|
||||
*
|
||||
* Load the bitmap for an SS_BITMAP control.
|
||||
*/
|
||||
static HBITMAP STATIC_LoadBitmapW( HWND hwnd, LPCWSTR name )
|
||||
{
|
||||
HINSTANCE hInstance = (HINSTANCE)GetWindowLongA( hwnd, GWL_HINSTANCE );
|
||||
HBITMAP hbitmap = LoadBitmapW( hInstance, name );
|
||||
if (!hbitmap) /* Try OEM icon (FIXME: is this right?) */
|
||||
hbitmap = LoadBitmapW( 0, name );
|
||||
return hbitmap;
|
||||
}
|
||||
|
||||
/***********************************************************************
|
||||
* STATIC_TryPaintFcn
|
||||
*
|
||||
* Try to immediately paint the control.
|
||||
*/
|
||||
static VOID STATIC_TryPaintFcn(HWND hwnd, LONG full_style)
|
||||
{
|
||||
LONG style = full_style & SS_TYPEMASK;
|
||||
RECT rc;
|
||||
|
||||
GetClientRect( hwnd, &rc );
|
||||
if (!IsRectEmpty(&rc) && IsWindowVisible(hwnd) && staticPaintFunc[style])
|
||||
{
|
||||
HDC hdc;
|
||||
hdc = GetDC( hwnd );
|
||||
(staticPaintFunc[style])( hwnd, hdc, full_style );
|
||||
ReleaseDC( hwnd, hdc );
|
||||
}
|
||||
}
|
||||
|
||||
/***********************************************************************
|
||||
* StaticWndProc_common
|
||||
*/
|
||||
static LRESULT StaticWndProc_common( HWND hwnd, UINT uMsg, WPARAM wParam,
|
||||
LPARAM lParam, BOOL unicode )
|
||||
{
|
||||
LRESULT lResult = 0;
|
||||
LONG full_style = GetWindowLongA( hwnd, GWL_STYLE );
|
||||
LONG style = full_style & SS_TYPEMASK;
|
||||
|
||||
switch (uMsg)
|
||||
{
|
||||
case WM_CREATE:
|
||||
if (style < 0L || style > SS_TYPEMASK)
|
||||
{
|
||||
OutputDebugStringA("Unknown style\n");
|
||||
return -1;
|
||||
}
|
||||
/* initialise colours */
|
||||
color_windowframe = GetSysColor(COLOR_WINDOWFRAME);
|
||||
color_background = GetSysColor(COLOR_BACKGROUND);
|
||||
color_window = GetSysColor(COLOR_WINDOW);
|
||||
break;
|
||||
|
||||
case WM_NCDESTROY:
|
||||
if (style == SS_ICON) {
|
||||
/*
|
||||
* FIXME
|
||||
* DestroyIcon32( STATIC_SetIcon( wndPtr, 0 ) );
|
||||
*
|
||||
* We don't want to do this yet because DestroyIcon32 is broken. If the icon
|
||||
* had already been loaded by the application the last thing we want to do is
|
||||
* GlobalFree16 the handle.
|
||||
*/
|
||||
break;
|
||||
}
|
||||
else return unicode ? DefWindowProcW(hwnd, uMsg, wParam, lParam) :
|
||||
DefWindowProcA(hwnd, uMsg, wParam, lParam);
|
||||
|
||||
case WM_PAINT:
|
||||
{
|
||||
PAINTSTRUCT ps;
|
||||
BeginPaint(hwnd, &ps);
|
||||
if (staticPaintFunc[style])
|
||||
(staticPaintFunc[style])( hwnd, ps.hdc, full_style );
|
||||
EndPaint(hwnd, &ps);
|
||||
}
|
||||
break;
|
||||
|
||||
case WM_ENABLE:
|
||||
InvalidateRect(hwnd, NULL, TRUE);
|
||||
break;
|
||||
|
||||
case WM_SYSCOLORCHANGE:
|
||||
color_windowframe = GetSysColor(COLOR_WINDOWFRAME);
|
||||
color_background = GetSysColor(COLOR_BACKGROUND);
|
||||
color_window = GetSysColor(COLOR_WINDOW);
|
||||
InvalidateRect(hwnd, NULL, TRUE);
|
||||
break;
|
||||
|
||||
case WM_NCCREATE:
|
||||
if (full_style & SS_SUNKEN)
|
||||
SetWindowLongA( hwnd, GWL_EXSTYLE,
|
||||
GetWindowLongA( hwnd, GWL_EXSTYLE ) | WS_EX_STATICEDGE );
|
||||
|
||||
if(unicode)
|
||||
lParam = (LPARAM)(((LPCREATESTRUCTW)lParam)->lpszName);
|
||||
else
|
||||
lParam = (LPARAM)(((LPCREATESTRUCTA)lParam)->lpszName);
|
||||
/* fall through */
|
||||
case WM_SETTEXT:
|
||||
switch (style) {
|
||||
case SS_ICON:
|
||||
{
|
||||
HICON hIcon;
|
||||
if(unicode)
|
||||
hIcon = STATIC_LoadIconW(hwnd, (LPCWSTR)lParam);
|
||||
else
|
||||
hIcon = STATIC_LoadIconA(hwnd, (LPCSTR)lParam);
|
||||
/* FIXME : should we also return the previous hIcon here ??? */
|
||||
STATIC_SetIcon(hwnd, hIcon, style);
|
||||
break;
|
||||
}
|
||||
case SS_BITMAP:
|
||||
{
|
||||
HBITMAP hBitmap;
|
||||
if(unicode)
|
||||
hBitmap = STATIC_LoadBitmapW(hwnd, (LPCWSTR)lParam);
|
||||
else
|
||||
hBitmap = STATIC_LoadBitmapA(hwnd, (LPCSTR)lParam);
|
||||
STATIC_SetBitmap(hwnd, hBitmap, style);
|
||||
break;
|
||||
}
|
||||
case SS_LEFT:
|
||||
case SS_CENTER:
|
||||
case SS_RIGHT:
|
||||
case SS_SIMPLE:
|
||||
case SS_LEFTNOWORDWRAP:
|
||||
{
|
||||
if (HIWORD(lParam))
|
||||
{
|
||||
if(unicode)
|
||||
lResult = DefWindowProcW( hwnd, WM_SETTEXT, wParam, lParam );
|
||||
else
|
||||
lResult = DefWindowProcA( hwnd, WM_SETTEXT, wParam, lParam );
|
||||
}
|
||||
if (uMsg == WM_SETTEXT)
|
||||
STATIC_TryPaintFcn( hwnd, full_style );
|
||||
break;
|
||||
}
|
||||
default:
|
||||
if (HIWORD(lParam))
|
||||
{
|
||||
if(unicode)
|
||||
lResult = DefWindowProcW( hwnd, WM_SETTEXT, wParam, lParam );
|
||||
else
|
||||
lResult = DefWindowProcA( hwnd, WM_SETTEXT, wParam, lParam );
|
||||
}
|
||||
if(uMsg == WM_SETTEXT)
|
||||
InvalidateRect(hwnd, NULL, TRUE);
|
||||
}
|
||||
return 1; /* success. FIXME: check text length */
|
||||
|
||||
case WM_SETFONT:
|
||||
if ((style == SS_ICON) || (style == SS_BITMAP)) return 0;
|
||||
SetWindowLongA( hwnd, HFONT_GWL_OFFSET, wParam );
|
||||
if (LOWORD(lParam))
|
||||
InvalidateRect( hwnd, NULL, TRUE );
|
||||
break;
|
||||
|
||||
case WM_GETFONT:
|
||||
return GetWindowLongA( hwnd, HFONT_GWL_OFFSET );
|
||||
|
||||
case WM_NCHITTEST:
|
||||
if (full_style & SS_NOTIFY)
|
||||
return HTCLIENT;
|
||||
else
|
||||
return HTTRANSPARENT;
|
||||
|
||||
case WM_GETDLGCODE:
|
||||
return DLGC_STATIC;
|
||||
|
||||
case STM_GETIMAGE:
|
||||
case STM_GETICON:
|
||||
return GetWindowLongA( hwnd, HICON_GWL_OFFSET );
|
||||
|
||||
case STM_SETIMAGE:
|
||||
switch(wParam) {
|
||||
case IMAGE_BITMAP:
|
||||
lResult = (LRESULT)STATIC_SetBitmap( hwnd, (HBITMAP)lParam, style );
|
||||
break;
|
||||
case IMAGE_ICON:
|
||||
lResult = (LRESULT)STATIC_SetIcon( hwnd, (HICON)lParam, style );
|
||||
break;
|
||||
default:
|
||||
OutputDebugStringA("STM_SETIMAGE: Unhandled type\n");
|
||||
break;
|
||||
}
|
||||
InvalidateRect( hwnd, NULL, TRUE );
|
||||
break;
|
||||
|
||||
case STM_SETICON:
|
||||
lResult = (LRESULT)STATIC_SetIcon( hwnd, (HICON)wParam, style );
|
||||
InvalidateRect( hwnd, NULL, TRUE );
|
||||
break;
|
||||
|
||||
default:
|
||||
return unicode ? DefWindowProcW(hwnd, uMsg, wParam, lParam) :
|
||||
DefWindowProcA(hwnd, uMsg, wParam, lParam);
|
||||
}
|
||||
return lResult;
|
||||
}
|
||||
|
||||
/***********************************************************************
|
||||
* StaticWndProcA
|
||||
*/
|
||||
static LRESULT CALLBACK StaticWndProcA( HWND hWnd, UINT uMsg, WPARAM wParam, LPARAM lParam )
|
||||
{
|
||||
if (!IsWindow( hWnd )) return 0;
|
||||
return StaticWndProc_common(hWnd, uMsg, wParam, lParam, FALSE);
|
||||
}
|
||||
|
||||
/***********************************************************************
|
||||
* StaticWndProcW
|
||||
*/
|
||||
static LRESULT CALLBACK StaticWndProcW( HWND hWnd, UINT uMsg, WPARAM wParam, LPARAM lParam )
|
||||
{
|
||||
if (!IsWindow( hWnd )) return 0;
|
||||
return StaticWndProc_common(hWnd, uMsg, wParam, lParam, TRUE);
|
||||
}
|
||||
|
||||
static void STATIC_PaintOwnerDrawfn( HWND hwnd, HDC hdc, DWORD style )
|
||||
{
|
||||
DRAWITEMSTRUCT dis;
|
||||
LONG id = GetWindowLongA( hwnd, GWL_ID );
|
||||
|
||||
dis.CtlType = ODT_STATIC;
|
||||
dis.CtlID = id;
|
||||
dis.itemID = 0;
|
||||
dis.itemAction = ODA_DRAWENTIRE;
|
||||
dis.itemState = 0;
|
||||
dis.hwndItem = hwnd;
|
||||
dis.hDC = hdc;
|
||||
dis.itemData = 0;
|
||||
GetClientRect( hwnd, &dis.rcItem );
|
||||
|
||||
SendMessageW( GetParent(hwnd), WM_CTLCOLORSTATIC, (WPARAM)hdc, (LPARAM)hwnd );
|
||||
SendMessageW( GetParent(hwnd), WM_DRAWITEM, id, (LPARAM)&dis );
|
||||
}
|
||||
|
||||
static void STATIC_PaintTextfn( HWND hwnd, HDC hdc, DWORD style )
|
||||
{
|
||||
RECT rc;
|
||||
HBRUSH hBrush;
|
||||
HFONT hFont;
|
||||
WORD wFormat;
|
||||
INT len;
|
||||
WCHAR *text;
|
||||
|
||||
GetClientRect( hwnd, &rc);
|
||||
|
||||
switch (style & SS_TYPEMASK)
|
||||
{
|
||||
case SS_LEFT:
|
||||
wFormat = DT_LEFT | DT_EXPANDTABS | DT_WORDBREAK | DT_NOCLIP;
|
||||
break;
|
||||
|
||||
case SS_CENTER:
|
||||
wFormat = DT_CENTER | DT_EXPANDTABS | DT_WORDBREAK | DT_NOCLIP;
|
||||
break;
|
||||
|
||||
case SS_RIGHT:
|
||||
wFormat = DT_RIGHT | DT_EXPANDTABS | DT_WORDBREAK | DT_NOCLIP;
|
||||
break;
|
||||
|
||||
case SS_SIMPLE:
|
||||
wFormat = DT_LEFT | DT_SINGLELINE | DT_VCENTER | DT_NOCLIP;
|
||||
break;
|
||||
|
||||
case SS_LEFTNOWORDWRAP:
|
||||
wFormat = DT_LEFT | DT_EXPANDTABS | DT_VCENTER;
|
||||
break;
|
||||
|
||||
default:
|
||||
return;
|
||||
}
|
||||
|
||||
if (style & SS_NOPREFIX)
|
||||
wFormat |= DT_NOPREFIX;
|
||||
|
||||
if ((hFont = (HFONT)GetWindowLongA( hwnd, HFONT_GWL_OFFSET ))) SelectObject( hdc, hFont );
|
||||
|
||||
if ((style & SS_NOPREFIX) || ((style & SS_TYPEMASK) != SS_SIMPLE))
|
||||
{
|
||||
hBrush = (HBRUSH)SendMessageW( GetParent(hwnd), WM_CTLCOLORSTATIC,
|
||||
(WPARAM)hdc, (LPARAM)hwnd );
|
||||
if (!hBrush) /* did the app forget to call defwindowproc ? */
|
||||
hBrush = (HBRUSH)DefWindowProcW(GetParent(hwnd), WM_CTLCOLORSTATIC,
|
||||
(WPARAM)hdc, (LPARAM)hwnd);
|
||||
FillRect( hdc, &rc, hBrush );
|
||||
}
|
||||
if (!IsWindowEnabled(hwnd)) SetTextColor(hdc, GetSysColor(COLOR_GRAYTEXT));
|
||||
|
||||
if (!(len = SendMessageW( hwnd, WM_GETTEXTLENGTH, 0, 0 ))) return;
|
||||
if (!(text = HeapAlloc( GetProcessHeap(), 0, (len + 1) * sizeof(WCHAR) ))) return;
|
||||
SendMessageW( hwnd, WM_GETTEXT, len + 1, (LPARAM)text );
|
||||
DrawTextW( hdc, text, -1, &rc, wFormat );
|
||||
HeapFree( GetProcessHeap(), 0, text );
|
||||
}
|
||||
|
||||
static void STATIC_PaintRectfn( HWND hwnd, HDC hdc, DWORD style )
|
||||
{
|
||||
RECT rc;
|
||||
HBRUSH hBrush;
|
||||
|
||||
GetClientRect( hwnd, &rc);
|
||||
|
||||
switch (style & SS_TYPEMASK)
|
||||
{
|
||||
case SS_BLACKRECT:
|
||||
hBrush = CreateSolidBrush(color_windowframe);
|
||||
FillRect( hdc, &rc, hBrush );
|
||||
break;
|
||||
case SS_GRAYRECT:
|
||||
hBrush = CreateSolidBrush(color_background);
|
||||
FillRect( hdc, &rc, hBrush );
|
||||
break;
|
||||
case SS_WHITERECT:
|
||||
hBrush = CreateSolidBrush(color_window);
|
||||
FillRect( hdc, &rc, hBrush );
|
||||
break;
|
||||
case SS_BLACKFRAME:
|
||||
hBrush = CreateSolidBrush(color_windowframe);
|
||||
FrameRect( hdc, &rc, hBrush );
|
||||
break;
|
||||
case SS_GRAYFRAME:
|
||||
hBrush = CreateSolidBrush(color_background);
|
||||
FrameRect( hdc, &rc, hBrush );
|
||||
break;
|
||||
case SS_WHITEFRAME:
|
||||
hBrush = CreateSolidBrush(color_window);
|
||||
FrameRect( hdc, &rc, hBrush );
|
||||
break;
|
||||
default:
|
||||
return;
|
||||
}
|
||||
DeleteObject( hBrush );
|
||||
}
|
||||
|
||||
|
||||
static void STATIC_PaintIconfn( HWND hwnd, HDC hdc, DWORD style )
|
||||
{
|
||||
RECT rc;
|
||||
HBRUSH hbrush;
|
||||
HICON hIcon;
|
||||
|
||||
GetClientRect( hwnd, &rc );
|
||||
hbrush = (HBRUSH)SendMessageW( GetParent(hwnd), WM_CTLCOLORSTATIC,
|
||||
(WPARAM)hdc, (LPARAM)hwnd );
|
||||
FillRect( hdc, &rc, hbrush );
|
||||
if ((hIcon = (HICON)GetWindowLongA( hwnd, HICON_GWL_OFFSET )))
|
||||
DrawIcon( hdc, rc.left, rc.top, hIcon );
|
||||
}
|
||||
|
||||
static void STATIC_PaintBitmapfn(HWND hwnd, HDC hdc, DWORD style )
|
||||
{
|
||||
RECT rc;
|
||||
HBRUSH hbrush;
|
||||
HDC hMemDC;
|
||||
HBITMAP hBitmap, oldbitmap;
|
||||
|
||||
GetClientRect( hwnd, &rc );
|
||||
hbrush = (HBRUSH)SendMessageW( GetParent(hwnd), WM_CTLCOLORSTATIC,
|
||||
(WPARAM)hdc, (LPARAM)hwnd );
|
||||
FillRect( hdc, &rc, hbrush );
|
||||
|
||||
if ((hBitmap = (HBITMAP)GetWindowLongA( hwnd, HICON_GWL_OFFSET )))
|
||||
{
|
||||
BITMAP bm;
|
||||
SIZE sz;
|
||||
|
||||
if(GetObjectType(hBitmap) != OBJ_BITMAP) return;
|
||||
if (!(hMemDC = CreateCompatibleDC( hdc ))) return;
|
||||
GetObjectW(hBitmap, sizeof(bm), &bm);
|
||||
GetBitmapDimensionEx(hBitmap, &sz);
|
||||
oldbitmap = SelectObject(hMemDC, hBitmap);
|
||||
BitBlt(hdc, sz.cx, sz.cy, bm.bmWidth, bm.bmHeight, hMemDC, 0, 0,
|
||||
SRCCOPY);
|
||||
SelectObject(hMemDC, oldbitmap);
|
||||
DeleteDC(hMemDC);
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
static void STATIC_PaintEtchedfn( HWND hwnd, HDC hdc, DWORD style )
|
||||
{
|
||||
RECT rc;
|
||||
|
||||
GetClientRect( hwnd, &rc );
|
||||
switch (style & SS_TYPEMASK)
|
||||
{
|
||||
case SS_ETCHEDHORZ:
|
||||
DrawEdge(hdc,&rc,EDGE_ETCHED,BF_TOP|BF_BOTTOM);
|
||||
break;
|
||||
case SS_ETCHEDVERT:
|
||||
DrawEdge(hdc,&rc,EDGE_ETCHED,BF_LEFT|BF_RIGHT);
|
||||
break;
|
||||
case SS_ETCHEDFRAME:
|
||||
DrawEdge (hdc, &rc, EDGE_ETCHED, BF_RECT);
|
||||
break;
|
||||
}
|
||||
}
|
|
@ -1,4 +1,4 @@
|
|||
/* $Id: window.c,v 1.38 2003/06/15 04:25:34 rcampbell Exp $
|
||||
/* $Id: window.c,v 1.39 2003/06/16 13:46:26 gvg Exp $
|
||||
*
|
||||
* COPYRIGHT: See COPYING in the top level directory
|
||||
* PROJECT: ReactOS user32.dll
|
||||
|
@ -15,10 +15,13 @@
|
|||
#include <user32.h>
|
||||
#include <window.h>
|
||||
#include <user32/callback.h>
|
||||
#include <user32/regcontrol.h>
|
||||
|
||||
#define NDEBUG
|
||||
#include <debug.h>
|
||||
|
||||
static BOOL ControlsInitCalled = FALSE;
|
||||
|
||||
/* FUNCTIONS *****************************************************************/
|
||||
ULONG
|
||||
WinHasThickFrameStyle(ULONG Style, ULONG ExStyle)
|
||||
|
@ -433,6 +436,13 @@ CreateWindowExA(DWORD dwExStyle,
|
|||
HWND Handle;
|
||||
INT sw;
|
||||
|
||||
/* Register built-in controls if not already done */
|
||||
if (! ControlsInitCalled)
|
||||
{
|
||||
ControlsInit();
|
||||
ControlsInitCalled = TRUE;
|
||||
}
|
||||
|
||||
if (IS_ATOM(lpClassName))
|
||||
{
|
||||
RtlInitUnicodeString(&ClassName, NULL);
|
||||
|
@ -550,6 +560,13 @@ CreateWindowExW(DWORD dwExStyle,
|
|||
HANDLE Handle;
|
||||
UINT sw;
|
||||
|
||||
/* Register built-in controls if not already done */
|
||||
if (! ControlsInitCalled)
|
||||
{
|
||||
ControlsInit();
|
||||
ControlsInitCalled = TRUE;
|
||||
}
|
||||
|
||||
if (IS_ATOM(lpClassName))
|
||||
{
|
||||
RtlInitUnicodeString(&ClassName, NULL);
|
||||
|
|
Loading…
Reference in a new issue