1 /////////////////////////////////////////////////////////////////////////////
2 // Name: wx/osx/carbon/private.h
3 // Purpose: Private declarations: as this header is only included by
4 // wxWidgets itself, it may contain identifiers which don't start
6 // Author: Stefan Csomor
10 // Copyright: (c) Stefan Csomor
11 // Licence: wxWindows licence
12 /////////////////////////////////////////////////////////////////////////////
14 #ifndef _WX_PRIVATE_H_
15 #define _WX_PRIVATE_H_
17 #include "wx/osx/core/private.h"
19 #include <Carbon/Carbon.h>
21 #if MAC_OS_X_VERSION_MAX_ALLOWED < MAC_OS_X_VERSION_10_5
22 typedef UInt32 URefCon
;
23 typedef SInt32 SRefCon
;
28 #include "wx/osx/uma.h"
30 #include "wx/listbox.h"
31 #include "wx/osx/dc.h"
32 #include "wx/osx/dcclient.h"
33 #include "wx/osx/dcmemory.h"
37 #if MAC_OS_X_VERSION_MIN_REQUIRED < MAC_OS_X_VERSION_10_5
38 bool wxMacConvertEventToRecord( EventRef event
, EventRecord
*rec
);
41 // TODO REMOVE WXDLLIMPEXP_CORE wxNonOwnedWindow* wxFindWindowFromWXWindow( WXWindow inWindow );
46 WXDLLIMPEXP_BASE wxString
wxMacFSSpec2MacFilename( const FSSpec
*spec
);
47 WXDLLIMPEXP_BASE
void wxMacFilename2FSSpec( const wxString
&path
, FSSpec
*spec
);
50 WXDLLIMPEXP_BASE wxString
wxMacFindFolderNoSeparator(short vRefNum
,
52 Boolean createFolder
);
53 WXDLLIMPEXP_BASE wxString
wxMacFindFolder(short vRefNum
,
55 Boolean createFolder
);
57 template<typename T
> EventParamType
wxMacGetEventParamType() { wxFAIL_MSG( wxT("Unknown Param Type") ); return 0; }
58 template<> inline EventParamType wxMacGetEventParamType
<HIShapeRef
>() { return typeHIShapeRef
; }
59 template<> inline EventParamType wxMacGetEventParamType
<RgnHandle
>() { return typeQDRgnHandle
; }
60 template<> inline EventParamType wxMacGetEventParamType
<ControlRef
>() { return typeControlRef
; }
61 template<> inline EventParamType wxMacGetEventParamType
<WindowRef
>() { return typeWindowRef
; }
62 template<> inline EventParamType wxMacGetEventParamType
<MenuRef
>() { return typeMenuRef
; }
63 template<> inline EventParamType wxMacGetEventParamType
<EventRef
>() { return typeEventRef
; }
64 template<> inline EventParamType wxMacGetEventParamType
<Point
>() { return typeQDPoint
; }
65 template<> inline EventParamType wxMacGetEventParamType
<Rect
>() { return typeQDRectangle
; }
66 template<> inline EventParamType wxMacGetEventParamType
<Boolean
>() { return typeBoolean
; }
67 template<> inline EventParamType wxMacGetEventParamType
<SInt16
>() { return typeSInt16
; }
68 template<> inline EventParamType wxMacGetEventParamType
<SInt32
>() { return typeSInt32
; }
69 template<> inline EventParamType wxMacGetEventParamType
<UInt32
>() { return typeUInt32
; }
70 template<> inline EventParamType wxMacGetEventParamType
<RGBColor
>() { return typeRGBColor
; }
71 template<> inline EventParamType wxMacGetEventParamType
<HICommand
>() { return typeHICommand
; }
72 template<> inline EventParamType wxMacGetEventParamType
<HIPoint
>() { return typeHIPoint
; }
73 template<> inline EventParamType wxMacGetEventParamType
<HISize
>() { return typeHISize
; }
74 template<> inline EventParamType wxMacGetEventParamType
<HIRect
>() { return typeHIRect
; }
75 template<> inline EventParamType wxMacGetEventParamType
<void*>() { return typeVoidPtr
; }
76 template<> inline EventParamType wxMacGetEventParamType
<CFDictionaryRef
>() { return typeCFDictionaryRef
; }
77 template<> inline EventParamType wxMacGetEventParamType
<Collection
>() { return typeCollection
; }
78 template<> inline EventParamType wxMacGetEventParamType
<CGContextRef
>() { return typeCGContextRef
; }
81 template<> EventParamType wxMacGetEventParamType<GrafPtr>() { return typeGrafPtr; }
82 template<> EventParamType wxMacGetEventParamType<OSStatus>() { return typeOSStatus; }
83 template<> EventParamType wxMacGetEventParamType<CFIndex>() { return typeCFIndex; }
84 template<> EventParamType wxMacGetEventParamType<GWorldPtr>() { return typeGWorldPtr; }
87 class WXDLLIMPEXP_CORE wxMacCarbonEvent
97 wxMacCarbonEvent( EventRef event
, bool release
= false )
103 wxMacCarbonEvent(UInt32 inClassID
,UInt32 inKind
,EventTime inWhen
= 0 /*now*/,EventAttributes inAttributes
=kEventAttributeNone
)
106 verify_noerr( MacCreateEvent( NULL
, inClassID
, inKind
,inWhen
,inAttributes
,&m_eventRef
) );
113 ReleaseEvent( m_eventRef
);
116 OSStatus
Create(UInt32 inClassID
,UInt32 inKind
,EventTime inWhen
= 0 /*now*/,EventAttributes inAttributes
=kEventAttributeNone
)
118 verify( (m_eventRef
== NULL
) || m_release
);
119 if ( m_eventRef
&& m_release
)
121 ReleaseEvent( m_eventRef
);
125 OSStatus err
= MacCreateEvent( NULL
, inClassID
, inKind
,inWhen
,inAttributes
,&m_eventRef
);
131 OSStatus
GetParameter( EventParamName inName
, EventParamType inDesiredType
, UInt32 inBufferSize
, void * outData
);
133 template <typename T
> OSStatus
GetParameter( EventParamName inName
, EventParamType type
, T
*data
)
135 return GetParameter( inName
, type
, sizeof( T
) , data
);
137 template <typename T
> OSStatus
GetParameter( EventParamName inName
, T
*data
)
139 return GetParameter
<T
>( inName
, wxMacGetEventParamType
<T
>() , data
);
142 template <typename T
> T
GetParameter( EventParamName inName
)
145 verify_noerr( GetParameter
<T
>( inName
, &value
) );
148 template <typename T
> T
GetParameter( EventParamName inName
, EventParamType inDesiredType
)
151 verify_noerr( GetParameter
<T
>( inName
, inDesiredType
, &value
) );
155 OSStatus
SetParameter( EventParamName inName
, EventParamType inType
, UInt32 inSize
, const void * inData
);
156 template <typename T
> OSStatus
SetParameter( EventParamName inName
, EventParamType inDesiredType
, const T
*data
)
158 return SetParameter( inName
, inDesiredType
, sizeof( T
) , data
);
160 template <typename T
> OSStatus
SetParameter( EventParamName inName
, EventParamType inDesiredType
, const T
& data
)
162 return SetParameter
<T
>( inName
, inDesiredType
, &data
);
164 template <typename T
> OSStatus
SetParameter( EventParamName inName
, const T
*data
)
166 return SetParameter
<T
>( inName
, wxMacGetEventParamType
<T
>() , data
);
168 template <typename T
> OSStatus
SetParameter( EventParamName inName
, const T
& data
)
170 return SetParameter
<T
>( inName
, wxMacGetEventParamType
<T
>() , &data
);
174 return ::GetEventClass( m_eventRef
);
178 return ::GetEventKind( m_eventRef
);
182 return ::GetEventTime( m_eventRef
);
186 return EventTimeToTicks( GetTime() );
188 OSStatus
SetCurrentTime( )
190 return ::SetEventTime( m_eventRef
, GetCurrentEventTime() );
192 OSStatus
SetTime( EventTime when
)
194 return ::SetEventTime( m_eventRef
, when
);
196 operator EventRef () { return m_eventRef
; }
198 bool IsValid() { return m_eventRef
!= 0; }
206 class WXDLLIMPEXP_FWD_CORE wxMacToolTipTimer
;
208 class WXDLLIMPEXP_CORE wxMacToolTip
214 void Setup( WindowRef window
, const wxString
& text
, const wxPoint
& localPosition
) ;
229 PicHandle m_backpict
;
233 wxMacToolTipTimer
* m_timer
;
235 wxCFStringRef m_helpTextRef
;
240 WXDLLIMPEXP_CORE
void wxMacCreateBitmapButton( ControlButtonContentInfo
*info
, const wxBitmap
& bitmap
, int forceType
= 0 );
241 WXDLLIMPEXP_CORE
void wxMacReleaseBitmapButton( ControlButtonContentInfo
*info
);
243 #define MAC_WXHBITMAP(a) (GWorldPtr(a))
244 #define MAC_WXHMETAFILE(a) (PicHandle(a))
245 #define MAC_WXHICON(a) (IconRef(a))
246 #define MAC_WXHCURSOR(a) (CursHandle(a))
247 #define MAC_WXHRGN(a) (RgnHandle(a))
248 #define MAC_WXHWND(a) (WindowPtr(a))
249 #define MAC_WXRECPTR(a) ((Rect*)a)
250 #define MAC_WXPOINTPTR(a) ((Point*)a)
251 #define MAC_WXHMENU(a) ((MenuHandle)a)
253 struct wxOpaqueWindowRef
255 wxOpaqueWindowRef( WindowRef ref
) { m_data
= ref
; }
256 operator WindowRef() { return m_data
; }
261 WXDLLIMPEXP_CORE
void wxMacRectToNative( const wxRect
*wx
, Rect
*n
);
262 WXDLLIMPEXP_CORE
void wxMacNativeToRect( const Rect
*n
, wxRect
* wx
);
263 WXDLLIMPEXP_CORE
void wxMacPointToNative( const wxPoint
* wx
, Point
*n
);
264 WXDLLIMPEXP_CORE
void wxMacNativeToPoint( const Point
*n
, wxPoint
* wx
);
266 WXDLLIMPEXP_CORE wxMenu
* wxFindMenuFromMacMenu(MenuRef inMenuRef
);
268 WXDLLIMPEXP_CORE
int wxMacCommandToId( UInt32 macCommandId
);
269 WXDLLIMPEXP_CORE UInt32
wxIdToMacCommand( int wxId
);
270 WXDLLIMPEXP_CORE wxMenu
* wxFindMenuFromMacCommand( const HICommand
&macCommandId
, wxMenuItem
* &item
);
272 WXDLLIMPEXP_CORE
pascal OSStatus
wxMacTopLevelMouseEventHandler( EventHandlerCallRef handler
, EventRef event
, void *data
);
273 WXDLLIMPEXP_CORE Rect
wxMacGetBoundsForControl( wxWindowMac
* window
, const wxPoint
& pos
, const wxSize
&size
, bool adjustForOrigin
= true );
275 ControlActionUPP
GetwxMacLiveScrollbarActionProc();
277 // additional optional event defines
279 #if MAC_OS_X_VERSION_MAX_ALLOWED < MAC_OS_X_VERSION_10_5
281 kEventControlFocusPartChanged
= 164
285 class WXDLLIMPEXP_CORE wxMacControl
: public wxWidgetImpl
288 wxMacControl( wxWindowMac
* peer
, bool isRootControl
= false );
290 virtual ~wxMacControl();
294 void SetReferenceInNativeControl();
295 static wxMacControl
* GetReferenceFromNativeControl(ControlRef control
);
297 virtual ControlRef
* GetControlRefAddr() { return &m_controlRef
; }
298 virtual ControlRef
GetControlRef() const { return m_controlRef
; }
300 virtual WXWidget
GetWXWidget() const { return (WXWidget
) m_controlRef
; }
302 virtual bool IsVisible() const;
304 virtual void Raise();
306 virtual void Lower();
308 virtual void ScrollRect( const wxRect
*rect
, int dx
, int dy
);
310 virtual void GetContentArea( int &left
, int &top
, int &width
, int &height
) const;
311 virtual void Move(int x
, int y
, int width
, int height
);
312 virtual void GetPosition( int &x
, int &y
) const;
313 virtual void GetSize( int &width
, int &height
) const;
314 virtual void SetControlSize( wxWindowVariant variant
) ;
316 // where is in native window relative coordinates
317 virtual void SetNeedsDisplay( const wxRect
* where
= NULL
);
318 virtual bool GetNeedsDisplay() const;
320 virtual bool CanFocus() const;
321 // return true if successful
322 virtual bool SetFocus();
323 virtual bool HasFocus() const;
325 void RemoveFromParent();
326 void Embed( wxWidgetImpl
*parent
);
328 void SetDefaultButton( bool isDefault
);
330 void SetLabel( const wxString
& title
, wxFontEncoding encoding
);
332 void SetCursor( const wxCursor
& cursor
);
336 wxInt32
GetValue() const;
337 void SetValue( wxInt32 v
);
338 wxBitmap
GetBitmap() const;
339 void SetBitmap( const wxBitmap
& bitmap
);
340 void SetBitmapPosition( wxDirection dir
);
341 void SetupTabs( const wxNotebook
¬ebook
);
343 void GetBestRect( wxRect
*r
) const;
344 bool IsEnabled() const;
345 void Enable( bool enable
);
346 bool ButtonClickDidStateChange() { return false ;}
347 void SetMinimum( wxInt32 v
);
348 void SetMaximum( wxInt32 v
);
350 void SetScrollThumb( wxInt32 value
, wxInt32 thumbSize
);
352 // temp convenience methods
354 void GetBestRect( Rect
*r
) const;
356 void operator= (ControlRef c) { m_controlRef = c; }
357 operator ControlRef () { return m_controlRef; }
358 operator ControlRef * () { return &m_controlRef; }
360 // accessing data and values
362 virtual OSStatus
SetData( ControlPartCode inPartCode
, ResType inTag
, Size inSize
, const void * inData
);
363 virtual OSStatus
GetData( ControlPartCode inPartCode
, ResType inTag
, Size inBufferSize
, void * inOutBuffer
, Size
* outActualSize
) const;
364 virtual OSStatus
GetDataSize( ControlPartCode inPartCode
, ResType inTag
, Size
* outActualSize
) const;
365 virtual OSStatus
SendEvent( EventRef ref
, OptionBits inOptions
= 0 );
366 virtual OSStatus
SendHICommand( HICommand
&command
, OptionBits inOptions
= 0 );
368 virtual OSStatus
SendHICommand( UInt32 commandID
, OptionBits inOptions
= 0 );
370 virtual wxInt32
GetMaximum() const;
371 virtual wxInt32
GetMinimum() const;
373 virtual void SetValueAndRange( SInt32 value
, SInt32 minimum
, SInt32 maximum
);
374 virtual void SetRange( SInt32 minimum
, SInt32 maximum
);
378 Size
GetDataSize( ControlPartCode inPartCode
, ResType inTag
) const
381 verify_noerr( GetDataSize( inPartCode
, inTag
, &sz
) );
384 template <typename T
> OSStatus
SetData( ControlPartCode inPartCode
, ResType inTag
, const T
*data
)
386 return SetData( inPartCode
, inTag
, sizeof( T
) , data
);
388 template <typename T
> OSStatus
SetData( ControlPartCode inPartCode
, ResType inTag
, const T
& data
)
390 return SetData( inPartCode
, inTag
, sizeof( T
) , &data
);
392 template <typename T
> OSStatus
SetData( ResType inTag
, const T
*data
)
394 return SetData( kControlEntireControl
, inTag
, sizeof( T
) , data
);
396 template <typename T
> OSStatus
SetData( ResType inTag
, const T
& data
)
398 return SetData( kControlEntireControl
, inTag
, sizeof( T
) , &data
);
400 template <typename T
> OSStatus
GetData( ControlPartCode inPartCode
, ResType inTag
, T
*data
) const
403 return GetData( inPartCode
, inTag
, sizeof( T
) , data
, &dummy
);
405 template <typename T
> T
GetData( ControlPartCode inPartCode
, ResType inTag
) const
408 OSStatus err
= GetData
<T
>( inPartCode
, inTag
, &value
);
412 wxFAIL_MSG( wxString::Format(wxT("GetData Failed for Part [%i] and Tag [%i]"),
413 inPartCode
, (int)inTag
) );
418 template <typename T
> OSStatus
GetData( ResType inTag
, T
*data
) const
421 return GetData( kControlEntireControl
, inTag
, sizeof( T
) , data
, &dummy
);
423 template <typename T
> T
GetData( ResType inTag
) const
425 return GetData
<T
>( kControlEntireControl
, inTag
);
428 // Flash the control for the specified amount of time
430 virtual void VisibilityChanged( bool shown
);
431 virtual void SuperChangedPosition();
434 virtual void SetFont( const wxFont
& font
, const wxColour
& foreground
, long windowStyle
, bool ignoreBlack
= true );
435 virtual void SetBackgroundColour( const wxColour
& col
);
436 virtual bool SetBackgroundStyle(wxBackgroundStyle style
);
437 virtual ControlPartCode
HandleKey( SInt16 keyCode
, SInt16 charCode
, EventModifiers modifiers
);
438 void SetActionProc( ControlActionUPP actionProc
);
439 SInt32
GetViewSize() const;
441 virtual void SetVisibility( bool visible
);
443 virtual bool IsActive() const;
445 // invalidates this control and all children
446 virtual void InvalidateWithChildren();
447 virtual void SetDrawingEnabled( bool enable
);
449 // in native parent window relative coordinates
451 virtual void GetRectInWindowCoords( Rect
*r
);
454 virtual void GetFeatures( UInt32
*features
);
456 // to be moved into a tab control class
458 virtual OSStatus
SetTabEnabled( SInt16 tabNo
, bool enable
);
460 virtual void InstallEventHandler( WXWidget control
= NULL
);
462 WXEVENTHANDLERREF m_macControlEventHandler
;
463 ControlRef m_controlRef
;
466 DECLARE_DYNAMIC_CLASS_NO_COPY(wxMacControl
)
469 // ============================================================================
470 // DataBrowser Wrapper
471 // ============================================================================
473 // basing on DataBrowserItemIDs
476 class WXDLLIMPEXP_CORE wxMacDataBrowserControl
: public wxMacControl
479 wxMacDataBrowserControl( wxWindow
* peer
, const wxPoint
& pos
, const wxSize
& size
, long style
);
480 wxMacDataBrowserControl() {}
482 OSStatus
SetCallbacks( const DataBrowserCallbacks
*callbacks
);
484 OSStatus
GetItemCount( DataBrowserItemID container
,
486 DataBrowserItemState state
,
487 ItemCount
*numItems
) const;
489 OSStatus
GetItems( DataBrowserItemID container
,
491 DataBrowserItemState state
,
495 OSStatus
AddColumn( DataBrowserListViewColumnDesc
*columnDesc
,
496 DataBrowserTableViewColumnIndex position
);
498 OSStatus
RemoveColumn( DataBrowserTableViewColumnIndex position
);
500 OSStatus
AutoSizeColumns();
502 OSStatus
SetHasScrollBars( bool horiz
, bool vert
);
503 OSStatus
SetHiliteStyle( DataBrowserTableViewHiliteStyle hiliteStyle
);
505 OSStatus
SetHeaderButtonHeight( UInt16 height
);
506 OSStatus
GetHeaderButtonHeight( UInt16
*height
);
508 OSStatus
UpdateItems( DataBrowserItemID container
, UInt32 numItems
,
509 const DataBrowserItemID
*items
,
510 DataBrowserPropertyID preSortProperty
,
511 DataBrowserPropertyID propertyID
) const;
513 OSStatus
AddItems( DataBrowserItemID container
, UInt32 numItems
,
514 const DataBrowserItemID
*items
,
515 DataBrowserPropertyID preSortProperty
);
516 OSStatus
RemoveItems( DataBrowserItemID container
, UInt32 numItems
,
517 const DataBrowserItemID
*items
,
518 DataBrowserPropertyID preSortProperty
);
519 OSStatus
RevealItem( DataBrowserItemID item
,
520 DataBrowserPropertyID propertyID
,
521 DataBrowserRevealOptions options
) const;
523 OSStatus
SetSelectionFlags( DataBrowserSelectionFlags
);
524 OSStatus
GetSelectionAnchor( DataBrowserItemID
*first
, DataBrowserItemID
*last
) const;
525 bool IsItemSelected( DataBrowserItemID item
) const;
526 OSStatus
SetSelectedItems( UInt32 numItems
,
527 const DataBrowserItemID
*items
,
528 DataBrowserSetOption operation
);
530 OSStatus
GetItemID( DataBrowserTableViewRowIndex row
,
531 DataBrowserItemID
* item
) const;
532 OSStatus
GetItemRow( DataBrowserItemID item
,
533 DataBrowserTableViewRowIndex
* row
) const;
535 OSStatus
SetDefaultRowHeight( UInt16 height
);
536 OSStatus
GetDefaultRowHeight( UInt16
* height
) const;
538 OSStatus
SetRowHeight( DataBrowserItemID item
, UInt16 height
);
539 OSStatus
GetRowHeight( DataBrowserItemID item
, UInt16
*height
) const;
541 OSStatus
GetColumnWidth( DataBrowserPropertyID column
, UInt16
*width
) const;
542 OSStatus
SetColumnWidth( DataBrowserPropertyID column
, UInt16 width
);
544 OSStatus
GetDefaultColumnWidth( UInt16
*width
) const;
545 OSStatus
SetDefaultColumnWidth( UInt16 width
);
547 OSStatus
GetColumnCount( UInt32
* numColumns
) const;
549 OSStatus
GetColumnIDFromIndex( DataBrowserTableViewColumnIndex position
, DataBrowserTableViewColumnID
* id
);
551 OSStatus
GetColumnPosition( DataBrowserPropertyID column
, DataBrowserTableViewColumnIndex
*position
) const;
552 OSStatus
SetColumnPosition( DataBrowserPropertyID column
, DataBrowserTableViewColumnIndex position
);
554 OSStatus
GetScrollPosition( UInt32
*top
, UInt32
*left
) const;
555 OSStatus
SetScrollPosition( UInt32 top
, UInt32 left
);
557 OSStatus
GetSortProperty( DataBrowserPropertyID
*column
) const;
558 OSStatus
SetSortProperty( DataBrowserPropertyID column
);
560 OSStatus
GetSortOrder( DataBrowserSortOrder
*order
) const;
561 OSStatus
SetSortOrder( DataBrowserSortOrder order
);
563 OSStatus
GetPropertyFlags( DataBrowserPropertyID property
, DataBrowserPropertyFlags
*flags
) const;
564 OSStatus
SetPropertyFlags( DataBrowserPropertyID property
, DataBrowserPropertyFlags flags
);
566 OSStatus
GetHeaderDesc( DataBrowserPropertyID property
, DataBrowserListViewHeaderDesc
*desc
) const;
567 OSStatus
SetHeaderDesc( DataBrowserPropertyID property
, DataBrowserListViewHeaderDesc
*desc
);
569 OSStatus
SetDisclosureColumn( DataBrowserPropertyID property
, Boolean expandableRows
);
571 OSStatus
GetItemPartBounds( DataBrowserItemID item
, DataBrowserPropertyID property
, DataBrowserPropertyPart part
, Rect
* bounds
);
574 static pascal void DataBrowserItemNotificationProc(
576 DataBrowserItemID itemID
,
577 DataBrowserItemNotification message
,
578 DataBrowserItemDataRef itemData
);
580 virtual void ItemNotification(
581 DataBrowserItemID itemID
,
582 DataBrowserItemNotification message
,
583 DataBrowserItemDataRef itemData
) = 0;
585 static pascal OSStatus
DataBrowserGetSetItemDataProc(
587 DataBrowserItemID itemID
,
588 DataBrowserPropertyID property
,
589 DataBrowserItemDataRef itemData
,
590 Boolean changeValue
);
592 virtual OSStatus
GetSetItemData(
593 DataBrowserItemID itemID
,
594 DataBrowserPropertyID property
,
595 DataBrowserItemDataRef itemData
,
596 Boolean changeValue
) = 0;
598 static pascal Boolean
DataBrowserCompareProc(
600 DataBrowserItemID itemOneID
,
601 DataBrowserItemID itemTwoID
,
602 DataBrowserPropertyID sortProperty
);
604 virtual Boolean
CompareItems(DataBrowserItemID itemOneID
,
605 DataBrowserItemID itemTwoID
,
606 DataBrowserPropertyID sortProperty
) = 0;
607 DECLARE_ABSTRACT_CLASS(wxMacDataBrowserControl
)
610 // ============================================================================
611 // Higher-level Databrowser
612 // ============================================================================
614 // basing on data item objects
619 class wxMacDataItemBrowserControl
;
620 class wxMacListBoxItem
;
622 const DataBrowserPropertyID kTextColumnId
= 1024;
623 const DataBrowserPropertyID kNumericOrderColumnId
= 1025;
625 // for multi-column controls, we will use this + the column ID to identify the
626 // column. We don't use kTextColumnId there, and ideally the two should merge.
627 const DataBrowserPropertyID kMinColumnId
= 1050;
629 // base API for high-level databrowser operations
631 // base class for databrowser items
638 class WXDLLIMPEXP_CORE wxMacDataItem
642 virtual ~wxMacDataItem();
646 class WXDLLIMPEXP_CORE wxMacDataItem
650 virtual ~wxMacDataItem();
652 virtual bool IsLessThan(wxMacDataItemBrowserControl
*owner
,
653 const wxMacDataItem
*,
654 DataBrowserPropertyID property
) const;
656 // returns true if access was successful, otherwise false
657 virtual OSStatus
GetSetData(wxMacDataItemBrowserControl
*owner
,
658 DataBrowserPropertyID property
,
659 DataBrowserItemDataRef itemData
,
662 virtual void Notification(wxMacDataItemBrowserControl
*owner
,
663 DataBrowserItemNotification message
,
664 DataBrowserItemDataRef itemData
) const;
666 void SetOrder( SInt32 order
);
667 SInt32
GetOrder() const;
676 SortOrder_Text_Ascending
,
677 SortOrder_Text_Descending
680 typedef wxMacDataItem
* wxMacDataItemPtr
;
681 const wxMacDataItemPtr wxMacDataBrowserRootContainer
= NULL
;
682 typedef void * wxListColumnId
;
684 WX_DEFINE_USER_EXPORTED_ARRAY_PTR(wxMacDataItemPtr
, wxArrayMacDataItemPtr
, class WXDLLIMPEXP_CORE
);
686 class WXDLLIMPEXP_CORE wxMacDataItemBrowserControl
: public wxMacDataBrowserControl
689 wxMacDataItemBrowserControl( wxWindow
* peer
, const wxPoint
& pos
, const wxSize
& size
, long style
);
690 wxMacDataItemBrowserControl() {}
691 // create a list item (can be a subclass of wxMacListBoxItem)
693 unsigned int GetItemCount(const wxMacDataItem
* container
, bool recurse
, DataBrowserItemState state
) const;
694 void GetItems(const wxMacDataItem
* container
, bool recurse
,
695 DataBrowserItemState state
, wxArrayMacDataItemPtr
&items
) const;
697 unsigned int GetSelectedItemCount( const wxMacDataItem
* container
, bool recurse
) const;
699 unsigned int GetLineFromItem(const wxMacDataItem
*item
) const;
700 wxMacDataItem
* GetItemFromLine(unsigned int n
) const;
702 void UpdateItem(const wxMacDataItem
*container
, const wxMacDataItem
*item
,
703 DataBrowserPropertyID property
) const;
704 void UpdateItems(const wxMacDataItem
*container
, wxArrayMacDataItemPtr
&items
,
705 DataBrowserPropertyID property
) const;
707 void InsertColumn(int colId
, DataBrowserPropertyType colType
,
708 const wxString
& title
, SInt16 just
= teFlushDefault
, int defaultWidth
= -1);
710 int GetColumnWidth(int colId
);
711 void SetColumnWidth(int colId
, int width
);
713 void AddItem(wxMacDataItem
*container
, wxMacDataItem
*item
);
714 void AddItems(wxMacDataItem
*container
, wxArrayMacDataItemPtr
&items
);
716 void RemoveAllItems(wxMacDataItem
*container
);
717 void RemoveItem(wxMacDataItem
*container
, wxMacDataItem
* item
);
718 void RemoveItems(wxMacDataItem
*container
, wxArrayMacDataItemPtr
&items
);
720 void SetSelectedItem( wxMacDataItem
* item
, DataBrowserSetOption option
);
721 void SetSelectedItems( wxArrayMacDataItemPtr
&items
, DataBrowserSetOption option
);
722 void SetSelectedAllItems( DataBrowserSetOption option
);
723 Boolean
IsItemSelected( const wxMacDataItem
* item
) const;
725 void RevealItem( wxMacDataItem
* item
, DataBrowserRevealOptions options
);
727 void GetSelectionAnchor( wxMacDataItemPtr
* first
, wxMacDataItemPtr
* last
) const;
731 virtual void MacDelete( unsigned int n
);
732 virtual void MacInsert( unsigned int n
, wxMacDataItem
* item
);
733 virtual void MacClear();
737 virtual unsigned int MacGetCount() const;
741 // as we are getting the same events for human and API selection we have to suppress
742 // events in the latter case, since this will be used from many subclasses we keep it here
744 bool IsSelectionSuppressed() const { return m_suppressSelection
; }
745 bool SuppressSelection( bool suppress
);
749 virtual wxClientDataType
GetClientDataType() const;
750 virtual void SetClientDataType(wxClientDataType clientDataItemsType
);
751 //virtual ListSortOrder GetSortOrder() const;
752 //virtual void SetSortOrder(const ListSortOrder sort);
758 ListSortOrder m_sortOrder
;
759 wxClientDataType m_clientDataItemsType
;
761 // ID aware base methods, should be 'final' ie not changed in subclasses
763 virtual Boolean
CompareItems(DataBrowserItemID itemOneID
,
764 DataBrowserItemID itemTwoID
,
765 DataBrowserPropertyID sortProperty
);
767 virtual OSStatus
GetSetItemData(DataBrowserItemID itemID
,
768 DataBrowserPropertyID property
,
769 DataBrowserItemDataRef itemData
,
770 Boolean changeValue
);
772 virtual void ItemNotification(
773 DataBrowserItemID itemID
,
774 DataBrowserItemNotification message
,
775 DataBrowserItemDataRef itemData
);
780 bool m_suppressSelection
;
781 DECLARE_DYNAMIC_CLASS_NO_COPY(wxMacDataItemBrowserControl
)
784 class WXDLLIMPEXP_CORE wxMacDataItemBrowserSelectionSuppressor
787 wxMacDataItemBrowserSelectionSuppressor(wxMacDataItemBrowserControl
*browser
);
788 ~wxMacDataItemBrowserSelectionSuppressor();
793 wxMacDataItemBrowserControl
* m_browser
;
796 // ============================================================================
797 // platform listbox implementation
798 // ============================================================================
800 // exposed for reuse in wxCheckListBox
802 class WXDLLIMPEXP_CORE wxMacListBoxItem
: public wxMacDataItem
807 virtual ~wxMacListBoxItem();
809 virtual OSStatus
GetSetData(wxMacDataItemBrowserControl
*owner
,
810 DataBrowserPropertyID property
,
811 DataBrowserItemDataRef itemData
,
814 virtual void Notification(wxMacDataItemBrowserControl
*owner
,
815 DataBrowserItemNotification message
,
816 DataBrowserItemDataRef itemData
) const;
820 class WXDLLIMPEXP_CORE wxMacDataBrowserColumn
: public wxListWidgetColumn
823 wxMacDataBrowserColumn( DataBrowserPropertyID propertyId
, DataBrowserPropertyType colType
, bool editable
)
824 : m_property(propertyId
), m_editable(editable
), m_type( colType
)
827 ~wxMacDataBrowserColumn()
830 DataBrowserPropertyID
GetProperty() const { return m_property
; }
832 bool IsEditable() const { return m_editable
; }
834 DataBrowserPropertyType
GetType() const { return m_type
; }
837 DataBrowserPropertyID m_property
;
839 DataBrowserPropertyType m_type
;
842 WX_DEFINE_ARRAY_PTR(wxMacDataBrowserColumn
*, wxArrayMacDataBrowserColumns
);
845 class WXDLLIMPEXP_CORE wxMacDataBrowserCellValue
: public wxListWidgetCellValue
848 wxMacDataBrowserCellValue(DataBrowserItemDataRef data
) : m_data(data
) {}
849 virtual ~wxMacDataBrowserCellValue() {}
851 virtual void Set( CFStringRef value
);
852 virtual void Set( const wxString
& value
);
853 virtual void Set( int value
) ;
854 virtual void Check( bool check
);
856 virtual int GetIntValue() const ;
857 virtual wxString
GetStringValue() const ;
859 DataBrowserItemDataRef m_data
;
863 class WXDLLIMPEXP_CORE wxMacDataBrowserListControl
: public wxMacDataItemBrowserControl
, public wxListWidgetImpl
866 wxMacDataBrowserListControl( wxWindow
*peer
, const wxPoint
& pos
, const wxSize
& size
, long style
);
867 wxMacDataBrowserListControl() {}
868 virtual ~wxMacDataBrowserListControl();
870 // wxListWidgetImpl Methods
872 wxListWidgetColumn
* InsertTextColumn( unsigned int pos
, const wxString
& title
, bool editable
= false,
873 wxAlignment just
= wxALIGN_LEFT
, int defaultWidth
= -1) ;
874 wxListWidgetColumn
* InsertCheckColumn( unsigned int pos
, const wxString
& title
, bool editable
= false,
875 wxAlignment just
= wxALIGN_LEFT
, int defaultWidth
= -1) ;
877 wxMacDataBrowserColumn
* DoInsertColumn( unsigned int pos
, DataBrowserPropertyID property
,
878 const wxString
& title
, bool editable
,
879 DataBrowserPropertyType colType
, SInt16 just
, int width
);
882 virtual void ListDelete( unsigned int n
);
883 virtual void ListInsert( unsigned int n
);
884 virtual void ListClear();
888 virtual void ListDeselectAll();
889 virtual void ListSetSelection( unsigned int n
, bool select
, bool multi
= false );
890 virtual int ListGetSelection() const;
891 virtual int ListGetSelections( wxArrayInt
& aSelections
) const;
892 virtual bool ListIsSelected( unsigned int n
) const;
896 virtual void ListScrollTo( unsigned int n
);
900 virtual unsigned int ListGetCount() const;
902 virtual void UpdateLine( unsigned int n
, wxListWidgetColumn
* col
= NULL
);
903 virtual void UpdateLineToEnd( unsigned int n
) ;
907 wxMacDataBrowserColumn
* GetColumnFromProperty( DataBrowserPropertyID
);
910 virtual void ItemNotification(
911 DataBrowserItemID itemID
,
912 DataBrowserItemNotification message
,
913 DataBrowserItemDataRef itemData
);
916 wxArrayMacDataBrowserColumns m_columns
;
919 DECLARE_DYNAMIC_CLASS_NO_COPY(wxMacDataBrowserListControl
)
922 // ============================================================================
923 // graphics implementation
924 // ============================================================================
926 // draw the image 'upside down' corrected as HIViewDrawCGImage does
928 OSStatus WXDLLIMPEXP_CORE
wxMacDrawCGImage(
929 CGContextRef inContext
,
930 const HIRect
* inBounds
,
931 CGImageRef inImage
) ;
933 CGColorRef WXDLLIMPEXP_CORE
wxMacCreateCGColorFromHITheme( ThemeBrush brush
) ;
937 #define wxMAC_DEFINE_PROC_GETTER( UPP , x ) \
940 static UPP sHandler = NULL; \
941 if ( sHandler == NULL ) \
942 sHandler = New##UPP( x ); \
946 //---------------------------------------------------------------------------
947 // wxMac string conversions
948 //---------------------------------------------------------------------------
950 void wxMacSetupConverters();
951 void wxMacCleanupConverters();
957 WXDLLIMPEXP_BASE wxString
wxMacFSRefToPath( const FSRef
*fsRef
, CFStringRef additionalPathComponent
= NULL
);
958 WXDLLIMPEXP_BASE OSStatus
wxMacPathToFSRef( const wxString
&path
, FSRef
*fsRef
);
959 WXDLLIMPEXP_BASE wxString
wxMacHFSUniStrToString( ConstHFSUniStr255Param uniname
);
961 //---------------------------------------------------------------------------
962 // cocoa bridging utilities
963 //---------------------------------------------------------------------------
965 bool wxMacInitCocoa();
967 typedef Cursor ClassicCursor
;
975 const short kwxCursorBullseye
= 0;
976 const short kwxCursorBlank
= 1;
977 const short kwxCursorPencil
= 2;
978 const short kwxCursorMagnifier
= 3;
979 const short kwxCursorNoEntry
= 4;
980 const short kwxCursorPaintBrush
= 5;
981 const short kwxCursorPointRight
= 6;
982 const short kwxCursorPointLeft
= 7;
983 const short kwxCursorQuestionArrow
= 8;
984 const short kwxCursorRightArrow
= 9;
985 const short kwxCursorSizeNS
= 10;
986 const short kwxCursorSize
= 11;
987 const short kwxCursorSizeNESW
= 12;
988 const short kwxCursorSizeNWSE
= 13;
989 const short kwxCursorRoller
= 14;
990 const short kwxCursorLast
= kwxCursorRoller
;
992 // exposing our fallback cursor map
994 extern ClassicCursor gMacCursors
[];
1002 class wxNonOwnedWindowCarbonImpl
: public wxNonOwnedWindowImpl
1005 wxNonOwnedWindowCarbonImpl( wxNonOwnedWindow
* nonownedwnd
) ;
1007 wxNonOwnedWindowCarbonImpl();
1008 virtual ~wxNonOwnedWindowCarbonImpl();
1010 virtual void WillBeDestroyed() ;
1011 void Create( wxWindow
* parent
, const wxPoint
& pos
, const wxSize
& size
,
1012 long style
, long extraStyle
, const wxString
& name
) ;
1013 void Create( wxWindow
* parent
, WXWindow nativeWindow
);
1015 WXWindow
GetWXWindow() const;
1018 bool Show(bool show
);
1019 bool ShowWithEffect(bool show
, wxShowEffect effect
, unsigned timeout
);
1023 bool SetTransparent(wxByte alpha
);
1024 bool SetBackgroundColour(const wxColour
& col
);
1025 void SetExtraStyle( long exStyle
);
1026 bool SetBackgroundStyle(wxBackgroundStyle style
);
1027 bool CanSetTransparent();
1028 void MoveWindow(int x
, int y
, int width
, int height
);
1029 void GetPosition( int &x
, int &y
) const;
1030 void GetSize( int &width
, int &height
) const;
1031 void GetContentArea( int &left
, int &top
, int &width
, int &height
) const;
1033 bool SetShape(const wxRegion
& region
);
1035 virtual void SetTitle( const wxString
& title
, wxFontEncoding encoding
) ;
1037 virtual bool IsMaximized() const;
1039 virtual bool IsIconized() const;
1041 virtual void Iconize( bool iconize
);
1043 virtual void Maximize(bool maximize
);
1045 virtual bool IsFullScreen() const;
1047 virtual bool ShowFullScreen(bool show
, long style
);
1049 virtual void ShowWithoutActivating();
1051 virtual void RequestUserAttention(int flags
);
1053 virtual void ScreenToWindow( int *x
, int *y
);
1055 virtual void WindowToScreen( int *x
, int *y
);
1056 virtual bool IsActive();
1059 bool MacGetUnifiedAppearance() const ;
1060 void MacChangeWindowAttributes( wxUint32 attributesToSet
, wxUint32 attributesToClear
) ;
1061 wxUint32
MacGetWindowAttributes() const ;
1062 void MacSetMetalAppearance( bool set
) ;
1063 bool MacGetMetalAppearance() const ;
1064 void MacSetUnifiedAppearance( bool set
);
1066 WXEVENTHANDLERREF
MacGetEventHandler() { return m_macEventHandler
; }
1068 wxNonOwnedWindow
* GetWXPeer() { return m_wxPeer
; }
1070 void MacInstallTopLevelWindowEventHandler();
1072 WXEVENTHANDLERREF m_macEventHandler
;
1073 WindowRef m_macWindow
;
1074 void * m_macFullScreenData
;
1075 DECLARE_DYNAMIC_CLASS_NO_COPY(wxNonOwnedWindowCarbonImpl
)