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