1 /////////////////////////////////////////////////////////////////////////////
3 // Purpose: Private declarations: as this header is only included by
4 // wxWindows itself, it may contain identifiers which don't start
6 // Author: Stefan Csomor
10 // Copyright: (c) Stefan Csomor
11 // Licence: wxWindows licence
12 /////////////////////////////////////////////////////////////////////////////
14 #ifndef _WX_PRIVATE_H_
15 #define _WX_PRIVATE_H_
21 # include <Carbon/Carbon.h>
23 # include <Debugging.h>
24 # include <Quickdraw.h>
25 # include <Appearance.h>
27 # include <Controls.h>
28 # include <ControlDefinitions.h>
33 #if UNIVERSAL_INTERFACES_VERSION < 0x0340
34 #error "please update to Apple's lastest universal headers from http://developer.apple.com/sdk/"
39 #include "wx/window.h"
41 class wxMacPortStateHelper
43 DECLARE_NO_COPY_CLASS(wxMacPortStateHelper
)
46 wxMacPortStateHelper( GrafPtr newport
) ;
47 wxMacPortStateHelper() ;
48 ~wxMacPortStateHelper() ;
50 void Setup( GrafPtr newport
) ;
52 bool IsCleared() { return m_clip
== NULL
; }
53 GrafPtr
GetCurrentPort() { return m_currentPort
; }
56 GrafPtr m_currentPort
;
59 ThemeDrawingState m_drawingState
;
66 class WXDLLEXPORT wxMacPortSaver
68 DECLARE_NO_COPY_CLASS(wxMacPortSaver
)
71 wxMacPortSaver( GrafPtr port
)
73 ::GetPort( &m_port
) ;
84 class WXDLLEXPORT wxMacPortSetter
86 DECLARE_NO_COPY_CLASS(wxMacPortSetter
)
89 wxMacPortSetter( const wxDC
* dc
) ;
92 wxMacPortStateHelper m_ph
;
97 Clips to the visible region of a control within the current port
100 class WXDLLEXPORT wxMacWindowClipper
: public wxMacPortSaver
102 DECLARE_NO_COPY_CLASS(wxMacWindowClipper
)
105 wxMacWindowClipper( const wxWindow
* win
) ;
106 ~wxMacWindowClipper() ;
109 RgnHandle m_formerClip
;
110 RgnHandle m_newClip
;
113 class WXDLLEXPORT wxMacWindowStateSaver
: public wxMacWindowClipper
115 DECLARE_NO_COPY_CLASS(wxMacWindowStateSaver
)
118 wxMacWindowStateSaver( const wxWindow
* win
) ;
119 ~wxMacWindowStateSaver() ;
122 ThemeDrawingState m_themeDrawingState
;
126 class wxMacDrawingHelper
128 DECLARE_NO_COPY_CLASS(wxMacDrawingHelper)
131 wxMacDrawingHelper( wxWindowMac * theWindow , bool clientArea = false ) ;
132 ~wxMacDrawingHelper() ;
133 bool Ok() { return m_ok ; }
134 void LocalToWindow( Rect *rect) { OffsetRect( rect , m_origin.h , m_origin.v ) ; }
135 void LocalToWindow( Point *pt ) { AddPt( m_origin , pt ) ; }
136 void LocalToWindow( RgnHandle rgn ) { OffsetRgn( rgn , m_origin.h , m_origin.v ) ; }
137 const Point& GetOrigin() { return m_origin ; }
140 GrafPtr m_formerPort ;
141 GrafPtr m_currentPort ;
142 PenState m_savedPenState ;
148 bool wxMacConvertEventToRecord( EventRef event
, EventRecord
*rec
) ;
153 WXDLLEXPORT wxString
wxMacFSSpec2MacFilename( const FSSpec
*spec
) ;
154 WXDLLEXPORT
void wxMacFilename2FSSpec( const char *path
, FSSpec
*spec
) ;
155 WXDLLEXPORT
void wxMacFilename2FSSpec( const wxChar
*path
, FSSpec
*spec
) ;
157 // Mac file names are POSIX (Unix style) under Darwin, so these are not needed
158 WXDLLEXPORT wxString
wxMacFSSpec2UnixFilename( const FSSpec
*spec
) ;
159 WXDLLEXPORT
void wxUnixFilename2FSSpec( const char *path
, FSSpec
*spec
) ;
160 WXDLLEXPORT wxString
wxMac2UnixFilename( const char *s
) ;
161 WXDLLEXPORT wxString
wxUnix2MacFilename( const char *s
);
165 WXDLLEXPORT wxString
wxMacFindFolder(short vRefNum
,
167 Boolean createFolder
);
171 GWorldPtr
wxMacCreateGWorld( int width
, int height
, int depth
) ;
172 void wxMacDestroyGWorld( GWorldPtr gw
) ;
173 PicHandle
wxMacCreatePict( GWorldPtr gw
, GWorldPtr mask
= NULL
) ;
174 CIconHandle
wxMacCreateCIcon(GWorldPtr image
, GWorldPtr mask
, short dstDepth
, short iconSize
) ;
175 void wxMacSetColorTableEntry( CTabHandle newColors
, int index
, int red
, int green
, int blue
) ;
176 CTabHandle
wxMacCreateColorTable( int numColors
) ;
177 void wxMacCreateBitmapButton( ControlButtonContentInfo
*info
, const wxBitmap
& bitmap
, int forceType
= 0 ) ;
179 #define MAC_WXCOLORREF(a) (*((RGBColor*)&(a)))
180 #define MAC_WXHBITMAP(a) (GWorldPtr(a))
181 #define MAC_WXHMETAFILE(a) (PicHandle(a))
182 #define MAC_WXHICON(a) (CIconHandle(a))
183 #define MAC_WXHCURSOR(a) (CursHandle(a))
184 #define MAC_WXHRGN(a) (RgnHandle(a))
185 #define MAC_WXHWND(a) (WindowPtr(a))
186 #define MAC_WXRECPTR(a) ((Rect*)a)
187 #define MAC_WXPOINTPTR(a) ((Point*)a)
188 #define MAC_WXHMENU(a) ((MenuHandle)a)
190 struct wxOpaqueWindowRef
192 wxOpaqueWindowRef( WindowRef ref
) { m_data
= ref
; }
193 operator WindowRef() { return m_data
; }
198 wxWindow
*wxFindControlFromMacControl(ControlRef inControl
) ;
199 wxTopLevelWindowMac
* wxFindWinFromMacWindow( WindowRef inWindow
) ;
200 extern wxWindow
* g_MacLastWindow
;
201 pascal OSStatus
wxMacTopLevelMouseEventHandler( EventHandlerCallRef handler
, EventRef event
, void *data
) ;
202 Rect
wxMacGetBoundsForControl( wxWindow
* window
, const wxPoint
& pos
, const wxSize
&size
, bool adjustForOrigin
= true ) ;
204 template<typename T
> EventParamType
wxMacGetEventParamType() { wxFAIL_MSG( wxT("Unknown Param Type") ) ; return 0 ; }
205 template<> inline EventParamType wxMacGetEventParamType
<RgnHandle
>() { return typeQDRgnHandle
; }
206 template<> inline EventParamType wxMacGetEventParamType
<ControlRef
>() { return typeControlRef
; }
207 template<> inline EventParamType wxMacGetEventParamType
<WindowRef
>() { return typeWindowRef
; }
208 template<> inline EventParamType wxMacGetEventParamType
<MenuRef
>() { return typeMenuRef
; }
209 template<> inline EventParamType wxMacGetEventParamType
<EventRef
>() { return typeEventRef
; }
210 template<> inline EventParamType wxMacGetEventParamType
<Point
>() { return typeQDPoint
; }
211 template<> inline EventParamType wxMacGetEventParamType
<Rect
>() { return typeQDRectangle
; }
212 template<> inline EventParamType wxMacGetEventParamType
<Boolean
>() { return typeBoolean
; }
213 #if TARGET_API_MAC_OSX
214 template<> inline EventParamType wxMacGetEventParamType
<HIPoint
>() { return typeHIPoint
; }
215 template<> inline EventParamType wxMacGetEventParamType
<HISize
>() { return typeHISize
; }
216 template<> inline EventParamType wxMacGetEventParamType
<HIRect
>() { return typeHIRect
; }
217 template<> inline EventParamType wxMacGetEventParamType
<void*>() { return typeVoidPtr
; }
219 template<> inline EventParamType wxMacGetEventParamType
<Collection
>() { return typeCollection
; }
220 template<> inline EventParamType wxMacGetEventParamType
<CGContextRef
>() { return typeCGContextRef
; }
223 template<> EventParamType wxMacGetEventParamType<GrafPtr>() { return typeGrafPtr ; }
224 template<> EventParamType wxMacGetEventParamType<OSStatus>() { return typeOSStatus ; }
225 template<> EventParamType wxMacGetEventParamType<CFIndex>() { return typeCFIndex ; }
226 template<> EventParamType wxMacGetEventParamType<GWorldPtr>() { return typeGWorldPtr ; }
229 class wxMacCarbonEvent
233 wxMacCarbonEvent( EventRef event
)
238 OSStatus
GetParameter( EventParamName inName
, EventParamType inDesiredType
, UInt32 inBufferSize
, void * outData
) ;
240 template <typename T
> OSStatus
GetParameter( EventParamName inName
, EventParamType type
, T
*data
)
242 return GetParameter( inName
, type
, sizeof( T
) , data
) ;
244 template <typename T
> OSStatus
GetParameter( EventParamName inName
, T
*data
)
246 return GetParameter
<T
>( inName
, wxMacGetEventParamType
<T
>() , data
) ;
249 template <typename T
> T
GetParameter( EventParamName inName
)
252 verify_noerr( GetParameter
<T
>( inName
, &value
) ) ;
255 template <typename T
> T
GetParameter( EventParamName inName
, EventParamType inDesiredType
)
258 verify_noerr( GetParameter
<T
>( inName
, inDesiredType
, &value
) ) ;
263 OSStatus
SetParameter( EventParamName inName
, EventParamType inType
, UInt32 inSize
, void * inData
) ;
264 template <typename T
> OSStatus
SetParameter( EventParamName inName
, EventParamType inDesiredType
, T
*data
)
266 return SetParameter( inName
, inDesiredType
, sizeof( T
) , data
) ;
268 template <typename T
> OSStatus
SetParameter( EventParamName inName
, EventParamType inDesiredType
, T data
)
270 return SetParameter
<T
>( inName
, inDesiredType
, &data
) ;
272 template <typename T
> OSStatus
SetParameter( EventParamName inName
, T
*data
)
274 return SetParameter
<T
>( inName
, wxMacGetEventParamType
<T
>() , data
) ;
276 template <typename T
> OSStatus
SetParameter( EventParamName inName
, T data
)
278 return SetParameter
<T
>( inName
, wxMacGetEventParamType
<T
>() , &data
) ;
283 return ::GetEventKind( m_eventRef
) ;
287 return ::GetEventTime( m_eventRef
) ;
291 return EventTimeToTicks( GetTime() ) ;
294 EventRef m_eventRef
;
299 //---------------------------------------------------------------------------
300 // wxMac string conversions
301 //---------------------------------------------------------------------------
303 void wxMacSetupConverters() ;
304 void wxMacCleanupConverters() ;
306 void wxMacStringToPascal( const wxString
&from
, StringPtr to
) ;
307 wxString
wxMacMakeStringFromPascal( ConstStringPtr from
) ;
309 void wxMacConvertNewlines13To10( char * data
) ;
310 void wxMacConvertNewlines10To13( char * data
) ;
311 void wxMacConvertNewlines13To10( wxString
*data
) ;
312 void wxMacConvertNewlines10To13( wxString
*data
) ;
315 void wxMacConvertNewlines13To10( wxChar
* data
) ;
316 void wxMacConvertNewlines10To13( wxChar
* data
) ;
321 class wxMacCFStringHolder
324 wxMacCFStringHolder()
330 wxMacCFStringHolder(const wxString
&str
, wxFontEncoding encoding
)
334 Assign( str
, encoding
) ;
337 wxMacCFStringHolder(CFStringRef ref
, bool release
= true )
340 m_release
= release
;
343 ~wxMacCFStringHolder()
350 CFStringRef retval
= m_cfs
;
358 if ( m_release
&& m_cfs
)
363 void Assign( const wxString
&str
, wxFontEncoding encoding
) ;
365 operator CFStringRef () { return m_cfs
; }
366 wxString
AsString( wxFontEncoding encoding
= wxFONTENCODING_DEFAULT
) ;
378 wxUint32
wxMacGetSystemEncFromFontEnc(wxFontEncoding encoding
) ;
379 wxFontEncoding
wxMacGetFontEncFromSystemEnc(wxUint32 encoding
) ;
383 ControlRef
wxMacFindControlUnderMouse( Point location
, WindowRef window
, ControlPartCode
*outPart
) ;