]> git.saurik.com Git - wxWidgets.git/blame_incremental - include/wx/osx/core/private.h
removing NSWindow based mouse tracking in favour of 10.5+ trackingArea implementation
[wxWidgets.git] / include / wx / osx / core / private.h
... / ...
CommitLineData
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
5// with "wx".
6// Author: Stefan Csomor
7// Modified by:
8// Created: 1998-01-01
9// RCS-ID: $Id$
10// Copyright: (c) Stefan Csomor
11// Licence: wxWindows licence
12/////////////////////////////////////////////////////////////////////////////
13
14#ifndef _WX_PRIVATE_CORE_H_
15#define _WX_PRIVATE_CORE_H_
16
17#include "wx/defs.h"
18
19#include <CoreFoundation/CoreFoundation.h>
20
21#include "wx/osx/core/cfstring.h"
22#include "wx/osx/core/cfdataref.h"
23
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
28// previous versions
29#if MAC_OS_X_VERSION_MAX_ALLOWED >= MAC_OS_X_VERSION_10_6
30 #define wxOSX_10_6_AND_LATER(x) x
31#else
32 #define wxOSX_10_6_AND_LATER(x)
33#endif
34
35#if ( !wxUSE_GUI && !wxOSX_USE_IPHONE ) || wxOSX_USE_COCOA_OR_CARBON
36
37// Carbon functions are currently still used in wxOSX/Cocoa too (including
38// wxBase part of it).
39#include <Carbon/Carbon.h>
40
41WXDLLIMPEXP_BASE long UMAGetSystemVersion() ;
42
43void WXDLLIMPEXP_CORE wxMacStringToPascal( const wxString&from , unsigned char * to );
44wxString WXDLLIMPEXP_CORE wxMacMakeStringFromPascal( const unsigned char * from );
45
46WXDLLIMPEXP_BASE wxString wxMacFSRefToPath( const FSRef *fsRef , CFStringRef additionalPathComponent = NULL );
47WXDLLIMPEXP_BASE OSStatus wxMacPathToFSRef( const wxString&path , FSRef *fsRef );
48WXDLLIMPEXP_BASE wxString wxMacHFSUniStrToString( ConstHFSUniStr255Param uniname );
49
50// keycode utils from app.cpp
51
52WXDLLIMPEXP_BASE CGKeyCode wxCharCodeWXToOSX(wxKeyCode code);
53WXDLLIMPEXP_BASE long wxMacTranslateKey(unsigned char key, unsigned char code);
54
55#endif
56
57#if wxUSE_GUI
58
59#if wxOSX_USE_IPHONE
60#include <CoreGraphics/CoreGraphics.h>
61#else
62#include <ApplicationServices/ApplicationServices.h>
63#endif
64
65#include "wx/bitmap.h"
66#include "wx/window.h"
67
68class WXDLLIMPEXP_CORE wxMacCGContextStateSaver
69{
70 wxDECLARE_NO_COPY_CLASS(wxMacCGContextStateSaver);
71
72public:
73 wxMacCGContextStateSaver( CGContextRef cg )
74 {
75 m_cg = cg;
76 CGContextSaveGState( cg );
77 }
78 ~wxMacCGContextStateSaver()
79 {
80 CGContextRestoreGState( m_cg );
81 }
82private:
83 CGContextRef m_cg;
84};
85
86class WXDLLIMPEXP_CORE wxDeferredObjectDeleter : public wxObject
87{
88public :
89 wxDeferredObjectDeleter( wxObject* obj ) : m_obj(obj)
90 {
91 }
92 virtual ~wxDeferredObjectDeleter()
93 {
94 delete m_obj;
95 }
96protected :
97 wxObject* m_obj ;
98} ;
99
100// Quartz
101
102WXDLLIMPEXP_CORE CGImageRef wxMacCreateCGImageFromBitmap( const wxBitmap& bitmap );
103
104WXDLLIMPEXP_CORE CGDataProviderRef wxMacCGDataProviderCreateWithCFData( CFDataRef data );
105WXDLLIMPEXP_CORE CGDataConsumerRef wxMacCGDataConsumerCreateWithCFData( CFMutableDataRef data );
106WXDLLIMPEXP_CORE CGDataProviderRef wxMacCGDataProviderCreateWithMemoryBuffer( const wxMemoryBuffer& buf );
107
108CGColorSpaceRef WXDLLIMPEXP_CORE wxMacGetGenericRGBColorSpace(void);
109
110class wxWindowMac;
111// to
112extern wxWindow* g_MacLastWindow;
113class wxNonOwnedWindow;
114
115// temporary typedef so that no additional casts are necessary within carbon code at the moment
116
117class wxMacControl;
118class wxWidgetImpl;
119class wxComboBox;
120class wxNotebook;
121class wxTextCtrl;
122class wxSearchCtrl;
123
124WXDLLIMPEXP_CORE wxWindowMac * wxFindWindowFromWXWidget(WXWidget inControl );
125
126#if wxOSX_USE_CARBON
127typedef wxMacControl wxWidgetImplType;
128#else
129typedef wxWidgetImpl wxWidgetImplType;
130#endif
131
132#if wxUSE_MENUS
133class wxMenuItemImpl : public wxObject
134{
135public :
136 wxMenuItemImpl( wxMenuItem* peer ) : m_peer(peer)
137 {
138 }
139
140 virtual ~wxMenuItemImpl() ;
141 virtual void SetBitmap( const wxBitmap& bitmap ) = 0;
142 virtual void Enable( bool enable ) = 0;
143 virtual void Check( bool check ) = 0;
144 virtual void SetLabel( const wxString& text, wxAcceleratorEntry *entry ) = 0;
145 virtual void Hide( bool hide = true ) = 0;
146
147 virtual void * GetHMenuItem() = 0;
148
149 wxMenuItem* GetWXPeer() { return m_peer ; }
150
151 static wxMenuItemImpl* Create( wxMenuItem* peer, wxMenu *pParentMenu,
152 int id,
153 const wxString& text,
154 wxAcceleratorEntry *entry,
155 const wxString& strHelp,
156 wxItemKind kind,
157 wxMenu *pSubMenu );
158
159 // handle OS specific menu items if they weren't handled during normal processing
160 virtual bool DoDefault() { return false; }
161protected :
162 wxMenuItem* m_peer;
163
164 DECLARE_ABSTRACT_CLASS(wxMenuItemImpl)
165} ;
166
167class wxMenuImpl : public wxObject
168{
169public :
170 wxMenuImpl( wxMenu* peer ) : m_peer(peer)
171 {
172 }
173
174 virtual ~wxMenuImpl() ;
175 virtual void InsertOrAppend(wxMenuItem *pItem, size_t pos) = 0;
176 virtual void Remove( wxMenuItem *pItem ) = 0;
177
178 virtual void MakeRoot() = 0;
179
180 virtual void SetTitle( const wxString& text ) = 0;
181
182 virtual WXHMENU GetHMenu() = 0;
183
184 wxMenu* GetWXPeer() { return m_peer ; }
185
186 virtual void PopUp( wxWindow *win, int x, int y ) = 0;
187
188 static wxMenuImpl* Create( wxMenu* peer, const wxString& title );
189 static wxMenuImpl* CreateRootMenu( wxMenu* peer );
190protected :
191 wxMenu* m_peer;
192
193 DECLARE_ABSTRACT_CLASS(wxMenuItemImpl)
194} ;
195#endif
196
197
198class WXDLLIMPEXP_CORE wxWidgetImpl : public wxObject
199{
200public :
201 wxWidgetImpl( wxWindowMac* peer , bool isRootControl = false, bool isUserPane = false );
202 wxWidgetImpl();
203 virtual ~wxWidgetImpl();
204
205 void Init();
206
207 bool IsRootControl() const { return m_isRootControl; }
208
209 bool IsUserPane() const { return m_isUserPane; }
210
211 wxWindowMac* GetWXPeer() const { return m_wxPeer; }
212
213 bool IsOk() const { return GetWXWidget() != NULL; }
214
215 // not only the control itself, but also all its parents must be visible
216 // in order for this function to return true
217 virtual bool IsVisible() const = 0;
218 // set the visibility of this widget (maybe latent)
219 virtual void SetVisibility( bool visible ) = 0;
220
221 virtual bool ShowWithEffect(bool WXUNUSED(show),
222 wxShowEffect WXUNUSED(effect),
223 unsigned WXUNUSED(timeout))
224 {
225 return false;
226 }
227
228 virtual void Raise() = 0;
229
230 virtual void Lower() = 0;
231
232 virtual void ScrollRect( const wxRect *rect, int dx, int dy ) = 0;
233
234 virtual WXWidget GetWXWidget() const = 0;
235
236 virtual void SetBackgroundColour( const wxColour& col ) = 0;
237 virtual bool SetBackgroundStyle(wxBackgroundStyle style) = 0;
238
239 // all coordinates in native parent widget relative coordinates
240 virtual void GetContentArea( int &left , int &top , int &width , int &height ) const = 0;
241 virtual void Move(int x, int y, int width, int height) = 0;
242 virtual void GetPosition( int &x, int &y ) const = 0;
243 virtual void GetSize( int &width, int &height ) const = 0;
244 virtual void SetControlSize( wxWindowVariant variant ) = 0;
245 virtual float GetContentScaleFactor() const
246 {
247 return 1.0;
248 }
249
250 // the native coordinates may have an 'aura' for shadows etc, if this is the case the layout
251 // inset indicates on which insets the real control is drawn
252 virtual void GetLayoutInset(int &left , int &top , int &right, int &bottom) const
253 {
254 left = top = right = bottom = 0;
255 }
256
257 // native view coordinates are topleft to bottom right (flipped regarding CoreGraphics origin)
258 virtual bool IsFlipped() const { return true; }
259
260 virtual void SetNeedsDisplay( const wxRect* where = NULL ) = 0;
261 virtual bool GetNeedsDisplay() const = 0;
262
263 virtual bool NeedsFocusRect() const;
264 virtual void SetNeedsFocusRect( bool needs );
265
266 virtual bool NeedsFrame() const;
267 virtual void SetNeedsFrame( bool needs );
268
269 virtual bool CanFocus() const = 0;
270 // return true if successful
271 virtual bool SetFocus() = 0;
272 virtual bool HasFocus() const = 0;
273
274 virtual void RemoveFromParent() = 0;
275 virtual void Embed( wxWidgetImpl *parent ) = 0;
276
277 virtual void SetDefaultButton( bool isDefault ) = 0;
278 virtual void PerformClick() = 0;
279 virtual void SetLabel( const wxString& title, wxFontEncoding encoding ) = 0;
280#if wxUSE_MARKUP && wxOSX_USE_COCOA
281 virtual void SetLabelMarkup( const wxString& WXUNUSED(markup) ) { }
282#endif
283
284 virtual void SetCursor( const wxCursor & cursor ) = 0;
285 virtual void CaptureMouse() = 0;
286 virtual void ReleaseMouse() = 0;
287
288 virtual wxInt32 GetValue() const = 0;
289 virtual void SetValue( wxInt32 v ) = 0;
290 virtual wxBitmap GetBitmap() const = 0;
291 virtual void SetBitmap( const wxBitmap& bitmap ) = 0;
292 virtual void SetBitmapPosition( wxDirection dir ) = 0;
293 virtual void SetupTabs( const wxNotebook &notebook ) =0;
294 virtual void GetBestRect( wxRect *r ) const = 0;
295 virtual bool IsEnabled() const = 0;
296 virtual void Enable( bool enable ) = 0;
297 virtual void SetMinimum( wxInt32 v ) = 0;
298 virtual void SetMaximum( wxInt32 v ) = 0;
299 virtual wxInt32 GetMinimum() const = 0;
300 virtual wxInt32 GetMaximum() const = 0;
301 virtual void PulseGauge() = 0;
302 virtual void SetScrollThumb( wxInt32 value, wxInt32 thumbSize ) = 0;
303
304 virtual void SetFont( const wxFont & font , const wxColour& foreground , long windowStyle, bool ignoreBlack = true ) = 0;
305
306 virtual void SetToolTip(wxToolTip* WXUNUSED(tooltip)) { }
307
308 // is the clicked event sent AFTER the state already changed, so no additional
309 // state changing logic is required from the outside
310 virtual bool ButtonClickDidStateChange() = 0;
311
312 virtual void InstallEventHandler( WXWidget control = NULL ) = 0;
313
314 // Mechanism used to keep track of whether a change should send an event
315 // Do SendEvents(false) when starting actions that would trigger programmatic events
316 // and SendEvents(true) at the end of the block.
317 virtual void SendEvents(bool shouldSendEvents) { m_shouldSendEvents = shouldSendEvents; }
318 virtual bool ShouldSendEvents() { return m_shouldSendEvents; }
319
320 // static methods for associating native controls and their implementations
321
322 static wxWidgetImpl*
323 FindFromWXWidget(WXWidget control);
324
325 static void RemoveAssociations( wxWidgetImpl* impl);
326
327 static void Associate( WXWidget control, wxWidgetImpl *impl );
328
329 static WXWidget FindFocus();
330
331 // static creation methods, must be implemented by all toolkits
332
333 static wxWidgetImplType* CreateUserPane( wxWindowMac* wxpeer,
334 wxWindowMac* parent,
335 wxWindowID id,
336 const wxPoint& pos,
337 const wxSize& size,
338 long style,
339 long extraStyle) ;
340 static wxWidgetImplType* CreateContentView( wxNonOwnedWindow* now ) ;
341
342 static wxWidgetImplType* CreateButton( wxWindowMac* wxpeer,
343 wxWindowMac* parent,
344 wxWindowID id,
345 const wxString& label,
346 const wxPoint& pos,
347 const wxSize& size,
348 long style,
349 long extraStyle) ;
350
351 static wxWidgetImplType* CreateDisclosureTriangle( wxWindowMac* wxpeer,
352 wxWindowMac* parent,
353 wxWindowID id,
354 const wxString& label,
355 const wxPoint& pos,
356 const wxSize& size,
357 long style,
358 long extraStyle) ;
359
360 static wxWidgetImplType* CreateStaticLine( wxWindowMac* wxpeer,
361 wxWindowMac* parent,
362 wxWindowID id,
363 const wxPoint& pos,
364 const wxSize& size,
365 long style,
366 long extraStyle) ;
367
368 static wxWidgetImplType* CreateGroupBox( wxWindowMac* wxpeer,
369 wxWindowMac* parent,
370 wxWindowID id,
371 const wxString& label,
372 const wxPoint& pos,
373 const wxSize& size,
374 long style,
375 long extraStyle) ;
376
377 static wxWidgetImplType* CreateStaticText( wxWindowMac* wxpeer,
378 wxWindowMac* parent,
379 wxWindowID id,
380 const wxString& label,
381 const wxPoint& pos,
382 const wxSize& size,
383 long style,
384 long extraStyle) ;
385
386 static wxWidgetImplType* CreateTextControl( wxTextCtrl* wxpeer,
387 wxWindowMac* parent,
388 wxWindowID id,
389 const wxString& content,
390 const wxPoint& pos,
391 const wxSize& size,
392 long style,
393 long extraStyle) ;
394
395 static wxWidgetImplType* CreateSearchControl( wxSearchCtrl* wxpeer,
396 wxWindowMac* parent,
397 wxWindowID id,
398 const wxString& content,
399 const wxPoint& pos,
400 const wxSize& size,
401 long style,
402 long extraStyle) ;
403
404 static wxWidgetImplType* CreateCheckBox( wxWindowMac* wxpeer,
405 wxWindowMac* parent,
406 wxWindowID id,
407 const wxString& label,
408 const wxPoint& pos,
409 const wxSize& size,
410 long style,
411 long extraStyle);
412
413 static wxWidgetImplType* CreateRadioButton( wxWindowMac* wxpeer,
414 wxWindowMac* parent,
415 wxWindowID id,
416 const wxString& label,
417 const wxPoint& pos,
418 const wxSize& size,
419 long style,
420 long extraStyle);
421
422 static wxWidgetImplType* CreateToggleButton( wxWindowMac* wxpeer,
423 wxWindowMac* parent,
424 wxWindowID id,
425 const wxString& label,
426 const wxPoint& pos,
427 const wxSize& size,
428 long style,
429 long extraStyle);
430
431 static wxWidgetImplType* CreateBitmapToggleButton( wxWindowMac* wxpeer,
432 wxWindowMac* parent,
433 wxWindowID id,
434 const wxBitmap& bitmap,
435 const wxPoint& pos,
436 const wxSize& size,
437 long style,
438 long extraStyle);
439
440 static wxWidgetImplType* CreateBitmapButton( wxWindowMac* wxpeer,
441 wxWindowMac* parent,
442 wxWindowID id,
443 const wxBitmap& bitmap,
444 const wxPoint& pos,
445 const wxSize& size,
446 long style,
447 long extraStyle);
448
449 static wxWidgetImplType* CreateTabView( wxWindowMac* wxpeer,
450 wxWindowMac* parent,
451 wxWindowID id,
452 const wxPoint& pos,
453 const wxSize& size,
454 long style,
455 long extraStyle);
456
457 static wxWidgetImplType* CreateGauge( wxWindowMac* wxpeer,
458 wxWindowMac* parent,
459 wxWindowID id,
460 wxInt32 value,
461 wxInt32 minimum,
462 wxInt32 maximum,
463 const wxPoint& pos,
464 const wxSize& size,
465 long style,
466 long extraStyle);
467
468 static wxWidgetImplType* CreateSlider( wxWindowMac* wxpeer,
469 wxWindowMac* parent,
470 wxWindowID id,
471 wxInt32 value,
472 wxInt32 minimum,
473 wxInt32 maximum,
474 const wxPoint& pos,
475 const wxSize& size,
476 long style,
477 long extraStyle);
478
479 static wxWidgetImplType* CreateSpinButton( wxWindowMac* wxpeer,
480 wxWindowMac* parent,
481 wxWindowID id,
482 wxInt32 value,
483 wxInt32 minimum,
484 wxInt32 maximum,
485 const wxPoint& pos,
486 const wxSize& size,
487 long style,
488 long extraStyle);
489
490 static wxWidgetImplType* CreateScrollBar( wxWindowMac* wxpeer,
491 wxWindowMac* parent,
492 wxWindowID id,
493 const wxPoint& pos,
494 const wxSize& size,
495 long style,
496 long extraStyle);
497
498 static wxWidgetImplType* CreateChoice( wxWindowMac* wxpeer,
499 wxWindowMac* parent,
500 wxWindowID id,
501 wxMenu* menu,
502 const wxPoint& pos,
503 const wxSize& size,
504 long style,
505 long extraStyle);
506
507 static wxWidgetImplType* CreateListBox( wxWindowMac* wxpeer,
508 wxWindowMac* parent,
509 wxWindowID id,
510 const wxPoint& pos,
511 const wxSize& size,
512 long style,
513 long extraStyle);
514
515#if wxOSX_USE_COCOA
516 static wxWidgetImplType* CreateComboBox( wxComboBox* wxpeer,
517 wxWindowMac* parent,
518 wxWindowID id,
519 wxMenu* menu,
520 const wxPoint& pos,
521 const wxSize& size,
522 long style,
523 long extraStyle);
524#endif
525
526 // converts from Toplevel-Content relative to local
527 static void Convert( wxPoint *pt , wxWidgetImpl *from , wxWidgetImpl *to );
528protected :
529 bool m_isRootControl;
530 bool m_isUserPane;
531 wxWindowMac* m_wxPeer;
532 bool m_needsFocusRect;
533 bool m_needsFrame;
534 bool m_shouldSendEvents;
535
536 DECLARE_ABSTRACT_CLASS(wxWidgetImpl)
537};
538
539//
540// the interface to be implemented eg by a listbox
541//
542
543class WXDLLIMPEXP_CORE wxListWidgetColumn
544{
545public :
546 virtual ~wxListWidgetColumn() {}
547} ;
548
549class WXDLLIMPEXP_CORE wxListWidgetCellValue
550{
551public :
552 wxListWidgetCellValue() {}
553 virtual ~wxListWidgetCellValue() {}
554
555 virtual void Set( CFStringRef value ) = 0;
556 virtual void Set( const wxString& value ) = 0;
557 virtual void Set( int value ) = 0;
558 virtual void Check( bool check );
559
560 virtual bool IsChecked() const;
561 virtual int GetIntValue() const = 0;
562 virtual wxString GetStringValue() const = 0;
563} ;
564
565class WXDLLIMPEXP_CORE wxListWidgetImpl
566{
567public:
568 wxListWidgetImpl() {}
569 virtual ~wxListWidgetImpl() { }
570
571 virtual wxListWidgetColumn* InsertTextColumn( unsigned pos, const wxString& title, bool editable = false,
572 wxAlignment just = wxALIGN_LEFT , int defaultWidth = -1) = 0 ;
573 virtual wxListWidgetColumn* InsertCheckColumn( unsigned pos , const wxString& title, bool editable = false,
574 wxAlignment just = wxALIGN_LEFT , int defaultWidth = -1) = 0 ;
575
576 // add and remove
577
578 // TODO will be replaced
579 virtual void ListDelete( unsigned int n ) = 0;
580 virtual void ListInsert( unsigned int n ) = 0;
581 virtual void ListClear() = 0;
582
583 // selecting
584
585 virtual void ListDeselectAll() = 0;
586 virtual void ListSetSelection( unsigned int n, bool select, bool multi ) = 0;
587 virtual int ListGetSelection() const = 0;
588 virtual int ListGetSelections( wxArrayInt& aSelections ) const = 0;
589 virtual bool ListIsSelected( unsigned int n ) const = 0;
590
591 // display
592
593 virtual void ListScrollTo( unsigned int n ) = 0;
594 virtual void UpdateLine( unsigned int n, wxListWidgetColumn* col = NULL ) = 0;
595 virtual void UpdateLineToEnd( unsigned int n) = 0;
596
597 // accessing content
598
599 virtual unsigned int ListGetCount() const = 0;
600
601 virtual int DoListHitTest( const wxPoint& inpoint ) const = 0;
602};
603
604//
605// interface to be implemented by a textcontrol
606//
607
608class WXDLLIMPEXP_FWD_CORE wxTextAttr;
609class WXDLLIMPEXP_FWD_CORE wxTextEntry;
610
611// common interface for all implementations
612class WXDLLIMPEXP_CORE wxTextWidgetImpl
613
614{
615public :
616 // Any widgets implementing this interface must be associated with a
617 // wxTextEntry so instead of requiring the derived classes to implement
618 // another (pure) virtual function, just take the pointer to this entry in
619 // our ctor and implement GetTextEntry() ourselves.
620 wxTextWidgetImpl(wxTextEntry *entry) : m_entry(entry) {}
621
622 virtual ~wxTextWidgetImpl() {}
623
624 wxTextEntry *GetTextEntry() const { return m_entry; }
625
626 virtual bool CanFocus() const { return true; }
627
628 virtual wxString GetStringValue() const = 0 ;
629 virtual void SetStringValue( const wxString &val ) = 0 ;
630 virtual void SetSelection( long from, long to ) = 0 ;
631 virtual void GetSelection( long* from, long* to ) const = 0 ;
632 virtual void WriteText( const wxString& str ) = 0 ;
633
634 virtual bool CanClipMaxLength() const { return false; }
635 virtual void SetMaxLength(unsigned long WXUNUSED(len)) {}
636
637 virtual bool GetStyle( long position, wxTextAttr& style);
638 virtual void SetStyle( long start, long end, const wxTextAttr& style ) ;
639 virtual void Copy() ;
640 virtual void Cut() ;
641 virtual void Paste() ;
642 virtual bool CanPaste() const ;
643 virtual void SetEditable( bool editable ) ;
644 virtual long GetLastPosition() const ;
645 virtual void Replace( long from, long to, const wxString &str ) ;
646 virtual void Remove( long from, long to ) ;
647
648
649 virtual bool HasOwnContextMenu() const
650 { return false ; }
651
652 virtual bool SetupCursor( const wxPoint& WXUNUSED(pt) )
653 { return false ; }
654
655 virtual void Clear() ;
656 virtual bool CanUndo() const;
657 virtual void Undo() ;
658 virtual bool CanRedo() const;
659 virtual void Redo() ;
660 virtual int GetNumberOfLines() const ;
661 virtual long XYToPosition(long x, long y) const;
662 virtual bool PositionToXY(long pos, long *x, long *y) const ;
663 virtual void ShowPosition(long WXUNUSED(pos)) ;
664 virtual int GetLineLength(long lineNo) const ;
665 virtual wxString GetLineText(long lineNo) const ;
666 virtual void CheckSpelling(bool WXUNUSED(check)) { }
667
668 virtual wxSize GetBestSize() const { return wxDefaultSize; }
669
670 virtual bool SetHint(const wxString& WXUNUSED(hint)) { return false; }
671private:
672 wxTextEntry * const m_entry;
673
674 wxDECLARE_NO_COPY_CLASS(wxTextWidgetImpl);
675};
676
677// common interface for all implementations
678class WXDLLIMPEXP_CORE wxComboWidgetImpl
679
680{
681public :
682 wxComboWidgetImpl() {}
683
684 virtual ~wxComboWidgetImpl() {}
685
686 virtual int GetSelectedItem() const { return -1; }
687 virtual void SetSelectedItem(int WXUNUSED(item)) {}
688
689 virtual int GetNumberOfItems() const { return -1; }
690
691 virtual void InsertItem(int WXUNUSED(pos), const wxString& WXUNUSED(item)) {}
692
693 virtual void RemoveItem(int WXUNUSED(pos)) {}
694
695 virtual void Clear() {}
696 virtual void Popup() {}
697 virtual void Dismiss() {}
698
699 virtual wxString GetStringAtIndex(int WXUNUSED(pos)) const { return wxEmptyString; }
700
701 virtual int FindString(const wxString& WXUNUSED(text)) const { return -1; }
702};
703
704//
705// common interface for buttons
706//
707
708class wxButtonImpl
709{
710 public :
711 wxButtonImpl(){}
712 virtual ~wxButtonImpl(){}
713
714 virtual void SetPressedBitmap( const wxBitmap& bitmap ) = 0;
715} ;
716
717//
718// common interface for search controls
719//
720
721class wxSearchWidgetImpl
722{
723public :
724 wxSearchWidgetImpl(){}
725 virtual ~wxSearchWidgetImpl(){}
726
727 // search field options
728 virtual void ShowSearchButton( bool show ) = 0;
729 virtual bool IsSearchButtonVisible() const = 0;
730
731 virtual void ShowCancelButton( bool show ) = 0;
732 virtual bool IsCancelButtonVisible() const = 0;
733
734 virtual void SetSearchMenu( wxMenu* menu ) = 0;
735
736 virtual void SetDescriptiveText(const wxString& text) = 0;
737} ;
738
739//
740// toplevel window implementation class
741//
742
743class wxNonOwnedWindowImpl : public wxObject
744{
745public :
746 wxNonOwnedWindowImpl( wxNonOwnedWindow* nonownedwnd) : m_wxPeer(nonownedwnd)
747 {
748 }
749 wxNonOwnedWindowImpl()
750 {
751 }
752 virtual ~wxNonOwnedWindowImpl()
753 {
754 }
755
756 virtual void WillBeDestroyed()
757 {
758 }
759
760 virtual void Create( wxWindow* parent, const wxPoint& pos, const wxSize& size,
761 long style, long extraStyle, const wxString& name ) = 0;
762
763
764 virtual WXWindow GetWXWindow() const = 0;
765
766 virtual void Raise()
767 {
768 }
769
770 virtual void Lower()
771 {
772 }
773
774 virtual bool Show(bool WXUNUSED(show))
775 {
776 return false;
777 }
778
779 virtual bool ShowWithEffect(bool show, wxShowEffect WXUNUSED(effect), unsigned WXUNUSED(timeout))
780 {
781 return Show(show);
782 }
783
784 virtual void Update()
785 {
786 }
787
788 virtual bool SetTransparent(wxByte WXUNUSED(alpha))
789 {
790 return false;
791 }
792
793 virtual bool SetBackgroundColour(const wxColour& WXUNUSED(col) )
794 {
795 return false;
796 }
797
798 virtual void SetExtraStyle( long WXUNUSED(exStyle) )
799 {
800 }
801
802 virtual void SetWindowStyleFlag( long WXUNUSED(style) )
803 {
804 }
805
806 virtual bool SetBackgroundStyle(wxBackgroundStyle WXUNUSED(style))
807 {
808 return false ;
809 }
810
811 virtual bool CanSetTransparent()
812 {
813 return false;
814 }
815
816 virtual void GetContentArea( int &left , int &top , int &width , int &height ) const = 0;
817 virtual void MoveWindow(int x, int y, int width, int height) = 0;
818 virtual void GetPosition( int &x, int &y ) const = 0;
819 virtual void GetSize( int &width, int &height ) const = 0;
820
821 virtual bool SetShape(const wxRegion& WXUNUSED(region))
822 {
823 return false;
824 }
825
826 virtual void SetTitle( const wxString& title, wxFontEncoding encoding ) = 0;
827
828 virtual bool IsMaximized() const = 0;
829
830 virtual bool IsIconized() const= 0;
831
832 virtual void Iconize( bool iconize )= 0;
833
834 virtual void Maximize(bool maximize) = 0;
835
836 virtual bool IsFullScreen() const= 0;
837
838 virtual void ShowWithoutActivating() { Show(true); }
839
840 virtual bool ShowFullScreen(bool show, long style)= 0;
841
842 virtual void RequestUserAttention(int flags) = 0;
843
844 virtual void ScreenToWindow( int *x, int *y ) = 0;
845
846 virtual void WindowToScreen( int *x, int *y ) = 0;
847
848 virtual bool IsActive() = 0;
849
850 wxNonOwnedWindow* GetWXPeer() { return m_wxPeer; }
851
852 static wxNonOwnedWindowImpl*
853 FindFromWXWindow(WXWindow window);
854
855 static void RemoveAssociations( wxNonOwnedWindowImpl* impl);
856
857 static void Associate( WXWindow window, wxNonOwnedWindowImpl *impl );
858
859 // static creation methods, must be implemented by all toolkits
860
861 static wxNonOwnedWindowImpl* CreateNonOwnedWindow( wxNonOwnedWindow* wxpeer, wxWindow* parent, WXWindow native) ;
862
863 static wxNonOwnedWindowImpl* CreateNonOwnedWindow( wxNonOwnedWindow* wxpeer, wxWindow* parent, const wxPoint& pos, const wxSize& size,
864 long style, long extraStyle, const wxString& name ) ;
865
866 virtual void SetModified(bool WXUNUSED(modified)) { }
867 virtual bool IsModified() const { return false; }
868
869 virtual void SetRepresentedFilename(const wxString& WXUNUSED(filename)) { }
870
871#if wxOSX_USE_IPHONE
872 virtual CGFloat GetWindowLevel() const { return 0.0; }
873#else
874 virtual CGWindowLevel GetWindowLevel() const { return kCGNormalWindowLevel; }
875#endif
876 virtual void RestoreWindowLevel() {}
877protected :
878 wxNonOwnedWindow* m_wxPeer;
879 DECLARE_ABSTRACT_CLASS(wxNonOwnedWindowImpl)
880};
881
882#endif // wxUSE_GUI
883
884//---------------------------------------------------------------------------
885// cocoa bridging utilities
886//---------------------------------------------------------------------------
887
888bool wxMacInitCocoa();
889
890class WXDLLIMPEXP_CORE wxMacAutoreleasePool
891{
892public :
893 wxMacAutoreleasePool();
894 ~wxMacAutoreleasePool();
895private :
896 void* m_pool;
897};
898
899// NSObject
900
901void wxMacCocoaRelease( void* obj );
902void wxMacCocoaAutorelease( void* obj );
903void* wxMacCocoaRetain( void* obj );
904
905
906#endif
907 // _WX_PRIVATE_CORE_H_