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 bool CanFocus() const = 0;
287 // return true if successful
288 virtual bool SetFocus() = 0;
289 virtual bool HasFocus() const = 0;
291 virtual void RemoveFromParent() = 0;
292 virtual void Embed( wxWidgetImpl
*parent
) = 0;
294 virtual void SetDefaultButton( bool isDefault
) = 0;
295 virtual void PerformClick() = 0;
296 virtual void SetLabel( const wxString
& title
, wxFontEncoding encoding
) = 0;
297 #if wxUSE_MARKUP && wxOSX_USE_COCOA
298 virtual void SetLabelMarkup( const wxString
& WXUNUSED(markup
) ) { }
301 virtual void SetCursor( const wxCursor
& cursor
) = 0;
302 virtual void CaptureMouse() = 0;
303 virtual void ReleaseMouse() = 0;
305 virtual void SetDropTarget( wxDropTarget
* WXUNUSED(dropTarget
) ) {}
307 virtual wxInt32
GetValue() const = 0;
308 virtual void SetValue( wxInt32 v
) = 0;
309 virtual wxBitmap
GetBitmap() const = 0;
310 virtual void SetBitmap( const wxBitmap
& bitmap
) = 0;
311 virtual void SetBitmapPosition( wxDirection dir
) = 0;
312 virtual void SetupTabs( const wxNotebook
¬ebook
) =0;
313 virtual void GetBestRect( wxRect
*r
) const = 0;
314 virtual bool IsEnabled() const = 0;
315 virtual void Enable( bool enable
) = 0;
316 virtual void SetMinimum( wxInt32 v
) = 0;
317 virtual void SetMaximum( wxInt32 v
) = 0;
318 virtual wxInt32
GetMinimum() const = 0;
319 virtual wxInt32
GetMaximum() const = 0;
320 virtual void PulseGauge() = 0;
321 virtual void SetScrollThumb( wxInt32 value
, wxInt32 thumbSize
) = 0;
323 virtual void SetFont( const wxFont
& font
, const wxColour
& foreground
, long windowStyle
, bool ignoreBlack
= true ) = 0;
325 virtual void SetToolTip(wxToolTip
* WXUNUSED(tooltip
)) { }
327 // is the clicked event sent AFTER the state already changed, so no additional
328 // state changing logic is required from the outside
329 virtual bool ButtonClickDidStateChange() = 0;
331 virtual void InstallEventHandler( WXWidget control
= NULL
) = 0;
333 // Mechanism used to keep track of whether a change should send an event
334 // Do SendEvents(false) when starting actions that would trigger programmatic events
335 // and SendEvents(true) at the end of the block.
336 virtual void SendEvents(bool shouldSendEvents
) { m_shouldSendEvents
= shouldSendEvents
; }
337 virtual bool ShouldSendEvents() { return m_shouldSendEvents
; }
339 // static methods for associating native controls and their implementations
342 FindFromWXWidget(WXWidget control
);
344 static void RemoveAssociations( wxWidgetImpl
* impl
);
346 static void Associate( WXWidget control
, wxWidgetImpl
*impl
);
348 static WXWidget
FindFocus();
350 // static creation methods, must be implemented by all toolkits
352 static wxWidgetImplType
* CreateUserPane( wxWindowMac
* wxpeer
,
359 static wxWidgetImplType
* CreateContentView( wxNonOwnedWindow
* now
) ;
361 static wxWidgetImplType
* CreateButton( wxWindowMac
* wxpeer
,
364 const wxString
& label
,
370 static wxWidgetImplType
* CreateDisclosureTriangle( wxWindowMac
* wxpeer
,
373 const wxString
& label
,
379 static wxWidgetImplType
* CreateStaticLine( wxWindowMac
* wxpeer
,
387 static wxWidgetImplType
* CreateGroupBox( wxWindowMac
* wxpeer
,
390 const wxString
& label
,
396 static wxWidgetImplType
* CreateStaticText( wxWindowMac
* wxpeer
,
399 const wxString
& label
,
405 static wxWidgetImplType
* CreateTextControl( wxTextCtrl
* wxpeer
,
408 const wxString
& content
,
414 static wxWidgetImplType
* CreateSearchControl( wxSearchCtrl
* wxpeer
,
417 const wxString
& content
,
423 static wxWidgetImplType
* CreateCheckBox( wxWindowMac
* wxpeer
,
426 const wxString
& label
,
432 static wxWidgetImplType
* CreateRadioButton( wxWindowMac
* wxpeer
,
435 const wxString
& label
,
441 static wxWidgetImplType
* CreateToggleButton( wxWindowMac
* wxpeer
,
444 const wxString
& label
,
450 static wxWidgetImplType
* CreateBitmapToggleButton( wxWindowMac
* wxpeer
,
453 const wxBitmap
& bitmap
,
459 static wxWidgetImplType
* CreateBitmapButton( wxWindowMac
* wxpeer
,
462 const wxBitmap
& bitmap
,
468 static wxWidgetImplType
* CreateTabView( wxWindowMac
* wxpeer
,
476 static wxWidgetImplType
* CreateGauge( wxWindowMac
* wxpeer
,
487 static wxWidgetImplType
* CreateSlider( wxWindowMac
* wxpeer
,
498 static wxWidgetImplType
* CreateSpinButton( wxWindowMac
* wxpeer
,
509 static wxWidgetImplType
* CreateScrollBar( wxWindowMac
* wxpeer
,
517 static wxWidgetImplType
* CreateChoice( wxWindowMac
* wxpeer
,
526 static wxWidgetImplType
* CreateListBox( wxWindowMac
* wxpeer
,
535 static wxWidgetImplType
* CreateComboBox( wxComboBox
* wxpeer
,
545 // converts from Toplevel-Content relative to local
546 static void Convert( wxPoint
*pt
, wxWidgetImpl
*from
, wxWidgetImpl
*to
);
548 bool m_isRootControl
;
550 wxWindowMac
* m_wxPeer
;
551 bool m_needsFocusRect
;
553 bool m_shouldSendEvents
;
555 DECLARE_ABSTRACT_CLASS(wxWidgetImpl
)
559 // the interface to be implemented eg by a listbox
562 class WXDLLIMPEXP_CORE wxListWidgetColumn
565 virtual ~wxListWidgetColumn() {}
568 class WXDLLIMPEXP_CORE wxListWidgetCellValue
571 wxListWidgetCellValue() {}
572 virtual ~wxListWidgetCellValue() {}
574 virtual void Set( CFStringRef value
) = 0;
575 virtual void Set( const wxString
& value
) = 0;
576 virtual void Set( int value
) = 0;
577 virtual void Check( bool check
);
579 virtual bool IsChecked() const;
580 virtual int GetIntValue() const = 0;
581 virtual wxString
GetStringValue() const = 0;
584 class WXDLLIMPEXP_CORE wxListWidgetImpl
587 wxListWidgetImpl() {}
588 virtual ~wxListWidgetImpl() { }
590 virtual wxListWidgetColumn
* InsertTextColumn( unsigned pos
, const wxString
& title
, bool editable
= false,
591 wxAlignment just
= wxALIGN_LEFT
, int defaultWidth
= -1) = 0 ;
592 virtual wxListWidgetColumn
* InsertCheckColumn( unsigned pos
, const wxString
& title
, bool editable
= false,
593 wxAlignment just
= wxALIGN_LEFT
, int defaultWidth
= -1) = 0 ;
597 // TODO will be replaced
598 virtual void ListDelete( unsigned int n
) = 0;
599 virtual void ListInsert( unsigned int n
) = 0;
600 virtual void ListClear() = 0;
604 virtual void ListDeselectAll() = 0;
605 virtual void ListSetSelection( unsigned int n
, bool select
, bool multi
) = 0;
606 virtual int ListGetSelection() const = 0;
607 virtual int ListGetSelections( wxArrayInt
& aSelections
) const = 0;
608 virtual bool ListIsSelected( unsigned int n
) const = 0;
612 virtual void ListScrollTo( unsigned int n
) = 0;
613 virtual void UpdateLine( unsigned int n
, wxListWidgetColumn
* col
= NULL
) = 0;
614 virtual void UpdateLineToEnd( unsigned int n
) = 0;
618 virtual unsigned int ListGetCount() const = 0;
620 virtual int DoListHitTest( const wxPoint
& inpoint
) const = 0;
624 // interface to be implemented by a textcontrol
627 class WXDLLIMPEXP_FWD_CORE wxTextAttr
;
628 class WXDLLIMPEXP_FWD_CORE wxTextEntry
;
630 // common interface for all implementations
631 class WXDLLIMPEXP_CORE wxTextWidgetImpl
635 // Any widgets implementing this interface must be associated with a
636 // wxTextEntry so instead of requiring the derived classes to implement
637 // another (pure) virtual function, just take the pointer to this entry in
638 // our ctor and implement GetTextEntry() ourselves.
639 wxTextWidgetImpl(wxTextEntry
*entry
) : m_entry(entry
) {}
641 virtual ~wxTextWidgetImpl() {}
643 wxTextEntry
*GetTextEntry() const { return m_entry
; }
645 virtual bool CanFocus() const { return true; }
647 virtual wxString
GetStringValue() const = 0 ;
648 virtual void SetStringValue( const wxString
&val
) = 0 ;
649 virtual void SetSelection( long from
, long to
) = 0 ;
650 virtual void GetSelection( long* from
, long* to
) const = 0 ;
651 virtual void WriteText( const wxString
& str
) = 0 ;
653 virtual bool CanClipMaxLength() const { return false; }
654 virtual void SetMaxLength(unsigned long WXUNUSED(len
)) {}
656 virtual bool GetStyle( long position
, wxTextAttr
& style
);
657 virtual void SetStyle( long start
, long end
, const wxTextAttr
& style
) ;
658 virtual void Copy() ;
660 virtual void Paste() ;
661 virtual bool CanPaste() const ;
662 virtual void SetEditable( bool editable
) ;
663 virtual long GetLastPosition() const ;
664 virtual void Replace( long from
, long to
, const wxString
&str
) ;
665 virtual void Remove( long from
, long to
) ;
668 virtual bool HasOwnContextMenu() const
671 virtual bool SetupCursor( const wxPoint
& WXUNUSED(pt
) )
674 virtual void Clear() ;
675 virtual bool CanUndo() const;
676 virtual void Undo() ;
677 virtual bool CanRedo() const;
678 virtual void Redo() ;
679 virtual int GetNumberOfLines() const ;
680 virtual long XYToPosition(long x
, long y
) const;
681 virtual bool PositionToXY(long pos
, long *x
, long *y
) const ;
682 virtual void ShowPosition(long WXUNUSED(pos
)) ;
683 virtual int GetLineLength(long lineNo
) const ;
684 virtual wxString
GetLineText(long lineNo
) const ;
685 virtual void CheckSpelling(bool WXUNUSED(check
)) { }
687 virtual wxSize
GetBestSize() const { return wxDefaultSize
; }
689 virtual bool SetHint(const wxString
& WXUNUSED(hint
)) { return false; }
691 wxTextEntry
* const m_entry
;
693 wxDECLARE_NO_COPY_CLASS(wxTextWidgetImpl
);
696 // common interface for all implementations
697 class WXDLLIMPEXP_CORE wxComboWidgetImpl
701 wxComboWidgetImpl() {}
703 virtual ~wxComboWidgetImpl() {}
705 virtual int GetSelectedItem() const { return -1; }
706 virtual void SetSelectedItem(int WXUNUSED(item
)) {}
708 virtual int GetNumberOfItems() const { return -1; }
710 virtual void InsertItem(int WXUNUSED(pos
), const wxString
& WXUNUSED(item
)) {}
712 virtual void RemoveItem(int WXUNUSED(pos
)) {}
714 virtual void Clear() {}
715 virtual void Popup() {}
716 virtual void Dismiss() {}
718 virtual wxString
GetStringAtIndex(int WXUNUSED(pos
)) const { return wxEmptyString
; }
720 virtual int FindString(const wxString
& WXUNUSED(text
)) const { return -1; }
724 // common interface for buttons
731 virtual ~wxButtonImpl(){}
733 virtual void SetPressedBitmap( const wxBitmap
& bitmap
) = 0;
737 // common interface for search controls
740 class wxSearchWidgetImpl
743 wxSearchWidgetImpl(){}
744 virtual ~wxSearchWidgetImpl(){}
746 // search field options
747 virtual void ShowSearchButton( bool show
) = 0;
748 virtual bool IsSearchButtonVisible() const = 0;
750 virtual void ShowCancelButton( bool show
) = 0;
751 virtual bool IsCancelButtonVisible() const = 0;
753 virtual void SetSearchMenu( wxMenu
* menu
) = 0;
755 virtual void SetDescriptiveText(const wxString
& text
) = 0;
759 // toplevel window implementation class
762 class wxNonOwnedWindowImpl
: public wxObject
765 wxNonOwnedWindowImpl( wxNonOwnedWindow
* nonownedwnd
) : m_wxPeer(nonownedwnd
)
768 wxNonOwnedWindowImpl()
771 virtual ~wxNonOwnedWindowImpl()
775 virtual void WillBeDestroyed()
779 virtual void Create( wxWindow
* parent
, const wxPoint
& pos
, const wxSize
& size
,
780 long style
, long extraStyle
, const wxString
& name
) = 0;
783 virtual WXWindow
GetWXWindow() const = 0;
793 virtual bool Show(bool WXUNUSED(show
))
798 virtual bool ShowWithEffect(bool show
, wxShowEffect
WXUNUSED(effect
), unsigned WXUNUSED(timeout
))
803 virtual void Update()
807 virtual bool SetTransparent(wxByte
WXUNUSED(alpha
))
812 virtual bool SetBackgroundColour(const wxColour
& WXUNUSED(col
) )
817 virtual void SetExtraStyle( long WXUNUSED(exStyle
) )
821 virtual void SetWindowStyleFlag( long WXUNUSED(style
) )
825 virtual bool SetBackgroundStyle(wxBackgroundStyle
WXUNUSED(style
))
830 virtual bool CanSetTransparent()
835 virtual void GetContentArea( int &left
, int &top
, int &width
, int &height
) const = 0;
836 virtual void MoveWindow(int x
, int y
, int width
, int height
) = 0;
837 virtual void GetPosition( int &x
, int &y
) const = 0;
838 virtual void GetSize( int &width
, int &height
) const = 0;
840 virtual bool SetShape(const wxRegion
& WXUNUSED(region
))
845 virtual void SetTitle( const wxString
& title
, wxFontEncoding encoding
) = 0;
847 virtual bool IsMaximized() const = 0;
849 virtual bool IsIconized() const= 0;
851 virtual void Iconize( bool iconize
)= 0;
853 virtual void Maximize(bool maximize
) = 0;
855 virtual bool IsFullScreen() const= 0;
857 virtual void ShowWithoutActivating() { Show(true); }
859 virtual bool ShowFullScreen(bool show
, long style
)= 0;
861 virtual void RequestUserAttention(int flags
) = 0;
863 virtual void ScreenToWindow( int *x
, int *y
) = 0;
865 virtual void WindowToScreen( int *x
, int *y
) = 0;
867 virtual bool IsActive() = 0;
869 wxNonOwnedWindow
* GetWXPeer() { return m_wxPeer
; }
871 static wxNonOwnedWindowImpl
*
872 FindFromWXWindow(WXWindow window
);
874 static void RemoveAssociations( wxNonOwnedWindowImpl
* impl
);
876 static void Associate( WXWindow window
, wxNonOwnedWindowImpl
*impl
);
878 // static creation methods, must be implemented by all toolkits
880 static wxNonOwnedWindowImpl
* CreateNonOwnedWindow( wxNonOwnedWindow
* wxpeer
, wxWindow
* parent
, WXWindow native
) ;
882 static wxNonOwnedWindowImpl
* CreateNonOwnedWindow( wxNonOwnedWindow
* wxpeer
, wxWindow
* parent
, const wxPoint
& pos
, const wxSize
& size
,
883 long style
, long extraStyle
, const wxString
& name
) ;
885 virtual void SetModified(bool WXUNUSED(modified
)) { }
886 virtual bool IsModified() const { return false; }
888 virtual void SetRepresentedFilename(const wxString
& WXUNUSED(filename
)) { }
891 virtual CGFloat
GetWindowLevel() const { return 0.0; }
893 virtual CGWindowLevel
GetWindowLevel() const { return kCGNormalWindowLevel
; }
895 virtual void RestoreWindowLevel() {}
897 wxNonOwnedWindow
* m_wxPeer
;
898 DECLARE_ABSTRACT_CLASS(wxNonOwnedWindowImpl
)
903 //---------------------------------------------------------------------------
904 // cocoa bridging utilities
905 //---------------------------------------------------------------------------
907 bool wxMacInitCocoa();
909 class WXDLLIMPEXP_CORE wxMacAutoreleasePool
912 wxMacAutoreleasePool();
913 ~wxMacAutoreleasePool();
920 void wxMacCocoaRelease( void* obj
);
921 void wxMacCocoaAutorelease( void* obj
);
922 void* wxMacCocoaRetain( void* obj
);
926 // _WX_PRIVATE_CORE_H_