]> git.saurik.com Git - wxWidgets.git/blame_incremental - include/wx/msw/private.h
Set wxPendingEvents to NULL after deleting it
[wxWidgets.git] / include / wx / msw / private.h
... / ...
CommitLineData
1/////////////////////////////////////////////////////////////////////////////
2// Name: private.h
3// Purpose: Private declarations: as this header is only included by
4// wxWindows itself, it may contain identifiers which don't start
5// with "wx".
6// Author: Julian Smart
7// Modified by:
8// Created: 01/02/97
9// RCS-ID: $Id$
10// Copyright: (c) Julian Smart
11// Licence: wxWindows licence
12/////////////////////////////////////////////////////////////////////////////
13
14#ifndef _WX_PRIVATE_H_
15#define _WX_PRIVATE_H_
16
17#ifndef STRICT
18 #define STRICT 1
19#endif
20
21#include <windows.h>
22
23
24#if defined (__WXWINCE__)
25 #include <wingdi.h> // RGB, COLORREF
26 #include <winuser.h> // Global Namespaces ::GetKeyState, ::GetWindowRect
27#endif
28
29
30#ifdef __WXMICROWIN__
31 // Extra prototypes and symbols not defined by MicroWindows
32 #include "wx/msw/microwin.h"
33#endif
34
35// undefine conflicting symbols which were defined in windows.h
36#include "wx/msw/winundef.h"
37
38// Include fixes for MSLU:
39#include "wx/msw/mslu.h"
40
41#include "wx/log.h"
42
43class WXDLLEXPORT wxFont;
44class WXDLLEXPORT wxWindow;
45
46// ---------------------------------------------------------------------------
47// private constants
48// ---------------------------------------------------------------------------
49
50// Conversion
51static const double METRIC_CONVERSION_CONSTANT = 0.0393700787;
52
53// Scaling factors for various unit conversions
54static const double mm2inches = (METRIC_CONVERSION_CONSTANT);
55static const double inches2mm = (1/METRIC_CONVERSION_CONSTANT);
56
57static const double mm2twips = (METRIC_CONVERSION_CONSTANT*1440);
58static const double twips2mm = (1/(METRIC_CONVERSION_CONSTANT*1440));
59
60static const double mm2pt = (METRIC_CONVERSION_CONSTANT*72);
61static const double pt2mm = (1/(METRIC_CONVERSION_CONSTANT*72));
62
63// ---------------------------------------------------------------------------
64// standard icons from the resources
65// ---------------------------------------------------------------------------
66
67#if wxUSE_GUI
68
69WXDLLEXPORT_DATA(extern HICON) wxSTD_FRAME_ICON;
70WXDLLEXPORT_DATA(extern HICON) wxSTD_MDIPARENTFRAME_ICON;
71WXDLLEXPORT_DATA(extern HICON) wxSTD_MDICHILDFRAME_ICON;
72WXDLLEXPORT_DATA(extern HICON) wxDEFAULT_FRAME_ICON;
73WXDLLEXPORT_DATA(extern HICON) wxDEFAULT_MDIPARENTFRAME_ICON;
74WXDLLEXPORT_DATA(extern HICON) wxDEFAULT_MDICHILDFRAME_ICON;
75WXDLLEXPORT_DATA(extern HFONT) wxSTATUS_LINE_FONT;
76
77#endif // wxUSE_GUI
78
79// ---------------------------------------------------------------------------
80// define things missing from some compilers' headers
81// ---------------------------------------------------------------------------
82
83#if defined(__GNUWIN32__) && !wxUSE_NORLANDER_HEADERS
84#ifndef ZeroMemory
85 inline void ZeroMemory(void *buf, size_t len) { memset(buf, 0, len); }
86#endif
87#endif // old mingw32
88
89// this defines a CASTWNDPROC macro which casts a pointer to the type of a
90// window proc
91#if defined(__WXWINCE__)
92 typedef FARPROC WndProcCast;
93#elif defined(STRICT) || defined(__GNUC__)
94 typedef WNDPROC WndProcCast;
95#else
96 typedef FARPROC WndProcCast;
97#endif
98
99
100#define CASTWNDPROC (WndProcCast)
101
102// ---------------------------------------------------------------------------
103// some stuff for old Windows versions (FIXME: what does it do here??)
104// ---------------------------------------------------------------------------
105
106#if !defined(APIENTRY) // NT defines APIENTRY, 3.x not
107 #define APIENTRY FAR PASCAL
108#endif
109
110#ifdef __WIN32__
111 #define _EXPORT
112#else
113 #define _EXPORT _export
114#endif
115
116#ifndef __WIN32__
117 typedef signed short int SHORT;
118#endif
119
120#if !defined(__WIN32__) // 3.x uses FARPROC for dialogs
121#ifndef STRICT
122 #define DLGPROC FARPROC
123#endif
124#endif
125
126#if wxUSE_PENWIN
127 WXDLLEXPORT void wxRegisterPenWin();
128 WXDLLEXPORT void wxCleanUpPenWin();
129 WXDLLEXPORT void wxEnablePenAppHooks (bool hook);
130#endif // wxUSE_PENWIN
131
132#if wxUSE_ITSY_BITSY
133 #define IBS_HORZCAPTION 0x4000L
134 #define IBS_VERTCAPTION 0x8000L
135
136 UINT WINAPI ibGetCaptionSize( HWND hWnd ) ;
137 UINT WINAPI ibSetCaptionSize( HWND hWnd, UINT nSize ) ;
138 LRESULT WINAPI ibDefWindowProc( HWND hWnd, UINT uiMsg, WPARAM wParam, LPARAM lParam ) ;
139 VOID WINAPI ibAdjustWindowRect( HWND hWnd, LPRECT lprc ) ;
140#endif // wxUSE_ITSY_BITSY
141
142#if wxUSE_CTL3D
143 #include "wx/msw/ctl3d/ctl3d.h"
144#endif // wxUSE_CTL3D
145
146/*
147 * Decide what window classes we're going to use
148 * for this combination of CTl3D/FAFA settings
149 */
150
151#define STATIC_CLASS wxT("STATIC")
152#define STATIC_FLAGS (SS_LEFT|WS_CHILD|WS_VISIBLE)
153#define CHECK_CLASS wxT("BUTTON")
154#define CHECK_FLAGS (BS_AUTOCHECKBOX|WS_TABSTOP|WS_CHILD)
155#define CHECK_IS_FAFA FALSE
156#define RADIO_CLASS wxT("BUTTON")
157#define RADIO_FLAGS (BS_AUTORADIOBUTTON|WS_CHILD|WS_VISIBLE)
158#define RADIO_SIZE 20
159#define RADIO_IS_FAFA FALSE
160#define PURE_WINDOWS
161#define GROUP_CLASS wxT("BUTTON")
162#define GROUP_FLAGS (BS_GROUPBOX|WS_CHILD|WS_VISIBLE)
163
164/*
165#define BITCHECK_FLAGS (FB_BITMAP|FC_BUTTONDRAW|FC_DEFAULT|WS_VISIBLE)
166#define BITRADIO_FLAGS (FC_BUTTONDRAW|FB_BITMAP|FC_RADIO|WS_CHILD|WS_VISIBLE)
167*/
168
169// ---------------------------------------------------------------------------
170// misc macros
171// ---------------------------------------------------------------------------
172
173#define MEANING_CHARACTER '0'
174#define DEFAULT_ITEM_WIDTH 100
175#define DEFAULT_ITEM_HEIGHT 80
176
177// Scale font to get edit control height
178//#define EDIT_HEIGHT_FROM_CHAR_HEIGHT(cy) (3*(cy)/2)
179#define EDIT_HEIGHT_FROM_CHAR_HEIGHT(cy) (cy+8)
180
181// Generic subclass proc, for panel item moving/sizing and intercept
182// EDIT control VK_RETURN messages
183extern LONG APIENTRY _EXPORT
184 wxSubclassedGenericControlProc(WXHWND hWnd, WXUINT message, WXWPARAM wParam, WXLPARAM lParam);
185
186// ---------------------------------------------------------------------------
187// constants which might miss from some compilers' headers
188// ---------------------------------------------------------------------------
189
190#if !defined(__WIN32__) && !defined(WS_EX_CLIENTEDGE)
191 #define WS_EX_CLIENTEDGE 0
192#endif
193
194#if defined(__WIN32__) && !defined(WS_EX_CLIENTEDGE)
195 #define WS_EX_CLIENTEDGE 0x00000200L
196#endif
197
198#ifndef ENDSESSION_LOGOFF
199 #define ENDSESSION_LOGOFF 0x80000000
200#endif
201
202// ---------------------------------------------------------------------------
203// useful macros and functions
204// ---------------------------------------------------------------------------
205
206// a wrapper macro for ZeroMemory()
207#if defined(__WIN32__) && !defined(__WXMICROWIN__)
208#define wxZeroMemory(obj) ::ZeroMemory(&obj, sizeof(obj))
209#else
210#define wxZeroMemory(obj) memset((void*) & obj, 0, sizeof(obj))
211#endif
212
213#if wxUSE_GUI
214
215#include <wx/gdicmn.h>
216#include <wx/colour.h>
217
218// make conversion from wxColour and COLORREF a bit less painful
219inline COLORREF wxColourToRGB(const wxColour& c)
220{
221 return RGB(c.Red(), c.Green(), c.Blue());
222}
223
224inline COLORREF wxColourToPalRGB(const wxColour& c)
225{
226 return PALETTERGB(c.Red(), c.Green(), c.Blue());
227}
228
229inline wxColour wxRGBToColour(COLORREF rgb)
230{
231 return wxColour(GetRValue(rgb), GetGValue(rgb), GetBValue(rgb));
232}
233
234inline void wxRGBToColour(wxColour& c, COLORREF rgb)
235{
236 c.Set(GetRValue(rgb), GetGValue(rgb), GetBValue(rgb));
237}
238
239// get the standard colour map for some standard colours - see comment in this
240// function to understand why is it needed and when should it be used
241//
242// it returns a wxCOLORMAP (can't use COLORMAP itself here as comctl32.dll
243// might be not included/available) array of size wxSTD_COLOUR_MAX
244//
245// NB: if you change these colours, update wxBITMAP_STD_COLOURS in the
246// resources as well: it must have the same number of pixels!
247enum wxSTD_COLOUR
248{
249 wxSTD_COL_BTNTEXT,
250 wxSTD_COL_BTNSHADOW,
251 wxSTD_COL_BTNFACE,
252 wxSTD_COL_BTNHIGHLIGHT,
253 wxSTD_COL_MAX,
254};
255
256struct WXDLLEXPORT wxCOLORMAP
257{
258 COLORREF from, to;
259};
260
261// this function is implemented in src/msw/window.cpp
262extern wxCOLORMAP *wxGetStdColourMap();
263
264// copy Windows RECT to our wxRect
265inline void wxCopyRECTToRect(const RECT& r, wxRect& rect)
266{
267 rect.y = r.top;
268 rect.x = r.left;
269 rect.width = r.right - r.left;
270 rect.height = r.bottom - r.top;
271}
272
273// translations between HIMETRIC units (which OLE likes) and pixels (which are
274// liked by all the others) - implemented in msw/utilsexc.cpp
275extern void HIMETRICToPixel(LONG *x, LONG *y);
276extern void PixelToHIMETRIC(LONG *x, LONG *y);
277
278// Windows convention of the mask is opposed to the wxWindows one, so we need
279// to invert the mask each time we pass one/get one to/from Windows
280extern HBITMAP wxInvertMask(HBITMAP hbmpMask, int w = 0, int h = 0);
281
282// Creates an icon or cursor depending from a bitmap
283//
284// The bitmap must be valid and it should have a mask. If it doesn't, a default
285// mask is created using light grey as the transparent colour.
286extern HICON wxBitmapToHICON(const wxBitmap& bmp);
287
288// Same requirments as above apply and the bitmap must also have the correct
289// size.
290extern
291HCURSOR wxBitmapToHCURSOR(const wxBitmap& bmp, int hotSpotX, int hotSpotY);
292
293// get (x, y) from DWORD - notice that HI/LOWORD can *not* be used because they
294// will fail on system with multiple monitors where the coords may be negative
295//
296// these macros are standard now (Win98) but some older headers don't have them
297#ifndef GET_X_LPARAM
298 #define GET_X_LPARAM(lp) ((int)(short)LOWORD(lp))
299 #define GET_Y_LPARAM(lp) ((int)(short)HIWORD(lp))
300#endif // GET_X_LPARAM
301
302// get the current state of SHIFT/CTRL keys
303inline bool wxIsShiftDown()
304{
305 return (::GetKeyState(VK_SHIFT) & 0x100) != 0;
306}
307
308inline bool wxIsCtrlDown()
309{
310 return (::GetKeyState(VK_CONTROL) & 0x100) != 0;
311}
312
313// wrapper around GetWindowRect() and GetClientRect() APIs doing error checking
314// for Win32
315inline RECT wxGetWindowRect(HWND hwnd)
316{
317 RECT rect;
318#ifdef __WIN16__
319 ::GetWindowRect(hwnd, &rect);
320#else // Win32
321 if ( !::GetWindowRect(hwnd, &rect) )
322 {
323 wxLogLastError(_T("GetWindowRect"));
324 }
325#endif // Win16/32
326
327 return rect;
328}
329
330inline RECT wxGetClientRect(HWND hwnd)
331{
332 RECT rect;
333#ifdef __WIN16__
334 ::GetClientRect(hwnd, &rect);
335#else // Win32
336 if ( !::GetClientRect(hwnd, &rect) )
337 {
338 wxLogLastError(_T("GetClientRect"));
339 }
340#endif // Win16/32
341
342 return rect;
343}
344
345// ---------------------------------------------------------------------------
346// small helper classes
347// ---------------------------------------------------------------------------
348
349// create an instance of this class and use it as the HDC for screen, will
350// automatically release the DC going out of scope
351class ScreenHDC
352{
353public:
354 ScreenHDC() { m_hdc = ::GetDC(NULL); }
355 ~ScreenHDC() { ::ReleaseDC(NULL, m_hdc); }
356
357 operator HDC() const { return m_hdc; }
358
359private:
360 HDC m_hdc;
361
362 DECLARE_NO_COPY_CLASS(ScreenHDC)
363};
364
365// the same as ScreenHDC but for memory DCs: creates the HDC compatible with
366// the given one (screen by default) in ctor and destroys it in dtor
367class MemoryHDC
368{
369public:
370 MemoryHDC(HDC hdc = 0) { m_hdc = ::CreateCompatibleDC(hdc); }
371 ~MemoryHDC() { ::DeleteDC(m_hdc); }
372
373 operator HDC() const { return m_hdc; }
374
375private:
376 HDC m_hdc;
377
378 DECLARE_NO_COPY_CLASS(MemoryHDC)
379};
380
381// a class which selects a GDI object into a DC in its ctor and deselects in
382// dtor
383class SelectInHDC
384{
385public:
386 SelectInHDC(HDC hdc, HGDIOBJ hgdiobj) : m_hdc(hdc)
387 { m_hgdiobj = ::SelectObject(hdc, hgdiobj); }
388
389 ~SelectInHDC() { ::SelectObject(m_hdc, m_hgdiobj); }
390
391 // return true if the object was successfully selected
392 operator bool() const { return m_hgdiobj != 0; }
393
394private:
395 HDC m_hdc;
396 HGDIOBJ m_hgdiobj;
397
398 DECLARE_NO_COPY_CLASS(SelectInHDC)
399};
400
401#ifdef __WATCOM__
402//FIXME why does watcom dislike this ?? CE 05 April 2003
403
404// when working with global pointers (which is unfortunately still necessary
405// sometimes, e.g. for clipboard) it is important to unlock them exactly as
406// many times as we lock them which just asks for using a "smart lock" class
407class GlobalHandle
408{
409public:
410 GlobalHandle(HGLOBAL hGlobal) : m_hGlobal(hGlobal)
411 {
412 m_ptr = ::GlobalLock(hGlobal);
413 if ( !m_ptr )
414 {
415 wxLogLastError(_T("GlobalLock"));
416 }
417 }
418
419 ~GlobalHandle()
420 {
421 if ( !::GlobalUnlock(m_hGlobal) )
422 {
423#ifdef __WXDEBUG__
424 // this might happen simply because the block became unlocked
425 DWORD dwLastError = ::GetLastError();
426 if ( dwLastError != NO_ERROR )
427 {
428 wxLogApiError(_T("GlobalUnlock"), dwLastError);
429 }
430#endif // __WXDEBUG__
431 }
432 }
433
434 operator void *() const { return m_ptr; }
435
436private:
437 HGLOBAL m_hGlobal;
438 void *m_ptr;
439
440 DECLARE_NO_COPY_CLASS(GlobalHandle)
441};
442
443#endif //__WATCOM__
444// ---------------------------------------------------------------------------
445// macros to make casting between WXFOO and FOO a bit easier: the GetFoo()
446// returns Foo cast to the Windows type for oruselves, while GetFooOf() takes
447// an argument which should be a pointer or reference to the object of the
448// corresponding class (this depends on the macro)
449// ---------------------------------------------------------------------------
450
451#define GetHwnd() ((HWND)GetHWND())
452#define GetHwndOf(win) ((HWND)((win)->GetHWND()))
453// old name
454#define GetWinHwnd GetHwndOf
455
456#define GetHdc() ((HDC)GetHDC())
457#define GetHdcOf(dc) ((HDC)(dc).GetHDC())
458
459#define GetHbitmap() ((HBITMAP)GetHBITMAP())
460#define GetHbitmapOf(bmp) ((HBITMAP)(bmp).GetHBITMAP())
461
462#define GetHicon() ((HICON)GetHICON())
463#define GetHiconOf(icon) ((HICON)(icon).GetHICON())
464
465#define GetHaccel() ((HACCEL)GetHACCEL())
466#define GetHaccelOf(table) ((HACCEL)((table).GetHACCEL()))
467
468#define GetHmenu() ((HMENU)GetHMenu())
469#define GetHmenuOf(menu) ((HMENU)menu->GetHMenu())
470
471#define GetHcursor() ((HCURSOR)GetHCURSOR())
472#define GetHcursorOf(cursor) ((HCURSOR)(cursor).GetHCURSOR())
473
474#define GetHfont() ((HFONT)GetHFONT())
475#define GetHfontOf(font) ((HFONT)(font).GetHFONT())
476
477#define GetHpalette() ((HPALETTE)GetHPALETTE())
478#define GetHpaletteOf(pal) ((HPALETTE)(pal).GetHPALETTE())
479
480#define GetHrgn() ((HRGN)GetHRGN())
481#define GetHrgnOf(rgn) ((HRGN)(rgn).GetHRGN())
482
483#endif // wxUSE_GUI
484
485// ---------------------------------------------------------------------------
486// global data
487// ---------------------------------------------------------------------------
488
489WXDLLEXPORT_DATA(extern wxChar*) wxBuffer;
490
491WXDLLEXPORT_DATA(extern HINSTANCE) wxhInstance;
492
493// ---------------------------------------------------------------------------
494// global functions
495// ---------------------------------------------------------------------------
496
497extern "C"
498{
499 WXDLLEXPORT HINSTANCE wxGetInstance();
500}
501
502WXDLLEXPORT void wxSetInstance(HINSTANCE hInst);
503
504#if wxUSE_GUI
505
506// cursor stuff
507extern HCURSOR wxGetCurrentBusyCursor(); // from msw/utils.cpp
508extern const wxCursor *wxGetGlobalCursor(); // from msw/cursor.cpp
509
510WXDLLEXPORT void wxGetCharSize(WXHWND wnd, int *x, int *y, const wxFont *the_font);
511WXDLLEXPORT void wxFillLogFont(LOGFONT *logFont, const wxFont *font);
512WXDLLEXPORT wxFont wxCreateFontFromLogFont(const LOGFONT *logFont);
513WXDLLEXPORT wxFontEncoding wxGetFontEncFromCharSet(int charset);
514
515WXDLLEXPORT void wxSliderEvent(WXHWND control, WXWORD wParam, WXWORD pos);
516WXDLLEXPORT void wxScrollBarEvent(WXHWND hbar, WXWORD wParam, WXWORD pos);
517
518// Find maximum size of window/rectangle
519WXDLLEXPORT extern void wxFindMaxSize(WXHWND hwnd, RECT *rect);
520
521// Safely get the window text (i.e. without using fixed size buffer)
522WXDLLEXPORT extern wxString wxGetWindowText(WXHWND hWnd);
523
524// get the window class name
525WXDLLEXPORT extern wxString wxGetWindowClass(WXHWND hWnd);
526
527// get the window id (should be unsigned, hence this is not wxWindowID which
528// is, for mainly historical reasons, signed)
529WXDLLEXPORT extern WXWORD wxGetWindowId(WXHWND hWnd);
530
531// check if hWnd's WNDPROC is wndProc. Return true if yes, false if they are
532// different
533WXDLLEXPORT extern bool wxCheckWindowWndProc(WXHWND hWnd, WXFARPROC wndProc);
534
535// Does this window style specify any border?
536inline bool wxStyleHasBorder(long style)
537{
538 return (style & (wxSIMPLE_BORDER | wxRAISED_BORDER |
539 wxSUNKEN_BORDER | wxDOUBLE_BORDER)) != 0;
540}
541
542// ----------------------------------------------------------------------------
543// functions mapping HWND to wxWindow
544// ----------------------------------------------------------------------------
545
546// this function simply checks whether the given hWnd corresponds to a wxWindow
547// and returns either that window if it does or NULL otherwise
548WXDLLEXPORT extern wxWindow* wxFindWinFromHandle(WXHWND hWnd);
549
550// find the window for HWND which is part of some wxWindow, i.e. unlike
551// wxFindWinFromHandle() above it will also work for "sub controls" of a
552// wxWindow.
553//
554// returns the wxWindow corresponding to the given HWND or NULL.
555WXDLLEXPORT extern wxWindow *wxGetWindowFromHWND(WXHWND hwnd);
556
557
558// Get the size of an icon
559WXDLLEXPORT extern wxSize wxGetHiconSize(HICON hicon);
560
561#endif // wxUSE_GUI
562
563#endif
564 // _WX_PRIVATE_H_