1 | /* $Id: CCBase.h,v 1.3 2000-02-25 17:00:15 cbratschi Exp $ */
|
---|
2 | /*
|
---|
3 | * COMCTL32 Base Functions and Macros for all Controls
|
---|
4 | *
|
---|
5 | * Copyright 2000 Christoph Bratschi (cbratschi@datacomm.ch)
|
---|
6 | */
|
---|
7 | #ifndef __CCBASE_H
|
---|
8 | #define __CCBASE_H
|
---|
9 |
|
---|
10 | #define getInfoPtr(hwnd) ((COMCTL32_HEADER*)GetWindowLongA(hwnd,0))
|
---|
11 | #define setInfoPtr(hwnd,infoPtr) (SetWindowLongA(hwnd,0,(DWORD)infoPtr))
|
---|
12 |
|
---|
13 | typedef struct
|
---|
14 | {
|
---|
15 | DWORD dwSize; //whole structure size
|
---|
16 | INT iVersion; //version
|
---|
17 | BOOL fUnicode; //Unicode flag
|
---|
18 | UINT uNotifyFormat; //notify format
|
---|
19 | } COMCTL32_HEADER;
|
---|
20 |
|
---|
21 | PVOID initControl(HWND hwnd,DWORD dwSize);
|
---|
22 | VOID doneControl(HWND hwnd);
|
---|
23 |
|
---|
24 | LRESULT defComCtl32ProcA(HWND hwnd,UINT Msg,WPARAM wParam,LPARAM lParam);
|
---|
25 | LRESULT defComCtl32ProcW(HWND hwnd,UINT Msg,WPARAM wParam,LPARAM lParam);
|
---|
26 |
|
---|
27 | BOOL isUnicodeNotify(COMCTL32_HEADER *infoPtr);
|
---|
28 | BOOL isUnicodeNotify(HWND hwnd);
|
---|
29 |
|
---|
30 | LRESULT sendNotify(HWND hwnd,UINT code);
|
---|
31 | LRESULT sendNotify(HWND hwnd,UINT code,LPNMHDR nmhdr);
|
---|
32 | LRESULT sendNotifyFormat(HWND hwnd,HWND hwndFrom,LPARAM command);
|
---|
33 | LRESULT sendCommand(HWND hwnd,UINT wNotifyCode);
|
---|
34 |
|
---|
35 | HWND createToolTip(HWND hwnd,UINT flags);
|
---|
36 | VOID destroyToolTip(HWND hwndToolTip);
|
---|
37 |
|
---|
38 | #endif
|
---|