]> git.saurik.com Git - wxWidgets.git/blame - include/wx/mac/carbon/private.h
added a couple of base classes
[wxWidgets.git] / include / wx / mac / carbon / private.h
CommitLineData
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
52inline Fixed IntToFixed( int inInt )
53{
54 return (((SInt32) inInt) << 16);
55}
56
57inline 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 67class wxMacPortStateHelper
8cf73271
SC
68{
69 DECLARE_NO_COPY_CLASS(wxMacPortStateHelper)
fb5246be 70
8cf73271 71public:
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
81private:
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
92class WXDLLEXPORT wxMacPortSaver
93{
94 DECLARE_NO_COPY_CLASS(wxMacPortSaver)
fb5246be 95
4f305456 96public:
54ce9ebb
JS
97 wxMacPortSaver( GrafPtr port );
98 ~wxMacPortSaver();
4f305456 99private :
6cce68ea
SC
100 GrafPtr m_port;
101};
4f305456 102
8cf73271
SC
103class WXDLLEXPORT wxMacPortSetter
104{
105 DECLARE_NO_COPY_CLASS(wxMacPortSetter)
fb5246be 106
8cf73271 107public:
6cce68ea
SC
108 wxMacPortSetter( const wxDC* dc );
109 ~wxMacPortSetter();
8cf73271 110private:
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 119class WXDLLEXPORT wxMacWindowClipper : public wxMacPortSaver
8cf73271
SC
120{
121 DECLARE_NO_COPY_CLASS(wxMacWindowClipper)
fb5246be 122
8cf73271 123public:
6cce68ea
SC
124 wxMacWindowClipper( const wxWindow* win );
125 ~wxMacWindowClipper();
8cf73271 126private:
6cce68ea
SC
127 GrafPtr m_newPort;
128 RgnHandle m_formerClip;
129 RgnHandle m_newClip;
130};
8cf73271 131
01299d56
SC
132class WXDLLEXPORT wxMacWindowStateSaver : public wxMacWindowClipper
133{
134 DECLARE_NO_COPY_CLASS(wxMacWindowStateSaver)
fb5246be 135
01299d56 136public:
6cce68ea
SC
137 wxMacWindowStateSaver( const wxWindow* win );
138 ~wxMacWindowStateSaver();
01299d56 139private:
6cce68ea
SC
140 GrafPtr m_newPort;
141 ThemeDrawingState m_themeDrawingState;
142};
01299d56 143
ddb08e02 144#if wxMAC_USE_CORE_GRAPHICS
fb5246be 145class WXDLLEXPORT wxMacCGContextStateSaver
ddb08e02
SC
146{
147 DECLARE_NO_COPY_CLASS(wxMacCGContextStateSaver)
fb5246be 148
ddb08e02 149public:
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 }
159private:
6cce68ea
SC
160 CGContextRef m_cg;
161};
ddb08e02
SC
162
163#endif
4f305456 164/*
8cf73271
SC
165class wxMacDrawingHelper
166{
167 DECLARE_NO_COPY_CLASS(wxMacDrawingHelper)
fb5246be 168
8cf73271 169public:
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 177private:
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 187bool wxMacConvertEventToRecord( EventRef event , EventRecord *rec);
8cf73271
SC
188
189#endif // wxUSE_GUI
190
191// filefn.h
6cce68ea
SC
192WXDLLEXPORT wxString wxMacFSSpec2MacFilename( const FSSpec *spec );
193WXDLLEXPORT void wxMacFilename2FSSpec( const wxString &path , FSSpec *spec );
8cf73271
SC
194
195// utils.h
17af82fb
VZ
196WXDLLEXPORT wxString wxMacFindFolderNoSeparator(short vRefNum,
197 OSType folderType,
198 Boolean createFolder);
8cf73271
SC
199WXDLLEXPORT wxString wxMacFindFolder(short vRefNum,
200 OSType folderType,
201 Boolean createFolder);
202
6cce68ea
SC
203template<typename T> EventParamType wxMacGetEventParamType() { wxFAIL_MSG( wxT("Unknown Param Type") ); return 0; }
204template<> inline EventParamType wxMacGetEventParamType<RgnHandle>() { return typeQDRgnHandle; }
205template<> inline EventParamType wxMacGetEventParamType<ControlRef>() { return typeControlRef; }
206template<> inline EventParamType wxMacGetEventParamType<WindowRef>() { return typeWindowRef; }
207template<> inline EventParamType wxMacGetEventParamType<MenuRef>() { return typeMenuRef; }
208template<> inline EventParamType wxMacGetEventParamType<EventRef>() { return typeEventRef; }
209template<> inline EventParamType wxMacGetEventParamType<Point>() { return typeQDPoint; }
210template<> inline EventParamType wxMacGetEventParamType<Rect>() { return typeQDRectangle; }
211template<> inline EventParamType wxMacGetEventParamType<Boolean>() { return typeBoolean; }
212template<> inline EventParamType wxMacGetEventParamType<SInt16>() { return typeSInt16; }
213template<> inline EventParamType wxMacGetEventParamType<SInt32>() { return typeSInt32; }
214template<> inline EventParamType wxMacGetEventParamType<UInt32>() { return typeUInt32; }
215template<> inline EventParamType wxMacGetEventParamType<RGBColor>() { return typeRGBColor; }
4f305456 216#if TARGET_API_MAC_OSX
6cce68ea
SC
217template<> inline EventParamType wxMacGetEventParamType<HICommand>() { return typeHICommand; }
218template<> inline EventParamType wxMacGetEventParamType<HIPoint>() { return typeHIPoint; }
219template<> inline EventParamType wxMacGetEventParamType<HISize>() { return typeHISize; }
220template<> inline EventParamType wxMacGetEventParamType<HIRect>() { return typeHIRect; }
221template<> 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 224template<> inline EventParamType wxMacGetEventParamType<CFDictionaryRef>() { return typeCFDictionaryRef; }
b1fd3bad 225#endif
6cce68ea
SC
226template<> inline EventParamType wxMacGetEventParamType<Collection>() { return typeCollection; }
227template<> 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
236class wxMacCarbonEvent
237{
fb5246be 238
4f305456 239public :
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 348protected :
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
357template <typename procType, typename uppType , uppType (*newUPP)(procType) , void (*disposeUPP)(uppType) > class wxMacUPP
358{
359public :
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 371private :
6cce68ea
SC
372 uppType m_upp;
373};
3feeb1e1 374
6cce68ea 375typedef wxMacUPP<NMProcPtr,NMUPP,NewNMUPP,DisposeNMUPP> wxMacNMUPP;
3feeb1e1 376
18b94824
SC
377template <typename refType> class wxMacCFRefHolder
378{
379public :
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 419private :
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
429GWorldPtr wxMacCreateGWorld( int width , int height , int depth );
430void wxMacDestroyGWorld( GWorldPtr gw );
431PicHandle wxMacCreatePict( GWorldPtr gw , GWorldPtr mask = NULL );
432CIconHandle wxMacCreateCIcon(GWorldPtr image , GWorldPtr mask , short dstDepth , short iconSize );
433void wxMacSetColorTableEntry( CTabHandle newColors , int index , int red , int green , int blue );
434CTabHandle wxMacCreateColorTable( int numColors );
20b69855 435*/
6cce68ea
SC
436void wxMacCreateBitmapButton( ControlButtonContentInfo*info , const wxBitmap& bitmap , int forceType = 0 );
437void 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
450struct wxOpaqueWindowRef
451{
6cce68ea
SC
452 wxOpaqueWindowRef( WindowRef ref ) { m_data = ref; }
453 operator WindowRef() { return m_data; }
885fb02f 454private :
6cce68ea
SC
455 WindowRef m_data;
456};
885fb02f 457
6cce68ea
SC
458void wxMacRectToNative( const wxRect *wx , Rect *n );
459void wxMacNativeToRect( const Rect *n , wxRect* wx );
460void wxMacPointToNative( const wxPoint* wx , Point *n );
461void wxMacNativeToPoint( const Point *n , wxPoint* wx );
285b5ce0 462
6cce68ea
SC
463wxWindow * wxFindControlFromMacControl(ControlRef inControl );
464wxTopLevelWindowMac* wxFindWinFromMacWindow( WindowRef inWindow );
465wxMenu* wxFindMenuFromMacMenu(MenuRef inMenuRef);
885fb02f 466
6cce68ea
SC
467int wxMacCommandToId( UInt32 macCommandId );
468UInt32 wxIdToMacCommand( int wxId );
469wxMenu* wxFindMenuFromMacCommand( const HICommand &macCommandId , wxMenuItem* &item );
1628261e 470
6cce68ea
SC
471extern wxWindow* g_MacLastWindow;
472pascal OSStatus wxMacTopLevelMouseEventHandler( EventHandlerCallRef handler , EventRef event , void *data );
473Rect wxMacGetBoundsForControl( wxWindow* window , const wxPoint& pos , const wxSize &size , bool adjustForOrigin = true );
885fb02f 474
6cce68ea 475ControlActionUPP GetwxMacLiveScrollbarActionProc();
285b5ce0 476
86d8b744
SC
477class wxMacControl
478{
479public :
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 );
638protected :
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
654class wxMacDataBrowserControl : public wxMacControl
655{
656public :
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 );
725566ca 674
6cce68ea 675 OSStatus AutoSizeColumns();
725566ca 676
6cce68ea
SC
677 OSStatus SetHasScrollBars( bool horiz, bool vert );
678 OSStatus SetHiliteStyle( DataBrowserTableViewHiliteStyle hiliteStyle );
725566ca 679
6cce68ea
SC
680 OSStatus SetHeaderButtonHeight( UInt16 height );
681 OSStatus GetHeaderButtonHeight( UInt16 *height );
682
683 OSStatus UpdateItems( DataBrowserItemID container, UInt32 numItems,
684 const DataBrowserItemID *items,
685 DataBrowserPropertyID preSortProperty,
686 DataBrowserPropertyID propertyID ) const;
725566ca 687
6cce68ea
SC
688 OSStatus AddItems( DataBrowserItemID container, UInt32 numItems,
689 const DataBrowserItemID *items,
690 DataBrowserPropertyID preSortProperty );
691 OSStatus RemoveItems( DataBrowserItemID container, UInt32 numItems,
692 const DataBrowserItemID *items,
693 DataBrowserPropertyID preSortProperty );
694 OSStatus RevealItem( DataBrowserItemID item,
695 DataBrowserPropertyID propertyID,
696 DataBrowserRevealOptions options ) const;
697
698 OSStatus SetSelectionFlags( DataBrowserSelectionFlags );
699 OSStatus GetSelectionAnchor( DataBrowserItemID *first, DataBrowserItemID *last ) const;
700 bool IsItemSelected( DataBrowserItemID item ) const;
701 OSStatus SetSelectedItems( UInt32 numItems,
702 const DataBrowserItemID *items,
703 DataBrowserSetOption operation );
704
725566ca 705 OSStatus GetItemID( DataBrowserTableViewRowIndex row,
6cce68ea 706 DataBrowserItemID * item ) const;
725566ca 707 OSStatus GetItemRow( DataBrowserItemID item,
6cce68ea 708 DataBrowserTableViewRowIndex * row ) const;
725566ca 709
6cce68ea
SC
710 OSStatus SetDefaultRowHeight( UInt16 height );
711 OSStatus GetDefaultRowHeight( UInt16 * height ) const;
725566ca 712
6cce68ea
SC
713 OSStatus SetRowHeight( DataBrowserItemID item , UInt16 height);
714 OSStatus GetRowHeight( DataBrowserItemID item , UInt16 *height) const;
725566ca 715
6cce68ea
SC
716 OSStatus GetColumnWidth( DataBrowserPropertyID column , UInt16 *width ) const;
717 OSStatus SetColumnWidth( DataBrowserPropertyID column , UInt16 width );
725566ca 718
6cce68ea
SC
719 OSStatus GetDefaultColumnWidth( UInt16 *width ) const;
720 OSStatus SetDefaultColumnWidth( UInt16 width );
725566ca 721
6cce68ea
SC
722 OSStatus GetColumnCount( UInt32* numColumns) const;
723
724 OSStatus GetColumnPosition( DataBrowserPropertyID column, UInt32 *position) const;
725 OSStatus SetColumnPosition( DataBrowserPropertyID column, UInt32 position);
725566ca 726
6cce68ea
SC
727 OSStatus GetScrollPosition( UInt32 *top , UInt32 *left ) const;
728 OSStatus SetScrollPosition( UInt32 top , UInt32 left );
725566ca 729
6cce68ea
SC
730 OSStatus GetSortProperty( DataBrowserPropertyID *column ) const;
731 OSStatus SetSortProperty( DataBrowserPropertyID column );
725566ca 732
6cce68ea
SC
733 OSStatus GetSortOrder( DataBrowserSortOrder *order ) const;
734 OSStatus SetSortOrder( DataBrowserSortOrder order );
725566ca 735
6cce68ea
SC
736 OSStatus GetPropertyFlags( DataBrowserPropertyID property, DataBrowserPropertyFlags *flags ) const;
737 OSStatus SetPropertyFlags( DataBrowserPropertyID property, DataBrowserPropertyFlags flags );
725566ca 738
6cce68ea
SC
739 OSStatus GetHeaderDesc( DataBrowserPropertyID property, DataBrowserListViewHeaderDesc *desc ) const;
740 OSStatus SetHeaderDesc( DataBrowserPropertyID property, DataBrowserListViewHeaderDesc *desc );
725566ca 741
6cce68ea 742 OSStatus SetDisclosureColumn( DataBrowserPropertyID property , Boolean expandableRows );
86d8b744 743protected :
725566ca 744
6cce68ea
SC
745 static pascal void DataBrowserItemNotificationProc(
746 ControlRef browser,
747 DataBrowserItemID itemID,
748 DataBrowserItemNotification message,
749 DataBrowserItemDataRef itemData );
750
751 virtual void ItemNotification(
752 DataBrowserItemID itemID,
753 DataBrowserItemNotification message,
754 DataBrowserItemDataRef itemData) = 0;
755
756 static pascal OSStatus DataBrowserGetSetItemDataProc(
757 ControlRef browser,
758 DataBrowserItemID itemID,
759 DataBrowserPropertyID property,
760 DataBrowserItemDataRef itemData,
761 Boolean changeValue );
762
763 virtual OSStatus GetSetItemData(
764 DataBrowserItemID itemID,
765 DataBrowserPropertyID property,
766 DataBrowserItemDataRef itemData,
767 Boolean changeValue ) = 0;
768
769 static pascal Boolean DataBrowserCompareProc(
725566ca
VZ
770 ControlRef browser,
771 DataBrowserItemID itemOneID,
772 DataBrowserItemID itemTwoID,
6cce68ea 773 DataBrowserPropertyID sortProperty);
725566ca
VZ
774
775 virtual Boolean CompareItems(DataBrowserItemID itemOneID,
776 DataBrowserItemID itemTwoID,
6cce68ea
SC
777 DataBrowserPropertyID sortProperty) = 0;
778};
779
780// ============================================================================
725566ca 781// Higher-level Databrowser
6cce68ea
SC
782// ============================================================================
783//
784// basing on data item objects
785//
786
787// forward decl
788
789class wxMacDataItemBrowserControl;
790
791// base class for databrowser items
792
793class wxMacDataItem
794{
795public :
796 wxMacDataItem();
797 virtual ~wxMacDataItem();
725566ca
VZ
798
799 virtual bool IsLessThan(wxMacDataItemBrowserControl *owner ,
800 const wxMacDataItem*,
6cce68ea 801 DataBrowserPropertyID property) const;
725566ca 802
6cce68ea 803 // returns true if access was successful, otherwise false
725566ca 804 virtual OSStatus GetSetData(wxMacDataItemBrowserControl *owner ,
6cce68ea
SC
805 DataBrowserPropertyID property,
806 DataBrowserItemDataRef itemData,
807 bool changeValue );
808
725566ca 809 virtual void Notification(wxMacDataItemBrowserControl *owner ,
6cce68ea
SC
810 DataBrowserItemNotification message,
811 DataBrowserItemDataRef itemData ) const;
812};
813
814typedef wxMacDataItem* wxMacDataItemPtr;
815const wxMacDataItemPtr wxMacDataBrowserRootContainer = NULL;
816
817WX_DEFINE_USER_EXPORTED_ARRAY_PTR(wxMacDataItemPtr, wxArrayMacDataItemPtr, class WXDLLIMPEXP_CORE);
818
819class wxMacDataItemBrowserControl : public wxMacDataBrowserControl
820{
821public :
822 wxMacDataItemBrowserControl( wxWindow* peer , const wxPoint& pos, const wxSize& size, long style);
725566ca 823
6cce68ea 824 unsigned int GetItemCount(const wxMacDataItem* container, bool recurse , DataBrowserItemState state) const;
725566ca 825 void GetItems(const wxMacDataItem* container, bool recurse ,
6cce68ea 826 DataBrowserItemState state, wxArrayMacDataItemPtr &items ) const;
725566ca 827
6cce68ea
SC
828 unsigned int GetLineFromItem(const wxMacDataItem *item) const;
829 wxMacDataItem * GetItemFromLine(unsigned int n) const;
725566ca
VZ
830
831 void UpdateItem(const wxMacDataItem *container, const wxMacDataItem *item,
6cce68ea 832 DataBrowserPropertyID property) const;
725566ca 833 void UpdateItems(const wxMacDataItem *container, wxArrayMacDataItemPtr &items,
6cce68ea 834 DataBrowserPropertyID property) const;
725566ca 835
6cce68ea
SC
836 void AddItem(wxMacDataItem *container, wxMacDataItem *item);
837 void AddItems(wxMacDataItem *container, wxArrayMacDataItemPtr &items );
838
839 void RemoveAllItems(wxMacDataItem *container);
840 void RemoveItem(wxMacDataItem *container, wxMacDataItem* item);
841 void RemoveItems(wxMacDataItem *container, wxArrayMacDataItemPtr &items);
725566ca 842
6cce68ea
SC
843 void SetSelectedItem( wxMacDataItem* item , DataBrowserSetOption option);
844 void SetSelectedItems( wxArrayMacDataItemPtr &items , DataBrowserSetOption option);
845 void SetSelectedAllItems( DataBrowserSetOption option);
846 Boolean IsItemSelected( const wxMacDataItem* item) const;
725566ca 847
6cce68ea 848 void RevealItem( wxMacDataItem* item, DataBrowserRevealOptions options);
725566ca 849
6cce68ea 850 void GetSelectionAnchor( wxMacDataItemPtr* first , wxMacDataItemPtr* last) const;
725566ca 851
6cce68ea 852 // item aware methods, to be used in subclasses
725566ca
VZ
853
854 virtual Boolean CompareItems(const wxMacDataItem* itemOneID,
855 const wxMacDataItem* itemTwoID,
6cce68ea
SC
856 DataBrowserPropertyID sortProperty);
857
858 virtual OSStatus GetSetItemData(wxMacDataItem* itemID,
859 DataBrowserPropertyID property,
860 DataBrowserItemDataRef itemData,
861 Boolean changeValue );
862
863 virtual void ItemNotification(
864 const wxMacDataItem* itemID,
865 DataBrowserItemNotification message,
866 DataBrowserItemDataRef itemData);
8b64a7e2
PC
867
868 // as we are getting the same events for human and API selection we have to suppress
869 // events in the latter case, since this will be used from many subclasses we keep it here
870
871 bool IsSelectionSuppressed() const { return m_suppressSelection; }
872 bool SuppressSelection( bool suppress );
873
874protected:
6cce68ea 875 // ID aware base methods, should be 'final' ie not changed in subclasses
725566ca
VZ
876
877 virtual Boolean CompareItems(DataBrowserItemID itemOneID,
878 DataBrowserItemID itemTwoID,
6cce68ea
SC
879 DataBrowserPropertyID sortProperty);
880
881 virtual OSStatus GetSetItemData(DataBrowserItemID itemID,
882 DataBrowserPropertyID property,
883 DataBrowserItemDataRef itemData,
884 Boolean changeValue );
885
886 virtual void ItemNotification(
887 DataBrowserItemID itemID,
888 DataBrowserItemNotification message,
889 DataBrowserItemDataRef itemData);
890
6cce68ea
SC
891private :
892
893 bool m_suppressSelection;
894};
895
896class wxMacDataItemBrowserSelectionSuppressor
897{
898public :
899 wxMacDataItemBrowserSelectionSuppressor(wxMacDataItemBrowserControl *browser);
900 ~wxMacDataItemBrowserSelectionSuppressor();
725566ca 901
6cce68ea
SC
902private :
903
904 bool m_former;
905 wxMacDataItemBrowserControl* m_browser;
906};
907
908// ============================================================================
909// platform listbox implementation
910// ============================================================================
911//
912// exposed for reuse in wxCheckListBox
913
914class wxMacListBoxItem : public wxMacDataItem
915{
916public :
917 wxMacListBoxItem();
725566ca 918
6cce68ea 919 virtual ~wxMacListBoxItem();
725566ca 920
6cce68ea
SC
921 void SetLabel( const wxString& str);
922 const wxString& GetLabel() const;
725566ca
VZ
923
924 virtual bool IsLessThan(wxMacDataItemBrowserControl *owner ,
925 const wxMacDataItem* rhs,
6cce68ea
SC
926 DataBrowserPropertyID sortProperty) const;
927
928 virtual OSStatus GetSetData( wxMacDataItemBrowserControl *owner ,
929 DataBrowserPropertyID property,
930 DataBrowserItemDataRef itemData,
931 bool changeValue );
932
725566ca 933 virtual void Notification(wxMacDataItemBrowserControl *owner ,
6cce68ea
SC
934 DataBrowserItemNotification message,
935 DataBrowserItemDataRef itemData ) const;
725566ca 936
6cce68ea
SC
937 void SetOrder( SInt32 order );
938 SInt32 GetOrder() const;
725566ca 939
6cce68ea
SC
940 void SetData( void* data);
941 void* GetData() const;
942
943private :
944 wxString m_label;
945 wxMacCFStringHolder m_cfLabel;
946 void * m_data;
947 SInt32 m_order;
948};
949
950class wxMacDataBrowserListControl : public wxMacDataItemBrowserControl , public wxMacListControl
951{
952public:
953 wxMacDataBrowserListControl( wxListBox *peer, const wxPoint& pos, const wxSize& size, long style );
954 ~wxMacDataBrowserListControl();
955
956 // create a list item (can be a subclass of wxMacListBoxItem)
957
958 virtual wxMacListBoxItem* CreateItem();
959
960 // add and remove
725566ca 961
6cce68ea
SC
962 void MacDelete( unsigned int n );
963 void MacInsert( unsigned int n, const wxString& item );
964 void MacInsert( unsigned int n, const wxArrayString& items );
965 int MacAppend( const wxString& item );
966 void MacClear();
967
968 // selecting
725566ca 969
6cce68ea
SC
970 void MacDeselectAll();
971 void MacSetSelection( unsigned int n, bool select );
972 int MacGetSelection() const;
973 int MacGetSelections( wxArrayInt& aSelections ) const;
974 bool MacIsSelected( unsigned int n ) const;
975
976 // display
977
978 void MacScrollTo( unsigned int n );
979
980 // accessing content
725566ca 981
6cce68ea
SC
982 void MacSetString( unsigned int n, const wxString& item );
983 void MacSetClientData( unsigned int n, void * data);
984 wxString MacGetString( unsigned int n) const;
985 void * MacGetClientData( unsigned int) const;
986 unsigned int MacGetCount() const;
987
988 // client data
989
990 wxClientDataType GetClientDataType() const;
991 void SetClientDataType(wxClientDataType clientDataItemsType);
992
993 // pointing back
994
995 wxListBox * GetPeer() const;
996private :
997 bool m_stringSorted;
998 wxClientDataType m_clientDataItemsType;
999};
1000
1001// ============================================================================
1002// graphics implementation
1003// ============================================================================
86d8b744 1004
20b69855
SC
1005#if wxMAC_USE_CORE_GRAPHICS
1006
fb5246be 1007class WXDLLEXPORT wxMacCGPath : public wxGraphicPath
20b69855
SC
1008{
1009 DECLARE_NO_COPY_CLASS(wxMacCGPath)
1010public :
6cce68ea
SC
1011 wxMacCGPath();
1012 ~wxMacCGPath();
fb5246be 1013
20b69855 1014 // Starts a new subpath at
6cce68ea
SC
1015 void MoveToPoint( wxCoord x1 , wxCoord y1 );
1016 void AddLineToPoint( wxCoord x1 , wxCoord y1 );
1017 void AddQuadCurveToPoint( wxCoord cx1, wxCoord cy1, wxCoord x1, wxCoord y1 );
1018 void AddRectangle( wxCoord x, wxCoord y, wxCoord w, wxCoord h );
1019 void AddCircle( wxCoord x, wxCoord y , wxCoord r );
fb5246be 1020
20b69855 1021 // closes the current subpath
6cce68ea 1022 void CloseSubpath();
fb5246be 1023
6cce68ea 1024 CGPathRef GetPath() const;
20b69855 1025private :
6cce68ea
SC
1026 CGMutablePathRef m_path;
1027};
20b69855
SC
1028
1029class WXDLLEXPORT wxMacCGContext : public wxGraphicContext
1030{
1031 DECLARE_NO_COPY_CLASS(wxMacCGContext)
fb5246be 1032
20b69855 1033public:
6cce68ea
SC
1034 wxMacCGContext( CGrafPtr port );
1035 wxMacCGContext( CGContextRef cgcontext );
1036 wxMacCGContext();
1037 ~wxMacCGContext();
1038
1039 virtual void Clip( const wxRegion &region );
1040 virtual void StrokePath( const wxGraphicPath *p );
1041 virtual void DrawPath( const wxGraphicPath *p , int fillStyle = wxWINDING_RULE );
1042 virtual void FillPath( const wxGraphicPath *p , const wxColor &fillColor , int fillStyle = wxWINDING_RULE );
1043
1044 virtual wxGraphicPath* CreatePath();
1045 virtual void SetPen( const wxPen &pen ) ;
1046 virtual void SetBrush( const wxBrush &brush );
1047 CGContextRef GetNativeContext();
1048 void SetNativeContext( CGContextRef cg );
1049 CGPathDrawingMode GetDrawingMode() const { return m_mode; }
20b69855 1050private:
6cce68ea
SC
1051 CGContextRef m_cgContext;
1052 CGrafPtr m_qdPort;
1053 CGPathDrawingMode m_mode;
1054 wxPen m_pen;
1055 wxBrush m_brush;
1056};
20b69855 1057
30e77b5c
SC
1058#endif // wxMAC_USE_CORE_GRAPHICS
1059
1060#ifdef __WXMAC_OSX__
1061
6cce68ea
SC
1062CGColorSpaceRef wxMacGetGenericRGBColorSpace(void);
1063void wxMacMemoryBufferReleaseProc(void *info, const void *data, size_t size);
20b69855 1064
30e77b5c 1065#endif
20b69855
SC
1066
1067class WXDLLEXPORT wxBitmapRefData: public wxGDIRefData
1068{
1069 DECLARE_NO_COPY_CLASS(wxBitmapRefData)
fb5246be 1070
20b69855
SC
1071 friend class WXDLLEXPORT wxIcon;
1072 friend class WXDLLEXPORT wxCursor;
1073public:
1074 wxBitmapRefData(int width , int height , int depth);
1075 wxBitmapRefData();
1076 ~wxBitmapRefData();
1077
6cce68ea
SC
1078 void Free();
1079 bool Ok() const { return m_ok; }
1080 void SetOk( bool isOk) { m_ok = isOk; }
fb5246be 1081
6cce68ea
SC
1082 void SetWidth( int width ) { m_width = width; }
1083 void SetHeight( int height ) { m_height = height; }
1084 void SetDepth( int depth ) { m_depth = depth; }
20b69855 1085
6cce68ea
SC
1086 int GetWidth() const { return m_width; }
1087 int GetHeight() const { return m_height; }
1088 int GetDepth() const { return m_depth; }
fb5246be 1089
6cce68ea
SC
1090 void *GetRawAccess() const;
1091 void *BeginRawAccess();
1092 void EndRawAccess();
20b69855 1093
6cce68ea
SC
1094 bool HasAlpha() const { return m_hasAlpha; }
1095 void UseAlpha( bool useAlpha );
20b69855
SC
1096
1097public:
1098#if wxUSE_PALETTE
1099 wxPalette m_bitmapPalette;
1100#endif // wxUSE_PALETTE
fb5246be 1101
20b69855 1102 wxMask * m_bitmapMask; // Optional mask
30e77b5c 1103#ifdef __WXMAC_OSX__
6cce68ea 1104 CGImageRef CGImageCreate() const;
71cc158e 1105#endif
fb5246be 1106
6d2c830a
SC
1107 // returns true if the bitmap has a size that
1108 // can be natively transferred into a true icon
1109 // if no is returned GetIconRef will still produce
1110 // an icon but it will be generated via a PICT and
fb5246be 1111 // rescaled to 16 x 16
6cce68ea 1112 bool HasNativeSize();
fb5246be 1113
6d2c830a
SC
1114 // caller should increase ref count if needed longer
1115 // than the bitmap exists
6cce68ea 1116 IconRef GetIconRef();
fb5246be 1117
6d2c830a 1118 // returns a Pict from the bitmap content
6cce68ea
SC
1119 PicHandle GetPictHandle();
1120 GWorldPtr GetHBITMAP(GWorldPtr * mask = NULL ) const;
1121 void UpdateAlphaMask() const;
71cc158e 1122
20b69855 1123private :
6cce68ea
SC
1124 bool Create(int width , int height , int depth);
1125 void Init();
20b69855
SC
1126
1127 int m_width;
1128 int m_height;
6cce68ea 1129 int m_bytesPerRow;
20b69855
SC
1130 int m_depth;
1131 bool m_hasAlpha;
6cce68ea
SC
1132 wxMemoryBuffer m_memBuf;
1133 int m_rawAccessCount;
20b69855 1134 bool m_ok;
30e77b5c 1135#ifdef __WXMAC_OSX__
6cce68ea 1136 mutable CGImageRef m_cgImageRef;
71cc158e 1137#endif
6cce68ea
SC
1138 IconRef m_iconRef;
1139 PicHandle m_pictHandle;
20b69855 1140 GWorldPtr m_hBitmap;
6cce68ea
SC
1141 GWorldPtr m_hMaskBitmap;
1142 wxMemoryBuffer m_maskMemBuf;
1143 int m_maskBytesPerRow;
20b69855
SC
1144};
1145
20b69855
SC
1146class WXDLLEXPORT wxIconRefData : public wxGDIRefData
1147{
1148public:
6cce68ea
SC
1149 wxIconRefData();
1150 wxIconRefData( WXHICON );
20b69855
SC
1151 virtual ~wxIconRefData() { Free(); }
1152
6cce68ea 1153 void Init();
20b69855 1154 virtual void Free();
ddb08e02 1155
6cce68ea
SC
1156 void SetWidth( int width ) { m_width = width; }
1157 void SetHeight( int height ) { m_height = height; }
ddb08e02 1158
6cce68ea
SC
1159 int GetWidth() const { return m_width; }
1160 int GetHeight() const { return m_height; }
ddb08e02 1161
6cce68ea 1162 WXHICON GetHICON() const { return (WXHICON) m_iconRef; }
20b69855 1163private :
6cce68ea
SC
1164 IconRef m_iconRef;
1165 int m_width;
1166 int m_height;
20b69855
SC
1167};
1168
285b5ce0
SC
1169// toplevel.cpp
1170
6cce68ea 1171ControlRef wxMacFindControlUnderMouse( wxTopLevelWindowMac* toplevelWindow, const Point& location , WindowRef window , ControlPartCode *outPart );
285b5ce0 1172
ecf418ad 1173#ifdef WORDS_BIGENDIAN
725566ca
VZ
1174 inline Rect* wxMacGetPictureBounds( PicHandle pict , Rect* rect )
1175 {
1176 *rect = (**pict).picFrame;
6cce68ea 1177 return rect;
7358f907
SC
1178 }
1179#else
725566ca
VZ
1180 inline Rect* wxMacGetPictureBounds( PicHandle pict , Rect* rect )
1181 {
6cce68ea 1182 return QDGetPictureBounds( pict , rect );
7358f907
SC
1183 }
1184#endif
1185
8cf73271
SC
1186#endif // wxUSE_GUI
1187
285b5ce0
SC
1188#define wxMAC_DEFINE_PROC_GETTER( UPP , x ) \
1189UPP Get##x() \
1190{ \
1191 static UPP sHandler = NULL; \
1192 if ( sHandler == NULL ) \
1193 sHandler = New##UPP( x ); \
1194 return sHandler; \
1195}
1196
8cf73271
SC
1197//---------------------------------------------------------------------------
1198// wxMac string conversions
1199//---------------------------------------------------------------------------
1200
6cce68ea
SC
1201void wxMacSetupConverters();
1202void wxMacCleanupConverters();
8cf73271 1203
6cce68ea
SC
1204void wxMacStringToPascal( const wxString&from , StringPtr to );
1205wxString wxMacMakeStringFromPascal( ConstStringPtr from );
8cf73271 1206
a2b77260
SC
1207// filefn.cpp
1208
6cce68ea
SC
1209wxString wxMacFSRefToPath( const FSRef *fsRef , CFStringRef additionalPathComponent = NULL );
1210OSStatus wxMacPathToFSRef( const wxString&path , FSRef *fsRef );
1211wxString wxMacHFSUniStrToString( ConstHFSUniStr255Param uniname );
aa0cc8a1 1212
8cf73271
SC
1213#endif
1214 // _WX_PRIVATE_H_