]>
Commit | Line | Data |
---|---|---|
8cf73271 | 1 | ///////////////////////////////////////////////////////////////////////////// |
fb5246be | 2 | // Name: wx/mac/carbon/private.h |
8cf73271 | 3 | // Purpose: Private declarations: as this header is only included by |
77ffb593 | 4 | // wxWidgets itself, it may contain identifiers which don't start |
8cf73271 SC |
5 | // with "wx". |
6 | // Author: Stefan Csomor | |
7 | // Modified by: | |
8 | // Created: 1998-01-01 | |
9 | // RCS-ID: $Id$ | |
10 | // Copyright: (c) Stefan Csomor | |
65571936 | 11 | // Licence: wxWindows licence |
8cf73271 SC |
12 | ///////////////////////////////////////////////////////////////////////////// |
13 | ||
14 | #ifndef _WX_PRIVATE_H_ | |
15 | #define _WX_PRIVATE_H_ | |
16 | ||
17 | #include "wx/defs.h" | |
8cf73271 SC |
18 | |
19 | #ifdef __DARWIN__ | |
20 | # include <Carbon/Carbon.h> | |
21 | #else | |
4f305456 | 22 | # include <Debugging.h> |
8cf73271 SC |
23 | # include <Quickdraw.h> |
24 | # include <Appearance.h> | |
25 | # include <Folders.h> | |
26 | # include <Controls.h> | |
27 | # include <ControlDefinitions.h> | |
28 | # include <LowMem.h> | |
29 | # include <Gestalt.h> | |
d9af087c | 30 | # include <FixMath.h> |
a6140a4c | 31 | # include <CoreServices.h> |
8cf73271 SC |
32 | #endif |
33 | ||
a6140a4c | 34 | #if UNIVERSAL_INTERFACES_VERSION < 0x0342 |
dd0d56f5 | 35 | #error "please update to Apple's latest universal headers from http://developer.apple.com/sdk/" |
8cf73271 SC |
36 | #endif |
37 | ||
c3a404b0 SC |
38 | #ifndef MAC_OS_X_VERSION_10_3 |
39 | #define MAC_OS_X_VERSION_10_3 1030 | |
40 | #endif | |
41 | ||
ddb08e02 SC |
42 | #ifndef MAC_OS_X_VERSION_10_4 |
43 | #define MAC_OS_X_VERSION_10_4 1040 | |
44 | #endif | |
45 | ||
5185263f DE |
46 | #ifdef __WXMAC_CARBON__ |
47 | #include "wx/mac/corefoundation/cfstring.h" | |
48 | #endif | |
49 | ||
3d639707 SC |
50 | #ifndef FixedToInt |
51 | // as macro in FixMath.h for 10.3 | |
52 | inline Fixed IntToFixed( int inInt ) | |
53 | { | |
54 | return (((SInt32) inInt) << 16); | |
55 | } | |
56 | ||
57 | inline int FixedToInt( Fixed inFixed ) | |
58 | { | |
59 | return (((SInt32) inFixed) >> 16); | |
60 | } | |
61 | #endif | |
62 | ||
8cf73271 SC |
63 | #if wxUSE_GUI |
64 | ||
dd0d56f5 | 65 | #include "wx/listbox.h" |
8cf73271 | 66 | |
fb5246be | 67 | class wxMacPortStateHelper |
8cf73271 SC |
68 | { |
69 | DECLARE_NO_COPY_CLASS(wxMacPortStateHelper) | |
fb5246be | 70 | |
8cf73271 | 71 | public: |
6cce68ea SC |
72 | wxMacPortStateHelper( GrafPtr newport); |
73 | wxMacPortStateHelper(); | |
74 | ~wxMacPortStateHelper(); | |
8cf73271 | 75 | |
6cce68ea SC |
76 | void Setup( GrafPtr newport ); |
77 | void Clear(); | |
78 | bool IsCleared() { return m_clip == NULL; } | |
79 | GrafPtr GetCurrentPort() { return m_currentPort; } | |
8cf73271 SC |
80 | |
81 | private: | |
6cce68ea SC |
82 | GrafPtr m_currentPort; |
83 | GrafPtr m_oldPort; | |
84 | RgnHandle m_clip; | |
85 | ThemeDrawingState m_drawingState; | |
86 | short m_textFont; | |
87 | short m_textSize; | |
88 | short m_textStyle; | |
89 | short m_textMode; | |
90 | }; | |
8cf73271 | 91 | |
4f305456 SC |
92 | class WXDLLEXPORT wxMacPortSaver |
93 | { | |
94 | DECLARE_NO_COPY_CLASS(wxMacPortSaver) | |
fb5246be | 95 | |
4f305456 | 96 | public: |
54ce9ebb JS |
97 | wxMacPortSaver( GrafPtr port ); |
98 | ~wxMacPortSaver(); | |
4f305456 | 99 | private : |
6cce68ea SC |
100 | GrafPtr m_port; |
101 | }; | |
4f305456 | 102 | |
8cf73271 SC |
103 | class WXDLLEXPORT wxMacPortSetter |
104 | { | |
105 | DECLARE_NO_COPY_CLASS(wxMacPortSetter) | |
fb5246be | 106 | |
8cf73271 | 107 | public: |
6cce68ea SC |
108 | wxMacPortSetter( const wxDC* dc ); |
109 | ~wxMacPortSetter(); | |
8cf73271 | 110 | private: |
6cce68ea SC |
111 | wxMacPortStateHelper m_ph; |
112 | const wxDC* m_dc; | |
113 | }; | |
8cf73271 | 114 | |
4f305456 SC |
115 | /* |
116 | Clips to the visible region of a control within the current port | |
117 | */ | |
fb5246be | 118 | |
4f305456 | 119 | class WXDLLEXPORT wxMacWindowClipper : public wxMacPortSaver |
8cf73271 SC |
120 | { |
121 | DECLARE_NO_COPY_CLASS(wxMacWindowClipper) | |
fb5246be | 122 | |
8cf73271 | 123 | public: |
6cce68ea SC |
124 | wxMacWindowClipper( const wxWindow* win ); |
125 | ~wxMacWindowClipper(); | |
8cf73271 | 126 | private: |
6cce68ea SC |
127 | GrafPtr m_newPort; |
128 | RgnHandle m_formerClip; | |
129 | RgnHandle m_newClip; | |
130 | }; | |
8cf73271 | 131 | |
01299d56 SC |
132 | class WXDLLEXPORT wxMacWindowStateSaver : public wxMacWindowClipper |
133 | { | |
134 | DECLARE_NO_COPY_CLASS(wxMacWindowStateSaver) | |
fb5246be | 135 | |
01299d56 | 136 | public: |
6cce68ea SC |
137 | wxMacWindowStateSaver( const wxWindow* win ); |
138 | ~wxMacWindowStateSaver(); | |
01299d56 | 139 | private: |
6cce68ea SC |
140 | GrafPtr m_newPort; |
141 | ThemeDrawingState m_themeDrawingState; | |
142 | }; | |
01299d56 | 143 | |
ddb08e02 | 144 | #if wxMAC_USE_CORE_GRAPHICS |
fb5246be | 145 | class WXDLLEXPORT wxMacCGContextStateSaver |
ddb08e02 SC |
146 | { |
147 | DECLARE_NO_COPY_CLASS(wxMacCGContextStateSaver) | |
fb5246be | 148 | |
ddb08e02 | 149 | public: |
fb5246be | 150 | wxMacCGContextStateSaver( CGContextRef cg ) |
ddb08e02 | 151 | { |
6cce68ea SC |
152 | m_cg = cg; |
153 | CGContextSaveGState( cg ); | |
ddb08e02 | 154 | } |
fb5246be | 155 | ~wxMacCGContextStateSaver() |
ddb08e02 | 156 | { |
6cce68ea | 157 | CGContextRestoreGState( m_cg ); |
ddb08e02 SC |
158 | } |
159 | private: | |
6cce68ea SC |
160 | CGContextRef m_cg; |
161 | }; | |
ddb08e02 SC |
162 | |
163 | #endif | |
4f305456 | 164 | /* |
8cf73271 SC |
165 | class wxMacDrawingHelper |
166 | { | |
167 | DECLARE_NO_COPY_CLASS(wxMacDrawingHelper) | |
fb5246be | 168 | |
8cf73271 | 169 | public: |
6cce68ea SC |
170 | wxMacDrawingHelper( wxWindowMac * theWindow , bool clientArea = false ); |
171 | ~wxMacDrawingHelper(); | |
172 | bool Ok() { return m_ok; } | |
173 | void LocalToWindow( Rect *rect) { OffsetRect( rect , m_origin.h , m_origin.v ); } | |
174 | void LocalToWindow( Point *pt ) { AddPt( m_origin , pt ); } | |
175 | void LocalToWindow( RgnHandle rgn ) { OffsetRgn( rgn , m_origin.h , m_origin.v ); } | |
176 | const Point& GetOrigin() { return m_origin; } | |
8cf73271 | 177 | private: |
6cce68ea SC |
178 | Point m_origin; |
179 | GrafPtr m_formerPort; | |
180 | GrafPtr m_currentPort; | |
181 | PenState m_savedPenState; | |
182 | bool m_ok; | |
183 | }; | |
4f305456 | 184 | */ |
8cf73271 SC |
185 | |
186 | // app.h | |
6cce68ea | 187 | bool wxMacConvertEventToRecord( EventRef event , EventRecord *rec); |
8cf73271 SC |
188 | |
189 | #endif // wxUSE_GUI | |
190 | ||
191 | // filefn.h | |
6cce68ea SC |
192 | WXDLLEXPORT wxString wxMacFSSpec2MacFilename( const FSSpec *spec ); |
193 | WXDLLEXPORT void wxMacFilename2FSSpec( const wxString &path , FSSpec *spec ); | |
8cf73271 SC |
194 | |
195 | // utils.h | |
17af82fb VZ |
196 | WXDLLEXPORT wxString wxMacFindFolderNoSeparator(short vRefNum, |
197 | OSType folderType, | |
198 | Boolean createFolder); | |
8cf73271 SC |
199 | WXDLLEXPORT wxString wxMacFindFolder(short vRefNum, |
200 | OSType folderType, | |
201 | Boolean createFolder); | |
202 | ||
6cce68ea SC |
203 | template<typename T> EventParamType wxMacGetEventParamType() { wxFAIL_MSG( wxT("Unknown Param Type") ); return 0; } |
204 | template<> inline EventParamType wxMacGetEventParamType<RgnHandle>() { return typeQDRgnHandle; } | |
205 | template<> inline EventParamType wxMacGetEventParamType<ControlRef>() { return typeControlRef; } | |
206 | template<> inline EventParamType wxMacGetEventParamType<WindowRef>() { return typeWindowRef; } | |
207 | template<> inline EventParamType wxMacGetEventParamType<MenuRef>() { return typeMenuRef; } | |
208 | template<> inline EventParamType wxMacGetEventParamType<EventRef>() { return typeEventRef; } | |
209 | template<> inline EventParamType wxMacGetEventParamType<Point>() { return typeQDPoint; } | |
210 | template<> inline EventParamType wxMacGetEventParamType<Rect>() { return typeQDRectangle; } | |
211 | template<> inline EventParamType wxMacGetEventParamType<Boolean>() { return typeBoolean; } | |
212 | template<> inline EventParamType wxMacGetEventParamType<SInt16>() { return typeSInt16; } | |
213 | template<> inline EventParamType wxMacGetEventParamType<SInt32>() { return typeSInt32; } | |
214 | template<> inline EventParamType wxMacGetEventParamType<UInt32>() { return typeUInt32; } | |
215 | template<> inline EventParamType wxMacGetEventParamType<RGBColor>() { return typeRGBColor; } | |
4f305456 | 216 | #if TARGET_API_MAC_OSX |
6cce68ea SC |
217 | template<> inline EventParamType wxMacGetEventParamType<HICommand>() { return typeHICommand; } |
218 | template<> inline EventParamType wxMacGetEventParamType<HIPoint>() { return typeHIPoint; } | |
219 | template<> inline EventParamType wxMacGetEventParamType<HISize>() { return typeHISize; } | |
220 | template<> inline EventParamType wxMacGetEventParamType<HIRect>() { return typeHIRect; } | |
221 | template<> inline EventParamType wxMacGetEventParamType<void*>() { return typeVoidPtr; } | |
4f305456 | 222 | #endif |
b1fd3bad | 223 | #if TARGET_API_MAC_OSX && ( MAC_OS_X_VERSION_MAX_ALLOWED > MAC_OS_X_VERSION_10_2 ) |
6cce68ea | 224 | template<> inline EventParamType wxMacGetEventParamType<CFDictionaryRef>() { return typeCFDictionaryRef; } |
b1fd3bad | 225 | #endif |
6cce68ea SC |
226 | template<> inline EventParamType wxMacGetEventParamType<Collection>() { return typeCollection; } |
227 | template<> inline EventParamType wxMacGetEventParamType<CGContextRef>() { return typeCGContextRef; } | |
4f305456 | 228 | /* |
885fb02f | 229 | These are ambiguous |
6cce68ea SC |
230 | template<> EventParamType wxMacGetEventParamType<GrafPtr>() { return typeGrafPtr; } |
231 | template<> EventParamType wxMacGetEventParamType<OSStatus>() { return typeOSStatus; } | |
232 | template<> EventParamType wxMacGetEventParamType<CFIndex>() { return typeCFIndex; } | |
233 | template<> EventParamType wxMacGetEventParamType<GWorldPtr>() { return typeGWorldPtr; } | |
885fb02f | 234 | */ |
4f305456 SC |
235 | |
236 | class wxMacCarbonEvent | |
237 | { | |
fb5246be | 238 | |
4f305456 | 239 | public : |
a4848597 SC |
240 | wxMacCarbonEvent() |
241 | { | |
6cce68ea SC |
242 | m_eventRef = 0; |
243 | m_release = false; | |
a4848597 | 244 | } |
fb5246be WS |
245 | |
246 | wxMacCarbonEvent( EventRef event , bool release = false ) | |
4f305456 | 247 | { |
6cce68ea SC |
248 | m_eventRef = event; |
249 | m_release = release; | |
6d4c54a7 | 250 | } |
fb5246be WS |
251 | |
252 | wxMacCarbonEvent(UInt32 inClassID,UInt32 inKind,EventTime inWhen = 0 /*now*/,EventAttributes inAttributes=kEventAttributeNone) | |
6d4c54a7 | 253 | { |
6cce68ea SC |
254 | m_eventRef = NULL; |
255 | verify_noerr( MacCreateEvent( NULL , inClassID, inKind,inWhen,inAttributes,&m_eventRef) ); | |
256 | m_release = true; | |
6d4c54a7 | 257 | } |
fb5246be | 258 | |
6d4c54a7 SC |
259 | ~wxMacCarbonEvent() |
260 | { | |
261 | if ( m_release ) | |
6cce68ea | 262 | ReleaseEvent( m_eventRef ); |
4f305456 | 263 | } |
fb5246be WS |
264 | |
265 | OSStatus Create(UInt32 inClassID,UInt32 inKind,EventTime inWhen = 0 /*now*/,EventAttributes inAttributes=kEventAttributeNone) | |
a4848597 | 266 | { |
6cce68ea | 267 | verify( (m_eventRef == NULL) || m_release ); |
a4848597 SC |
268 | if ( m_eventRef && m_release ) |
269 | { | |
6cce68ea SC |
270 | ReleaseEvent( m_eventRef ); |
271 | m_release = false; | |
272 | m_eventRef = NULL; | |
a4848597 | 273 | } |
6cce68ea | 274 | OSStatus err = MacCreateEvent( NULL , inClassID, inKind,inWhen,inAttributes,&m_eventRef); |
a4848597 | 275 | if ( err == noErr ) |
6cce68ea SC |
276 | m_release = true; |
277 | return err; | |
a4848597 | 278 | } |
fb5246be | 279 | |
6cce68ea | 280 | OSStatus GetParameter( EventParamName inName, EventParamType inDesiredType, UInt32 inBufferSize, void * outData); |
fb5246be | 281 | |
4f305456 SC |
282 | template <typename T> OSStatus GetParameter( EventParamName inName, EventParamType type , T *data ) |
283 | { | |
6cce68ea | 284 | return GetParameter( inName, type , sizeof( T ) , data ); |
4f305456 SC |
285 | } |
286 | template <typename T> OSStatus GetParameter( EventParamName inName, T *data ) | |
287 | { | |
6cce68ea | 288 | return GetParameter<T>( inName, wxMacGetEventParamType<T>() , data ); |
4f305456 | 289 | } |
fb5246be | 290 | |
4f305456 SC |
291 | template <typename T> T GetParameter( EventParamName inName ) |
292 | { | |
6cce68ea SC |
293 | T value; |
294 | verify_noerr( GetParameter<T>( inName, &value ) ); | |
295 | return value; | |
4f305456 SC |
296 | } |
297 | template <typename T> T GetParameter( EventParamName inName, EventParamType inDesiredType ) | |
298 | { | |
6cce68ea SC |
299 | T value; |
300 | verify_noerr( GetParameter<T>( inName, inDesiredType , &value ) ); | |
301 | return value; | |
4f305456 | 302 | } |
fb5246be | 303 | |
6cce68ea | 304 | OSStatus SetParameter( EventParamName inName, EventParamType inType, UInt32 inSize, const void * inData); |
6d4c54a7 | 305 | template <typename T> OSStatus SetParameter( EventParamName inName, EventParamType inDesiredType , const T *data ) |
4f305456 | 306 | { |
6cce68ea | 307 | return SetParameter( inName, inDesiredType , sizeof( T ) , data ); |
2aefa0ef | 308 | } |
6d4c54a7 | 309 | template <typename T> OSStatus SetParameter( EventParamName inName, EventParamType inDesiredType , const T& data ) |
2aefa0ef | 310 | { |
6cce68ea | 311 | return SetParameter<T>( inName, inDesiredType , &data ); |
4f305456 | 312 | } |
6d4c54a7 | 313 | template <typename T> OSStatus SetParameter( EventParamName inName, const T *data ) |
4f305456 | 314 | { |
6cce68ea | 315 | return SetParameter<T>( inName, wxMacGetEventParamType<T>() , data ); |
4f305456 | 316 | } |
6d4c54a7 | 317 | template <typename T> OSStatus SetParameter( EventParamName inName, const T& data ) |
2aefa0ef | 318 | { |
6cce68ea | 319 | return SetParameter<T>( inName, wxMacGetEventParamType<T>() , &data ); |
2aefa0ef | 320 | } |
86d8b744 SC |
321 | UInt32 GetClass() |
322 | { | |
6cce68ea | 323 | return ::GetEventClass( m_eventRef ); |
86d8b744 | 324 | } |
41b53169 | 325 | UInt32 GetKind() |
4f305456 | 326 | { |
6cce68ea | 327 | return ::GetEventKind( m_eventRef ); |
4f305456 SC |
328 | } |
329 | EventTime GetTime() | |
330 | { | |
6cce68ea | 331 | return ::GetEventTime( m_eventRef ); |
4f305456 SC |
332 | } |
333 | UInt32 GetTicks() | |
334 | { | |
6cce68ea | 335 | return EventTimeToTicks( GetTime() ); |
4f305456 | 336 | } |
2c01d335 | 337 | OSStatus SetCurrentTime( ) |
a4848597 | 338 | { |
6cce68ea | 339 | return ::SetEventTime( m_eventRef , GetCurrentEventTime() ); |
2c01d335 | 340 | } |
fb5246be | 341 | OSStatus SetTime( EventTime when ) |
2c01d335 | 342 | { |
6cce68ea | 343 | return ::SetEventTime( m_eventRef , when ); |
a4848597 SC |
344 | } |
345 | operator EventRef () { return m_eventRef; } | |
fb5246be | 346 | |
6cce68ea | 347 | bool IsValid() { return m_eventRef != 0; } |
4f305456 | 348 | protected : |
6cce68ea SC |
349 | EventRef m_eventRef; |
350 | bool m_release; | |
351 | }; | |
4f305456 | 352 | |
3feeb1e1 SC |
353 | // |
354 | // helper class for allocating and deallocating Universal Proc Ptrs | |
355 | // | |
356 | ||
357 | template <typename procType, typename uppType , uppType (*newUPP)(procType) , void (*disposeUPP)(uppType) > class wxMacUPP | |
358 | { | |
359 | public : | |
360 | wxMacUPP( procType proc ) | |
361 | { | |
6cce68ea SC |
362 | m_upp = NULL; |
363 | m_upp = (*newUPP)( NULL ); | |
3feeb1e1 SC |
364 | } |
365 | ~wxMacUPP() | |
366 | { | |
367 | if ( m_upp ) | |
6cce68ea | 368 | disposeUPP( m_upp ); |
3feeb1e1 | 369 | } |
6cce68ea | 370 | operator uppType() { return m_upp; } |
3feeb1e1 | 371 | private : |
6cce68ea SC |
372 | uppType m_upp; |
373 | }; | |
3feeb1e1 | 374 | |
6cce68ea | 375 | typedef wxMacUPP<NMProcPtr,NMUPP,NewNMUPP,DisposeNMUPP> wxMacNMUPP; |
3feeb1e1 | 376 | |
18b94824 SC |
377 | template <typename refType> class wxMacCFRefHolder |
378 | { | |
379 | public : | |
380 | wxMacCFRefHolder() | |
fb5246be | 381 | : m_ref(NULL) , m_release(false) |
18b94824 SC |
382 | { |
383 | } | |
fb5246be WS |
384 | |
385 | wxMacCFRefHolder( refType ref , bool release = true ) | |
18b94824 SC |
386 | : m_ref(ref) , m_release(release) |
387 | { | |
388 | } | |
fb5246be | 389 | |
18b94824 SC |
390 | ~wxMacCFRefHolder() |
391 | { | |
6cce68ea | 392 | Release(); |
18b94824 | 393 | } |
fb5246be | 394 | |
18b94824 SC |
395 | void Release() |
396 | { | |
397 | if ( m_release && m_ref != NULL ) | |
6cce68ea SC |
398 | CFRelease( m_ref ); |
399 | m_ref = NULL; | |
18b94824 | 400 | } |
fb5246be | 401 | |
18b94824 SC |
402 | refType Detach() |
403 | { | |
6cce68ea SC |
404 | refType val = m_ref; |
405 | m_release = false; | |
406 | m_ref = NULL; | |
407 | return val; | |
18b94824 | 408 | } |
fb5246be | 409 | |
18b94824 SC |
410 | void Set( refType ref , bool release = true ) |
411 | { | |
6cce68ea SC |
412 | Release(); |
413 | m_release = release; | |
414 | m_ref = ref; | |
18b94824 | 415 | } |
fb5246be | 416 | |
18b94824 | 417 | operator refType () const { return m_ref; } |
fb5246be | 418 | |
18b94824 | 419 | private : |
6cce68ea SC |
420 | refType m_ref; |
421 | bool m_release; | |
fb5246be | 422 | |
18b94824 | 423 | DECLARE_NO_COPY_CLASS( wxMacCFRefHolder ) |
6cce68ea | 424 | }; |
18b94824 | 425 | |
885fb02f | 426 | #if wxUSE_GUI |
6cce68ea | 427 | |
20b69855 | 428 | /* |
6cce68ea SC |
429 | GWorldPtr wxMacCreateGWorld( int width , int height , int depth ); |
430 | void wxMacDestroyGWorld( GWorldPtr gw ); | |
431 | PicHandle wxMacCreatePict( GWorldPtr gw , GWorldPtr mask = NULL ); | |
432 | CIconHandle wxMacCreateCIcon(GWorldPtr image , GWorldPtr mask , short dstDepth , short iconSize ); | |
433 | void wxMacSetColorTableEntry( CTabHandle newColors , int index , int red , int green , int blue ); | |
434 | CTabHandle wxMacCreateColorTable( int numColors ); | |
20b69855 | 435 | */ |
6cce68ea SC |
436 | void wxMacCreateBitmapButton( ControlButtonContentInfo*info , const wxBitmap& bitmap , int forceType = 0 ); |
437 | void wxMacReleaseBitmapButton( ControlButtonContentInfo*info ); | |
885fb02f SC |
438 | |
439 | #define MAC_WXCOLORREF(a) (*((RGBColor*)&(a))) | |
440 | #define MAC_WXHBITMAP(a) (GWorldPtr(a)) | |
441 | #define MAC_WXHMETAFILE(a) (PicHandle(a)) | |
20b69855 | 442 | #define MAC_WXHICON(a) (IconRef(a)) |
885fb02f SC |
443 | #define MAC_WXHCURSOR(a) (CursHandle(a)) |
444 | #define MAC_WXHRGN(a) (RgnHandle(a)) | |
445 | #define MAC_WXHWND(a) (WindowPtr(a)) | |
446 | #define MAC_WXRECPTR(a) ((Rect*)a) | |
447 | #define MAC_WXPOINTPTR(a) ((Point*)a) | |
448 | #define MAC_WXHMENU(a) ((MenuHandle)a) | |
449 | ||
450 | struct wxOpaqueWindowRef | |
451 | { | |
6cce68ea SC |
452 | wxOpaqueWindowRef( WindowRef ref ) { m_data = ref; } |
453 | operator WindowRef() { return m_data; } | |
885fb02f | 454 | private : |
6cce68ea SC |
455 | WindowRef m_data; |
456 | }; | |
885fb02f | 457 | |
6cce68ea SC |
458 | void wxMacRectToNative( const wxRect *wx , Rect *n ); |
459 | void wxMacNativeToRect( const Rect *n , wxRect* wx ); | |
460 | void wxMacPointToNative( const wxPoint* wx , Point *n ); | |
461 | void wxMacNativeToPoint( const Point *n , wxPoint* wx ); | |
285b5ce0 | 462 | |
6cce68ea SC |
463 | wxWindow * wxFindControlFromMacControl(ControlRef inControl ); |
464 | wxTopLevelWindowMac* wxFindWinFromMacWindow( WindowRef inWindow ); | |
465 | wxMenu* wxFindMenuFromMacMenu(MenuRef inMenuRef); | |
885fb02f | 466 | |
6cce68ea SC |
467 | int wxMacCommandToId( UInt32 macCommandId ); |
468 | UInt32 wxIdToMacCommand( int wxId ); | |
469 | wxMenu* wxFindMenuFromMacCommand( const HICommand &macCommandId , wxMenuItem* &item ); | |
1628261e | 470 | |
6cce68ea SC |
471 | extern wxWindow* g_MacLastWindow; |
472 | pascal OSStatus wxMacTopLevelMouseEventHandler( EventHandlerCallRef handler , EventRef event , void *data ); | |
473 | Rect wxMacGetBoundsForControl( wxWindow* window , const wxPoint& pos , const wxSize &size , bool adjustForOrigin = true ); | |
885fb02f | 474 | |
6cce68ea | 475 | ControlActionUPP GetwxMacLiveScrollbarActionProc(); |
285b5ce0 | 476 | |
86d8b744 SC |
477 | class wxMacControl |
478 | { | |
479 | public : | |
6cce68ea SC |
480 | wxMacControl( wxWindow* peer , bool isRootControl = false ); |
481 | wxMacControl( wxWindow* peer , ControlRef control ); | |
482 | wxMacControl( wxWindow* peer , WXWidget control ); | |
483 | virtual ~wxMacControl(); | |
484 | ||
485 | void Init(); | |
fb5246be | 486 | |
6cce68ea | 487 | virtual void Dispose(); |
fb5246be | 488 | |
6cce68ea | 489 | bool Ok() const { return GetControlRef() != NULL; } |
5ca0d812 | 490 | |
6cce68ea SC |
491 | void SetReferenceInNativeControl(); |
492 | static wxMacControl* GetReferenceFromNativeControl(ControlRef control); | |
5ca0d812 | 493 | |
fb5246be | 494 | virtual ControlRef * GetControlRefAddr() { return &m_controlRef; } |
6cce68ea | 495 | virtual ControlRef GetControlRef() const { return m_controlRef; } |
fb5246be | 496 | |
6cce68ea | 497 | virtual void SetReference( SInt32 data ); |
5ca0d812 | 498 | /* |
6cce68ea | 499 | void operator= (ControlRef c) { m_controlRef = c; } |
fb5246be WS |
500 | operator ControlRef () { return m_controlRef; } |
501 | operator ControlRef * () { return &m_controlRef; } | |
5ca0d812 | 502 | */ |
2837271a SC |
503 | // accessing data and values |
504 | ||
6cce68ea SC |
505 | virtual OSStatus SetData( ControlPartCode inPartCode , ResType inTag , Size inSize , const void * inData ); |
506 | virtual OSStatus GetData( ControlPartCode inPartCode , ResType inTag , Size inBufferSize , void * inOutBuffer , Size * outActualSize ) const; | |
507 | virtual OSStatus GetDataSize( ControlPartCode inPartCode , ResType inTag , Size * outActualSize ) const; | |
508 | virtual OSStatus SendEvent( EventRef ref , OptionBits inOptions = 0 ); | |
509 | virtual OSStatus SendHICommand( HICommand &command , OptionBits inOptions = 0 ); | |
2837271a | 510 | |
6cce68ea | 511 | virtual OSStatus SendHICommand( UInt32 commandID , OptionBits inOptions = 0 ); |
2837271a | 512 | |
6cce68ea SC |
513 | virtual SInt32 GetValue() const; |
514 | virtual SInt32 GetMaximum() const; | |
515 | virtual SInt32 GetMinimum() const; | |
fb5246be | 516 | |
6cce68ea SC |
517 | virtual void SetValue( SInt32 v ); |
518 | virtual void SetMinimum( SInt32 v ); | |
519 | virtual void SetMaximum( SInt32 v ); | |
2837271a | 520 | |
6cce68ea SC |
521 | virtual void SetValueAndRange( SInt32 value , SInt32 minimum , SInt32 maximum ); |
522 | virtual void SetRange( SInt32 minimum , SInt32 maximum ); | |
fb5246be | 523 | |
6cce68ea SC |
524 | virtual OSStatus SetFocus( ControlFocusPart focusPart ); |
525 | virtual bool HasFocus() const; | |
526 | virtual bool NeedsFocusRect() const; | |
527 | virtual void SetNeedsFocusRect( bool needs ); | |
fb5246be | 528 | |
2837271a SC |
529 | // templated helpers |
530 | ||
0fc3bc3b | 531 | Size GetDataSize( ControlPartCode inPartCode , ResType inTag ) const |
86d8b744 | 532 | { |
6cce68ea SC |
533 | Size sz; |
534 | verify_noerr( GetDataSize( inPartCode , inTag , &sz ) ); | |
535 | return sz; | |
86d8b744 | 536 | } |
6d4c54a7 | 537 | template <typename T> OSStatus SetData( ControlPartCode inPartCode , ResType inTag , const T *data ) |
86d8b744 | 538 | { |
6cce68ea | 539 | return SetData( inPartCode , inTag , sizeof( T ) , data ); |
86d8b744 | 540 | } |
6d4c54a7 | 541 | template <typename T> OSStatus SetData( ControlPartCode inPartCode , ResType inTag , const T& data ) |
86d8b744 | 542 | { |
6cce68ea | 543 | return SetData( inPartCode , inTag , sizeof( T ) , &data ); |
86d8b744 | 544 | } |
fbb7ee81 SC |
545 | template <typename T> OSStatus SetData( ResType inTag , const T *data ) |
546 | { | |
6cce68ea | 547 | return SetData( kControlEntireControl , inTag , sizeof( T ) , data ); |
fbb7ee81 SC |
548 | } |
549 | template <typename T> OSStatus SetData( ResType inTag , const T& data ) | |
550 | { | |
6cce68ea | 551 | return SetData( kControlEntireControl , inTag , sizeof( T ) , &data ); |
fbb7ee81 | 552 | } |
0fc3bc3b | 553 | template <typename T> OSStatus GetData( ControlPartCode inPartCode , ResType inTag , T *data ) const |
86d8b744 | 554 | { |
6cce68ea SC |
555 | Size dummy; |
556 | return GetData( inPartCode , inTag , sizeof( T ) , data , &dummy ); | |
86d8b744 | 557 | } |
0fc3bc3b | 558 | template <typename T> T GetData( ControlPartCode inPartCode , ResType inTag ) const |
86d8b744 | 559 | { |
6cce68ea SC |
560 | T value; |
561 | OSStatus err = GetData<T>( inPartCode , inTag , &value ); | |
725566ca VZ |
562 | |
563 | wxASSERT_MSG( err == noErr, | |
564 | wxString::Format(wxT("GetData Failed for Part [%i] and Tag [%i]"), | |
565 | inPartCode, (int)inTag) ); | |
6cce68ea | 566 | return value; |
86d8b744 | 567 | } |
fbb7ee81 SC |
568 | template <typename T> OSStatus GetData( ResType inTag , T *data ) const |
569 | { | |
6cce68ea SC |
570 | Size dummy; |
571 | return GetData( kControlEntireControl , inTag , sizeof( T ) , data , &dummy ); | |
fbb7ee81 SC |
572 | } |
573 | template <typename T> T GetData( ResType inTag ) const | |
574 | { | |
6cce68ea | 575 | return GetData<T>( kControlEntireControl , inTag ); |
fbb7ee81 | 576 | } |
725566ca | 577 | |
6d4c54a7 | 578 | // Flash the control for the specified amount of time |
6cce68ea | 579 | virtual void Flash( ControlPartCode part , UInt32 ticks = 8 ); |
89a66f11 | 580 | |
6cce68ea SC |
581 | virtual void VisibilityChanged( bool shown ); |
582 | virtual void SuperChangedPosition(); | |
89a66f11 SC |
583 | |
584 | ||
6cce68ea SC |
585 | virtual void SetFont( const wxFont & font , const wxColour& foreground , long windowStyle ); |
586 | virtual void SetBackground( const wxBrush &brush ); | |
587 | virtual ControlPartCode HandleKey( SInt16 keyCode, SInt16 charCode, EventModifiers modifiers ); | |
588 | void SetActionProc( ControlActionUPP actionProc ); | |
589 | void SetViewSize( SInt32 viewSize ); | |
590 | SInt32 GetViewSize() const; | |
fb5246be | 591 | |
6cce68ea SC |
592 | virtual bool IsVisible() const; |
593 | virtual void SetVisibility( bool visible , bool redraw ); | |
594 | virtual bool IsEnabled() const; | |
595 | virtual bool IsActive() const; | |
596 | virtual void Enable( bool enable ); | |
fb5246be | 597 | |
5ca0d812 | 598 | // invalidates this control and all children |
6cce68ea SC |
599 | virtual void InvalidateWithChildren(); |
600 | virtual void SetDrawingEnabled( bool enable ); | |
b905d6cc | 601 | #ifdef __WXMAC_OSX__ |
6cce68ea | 602 | virtual bool GetNeedsDisplay() const; |
b905d6cc | 603 | #endif |
285b5ce0 | 604 | // where is in native window relative coordinates |
6cce68ea | 605 | virtual void SetNeedsDisplay( RgnHandle where ); |
285b5ce0 | 606 | // where is in native window relative coordinates |
6cce68ea | 607 | virtual void SetNeedsDisplay( Rect* where = NULL ); |
285b5ce0 | 608 | |
fb5246be | 609 | // if rect = NULL, entire view |
6cce68ea | 610 | virtual void ScrollRect( wxRect *rect , int dx , int dy ); |
5ca0d812 | 611 | |
285b5ce0 | 612 | // in native parent window relative coordinates |
6cce68ea | 613 | virtual void GetRect( Rect *r ); |
285b5ce0 SC |
614 | |
615 | // in native parent window relative coordinates | |
6cce68ea | 616 | virtual void SetRect( Rect *r ); |
285b5ce0 | 617 | |
6cce68ea SC |
618 | virtual void GetRectInWindowCoords( Rect *r ); |
619 | virtual void GetBestRect( Rect *r ); | |
620 | virtual void SetLabel( const wxString &title ); | |
5ca0d812 | 621 | // converts from Toplevel-Content relative to local |
6cce68ea | 622 | static void Convert( wxPoint *pt , wxMacControl *convert , wxMacControl *to ); |
fb5246be | 623 | |
6cce68ea SC |
624 | virtual void GetFeatures( UInt32 *features ); |
625 | virtual OSStatus GetRegion( ControlPartCode partCode , RgnHandle region ); | |
626 | virtual OSStatus SetZOrder( bool above , wxMacControl* other ); | |
725566ca | 627 | |
6cce68ea | 628 | bool IsRootControl() { return m_isRootControl; } |
725566ca | 629 | |
6cce68ea SC |
630 | wxWindow* GetPeer() const |
631 | { | |
632 | return m_peer; | |
633 | } | |
ba5b8a68 SC |
634 | |
635 | // to be moved into a tab control class | |
636 | ||
6cce68ea SC |
637 | virtual OSStatus SetTabEnabled( SInt16 tabNo , bool enable ); |
638 | protected : | |
639 | ControlRef m_controlRef; | |
640 | wxFont m_font; | |
641 | long m_windowStyle; | |
642 | wxWindow* m_peer; | |
643 | bool m_needsFocusRect; | |
6cce68ea SC |
644 | bool m_isRootControl; |
645 | }; | |
646 | ||
647 | // ============================================================================ | |
648 | // DataBrowser Wrapper | |
649 | // ============================================================================ | |
650 | // | |
651 | // basing on DataBrowserItemIDs | |
652 | // | |
653 | ||
654 | class wxMacDataBrowserControl : public wxMacControl | |
655 | { | |
656 | public : | |
657 | wxMacDataBrowserControl( wxWindow* peer, const wxPoint& pos, const wxSize& size, long style); | |
658 | ||
659 | OSStatus SetCallbacks( const DataBrowserCallbacks *callbacks ); | |
725566ca | 660 | |
6cce68ea SC |
661 | OSStatus GetItemCount( DataBrowserItemID container, |
662 | Boolean recurse, | |
663 | DataBrowserItemState state, | |
664 | UInt32 *numItems) const; | |
725566ca | 665 | |
6cce68ea SC |
666 | OSStatus GetItems( DataBrowserItemID container, |
667 | Boolean recurse, | |
668 | DataBrowserItemState state, | |
669 | Handle items) const; | |
725566ca | 670 | |
6cce68ea SC |
671 | |
672 | OSStatus AddColumn( DataBrowserListViewColumnDesc *columnDesc, | |
673 | DataBrowserTableViewColumnIndex position ); | |
e2bc1d69 KO |
674 | |
675 | OSStatus RemoveColumn( DataBrowserTableViewColumnIndex position ); | |
725566ca | 676 | |
6cce68ea | 677 | OSStatus AutoSizeColumns(); |
725566ca | 678 | |
6cce68ea SC |
679 | OSStatus SetHasScrollBars( bool horiz, bool vert ); |
680 | OSStatus SetHiliteStyle( DataBrowserTableViewHiliteStyle hiliteStyle ); | |
725566ca | 681 | |
6cce68ea SC |
682 | OSStatus SetHeaderButtonHeight( UInt16 height ); |
683 | OSStatus GetHeaderButtonHeight( UInt16 *height ); | |
684 | ||
685 | OSStatus UpdateItems( DataBrowserItemID container, UInt32 numItems, | |
686 | const DataBrowserItemID *items, | |
687 | DataBrowserPropertyID preSortProperty, | |
688 | DataBrowserPropertyID propertyID ) const; | |
725566ca | 689 | |
6cce68ea SC |
690 | OSStatus AddItems( DataBrowserItemID container, UInt32 numItems, |
691 | const DataBrowserItemID *items, | |
692 | DataBrowserPropertyID preSortProperty ); | |
693 | OSStatus RemoveItems( DataBrowserItemID container, UInt32 numItems, | |
694 | const DataBrowserItemID *items, | |
695 | DataBrowserPropertyID preSortProperty ); | |
696 | OSStatus RevealItem( DataBrowserItemID item, | |
697 | DataBrowserPropertyID propertyID, | |
698 | DataBrowserRevealOptions options ) const; | |
699 | ||
700 | OSStatus SetSelectionFlags( DataBrowserSelectionFlags ); | |
701 | OSStatus GetSelectionAnchor( DataBrowserItemID *first, DataBrowserItemID *last ) const; | |
702 | bool IsItemSelected( DataBrowserItemID item ) const; | |
703 | OSStatus SetSelectedItems( UInt32 numItems, | |
704 | const DataBrowserItemID *items, | |
705 | DataBrowserSetOption operation ); | |
706 | ||
725566ca | 707 | OSStatus GetItemID( DataBrowserTableViewRowIndex row, |
6cce68ea | 708 | DataBrowserItemID * item ) const; |
725566ca | 709 | OSStatus GetItemRow( DataBrowserItemID item, |
6cce68ea | 710 | DataBrowserTableViewRowIndex * row ) const; |
725566ca | 711 | |
6cce68ea SC |
712 | OSStatus SetDefaultRowHeight( UInt16 height ); |
713 | OSStatus GetDefaultRowHeight( UInt16 * height ) const; | |
725566ca | 714 | |
6cce68ea SC |
715 | OSStatus SetRowHeight( DataBrowserItemID item , UInt16 height); |
716 | OSStatus GetRowHeight( DataBrowserItemID item , UInt16 *height) const; | |
725566ca | 717 | |
6cce68ea SC |
718 | OSStatus GetColumnWidth( DataBrowserPropertyID column , UInt16 *width ) const; |
719 | OSStatus SetColumnWidth( DataBrowserPropertyID column , UInt16 width ); | |
725566ca | 720 | |
6cce68ea SC |
721 | OSStatus GetDefaultColumnWidth( UInt16 *width ) const; |
722 | OSStatus SetDefaultColumnWidth( UInt16 width ); | |
725566ca | 723 | |
6cce68ea SC |
724 | OSStatus GetColumnCount( UInt32* numColumns) const; |
725 | ||
e2bc1d69 KO |
726 | OSStatus GetColumnIDFromIndex( DataBrowserTableViewColumnIndex position, DataBrowserTableViewColumnID* id ); |
727 | ||
6cce68ea SC |
728 | OSStatus GetColumnPosition( DataBrowserPropertyID column, UInt32 *position) const; |
729 | OSStatus SetColumnPosition( DataBrowserPropertyID column, UInt32 position); | |
725566ca | 730 | |
6cce68ea SC |
731 | OSStatus GetScrollPosition( UInt32 *top , UInt32 *left ) const; |
732 | OSStatus SetScrollPosition( UInt32 top , UInt32 left ); | |
725566ca | 733 | |
6cce68ea SC |
734 | OSStatus GetSortProperty( DataBrowserPropertyID *column ) const; |
735 | OSStatus SetSortProperty( DataBrowserPropertyID column ); | |
725566ca | 736 | |
6cce68ea SC |
737 | OSStatus GetSortOrder( DataBrowserSortOrder *order ) const; |
738 | OSStatus SetSortOrder( DataBrowserSortOrder order ); | |
725566ca | 739 | |
6cce68ea SC |
740 | OSStatus GetPropertyFlags( DataBrowserPropertyID property, DataBrowserPropertyFlags *flags ) const; |
741 | OSStatus SetPropertyFlags( DataBrowserPropertyID property, DataBrowserPropertyFlags flags ); | |
725566ca | 742 | |
6cce68ea SC |
743 | OSStatus GetHeaderDesc( DataBrowserPropertyID property, DataBrowserListViewHeaderDesc *desc ) const; |
744 | OSStatus SetHeaderDesc( DataBrowserPropertyID property, DataBrowserListViewHeaderDesc *desc ); | |
725566ca | 745 | |
6cce68ea | 746 | OSStatus SetDisclosureColumn( DataBrowserPropertyID property , Boolean expandableRows ); |
86d8b744 | 747 | protected : |
725566ca | 748 | |
6cce68ea SC |
749 | static pascal void DataBrowserItemNotificationProc( |
750 | ControlRef browser, | |
751 | DataBrowserItemID itemID, | |
752 | DataBrowserItemNotification message, | |
753 | DataBrowserItemDataRef itemData ); | |
754 | ||
755 | virtual void ItemNotification( | |
756 | DataBrowserItemID itemID, | |
757 | DataBrowserItemNotification message, | |
758 | DataBrowserItemDataRef itemData) = 0; | |
759 | ||
760 | static pascal OSStatus DataBrowserGetSetItemDataProc( | |
761 | ControlRef browser, | |
762 | DataBrowserItemID itemID, | |
763 | DataBrowserPropertyID property, | |
764 | DataBrowserItemDataRef itemData, | |
765 | Boolean changeValue ); | |
766 | ||
767 | virtual OSStatus GetSetItemData( | |
768 | DataBrowserItemID itemID, | |
769 | DataBrowserPropertyID property, | |
770 | DataBrowserItemDataRef itemData, | |
771 | Boolean changeValue ) = 0; | |
772 | ||
773 | static pascal Boolean DataBrowserCompareProc( | |
725566ca VZ |
774 | ControlRef browser, |
775 | DataBrowserItemID itemOneID, | |
776 | DataBrowserItemID itemTwoID, | |
6cce68ea | 777 | DataBrowserPropertyID sortProperty); |
725566ca VZ |
778 | |
779 | virtual Boolean CompareItems(DataBrowserItemID itemOneID, | |
780 | DataBrowserItemID itemTwoID, | |
6cce68ea SC |
781 | DataBrowserPropertyID sortProperty) = 0; |
782 | }; | |
783 | ||
784 | // ============================================================================ | |
725566ca | 785 | // Higher-level Databrowser |
6cce68ea SC |
786 | // ============================================================================ |
787 | // | |
788 | // basing on data item objects | |
789 | // | |
790 | ||
791 | // forward decl | |
792 | ||
793 | class wxMacDataItemBrowserControl; | |
e2bc1d69 KO |
794 | class wxMacListBoxItem; |
795 | ||
e362c2b9 SC |
796 | const DataBrowserPropertyID kTextColumnId = 1024; |
797 | const DataBrowserPropertyID kNumericOrderColumnId = 1025; | |
e2bc1d69 KO |
798 | |
799 | // for multi-column controls, we will use this + the column ID to identify the | |
800 | // column. We don't use kTextColumnId there, and ideally the two should merge. | |
e362c2b9 | 801 | const DataBrowserPropertyID kMinColumnId = 1050; |
e2bc1d69 KO |
802 | |
803 | // base API for high-level databrowser operations | |
804 | ||
805 | class wxMacListControl | |
806 | { | |
807 | public: | |
808 | virtual void MacDelete( unsigned int n ) = 0; | |
809 | virtual void MacInsert( unsigned int n, const wxString& item, int column = -1 ) = 0; | |
810 | virtual void MacInsert( unsigned int n, const wxArrayString& items, int column = -1 ) = 0; | |
811 | // returns index of newly created line | |
812 | virtual int MacAppend( const wxString& item ) = 0; | |
813 | virtual void MacSetString( unsigned int n, const wxString& item ) = 0; | |
814 | virtual void MacClear() = 0; | |
815 | virtual void MacDeselectAll() = 0; | |
816 | virtual void MacSetSelection( unsigned int n, bool select, bool multi ) = 0; | |
817 | virtual int MacGetSelection() const = 0; | |
818 | virtual int MacGetSelections( wxArrayInt& aSelections ) const = 0; | |
819 | virtual bool MacIsSelected( unsigned int n ) const = 0; | |
820 | virtual void MacScrollTo( unsigned int n ) = 0; | |
821 | virtual wxString MacGetString( unsigned int n) const = 0; | |
822 | virtual unsigned int MacGetCount() const = 0; | |
823 | ||
824 | virtual void MacSetClientData( unsigned int n, void * data) = 0; | |
825 | virtual void * MacGetClientData( unsigned int) const = 0; | |
826 | ||
827 | virtual ~wxMacListControl() { } | |
828 | }; | |
6cce68ea SC |
829 | |
830 | // base class for databrowser items | |
831 | ||
e2bc1d69 KO |
832 | enum DataItemType { |
833 | DataItem_Text | |
834 | }; | |
835 | ||
6cce68ea SC |
836 | class wxMacDataItem |
837 | { | |
838 | public : | |
839 | wxMacDataItem(); | |
840 | virtual ~wxMacDataItem(); | |
725566ca VZ |
841 | |
842 | virtual bool IsLessThan(wxMacDataItemBrowserControl *owner , | |
843 | const wxMacDataItem*, | |
6cce68ea | 844 | DataBrowserPropertyID property) const; |
725566ca | 845 | |
6cce68ea | 846 | // returns true if access was successful, otherwise false |
725566ca | 847 | virtual OSStatus GetSetData(wxMacDataItemBrowserControl *owner , |
6cce68ea SC |
848 | DataBrowserPropertyID property, |
849 | DataBrowserItemDataRef itemData, | |
850 | bool changeValue ); | |
851 | ||
725566ca | 852 | virtual void Notification(wxMacDataItemBrowserControl *owner , |
6cce68ea SC |
853 | DataBrowserItemNotification message, |
854 | DataBrowserItemDataRef itemData ) const; | |
e2bc1d69 KO |
855 | |
856 | void SetLabel( const wxString& str); | |
857 | const wxString& GetLabel() const; | |
858 | ||
859 | void SetOrder( SInt32 order ); | |
860 | SInt32 GetOrder() const; | |
861 | ||
862 | void SetData( void* data); | |
863 | void* GetData() const; | |
864 | ||
865 | void SetColumn( short col ); | |
866 | short GetColumn(); | |
867 | ||
868 | protected : | |
869 | wxString m_label; | |
870 | wxMacCFStringHolder m_cfLabel; | |
871 | void * m_data; | |
872 | SInt32 m_order; | |
873 | short m_colId; | |
874 | ||
875 | }; | |
876 | ||
877 | enum ListSortOrder { | |
878 | SortOrder_None, | |
879 | SortOrder_Text_Ascending, | |
880 | SortOrder_Text_Descending | |
6cce68ea SC |
881 | }; |
882 | ||
883 | typedef wxMacDataItem* wxMacDataItemPtr; | |
884 | const wxMacDataItemPtr wxMacDataBrowserRootContainer = NULL; | |
885 | ||
886 | WX_DEFINE_USER_EXPORTED_ARRAY_PTR(wxMacDataItemPtr, wxArrayMacDataItemPtr, class WXDLLIMPEXP_CORE); | |
887 | ||
e2bc1d69 | 888 | class wxMacDataItemBrowserControl : public wxMacDataBrowserControl, public wxMacListControl |
6cce68ea SC |
889 | { |
890 | public : | |
891 | wxMacDataItemBrowserControl( wxWindow* peer , const wxPoint& pos, const wxSize& size, long style); | |
725566ca | 892 | |
e2bc1d69 KO |
893 | // create a list item (can be a subclass of wxMacListBoxItem) |
894 | ||
895 | virtual wxMacDataItem* CreateItem(); | |
896 | ||
6cce68ea | 897 | unsigned int GetItemCount(const wxMacDataItem* container, bool recurse , DataBrowserItemState state) const; |
725566ca | 898 | void GetItems(const wxMacDataItem* container, bool recurse , |
6cce68ea | 899 | DataBrowserItemState state, wxArrayMacDataItemPtr &items ) const; |
e2bc1d69 KO |
900 | |
901 | unsigned int GetSelectedItemCount( const wxMacDataItem* container, bool recurse ) const; | |
725566ca | 902 | |
6cce68ea SC |
903 | unsigned int GetLineFromItem(const wxMacDataItem *item) const; |
904 | wxMacDataItem * GetItemFromLine(unsigned int n) const; | |
725566ca VZ |
905 | |
906 | void UpdateItem(const wxMacDataItem *container, const wxMacDataItem *item, | |
6cce68ea | 907 | DataBrowserPropertyID property) const; |
725566ca | 908 | void UpdateItems(const wxMacDataItem *container, wxArrayMacDataItemPtr &items, |
6cce68ea | 909 | DataBrowserPropertyID property) const; |
725566ca | 910 | |
e362c2b9 SC |
911 | void InsertColumn(int colId, DataBrowserPropertyType colType, DataBrowserPropertyFlags flags , |
912 | const wxString& title, SInt16 just = teFlushDefault, int minWidth = -1, int maxWidth = -1); | |
e2bc1d69 KO |
913 | |
914 | int GetColumnWidth(int colId); | |
915 | void SetColumnWidth(int colId, int width); | |
916 | ||
6cce68ea SC |
917 | void AddItem(wxMacDataItem *container, wxMacDataItem *item); |
918 | void AddItems(wxMacDataItem *container, wxArrayMacDataItemPtr &items ); | |
919 | ||
920 | void RemoveAllItems(wxMacDataItem *container); | |
921 | void RemoveItem(wxMacDataItem *container, wxMacDataItem* item); | |
922 | void RemoveItems(wxMacDataItem *container, wxArrayMacDataItemPtr &items); | |
725566ca | 923 | |
6cce68ea SC |
924 | void SetSelectedItem( wxMacDataItem* item , DataBrowserSetOption option); |
925 | void SetSelectedItems( wxArrayMacDataItemPtr &items , DataBrowserSetOption option); | |
926 | void SetSelectedAllItems( DataBrowserSetOption option); | |
927 | Boolean IsItemSelected( const wxMacDataItem* item) const; | |
725566ca | 928 | |
6cce68ea | 929 | void RevealItem( wxMacDataItem* item, DataBrowserRevealOptions options); |
725566ca | 930 | |
6cce68ea | 931 | void GetSelectionAnchor( wxMacDataItemPtr* first , wxMacDataItemPtr* last) const; |
725566ca | 932 | |
6cce68ea | 933 | // item aware methods, to be used in subclasses |
725566ca VZ |
934 | |
935 | virtual Boolean CompareItems(const wxMacDataItem* itemOneID, | |
936 | const wxMacDataItem* itemTwoID, | |
6cce68ea SC |
937 | DataBrowserPropertyID sortProperty); |
938 | ||
939 | virtual OSStatus GetSetItemData(wxMacDataItem* itemID, | |
940 | DataBrowserPropertyID property, | |
941 | DataBrowserItemDataRef itemData, | |
942 | Boolean changeValue ); | |
943 | ||
944 | virtual void ItemNotification( | |
945 | const wxMacDataItem* itemID, | |
946 | DataBrowserItemNotification message, | |
947 | DataBrowserItemDataRef itemData); | |
8b64a7e2 PC |
948 | |
949 | // as we are getting the same events for human and API selection we have to suppress | |
950 | // events in the latter case, since this will be used from many subclasses we keep it here | |
951 | ||
952 | bool IsSelectionSuppressed() const { return m_suppressSelection; } | |
953 | bool SuppressSelection( bool suppress ); | |
e2bc1d69 KO |
954 | |
955 | ||
956 | // wxMacListControl Methods | |
957 | // add and remove | |
958 | ||
959 | virtual void MacDelete( unsigned int n ); | |
960 | virtual void MacInsert( unsigned int n, const wxString& item, int column = -1 ); | |
961 | virtual void MacInsert( unsigned int n, const wxArrayString& items, int column = -1 ); | |
962 | virtual int MacAppend( const wxString& item ); | |
963 | virtual void MacClear(); | |
964 | ||
965 | // selecting | |
966 | ||
967 | virtual void MacDeselectAll(); | |
968 | virtual void MacSetSelection( unsigned int n, bool select, bool multi = false ); | |
969 | virtual int MacGetSelection() const; | |
970 | virtual int MacGetSelections( wxArrayInt& aSelections ) const; | |
971 | virtual bool MacIsSelected( unsigned int n ) const; | |
972 | ||
973 | // display | |
974 | ||
975 | virtual void MacScrollTo( unsigned int n ); | |
976 | ||
977 | // accessing content | |
978 | ||
979 | virtual void MacSetString( unsigned int n, const wxString& item ); | |
980 | virtual void MacSetClientData( unsigned int n, void * data); | |
981 | virtual wxString MacGetString( unsigned int n) const; | |
982 | virtual void * MacGetClientData( unsigned int) const; | |
983 | virtual unsigned int MacGetCount() const; | |
984 | ||
985 | // client data | |
986 | ||
987 | virtual wxClientDataType GetClientDataType() const; | |
988 | virtual void SetClientDataType(wxClientDataType clientDataItemsType); | |
0d2d29b1 KO |
989 | virtual ListSortOrder GetSortOrder() const; |
990 | virtual void SetSortOrder(const ListSortOrder sort); | |
e2bc1d69 KO |
991 | |
992 | ||
8b64a7e2 PC |
993 | |
994 | protected: | |
e2bc1d69 KO |
995 | |
996 | ListSortOrder m_sortOrder; | |
997 | wxClientDataType m_clientDataItemsType; | |
998 | ||
6cce68ea | 999 | // ID aware base methods, should be 'final' ie not changed in subclasses |
725566ca VZ |
1000 | |
1001 | virtual Boolean CompareItems(DataBrowserItemID itemOneID, | |
1002 | DataBrowserItemID itemTwoID, | |
6cce68ea SC |
1003 | DataBrowserPropertyID sortProperty); |
1004 | ||
1005 | virtual OSStatus GetSetItemData(DataBrowserItemID itemID, | |
1006 | DataBrowserPropertyID property, | |
1007 | DataBrowserItemDataRef itemData, | |
1008 | Boolean changeValue ); | |
1009 | ||
1010 | virtual void ItemNotification( | |
1011 | DataBrowserItemID itemID, | |
1012 | DataBrowserItemNotification message, | |
1013 | DataBrowserItemDataRef itemData); | |
1014 | ||
e2bc1d69 | 1015 | |
6cce68ea SC |
1016 | private : |
1017 | ||
1018 | bool m_suppressSelection; | |
1019 | }; | |
1020 | ||
1021 | class wxMacDataItemBrowserSelectionSuppressor | |
1022 | { | |
1023 | public : | |
1024 | wxMacDataItemBrowserSelectionSuppressor(wxMacDataItemBrowserControl *browser); | |
1025 | ~wxMacDataItemBrowserSelectionSuppressor(); | |
725566ca | 1026 | |
6cce68ea SC |
1027 | private : |
1028 | ||
1029 | bool m_former; | |
1030 | wxMacDataItemBrowserControl* m_browser; | |
1031 | }; | |
1032 | ||
1033 | // ============================================================================ | |
1034 | // platform listbox implementation | |
1035 | // ============================================================================ | |
e2bc1d69 | 1036 | |
6cce68ea SC |
1037 | // exposed for reuse in wxCheckListBox |
1038 | ||
1039 | class wxMacListBoxItem : public wxMacDataItem | |
1040 | { | |
1041 | public : | |
1042 | wxMacListBoxItem(); | |
725566ca | 1043 | |
6cce68ea | 1044 | virtual ~wxMacListBoxItem(); |
725566ca | 1045 | |
725566ca | 1046 | virtual void Notification(wxMacDataItemBrowserControl *owner , |
6cce68ea SC |
1047 | DataBrowserItemNotification message, |
1048 | DataBrowserItemDataRef itemData ) const; | |
6cce68ea SC |
1049 | }; |
1050 | ||
e2bc1d69 | 1051 | class wxMacDataBrowserListControl : public wxMacDataItemBrowserControl |
6cce68ea SC |
1052 | { |
1053 | public: | |
e2bc1d69 | 1054 | wxMacDataBrowserListControl( wxWindow *peer, const wxPoint& pos, const wxSize& size, long style ); |
d3c7fc99 | 1055 | virtual ~wxMacDataBrowserListControl(); |
6cce68ea | 1056 | |
6cce68ea SC |
1057 | // pointing back |
1058 | ||
e2bc1d69 KO |
1059 | wxWindow * GetPeer() const; |
1060 | ||
6cce68ea SC |
1061 | }; |
1062 | ||
1063 | // ============================================================================ | |
1064 | // graphics implementation | |
1065 | // ============================================================================ | |
86d8b744 | 1066 | |
20b69855 SC |
1067 | #if wxMAC_USE_CORE_GRAPHICS |
1068 | ||
fb5246be | 1069 | class WXDLLEXPORT wxMacCGPath : public wxGraphicPath |
20b69855 SC |
1070 | { |
1071 | DECLARE_NO_COPY_CLASS(wxMacCGPath) | |
1072 | public : | |
6cce68ea SC |
1073 | wxMacCGPath(); |
1074 | ~wxMacCGPath(); | |
fb5246be | 1075 | |
20b69855 | 1076 | // Starts a new subpath at |
6cce68ea SC |
1077 | void MoveToPoint( wxCoord x1 , wxCoord y1 ); |
1078 | void AddLineToPoint( wxCoord x1 , wxCoord y1 ); | |
1079 | void AddQuadCurveToPoint( wxCoord cx1, wxCoord cy1, wxCoord x1, wxCoord y1 ); | |
1080 | void AddRectangle( wxCoord x, wxCoord y, wxCoord w, wxCoord h ); | |
1081 | void AddCircle( wxCoord x, wxCoord y , wxCoord r ); | |
fb5246be | 1082 | |
20b69855 | 1083 | // closes the current subpath |
6cce68ea | 1084 | void CloseSubpath(); |
fb5246be | 1085 | |
6cce68ea | 1086 | CGPathRef GetPath() const; |
20b69855 | 1087 | private : |
6cce68ea SC |
1088 | CGMutablePathRef m_path; |
1089 | }; | |
20b69855 SC |
1090 | |
1091 | class WXDLLEXPORT wxMacCGContext : public wxGraphicContext | |
1092 | { | |
1093 | DECLARE_NO_COPY_CLASS(wxMacCGContext) | |
fb5246be | 1094 | |
20b69855 | 1095 | public: |
6cce68ea SC |
1096 | wxMacCGContext( CGrafPtr port ); |
1097 | wxMacCGContext( CGContextRef cgcontext ); | |
1098 | wxMacCGContext(); | |
d3c7fc99 | 1099 | virtual ~wxMacCGContext(); |
6cce68ea SC |
1100 | |
1101 | virtual void Clip( const wxRegion ®ion ); | |
1102 | virtual void StrokePath( const wxGraphicPath *p ); | |
1103 | virtual void DrawPath( const wxGraphicPath *p , int fillStyle = wxWINDING_RULE ); | |
1104 | virtual void FillPath( const wxGraphicPath *p , const wxColor &fillColor , int fillStyle = wxWINDING_RULE ); | |
1105 | ||
1106 | virtual wxGraphicPath* CreatePath(); | |
1107 | virtual void SetPen( const wxPen &pen ) ; | |
1108 | virtual void SetBrush( const wxBrush &brush ); | |
1109 | CGContextRef GetNativeContext(); | |
1110 | void SetNativeContext( CGContextRef cg ); | |
1111 | CGPathDrawingMode GetDrawingMode() const { return m_mode; } | |
20b69855 | 1112 | private: |
6cce68ea SC |
1113 | CGContextRef m_cgContext; |
1114 | CGrafPtr m_qdPort; | |
1115 | CGPathDrawingMode m_mode; | |
1116 | wxPen m_pen; | |
1117 | wxBrush m_brush; | |
1118 | }; | |
20b69855 | 1119 | |
30e77b5c SC |
1120 | #endif // wxMAC_USE_CORE_GRAPHICS |
1121 | ||
1122 | #ifdef __WXMAC_OSX__ | |
1123 | ||
6cce68ea SC |
1124 | CGColorSpaceRef wxMacGetGenericRGBColorSpace(void); |
1125 | void wxMacMemoryBufferReleaseProc(void *info, const void *data, size_t size); | |
20b69855 | 1126 | |
30e77b5c | 1127 | #endif |
20b69855 SC |
1128 | |
1129 | class WXDLLEXPORT wxBitmapRefData: public wxGDIRefData | |
1130 | { | |
1131 | DECLARE_NO_COPY_CLASS(wxBitmapRefData) | |
fb5246be | 1132 | |
20b69855 SC |
1133 | friend class WXDLLEXPORT wxIcon; |
1134 | friend class WXDLLEXPORT wxCursor; | |
1135 | public: | |
1136 | wxBitmapRefData(int width , int height , int depth); | |
1137 | wxBitmapRefData(); | |
d3c7fc99 | 1138 | virtual ~wxBitmapRefData(); |
20b69855 | 1139 | |
6cce68ea SC |
1140 | void Free(); |
1141 | bool Ok() const { return m_ok; } | |
1142 | void SetOk( bool isOk) { m_ok = isOk; } | |
fb5246be | 1143 | |
6cce68ea SC |
1144 | void SetWidth( int width ) { m_width = width; } |
1145 | void SetHeight( int height ) { m_height = height; } | |
1146 | void SetDepth( int depth ) { m_depth = depth; } | |
20b69855 | 1147 | |
6cce68ea SC |
1148 | int GetWidth() const { return m_width; } |
1149 | int GetHeight() const { return m_height; } | |
1150 | int GetDepth() const { return m_depth; } | |
fb5246be | 1151 | |
6cce68ea SC |
1152 | void *GetRawAccess() const; |
1153 | void *BeginRawAccess(); | |
1154 | void EndRawAccess(); | |
20b69855 | 1155 | |
6cce68ea SC |
1156 | bool HasAlpha() const { return m_hasAlpha; } |
1157 | void UseAlpha( bool useAlpha ); | |
20b69855 SC |
1158 | |
1159 | public: | |
1160 | #if wxUSE_PALETTE | |
1161 | wxPalette m_bitmapPalette; | |
1162 | #endif // wxUSE_PALETTE | |
fb5246be | 1163 | |
20b69855 | 1164 | wxMask * m_bitmapMask; // Optional mask |
30e77b5c | 1165 | #ifdef __WXMAC_OSX__ |
6cce68ea | 1166 | CGImageRef CGImageCreate() const; |
71cc158e | 1167 | #endif |
fb5246be | 1168 | |
6d2c830a SC |
1169 | // returns true if the bitmap has a size that |
1170 | // can be natively transferred into a true icon | |
1171 | // if no is returned GetIconRef will still produce | |
1172 | // an icon but it will be generated via a PICT and | |
fb5246be | 1173 | // rescaled to 16 x 16 |
6cce68ea | 1174 | bool HasNativeSize(); |
fb5246be | 1175 | |
6d2c830a SC |
1176 | // caller should increase ref count if needed longer |
1177 | // than the bitmap exists | |
6cce68ea | 1178 | IconRef GetIconRef(); |
fb5246be | 1179 | |
6d2c830a | 1180 | // returns a Pict from the bitmap content |
6cce68ea SC |
1181 | PicHandle GetPictHandle(); |
1182 | GWorldPtr GetHBITMAP(GWorldPtr * mask = NULL ) const; | |
1183 | void UpdateAlphaMask() const; | |
71cc158e | 1184 | |
20b69855 | 1185 | private : |
6cce68ea SC |
1186 | bool Create(int width , int height , int depth); |
1187 | void Init(); | |
20b69855 SC |
1188 | |
1189 | int m_width; | |
1190 | int m_height; | |
6cce68ea | 1191 | int m_bytesPerRow; |
20b69855 SC |
1192 | int m_depth; |
1193 | bool m_hasAlpha; | |
6cce68ea SC |
1194 | wxMemoryBuffer m_memBuf; |
1195 | int m_rawAccessCount; | |
20b69855 | 1196 | bool m_ok; |
30e77b5c | 1197 | #ifdef __WXMAC_OSX__ |
6cce68ea | 1198 | mutable CGImageRef m_cgImageRef; |
71cc158e | 1199 | #endif |
6cce68ea SC |
1200 | IconRef m_iconRef; |
1201 | PicHandle m_pictHandle; | |
20b69855 | 1202 | GWorldPtr m_hBitmap; |
6cce68ea SC |
1203 | GWorldPtr m_hMaskBitmap; |
1204 | wxMemoryBuffer m_maskMemBuf; | |
1205 | int m_maskBytesPerRow; | |
20b69855 SC |
1206 | }; |
1207 | ||
20b69855 SC |
1208 | class WXDLLEXPORT wxIconRefData : public wxGDIRefData |
1209 | { | |
1210 | public: | |
6cce68ea SC |
1211 | wxIconRefData(); |
1212 | wxIconRefData( WXHICON ); | |
20b69855 SC |
1213 | virtual ~wxIconRefData() { Free(); } |
1214 | ||
6cce68ea | 1215 | void Init(); |
20b69855 | 1216 | virtual void Free(); |
ddb08e02 | 1217 | |
6cce68ea SC |
1218 | void SetWidth( int width ) { m_width = width; } |
1219 | void SetHeight( int height ) { m_height = height; } | |
ddb08e02 | 1220 | |
6cce68ea SC |
1221 | int GetWidth() const { return m_width; } |
1222 | int GetHeight() const { return m_height; } | |
ddb08e02 | 1223 | |
6cce68ea | 1224 | WXHICON GetHICON() const { return (WXHICON) m_iconRef; } |
20b69855 | 1225 | private : |
6cce68ea SC |
1226 | IconRef m_iconRef; |
1227 | int m_width; | |
1228 | int m_height; | |
20b69855 SC |
1229 | }; |
1230 | ||
285b5ce0 SC |
1231 | // toplevel.cpp |
1232 | ||
6cce68ea | 1233 | ControlRef wxMacFindControlUnderMouse( wxTopLevelWindowMac* toplevelWindow, const Point& location , WindowRef window , ControlPartCode *outPart ); |
285b5ce0 | 1234 | |
ecf418ad | 1235 | #ifdef WORDS_BIGENDIAN |
725566ca VZ |
1236 | inline Rect* wxMacGetPictureBounds( PicHandle pict , Rect* rect ) |
1237 | { | |
1238 | *rect = (**pict).picFrame; | |
6cce68ea | 1239 | return rect; |
7358f907 SC |
1240 | } |
1241 | #else | |
725566ca VZ |
1242 | inline Rect* wxMacGetPictureBounds( PicHandle pict , Rect* rect ) |
1243 | { | |
6cce68ea | 1244 | return QDGetPictureBounds( pict , rect ); |
7358f907 SC |
1245 | } |
1246 | #endif | |
1247 | ||
8cf73271 SC |
1248 | #endif // wxUSE_GUI |
1249 | ||
285b5ce0 SC |
1250 | #define wxMAC_DEFINE_PROC_GETTER( UPP , x ) \ |
1251 | UPP Get##x() \ | |
1252 | { \ | |
1253 | static UPP sHandler = NULL; \ | |
1254 | if ( sHandler == NULL ) \ | |
1255 | sHandler = New##UPP( x ); \ | |
1256 | return sHandler; \ | |
1257 | } | |
1258 | ||
8cf73271 SC |
1259 | //--------------------------------------------------------------------------- |
1260 | // wxMac string conversions | |
1261 | //--------------------------------------------------------------------------- | |
1262 | ||
6cce68ea SC |
1263 | void wxMacSetupConverters(); |
1264 | void wxMacCleanupConverters(); | |
8cf73271 | 1265 | |
6cce68ea SC |
1266 | void wxMacStringToPascal( const wxString&from , StringPtr to ); |
1267 | wxString wxMacMakeStringFromPascal( ConstStringPtr from ); | |
8cf73271 | 1268 | |
a2b77260 SC |
1269 | // filefn.cpp |
1270 | ||
6cce68ea SC |
1271 | wxString wxMacFSRefToPath( const FSRef *fsRef , CFStringRef additionalPathComponent = NULL ); |
1272 | OSStatus wxMacPathToFSRef( const wxString&path , FSRef *fsRef ); | |
1273 | wxString wxMacHFSUniStrToString( ConstHFSUniStr255Param uniname ); | |
aa0cc8a1 | 1274 | |
8cf73271 SC |
1275 | #endif |
1276 | // _WX_PRIVATE_H_ |