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 <Quickdraw.h>
24 # include <Appearance.h>
26 # include <Controls.h>
27 # include <ControlDefinitions.h>
32 #if UNIVERSAL_INTERFACES_VERSION < 0x0340
33 #error "please update to Apple's lastest universal headers from http://developer.apple.com/sdk/"
36 #include "wx/window.h"
38 class wxMacPortStateHelper
40 DECLARE_NO_COPY_CLASS(wxMacPortStateHelper
)
43 wxMacPortStateHelper( GrafPtr newport
) ;
44 wxMacPortStateHelper() ;
45 ~wxMacPortStateHelper() ;
47 void Setup( GrafPtr newport
) ;
49 bool IsCleared() { return m_clip
== NULL
; }
50 GrafPtr
GetCurrentPort() { return m_currentPort
; }
53 GrafPtr m_currentPort
;
56 ThemeDrawingState m_drawingState
;
63 class WXDLLEXPORT wxMacPortSetter
65 DECLARE_NO_COPY_CLASS(wxMacPortSetter
)
68 wxMacPortSetter( const wxDC
* dc
) ;
71 wxMacPortStateHelper m_ph
;
75 class WXDLLEXPORT wxMacWindowClipper
77 DECLARE_NO_COPY_CLASS(wxMacWindowClipper
)
80 wxMacWindowClipper( const wxWindow
* win
) ;
81 ~wxMacWindowClipper() ;
83 RgnHandle m_formerClip
;
87 class wxMacDrawingHelper
89 DECLARE_NO_COPY_CLASS(wxMacDrawingHelper
)
92 wxMacDrawingHelper( wxWindowMac
* theWindow
, bool clientArea
= false ) ;
93 ~wxMacDrawingHelper() ;
94 bool Ok() { return m_ok
; }
95 void LocalToWindow( Rect
*rect
) { OffsetRect( rect
, m_origin
.h
, m_origin
.v
) ; }
96 void LocalToWindow( Point
*pt
) { AddPt( m_origin
, pt
) ; }
97 void LocalToWindow( RgnHandle rgn
) { OffsetRgn( rgn
, m_origin
.h
, m_origin
.v
) ; }
98 const Point
& GetOrigin() { return m_origin
; }
101 GrafPtr m_formerPort
;
102 GrafPtr m_currentPort
;
103 PenState m_savedPenState
;
108 bool wxMacConvertEventToRecord( EventRef event
, EventRecord
*rec
) ;
111 WXDLLEXPORT wxString
wxMacFSSpec2MacFilename( const FSSpec
*spec
) ;
112 WXDLLEXPORT
void wxMacFilename2FSSpec( const char *path
, FSSpec
*spec
) ;
114 // Mac file names are POSIX (Unix style) under Darwin, so these are not needed
115 WXDLLEXPORT wxString
wxMacFSSpec2UnixFilename( const FSSpec
*spec
) ;
116 WXDLLEXPORT
void wxUnixFilename2FSSpec( const char *path
, FSSpec
*spec
) ;
117 WXDLLEXPORT wxString
wxMac2UnixFilename( const char *s
) ;
118 WXDLLEXPORT wxString
wxUnix2MacFilename( const char *s
);
122 WXDLLEXPORT wxString
wxMacFindFolder(short vRefNum
,
124 Boolean createFolder
);
126 GWorldPtr
wxMacCreateGWorld( int width
, int height
, int depth
) ;
127 void wxMacDestroyGWorld( GWorldPtr gw
) ;
128 PicHandle
wxMacCreatePict( GWorldPtr gw
, GWorldPtr mask
= NULL
) ;
129 CIconHandle
wxMacCreateCIcon(GWorldPtr image
, GWorldPtr mask
, short dstDepth
, short iconSize
) ;
130 void wxMacSetColorTableEntry( CTabHandle newColors
, int index
, int red
, int green
, int blue
) ;
131 CTabHandle
wxMacCreateColorTable( int numColors
) ;
132 void wxMacCreateBitmapButton( ControlButtonContentInfo
*info
, const wxBitmap
& bitmap
, int forceType
= 0 ) ;
134 #define MAC_WXCOLORREF(a) (*((RGBColor*)&(a)))
135 #define MAC_WXHBITMAP(a) (GWorldPtr(a))
136 #define MAC_WXHMETAFILE(a) (PicHandle(a))
137 #define MAC_WXHICON(a) (CIconHandle(a))
138 #define MAC_WXHCURSOR(a) (CursHandle(a))
139 #define MAC_WXHRGN(a) (RgnHandle(a))
140 #define MAC_WXHWND(a) (WindowPtr(a))
141 #define MAC_WXRECPTR(a) ((Rect*)a)
142 #define MAC_WXPOINTPTR(a) ((Point*)a)
143 #define MAC_WXHMENU(a) ((MenuHandle)a)
145 //---------------------------------------------------------------------------
146 // wxMac string conversions
147 //---------------------------------------------------------------------------
149 void wxMacConvertToPC( const char *from
, char *to
, int len
) ;
150 void wxMacConvertFromPC( const char *from
, char *to
, int len
) ;
151 void wxMacConvertToPC( const char *from
, char *to
, int len
) ;
153 wxString
wxMacMakeMacStringFromPC( const char * p
) ;
155 wxString
wxMacMakePCStringFromMac( const char * p
) ;
158 // converts this c string into a wxString with optional mac 2 pc encoding
159 wxString
wxMacMakeStringFromMacString( const char* from
, bool mac2pcEncoding
) ;
161 // converts this c string into a wxString with pc 2 mac encoding if s_macDefaultEncodingIsPC
162 inline wxString
wxMacMakeStringFromMacString( const char* from
)
163 { return wxMacMakeStringFromMacString( from
, wxApp::s_macDefaultEncodingIsPC
) ; }
165 // converts this c string into a wxString with pc 2 mac encoding if s_macDefaultEncodingIsPC
166 inline wxString
wxMacMakeStringFromMacString( const wxString
& from
)
167 { return wxApp::s_macDefaultEncodingIsPC
?
168 wxMacMakeStringFromMacString( from
.c_str() , true ) : from
; }
174 // converts this string into a pascal with optional pc 2 mac encoding
175 void wxMacStringToPascal( const char * from
, StringPtr to
, bool pc2macEncoding
) ;
177 // converts this string into a pascal with pc 2 mac encoding if s_macDefaultEncodingIsPC
178 inline void wxMacStringToPascal( const char * from
, StringPtr to
)
179 { wxMacStringToPascal( from
, to
, wxApp::s_macDefaultEncodingIsPC
) ; }
181 // converts this string into a pascal with optional mac 2 pc encoding
182 wxString
wxMacMakeStringFromPascal( ConstStringPtr from
, bool mac2pcEncoding
) ;
184 // converts this pascal string into a wxString with pc 2 mac encoding if s_macDefaultEncodingIsPC
185 inline wxString
wxMacMakeStringFromPascal( ConstStringPtr from
)
186 { return wxMacMakeStringFromPascal( from
, wxApp::s_macDefaultEncodingIsPC
) ; }
189 // CFStringRefs (Carbon only)
193 // converts this string into a carbon foundation string with optional pc 2 mac encoding
194 CFStringRef
wxMacCreateCFString( const wxString
&str
, bool pc2macEncoding
) ;
196 // converts this string into a carbon foundation string with optional pc 2 mac encoding
197 inline CFStringRef
wxMacCreateCFString( const wxString
&str
)
198 { return wxMacCreateCFString( str
, wxApp::s_macDefaultEncodingIsPC
) ; }
200 #endif //TARGET_CARBON