mirror of
https://github.com/reactos/wine.git
synced 2024-11-26 21:20:25 +00:00
988ca977ab
Mon Jun 20 14:26:41 1994 Bob Amstadt (bob@pooh) * [objects/bitmap.c] Allow negative bitmap sizes. Sun Jun 19 12:00:04 1994 David Metcalfe <david@prism.demon.co.uk> * [controls/edit.c] Improved selection display. Added processing for WM_SETFONT, EM_REPLACESEL, EM_LINELENGTH, EM_UNDO, EM_EMPTYUNDOBUFFER, EM_GETHANDLE, EM_SETHANDLE messages. Text buffer now stored on application's local heap. * [windows/graphics.c] Corrected bug in Rectangle(). XFillRectangle has the same width as Rectangle, but XDrawRectangle is one pixel wider for the same co-ordinates. * [memory/heap.c] [include/heap.h] Added HEAP_LocalSize function. * [windows/event.c] [windows/keyboard.c] Improvements to KeyStateTable and addition of AsyncKeyStateTable. Added supporting code to GetKeyState and GetAsyncKeyState and merged mouse button states into GetKeyboardState. * [loader/resource.c] [include/accel.h] Added recognition of SHIFT, CONTROL and ALT keys to TranslateAccelerator. * [objects/metafile.c] [objects/font.c] [objects/bitblt.c] A bit more metafile support. Sun Jun 19 17:29:00 MET DST 1994 Erik Bos (erik@hacktic.nl) * [loader/resource.c] SizeofResource() and AllocResource() added, AccessResource() updated. * [if1632/kernel.spec] FreeLibrary() used for FreeModule(). * [windows/graphics.c] Rectangle(): swap left & right corners when right < left, swap top & bottom when botton < top. Jun 19, 94 martin2@trgcorp.solucorp.qc.ca (Martin Ayotte) * [controls/combo.c] Fix bug in window style of the associated listbox. * [controls/menu.c] Skip separators in keyboard navigation by using new internal functions SelectPrevItem() & SelectNextItem(), * [misc/profile.c] Bug fix in GetPrivateProfileInt(), was limited to 4 digit, IntBuf must be alloc to (5+1)=6. char instead of 5. * [misc/main.c] Put code in functions SetEnvironment() & GetEnvironment(). * [misc/shell.c] Start putting some code in ExtractIcon() function. * [misc/mmsystem.c] Some code for MMTimer functions & timers list. * [miscemu/int31.c] Few stubs for DPMI interrupt calls. Nothing work yet. Mon Jun 20 07:37:43 EDT 1994 John Richardson (jrichard@cs.uml.edu) * include/win.h (tagWND): Added icon fields icon, hIcon and rectClientSave to the tagWND struct. * windows/Imakefile Added icon.c to the list of files to compile * windows/dce.c (GetDCEx): Added some checks for iconic mode and pass icon window as drawable, not the real window. * windows/defwnd.c (DefWindowProc) Added PAINTICON default windows procedure. * windows/event.c (EVENT_Expose) Added check for iconic window expose. If iconic window is exposed send a WM_PAINTICON message * windows/icon.c New file. ICON_Iconify, ICON_findIconFromPoint, ICON_Deiconify. * windows/mdi.c (DefMDIChildProc) Test for IsIconic during a SC_RESTORE, this doesn't work yet. * windows/message.c (hardware_event) Looks for icon as well as window now. * windows/nonclient.c (NC_HandleSysCommand, NC_DoNCPaintIcon) Added iconify/deiconify in NC_HandleSysCommand, new function NC_DoNCPaintIcon which paints an icon. * windows/painting.c (BeginPaint) Made a BeginPaint select the STOCK_BLACK_PEN, STOCK_WHITE_BRUSH, and STOCK_SYSTEM_FONT objects since this is (hopefully) default windows behavior. * windows/win.h (CreateWindowEx) Set the default background color of a window to be white. Create icon window, turn off MINIMIZE if it is on, since I don't know what to do with it as of yet... register the icon with the hwnd of its window so we can identify where icon messages are coming from. Mon Jun 20 10:15:59 1994 Miguel de Icaza (miguel@sphinx) * windows/event.c: Added a hack to define XPointer when using X11R4. * toolkit/hello.c: Test application for WineLib. To compile you'll need: gcc -Iinclude -DWINELIB -g hello.c -c, and to link you'll need: gcc hello.o libwine.a -lX11 -L/usr/openwin/lib -lm * toolkit/heap.c: Extended the size of the block size per chunk. * misc/stress.c (GetFreeFileHandles): Fixed typo. * misc/main.c (main): Changes to allow compilation under SunOS. * loader/library.c: Changed some ifdefs to compile WineLib.
259 lines
6.5 KiB
C
259 lines
6.5 KiB
C
/*
|
|
* Windows Properties Functions
|
|
*/
|
|
static char Copyright[] = "Copyright Martin Ayotte, 1994";
|
|
|
|
/*
|
|
#define DEBUG_PROP
|
|
*/
|
|
|
|
#include <stdlib.h>
|
|
#include <stdio.h>
|
|
#include <string.h>
|
|
#include <unistd.h>
|
|
#include "windows.h"
|
|
#include "heap.h"
|
|
#include "win.h"
|
|
|
|
typedef struct tagPROPENTRY {
|
|
LPSTR PropName;
|
|
WORD Atom;
|
|
HANDLE hData;
|
|
struct tagPROPENTRY *lpPrevProp;
|
|
struct tagPROPENTRY *lpNextProp;
|
|
} PROPENTRY;
|
|
typedef PROPENTRY *LPPROPENTRY;
|
|
|
|
|
|
/*************************************************************************
|
|
* RemoveProp [USER.24]
|
|
*/
|
|
HANDLE RemoveProp(HWND hWnd, LPSTR lpStr)
|
|
{
|
|
WND *wndPtr;
|
|
LPPROPENTRY lpProp;
|
|
HANDLE hOldData;
|
|
#ifdef DEBUG_PROP
|
|
if (((DWORD)lpStr & 0xFFFF0000) == 0L)
|
|
printf("RemoveProp(%04X, Atom %04X)\n", hWnd, LOWORD((DWORD)lpStr));
|
|
else
|
|
printf("RemoveProp(%04X, '%s')\n", hWnd, lpStr);
|
|
#endif
|
|
wndPtr = WIN_FindWndPtr(hWnd);
|
|
if (wndPtr == NULL) {
|
|
printf("RemoveProp // Bad Window handle !\n");
|
|
return FALSE;
|
|
}
|
|
lpProp = (LPPROPENTRY) GlobalLock(wndPtr->hProp);
|
|
if (lpProp == NULL) {
|
|
#ifdef DEBUG_PROP
|
|
printf("Property List Empty !\n");
|
|
#endif
|
|
return 0;
|
|
}
|
|
while (TRUE) {
|
|
if ((((DWORD)lpStr & 0xFFFF0000) == 0L &&
|
|
lpProp->Atom == LOWORD((DWORD)lpStr)) ||
|
|
(((DWORD)lpStr & 0xFFFF0000) != 0L &&
|
|
lpProp->PropName != NULL &&
|
|
strcmp(lpProp->PropName, lpStr) == 0)) {
|
|
#ifdef DEBUG_PROP
|
|
printf("RemoveProp // Property found ! hData=%04X\n", lpProp->hData);
|
|
#endif
|
|
hOldData = lpProp->hData;
|
|
if (lpProp->lpPrevProp != NULL)
|
|
lpProp->lpPrevProp->lpNextProp = lpProp->lpNextProp;
|
|
if (lpProp->lpNextProp != NULL)
|
|
lpProp->lpNextProp->lpPrevProp = lpProp->lpPrevProp;
|
|
if (lpProp->PropName != NULL) free(lpProp->PropName);
|
|
GlobalFree(lpProp);
|
|
GlobalUnlock(wndPtr->hProp);
|
|
return hOldData;
|
|
}
|
|
if (lpProp->lpNextProp == NULL) break;
|
|
lpProp = lpProp->lpNextProp;
|
|
}
|
|
GlobalUnlock(wndPtr->hProp);
|
|
#ifdef DEBUG_PROP
|
|
printf("RemoveProp // Property not found !\n");
|
|
#endif
|
|
return 0;
|
|
}
|
|
|
|
|
|
/*************************************************************************
|
|
* GetProp [USER.25]
|
|
*/
|
|
HANDLE GetProp(HWND hWnd, LPSTR lpStr)
|
|
{
|
|
WND *wndPtr;
|
|
LPPROPENTRY lpProp;
|
|
#ifdef DEBUG_PROP
|
|
if (((DWORD)lpStr & 0xFFFF0000) == 0L)
|
|
printf("GetProp(%04X, Atom %04X)\n", hWnd, LOWORD((DWORD)lpStr));
|
|
else
|
|
printf("GetProp(%04X, '%s')\n", hWnd, lpStr);
|
|
#endif
|
|
wndPtr = WIN_FindWndPtr(hWnd);
|
|
if (wndPtr == NULL) {
|
|
printf("GetProp // Bad Window handle !\n");
|
|
return 0;
|
|
}
|
|
lpProp = (LPPROPENTRY) GlobalLock(wndPtr->hProp);
|
|
if (lpProp == NULL) {
|
|
#ifdef DEBUG_PROP
|
|
printf("Property List Empty !\n");
|
|
#endif
|
|
return 0;
|
|
}
|
|
while (TRUE) {
|
|
if ((((DWORD)lpStr & 0xFFFF0000) == 0L &&
|
|
lpProp->Atom == LOWORD((DWORD)lpStr)) ||
|
|
(((DWORD)lpStr & 0xFFFF0000) != 0L &&
|
|
lpProp->PropName != NULL &&
|
|
strcmp(lpProp->PropName, lpStr) == 0)) {
|
|
#ifdef DEBUG_PROP
|
|
printf("GetProp // Property found ! hData=%04X\n", lpProp->hData);
|
|
#endif
|
|
GlobalUnlock(wndPtr->hProp);
|
|
return lpProp->hData;
|
|
}
|
|
if (lpProp->lpNextProp == NULL) break;
|
|
lpProp = lpProp->lpNextProp;
|
|
}
|
|
#ifdef DEBUG_PROP
|
|
printf("GetProp // Property not found !\n");
|
|
#endif
|
|
GlobalUnlock(wndPtr->hProp);
|
|
return 0;
|
|
}
|
|
|
|
|
|
/*************************************************************************
|
|
* SetProp [USER.26]
|
|
*/
|
|
BOOL SetProp(HWND hWnd, LPSTR lpStr, HANDLE hData)
|
|
{
|
|
WND *wndPtr;
|
|
HANDLE hNewProp;
|
|
LPPROPENTRY lpNewProp;
|
|
LPPROPENTRY lpProp;
|
|
#ifdef DEBUG_PROP
|
|
if (((DWORD)lpStr & 0xFFFF0000) == 0L)
|
|
printf("SetProp(%04X, Atom %04X, %04X)\n",
|
|
hWnd, LOWORD((DWORD)lpStr), hData);
|
|
else
|
|
printf("SetProp(%04X, '%s', %04X)\n", hWnd, lpStr, hData);
|
|
#endif
|
|
wndPtr = WIN_FindWndPtr(hWnd);
|
|
if (wndPtr == NULL) {
|
|
printf("SetProp // Bad Window handle !\n");
|
|
return FALSE;
|
|
}
|
|
lpProp = (LPPROPENTRY) GlobalLock(wndPtr->hProp);
|
|
if (lpProp != NULL) {
|
|
while (TRUE) {
|
|
if ((((DWORD)lpStr & 0xFFFF0000) == 0L &&
|
|
lpProp->Atom == LOWORD((DWORD)lpStr)) ||
|
|
(((DWORD)lpStr & 0xFFFF0000) != 0L &&
|
|
lpProp->PropName != NULL &&
|
|
strcmp(lpProp->PropName, lpStr) == 0)) {
|
|
#ifdef DEBUG_PROP
|
|
printf("SetProp // change already exinsting property !\n");
|
|
#endif
|
|
lpProp->hData = hData;
|
|
GlobalUnlock(wndPtr->hProp);
|
|
return TRUE;
|
|
}
|
|
if (lpProp->lpNextProp == NULL) break;
|
|
lpProp = lpProp->lpNextProp;
|
|
}
|
|
}
|
|
hNewProp = GlobalAlloc(GMEM_MOVEABLE, sizeof(PROPENTRY));
|
|
lpNewProp = (LPPROPENTRY) GlobalLock(hNewProp);
|
|
if (lpNewProp == NULL) {
|
|
printf("SetProp // Can't allocate Property entry !\n");
|
|
GlobalUnlock(wndPtr->hProp);
|
|
return FALSE;
|
|
}
|
|
#ifdef DEBUG_PROP
|
|
printf("SetProp // entry allocated %08X\n", lpNewProp);
|
|
#endif
|
|
if (lpProp == NULL) {
|
|
wndPtr->hProp = hNewProp;
|
|
lpNewProp->lpPrevProp = NULL;
|
|
#ifdef DEBUG_PROP
|
|
printf("SetProp // first entry \n");
|
|
#endif
|
|
}
|
|
else {
|
|
lpProp->lpNextProp = lpNewProp;
|
|
lpNewProp->lpPrevProp = lpProp;
|
|
}
|
|
lpNewProp->lpNextProp = NULL;
|
|
lpNewProp->hData = hData;
|
|
if (((DWORD)lpStr & 0xFFFF0000) == 0L) {
|
|
lpNewProp->PropName = NULL;
|
|
lpNewProp->Atom = LOWORD((DWORD)lpStr);
|
|
}
|
|
else {
|
|
lpNewProp->Atom = 0;
|
|
lpNewProp->PropName = malloc(strlen(lpStr) + 1);
|
|
if (lpNewProp->PropName == NULL) {
|
|
printf("SetProp // Can't allocate memory for Property Name !\n");
|
|
GlobalUnlock(wndPtr->hProp);
|
|
return FALSE;
|
|
}
|
|
strcpy(lpNewProp->PropName, lpStr);
|
|
}
|
|
GlobalUnlock(hNewProp);
|
|
GlobalUnlock(wndPtr->hProp);
|
|
return TRUE;
|
|
}
|
|
|
|
|
|
/*************************************************************************
|
|
* EnumProps [USER.27]
|
|
*/
|
|
int EnumProps(HWND hWnd, FARPROC lpEnumFunc)
|
|
{
|
|
WND *wndPtr;
|
|
LPPROPENTRY lpProp;
|
|
LPSTR str;
|
|
int nRet;
|
|
printf("EnumProps(%04X, %08X)\n", hWnd, lpEnumFunc);
|
|
wndPtr = WIN_FindWndPtr(hWnd);
|
|
if (wndPtr == NULL) {
|
|
printf("EnumProps // Bad Window handle !\n");
|
|
return 0;
|
|
}
|
|
lpProp = (LPPROPENTRY) GlobalLock(wndPtr->hProp);
|
|
if (lpProp == NULL) {
|
|
printf("Property List Empty !\n");
|
|
return 0;
|
|
}
|
|
if (lpEnumFunc != NULL) return 0;
|
|
while (TRUE) {
|
|
printf("EnumProps // lpProp->Atom=%04X !\n", lpProp->Atom);
|
|
str = (LPSTR)MAKELONG(lpProp->Atom, 0);
|
|
if (lpProp->PropName != NULL) {
|
|
printf("EnumProps // lpProp->PropName='%s' !\n", lpProp->PropName);
|
|
str = lpProp->PropName;
|
|
}
|
|
#ifdef WINELIB
|
|
nRet = (*lpEnumFunc)((HWND)hWnd, (WORD)0,
|
|
(LPSTR)str, (HANDLE)lpProp->hData);
|
|
#else
|
|
nRet = CallBack16(lpEnumFunc, 4, (HANDLE)lpProp->hData,
|
|
(LPSTR)str, (WORD)0, (HWND)hWnd);
|
|
#endif
|
|
if (nRet == 0) break;
|
|
if (lpProp->lpNextProp == NULL) break;
|
|
lpProp = lpProp->lpNextProp;
|
|
}
|
|
GlobalUnlock(wndPtr->hProp);
|
|
return 0;
|
|
}
|
|
|
|
|