]>
Commit | Line | Data |
---|---|---|
2bda0e17 KB |
1 | ///////////////////////////////////////////////////////////////////////////// |
2 | // Name: private.h | |
a23fd0e1 VZ |
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". | |
2bda0e17 KB |
6 | // Author: Julian Smart |
7 | // Modified by: | |
8 | // Created: 01/02/97 | |
9 | // RCS-ID: $Id$ | |
bbcdf8bc | 10 | // Copyright: (c) Julian Smart |
c085e333 | 11 | // Licence: wxWindows licence |
2bda0e17 KB |
12 | ///////////////////////////////////////////////////////////////////////////// |
13 | ||
bbcdf8bc JS |
14 | #ifndef _WX_PRIVATE_H_ |
15 | #define _WX_PRIVATE_H_ | |
2bda0e17 | 16 | |
2bda0e17 KB |
17 | #include <windows.h> |
18 | ||
42e69d6b VZ |
19 | // undefine conflicting symbols which were defined in windows.h |
20 | #include "wx/msw/winundef.h" | |
21 | ||
a23fd0e1 | 22 | class WXDLLEXPORT wxFont; |
d427503c | 23 | class WXDLLEXPORT wxWindow; |
2bda0e17 | 24 | |
42e69d6b VZ |
25 | // --------------------------------------------------------------------------- |
26 | // private constants | |
27 | // --------------------------------------------------------------------------- | |
28 | ||
29 | // Conversion | |
30 | static const double METRIC_CONVERSION_CONSTANT = 0.0393700787; | |
31 | ||
32 | // Scaling factors for various unit conversions | |
33 | static const double mm2inches = (METRIC_CONVERSION_CONSTANT); | |
34 | static const double inches2mm = (1/METRIC_CONVERSION_CONSTANT); | |
35 | ||
36 | static const double mm2twips = (METRIC_CONVERSION_CONSTANT*1440); | |
37 | static const double twips2mm = (1/(METRIC_CONVERSION_CONSTANT*1440)); | |
38 | ||
39 | static const double mm2pt = (METRIC_CONVERSION_CONSTANT*72); | |
40 | static const double pt2mm = (1/(METRIC_CONVERSION_CONSTANT*72)); | |
41 | ||
a23fd0e1 VZ |
42 | // --------------------------------------------------------------------------- |
43 | // standard icons from the resources | |
44 | // --------------------------------------------------------------------------- | |
2bda0e17 KB |
45 | |
46 | WXDLLEXPORT_DATA(extern HICON) wxSTD_FRAME_ICON; | |
47 | WXDLLEXPORT_DATA(extern HICON) wxSTD_MDIPARENTFRAME_ICON; | |
48 | WXDLLEXPORT_DATA(extern HICON) wxSTD_MDICHILDFRAME_ICON; | |
49 | WXDLLEXPORT_DATA(extern HICON) wxDEFAULT_FRAME_ICON; | |
50 | WXDLLEXPORT_DATA(extern HICON) wxDEFAULT_MDIPARENTFRAME_ICON; | |
51 | WXDLLEXPORT_DATA(extern HICON) wxDEFAULT_MDICHILDFRAME_ICON; | |
52 | WXDLLEXPORT_DATA(extern HFONT) wxSTATUS_LINE_FONT; | |
53 | ||
a23fd0e1 VZ |
54 | // --------------------------------------------------------------------------- |
55 | // this defines a CASTWNDPROC macro which casts a pointer to the type of a | |
56 | // window proc | |
57 | // --------------------------------------------------------------------------- | |
c455ab93 | 58 | |
65fd5cb0 | 59 | #if defined(__GNUWIN32__) && !defined(wxUSE_NORLANDER_HEADERS) |
d6a1743b | 60 | # define CASTWNDPROC (long unsigned) |
2bda0e17 | 61 | #else |
d6a1743b | 62 | # ifdef __BORLANDC__ |
62448488 JS |
63 | |
64 | # ifdef __WIN32__ | |
d6a1743b | 65 | # define CASTWNDPROC |
62448488 JS |
66 | # else |
67 | typedef int (pascal * WndProcCast) (); | |
68 | # define CASTWNDPROC (WndProcCast) | |
69 | # endif | |
70 | ||
d6a1743b | 71 | # else |
65fd5cb0 | 72 | # if defined (__WIN32__) && defined(STRICT) |
81d66cf3 JS |
73 | typedef long (_stdcall * WndProcCast) (HWND, unsigned int, unsigned int, long); |
74 | # define CASTWNDPROC (WndProcCast) | |
1e6d9499 | 75 | # elif defined(__WIN16__) |
62448488 JS |
76 | # ifdef __BORLANDC__ |
77 | typedef int (pascal * WndProcCast) (); | |
78 | # define CASTWNDPROC (WndProcCast) | |
79 | # else | |
27a9bd48 PA |
80 | # if defined(__VISUALC__) && defined(STRICT) |
81 | # define CASTWNDPROC (WNDPROC) | |
82 | # else | |
83 | typedef int (PASCAL * WndProcCast) (); | |
84 | # define CASTWNDPROC (WndProcCast) | |
85 | # endif | |
62448488 | 86 | # endif |
81d66cf3 JS |
87 | # else |
88 | # define CASTWNDPROC | |
89 | # endif | |
d6a1743b | 90 | # endif |
2bda0e17 KB |
91 | #endif |
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 | |
e90c1d2a | 142 | #define STATIC_CLASS T("STATIC") |
2bda0e17 | 143 | #define STATIC_FLAGS (SS_LEFT|WS_CHILD|WS_VISIBLE) |
e90c1d2a | 144 | #define CHECK_CLASS T("BUTTON") |
2bda0e17 KB |
145 | #define CHECK_FLAGS (BS_AUTOCHECKBOX|WS_TABSTOP|WS_CHILD) |
146 | #define CHECK_IS_FAFA FALSE | |
e90c1d2a | 147 | #define RADIO_CLASS T("BUTTON") |
2bda0e17 KB |
148 | #define RADIO_FLAGS (BS_AUTORADIOBUTTON|WS_CHILD|WS_VISIBLE) |
149 | #define RADIO_SIZE 20 | |
150 | #define RADIO_IS_FAFA FALSE | |
151 | #define PURE_WINDOWS | |
e90c1d2a | 152 | #define GROUP_CLASS T("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 KB |
164 | #define MEANING_CHARACTER '0' |
165 | #define DEFAULT_ITEM_WIDTH 200 | |
166 | #define DEFAULT_ITEM_HEIGHT 80 | |
1c4a764c VZ |
167 | |
168 | // Scale font to get edit control height | |
169 | #define EDIT_HEIGHT_FROM_CHAR_HEIGHT(cy) (3*(cy)/2) | |
2bda0e17 KB |
170 | |
171 | // Generic subclass proc, for panel item moving/sizing and intercept | |
172 | // EDIT control VK_RETURN messages | |
173 | extern LONG APIENTRY _EXPORT | |
174 | wxSubclassedGenericControlProc(WXHWND hWnd, WXUINT message, WXWPARAM wParam, WXLPARAM lParam); | |
175 | ||
a23fd0e1 VZ |
176 | // --------------------------------------------------------------------------- |
177 | // constants which might miss from some compilers' headers | |
178 | // --------------------------------------------------------------------------- | |
179 | ||
180 | #if !defined(__WIN32__) && !defined(WS_EX_CLIENTEDGE) | |
181 | #define WS_EX_CLIENTEDGE 0 | |
182 | #endif | |
183 | ||
184 | #if defined(__WIN32__) && !defined(WS_EX_CLIENTEDGE) | |
185 | #define WS_EX_CLIENTEDGE 0x00000200L | |
186 | #endif | |
187 | ||
188 | #ifndef ENDSESSION_LOGOFF | |
189 | #define ENDSESSION_LOGOFF 0x80000000 | |
190 | #endif | |
191 | ||
192 | // --------------------------------------------------------------------------- | |
193 | // debug messages | |
194 | // --------------------------------------------------------------------------- | |
195 | #if defined(__WIN95__) && defined(__WXDEBUG__) && wxUSE_DBWIN32 | |
196 | ||
197 | #ifndef __TWIN32__ | |
198 | #ifdef OutputDebugString | |
199 | #undef OutputDebugString | |
200 | #endif | |
201 | ||
202 | #define OutputDebugString OutputDebugStringW95 | |
203 | #endif // __TWIN32__ | |
204 | ||
205 | extern void OutputDebugStringW95(const wxChar*, ...); | |
206 | #endif // USE_DBWIN32 | |
207 | ||
208 | // --------------------------------------------------------------------------- | |
42e69d6b | 209 | // macros to make casting between WXFOO and FOO a bit easier: the GetFoo() |
c50f1fb9 VZ |
210 | // returns Foo cast to the Windows type for oruselves, while GetFooOf() takes |
211 | // an argument which should be a pointer or reference to the object of the | |
212 | // corresponding class (this depends on the macro) | |
a23fd0e1 VZ |
213 | // --------------------------------------------------------------------------- |
214 | ||
215 | #define GetHwnd() ((HWND)GetHWND()) | |
c50f1fb9 VZ |
216 | #define GetHwndOf(win) ((HWND)((win)->GetHWND())) |
217 | // old name | |
218 | #define GetWinHwnd GetHwndOf | |
a23fd0e1 VZ |
219 | |
220 | #define GetHdc() ((HDC)GetHDC()) | |
c50f1fb9 | 221 | #define GetHdcOf(dc) ((HDC)(dc).GetHDC()) |
a23fd0e1 | 222 | |
42e69d6b | 223 | #define GetHicon() ((HICON)GetHICON()) |
c50f1fb9 | 224 | #define GetHiconOf(icon) ((HICON)(icon).GetHICON()) |
42e69d6b | 225 | |
a23fd0e1 | 226 | #define GetHaccel() ((HACCEL)GetHACCEL()) |
c50f1fb9 VZ |
227 | #define GetHaccelOf(table) ((HACCEL)((table).GetHACCEL())) |
228 | ||
229 | #define GetHmenu() ((HMENU)GetHMenu()) | |
230 | #define GetHmenuOf(menu) ((HMENU)menu->GetHMenu()) | |
a23fd0e1 VZ |
231 | |
232 | // --------------------------------------------------------------------------- | |
233 | // global data | |
234 | // --------------------------------------------------------------------------- | |
2bda0e17 | 235 | |
2bda0e17 KB |
236 | // The MakeProcInstance version of the function wxSubclassedGenericControlProc |
237 | WXDLLEXPORT_DATA(extern FARPROC) wxGenericControlSubClassProc; | |
621ae68a | 238 | WXDLLEXPORT_DATA(extern wxChar*) wxBuffer; |
2bda0e17 KB |
239 | WXDLLEXPORT_DATA(extern HINSTANCE) wxhInstance; |
240 | ||
a23fd0e1 VZ |
241 | // --------------------------------------------------------------------------- |
242 | // global functions | |
243 | // --------------------------------------------------------------------------- | |
244 | ||
18600546 GRG |
245 | extern "C" |
246 | { | |
a23fd0e1 | 247 | WXDLLEXPORT HINSTANCE wxGetInstance(); |
18600546 GRG |
248 | } |
249 | ||
a23fd0e1 VZ |
250 | WXDLLEXPORT void wxSetInstance(HINSTANCE hInst); |
251 | ||
252 | WXDLLEXPORT wxWindow* wxFindWinFromHandle(WXHWND hWnd); | |
253 | ||
254 | WXDLLEXPORT void wxGetCharSize(WXHWND wnd, int *x, int *y,wxFont *the_font); | |
255 | WXDLLEXPORT void wxFillLogFont(LOGFONT *logFont, wxFont *font); | |
256 | WXDLLEXPORT wxFont wxCreateFontFromLogFont(LOGFONT *logFont); | |
257 | ||
258 | WXDLLEXPORT void wxSliderEvent(WXHWND control, WXWORD wParam, WXWORD pos); | |
259 | WXDLLEXPORT void wxScrollBarEvent(WXHWND hbar, WXWORD wParam, WXWORD pos); | |
260 | ||
261 | // Find maximum size of window/rectangle | |
262 | WXDLLEXPORT extern void wxFindMaxSize(WXHWND hwnd, RECT *rect); | |
263 | ||
184b5d99 JS |
264 | WXDLLEXPORT wxWindow* wxFindControlFromHandle(WXHWND hWnd); |
265 | WXDLLEXPORT void wxAddControlHandle(WXHWND hWnd, wxWindow *item); | |
2bda0e17 | 266 | |
1c4a764c | 267 | // Safely get the window text (i.e. without using fixed size buffer) |
184b5d99 | 268 | WXDLLEXPORT extern wxString wxGetWindowText(WXHWND hWnd); |
1c4a764c | 269 | |
cc2b7472 VZ |
270 | // get the window class name |
271 | WXDLLEXPORT extern wxString wxGetWindowClass(WXHWND hWnd); | |
272 | ||
42e69d6b VZ |
273 | // get the window id (should be unsigned, hence this is not wxWindowID which |
274 | // is, for mainly historical reasons, signed) | |
275 | WXDLLEXPORT extern WXWORD wxGetWindowId(WXHWND hWnd); | |
cc2b7472 | 276 | |
c085e333 | 277 | // Does this window style specify any border? |
184b5d99 | 278 | inline bool wxStyleHasBorder(long style) |
c085e333 VZ |
279 | { |
280 | return (style & (wxSIMPLE_BORDER | wxRAISED_BORDER | | |
281 | wxSUNKEN_BORDER | wxDOUBLE_BORDER)) != 0; | |
282 | } | |
283 | ||
2bda0e17 | 284 | #endif |
bbcdf8bc | 285 | // _WX_PRIVATE_H_ |