]> git.saurik.com Git - wxWidgets.git/blob - include/wx/mac/carbon/private.h
Completed sync of BASE_CMN_SRC between PalmOS and bakefiles. Missing features (stdpat...
[wxWidgets.git] / include / wx / mac / carbon / private.h
1 /////////////////////////////////////////////////////////////////////////////
2 // Name: private.h
3 // Purpose: Private declarations: as this header is only included by
4 // wxWidgets itself, it may contain identifiers which don't start
5 // with "wx".
6 // Author: Stefan Csomor
7 // Modified by:
8 // Created: 1998-01-01
9 // RCS-ID: $Id$
10 // Copyright: (c) Stefan Csomor
11 // Licence: wxWindows licence
12 /////////////////////////////////////////////////////////////////////////////
13
14 #ifndef _WX_PRIVATE_H_
15 #define _WX_PRIVATE_H_
16
17 #include "wx/defs.h"
18 #include "wx/app.h"
19
20 #ifdef __DARWIN__
21 # include <Carbon/Carbon.h>
22 #else
23 # include <Debugging.h>
24 # include <Quickdraw.h>
25 # include <Appearance.h>
26 # include <Folders.h>
27 # include <Controls.h>
28 # include <ControlDefinitions.h>
29 # include <LowMem.h>
30 # include <Gestalt.h>
31 # include <FixMath.h>
32 #endif
33
34 #if UNIVERSAL_INTERFACES_VERSION < 0x0340
35 #error "please update to Apple's lastest universal headers from http://developer.apple.com/sdk/"
36 #endif
37
38 #ifndef MAC_OS_X_VERSION_10_3
39 #define MAC_OS_X_VERSION_10_3 1030
40 #endif
41
42 #ifndef MAC_OS_X_VERSION_10_4
43 #define MAC_OS_X_VERSION_10_4 1040
44 #endif
45
46 #ifdef __WXMAC_CARBON__
47 #include "wx/mac/corefoundation/cfstring.h"
48 #endif
49
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
63 #if wxUSE_GUI
64
65 #include "wx/dc.h"
66 #include "wx/window.h"
67
68 class wxMacPortStateHelper
69 {
70 DECLARE_NO_COPY_CLASS(wxMacPortStateHelper)
71
72 public:
73 wxMacPortStateHelper( GrafPtr newport) ;
74 wxMacPortStateHelper() ;
75 ~wxMacPortStateHelper() ;
76
77 void Setup( GrafPtr newport ) ;
78 void Clear() ;
79 bool IsCleared() { return m_clip == NULL ; }
80 GrafPtr GetCurrentPort() { return m_currentPort ; }
81
82 private:
83 GrafPtr m_currentPort ;
84 GrafPtr m_oldPort ;
85 RgnHandle m_clip ;
86 ThemeDrawingState m_drawingState ;
87 short m_textFont ;
88 short m_textSize ;
89 short m_textStyle ;
90 short m_textMode ;
91 } ;
92
93 class WXDLLEXPORT wxMacPortSaver
94 {
95 DECLARE_NO_COPY_CLASS(wxMacPortSaver)
96
97 public:
98 wxMacPortSaver( GrafPtr port )
99 {
100 ::GetPort( &m_port ) ;
101 ::SetPort( port ) ;
102 }
103 ~wxMacPortSaver()
104 {
105 ::SetPort( m_port ) ;
106 }
107 private :
108 GrafPtr m_port ;
109 } ;
110
111 class WXDLLEXPORT wxMacPortSetter
112 {
113 DECLARE_NO_COPY_CLASS(wxMacPortSetter)
114
115 public:
116 wxMacPortSetter( const wxDC* dc ) ;
117 ~wxMacPortSetter() ;
118 private:
119 wxMacPortStateHelper m_ph ;
120 const wxDC* m_dc ;
121 } ;
122
123 /*
124 Clips to the visible region of a control within the current port
125 */
126
127 class WXDLLEXPORT wxMacWindowClipper : public wxMacPortSaver
128 {
129 DECLARE_NO_COPY_CLASS(wxMacWindowClipper)
130
131 public:
132 wxMacWindowClipper( const wxWindow* win ) ;
133 ~wxMacWindowClipper() ;
134 private:
135 GrafPtr m_newPort ;
136 RgnHandle m_formerClip ;
137 RgnHandle m_newClip ;
138 } ;
139
140 class WXDLLEXPORT wxMacWindowStateSaver : public wxMacWindowClipper
141 {
142 DECLARE_NO_COPY_CLASS(wxMacWindowStateSaver)
143
144 public:
145 wxMacWindowStateSaver( const wxWindow* win ) ;
146 ~wxMacWindowStateSaver() ;
147 private:
148 GrafPtr m_newPort ;
149 ThemeDrawingState m_themeDrawingState ;
150 } ;
151
152 #if wxMAC_USE_CORE_GRAPHICS
153 class WXDLLEXPORT wxMacCGContextStateSaver
154 {
155 DECLARE_NO_COPY_CLASS(wxMacCGContextStateSaver)
156
157 public:
158 wxMacCGContextStateSaver( CGContextRef cg )
159 {
160 m_cg = cg ;
161 CGContextSaveGState( cg ) ;
162 }
163 ~wxMacCGContextStateSaver()
164 {
165 CGContextRestoreGState( m_cg ) ;
166 }
167 private:
168 CGContextRef m_cg ;
169 } ;
170
171 #endif
172 /*
173 class wxMacDrawingHelper
174 {
175 DECLARE_NO_COPY_CLASS(wxMacDrawingHelper)
176
177 public:
178 wxMacDrawingHelper( wxWindowMac * theWindow , bool clientArea = false ) ;
179 ~wxMacDrawingHelper() ;
180 bool Ok() { return m_ok ; }
181 void LocalToWindow( Rect *rect) { OffsetRect( rect , m_origin.h , m_origin.v ) ; }
182 void LocalToWindow( Point *pt ) { AddPt( m_origin , pt ) ; }
183 void LocalToWindow( RgnHandle rgn ) { OffsetRgn( rgn , m_origin.h , m_origin.v ) ; }
184 const Point& GetOrigin() { return m_origin ; }
185 private:
186 Point m_origin ;
187 GrafPtr m_formerPort ;
188 GrafPtr m_currentPort ;
189 PenState m_savedPenState ;
190 bool m_ok ;
191 } ;
192 */
193
194 // app.h
195 bool wxMacConvertEventToRecord( EventRef event , EventRecord *rec) ;
196
197 #endif // wxUSE_GUI
198
199 // filefn.h
200 WXDLLEXPORT wxString wxMacFSSpec2MacFilename( const FSSpec *spec ) ;
201 WXDLLEXPORT void wxMacFilename2FSSpec( const wxString &path , FSSpec *spec ) ;
202
203 // utils.h
204 WXDLLEXPORT wxString wxMacFindFolder(short vRefNum,
205 OSType folderType,
206 Boolean createFolder);
207
208 template<typename T> EventParamType wxMacGetEventParamType() { wxFAIL_MSG( wxT("Unknown Param Type") ) ; return 0 ; }
209 template<> inline EventParamType wxMacGetEventParamType<RgnHandle>() { return typeQDRgnHandle ; }
210 template<> inline EventParamType wxMacGetEventParamType<ControlRef>() { return typeControlRef ; }
211 template<> inline EventParamType wxMacGetEventParamType<WindowRef>() { return typeWindowRef ; }
212 template<> inline EventParamType wxMacGetEventParamType<MenuRef>() { return typeMenuRef ; }
213 template<> inline EventParamType wxMacGetEventParamType<EventRef>() { return typeEventRef ; }
214 template<> inline EventParamType wxMacGetEventParamType<Point>() { return typeQDPoint ; }
215 template<> inline EventParamType wxMacGetEventParamType<Rect>() { return typeQDRectangle ; }
216 template<> inline EventParamType wxMacGetEventParamType<Boolean>() { return typeBoolean ; }
217 #if TARGET_API_MAC_OSX
218 template<> inline EventParamType wxMacGetEventParamType<HICommand>() { return typeHICommand ; }
219 template<> inline EventParamType wxMacGetEventParamType<HIPoint>() { return typeHIPoint ; }
220 template<> inline EventParamType wxMacGetEventParamType<HISize>() { return typeHISize ; }
221 template<> inline EventParamType wxMacGetEventParamType<HIRect>() { return typeHIRect ; }
222 template<> inline EventParamType wxMacGetEventParamType<void*>() { return typeVoidPtr ; }
223 #endif
224 template<> inline EventParamType wxMacGetEventParamType<Collection>() { return typeCollection ; }
225 template<> inline EventParamType wxMacGetEventParamType<CGContextRef>() { return typeCGContextRef ; }
226 /*
227 These are ambiguous
228 template<> EventParamType wxMacGetEventParamType<GrafPtr>() { return typeGrafPtr ; }
229 template<> EventParamType wxMacGetEventParamType<OSStatus>() { return typeOSStatus ; }
230 template<> EventParamType wxMacGetEventParamType<CFIndex>() { return typeCFIndex ; }
231 template<> EventParamType wxMacGetEventParamType<GWorldPtr>() { return typeGWorldPtr ; }
232 */
233
234 class wxMacCarbonEvent
235 {
236
237 public :
238 wxMacCarbonEvent()
239 {
240 m_eventRef = 0 ;
241 m_release = false ;
242 }
243
244 wxMacCarbonEvent( EventRef event , bool release = false )
245 {
246 m_eventRef = event ;
247 m_release = release ;
248 }
249
250 wxMacCarbonEvent(UInt32 inClassID,UInt32 inKind,EventTime inWhen = 0 /*now*/,EventAttributes inAttributes=kEventAttributeNone)
251 {
252 m_eventRef = NULL ;
253 verify_noerr( MacCreateEvent( NULL , inClassID, inKind,inWhen,inAttributes,&m_eventRef) ) ;
254 m_release = true ;
255 }
256
257 ~wxMacCarbonEvent()
258 {
259 if ( m_release )
260 ReleaseEvent( m_eventRef ) ;
261 }
262
263 OSStatus Create(UInt32 inClassID,UInt32 inKind,EventTime inWhen = 0 /*now*/,EventAttributes inAttributes=kEventAttributeNone)
264 {
265 verify( (m_eventRef == NULL) || m_release ) ;
266 if ( m_eventRef && m_release )
267 {
268 ReleaseEvent( m_eventRef ) ;
269 m_release = false ;
270 m_eventRef = NULL ;
271
272 }
273 OSStatus err = MacCreateEvent( NULL , inClassID, inKind,inWhen,inAttributes,&m_eventRef) ;
274 if ( err == noErr )
275 m_release = true ;
276 return err ;
277 }
278
279 OSStatus GetParameter( EventParamName inName, EventParamType inDesiredType, UInt32 inBufferSize, void * outData) ;
280
281 template <typename T> OSStatus GetParameter( EventParamName inName, EventParamType type , T *data )
282 {
283 return GetParameter( inName, type , sizeof( T ) , data ) ;
284 }
285 template <typename T> OSStatus GetParameter( EventParamName inName, T *data )
286 {
287 return GetParameter<T>( inName, wxMacGetEventParamType<T>() , data ) ;
288 }
289
290 template <typename T> T GetParameter( EventParamName inName )
291 {
292 T value ;
293 verify_noerr( GetParameter<T>( inName, &value ) ) ;
294 return value ;
295 }
296 template <typename T> T GetParameter( EventParamName inName, EventParamType inDesiredType )
297 {
298 T value ;
299 verify_noerr( GetParameter<T>( inName, inDesiredType , &value ) ) ;
300 return value ;
301 }
302
303 OSStatus SetParameter( EventParamName inName, EventParamType inType, UInt32 inSize, const void * inData) ;
304 template <typename T> OSStatus SetParameter( EventParamName inName, EventParamType inDesiredType , const T *data )
305 {
306 return SetParameter( inName, inDesiredType , sizeof( T ) , data ) ;
307 }
308 template <typename T> OSStatus SetParameter( EventParamName inName, EventParamType inDesiredType , const T& data )
309 {
310 return SetParameter<T>( inName, inDesiredType , &data ) ;
311 }
312 template <typename T> OSStatus SetParameter( EventParamName inName, const T *data )
313 {
314 return SetParameter<T>( inName, wxMacGetEventParamType<T>() , data ) ;
315 }
316 template <typename T> OSStatus SetParameter( EventParamName inName, const T& data )
317 {
318 return SetParameter<T>( inName, wxMacGetEventParamType<T>() , &data ) ;
319 }
320 UInt32 GetClass()
321 {
322 return ::GetEventClass( m_eventRef ) ;
323 }
324 UInt32 GetKind()
325 {
326 return ::GetEventKind( m_eventRef ) ;
327 }
328 EventTime GetTime()
329 {
330 return ::GetEventTime( m_eventRef ) ;
331 }
332 UInt32 GetTicks()
333 {
334 return EventTimeToTicks( GetTime() ) ;
335 }
336 OSStatus SetTime( EventTime inWhen = 0 /*now*/ )
337 {
338 return ::SetEventTime( m_eventRef , inWhen ? inWhen : GetCurrentEventTime() ) ;
339 }
340 operator EventRef () { return m_eventRef; }
341
342 bool IsValid() { return m_eventRef != 0 ; }
343 protected :
344 EventRef m_eventRef ;
345 bool m_release ;
346 } ;
347
348 //
349 // helper class for allocating and deallocating Universal Proc Ptrs
350 //
351
352 template <typename procType, typename uppType , uppType (*newUPP)(procType) , void (*disposeUPP)(uppType) > class wxMacUPP
353 {
354 public :
355 wxMacUPP( procType proc )
356 {
357 m_upp = NULL ;
358 m_upp = (*newUPP)( NULL ) ;
359 }
360 ~wxMacUPP()
361 {
362 if ( m_upp )
363 disposeUPP( m_upp ) ;
364 }
365 operator uppType() { return m_upp ; }
366 private :
367 uppType m_upp ;
368 } ;
369
370 typedef wxMacUPP<NMProcPtr,NMUPP,NewNMUPP,DisposeNMUPP> wxMacNMUPP ;
371
372 #if wxUSE_GUI
373 /*
374 GWorldPtr wxMacCreateGWorld( int width , int height , int depth ) ;
375 void wxMacDestroyGWorld( GWorldPtr gw ) ;
376 PicHandle wxMacCreatePict( GWorldPtr gw , GWorldPtr mask = NULL ) ;
377 CIconHandle wxMacCreateCIcon(GWorldPtr image , GWorldPtr mask , short dstDepth , short iconSize ) ;
378 void wxMacSetColorTableEntry( CTabHandle newColors , int index , int red , int green , int blue ) ;
379 CTabHandle wxMacCreateColorTable( int numColors ) ;
380 */
381 void wxMacCreateBitmapButton( ControlButtonContentInfo*info , const wxBitmap& bitmap , int forceType = 0 ) ;
382 void wxMacReleaseBitmapButton( ControlButtonContentInfo*info ) ;
383
384 #define MAC_WXCOLORREF(a) (*((RGBColor*)&(a)))
385 #define MAC_WXHBITMAP(a) (GWorldPtr(a))
386 #define MAC_WXHMETAFILE(a) (PicHandle(a))
387 #define MAC_WXHICON(a) (IconRef(a))
388 #define MAC_WXHCURSOR(a) (CursHandle(a))
389 #define MAC_WXHRGN(a) (RgnHandle(a))
390 #define MAC_WXHWND(a) (WindowPtr(a))
391 #define MAC_WXRECPTR(a) ((Rect*)a)
392 #define MAC_WXPOINTPTR(a) ((Point*)a)
393 #define MAC_WXHMENU(a) ((MenuHandle)a)
394
395 struct wxOpaqueWindowRef
396 {
397 wxOpaqueWindowRef( WindowRef ref ) { m_data = ref ; }
398 operator WindowRef() { return m_data ; }
399 private :
400 WindowRef m_data ;
401 } ;
402
403 wxWindow * wxFindControlFromMacControl(ControlRef inControl ) ;
404 wxTopLevelWindowMac* wxFindWinFromMacWindow( WindowRef inWindow ) ;
405 wxMenu* wxFindMenuFromMacMenu(MenuRef inMenuRef) ;
406
407 extern wxWindow* g_MacLastWindow ;
408 pascal OSStatus wxMacTopLevelMouseEventHandler( EventHandlerCallRef handler , EventRef event , void *data ) ;
409 Rect wxMacGetBoundsForControl( wxWindow* window , const wxPoint& pos , const wxSize &size , bool adjustForOrigin = true ) ;
410
411 class wxMacControl
412 {
413 public :
414 wxMacControl(wxWindow* peer)
415 {
416 m_peer = peer ;
417 m_controlRef = NULL ;
418 }
419
420 wxMacControl( wxWindow* peer , ControlRef control )
421 {
422 m_peer = peer ;
423 m_controlRef = control ;
424 }
425 wxMacControl( wxWindow* peer , WXWidget control )
426 {
427 m_peer = peer ;
428 m_controlRef = (ControlRef) control ;
429 }
430
431 virtual ~wxMacControl()
432 {
433 }
434
435 virtual void Dispose() ;
436
437 bool Ok() const { return GetControlRef() != NULL ; }
438
439 virtual ControlRef * GetControlRefAddr() { return &m_controlRef; }
440 virtual ControlRef GetControlRef() const { return m_controlRef ; }
441
442 virtual void SetReference( SInt32 data ) ;
443 /*
444 void operator= (ControlRef c) { m_controlRef = c ; }
445 operator ControlRef () { return m_controlRef; }
446 operator ControlRef * () { return &m_controlRef; }
447 */
448 // accessing data and values
449
450 virtual OSStatus SetData( ControlPartCode inPartCode , ResType inTag , Size inSize , const void * inData ) ;
451 virtual OSStatus GetData( ControlPartCode inPartCode , ResType inTag , Size inBufferSize , void * inOutBuffer , Size * outActualSize ) const ;
452 virtual OSStatus GetDataSize( ControlPartCode inPartCode , ResType inTag , Size * outActualSize ) const ;
453 virtual OSStatus SendEvent( EventRef ref , OptionBits inOptions = 0 ) ;
454 virtual OSStatus SendHICommand( HICommand &command , OptionBits inOptions = 0 ) ;
455
456 virtual OSStatus SendHICommand( UInt32 commandID , OptionBits inOptions = 0 ) ;
457
458 virtual SInt32 GetValue() const ;
459 virtual SInt32 GetMaximum() const ;
460 virtual SInt32 GetMinimum() const ;
461
462 virtual void SetValue( SInt32 v ) ;
463 virtual void SetMinimum( SInt32 v ) ;
464 virtual void SetMaximum( SInt32 v ) ;
465
466 virtual void SetValueAndRange( SInt32 value , SInt32 minimum , SInt32 maximum ) ;
467 virtual void SetRange( SInt32 minimum , SInt32 maximum ) ;
468
469 virtual OSStatus SetFocus( ControlFocusPart focusPart ) ;
470 virtual bool HasFocus() const ;
471 virtual bool NeedsFocusRect() const ;
472
473 // templated helpers
474
475 Size GetDataSize( ControlPartCode inPartCode , ResType inTag ) const
476 {
477 Size sz ;
478 verify_noerr( GetDataSize( inPartCode , inTag , &sz ) ) ;
479 return sz ;
480 }
481 template <typename T> OSStatus SetData( ControlPartCode inPartCode , ResType inTag , const T *data )
482 {
483 return SetData( inPartCode , inTag , sizeof( T ) , data ) ;
484 }
485 template <typename T> OSStatus SetData( ControlPartCode inPartCode , ResType inTag , const T& data )
486 {
487 return SetData( inPartCode , inTag , sizeof( T ) , &data ) ;
488 }
489 template <typename T> OSStatus GetData( ControlPartCode inPartCode , ResType inTag , T *data ) const
490 {
491 Size dummy ;
492 return GetData( inPartCode , inTag , sizeof( T ) , data , &dummy ) ;
493 }
494 template <typename T> T GetData( ControlPartCode inPartCode , ResType inTag ) const
495 {
496 T value ;
497 verify_noerr( GetData<T>( inPartCode , inTag , &value ) ) ;
498 return value ;
499 }
500
501 // Flash the control for the specified amount of time
502 virtual void Flash( ControlPartCode part , UInt32 ticks = 8 ) ;
503
504 virtual void VisibilityChanged( bool shown ) ;
505 virtual void SuperChangedPosition() ;
506
507
508 virtual void SetFont( const wxFont & font , const wxColour& foreground , long windowStyle ) ;
509 virtual void SetBackground( const wxBrush &brush ) ;
510 virtual ControlPartCode HandleKey( SInt16 keyCode, SInt16 charCode, EventModifiers modifiers ) ;
511 void SetActionProc( ControlActionUPP actionProc ) ;
512 void SetViewSize( SInt32 viewSize ) ;
513 SInt32 GetViewSize() const ;
514
515 virtual bool IsVisible() const ;
516 virtual void SetVisibility( bool visible , bool redraw ) ;
517 virtual bool IsEnabled() const ;
518 virtual bool IsActive() const ;
519 virtual void Enable( bool enable ) ;
520
521 // invalidates this control and all children
522 virtual void InvalidateWithChildren() ;
523 virtual void SetDrawingEnabled( bool enable ) ;
524 #ifdef __WXMAC_OSX__
525 virtual bool GetNeedsDisplay() const ;
526 virtual void SetNeedsDisplay( bool needsDisplay , RgnHandle where = NULL ) ;
527 #endif
528 virtual void ScrollRect( const wxRect &rect , int dx , int dy ) ;
529
530 virtual void GetRect( Rect *r ) ;
531 virtual void SetRect( Rect *r ) ;
532 virtual void GetRectInWindowCoords( Rect *r ) ;
533 virtual void GetBestRect( Rect *r ) ;
534 virtual void SetTitle( const wxString &title ) ;
535 // converts from Toplevel-Content relative to local
536 static void Convert( wxPoint *pt , wxMacControl *convert , wxMacControl *to ) ;
537
538 virtual void GetFeatures( UInt32 *features ) ;
539 virtual OSStatus GetRegion( ControlPartCode partCode , RgnHandle region ) ;
540 virtual OSStatus SetZOrder( bool above , wxMacControl* other ) ;
541 // to be moved into a databrowser subclass
542
543 virtual OSStatus SetSelectionFlags( DataBrowserSelectionFlags ) ;
544 virtual OSStatus AddListViewColumn( DataBrowserListViewColumnDesc *columnDesc,
545 DataBrowserTableViewColumnIndex position ) ;
546 virtual OSStatus AutoSizeListViewColumns() ;
547 virtual OSStatus SetHasScrollBars( bool horiz , bool vert ) ;
548 virtual OSStatus SetTableViewHiliteStyle( DataBrowserTableViewHiliteStyle hiliteStyle ) ;
549 virtual OSStatus SetListViewHeaderBtnHeight(UInt16 height) ;
550 virtual OSStatus SetCallbacks(const DataBrowserCallbacks * callbacks) ;
551 virtual OSStatus UpdateItems( DataBrowserItemID container, UInt32 numItems,
552 const DataBrowserItemID* items,
553 DataBrowserPropertyID preSortProperty,
554 DataBrowserPropertyID propertyID ) ;
555 virtual OSStatus AddItems( DataBrowserItemID container, UInt32 numItems,
556 const DataBrowserItemID* items,
557 DataBrowserPropertyID preSortProperty ) ;
558 virtual OSStatus RemoveItems( DataBrowserItemID container, UInt32 numItems,
559 const DataBrowserItemID* items,
560 DataBrowserPropertyID preSortProperty ) ;
561 virtual OSStatus RevealItem( DataBrowserItemID item,
562 DataBrowserPropertyID propertyID,
563 DataBrowserRevealOptions options ) ;
564 virtual OSStatus GetSelectionAnchor( DataBrowserItemID * first, DataBrowserItemID * last ) ;
565 virtual bool IsItemSelected( DataBrowserItemID item ) ;
566 virtual OSStatus SetSelectedItems(UInt32 numItems,
567 const DataBrowserItemID * items,
568 DataBrowserSetOption operation ) ;
569
570 // to be moved into a tab control class
571
572 virtual OSStatus SetTabEnabled( SInt16 tabNo , bool enable ) ;
573 protected :
574 ControlRef m_controlRef ;
575 wxFont m_font ;
576 long m_windowStyle ;
577 wxWindow* m_peer ;
578 } ;
579
580 #if wxMAC_USE_CORE_GRAPHICS
581
582 class WXDLLEXPORT wxMacCGPath : public wxGraphicPath
583 {
584 DECLARE_NO_COPY_CLASS(wxMacCGPath)
585 public :
586 wxMacCGPath() ;
587 ~wxMacCGPath() ;
588
589 // Starts a new subpath at
590 void MoveToPoint( wxCoord x1 , wxCoord y1 ) ;
591 void AddLineToPoint( wxCoord x1 , wxCoord y1 ) ;
592 void AddRectangle( wxCoord x, wxCoord y, wxCoord w, wxCoord h ) ;
593 void AddCircle( wxCoord x, wxCoord y , wxCoord r ) ;
594
595 // closes the current subpath
596 void CloseSubpath() ;
597
598 CGPathRef GetPath() const ;
599 private :
600 CGMutablePathRef m_path ;
601 } ;
602
603 class WXDLLEXPORT wxMacCGContext : public wxGraphicContext
604 {
605 DECLARE_NO_COPY_CLASS(wxMacCGContext)
606
607 public:
608 wxMacCGContext( CGrafPtr port ) ;
609 wxMacCGContext( CGContextRef cgcontext ) ;
610 wxMacCGContext() ;
611 ~wxMacCGContext() ;
612
613 virtual void Clip( const wxRegion &region ) ;
614 virtual void StrokePath( const wxGraphicPath *p ) ;
615 virtual void DrawPath( const wxGraphicPath *p , int fillStyle = wxWINDING_RULE ) ;
616 virtual void FillPath( const wxGraphicPath *p , const wxColor &fillColor , int fillStyle = wxWINDING_RULE ) ;
617
618 virtual wxGraphicPath* CreatePath() ;
619 virtual void SetPen( const wxPen &pen ) ;
620 virtual void SetBrush( const wxBrush &brush ) ;
621 CGContextRef GetNativeContext() ;
622 void SetNativeContext( CGContextRef cg ) ;
623 CGPathDrawingMode GetDrawingMode() const { return m_mode ; }
624 private:
625 CGContextRef m_cgContext ;
626 CGrafPtr m_qdPort ;
627 CGPathDrawingMode m_mode ;
628 wxPen m_pen ;
629 wxBrush m_brush ;
630 } ;
631
632 CGColorSpaceRef wxMacGetGenericRGBColorSpace(void) ;
633 void wxMacMemoryBufferReleaseProc(void *info, const void *data, size_t size) ;
634
635 #endif // wxMAC_USE_CORE_GRAPHICS
636
637 class WXDLLEXPORT wxBitmapRefData: public wxGDIRefData
638 {
639 DECLARE_NO_COPY_CLASS(wxBitmapRefData)
640
641 friend class WXDLLEXPORT wxIcon;
642 friend class WXDLLEXPORT wxCursor;
643 public:
644 wxBitmapRefData(int width , int height , int depth);
645 wxBitmapRefData();
646 ~wxBitmapRefData();
647
648 void Free() ;
649 bool Ok() const { return m_ok ; }
650 void SetOk( bool isOk) { m_ok = isOk ; }
651
652 void SetWidth( int width ) { m_width = width ; }
653 void SetHeight( int height ) { m_height = height ; }
654 void SetDepth( int depth ) { m_depth = depth ; }
655
656 int GetWidth() const { return m_width ; }
657 int GetHeight() const { return m_height ; }
658 int GetDepth() const { return m_depth ; }
659
660 void *GetRawAccess() const ;
661 void *BeginRawAccess() ;
662 void EndRawAccess() ;
663
664 bool HasAlpha() const { return m_hasAlpha ; }
665 void UseAlpha( bool useAlpha ) ;
666
667 public:
668 #if wxUSE_PALETTE
669 wxPalette m_bitmapPalette;
670 #endif // wxUSE_PALETTE
671
672 wxMask * m_bitmapMask; // Optional mask
673 #if wxMAC_USE_CORE_GRAPHICS
674 CGImageRef CGImageCreate() const ;
675 #endif
676
677 // returns true if the bitmap has a size that
678 // can be natively transferred into a true icon
679 // if no is returned GetIconRef will still produce
680 // an icon but it will be generated via a PICT and
681 // rescaled to 16 x 16
682 bool HasNativeSize() ;
683
684 // caller should increase ref count if needed longer
685 // than the bitmap exists
686 IconRef GetIconRef() ;
687
688 // returns a Pict from the bitmap content
689 PicHandle GetPictHandle() ;
690 GWorldPtr GetHBITMAP(GWorldPtr * mask = NULL ) const ;
691 void UpdateAlphaMask() const ;
692
693 private :
694 bool Create(int width , int height , int depth) ;
695 void Init() ;
696
697 int m_width;
698 int m_height;
699 int m_bytesPerRow ;
700 int m_depth;
701 bool m_hasAlpha;
702 wxMemoryBuffer m_memBuf ;
703 int m_rawAccessCount ;
704 bool m_ok;
705 #if wxMAC_USE_CORE_GRAPHICS
706 mutable CGImageRef m_cgImageRef ;
707 #endif
708 IconRef m_iconRef ;
709 PicHandle m_pictHandle ;
710 GWorldPtr m_hBitmap;
711 GWorldPtr m_hMaskBitmap ;
712 wxMemoryBuffer m_maskMemBuf ;
713 int m_maskBytesPerRow ;
714 };
715
716 class WXDLLEXPORT wxIconRefData : public wxGDIRefData
717 {
718 public:
719 wxIconRefData() ;
720 wxIconRefData( WXHICON ) ;
721 virtual ~wxIconRefData() { Free(); }
722
723 void Init() ;
724 virtual void Free();
725
726 void SetWidth( int width ) { m_width = width ; }
727 void SetHeight( int height ) { m_height = height ; }
728
729 int GetWidth() const { return m_width ; }
730 int GetHeight() const { return m_height ; }
731
732 WXHICON GetHICON() const { return (WXHICON) m_iconRef ; }
733 private :
734 IconRef m_iconRef ;
735 int m_width ;
736 int m_height ;
737 };
738
739 #endif // wxUSE_GUI
740
741 //---------------------------------------------------------------------------
742 // wxMac string conversions
743 //---------------------------------------------------------------------------
744
745 void wxMacSetupConverters() ;
746 void wxMacCleanupConverters() ;
747
748 void wxMacStringToPascal( const wxString&from , StringPtr to ) ;
749 wxString wxMacMakeStringFromPascal( ConstStringPtr from ) ;
750
751 // toplevel.cpp
752
753 ControlRef wxMacFindControlUnderMouse( Point location , WindowRef window , ControlPartCode *outPart ) ;
754
755 // filefn.cpp
756
757 wxString wxMacFSRefToPath( const FSRef *fsRef , CFStringRef additionalPathComponent = NULL ) ;
758 OSStatus wxMacPathToFSRef( const wxString&path , FSRef *fsRef ) ;
759 wxString wxMacHFSUniStrToString( ConstHFSUniStr255Param uniname ) ;
760
761 #endif
762 // _WX_PRIVATE_H_