1 /////////////////////////////////////////////////////////////////////////////
2 // Name: wx/osx/core/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_CORE_H_
15 #define _WX_PRIVATE_CORE_H_
19 #include <CoreFoundation/CoreFoundation.h>
21 #include "wx/osx/core/cfstring.h"
22 #include "wx/osx/core/cfdataref.h"
24 // Define helper macros allowing to insert small snippets of code to be
25 // compiled for high enough OS X version only: this shouldn't be abused for
26 // anything big but it's handy for e.g. specifying OS X 10.6-only protocols in
27 // the Objective C classes declarations when they're not supported under the
29 #if MAC_OS_X_VERSION_MAX_ALLOWED >= MAC_OS_X_VERSION_10_6
30 #define wxOSX_10_6_AND_LATER(x) x
32 #define wxOSX_10_6_AND_LATER(x)
35 // platform specific Clang analyzer support
36 #ifndef NS_RETURNS_RETAINED
37 # if WX_HAS_CLANG_FEATURE(attribute_ns_returns_retained)
38 # define NS_RETURNS_RETAINED __attribute__((ns_returns_retained))
40 # define NS_RETURNS_RETAINED
44 #ifndef CF_RETURNS_RETAINED
45 # if WX_HAS_CLANG_FEATURE(attribute_cf_returns_retained)
46 # define CF_RETURNS_RETAINED __attribute__((cf_returns_retained))
48 # define CF_RETURNS_RETAINED
52 #if ( !wxUSE_GUI && !wxOSX_USE_IPHONE ) || wxOSX_USE_COCOA_OR_CARBON
54 // Carbon functions are currently still used in wxOSX/Cocoa too (including
55 // wxBase part of it).
56 #include <Carbon/Carbon.h>
58 WXDLLIMPEXP_BASE
long UMAGetSystemVersion() ;
60 void WXDLLIMPEXP_CORE
wxMacStringToPascal( const wxString
&from
, unsigned char * to
);
61 wxString WXDLLIMPEXP_CORE
wxMacMakeStringFromPascal( const unsigned char * from
);
63 WXDLLIMPEXP_BASE wxString
wxMacFSRefToPath( const FSRef
*fsRef
, CFStringRef additionalPathComponent
= NULL
);
64 WXDLLIMPEXP_BASE OSStatus
wxMacPathToFSRef( const wxString
&path
, FSRef
*fsRef
);
65 WXDLLIMPEXP_BASE wxString
wxMacHFSUniStrToString( ConstHFSUniStr255Param uniname
);
67 // keycode utils from app.cpp
69 WXDLLIMPEXP_BASE CGKeyCode
wxCharCodeWXToOSX(wxKeyCode code
);
70 WXDLLIMPEXP_BASE
long wxMacTranslateKey(unsigned char key
, unsigned char code
);
77 #include <CoreGraphics/CoreGraphics.h>
79 #include <ApplicationServices/ApplicationServices.h>
82 #include "wx/bitmap.h"
83 #include "wx/window.h"
85 class WXDLLIMPEXP_CORE wxMacCGContextStateSaver
87 wxDECLARE_NO_COPY_CLASS(wxMacCGContextStateSaver
);
90 wxMacCGContextStateSaver( CGContextRef cg
)
93 CGContextSaveGState( cg
);
95 ~wxMacCGContextStateSaver()
97 CGContextRestoreGState( m_cg
);
103 class WXDLLIMPEXP_CORE wxDeferredObjectDeleter
: public wxObject
106 wxDeferredObjectDeleter( wxObject
* obj
) : m_obj(obj
)
109 virtual ~wxDeferredObjectDeleter()
119 WXDLLIMPEXP_CORE CGImageRef
wxMacCreateCGImageFromBitmap( const wxBitmap
& bitmap
);
121 WXDLLIMPEXP_CORE CGDataProviderRef
wxMacCGDataProviderCreateWithCFData( CFDataRef data
);
122 WXDLLIMPEXP_CORE CGDataConsumerRef
wxMacCGDataConsumerCreateWithCFData( CFMutableDataRef data
);
123 WXDLLIMPEXP_CORE CGDataProviderRef
wxMacCGDataProviderCreateWithMemoryBuffer( const wxMemoryBuffer
& buf
);
125 CGColorSpaceRef WXDLLIMPEXP_CORE
wxMacGetGenericRGBColorSpace(void);
129 extern wxWindow
* g_MacLastWindow
;
130 class wxNonOwnedWindow
;
132 // temporary typedef so that no additional casts are necessary within carbon code at the moment
141 WXDLLIMPEXP_CORE wxWindowMac
* wxFindWindowFromWXWidget(WXWidget inControl
);
144 typedef wxMacControl wxWidgetImplType
;
146 typedef wxWidgetImpl wxWidgetImplType
;
150 class wxMenuItemImpl
: public wxObject
153 wxMenuItemImpl( wxMenuItem
* peer
) : m_peer(peer
)
157 virtual ~wxMenuItemImpl() ;
158 virtual void SetBitmap( const wxBitmap
& bitmap
) = 0;
159 virtual void Enable( bool enable
) = 0;
160 virtual void Check( bool check
) = 0;
161 virtual void SetLabel( const wxString
& text
, wxAcceleratorEntry
*entry
) = 0;
162 virtual void Hide( bool hide
= true ) = 0;
164 virtual void * GetHMenuItem() = 0;
166 wxMenuItem
* GetWXPeer() { return m_peer
; }
168 static wxMenuItemImpl
* Create( wxMenuItem
* peer
, wxMenu
*pParentMenu
,
170 const wxString
& text
,
171 wxAcceleratorEntry
*entry
,
172 const wxString
& strHelp
,
176 // handle OS specific menu items if they weren't handled during normal processing
177 virtual bool DoDefault() { return false; }
181 DECLARE_ABSTRACT_CLASS(wxMenuItemImpl
)
184 class wxMenuImpl
: public wxObject
187 wxMenuImpl( wxMenu
* peer
) : m_peer(peer
)
191 virtual ~wxMenuImpl() ;
192 virtual void InsertOrAppend(wxMenuItem
*pItem
, size_t pos
) = 0;
193 virtual void Remove( wxMenuItem
*pItem
) = 0;
195 virtual void MakeRoot() = 0;
197 virtual void SetTitle( const wxString
& text
) = 0;
199 virtual WXHMENU
GetHMenu() = 0;
201 wxMenu
* GetWXPeer() { return m_peer
; }
203 virtual void PopUp( wxWindow
*win
, int x
, int y
) = 0;
205 static wxMenuImpl
* Create( wxMenu
* peer
, const wxString
& title
);
206 static wxMenuImpl
* CreateRootMenu( wxMenu
* peer
);
210 DECLARE_ABSTRACT_CLASS(wxMenuItemImpl
)
215 class WXDLLIMPEXP_CORE wxWidgetImpl
: public wxObject
218 wxWidgetImpl( wxWindowMac
* peer
, bool isRootControl
= false, bool isUserPane
= false );
220 virtual ~wxWidgetImpl();
224 bool IsRootControl() const { return m_isRootControl
; }
226 bool IsUserPane() const { return m_isUserPane
; }
228 wxWindowMac
* GetWXPeer() const { return m_wxPeer
; }
230 bool IsOk() const { return GetWXWidget() != NULL
; }
232 // not only the control itself, but also all its parents must be visible
233 // in order for this function to return true
234 virtual bool IsVisible() const = 0;
235 // set the visibility of this widget (maybe latent)
236 virtual void SetVisibility( bool visible
) = 0;
238 virtual bool ShowWithEffect(bool WXUNUSED(show
),
239 wxShowEffect
WXUNUSED(effect
),
240 unsigned WXUNUSED(timeout
))
245 virtual void Raise() = 0;
247 virtual void Lower() = 0;
249 virtual void ScrollRect( const wxRect
*rect
, int dx
, int dy
) = 0;
251 virtual WXWidget
GetWXWidget() const = 0;
253 virtual void SetBackgroundColour( const wxColour
& col
) = 0;
254 virtual bool SetBackgroundStyle(wxBackgroundStyle style
) = 0;
256 // all coordinates in native parent widget relative coordinates
257 virtual void GetContentArea( int &left
, int &top
, int &width
, int &height
) const = 0;
258 virtual void Move(int x
, int y
, int width
, int height
) = 0;
259 virtual void GetPosition( int &x
, int &y
) const = 0;
260 virtual void GetSize( int &width
, int &height
) const = 0;
261 virtual void SetControlSize( wxWindowVariant variant
) = 0;
262 virtual float GetContentScaleFactor() const
267 // the native coordinates may have an 'aura' for shadows etc, if this is the case the layout
268 // inset indicates on which insets the real control is drawn
269 virtual void GetLayoutInset(int &left
, int &top
, int &right
, int &bottom
) const
271 left
= top
= right
= bottom
= 0;
274 // native view coordinates are topleft to bottom right (flipped regarding CoreGraphics origin)
275 virtual bool IsFlipped() const { return true; }
277 virtual void SetNeedsDisplay( const wxRect
* where
= NULL
) = 0;
278 virtual bool GetNeedsDisplay() const = 0;
280 virtual bool NeedsFocusRect() const;
281 virtual void SetNeedsFocusRect( bool needs
);
283 virtual bool NeedsFrame() const;
284 virtual void SetNeedsFrame( bool needs
);
286 virtual void SetDrawingEnabled(bool enabled
);
288 virtual bool CanFocus() const = 0;
289 // return true if successful
290 virtual bool SetFocus() = 0;
291 virtual bool HasFocus() const = 0;
293 virtual void RemoveFromParent() = 0;
294 virtual void Embed( wxWidgetImpl
*parent
) = 0;
296 virtual void SetDefaultButton( bool isDefault
) = 0;
297 virtual void PerformClick() = 0;
298 virtual void SetLabel( const wxString
& title
, wxFontEncoding encoding
) = 0;
299 #if wxUSE_MARKUP && wxOSX_USE_COCOA
300 virtual void SetLabelMarkup( const wxString
& WXUNUSED(markup
) ) { }
303 virtual void SetCursor( const wxCursor
& cursor
) = 0;
304 virtual void CaptureMouse() = 0;
305 virtual void ReleaseMouse() = 0;
307 virtual void SetDropTarget( wxDropTarget
* WXUNUSED(dropTarget
) ) {}
309 virtual wxInt32
GetValue() const = 0;
310 virtual void SetValue( wxInt32 v
) = 0;
311 virtual wxBitmap
GetBitmap() const = 0;
312 virtual void SetBitmap( const wxBitmap
& bitmap
) = 0;
313 virtual void SetBitmapPosition( wxDirection dir
) = 0;
314 virtual void SetupTabs( const wxNotebook
¬ebook
) {};
315 virtual int TabHitTest( const wxPoint
& WXUNUSED(pt
), long *flags
) {*flags
=1; return -1;};
316 virtual void GetBestRect( wxRect
*r
) const = 0;
317 virtual bool IsEnabled() const = 0;
318 virtual void Enable( bool enable
) = 0;
319 virtual void SetMinimum( wxInt32 v
) = 0;
320 virtual void SetMaximum( wxInt32 v
) = 0;
321 virtual wxInt32
GetMinimum() const = 0;
322 virtual wxInt32
GetMaximum() const = 0;
323 virtual void PulseGauge() = 0;
324 virtual void SetScrollThumb( wxInt32 value
, wxInt32 thumbSize
) = 0;
326 virtual void SetFont( const wxFont
& font
, const wxColour
& foreground
, long windowStyle
, bool ignoreBlack
= true ) = 0;
328 virtual void SetToolTip(wxToolTip
* WXUNUSED(tooltip
)) { }
330 // is the clicked event sent AFTER the state already changed, so no additional
331 // state changing logic is required from the outside
332 virtual bool ButtonClickDidStateChange() = 0;
334 virtual void InstallEventHandler( WXWidget control
= NULL
) = 0;
336 // Mechanism used to keep track of whether a change should send an event
337 // Do SendEvents(false) when starting actions that would trigger programmatic events
338 // and SendEvents(true) at the end of the block.
339 virtual void SendEvents(bool shouldSendEvents
) { m_shouldSendEvents
= shouldSendEvents
; }
340 virtual bool ShouldSendEvents() { return m_shouldSendEvents
; }
342 // static methods for associating native controls and their implementations
345 FindFromWXWidget(WXWidget control
);
347 static void RemoveAssociations( wxWidgetImpl
* impl
);
349 static void Associate( WXWidget control
, wxWidgetImpl
*impl
);
351 static WXWidget
FindFocus();
353 // static creation methods, must be implemented by all toolkits
355 static wxWidgetImplType
* CreateUserPane( wxWindowMac
* wxpeer
,
362 static wxWidgetImplType
* CreateContentView( wxNonOwnedWindow
* now
) ;
364 static wxWidgetImplType
* CreateButton( wxWindowMac
* wxpeer
,
367 const wxString
& label
,
373 static wxWidgetImplType
* CreateDisclosureTriangle( wxWindowMac
* wxpeer
,
376 const wxString
& label
,
382 static wxWidgetImplType
* CreateStaticLine( wxWindowMac
* wxpeer
,
390 static wxWidgetImplType
* CreateGroupBox( wxWindowMac
* wxpeer
,
393 const wxString
& label
,
399 static wxWidgetImplType
* CreateStaticText( wxWindowMac
* wxpeer
,
402 const wxString
& label
,
408 static wxWidgetImplType
* CreateTextControl( wxTextCtrl
* wxpeer
,
411 const wxString
& content
,
417 static wxWidgetImplType
* CreateSearchControl( wxSearchCtrl
* wxpeer
,
420 const wxString
& content
,
426 static wxWidgetImplType
* CreateCheckBox( wxWindowMac
* wxpeer
,
429 const wxString
& label
,
435 static wxWidgetImplType
* CreateRadioButton( wxWindowMac
* wxpeer
,
438 const wxString
& label
,
444 static wxWidgetImplType
* CreateToggleButton( wxWindowMac
* wxpeer
,
447 const wxString
& label
,
453 static wxWidgetImplType
* CreateBitmapToggleButton( wxWindowMac
* wxpeer
,
456 const wxBitmap
& bitmap
,
462 static wxWidgetImplType
* CreateBitmapButton( wxWindowMac
* wxpeer
,
465 const wxBitmap
& bitmap
,
471 static wxWidgetImplType
* CreateTabView( wxWindowMac
* wxpeer
,
479 static wxWidgetImplType
* CreateGauge( wxWindowMac
* wxpeer
,
490 static wxWidgetImplType
* CreateSlider( wxWindowMac
* wxpeer
,
501 static wxWidgetImplType
* CreateSpinButton( wxWindowMac
* wxpeer
,
512 static wxWidgetImplType
* CreateScrollBar( wxWindowMac
* wxpeer
,
520 static wxWidgetImplType
* CreateChoice( wxWindowMac
* wxpeer
,
529 static wxWidgetImplType
* CreateListBox( wxWindowMac
* wxpeer
,
538 static wxWidgetImplType
* CreateComboBox( wxComboBox
* wxpeer
,
548 // converts from Toplevel-Content relative to local
549 static void Convert( wxPoint
*pt
, wxWidgetImpl
*from
, wxWidgetImpl
*to
);
551 bool m_isRootControl
;
553 wxWindowMac
* m_wxPeer
;
554 bool m_needsFocusRect
;
556 bool m_shouldSendEvents
;
558 DECLARE_ABSTRACT_CLASS(wxWidgetImpl
)
562 // the interface to be implemented eg by a listbox
565 class WXDLLIMPEXP_CORE wxListWidgetColumn
568 virtual ~wxListWidgetColumn() {}
571 class WXDLLIMPEXP_CORE wxListWidgetCellValue
574 wxListWidgetCellValue() {}
575 virtual ~wxListWidgetCellValue() {}
577 virtual void Set( CFStringRef value
) = 0;
578 virtual void Set( const wxString
& value
) = 0;
579 virtual void Set( int value
) = 0;
580 virtual void Check( bool check
);
582 virtual bool IsChecked() const;
583 virtual int GetIntValue() const = 0;
584 virtual wxString
GetStringValue() const = 0;
587 class WXDLLIMPEXP_CORE wxListWidgetImpl
590 wxListWidgetImpl() {}
591 virtual ~wxListWidgetImpl() { }
593 virtual wxListWidgetColumn
* InsertTextColumn( unsigned pos
, const wxString
& title
, bool editable
= false,
594 wxAlignment just
= wxALIGN_LEFT
, int defaultWidth
= -1) = 0 ;
595 virtual wxListWidgetColumn
* InsertCheckColumn( unsigned pos
, const wxString
& title
, bool editable
= false,
596 wxAlignment just
= wxALIGN_LEFT
, int defaultWidth
= -1) = 0 ;
600 // TODO will be replaced
601 virtual void ListDelete( unsigned int n
) = 0;
602 virtual void ListInsert( unsigned int n
) = 0;
603 virtual void ListClear() = 0;
607 virtual void ListDeselectAll() = 0;
608 virtual void ListSetSelection( unsigned int n
, bool select
, bool multi
) = 0;
609 virtual int ListGetSelection() const = 0;
610 virtual int ListGetSelections( wxArrayInt
& aSelections
) const = 0;
611 virtual bool ListIsSelected( unsigned int n
) const = 0;
615 virtual void ListScrollTo( unsigned int n
) = 0;
616 virtual void UpdateLine( unsigned int n
, wxListWidgetColumn
* col
= NULL
) = 0;
617 virtual void UpdateLineToEnd( unsigned int n
) = 0;
621 virtual unsigned int ListGetCount() const = 0;
623 virtual int DoListHitTest( const wxPoint
& inpoint
) const = 0;
627 // interface to be implemented by a textcontrol
630 class WXDLLIMPEXP_FWD_CORE wxTextAttr
;
631 class WXDLLIMPEXP_FWD_CORE wxTextEntry
;
633 // common interface for all implementations
634 class WXDLLIMPEXP_CORE wxTextWidgetImpl
638 // Any widgets implementing this interface must be associated with a
639 // wxTextEntry so instead of requiring the derived classes to implement
640 // another (pure) virtual function, just take the pointer to this entry in
641 // our ctor and implement GetTextEntry() ourselves.
642 wxTextWidgetImpl(wxTextEntry
*entry
) : m_entry(entry
) {}
644 virtual ~wxTextWidgetImpl() {}
646 wxTextEntry
*GetTextEntry() const { return m_entry
; }
648 virtual bool CanFocus() const { return true; }
650 virtual wxString
GetStringValue() const = 0 ;
651 virtual void SetStringValue( const wxString
&val
) = 0 ;
652 virtual void SetSelection( long from
, long to
) = 0 ;
653 virtual void GetSelection( long* from
, long* to
) const = 0 ;
654 virtual void WriteText( const wxString
& str
) = 0 ;
656 virtual bool CanClipMaxLength() const { return false; }
657 virtual void SetMaxLength(unsigned long WXUNUSED(len
)) {}
659 virtual bool GetStyle( long position
, wxTextAttr
& style
);
660 virtual void SetStyle( long start
, long end
, const wxTextAttr
& style
) ;
661 virtual void Copy() ;
663 virtual void Paste() ;
664 virtual bool CanPaste() const ;
665 virtual void SetEditable( bool editable
) ;
666 virtual long GetLastPosition() const ;
667 virtual void Replace( long from
, long to
, const wxString
&str
) ;
668 virtual void Remove( long from
, long to
) ;
671 virtual bool HasOwnContextMenu() const
674 virtual bool SetupCursor( const wxPoint
& WXUNUSED(pt
) )
677 virtual void Clear() ;
678 virtual bool CanUndo() const;
679 virtual void Undo() ;
680 virtual bool CanRedo() const;
681 virtual void Redo() ;
682 virtual int GetNumberOfLines() const ;
683 virtual long XYToPosition(long x
, long y
) const;
684 virtual bool PositionToXY(long pos
, long *x
, long *y
) const ;
685 virtual void ShowPosition(long WXUNUSED(pos
)) ;
686 virtual int GetLineLength(long lineNo
) const ;
687 virtual wxString
GetLineText(long lineNo
) const ;
688 virtual void CheckSpelling(bool WXUNUSED(check
)) { }
690 virtual wxSize
GetBestSize() const { return wxDefaultSize
; }
692 virtual bool SetHint(const wxString
& WXUNUSED(hint
)) { return false; }
694 wxTextEntry
* const m_entry
;
696 wxDECLARE_NO_COPY_CLASS(wxTextWidgetImpl
);
699 // common interface for all implementations
700 class WXDLLIMPEXP_CORE wxComboWidgetImpl
704 wxComboWidgetImpl() {}
706 virtual ~wxComboWidgetImpl() {}
708 virtual int GetSelectedItem() const { return -1; }
709 virtual void SetSelectedItem(int WXUNUSED(item
)) {}
711 virtual int GetNumberOfItems() const { return -1; }
713 virtual void InsertItem(int WXUNUSED(pos
), const wxString
& WXUNUSED(item
)) {}
715 virtual void RemoveItem(int WXUNUSED(pos
)) {}
717 virtual void Clear() {}
718 virtual void Popup() {}
719 virtual void Dismiss() {}
721 virtual wxString
GetStringAtIndex(int WXUNUSED(pos
)) const { return wxEmptyString
; }
723 virtual int FindString(const wxString
& WXUNUSED(text
)) const { return -1; }
727 // common interface for buttons
734 virtual ~wxButtonImpl(){}
736 virtual void SetPressedBitmap( const wxBitmap
& bitmap
) = 0;
740 // common interface for search controls
743 class wxSearchWidgetImpl
746 wxSearchWidgetImpl(){}
747 virtual ~wxSearchWidgetImpl(){}
749 // search field options
750 virtual void ShowSearchButton( bool show
) = 0;
751 virtual bool IsSearchButtonVisible() const = 0;
753 virtual void ShowCancelButton( bool show
) = 0;
754 virtual bool IsCancelButtonVisible() const = 0;
756 virtual void SetSearchMenu( wxMenu
* menu
) = 0;
758 virtual void SetDescriptiveText(const wxString
& text
) = 0;
762 // toplevel window implementation class
765 class wxNonOwnedWindowImpl
: public wxObject
768 wxNonOwnedWindowImpl( wxNonOwnedWindow
* nonownedwnd
) : m_wxPeer(nonownedwnd
)
771 wxNonOwnedWindowImpl()
774 virtual ~wxNonOwnedWindowImpl()
778 virtual void WillBeDestroyed()
782 virtual void Create( wxWindow
* parent
, const wxPoint
& pos
, const wxSize
& size
,
783 long style
, long extraStyle
, const wxString
& name
) = 0;
786 virtual WXWindow
GetWXWindow() const = 0;
796 virtual bool Show(bool WXUNUSED(show
))
801 virtual bool ShowWithEffect(bool show
, wxShowEffect
WXUNUSED(effect
), unsigned WXUNUSED(timeout
))
806 virtual void Update()
810 virtual bool SetTransparent(wxByte
WXUNUSED(alpha
))
815 virtual bool SetBackgroundColour(const wxColour
& WXUNUSED(col
) )
820 virtual void SetExtraStyle( long WXUNUSED(exStyle
) )
824 virtual void SetWindowStyleFlag( long WXUNUSED(style
) )
828 virtual bool SetBackgroundStyle(wxBackgroundStyle
WXUNUSED(style
))
833 virtual bool CanSetTransparent()
838 virtual void GetContentArea( int &left
, int &top
, int &width
, int &height
) const = 0;
839 virtual void MoveWindow(int x
, int y
, int width
, int height
) = 0;
840 virtual void GetPosition( int &x
, int &y
) const = 0;
841 virtual void GetSize( int &width
, int &height
) const = 0;
843 virtual bool SetShape(const wxRegion
& WXUNUSED(region
))
848 virtual void SetTitle( const wxString
& title
, wxFontEncoding encoding
) = 0;
850 virtual bool IsMaximized() const = 0;
852 virtual bool IsIconized() const= 0;
854 virtual void Iconize( bool iconize
)= 0;
856 virtual void Maximize(bool maximize
) = 0;
858 virtual bool IsFullScreen() const= 0;
860 virtual void ShowWithoutActivating() { Show(true); }
862 virtual bool ShowFullScreen(bool show
, long style
)= 0;
864 virtual void RequestUserAttention(int flags
) = 0;
866 virtual void ScreenToWindow( int *x
, int *y
) = 0;
868 virtual void WindowToScreen( int *x
, int *y
) = 0;
870 virtual bool IsActive() = 0;
872 wxNonOwnedWindow
* GetWXPeer() { return m_wxPeer
; }
874 static wxNonOwnedWindowImpl
*
875 FindFromWXWindow(WXWindow window
);
877 static void RemoveAssociations( wxNonOwnedWindowImpl
* impl
);
879 static void Associate( WXWindow window
, wxNonOwnedWindowImpl
*impl
);
881 // static creation methods, must be implemented by all toolkits
883 static wxNonOwnedWindowImpl
* CreateNonOwnedWindow( wxNonOwnedWindow
* wxpeer
, wxWindow
* parent
, WXWindow native
) ;
885 static wxNonOwnedWindowImpl
* CreateNonOwnedWindow( wxNonOwnedWindow
* wxpeer
, wxWindow
* parent
, const wxPoint
& pos
, const wxSize
& size
,
886 long style
, long extraStyle
, const wxString
& name
) ;
888 virtual void SetModified(bool WXUNUSED(modified
)) { }
889 virtual bool IsModified() const { return false; }
891 virtual void SetRepresentedFilename(const wxString
& WXUNUSED(filename
)) { }
894 virtual CGFloat
GetWindowLevel() const { return 0.0; }
896 virtual CGWindowLevel
GetWindowLevel() const { return kCGNormalWindowLevel
; }
898 virtual void RestoreWindowLevel() {}
900 wxNonOwnedWindow
* m_wxPeer
;
901 DECLARE_ABSTRACT_CLASS(wxNonOwnedWindowImpl
)
906 //---------------------------------------------------------------------------
907 // cocoa bridging utilities
908 //---------------------------------------------------------------------------
910 bool wxMacInitCocoa();
912 class WXDLLIMPEXP_CORE wxMacAutoreleasePool
915 wxMacAutoreleasePool();
916 ~wxMacAutoreleasePool();
923 void wxMacCocoaRelease( void* obj
);
924 void wxMacCocoaAutorelease( void* obj
);
925 void* wxMacCocoaRetain( void* obj
);
929 // _WX_PRIVATE_CORE_H_