1 /////////////////////////////////////////////////////////////////////////////
2 // Name: wx/osx/cocoa/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
9 // RCS-ID: $Id: private.h 53819 2008-05-29 14:11:45Z SC $
10 // Copyright: (c) Stefan Csomor
11 // Licence: wxWindows licence
12 /////////////////////////////////////////////////////////////////////////////
14 #ifndef _WX_PRIVATE_COCOA_H_
15 #define _WX_PRIVATE_COCOA_H_
17 #include "wx/osx/core/private.h"
21 #include <ApplicationServices/ApplicationServices.h>
23 #if wxOSX_USE_ATSU_TEXT
24 // we need theming and atsu
25 #include <Carbon/Carbon.h>
29 #import <Cocoa/Cocoa.h>
33 // shared between Cocoa and Carbon
36 // bring in themeing types without pulling in the headers
39 typedef SInt16 ThemeBrush
;
40 CGColorRef WXDLLIMPEXP_CORE
wxMacCreateCGColorFromHITheme( ThemeBrush brush
) ;
41 OSStatus WXDLLIMPEXP_CORE
wxMacDrawCGImage(
42 CGContextRef inContext
,
43 const CGRect
* inBounds
,
45 WX_NSImage WXDLLIMPEXP_CORE
wxOSXCreateNSImageFromCGImage( CGImageRef image
);
48 long UMAGetSystemVersion() ;
49 WXDLLIMPEXP_BASE
void wxMacStringToPascal( const wxString
&from
, StringPtr to
);
50 WXDLLIMPEXP_BASE wxString
wxMacFSRefToPath( const FSRef
*fsRef
, CFStringRef additionalPathComponent
= NULL
);
51 WXDLLIMPEXP_BASE OSStatus
wxMacPathToFSRef( const wxString
&path
, FSRef
*fsRef
);
52 WXDLLIMPEXP_BASE wxString
wxMacHFSUniStrToString( ConstHFSUniStr255Param uniname
);
60 class WXDLLIMPEXP_CORE wxWidgetCocoaImpl
: public wxWidgetImpl
63 wxWidgetCocoaImpl( wxWindowMac
* peer
, WXWidget w
, bool isRootControl
= false ) ;
69 virtual bool IsVisible() const ;
70 virtual void SetVisibility(bool);
76 virtual void ScrollRect( const wxRect
*rect
, int dx
, int dy
);
78 virtual WXWidget
GetWXWidget() const { return m_osxView
; }
80 virtual void SetBackgroundColour(const wxColour
&);
82 virtual void GetContentArea( int &left
, int &top
, int &width
, int &height
) const;
83 virtual void Move(int x
, int y
, int width
, int height
);
84 virtual void GetPosition( int &x
, int &y
) const;
85 virtual void GetSize( int &width
, int &height
) const;
86 virtual void SetControlSize( wxWindowVariant variant
);
88 virtual void SetNeedsDisplay( const wxRect
* where
= NULL
);
89 virtual bool GetNeedsDisplay() const;
91 virtual bool CanFocus() const;
92 // return true if successful
93 virtual bool SetFocus();
94 virtual bool HasFocus() const;
96 void RemoveFromParent();
97 void Embed( wxWidgetImpl
*parent
);
99 void SetDefaultButton( bool isDefault
);
101 void SetLabel(const wxString
& title
, wxFontEncoding encoding
);
103 void SetCursor( const wxCursor
& cursor
);
107 wxInt32
GetValue() const;
108 void SetValue( wxInt32 v
);
109 void SetBitmap( const wxBitmap
& bitmap
);
110 void SetupTabs( const wxNotebook
¬ebook
);
111 void GetBestRect( wxRect
*r
) const;
112 bool IsEnabled() const;
113 void Enable( bool enable
);
114 bool ButtonClickDidStateChange() { return true ;}
115 void SetMinimum( wxInt32 v
);
116 void SetMaximum( wxInt32 v
);
117 wxInt32
GetMinimum() const;
118 wxInt32
GetMaximum() const;
120 void SetScrollThumb( wxInt32 value
, wxInt32 thumbSize
);
122 void SetFont( const wxFont
& font
, const wxColour
& foreground
, long windowStyle
, bool ignoreBlack
= true );
124 void InstallEventHandler( WXWidget control
= NULL
);
126 virtual bool DoHandleMouseEvent(NSEvent
*event
);
127 virtual bool DoHandleKeyEvent(NSEvent
*event
);
128 virtual void DoNotifyFocusEvent(bool receivedFocus
);
130 void SetFlipped(bool flipped
);
132 virtual unsigned int draggingEntered(void* sender
, WXWidget slf
, void* _cmd
);
133 virtual void draggingExited(void* sender
, WXWidget slf
, void* _cmd
);
134 virtual unsigned int draggingUpdated(void* sender
, WXWidget slf
, void* _cmd
);
135 virtual bool performDragOperation(void* sender
, WXWidget slf
, void* _cmd
);
136 virtual void mouseEvent(WX_NSEvent event
, WXWidget slf
, void* _cmd
);
137 virtual void keyEvent(WX_NSEvent event
, WXWidget slf
, void* _cmd
);
138 virtual bool performKeyEquivalent(WX_NSEvent event
, WXWidget slf
, void* _cmd
);
139 virtual bool becomeFirstResponder(WXWidget slf
, void* _cmd
);
140 virtual bool resignFirstResponder(WXWidget slf
, void* _cmd
);
141 virtual void resetCursorRects(WXWidget slf
, void* _cmd
);
142 virtual bool isFlipped(WXWidget slf
, void* _cmd
);
143 virtual void drawRect(void* rect
, WXWidget slf
, void* _cmd
);
145 virtual void clickedAction(WXWidget slf
, void* _cmd
, void* sender
);
146 virtual void doubleClickedAction(WXWidget slf
, void* _cmd
, void *sender
);
152 DECLARE_DYNAMIC_CLASS_NO_COPY(wxWidgetCocoaImpl
)
155 DECLARE_WXCOCOA_OBJC_CLASS( wxNSWindow
);
157 class wxNonOwnedWindowCocoaImpl
: public wxNonOwnedWindowImpl
160 wxNonOwnedWindowCocoaImpl( wxNonOwnedWindow
* nonownedwnd
) ;
161 wxNonOwnedWindowCocoaImpl();
163 virtual ~wxNonOwnedWindowCocoaImpl();
165 virtual void Destroy() ;
166 void Create( wxWindow
* parent
, const wxPoint
& pos
, const wxSize
& size
,
167 long style
, long extraStyle
, const wxString
& name
) ;
169 WXWindow
GetWXWindow() const;
172 bool Show(bool show
);
173 bool ShowWithEffect(bool show
, wxShowEffect effect
, unsigned timeout
);
176 bool SetTransparent(wxByte alpha
);
177 bool SetBackgroundColour(const wxColour
& col
);
178 void SetExtraStyle( long exStyle
);
179 bool SetBackgroundStyle(wxBackgroundStyle style
);
180 bool CanSetTransparent();
182 void MoveWindow(int x
, int y
, int width
, int height
);
183 void GetPosition( int &x
, int &y
) const;
184 void GetSize( int &width
, int &height
) const;
186 void GetContentArea( int &left
, int &top
, int &width
, int &height
) const;
187 bool SetShape(const wxRegion
& region
);
189 virtual void SetTitle( const wxString
& title
, wxFontEncoding encoding
) ;
191 virtual bool IsMaximized() const;
193 virtual bool IsIconized() const;
195 virtual void Iconize( bool iconize
);
197 virtual void Maximize(bool maximize
);
199 virtual bool IsFullScreen() const;
201 virtual bool ShowFullScreen(bool show
, long style
);
203 virtual void RequestUserAttention(int flags
);
205 virtual void ScreenToWindow( int *x
, int *y
);
207 virtual void WindowToScreen( int *x
, int *y
);
209 wxNonOwnedWindow
* GetWXPeer() { return m_wxPeer
; }
211 WX_wxNSWindow m_macWindow
;
212 void * m_macFullScreenData
;
213 DECLARE_DYNAMIC_CLASS_NO_COPY(wxNonOwnedWindowCocoaImpl
)
218 extern NSRect
wxToNSRect( NSView
* parent
, const wxRect
& r
);
219 extern wxRect
wxFromNSRect( NSView
* parent
, const NSRect
& rect
);
220 extern NSPoint
wxToNSPoint( NSView
* parent
, const wxPoint
& p
);
221 extern wxPoint
wxFromNSPoint( NSView
* parent
, const NSPoint
& p
);
223 NSRect WXDLLIMPEXP_CORE
wxOSXGetFrameForControl( wxWindowMac
* window
, const wxPoint
& pos
, const wxSize
&size
,
224 bool adjustForOrigin
= true );
226 // used for many wxControls
228 @interface wxNSButton
: NSButton
234 @interface wxNSBox
: NSBox
240 @interface wxNSTextField
: NSTextField
246 @interface wxNSMenu
: NSMenu
251 - (void) setImplementation
:(wxMenuImpl
*) item
;
252 - (wxMenuImpl
*) implementation
;
256 @interface wxNSMenuItem
: NSMenuItem
258 wxMenuItemImpl
* impl
;
261 - (void) setImplementation
:(wxMenuItemImpl
*) item
;
262 - (wxMenuItemImpl
*) implementation
;
264 - (void)clickedAction
:(id
)sender
;
265 - (BOOL
)validateMenuItem
:(NSMenuItem
*)menuItem
;
269 void WXDLLIMPEXP_CORE
wxOSXCocoaClassAddWXMethods(Class c
);
275 WX_NSCursor
wxMacCocoaCreateStockCursor( int cursor_type
);
276 WX_NSCursor
wxMacCocoaCreateCursorFromCGImage( CGImageRef cgImageRef
, float hotSpotX
, float hotSpotY
);
277 void wxMacCocoaSetCursor( WX_NSCursor cursor
);
278 void wxMacCocoaHideCursor();
279 void wxMacCocoaShowCursor();
281 typedef struct tagClassicCursor
288 const short kwxCursorBullseye
= 0;
289 const short kwxCursorBlank
= 1;
290 const short kwxCursorPencil
= 2;
291 const short kwxCursorMagnifier
= 3;
292 const short kwxCursorNoEntry
= 4;
293 const short kwxCursorPaintBrush
= 5;
294 const short kwxCursorPointRight
= 6;
295 const short kwxCursorPointLeft
= 7;
296 const short kwxCursorQuestionArrow
= 8;
297 const short kwxCursorRightArrow
= 9;
298 const short kwxCursorSizeNS
= 10;
299 const short kwxCursorSize
= 11;
300 const short kwxCursorSizeNESW
= 12;
301 const short kwxCursorSizeNWSE
= 13;
302 const short kwxCursorRoller
= 14;
303 const short kwxCursorLast
= kwxCursorRoller
;
305 // exposing our fallback cursor map
307 extern ClassicCursor gMacCursors
[];
312 // _WX_PRIVATE_COCOA_H_