]> git.saurik.com Git - wxWidgets.git/blame - include/wx/os2/private.h
WinCE build fix (we need default constructor).
[wxWidgets.git] / include / wx / os2 / private.h
CommitLineData
0e320a79 1/////////////////////////////////////////////////////////////////////////////
55034339 2// Name: wx/os2/private.h
45fcbf3b 3// Purpose: Private declarations: as this header is only included by
77ffb593 4// wxWidgets itself, it may contain identifiers which don't start
45fcbf3b
DW
5// with "wx".
6// Author: Julian Smart
0e320a79 7// Modified by:
45fcbf3b 8// Created: 01/02/97
0e320a79 9// RCS-ID: $Id$
45fcbf3b 10// Copyright: (c) Julian Smart
65571936 11// Licence: wxWindows licence
0e320a79
DW
12/////////////////////////////////////////////////////////////////////////////
13
93599ac0
SN
14#ifndef _WX_OS2_PRIVATE_H_
15#define _WX_OS2_PRIVATE_H_
0e320a79 16
b86737ee 17#define INCL_BASE
45fcbf3b 18#define INCL_PM
20947e08 19#define INCL_GPI
61243a51 20#define INCL_WINSYS
f6bcfd97 21#define INCL_SHLERRORS
7e1e6965 22#define INCL_DOS
cb7d7375
WS
23#define INCL_WINATOM
24#define INCL_WIN
45fcbf3b 25#include <os2.h>
7e1e6965 26
cb7d7375
WS
27#if defined(__WATCOMC__) && ( __WATCOMC__ < 1240 )
28 // missing in OpenWatcom 1.3 but added in 1.4
29 inline HATOMTBL APIENTRY WinQuerySystemAtomTable(VOID){return NULL;}
30 inline ULONG APIENTRY WinQueryAtomName(HATOMTBL,ATOM,PCSZ,ULONG){return 0;}
31 inline LONG APIENTRY GpiPointArc(HPS,PPOINTL){return GPI_ERROR;}
32 inline BOOL APIENTRY WinDrawPointer(HPS,LONG,LONG,HPOINTER,ULONG){return FALSE;}
33 inline HPOINTER APIENTRY WinCreatePointerIndirect(HWND,PPOINTERINFO){return NULLHANDLE;}
34 inline BOOL APIENTRY WinGetMaxPosition(HWND,PSWP){return FALSE;}
35 inline BOOL APIENTRY WinGetMinPosition(HWND,PSWP,PPOINTL){return FALSE;}
36#endif
37
55034339
WS
38#if defined(__WATCOMC__) && defined(__WXMOTIF__)
39 #include <os2def.h>
40 #define I_NEED_OS2_H
41 #include <X11/Xmd.h>
355b4d3d
WS
42
43 // include this header from here for many of the GUI related code
44 #if wxUSE_GUI
45 extern "C" {
46 #include <Xm/VendorSP.h>
47 }
55034339 48 #endif
355b4d3d
WS
49
50 // provide Unix-like pipe()
51 #include <types.h>
52 #include <tcpustd.h>
53 #include <sys/time.h>
54 // Use ::DosCreatePipe or ::DosCreateNPipe under OS/2
55 // for more see http://posix2.sourceforge.net/guide.html
56 inline int pipe( int WXUNUSED(filedes)[2] )
57 {
58 wxFAIL_MSG(wxT("Implement first"));
59 return -1;
55034339 60 }
55034339
WS
61#endif
62
93599ac0 63#if defined (__EMX__) && !defined(USE_OS2_TOOLKIT_HEADERS) && !defined(HAVE_SPBCDATA)
7e1e6965
WS
64
65 typedef struct _SPBCDATA {
66 ULONG cbSize; /* Size of control block. */
67 ULONG ulTextLimit; /* Entryfield text limit. */
68 LONG lLowerLimit; /* Spin lower limit (numeric only). */
69 LONG lUpperLimit; /* Spin upper limit (numeric only). */
70 ULONG idMasterSpb; /* ID of the servant's master spinbutton. */
71 PVOID pHWXCtlData; /* Handwriting control data structure flag. */
72 } SPBCDATA;
73
74 typedef SPBCDATA *PSPBCDATA;
75
74707ecf 76#endif
0e320a79 77
55034339 78#include "wx/dlimpexp.h"
f5b5c15c
DW
79#include "wx/fontenc.h"
80
45fcbf3b
DW
81class WXDLLEXPORT wxFont;
82class WXDLLEXPORT wxWindow;
74707ecf 83class WXDLLEXPORT wxString;
db16e5c3 84class WXDLLEXPORT wxBitmap;
45fcbf3b
DW
85
86// ---------------------------------------------------------------------------
87// private constants
88// ---------------------------------------------------------------------------
89
511ac294
DW
90//
91// Constant strings for control names and classes
92//
93
94//
95// Controls
96//
97WXDLLEXPORT_DATA(extern const wxChar*) wxButtonNameStr;
98WXDLLEXPORT_DATA(extern const wxChar*) wxCanvasNameStr;
99WXDLLEXPORT_DATA(extern const wxChar*) wxCheckBoxNameStr;
100WXDLLEXPORT_DATA(extern const wxChar*) wxChoiceNameStr;
101WXDLLEXPORT_DATA(extern const wxChar*) wxComboBoxNameStr;
102WXDLLEXPORT_DATA(extern const wxChar*) wxDialogNameStr;
103WXDLLEXPORT_DATA(extern const wxChar*) wxFrameNameStr;
104WXDLLEXPORT_DATA(extern const wxChar*) wxGaugeNameStr;
105WXDLLEXPORT_DATA(extern const wxChar*) wxStaticBoxNameStr;
106WXDLLEXPORT_DATA(extern const wxChar*) wxListBoxNameStr;
107WXDLLEXPORT_DATA(extern const wxChar*) wxStaticTextNameStr;
108WXDLLEXPORT_DATA(extern const wxChar*) wxStaticBitmapNameStr;
109WXDLLEXPORT_DATA(extern const wxChar*) wxMultiTextNameStr;
110WXDLLEXPORT_DATA(extern const wxChar*) wxPanelNameStr;
111WXDLLEXPORT_DATA(extern const wxChar*) wxRadioBoxNameStr;
112WXDLLEXPORT_DATA(extern const wxChar*) wxRadioButtonNameStr;
113WXDLLEXPORT_DATA(extern const wxChar*) wxBitmapRadioButtonNameStr;
114WXDLLEXPORT_DATA(extern const wxChar*) wxScrollBarNameStr;
115WXDLLEXPORT_DATA(extern const wxChar*) wxSliderNameStr;
116WXDLLEXPORT_DATA(extern const wxChar*) wxStaticNameStr;
117WXDLLEXPORT_DATA(extern const wxChar*) wxTextCtrlWindowNameStr;
118WXDLLEXPORT_DATA(extern const wxChar*) wxTextCtrlNameStr;
119WXDLLEXPORT_DATA(extern const wxChar*) wxVirtListBoxNameStr;
120WXDLLEXPORT_DATA(extern const wxChar*) wxButtonBarNameStr;
121WXDLLEXPORT_DATA(extern const wxChar*) wxEnhDialogNameStr;
122WXDLLEXPORT_DATA(extern const wxChar*) wxToolBarNameStr;
123WXDLLEXPORT_DATA(extern const wxChar*) wxStatusLineNameStr;
124WXDLLEXPORT_DATA(extern const wxChar*) wxGetTextFromUserPromptStr;
125WXDLLEXPORT_DATA(extern const wxChar*) wxMessageBoxCaptionStr;
126WXDLLEXPORT_DATA(extern const wxChar*) wxFileSelectorPromptStr;
127WXDLLEXPORT_DATA(extern const wxChar*) wxFileSelectorDefaultWildcardStr;
128WXDLLEXPORT_DATA(extern const wxChar*) wxInternalErrorStr;
129WXDLLEXPORT_DATA(extern const wxChar*) wxFatalErrorStr;
130WXDLLEXPORT_DATA(extern const wxChar*) wxTreeCtrlNameStr;
131WXDLLEXPORT_DATA(extern const wxChar*) wxDirDialogNameStr;
132WXDLLEXPORT_DATA(extern const wxChar*) wxDirDialogDefaultFolderStr;
133
134//
135// Class names
136//
137WXDLLEXPORT_DATA(extern const wxChar*) wxFrameClassName;
138WXDLLEXPORT_DATA(extern const wxChar*) wxFrameClassNameNoRedraw;
139WXDLLEXPORT_DATA(extern const wxChar*) wxMDIFrameClassName;
140WXDLLEXPORT_DATA(extern const wxChar*) wxMDIFrameClassNameNoRedraw;
141WXDLLEXPORT_DATA(extern const wxChar*) wxMDIChildFrameClassName;
142WXDLLEXPORT_DATA(extern const wxChar*) wxMDIChildFrameClassNameNoRedraw;
143WXDLLEXPORT_DATA(extern const wxChar*) wxPanelClassName;
144WXDLLEXPORT_DATA(extern const wxChar*) wxPanelClassNameNR;
145WXDLLEXPORT_DATA(extern const wxChar*) wxCanvasClassName;
146WXDLLEXPORT_DATA(extern const wxChar*) wxCanvasClassNameNR;
147
45fcbf3b
DW
148// ---------------------------------------------------------------------------
149// standard icons from the resources
150// ---------------------------------------------------------------------------
151
22e0b22b 152#ifdef __WXPM__
bd3b171d 153
45fcbf3b
DW
154WXDLLEXPORT_DATA(extern HICON) wxSTD_FRAME_ICON;
155WXDLLEXPORT_DATA(extern HICON) wxSTD_MDIPARENTFRAME_ICON;
156WXDLLEXPORT_DATA(extern HICON) wxSTD_MDICHILDFRAME_ICON;
157WXDLLEXPORT_DATA(extern HICON) wxDEFAULT_FRAME_ICON;
158WXDLLEXPORT_DATA(extern HICON) wxDEFAULT_MDIPARENTFRAME_ICON;
159WXDLLEXPORT_DATA(extern HICON) wxDEFAULT_MDICHILDFRAME_ICON;
160WXDLLEXPORT_DATA(extern HFONT) wxSTATUS_LINE_FONT;
161
22e0b22b 162#endif
bd3b171d 163
45fcbf3b
DW
164// ---------------------------------------------------------------------------
165// this defines a CASTWNDPROC macro which casts a pointer to the type of a
166// window proc for PM.
167// MPARAM is a void * but is really a 32-bit value
168// ---------------------------------------------------------------------------
169
170typedef MRESULT (APIENTRY * WndProcCast) (HWND, ULONG, MPARAM, MPARAM);
171#define CASTWNDPROC (WndProcCast)
172
45fcbf3b
DW
173/*
174 * Decide what window classes we're going to use
175 * for this combination of CTl3D/FAFA settings
0e320a79
DW
176 */
177
45fcbf3b
DW
178#define STATIC_CLASS _T("STATIC")
179#define STATIC_FLAGS (SS_TEXT|DT_LEFT|SS_LEFT|WS_VISIBLE)
86de7616 180#define CHECK_CLASS _T("BUTTON")
45fcbf3b 181#define CHECK_FLAGS (BS_AUTOCHECKBOX|WS_TABSTOP)
7e1e6965 182#define CHECK_IS_FAFA FALSE
86de7616 183#define RADIO_CLASS _T("BUTTON" )
45fcbf3b
DW
184#define RADIO_FLAGS (BS_AUTORADIOBUTTON|WS_VISIBLE)
185#define RADIO_SIZE 20
7e1e6965 186#define RADIO_IS_FAFA FALSE
45fcbf3b
DW
187#define PURE_WINDOWS
188/* PM has no group box button style
189#define GROUP_CLASS "BUTTON"
190#define GROUP_FLAGS (BS_GROUPBOX|WS_CHILD|WS_VISIBLE)
191*/
192
193/*
194#define BITCHECK_FLAGS (FB_BITMAP|FC_BUTTONDRAW|FC_DEFAULT|WS_VISIBLE)
195#define BITRADIO_FLAGS (FC_BUTTONDRAW|FB_BITMAP|FC_RADIO|WS_CHILD|WS_VISIBLE)
196*/
197
198// ---------------------------------------------------------------------------
199// misc macros
200// ---------------------------------------------------------------------------
201
202#define MEANING_CHARACTER '0'
203#define DEFAULT_ITEM_WIDTH 200
204#define DEFAULT_ITEM_HEIGHT 80
205
206// Scale font to get edit control height
207#define EDIT_HEIGHT_FROM_CHAR_HEIGHT(cy) (3*(cy)/2)
208
22e0b22b 209#ifdef __WXPM__
bd3b171d 210
45fcbf3b
DW
211// Generic subclass proc, for panel item moving/sizing and intercept
212// EDIT control VK_RETURN messages
86de7616 213extern LONG APIENTRY wxSubclassedGenericControlProc(WXHWND hWnd, WXDWORD message, WXWPARAM wParam, WXLPARAM lParam);
45fcbf3b 214
bd3b171d
SN
215#endif
216
45fcbf3b
DW
217// ---------------------------------------------------------------------------
218// constants which might miss from some compilers' headers
219// ---------------------------------------------------------------------------
220
221#if !defined(WS_EX_CLIENTEDGE)
008089f6 222 #define WS_EX_CLIENTEDGE 0x00000200L
45fcbf3b
DW
223#endif
224
225#ifndef ENDSESSION_LOGOFF
226 #define ENDSESSION_LOGOFF 0x80000000
227#endif
228
7e1e6965
WS
229#ifndef PMERR_INVALID_PARM
230 #define PMERR_INVALID_PARM 0x1303
231#endif
232
233#ifndef PMERR_INVALID_PARAMETERS
234 #define PMERR_INVALID_PARAMETERS 0x1208
235#endif
236
237#ifndef BOOKERR_INVALID_PARAMETERS
238 #define BOOKERR_INVALID_PARAMETERS -1
239#endif
240
241#ifndef DLGC_ENTRYFIELD
242 #define DLGC_ENTRYFIELD 0x0001
243#endif
244
245#ifndef DLGC_BUTTON
246 #define DLGC_BUTTON 0x0002
247#endif
248
249#ifndef DLGC_MLE
250 #define DLGC_MLE 0x0400
251#endif
252
253#ifndef DP_NORMAL
254 #define DP_NORMAL 0
255#endif
256
45fcbf3b
DW
257// ---------------------------------------------------------------------------
258// debug messages -- OS/2 has no native debug output system
259// ---------------------------------------------------------------------------
260
261// ---------------------------------------------------------------------------
262// macros to make casting between WXFOO and FOO a bit easier: the GetFoo()
263// returns Foo cast to the Windows type for oruselves, while GetFooOf() takes
264// an argument which should be a pointer or reference to the object of the
265// corresponding class (this depends on the macro)
266// ---------------------------------------------------------------------------
267
268#define GetHwnd() ((HWND)GetHWND())
269#define GetHwndOf(win) ((HWND)((win)->GetHWND()))
270// old name
271#define GetWinHwnd GetHwndOf
272
273#define GetHdc() ((HDC)GetHDC())
274#define GetHdcOf(dc) ((HDC)(dc).GetHDC())
275
8bb6da4a
DW
276#define GetHbitmap() ((HBITMAP)GetHBITMAP())
277#define GetHbitmapOf(bmp) ((HBITMAP)(bmp).GetHBITMAP())
278
45fcbf3b
DW
279#define GetHicon() ((HICON)GetHICON())
280#define GetHiconOf(icon) ((HICON)(icon).GetHICON())
281
282#define GetHaccel() ((HACCEL)GetHACCEL())
283#define GetHaccelOf(table) ((HACCEL)((table).GetHACCEL()))
284
285#define GetHmenu() ((HMENU)GetHMenu())
286#define GetHmenuOf(menu) ((HMENU)menu->GetHMenu())
287
8bb6da4a
DW
288#define GetHcursor() ((HCURSOR)GetHCURSOR())
289#define GetHcursorOf(cursor) ((HCURSOR)(cursor).GetHCURSOR())
290
291#define GetHfont() ((HFONT)GetHFONT())
292#define GetHfontOf(font) ((HFONT)(font).GetHFONT())
293
77ffb593 294// OS/2 convention of the mask is opposed to the wxWidgets one, so we need
8bb6da4a
DW
295// to invert the mask each time we pass one/get one to/from Windows
296extern HBITMAP wxInvertMask(HBITMAP hbmpMask, int w = 0, int h = 0);
297
45fcbf3b
DW
298// ---------------------------------------------------------------------------
299// global data
300// ---------------------------------------------------------------------------
301
fbf618df 302#ifdef __WXPM__
45fcbf3b 303// The MakeProcInstance version of the function wxSubclassedGenericControlProc
283ed244 304WXDLLEXPORT_DATA(extern int) wxGenericControlSubClassProc;
45fcbf3b
DW
305WXDLLEXPORT_DATA(extern wxChar*) wxBuffer;
306WXDLLEXPORT_DATA(extern HINSTANCE) wxhInstance;
55034339 307#endif
45fcbf3b
DW
308
309// ---------------------------------------------------------------------------
310// global functions
311// ---------------------------------------------------------------------------
312
fbf618df 313#ifdef __WXPM__
45fcbf3b
DW
314extern "C"
315{
316WXDLLEXPORT HINSTANCE wxGetInstance();
317}
318
bd3b171d 319WXDLLEXPORT void wxSetInstance(HINSTANCE hInst);
55034339 320#endif
bd3b171d 321
d4ca5c8c
SN
322#include "wx/thread.h"
323static inline MRESULT MySendMsg(HWND hwnd, ULONG ulMsgid,
324 MPARAM mpParam1, MPARAM mpParam2)
325{
326 MRESULT vRes;
327 vRes = ::WinSendMsg(hwnd, ulMsgid, mpParam1, mpParam2);
328#if wxUSE_THREADS
329 if (!wxThread::IsMain())
330 ::WinPostMsg(hwnd, ulMsgid, mpParam1, mpParam2);
331#endif
332 return vRes;
333}
334#define WinSendMsg MySendMsg
335
22e0b22b 336#ifdef __WXPM__
bd3b171d 337
008089f6
DW
338WXDLLEXPORT void wxDrawBorder( HPS hPS
339 ,RECTL& rRect
340 ,WXDWORD dwStyle
341 );
342
45fcbf3b
DW
343WXDLLEXPORT wxWindow* wxFindWinFromHandle(WXHWND hWnd);
344
e99762c0 345WXDLLEXPORT void wxGetCharSize(WXHWND wnd, int *x, int *y,wxFont *the_font);
1b75810c
DW
346
347WXDLLEXPORT void wxConvertVectorFontSize( FIXED fxPointSize
348 ,PFATTRS pFattrs
349 );
e99762c0
DW
350WXDLLEXPORT void wxFillLogFont( LOGFONT* pLogFont
351 ,PFACENAMEDESC pFaceName
f140b352 352 ,HPS* phPS
7d921159 353 ,bool* pbInternalPS
cc95f4f9
DW
354 ,long* pflId
355 ,wxString& sFaceName
356 ,wxFont* pFont
e99762c0 357 );
cc95f4f9
DW
358WXDLLEXPORT wxFontEncoding wxGetFontEncFromCharSet(int nCharSet);
359WXDLLEXPORT void wxOS2SelectMatchingFontByName( PFATTRS vFattrs
360 ,PFACENAMEDESC pFaceName
361 ,PFONTMETRICS pFM
362 ,int nNumFonts
363 ,const wxFont* pFont
364 );
e99762c0
DW
365WXDLLEXPORT wxFont wxCreateFontFromLogFont( LOGFONT* pLogFont
366 ,PFONTMETRICS pFM
367 ,PFACENAMEDESC pFace
368 );
edf1dfa1 369WXDLLEXPORT int wxGpiStrcmp(wxChar* s0, wxChar* s1);
45fcbf3b
DW
370
371WXDLLEXPORT void wxSliderEvent(WXHWND control, WXWORD wParam, WXWORD pos);
372WXDLLEXPORT void wxScrollBarEvent(WXHWND hbar, WXWORD wParam, WXWORD pos);
373
374// Find maximum size of window/rectangle
375WXDLLEXPORT extern void wxFindMaxSize(WXHWND hwnd, RECT *rect);
376
377WXDLLEXPORT wxWindow* wxFindControlFromHandle(WXHWND hWnd);
378WXDLLEXPORT void wxAddControlHandle(WXHWND hWnd, wxWindow *item);
379
380// Safely get the window text (i.e. without using fixed size buffer)
381WXDLLEXPORT extern wxString wxGetWindowText(WXHWND hWnd);
382
383// get the window class name
384WXDLLEXPORT extern wxString wxGetWindowClass(WXHWND hWnd);
385
386// get the window id (should be unsigned, hence this is not wxWindowID which
387// is, for mainly historical reasons, signed)
388WXDLLEXPORT extern WXWORD wxGetWindowId(WXHWND hWnd);
389
914589c2
DW
390// Convert a PM Error code to a string
391WXDLLEXPORT extern wxString wxPMErrorToStr(ERRORID vError);
392
45fcbf3b
DW
393// Does this window style specify any border?
394inline bool wxStyleHasBorder(long style)
395{
396 return (style & (wxSIMPLE_BORDER | wxRAISED_BORDER |
397 wxSUNKEN_BORDER | wxDOUBLE_BORDER)) != 0;
398}
399
3011bf2b
DW
400inline RECTL wxGetWindowRect(HWND hWnd)
401{
402 RECTL vRect;
403
404 ::WinQueryWindowRect(hWnd, &vRect);
405 return vRect;
406} // end of wxGetWindowRect
407
3c299c3a
DW
408WXDLLEXPORT extern void wxOS2SetFont( HWND hWnd
409 ,const wxFont& rFont
410 );
411
008089f6 412
db16e5c3
DW
413WXDLLEXPORT extern bool wxCheckWindowWndProc( WXHWND hWnd
414 ,WXFARPROC fnWndProc
3011bf2b 415 );
db16e5c3
DW
416WXDLLEXPORT extern wxBitmap wxDisableBitmap( const wxBitmap& rBmp
417 ,long lColor
418 );
419
bd3b171d
SN
420#include "wx/colour.h"
421
9794cae1 422WXDLLEXPORT extern COLORREF wxColourToRGB(const wxColour& rColor);
3011bf2b 423
22e0b22b 424#endif // __WXPM__
bd3b171d
SN
425
426#endif // _WX_PRIVATE_H_