]> git.saurik.com Git - wxWidgets.git/blob - include/wx/mac/carbon/window.h
Add MacHideApp
[wxWidgets.git] / include / wx / mac / carbon / window.h
1 /////////////////////////////////////////////////////////////////////////////
2 // Name: include/wx/mac/carbon/window.h
3 // Purpose: wxWindowMac class
4 // Author: Stefan Csomor
5 // Modified by:
6 // Created: 1998-01-01
7 // RCS-ID: $Id$
8 // Copyright: (c) Stefan Csomor
9 // Licence: wxWindows licence
10 /////////////////////////////////////////////////////////////////////////////
11
12 #ifndef _WX_WINDOW_H_
13 #define _WX_WINDOW_H_
14
15 #include "wx/brush.h"
16 #include "wx/dc.h"
17
18 class WXDLLIMPEXP_FWD_CORE wxButton;
19 class WXDLLIMPEXP_FWD_CORE wxScrollBar;
20 class WXDLLIMPEXP_FWD_CORE wxTopLevelWindowMac;
21
22 class WXDLLIMPEXP_FWD_CORE wxMacControl ;
23
24 class WXDLLEXPORT wxWindowMac: public wxWindowBase
25 {
26 DECLARE_DYNAMIC_CLASS(wxWindowMac)
27
28 friend class wxDC;
29 friend class wxPaintDC;
30
31 public:
32 wxWindowMac();
33
34 wxWindowMac( wxWindowMac *parent,
35 wxWindowID id,
36 const wxPoint& pos = wxDefaultPosition,
37 const wxSize& size = wxDefaultSize,
38 long style = 0,
39 const wxString& name = wxPanelNameStr );
40
41 virtual ~wxWindowMac();
42
43 bool Create( wxWindowMac *parent,
44 wxWindowID id,
45 const wxPoint& pos = wxDefaultPosition,
46 const wxSize& size = wxDefaultSize,
47 long style = 0,
48 const wxString& name = wxPanelNameStr );
49
50 // implement base class pure virtuals
51 virtual void SetLabel( const wxString& label );
52 virtual wxString GetLabel() const;
53
54 virtual void Raise();
55 virtual void Lower();
56
57 virtual bool Show( bool show = true );
58
59 virtual bool IsShownOnScreen() const;
60
61 virtual void SetFocus();
62
63 virtual void WarpPointer( int x, int y );
64
65 virtual void Refresh( bool eraseBackground = true,
66 const wxRect *rect = NULL );
67
68 virtual void Update() ;
69 virtual void ClearBackground();
70
71 virtual bool SetCursor( const wxCursor &cursor );
72 virtual bool SetFont( const wxFont &font );
73 virtual bool SetBackgroundColour( const wxColour &colour );
74 virtual bool SetForegroundColour( const wxColour &colour );
75
76 virtual int GetCharHeight() const;
77 virtual int GetCharWidth() const;
78 virtual void GetTextExtent( const wxString& string,
79 int *x, int *y,
80 int *descent = NULL,
81 int *externalLeading = NULL,
82 const wxFont *theFont = NULL )
83 const;
84 protected:
85 virtual void DoEnable( bool enable );
86 virtual bool DoPopupMenu( wxMenu *menu, int x, int y );
87
88 virtual void DoFreeze();
89 virtual void DoThaw();
90
91 public:
92 virtual void SetScrollbar( int orient, int pos, int thumbVisible,
93 int range, bool refresh = true );
94 virtual void SetScrollPos( int orient, int pos, bool refresh = true );
95 virtual int GetScrollPos( int orient ) const;
96 virtual int GetScrollThumb( int orient ) const;
97 virtual int GetScrollRange( int orient ) const;
98 virtual void ScrollWindow( int dx, int dy,
99 const wxRect* rect = (wxRect *) NULL );
100 virtual void AlwaysShowScrollbars(bool horz = true, bool vert = true);
101 virtual bool IsScrollbarAlwaysShown(int orient) const
102 {
103 return orient == wxHORIZONTAL ? m_hScrollBarAlwaysShown
104 : m_vScrollBarAlwaysShown;
105 }
106
107 virtual bool Reparent( wxWindowBase *newParent );
108
109 #if wxUSE_DRAG_AND_DROP
110 virtual void SetDropTarget( wxDropTarget *dropTarget );
111 #endif
112
113 // Accept files for dragging
114 virtual void DragAcceptFiles( bool accept );
115
116 // implementation from now on
117 // --------------------------
118
119 void MacClientToRootWindow( int *x , int *y ) const;
120 void MacRootWindowToClient( int *x , int *y ) const;
121
122 void MacWindowToRootWindow( int *x , int *y ) const;
123 void MacWindowToRootWindow( short *x , short *y ) const;
124
125 void MacRootWindowToWindow( int *x , int *y ) const;
126 void MacRootWindowToWindow( short *x , short *y ) const;
127
128 virtual wxString MacGetToolTipString( wxPoint &where );
129
130 // simple accessors
131 // ----------------
132
133 virtual WXWidget GetHandle() const;
134
135 virtual bool SetTransparent(wxByte alpha);
136 virtual bool CanSetTransparent();
137 virtual wxByte GetTransparent() const ;
138
139 // event handlers
140 // --------------
141 void OnPaint( wxPaintEvent& event );
142 void OnNcPaint( wxNcPaintEvent& event );
143 void OnEraseBackground(wxEraseEvent& event );
144 void OnMouseEvent( wxMouseEvent &event );
145
146 void MacOnScroll( wxScrollEvent&event );
147
148 virtual bool AcceptsFocus() const;
149
150 virtual bool IsDoubleBuffered() const { return true; }
151
152 public:
153 static long MacRemoveBordersFromStyle( long style ) ;
154
155 public:
156 void OnInternalIdle();
157
158 // For implementation purposes:
159 // sometimes decorations make the client area smaller
160 virtual wxPoint GetClientAreaOrigin() const;
161
162 wxWindowMac *FindItem(long id) const;
163 wxWindowMac *FindItemByHWND(WXHWND hWnd, bool controlOnly = false) const;
164
165 virtual void MacHandleControlClick( WXWidget control , wxInt16 controlpart , bool mouseStillDown ) ;
166 virtual bool MacDoRedraw( void* updatergn , long time ) ;
167 virtual bool MacCanFocus() const ;
168
169 // this should not be overriden in classes above wxWindowMac
170 // because it is called from its destructor via DeleteChildren
171 virtual void RemoveChild( wxWindowBase *child );
172 virtual void MacPaintBorders( int left , int top ) ;
173 void MacPaintGrowBox();
174
175 // invalidates the borders and focus area around the control;
176 // must not be virtual as it will be called during destruction
177 void MacInvalidateBorders() ;
178
179 WXWindow MacGetTopLevelWindowRef() const ;
180 wxTopLevelWindowMac* MacGetTopLevelWindow() const ;
181
182 virtual long MacGetLeftBorderSize() const ;
183 virtual long MacGetRightBorderSize() const ;
184 virtual long MacGetTopBorderSize() const ;
185 virtual long MacGetBottomBorderSize() const ;
186
187 virtual void MacSuperChangedPosition() ;
188
189 // absolute coordinates of this window's root have changed
190 virtual void MacTopLevelWindowChangedPosition() ;
191
192 virtual void MacChildAdded() ;
193 virtual void MacVisibilityChanged() ;
194 virtual void MacEnabledStateChanged() ;
195 virtual void MacHiliteChanged() ;
196 virtual wxInt32 MacControlHit( WXEVENTHANDLERREF handler , WXEVENTREF event ) ;
197
198 bool MacIsReallyShown() ;
199 bool MacIsReallyEnabled() ;
200 bool MacIsReallyHilited() ;
201
202 bool MacIsUserPane() { return m_macIsUserPane; }
203
204 virtual bool MacSetupCursor( const wxPoint& pt ) ;
205
206 // return the rectangle that would be visible of this control,
207 // regardless whether controls are hidden
208 // only taking into account clipping by parent windows
209 const wxRect& MacGetClippedClientRect() const ;
210 const wxRect& MacGetClippedRect() const ;
211 const wxRect& MacGetClippedRectWithOuterStructure() const ;
212
213 // returns the visible region of this control in window ie non-client coordinates
214 const wxRegion& MacGetVisibleRegion( bool includeOuterStructures = false ) ;
215
216 // returns true if children have to clipped to the content area
217 // (e.g., scrolled windows)
218 bool MacClipChildren() const { return m_clipChildren ; }
219 void MacSetClipChildren( bool clip ) { m_clipChildren = clip ; }
220
221 // returns true if the grandchildren need to be clipped to the children's content area
222 // (e.g., splitter windows)
223 virtual bool MacClipGrandChildren() const { return false ; }
224 bool MacIsWindowScrollbar( const wxWindow* sb ) const
225 { return ((wxWindow*)m_hScrollBar == sb || (wxWindow*)m_vScrollBar == sb) ; }
226 virtual bool IsClientAreaChild(const wxWindow *child) const
227 {
228 return !MacIsWindowScrollbar(child) &&
229 wxWindowBase::IsClientAreaChild(child);
230 }
231
232 virtual void MacInstallEventHandler(WXWidget native) ;
233 void MacPostControlCreate(const wxPoint& pos, const wxSize& size) ;
234 wxList& GetSubcontrols() { return m_subControls; }
235 WXEVENTHANDLERREF MacGetControlEventHandler() { return m_macControlEventHandler ; }
236
237 // translate wxWidgets coords into ones suitable
238 // to be passed to CreateControl calls
239 //
240 // returns true if non-default coords are returned, false otherwise
241 bool MacGetBoundsForControl(const wxPoint& pos,
242 const wxSize& size,
243 int& x, int& y,
244 int& w, int& h , bool adjustForOrigin ) const ;
245
246 // calculates the real window position and size from the native control
247 void MacGetPositionAndSizeFromControl(int& x, int& y,
248 int& w, int& h) const ;
249
250 // gets the inset from every part
251 virtual void MacGetContentAreaInset( int &left , int &top , int &right , int &bottom ) ;
252
253 // visibly flash the current invalid area:
254 // useful for debugging in OSX composited (double-buffered) situation
255 void MacFlashInvalidAreas() ;
256
257 // the 'true' OS level control for this wxWindow
258 wxMacControl* GetPeer() const { return m_peer ; }
259
260 void * MacGetCGContextRef() { return m_cgContextRef ; }
261 void MacSetCGContextRef(void * cg) { m_cgContextRef = cg ; }
262
263 protected:
264 // For controls like radio buttons which are genuinely composite
265 wxList m_subControls;
266
267 // the peer object, allowing for cleaner API support
268 wxMacControl * m_peer ;
269
270 void * m_cgContextRef ;
271
272 // cache the clipped rectangles within the window hierarchy
273 void MacUpdateClippedRects() const ;
274
275 mutable bool m_cachedClippedRectValid ;
276 mutable wxRect m_cachedClippedRectWithOuterStructure ;
277 mutable wxRect m_cachedClippedRect ;
278 mutable wxRect m_cachedClippedClientRect ;
279 mutable wxRegion m_cachedClippedRegionWithOuterStructure ;
280 mutable wxRegion m_cachedClippedRegion ;
281 mutable wxRegion m_cachedClippedClientRegion ;
282
283 // true if is is not a native control but a wxWindow control
284 bool m_macIsUserPane ;
285
286 // insets of the mac control from the wx top left corner
287 wxPoint m_macTopLeftInset ;
288 wxPoint m_macBottomRightInset ;
289 wxByte m_macAlpha ;
290
291 wxScrollBar* m_hScrollBar ;
292 wxScrollBar* m_vScrollBar ;
293 bool m_hScrollBarAlwaysShown;
294 bool m_vScrollBarAlwaysShown;
295 wxString m_label ;
296
297 // set to true if we do a sharp clip at the content area of this window
298 // must be dynamic as eg a panel normally is not clipping precisely, but if
299 // it becomes the target window of a scrolled window it has to...
300 bool m_clipChildren ;
301
302 virtual bool MacIsChildOfClientArea( const wxWindow* child ) const ;
303
304 bool MacHasScrollBarCorner() const;
305 void MacCreateScrollBars( long style ) ;
306 void MacRepositionScrollBars() ;
307 void MacUpdateControlFont() ;
308
309 // implement the base class pure virtuals
310 virtual wxSize DoGetBestSize() const;
311 virtual wxSize DoGetSizeFromClientSize( const wxSize & size ) const;
312 virtual void DoClientToScreen( int *x, int *y ) const;
313 virtual void DoScreenToClient( int *x, int *y ) const;
314 virtual void DoGetPosition( int *x, int *y ) const;
315 virtual void DoGetSize( int *width, int *height ) const;
316 virtual void DoGetClientSize( int *width, int *height ) const;
317 virtual void DoSetSize(int x, int y,
318 int width, int height,
319 int sizeFlags = wxSIZE_AUTO);
320 virtual void DoSetClientSize(int width, int height);
321
322 virtual void DoCaptureMouse();
323 virtual void DoReleaseMouse();
324
325 // move the window to the specified location and resize it: this is called
326 // from both DoSetSize() and DoSetClientSize() and would usually just call
327 // ::MoveWindow() except for composite controls which will want to arrange
328 // themselves inside the given rectangle
329 virtual void DoMoveWindow( int x, int y, int width, int height );
330 virtual void DoSetWindowVariant( wxWindowVariant variant );
331
332 #if wxUSE_TOOLTIPS
333 virtual void DoSetToolTip( wxToolTip *tip );
334 #endif
335
336 private:
337 // common part of all ctors
338 void Init();
339
340 // show/hide scrollbars as needed, common part of SetScrollbar() and
341 // AlwaysShowScrollbars()
342 void DoUpdateScrollbarVisibility();
343
344
345 WXEVENTHANDLERREF m_macControlEventHandler ;
346
347 DECLARE_NO_COPY_CLASS(wxWindowMac)
348 DECLARE_EVENT_TABLE()
349 };
350
351 #endif // _WX_WINDOW_H_