]> git.saurik.com Git - wxWidgets.git/blame - include/wx/mac/carbon/private.h
undef wxUSE_THEME_XXX before redefining them to 1 if wxUSE_ALL_THEMES
[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 );
7b514b3b 674
e2bc1d69 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 747protected :
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
793class wxMacDataItemBrowserControl;
e2bc1d69
KO
794class wxMacListBoxItem;
795
e362c2b9
SC
796const DataBrowserPropertyID kTextColumnId = 1024;
797const DataBrowserPropertyID kNumericOrderColumnId = 1025;
e2bc1d69 798
7b514b3b 799// for multi-column controls, we will use this + the column ID to identify the
e2bc1d69 800// column. We don't use kTextColumnId there, and ideally the two should merge.
e362c2b9 801const DataBrowserPropertyID kMinColumnId = 1050;
e2bc1d69
KO
802
803// base API for high-level databrowser operations
804
805class wxMacListControl
806{
807public:
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() { }
7b514b3b 828};
6cce68ea
SC
829
830// base class for databrowser items
831
e2bc1d69
KO
832enum DataItemType {
833 DataItem_Text
834};
835
6cce68ea
SC
836class wxMacDataItem
837{
838public :
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;
7b514b3b 855
e2bc1d69 856 void SetLabel( const wxString& str);
7b514b3b 857 const wxString& GetLabel() const;
e2bc1d69
KO
858
859 void SetOrder( SInt32 order );
860 SInt32 GetOrder() const;
861
862 void SetData( void* data);
863 void* GetData() const;
7b514b3b 864
e2bc1d69 865 void SetColumn( short col );
7b514b3b
VZ
866 short GetColumn();
867
e2bc1d69
KO
868protected :
869 wxString m_label;
870 wxMacCFStringHolder m_cfLabel;
871 void * m_data;
872 SInt32 m_order;
7b514b3b
VZ
873 DataBrowserPropertyID m_colId;
874
e2bc1d69
KO
875};
876
877enum ListSortOrder {
878 SortOrder_None,
879 SortOrder_Text_Ascending,
880 SortOrder_Text_Descending
6cce68ea
SC
881};
882
883typedef wxMacDataItem* wxMacDataItemPtr;
884const wxMacDataItemPtr wxMacDataBrowserRootContainer = NULL;
885
886WX_DEFINE_USER_EXPORTED_ARRAY_PTR(wxMacDataItemPtr, wxArrayMacDataItemPtr, class WXDLLIMPEXP_CORE);
887
e2bc1d69 888class wxMacDataItemBrowserControl : public wxMacDataBrowserControl, public wxMacListControl
6cce68ea
SC
889{
890public :
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;
7b514b3b 900
e2bc1d69 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
3ef4e126
SC
911 void InsertColumn(int colId, DataBrowserPropertyType colType,
912 const wxString& title, SInt16 just = teFlushDefault, int defaultWidth = -1);
7b514b3b 913
e2bc1d69
KO
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 );
7b514b3b
VZ
954
955
e2bc1d69
KO
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 991
7b514b3b 992
8b64a7e2
PC
993
994protected:
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
1016private :
1017
1018 bool m_suppressSelection;
1019};
1020
1021class wxMacDataItemBrowserSelectionSuppressor
1022{
1023public :
1024 wxMacDataItemBrowserSelectionSuppressor(wxMacDataItemBrowserControl *browser);
1025 ~wxMacDataItemBrowserSelectionSuppressor();
725566ca 1026
6cce68ea
SC
1027private :
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
1039class wxMacListBoxItem : public wxMacDataItem
1040{
1041public :
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 1051class wxMacDataBrowserListControl : public wxMacDataItemBrowserControl
6cce68ea
SC
1052{
1053public:
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 1069class WXDLLEXPORT wxMacCGPath : public wxGraphicPath
20b69855
SC
1070{
1071 DECLARE_NO_COPY_CLASS(wxMacCGPath)
1072public :
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
a85ff267
SC
1083 // draws a an arc to two tangents connecting (current) to (x1,y1) and (x1,y1) to (x2,y2)
1084 virtual void AddArcToPoint( wxCoord x1, wxCoord y1 , wxCoord x2, wxCoord y2, wxCoord r ) ;
1085 virtual void AddArc( wxCoord x, wxCoord y, wxCoord r, double startAngle, double endAngle, bool clockwise ) ;
1086
20b69855 1087 // closes the current subpath
6cce68ea 1088 void CloseSubpath();
fb5246be 1089
6cce68ea 1090 CGPathRef GetPath() const;
20b69855 1091private :
6cce68ea
SC
1092 CGMutablePathRef m_path;
1093};
20b69855
SC
1094
1095class WXDLLEXPORT wxMacCGContext : public wxGraphicContext
1096{
1097 DECLARE_NO_COPY_CLASS(wxMacCGContext)
fb5246be 1098
20b69855 1099public:
6cce68ea
SC
1100 wxMacCGContext( CGrafPtr port );
1101 wxMacCGContext( CGContextRef cgcontext );
1102 wxMacCGContext();
d3c7fc99 1103 virtual ~wxMacCGContext();
6cce68ea
SC
1104
1105 virtual void Clip( const wxRegion &region );
1106 virtual void StrokePath( const wxGraphicPath *p );
1107 virtual void DrawPath( const wxGraphicPath *p , int fillStyle = wxWINDING_RULE );
1108 virtual void FillPath( const wxGraphicPath *p , const wxColor &fillColor , int fillStyle = wxWINDING_RULE );
1109
1110 virtual wxGraphicPath* CreatePath();
1111 virtual void SetPen( const wxPen &pen ) ;
1112 virtual void SetBrush( const wxBrush &brush );
1113 CGContextRef GetNativeContext();
1114 void SetNativeContext( CGContextRef cg );
1115 CGPathDrawingMode GetDrawingMode() const { return m_mode; }
a85ff267 1116
7b514b3b
VZ
1117 virtual void Translate( wxCoord dx , wxCoord dy );
1118 virtual void Scale( wxCoord xScale , wxCoord yScale );
a85ff267
SC
1119 virtual void DrawBitmap( const wxBitmap &bmp, wxCoord x, wxCoord y, wxCoord w, wxCoord h );
1120 virtual void DrawIcon( const wxIcon &icon, wxCoord x, wxCoord y, wxCoord w, wxCoord h );
7b514b3b 1121 virtual void PushState();
a85ff267 1122 virtual void PopState();
7b514b3b 1123
a85ff267 1124 virtual void DrawText( const wxString &str, wxCoord x, wxCoord y, double angle ) ;
7b514b3b 1125
a85ff267
SC
1126 virtual void GetTextExtent( const wxString &str, wxCoord *width, wxCoord *height,
1127 wxCoord *descent, wxCoord *externalLeading ) const ;
7b514b3b 1128
a85ff267 1129 virtual void GetPartialTextExtents(const wxString& text, wxArrayInt& widths) const ;
7b514b3b 1130
a85ff267
SC
1131 virtual void SetFont( const wxFont &font ) ;
1132
7b514b3b 1133 virtual void SetTextColor( const wxColour &col ) ;
20b69855 1134private:
6cce68ea
SC
1135 CGContextRef m_cgContext;
1136 CGrafPtr m_qdPort;
1137 CGPathDrawingMode m_mode;
a85ff267 1138 ATSUStyle m_macATSUIStyle ;
6cce68ea
SC
1139 wxPen m_pen;
1140 wxBrush m_brush;
a85ff267 1141 wxColor m_textForegroundColor ;
6cce68ea 1142};
20b69855 1143
30e77b5c
SC
1144#endif // wxMAC_USE_CORE_GRAPHICS
1145
1146#ifdef __WXMAC_OSX__
1147
6cce68ea
SC
1148CGColorSpaceRef wxMacGetGenericRGBColorSpace(void);
1149void wxMacMemoryBufferReleaseProc(void *info, const void *data, size_t size);
20b69855 1150
30e77b5c 1151#endif
20b69855
SC
1152
1153class WXDLLEXPORT wxBitmapRefData: public wxGDIRefData
1154{
1155 DECLARE_NO_COPY_CLASS(wxBitmapRefData)
fb5246be 1156
20b69855
SC
1157 friend class WXDLLEXPORT wxIcon;
1158 friend class WXDLLEXPORT wxCursor;
1159public:
1160 wxBitmapRefData(int width , int height , int depth);
1161 wxBitmapRefData();
d3c7fc99 1162 virtual ~wxBitmapRefData();
20b69855 1163
6cce68ea
SC
1164 void Free();
1165 bool Ok() const { return m_ok; }
1166 void SetOk( bool isOk) { m_ok = isOk; }
fb5246be 1167
6cce68ea
SC
1168 void SetWidth( int width ) { m_width = width; }
1169 void SetHeight( int height ) { m_height = height; }
1170 void SetDepth( int depth ) { m_depth = depth; }
20b69855 1171
6cce68ea
SC
1172 int GetWidth() const { return m_width; }
1173 int GetHeight() const { return m_height; }
1174 int GetDepth() const { return m_depth; }
fb5246be 1175
6cce68ea
SC
1176 void *GetRawAccess() const;
1177 void *BeginRawAccess();
1178 void EndRawAccess();
20b69855 1179
6cce68ea
SC
1180 bool HasAlpha() const { return m_hasAlpha; }
1181 void UseAlpha( bool useAlpha );
20b69855
SC
1182
1183public:
1184#if wxUSE_PALETTE
1185 wxPalette m_bitmapPalette;
1186#endif // wxUSE_PALETTE
fb5246be 1187
20b69855 1188 wxMask * m_bitmapMask; // Optional mask
30e77b5c 1189#ifdef __WXMAC_OSX__
6cce68ea 1190 CGImageRef CGImageCreate() const;
71cc158e 1191#endif
fb5246be 1192
6d2c830a
SC
1193 // returns true if the bitmap has a size that
1194 // can be natively transferred into a true icon
1195 // if no is returned GetIconRef will still produce
1196 // an icon but it will be generated via a PICT and
fb5246be 1197 // rescaled to 16 x 16
6cce68ea 1198 bool HasNativeSize();
fb5246be 1199
6d2c830a
SC
1200 // caller should increase ref count if needed longer
1201 // than the bitmap exists
6cce68ea 1202 IconRef GetIconRef();
fb5246be 1203
6d2c830a 1204 // returns a Pict from the bitmap content
6cce68ea
SC
1205 PicHandle GetPictHandle();
1206 GWorldPtr GetHBITMAP(GWorldPtr * mask = NULL ) const;
1207 void UpdateAlphaMask() const;
71cc158e 1208
20b69855 1209private :
6cce68ea
SC
1210 bool Create(int width , int height , int depth);
1211 void Init();
20b69855
SC
1212
1213 int m_width;
1214 int m_height;
6cce68ea 1215 int m_bytesPerRow;
20b69855
SC
1216 int m_depth;
1217 bool m_hasAlpha;
6cce68ea
SC
1218 wxMemoryBuffer m_memBuf;
1219 int m_rawAccessCount;
20b69855 1220 bool m_ok;
30e77b5c 1221#ifdef __WXMAC_OSX__
6cce68ea 1222 mutable CGImageRef m_cgImageRef;
71cc158e 1223#endif
6cce68ea
SC
1224 IconRef m_iconRef;
1225 PicHandle m_pictHandle;
20b69855 1226 GWorldPtr m_hBitmap;
6cce68ea
SC
1227 GWorldPtr m_hMaskBitmap;
1228 wxMemoryBuffer m_maskMemBuf;
1229 int m_maskBytesPerRow;
20b69855
SC
1230};
1231
20b69855
SC
1232class WXDLLEXPORT wxIconRefData : public wxGDIRefData
1233{
1234public:
6cce68ea
SC
1235 wxIconRefData();
1236 wxIconRefData( WXHICON );
20b69855
SC
1237 virtual ~wxIconRefData() { Free(); }
1238
6cce68ea 1239 void Init();
20b69855 1240 virtual void Free();
ddb08e02 1241
6cce68ea
SC
1242 void SetWidth( int width ) { m_width = width; }
1243 void SetHeight( int height ) { m_height = height; }
ddb08e02 1244
6cce68ea
SC
1245 int GetWidth() const { return m_width; }
1246 int GetHeight() const { return m_height; }
ddb08e02 1247
6cce68ea 1248 WXHICON GetHICON() const { return (WXHICON) m_iconRef; }
20b69855 1249private :
6cce68ea
SC
1250 IconRef m_iconRef;
1251 int m_width;
1252 int m_height;
20b69855
SC
1253};
1254
285b5ce0
SC
1255// toplevel.cpp
1256
6cce68ea 1257ControlRef wxMacFindControlUnderMouse( wxTopLevelWindowMac* toplevelWindow, const Point& location , WindowRef window , ControlPartCode *outPart );
285b5ce0 1258
ecf418ad 1259#ifdef WORDS_BIGENDIAN
725566ca
VZ
1260 inline Rect* wxMacGetPictureBounds( PicHandle pict , Rect* rect )
1261 {
1262 *rect = (**pict).picFrame;
6cce68ea 1263 return rect;
7358f907
SC
1264 }
1265#else
725566ca
VZ
1266 inline Rect* wxMacGetPictureBounds( PicHandle pict , Rect* rect )
1267 {
6cce68ea 1268 return QDGetPictureBounds( pict , rect );
7358f907
SC
1269 }
1270#endif
1271
8cf73271
SC
1272#endif // wxUSE_GUI
1273
285b5ce0
SC
1274#define wxMAC_DEFINE_PROC_GETTER( UPP , x ) \
1275UPP Get##x() \
1276{ \
1277 static UPP sHandler = NULL; \
1278 if ( sHandler == NULL ) \
1279 sHandler = New##UPP( x ); \
1280 return sHandler; \
1281}
1282
8cf73271
SC
1283//---------------------------------------------------------------------------
1284// wxMac string conversions
1285//---------------------------------------------------------------------------
1286
6cce68ea
SC
1287void wxMacSetupConverters();
1288void wxMacCleanupConverters();
8cf73271 1289
6cce68ea
SC
1290void wxMacStringToPascal( const wxString&from , StringPtr to );
1291wxString wxMacMakeStringFromPascal( ConstStringPtr from );
8cf73271 1292
a2b77260
SC
1293// filefn.cpp
1294
6cce68ea
SC
1295wxString wxMacFSRefToPath( const FSRef *fsRef , CFStringRef additionalPathComponent = NULL );
1296OSStatus wxMacPathToFSRef( const wxString&path , FSRef *fsRef );
1297wxString wxMacHFSUniStrToString( ConstHFSUniStr255Param uniname );
aa0cc8a1 1298
8cf73271
SC
1299#endif
1300 // _WX_PRIVATE_H_