blob: abe3e82ac8e1a493fc5e866f71149b38ec51f6de (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
|
/*-----------------------------------------------------------------------
| stdpal.c
|
| Standard App Palette useful for OLE applications. v 1.01
|
| NOTE: Palette MUST be created with OleStdCreateStandardPalette
|
| Copyright (c) 1992 - 1993 Microsoft Corporation. All rights reserved.
|
-----------------------------------------------------------------------*/
#ifndef PC_RESERVED
#ifndef INC_OLE2
#define INC_OLE2
#endif
#undef UNICODE
#include <windows.h>
#include <ole2.h>
#endif
#include "stdpal.h"
#define cpeAppPal 256 // number of colors in our apps palette
typedef struct
{
WORD wVersion;
WORD cpe;
PALETTEENTRY rgpe[cpeAppPal];
} LOGPAL;
/*-----------------------------------------------------------------------
| OleStdCreateStandardPalette
|
| Creates the standard Apps palette. Create one of these for your
| app, and select/realize it into each DC.
|
| Arguments:
| void:
|
| Returns:
|
| Keywords:
-----------------------------------------------------------------------*/
STDAPI_(HPALETTE) OleStdCreateStandardPalette(void)
{
HDC hdc;
HPALETTE hpal;
hpal = (HPALETTE) NULL;
hdc = GetDC(NULL);
if (hdc != NULL && GetDeviceCaps(hdc, RASTERCAPS) & RC_PALETTE)
{
int cpeSysPal;
int cpeReserved;
cpeSysPal = GetDeviceCaps(hdc, SIZEPALETTE);
cpeReserved = GetDeviceCaps(hdc, NUMRESERVED);
if (cpeSysPal > cpeReserved)
{
int cpeReserved2;
unsigned char FAR* lpb;
PALETTEENTRY FAR* ppe;
PALETTEENTRY FAR* ppeMac;
LOGPAL logpal;
cpeReserved2 = cpeReserved/2;
// Get the system palette entries at the beginning and end.
GetSystemPaletteEntries(hdc, 0, cpeReserved2, logpal.rgpe);
GetSystemPaletteEntries(hdc, cpeSysPal - cpeReserved2, cpeReserved2,
&logpal.rgpe[cpeAppPal-cpeReserved2]);
logpal.cpe = cpeAppPal;
logpal.wVersion = 0x300;
lpb = (BYTE FAR *) &palSVGA[10];
ppe = (PALETTEENTRY FAR*)&logpal.rgpe[cpeReserved2];
ppeMac = (PALETTEENTRY FAR*)&logpal.rgpe[cpeAppPal-cpeReserved2];
while (ppe < ppeMac)
{
ppe->peFlags = PC_NOCOLLAPSE;
ppe->peRed = *lpb++;
ppe->peGreen = *lpb++;
ppe->peBlue = *lpb++;
ppe++;
}
hpal = CreatePalette((LOGPALETTE FAR *)&logpal);
}
}
ReleaseDC(NULL, hdc);
return hpal;
}
|