]> git.saurik.com Git - wxWidgets.git/blame - include/wx/msw/private.h
Move unused values into 2.4 compatibility. Source cleaning.
[wxWidgets.git] / include / wx / msw / private.h
CommitLineData
2bda0e17
KB
1/////////////////////////////////////////////////////////////////////////////
2// Name: private.h
a23fd0e1 3// Purpose: Private declarations: as this header is only included by
77ffb593 4// wxWidgets itself, it may contain identifiers which don't start
a23fd0e1 5// with "wx".
2bda0e17
KB
6// Author: Julian Smart
7// Modified by:
8// Created: 01/02/97
9// RCS-ID: $Id$
bbcdf8bc 10// Copyright: (c) Julian Smart
65571936 11// Licence: wxWindows licence
2bda0e17
KB
12/////////////////////////////////////////////////////////////////////////////
13
bbcdf8bc
JS
14#ifndef _WX_PRIVATE_H_
15#define _WX_PRIVATE_H_
2bda0e17 16
9ed0d735 17#include "wx/msw/wrapwin.h"
2bda0e17 18
04ef50df 19#ifdef __WXMICROWIN__
b225f659
VZ
20 // Extra prototypes and symbols not defined by MicroWindows
21 #include "wx/msw/microwin.h"
04ef50df
JS
22#endif
23
3d5231db
VS
24// Include fixes for MSLU:
25#include "wx/msw/mslu.h"
26
3a922bb4
RL
27#include "wx/log.h"
28
a23fd0e1 29class WXDLLEXPORT wxFont;
d427503c 30class WXDLLEXPORT wxWindow;
2bda0e17 31
42e69d6b
VZ
32// ---------------------------------------------------------------------------
33// private constants
34// ---------------------------------------------------------------------------
35
36// Conversion
37static const double METRIC_CONVERSION_CONSTANT = 0.0393700787;
38
39// Scaling factors for various unit conversions
40static const double mm2inches = (METRIC_CONVERSION_CONSTANT);
41static const double inches2mm = (1/METRIC_CONVERSION_CONSTANT);
42
43static const double mm2twips = (METRIC_CONVERSION_CONSTANT*1440);
44static const double twips2mm = (1/(METRIC_CONVERSION_CONSTANT*1440));
45
46static const double mm2pt = (METRIC_CONVERSION_CONSTANT*72);
47static const double pt2mm = (1/(METRIC_CONVERSION_CONSTANT*72));
48
77d8d6cd
VZ
49// 260 was taken from windef.h
50#ifndef MAX_PATH
51 #define MAX_PATH 260
52#endif
53
a23fd0e1
VZ
54// ---------------------------------------------------------------------------
55// standard icons from the resources
56// ---------------------------------------------------------------------------
2bda0e17 57
b568d04f
VZ
58#if wxUSE_GUI
59
2bda0e17
KB
60WXDLLEXPORT_DATA(extern HICON) wxSTD_FRAME_ICON;
61WXDLLEXPORT_DATA(extern HICON) wxSTD_MDIPARENTFRAME_ICON;
62WXDLLEXPORT_DATA(extern HICON) wxSTD_MDICHILDFRAME_ICON;
63WXDLLEXPORT_DATA(extern HICON) wxDEFAULT_FRAME_ICON;
64WXDLLEXPORT_DATA(extern HICON) wxDEFAULT_MDIPARENTFRAME_ICON;
65WXDLLEXPORT_DATA(extern HICON) wxDEFAULT_MDICHILDFRAME_ICON;
66WXDLLEXPORT_DATA(extern HFONT) wxSTATUS_LINE_FONT;
67
b568d04f
VZ
68#endif // wxUSE_GUI
69
a23fd0e1 70// ---------------------------------------------------------------------------
11c7d5b6 71// define things missing from some compilers' headers
a23fd0e1 72// ---------------------------------------------------------------------------
c455ab93 73
7f0586ef 74#if defined(__WXWINCE__) || (defined(__GNUWIN32__) && !wxUSE_NORLANDER_HEADERS)
01dba85a 75#ifndef ZeroMemory
11c7d5b6 76 inline void ZeroMemory(void *buf, size_t len) { memset(buf, 0, len); }
01dba85a 77#endif
11c7d5b6
VZ
78#endif // old mingw32
79
80// this defines a CASTWNDPROC macro which casts a pointer to the type of a
81// window proc
7f0586ef 82#if defined(STRICT) || defined(__GNUC__)
ebb0781f 83 typedef WNDPROC WndProcCast;
c3b177ae 84#else
ebb0781f
VZ
85 typedef FARPROC WndProcCast;
86#endif
87
552a0ebd 88
ebb0781f 89#define CASTWNDPROC (WndProcCast)
2bda0e17 90
dd54f5d3 91
50165591 92
a23fd0e1
VZ
93// ---------------------------------------------------------------------------
94// some stuff for old Windows versions (FIXME: what does it do here??)
95// ---------------------------------------------------------------------------
96
c085e333 97#if !defined(APIENTRY) // NT defines APIENTRY, 3.x not
a23fd0e1 98 #define APIENTRY FAR PASCAL
2bda0e17 99#endif
c085e333 100
2bda0e17 101#ifdef __WIN32__
a23fd0e1 102 #define _EXPORT
2bda0e17 103#else
a23fd0e1
VZ
104 #define _EXPORT _export
105#endif
106
107#ifndef __WIN32__
108 typedef signed short int SHORT;
2bda0e17 109#endif
c085e333
VZ
110
111#if !defined(__WIN32__) // 3.x uses FARPROC for dialogs
27a9bd48 112#ifndef STRICT
a23fd0e1 113 #define DLGPROC FARPROC
2bda0e17 114#endif
27a9bd48 115#endif
2bda0e17 116
47d67540 117#if wxUSE_PENWIN
cc2b7472
VZ
118 WXDLLEXPORT void wxRegisterPenWin();
119 WXDLLEXPORT void wxCleanUpPenWin();
120 WXDLLEXPORT void wxEnablePenAppHooks (bool hook);
121#endif // wxUSE_PENWIN
2bda0e17 122
47d67540 123#if wxUSE_ITSY_BITSY
a23fd0e1
VZ
124 #define IBS_HORZCAPTION 0x4000L
125 #define IBS_VERTCAPTION 0x8000L
2bda0e17 126
a23fd0e1
VZ
127 UINT WINAPI ibGetCaptionSize( HWND hWnd ) ;
128 UINT WINAPI ibSetCaptionSize( HWND hWnd, UINT nSize ) ;
129 LRESULT WINAPI ibDefWindowProc( HWND hWnd, UINT uiMsg, WPARAM wParam, LPARAM lParam ) ;
130 VOID WINAPI ibAdjustWindowRect( HWND hWnd, LPRECT lprc ) ;
131#endif // wxUSE_ITSY_BITSY
2bda0e17 132
1f112209 133#if wxUSE_CTL3D
a23fd0e1
VZ
134 #include "wx/msw/ctl3d/ctl3d.h"
135#endif // wxUSE_CTL3D
2bda0e17
KB
136
137/*
138 * Decide what window classes we're going to use
139 * for this combination of CTl3D/FAFA settings
140 */
c085e333 141
223d09f6 142#define STATIC_CLASS wxT("STATIC")
2bda0e17 143#define STATIC_FLAGS (SS_LEFT|WS_CHILD|WS_VISIBLE)
223d09f6 144#define CHECK_CLASS wxT("BUTTON")
2bda0e17 145#define CHECK_FLAGS (BS_AUTOCHECKBOX|WS_TABSTOP|WS_CHILD)
078cf5cb 146#define CHECK_IS_FAFA FALSE
223d09f6 147#define RADIO_CLASS wxT("BUTTON")
2bda0e17
KB
148#define RADIO_FLAGS (BS_AUTORADIOBUTTON|WS_CHILD|WS_VISIBLE)
149#define RADIO_SIZE 20
078cf5cb 150#define RADIO_IS_FAFA FALSE
2bda0e17 151#define PURE_WINDOWS
223d09f6 152#define GROUP_CLASS wxT("BUTTON")
2bda0e17
KB
153#define GROUP_FLAGS (BS_GROUPBOX|WS_CHILD|WS_VISIBLE)
154
155/*
156#define BITCHECK_FLAGS (FB_BITMAP|FC_BUTTONDRAW|FC_DEFAULT|WS_VISIBLE)
157#define BITRADIO_FLAGS (FC_BUTTONDRAW|FB_BITMAP|FC_RADIO|WS_CHILD|WS_VISIBLE)
158*/
159
a23fd0e1
VZ
160// ---------------------------------------------------------------------------
161// misc macros
162// ---------------------------------------------------------------------------
163
2bda0e17 164#define MEANING_CHARACTER '0'
5d368213 165#define DEFAULT_ITEM_WIDTH 100
2bda0e17 166#define DEFAULT_ITEM_HEIGHT 80
1c4a764c
VZ
167
168// Scale font to get edit control height
f6bcfd97
BP
169//#define EDIT_HEIGHT_FROM_CHAR_HEIGHT(cy) (3*(cy)/2)
170#define EDIT_HEIGHT_FROM_CHAR_HEIGHT(cy) (cy+8)
2bda0e17
KB
171
172// Generic subclass proc, for panel item moving/sizing and intercept
173// EDIT control VK_RETURN messages
174extern LONG APIENTRY _EXPORT
175 wxSubclassedGenericControlProc(WXHWND hWnd, WXUINT message, WXWPARAM wParam, WXLPARAM lParam);
176
11c7d5b6
VZ
177// ---------------------------------------------------------------------------
178// useful macros and functions
179// ---------------------------------------------------------------------------
180
181// a wrapper macro for ZeroMemory()
04ef50df 182#if defined(__WIN32__) && !defined(__WXMICROWIN__)
11c7d5b6 183#define wxZeroMemory(obj) ::ZeroMemory(&obj, sizeof(obj))
0e528b99
JS
184#else
185#define wxZeroMemory(obj) memset((void*) & obj, 0, sizeof(obj))
186#endif
11c7d5b6 187
f6bcfd97
BP
188#if wxUSE_GUI
189
01dba85a 190#include <wx/gdicmn.h>
ed39ff57 191#include <wx/colour.h>
01dba85a 192
11c7d5b6
VZ
193// make conversion from wxColour and COLORREF a bit less painful
194inline COLORREF wxColourToRGB(const wxColour& c)
4ab861e5
VZ
195{
196 return RGB(c.Red(), c.Green(), c.Blue());
197}
198
199inline COLORREF wxColourToPalRGB(const wxColour& c)
11c7d5b6 200{
19193a2c 201 return PALETTERGB(c.Red(), c.Green(), c.Blue());
11c7d5b6
VZ
202}
203
d23c8ba2
VZ
204inline wxColour wxRGBToColour(COLORREF rgb)
205{
206 return wxColour(GetRValue(rgb), GetGValue(rgb), GetBValue(rgb));
207}
208
11c7d5b6
VZ
209inline void wxRGBToColour(wxColour& c, COLORREF rgb)
210{
211 c.Set(GetRValue(rgb), GetGValue(rgb), GetBValue(rgb));
212}
213
90c1530a
VZ
214// get the standard colour map for some standard colours - see comment in this
215// function to understand why is it needed and when should it be used
216//
217// it returns a wxCOLORMAP (can't use COLORMAP itself here as comctl32.dll
218// might be not included/available) array of size wxSTD_COLOUR_MAX
219//
220// NB: if you change these colours, update wxBITMAP_STD_COLOURS in the
221// resources as well: it must have the same number of pixels!
222enum wxSTD_COLOUR
223{
224 wxSTD_COL_BTNTEXT,
225 wxSTD_COL_BTNSHADOW,
226 wxSTD_COL_BTNFACE,
227 wxSTD_COL_BTNHIGHLIGHT,
57e075e9 228 wxSTD_COL_MAX
90c1530a
VZ
229};
230
231struct WXDLLEXPORT wxCOLORMAP
232{
233 COLORREF from, to;
234};
235
236// this function is implemented in src/msw/window.cpp
237extern wxCOLORMAP *wxGetStdColourMap();
238
9688700c
VZ
239// create a wxRect from Windows RECT
240inline wxRect wxRectFromRECT(const RECT& r)
241{
242 return wxRect(r.left, r.top, r.right - r.left, r.bottom - r.top);
243}
244
ed791986
VZ
245// copy Windows RECT to our wxRect
246inline void wxCopyRECTToRect(const RECT& r, wxRect& rect)
247{
9688700c 248 rect = wxRectFromRECT(r);
ed791986
VZ
249}
250
d9317fd4
VZ
251// translations between HIMETRIC units (which OLE likes) and pixels (which are
252// liked by all the others) - implemented in msw/utilsexc.cpp
253extern void HIMETRICToPixel(LONG *x, LONG *y);
254extern void PixelToHIMETRIC(LONG *x, LONG *y);
255
77ffb593 256// Windows convention of the mask is opposed to the wxWidgets one, so we need
4b7f2165
VZ
257// to invert the mask each time we pass one/get one to/from Windows
258extern HBITMAP wxInvertMask(HBITMAP hbmpMask, int w = 0, int h = 0);
259
211b54b1
VZ
260// Creates an icon or cursor depending from a bitmap
261//
262// The bitmap must be valid and it should have a mask. If it doesn't, a default
263// mask is created using light grey as the transparent colour.
264extern HICON wxBitmapToHICON(const wxBitmap& bmp);
265
266// Same requirments as above apply and the bitmap must also have the correct
267// size.
268extern
269HCURSOR wxBitmapToHCURSOR(const wxBitmap& bmp, int hotSpotX, int hotSpotY);
270
8614c467
VZ
271// get (x, y) from DWORD - notice that HI/LOWORD can *not* be used because they
272// will fail on system with multiple monitors where the coords may be negative
273//
274// these macros are standard now (Win98) but some older headers don't have them
275#ifndef GET_X_LPARAM
276 #define GET_X_LPARAM(lp) ((int)(short)LOWORD(lp))
277 #define GET_Y_LPARAM(lp) ((int)(short)HIWORD(lp))
278#endif // GET_X_LPARAM
279
a95e38c0 280// get the current state of SHIFT/CTRL keys
1f80a703 281inline bool wxIsShiftDown()
a95e38c0 282{
1fdf858b
JS
283// return (::GetKeyState(VK_SHIFT) & 0x100) != 0;
284 // Returns different negative values on WinME and WinNT,
285 // so simply test for negative value.
286 return ::GetKeyState(VK_SHIFT) < 0;
a95e38c0
VZ
287}
288
1f80a703 289inline bool wxIsCtrlDown()
a95e38c0 290{
1fdf858b
JS
291// return (::GetKeyState(VK_CONTROL) & 0x100) != 0;
292 // Returns different negative values on WinME and WinNT,
293 // so simply test for negative value.
294 return ::GetKeyState(VK_CONTROL) < 0;
a95e38c0
VZ
295}
296
82c9f85c
VZ
297// wrapper around GetWindowRect() and GetClientRect() APIs doing error checking
298// for Win32
299inline RECT wxGetWindowRect(HWND hwnd)
300{
301 RECT rect;
3a5bcc4d 302
82c9f85c
VZ
303 if ( !::GetWindowRect(hwnd, &rect) )
304 {
305 wxLogLastError(_T("GetWindowRect"));
306 }
82c9f85c
VZ
307
308 return rect;
309}
310
311inline RECT wxGetClientRect(HWND hwnd)
312{
313 RECT rect;
3a5bcc4d 314
82c9f85c
VZ
315 if ( !::GetClientRect(hwnd, &rect) )
316 {
317 wxLogLastError(_T("GetClientRect"));
318 }
82c9f85c
VZ
319
320 return rect;
321}
322
6d167489
VZ
323// ---------------------------------------------------------------------------
324// small helper classes
325// ---------------------------------------------------------------------------
326
bffa02ff
VZ
327// a template to make initializing Windows styructs less painful: it zeroes all
328// the struct fields and also sets cbSize member to the correct value (and so
329// can be only used with structures which have this member...)
330template <class T>
331struct WinStruct : public T
332{
333 WinStruct()
334 {
5eae641d 335 ::ZeroMemory(this, sizeof(T));
329ac7da
VZ
336
337 // explicit qualification is required here for this to be valid C++
a7d174bf 338 this->cbSize = sizeof(T);
bffa02ff
VZ
339 }
340};
341
342
6d167489
VZ
343// create an instance of this class and use it as the HDC for screen, will
344// automatically release the DC going out of scope
345class ScreenHDC
346{
347public:
091225b4
VZ
348 ScreenHDC() { m_hdc = ::GetDC(NULL); }
349 ~ScreenHDC() { ::ReleaseDC(NULL, m_hdc); }
350
351 operator HDC() const { return m_hdc; }
352
353private:
354 HDC m_hdc;
22f3361e
VZ
355
356 DECLARE_NO_COPY_CLASS(ScreenHDC)
091225b4
VZ
357};
358
2ff56383
VZ
359// the same as ScreenHDC but for window DCs
360class WindowHDC
361{
362public:
363 WindowHDC(HWND hwnd) { m_hdc = ::GetDC(m_hwnd = hwnd); }
364 ~WindowHDC() { ::ReleaseDC(m_hwnd, m_hdc); }
365
366 operator HDC() const { return m_hdc; }
367
368private:
369 HWND m_hwnd;
370 HDC m_hdc;
371
372 DECLARE_NO_COPY_CLASS(WindowHDC)
373};
374
697b08a8
VZ
375// the same as ScreenHDC but for memory DCs: creates the HDC compatible with
376// the given one (screen by default) in ctor and destroys it in dtor
091225b4
VZ
377class MemoryHDC
378{
379public:
9cf743aa 380 MemoryHDC(HDC hdc = 0) { m_hdc = ::CreateCompatibleDC(hdc); }
697b08a8 381 ~MemoryHDC() { ::DeleteDC(m_hdc); }
091225b4
VZ
382
383 operator HDC() const { return m_hdc; }
6d167489
VZ
384
385private:
386 HDC m_hdc;
22f3361e
VZ
387
388 DECLARE_NO_COPY_CLASS(MemoryHDC)
6d167489
VZ
389};
390
091225b4
VZ
391// a class which selects a GDI object into a DC in its ctor and deselects in
392// dtor
393class SelectInHDC
394{
395public:
396 SelectInHDC(HDC hdc, HGDIOBJ hgdiobj) : m_hdc(hdc)
397 { m_hgdiobj = ::SelectObject(hdc, hgdiobj); }
398
399 ~SelectInHDC() { ::SelectObject(m_hdc, m_hgdiobj); }
400
401 // return true if the object was successfully selected
402 operator bool() const { return m_hgdiobj != 0; }
403
404private:
405 HDC m_hdc;
406 HGDIOBJ m_hgdiobj;
22f3361e 407
51a2a728
VZ
408 DECLARE_NO_COPY_CLASS(SelectInHDC)
409};
410
978bb48f
VZ
411// a class for temporary bitmaps
412class CompatibleBitmap
413{
414public:
415 CompatibleBitmap(HDC hdc, int w, int h)
416 {
417 m_hbmp = ::CreateCompatibleBitmap(hdc, w, h);
418 }
419
420 ~CompatibleBitmap()
421 {
422 if ( m_hbmp )
423 ::DeleteObject(m_hbmp);
424 }
425
426 operator HBITMAP() const { return m_hbmp; }
427
428private:
429 HBITMAP m_hbmp;
430};
431
51a2a728
VZ
432// when working with global pointers (which is unfortunately still necessary
433// sometimes, e.g. for clipboard) it is important to unlock them exactly as
434// many times as we lock them which just asks for using a "smart lock" class
06d09389 435class GlobalPtr
51a2a728
VZ
436{
437public:
06d09389 438 GlobalPtr(HGLOBAL hGlobal) : m_hGlobal(hGlobal)
51a2a728 439 {
2aaf17c2 440 m_ptr = GlobalLock(hGlobal);
51a2a728
VZ
441 if ( !m_ptr )
442 {
443 wxLogLastError(_T("GlobalLock"));
444 }
445 }
446
06d09389 447 ~GlobalPtr()
51a2a728 448 {
2aaf17c2 449 if ( !GlobalUnlock(m_hGlobal) )
51a2a728
VZ
450 {
451#ifdef __WXDEBUG__
452 // this might happen simply because the block became unlocked
453 DWORD dwLastError = ::GetLastError();
454 if ( dwLastError != NO_ERROR )
455 {
456 wxLogApiError(_T("GlobalUnlock"), dwLastError);
457 }
458#endif // __WXDEBUG__
459 }
460 }
461
462 operator void *() const { return m_ptr; }
463
464private:
465 HGLOBAL m_hGlobal;
466 void *m_ptr;
467
06d09389 468 DECLARE_NO_COPY_CLASS(GlobalPtr)
091225b4
VZ
469};
470
a23fd0e1 471// ---------------------------------------------------------------------------
42e69d6b 472// macros to make casting between WXFOO and FOO a bit easier: the GetFoo()
c50f1fb9
VZ
473// returns Foo cast to the Windows type for oruselves, while GetFooOf() takes
474// an argument which should be a pointer or reference to the object of the
475// corresponding class (this depends on the macro)
a23fd0e1
VZ
476// ---------------------------------------------------------------------------
477
478#define GetHwnd() ((HWND)GetHWND())
c50f1fb9
VZ
479#define GetHwndOf(win) ((HWND)((win)->GetHWND()))
480// old name
481#define GetWinHwnd GetHwndOf
a23fd0e1
VZ
482
483#define GetHdc() ((HDC)GetHDC())
c50f1fb9 484#define GetHdcOf(dc) ((HDC)(dc).GetHDC())
a23fd0e1 485
11c7d5b6
VZ
486#define GetHbitmap() ((HBITMAP)GetHBITMAP())
487#define GetHbitmapOf(bmp) ((HBITMAP)(bmp).GetHBITMAP())
488
42e69d6b 489#define GetHicon() ((HICON)GetHICON())
c50f1fb9 490#define GetHiconOf(icon) ((HICON)(icon).GetHICON())
42e69d6b 491
a23fd0e1 492#define GetHaccel() ((HACCEL)GetHACCEL())
c50f1fb9
VZ
493#define GetHaccelOf(table) ((HACCEL)((table).GetHACCEL()))
494
ee50eab8
VZ
495#define GetHbrush() ((HPEN)GetResourceHandle())
496#define GetHbrushOf(brush) ((HPEN)(brush).GetResourceHandle())
497
c50f1fb9
VZ
498#define GetHmenu() ((HMENU)GetHMenu())
499#define GetHmenuOf(menu) ((HMENU)menu->GetHMenu())
a23fd0e1 500
bfbd6dc1
VZ
501#define GetHcursor() ((HCURSOR)GetHCURSOR())
502#define GetHcursorOf(cursor) ((HCURSOR)(cursor).GetHCURSOR())
503
f6bcfd97
BP
504#define GetHfont() ((HFONT)GetHFONT())
505#define GetHfontOf(font) ((HFONT)(font).GetHFONT())
506
1816a070 507#define GetHpalette() ((HPALETTE)GetHPALETTE())
b95edd47 508#define GetHpaletteOf(pal) ((HPALETTE)(pal).GetHPALETTE())
1816a070 509
75776373
VZ
510#define GetHpen() ((HPEN)GetResourceHandle())
511#define GetHpenOf(pen) ((HPEN)(pen).GetResourceHandle())
512
1e6feb95
VZ
513#define GetHrgn() ((HRGN)GetHRGN())
514#define GetHrgnOf(rgn) ((HRGN)(rgn).GetHRGN())
515
f6bcfd97
BP
516#endif // wxUSE_GUI
517
a23fd0e1
VZ
518// ---------------------------------------------------------------------------
519// global data
520// ---------------------------------------------------------------------------
2bda0e17 521
bddd7a8d 522WXDLLIMPEXP_DATA_BASE(extern HINSTANCE) wxhInstance;
2bda0e17 523
a23fd0e1
VZ
524// ---------------------------------------------------------------------------
525// global functions
526// ---------------------------------------------------------------------------
527
18600546
GRG
528extern "C"
529{
bb24c68f 530 WXDLLIMPEXP_BASE HINSTANCE wxGetInstance();
18600546
GRG
531}
532
bb24c68f 533WXDLLIMPEXP_BASE void wxSetInstance(HINSTANCE hInst);
a23fd0e1 534
77d8d6cd
VZ
535// return the full name of the program file
536inline wxString wxGetFullModuleName()
537{
538 wxString fullname;
539 if ( !::GetModuleFileName
540 (
541 (HMODULE)wxGetInstance(),
542 wxStringBuffer(fullname, MAX_PATH),
543 MAX_PATH
544 ) )
545 {
546 wxLogLastError(_T("GetModuleFileName"));
547 }
548
549 return fullname;
550}
551
b568d04f
VZ
552#if wxUSE_GUI
553
bfbd6dc1
VZ
554// cursor stuff
555extern HCURSOR wxGetCurrentBusyCursor(); // from msw/utils.cpp
556extern const wxCursor *wxGetGlobalCursor(); // from msw/cursor.cpp
557
7a5e53ab 558WXDLLEXPORT void wxGetCharSize(WXHWND wnd, int *x, int *y, const wxFont& the_font);
11c7d5b6
VZ
559WXDLLEXPORT void wxFillLogFont(LOGFONT *logFont, const wxFont *font);
560WXDLLEXPORT wxFont wxCreateFontFromLogFont(const LOGFONT *logFont);
f6bcfd97 561WXDLLEXPORT wxFontEncoding wxGetFontEncFromCharSet(int charset);
a23fd0e1
VZ
562
563WXDLLEXPORT void wxSliderEvent(WXHWND control, WXWORD wParam, WXWORD pos);
564WXDLLEXPORT void wxScrollBarEvent(WXHWND hbar, WXWORD wParam, WXWORD pos);
565
566// Find maximum size of window/rectangle
567WXDLLEXPORT extern void wxFindMaxSize(WXHWND hwnd, RECT *rect);
568
1c4a764c 569// Safely get the window text (i.e. without using fixed size buffer)
184b5d99 570WXDLLEXPORT extern wxString wxGetWindowText(WXHWND hWnd);
1c4a764c 571
cc2b7472
VZ
572// get the window class name
573WXDLLEXPORT extern wxString wxGetWindowClass(WXHWND hWnd);
574
42e69d6b
VZ
575// get the window id (should be unsigned, hence this is not wxWindowID which
576// is, for mainly historical reasons, signed)
577WXDLLEXPORT extern WXWORD wxGetWindowId(WXHWND hWnd);
cc2b7472 578
ae304744
VZ
579// check if hWnd's WNDPROC is wndProc. Return true if yes, false if they are
580// different
581WXDLLEXPORT extern bool wxCheckWindowWndProc(WXHWND hWnd, WXFARPROC wndProc);
eb5e4d9a 582
c085e333 583// Does this window style specify any border?
184b5d99 584inline bool wxStyleHasBorder(long style)
c085e333 585{
82c9f85c
VZ
586 return (style & (wxSIMPLE_BORDER | wxRAISED_BORDER |
587 wxSUNKEN_BORDER | wxDOUBLE_BORDER)) != 0;
c085e333
VZ
588}
589
ae304744
VZ
590// ----------------------------------------------------------------------------
591// functions mapping HWND to wxWindow
592// ----------------------------------------------------------------------------
593
594// this function simply checks whether the given hWnd corresponds to a wxWindow
595// and returns either that window if it does or NULL otherwise
596WXDLLEXPORT extern wxWindow* wxFindWinFromHandle(WXHWND hWnd);
597
598// find the window for HWND which is part of some wxWindow, i.e. unlike
599// wxFindWinFromHandle() above it will also work for "sub controls" of a
600// wxWindow.
8614c467 601//
ae304744
VZ
602// returns the wxWindow corresponding to the given HWND or NULL.
603WXDLLEXPORT extern wxWindow *wxGetWindowFromHWND(WXHWND hwnd);
8614c467 604
6bad4c32 605// Get the size of an icon
ae304744 606WXDLLEXPORT extern wxSize wxGetHiconSize(HICON hicon);
6bad4c32 607
086b3a5b
JS
608// Lines are drawn differently for WinCE and regular WIN32
609WXDLLEXPORT void wxDrawLine(HDC hdc, int x1, int y1, int x2, int y2);
610
5171ea0e
VZ
611// ----------------------------------------------------------------------------
612// 32/64 bit helpers
613// ----------------------------------------------------------------------------
614
615#ifdef __WIN64__
616
617inline void *wxGetWindowProc(HWND hwnd)
618{
619 return (void *)::GetWindowLongPtr(hwnd, GWLP_WNDPROC);
620}
621
622inline void *wxGetWindowUserData(HWND hwnd)
623{
624 return (void *)::GetWindowLongPtr(hwnd, GWLP_USERDATA);
625}
626
627inline WNDPROC wxSetWindowProc(HWND hwnd, WNDPROC func)
628{
629 return (WNDPROC)::SetWindowLongPtr(hwnd, GWLP_WNDPROC, (LONG_PTR)func);
630}
631
632inline void *wxSetWindowUserData(HWND hwnd, void *data)
633{
634 return (void *)::SetWindowLongPtr(hwnd, GWLP_USERDATA, (LONG_PTR)data);
635}
636
637#else // __WIN32__
638
b41f29c3
VZ
639#ifdef __VISUALC__
640 // strangely enough, VC++ 7.1 gives warnings about 32 -> 64 bit conversions
641 // in the functions below, even in spite of the explicit casts
642 #pragma warning(disable:4311)
643 #pragma warning(disable:4312)
644#endif
645
5171ea0e
VZ
646inline void *wxGetWindowProc(HWND hwnd)
647{
648 return (void *)::GetWindowLong(hwnd, GWL_WNDPROC);
649}
650
651inline void *wxGetWindowUserData(HWND hwnd)
652{
653 return (void *)::GetWindowLong(hwnd, GWL_USERDATA);
654}
655
656inline WNDPROC wxSetWindowProc(HWND hwnd, WNDPROC func)
657{
658 return (WNDPROC)::SetWindowLong(hwnd, GWL_WNDPROC, (LONG)func);
659}
660
661inline void *wxSetWindowUserData(HWND hwnd, void *data)
662{
663 return (void *)::SetWindowLong(hwnd, GWL_USERDATA, (LONG)data);
664}
665
b41f29c3
VZ
666#ifdef __VISUALC__
667 #pragma warning(default:4311)
668 #pragma warning(default:4312)
669#endif
670
5171ea0e
VZ
671#endif // __WIN64__/__WIN32__
672
b568d04f
VZ
673#endif // wxUSE_GUI
674
2bda0e17 675#endif
bbcdf8bc 676 // _WX_PRIVATE_H_