]> git.saurik.com Git - wxWidgets.git/blame - include/wx/osx/cocoa/private.h
don't swallow command events that are not handled by accels, fixes #12373
[wxWidgets.git] / include / wx / osx / cocoa / private.h
CommitLineData
4849f027
SC
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
5// with "wx".
6// Author: Stefan Csomor
7// Modified by:
8// Created: 1998-01-01
9// RCS-ID: $Id: private.h 53819 2008-05-29 14:11:45Z SC $
10// Copyright: (c) Stefan Csomor
11// Licence: wxWindows licence
12/////////////////////////////////////////////////////////////////////////////
13
14#ifndef _WX_PRIVATE_COCOA_H_
15#define _WX_PRIVATE_COCOA_H_
16
935e6c7d
SC
17#include <ApplicationServices/ApplicationServices.h>
18
4849f027 19#ifdef __OBJC__
4849f027 20 #import <Cocoa/Cocoa.h>
4850cc8b 21#endif
4849f027 22
126254a8
SC
23#if MAC_OS_X_VERSION_MAX_ALLOWED < MAC_OS_X_VERSION_10_5
24// available in 10.4 but not in the headers
25enum {
26 kEventMouseScroll = 11
27};
28#endif
524c47aa
SC
29//
30// shared between Cocoa and Carbon
31//
32
b3b17ee7 33// bring in theming types without pulling in the headers
524c47aa 34
935e6c7d 35#if wxUSE_GUI
524c47aa 36typedef SInt16 ThemeBrush;
6da991db 37CGColorRef WXDLLIMPEXP_CORE wxMacCreateCGColorFromHITheme( ThemeBrush brush ) ;
524c47aa
SC
38OSStatus WXDLLIMPEXP_CORE wxMacDrawCGImage(
39 CGContextRef inContext,
40 const CGRect * inBounds,
41 CGImageRef inImage) ;
59d866ad 42WX_NSImage WXDLLIMPEXP_CORE wxOSXGetNSImageFromCGImage( CGImageRef image );
267ba369 43CGImageRef WXDLLIMPEXP_CORE wxOSXCreateCGImageFromNSImage( WX_NSImage nsimage );
ca9eebc3 44wxBitmap WXDLLIMPEXP_CORE wxOSXCreateSystemBitmap(const wxString& id, const wxString &client, const wxSize& size);
524c47aa 45
bfa92264
KO
46class WXDLLIMPEXP_FWD_CORE wxDialog;
47
4849f027
SC
48class WXDLLIMPEXP_CORE wxWidgetCocoaImpl : public wxWidgetImpl
49{
50public :
03647350
VZ
51 wxWidgetCocoaImpl( wxWindowMac* peer , WXWidget w, bool isRootControl = false ) ;
52 wxWidgetCocoaImpl() ;
53 ~wxWidgetCocoaImpl();
54
4849f027 55 void Init();
03647350 56
4849f027 57 virtual bool IsVisible() const ;
524c47aa
SC
58 virtual void SetVisibility(bool);
59
ab9a0b84
VZ
60 // we provide a static function which can be reused from
61 // wxNonOwnedWindowCocoaImpl too
62 static bool ShowViewOrWindowWithEffect(wxWindow *win,
63 bool show,
64 wxShowEffect effect,
65 unsigned timeout);
66
67 virtual bool ShowWithEffect(bool show,
68 wxShowEffect effect,
69 unsigned timeout);
70
4849f027 71 virtual void Raise();
03647350 72
4849f027
SC
73 virtual void Lower();
74
75 virtual void ScrollRect( const wxRect *rect, int dx, int dy );
76
77 virtual WXWidget GetWXWidget() const { return m_osxView; }
78
524c47aa 79 virtual void SetBackgroundColour(const wxColour&);
bc5c09a3 80 virtual bool SetBackgroundStyle(wxBackgroundStyle style);
524c47aa 81
4849f027
SC
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;
524c47aa 86 virtual void SetControlSize( wxWindowVariant variant );
4849f027
SC
87
88 virtual void SetNeedsDisplay( const wxRect* where = NULL );
89 virtual bool GetNeedsDisplay() const;
90
91 virtual bool CanFocus() const;
92 // return true if successful
93 virtual bool SetFocus();
94 virtual bool HasFocus() const;
95
96 void RemoveFromParent();
97 void Embed( wxWidgetImpl *parent );
524c47aa
SC
98
99 void SetDefaultButton( bool isDefault );
100 void PerformClick();
a4e32492 101 virtual void SetLabel(const wxString& title, wxFontEncoding encoding);
524c47aa 102
54f11060
SC
103 void SetCursor( const wxCursor & cursor );
104 void CaptureMouse();
105 void ReleaseMouse();
106
524c47aa
SC
107 wxInt32 GetValue() const;
108 void SetValue( wxInt32 v );
e5d05b90 109 wxBitmap GetBitmap() const;
524c47aa 110 void SetBitmap( const wxBitmap& bitmap );
e5d05b90 111 void SetBitmapPosition( wxDirection dir );
524c47aa
SC
112 void SetupTabs( const wxNotebook &notebook );
113 void GetBestRect( wxRect *r ) const;
114 bool IsEnabled() const;
115 void Enable( bool enable );
116 bool ButtonClickDidStateChange() { return true ;}
117 void SetMinimum( wxInt32 v );
118 void SetMaximum( wxInt32 v );
19c7ac3d
SC
119 wxInt32 GetMinimum() const;
120 wxInt32 GetMaximum() const;
524c47aa
SC
121 void PulseGauge();
122 void SetScrollThumb( wxInt32 value, wxInt32 thumbSize );
123
1e181c7a 124 void SetFont( const wxFont & font , const wxColour& foreground , long windowStyle, bool ignoreBlack = true );
a7b9865d 125 void SetToolTip( wxToolTip* tooltip );
1e181c7a 126
c4825ef7 127 void InstallEventHandler( WXWidget control = NULL );
03647350
VZ
128
129 virtual bool DoHandleMouseEvent(NSEvent *event);
f0e0116e
KO
130 virtual bool DoHandleKeyEvent(NSEvent *event);
131 virtual bool DoHandleCharEvent(NSEvent *event, NSString *text);
03647350 132 virtual void DoNotifyFocusEvent(bool receivedFocus, wxWidgetImpl* otherWindow);
030495ec 133
ddbc8ac9
SC
134 virtual void SetupKeyEvent(wxKeyEvent &wxevent, NSEvent * nsEvent, NSString* charString = NULL);
135 virtual void SetupMouseEvent(wxMouseEvent &wxevent, NSEvent * nsEvent);
136
4850cc8b 137
4dd9fdf8 138 void SetFlipped(bool flipped);
ee032c59 139 virtual bool IsFlipped() const { return m_isFlipped; }
96defed0
SC
140
141 // cocoa thunk connected calls
4dd9fdf8
SC
142
143 virtual unsigned int draggingEntered(void* sender, WXWidget slf, void* _cmd);
144 virtual void draggingExited(void* sender, WXWidget slf, void* _cmd);
145 virtual unsigned int draggingUpdated(void* sender, WXWidget slf, void* _cmd);
146 virtual bool performDragOperation(void* sender, WXWidget slf, void* _cmd);
147 virtual void mouseEvent(WX_NSEvent event, WXWidget slf, void* _cmd);
148 virtual void keyEvent(WX_NSEvent event, WXWidget slf, void* _cmd);
f0e0116e 149 virtual void insertText(NSString* text, WXWidget slf, void* _cmd);
4dd9fdf8 150 virtual bool performKeyEquivalent(WX_NSEvent event, WXWidget slf, void* _cmd);
09a9eb20 151 virtual bool acceptsFirstResponder(WXWidget slf, void* _cmd);
4dd9fdf8
SC
152 virtual bool becomeFirstResponder(WXWidget slf, void* _cmd);
153 virtual bool resignFirstResponder(WXWidget slf, void* _cmd);
154 virtual void resetCursorRects(WXWidget slf, void* _cmd);
155 virtual bool isFlipped(WXWidget slf, void* _cmd);
156 virtual void drawRect(void* rect, WXWidget slf, void* _cmd);
03647350 157
e32090ba
SC
158 virtual void controlAction(WXWidget slf, void* _cmd, void* sender);
159 virtual void controlDoubleAction(WXWidget slf, void* _cmd, void *sender);
ce00f59b 160
75a2c6a1
KO
161 // for wxTextCtrl-derived classes, put here since they don't all derive
162 // from the same pimpl class.
163 virtual void controlTextDidChange();
4dd9fdf8 164
4849f027
SC
165protected:
166 WXWidget m_osxView;
f0e0116e 167 NSEvent* m_lastKeyDownEvent;
4dd9fdf8 168 bool m_isFlipped;
7cb2a241 169 // if it the control has an editor, that editor will already send some
03647350 170 // events, don't resend them
7cb2a241 171 bool m_hasEditor;
03647350 172
4849f027
SC
173 DECLARE_DYNAMIC_CLASS_NO_COPY(wxWidgetCocoaImpl)
174};
175
ffad7b0d
SC
176DECLARE_WXCOCOA_OBJC_CLASS( wxNSWindow );
177
4849f027
SC
178class wxNonOwnedWindowCocoaImpl : public wxNonOwnedWindowImpl
179{
180public :
181 wxNonOwnedWindowCocoaImpl( wxNonOwnedWindow* nonownedwnd) ;
182 wxNonOwnedWindowCocoaImpl();
03647350 183
4849f027 184 virtual ~wxNonOwnedWindowCocoaImpl();
03647350 185
0aaa6ace 186 virtual void WillBeDestroyed() ;
4849f027
SC
187 void Create( wxWindow* parent, const wxPoint& pos, const wxSize& size,
188 long style, long extraStyle, const wxString& name ) ;
17e2694c 189 void Create( wxWindow* parent, WXWindow nativeWindow );
03647350 190
4849f027 191 WXWindow GetWXWindow() const;
03647350 192 void Raise();
4849f027 193 void Lower();
03647350 194 bool Show(bool show);
ab9a0b84
VZ
195
196 virtual bool ShowWithEffect(bool show,
197 wxShowEffect effect,
198 unsigned timeout);
03647350 199
4849f027
SC
200 void Update();
201 bool SetTransparent(wxByte alpha);
202 bool SetBackgroundColour(const wxColour& col );
03647350 203 void SetExtraStyle( long exStyle );
b6dc21e7 204 void SetWindowStyleFlag( long style );
03647350 205 bool SetBackgroundStyle(wxBackgroundStyle style);
4849f027
SC
206 bool CanSetTransparent();
207
208 void MoveWindow(int x, int y, int width, int height);
209 void GetPosition( int &x, int &y ) const;
210 void GetSize( int &width, int &height ) const;
211
03647350 212 void GetContentArea( int &left , int &top , int &width , int &height ) const;
4849f027 213 bool SetShape(const wxRegion& region);
03647350 214
4849f027 215 virtual void SetTitle( const wxString& title, wxFontEncoding encoding ) ;
03647350 216
4849f027 217 virtual bool IsMaximized() const;
03647350 218
4849f027 219 virtual bool IsIconized() const;
03647350 220
4849f027 221 virtual void Iconize( bool iconize );
03647350 222
4849f027 223 virtual void Maximize(bool maximize);
03647350 224
4849f027 225 virtual bool IsFullScreen() const;
03647350 226
4849f027 227 virtual bool ShowFullScreen(bool show, long style);
030495ec 228
dbc7ceb9 229 virtual void ShowWithoutActivating();
4849f027
SC
230
231 virtual void RequestUserAttention(int flags);
03647350 232
4849f027 233 virtual void ScreenToWindow( int *x, int *y );
03647350 234
4849f027 235 virtual void WindowToScreen( int *x, int *y );
03647350 236
dbc7ceb9 237 virtual bool IsActive();
ce00f59b 238
efb2fa41 239 virtual void SetModified(bool modified);
ebf7d5c4 240 virtual bool IsModified() const;
030495ec 241
4849f027
SC
242 wxNonOwnedWindow* GetWXPeer() { return m_wxPeer; }
243protected :
447e2772
SC
244 WXWindow m_macWindow;
245 void * m_macFullScreenData ;
4849f027 246 DECLARE_DYNAMIC_CLASS_NO_COPY(wxNonOwnedWindowCocoaImpl)
03647350 247};
4849f027 248
4850cc8b
SC
249#ifdef __OBJC__
250
5d57348e 251 WXDLLIMPEXP_CORE NSScreen* wxOSXGetMenuScreen();
2acc3915
SC
252 WXDLLIMPEXP_CORE NSRect wxToNSRect( NSView* parent, const wxRect& r );
253 WXDLLIMPEXP_CORE wxRect wxFromNSRect( NSView* parent, const NSRect& rect );
254 WXDLLIMPEXP_CORE NSPoint wxToNSPoint( NSView* parent, const wxPoint& p );
255 WXDLLIMPEXP_CORE wxPoint wxFromNSPoint( NSView* parent, const NSPoint& p );
03647350
VZ
256
257 NSRect WXDLLIMPEXP_CORE wxOSXGetFrameForControl( wxWindowMac* window , const wxPoint& pos , const wxSize &size ,
4850cc8b 258 bool adjustForOrigin = true );
03647350 259
b466e85a 260 // used for many wxControls
03647350 261
b466e85a
SC
262 @interface wxNSButton : NSButton
263 {
411a1c35 264 NSTrackingRectTag rectTag;
b466e85a 265 }
03647350 266
b466e85a
SC
267 @end
268
269 @interface wxNSBox : NSBox
270 {
b466e85a
SC
271 }
272
b466e85a
SC
273 @end
274
7cb2a241
SC
275 @interface wxNSTextFieldEditor : NSTextView
276 {
277 NSEvent* lastKeyDownEvent;
278 }
279
280 @end
281
c8fdb345 282 @interface wxNSTextField : NSTextField wxOSX_10_6_AND_LATER(<NSTextFieldDelegate>)
7cb2a241
SC
283 {
284 wxNSTextFieldEditor* fieldEditor;
285 }
286
287 - (wxNSTextFieldEditor*) fieldEditor;
288 - (void) setFieldEditor:(wxNSTextFieldEditor*) fieldEditor;
289
290 @end
291
c8fdb345 292 @interface wxNSSecureTextField : NSSecureTextField wxOSX_10_6_AND_LATER(<NSTextFieldDelegate>)
b466e85a 293 {
b466e85a 294 }
7cb2a241
SC
295
296 @end
297
298
030495ec 299 @interface wxNSTextView : NSTextView wxOSX_10_6_AND_LATER(<NSTextViewDelegate>)
7cb2a241
SC
300 {
301 }
030495ec 302
b9cf2753 303 - (void)textDidChange:(NSNotification *)aNotification;
030495ec 304
b466e85a
SC
305 @end
306
ffad7b0d
SC
307 @interface wxNSMenu : NSMenu
308 {
309 wxMenuImpl* impl;
310 }
311
312 - (void) setImplementation:(wxMenuImpl*) item;
313 - (wxMenuImpl*) implementation;
314
03647350 315 @end
ffad7b0d
SC
316
317 @interface wxNSMenuItem : NSMenuItem
318 {
319 wxMenuItemImpl* impl;
320 }
321
322 - (void) setImplementation:(wxMenuItemImpl*) item;
323 - (wxMenuItemImpl*) implementation;
324
325 - (void)clickedAction:(id)sender;
326 - (BOOL)validateMenuItem:(NSMenuItem *)menuItem;
327
03647350
VZ
328 @end
329
485c6263 330 void WXDLLIMPEXP_CORE wxOSXCocoaClassAddWXMethods(Class c);
b466e85a 331
724999ee
KO
332 /*
333 We need this for ShowModal, as the sheet just disables the parent window and
334 returns control to the app, whereas we don't want to return from ShowModal
335 until the sheet has been dismissed.
336 */
337 @interface ModalDialogDelegate : NSObject
338 {
339 BOOL sheetFinished;
340 int resultCode;
bfa92264 341 wxDialog* impl;
724999ee
KO
342 }
343
bfa92264 344 - (void)setImplementation: (wxDialog *)dialog;
724999ee
KO
345 - (BOOL)finished;
346 - (int)code;
347 - (void)waitForSheetToFinish;
348 - (void)sheetDidEnd:(NSWindow *)sheet returnCode:(int)returnCode contextInfo:(void *)contextInfo;
349 @end
350
a5d0c88a
SC
351 @interface wxNSAppController : NSObject wxOSX_10_6_AND_LATER(<NSApplicationDelegate>)
352 {
353 }
354
355 @end
724999ee 356
4850cc8b
SC
357#endif // __OBJC__
358
4849f027
SC
359// NSCursor
360
361WX_NSCursor wxMacCocoaCreateStockCursor( int cursor_type );
362WX_NSCursor wxMacCocoaCreateCursorFromCGImage( CGImageRef cgImageRef, float hotSpotX, float hotSpotY );
363void wxMacCocoaSetCursor( WX_NSCursor cursor );
364void wxMacCocoaHideCursor();
365void wxMacCocoaShowCursor();
366
367typedef struct tagClassicCursor
368{
369 wxUint16 bits[16];
370 wxUint16 mask[16];
371 wxInt16 hotspot[2];
372}ClassicCursor;
373
524c47aa
SC
374const short kwxCursorBullseye = 0;
375const short kwxCursorBlank = 1;
376const short kwxCursorPencil = 2;
377const short kwxCursorMagnifier = 3;
378const short kwxCursorNoEntry = 4;
379const short kwxCursorPaintBrush = 5;
380const short kwxCursorPointRight = 6;
381const short kwxCursorPointLeft = 7;
382const short kwxCursorQuestionArrow = 8;
383const short kwxCursorRightArrow = 9;
384const short kwxCursorSizeNS = 10;
385const short kwxCursorSize = 11;
386const short kwxCursorSizeNESW = 12;
387const short kwxCursorSizeNWSE = 13;
388const short kwxCursorRoller = 14;
389const short kwxCursorLast = kwxCursorRoller;
390
391// exposing our fallback cursor map
392
393extern ClassicCursor gMacCursors[];
394
4849f027
SC
395#endif
396
397#endif
398 // _WX_PRIVATE_COCOA_H_
399