1998-03-15 21:29:56 +01:00
|
|
|
/*
|
|
|
|
* ImageList definitions
|
|
|
|
*
|
|
|
|
* Copyright 1998 Eric Kohl
|
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
|
2006-05-18 14:49:52 +02:00
|
|
|
* Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
|
1998-03-15 21:29:56 +01:00
|
|
|
*/
|
2002-06-01 01:06:46 +02:00
|
|
|
|
1998-03-15 21:29:56 +01:00
|
|
|
#ifndef __WINE_IMAGELIST_H
|
|
|
|
#define __WINE_IMAGELIST_H
|
1999-01-01 19:57:33 +01:00
|
|
|
|
2003-09-06 01:08:26 +02:00
|
|
|
#include <stdarg.h>
|
|
|
|
|
2000-03-24 22:13:57 +01:00
|
|
|
#include "windef.h"
|
2003-09-06 01:08:26 +02:00
|
|
|
#include "winbase.h"
|
1999-01-01 19:57:33 +01:00
|
|
|
#include "wingdi.h"
|
1999-02-17 14:51:06 +01:00
|
|
|
|
2000-01-29 22:00:25 +01:00
|
|
|
/* the ones with offsets at the end are the same as in Windows */
|
1998-03-15 21:29:56 +01:00
|
|
|
struct _IMAGELIST
|
|
|
|
{
|
2003-05-13 05:36:27 +02:00
|
|
|
DWORD magic; /* 00: 'SAMX' */
|
|
|
|
INT cCurImage; /* 04: ImageCount */
|
|
|
|
INT cMaxImage; /* 08: maximages */
|
|
|
|
INT cGrow; /* 0c: cGrow */
|
|
|
|
INT cx; /* 10: cx */
|
|
|
|
INT cy; /* 14: cy */
|
|
|
|
DWORD x4;
|
|
|
|
UINT flags; /* 1c: flags */
|
|
|
|
COLORREF clrFg; /* 20: foreground color */
|
2008-01-23 23:05:21 +01:00
|
|
|
COLORREF clrBk; /* 24: background color */
|
2000-01-29 22:00:25 +01:00
|
|
|
|
|
|
|
|
2003-05-13 05:36:27 +02:00
|
|
|
HBITMAP hbmImage; /* 30: images Bitmap */
|
|
|
|
HBITMAP hbmMask; /* 34: masks Bitmap */
|
|
|
|
HDC hdcImage; /* 38: images MemDC */
|
|
|
|
HDC hdcMask; /* 3C: masks MemDC */
|
|
|
|
INT nOvlIdx[15]; /* 40: overlay images index */
|
|
|
|
|
2000-01-29 22:00:25 +01:00
|
|
|
/* not yet found out */
|
1999-02-26 12:11:13 +01:00
|
|
|
HBRUSH hbrBlend25;
|
|
|
|
HBRUSH hbrBlend50;
|
|
|
|
INT cInitial;
|
|
|
|
UINT uBitsPixel;
|
1998-03-15 21:29:56 +01:00
|
|
|
};
|
1999-11-24 00:40:01 +01:00
|
|
|
|
2003-01-02 18:51:13 +01:00
|
|
|
#define IMAGELIST_MAGIC 0x53414D58
|
|
|
|
|
2000-01-29 22:00:25 +01:00
|
|
|
/* Header used by ImageList_Read() and ImageList_Write() */
|
2007-04-21 11:16:04 +02:00
|
|
|
#include "pshpack2.h"
|
1999-11-24 00:40:01 +01:00
|
|
|
typedef struct _ILHEAD
|
|
|
|
{
|
2000-01-29 22:00:25 +01:00
|
|
|
USHORT usMagic;
|
|
|
|
USHORT usVersion;
|
|
|
|
WORD cCurImage;
|
|
|
|
WORD cMaxImage;
|
2000-01-30 23:21:22 +01:00
|
|
|
WORD cGrow;
|
2000-01-29 22:00:25 +01:00
|
|
|
WORD cx;
|
|
|
|
WORD cy;
|
|
|
|
COLORREF bkcolor;
|
|
|
|
WORD flags;
|
2000-01-30 23:21:22 +01:00
|
|
|
SHORT ovls[4];
|
1999-11-24 00:40:01 +01:00
|
|
|
} ILHEAD;
|
2000-01-29 22:00:25 +01:00
|
|
|
#include "poppack.h"
|
2007-04-21 11:16:04 +02:00
|
|
|
|
1998-03-15 21:29:56 +01:00
|
|
|
#endif /* __WINE_IMAGELIST_H */
|