1 /////////////////////////////////////////////////////////////////////////////
2 // Name: wx/cocoa/window.h
3 // Purpose: wxWindowCocoa
4 // Author: David Elliott
8 // Copyright: (c) 2002 David Elliott
9 // Licence: wxWindows licence
10 /////////////////////////////////////////////////////////////////////////////
12 #ifndef __WX_COCOA_WINDOW_H__
13 #define __WX_COCOA_WINDOW_H__
15 #include "wx/cocoa/NSView.h"
18 #import <Foundation/NSGeometry.h>
21 DECLARE_WXCOCOA_OBJC_CLASS(NSAffineTransform
);
23 class wxWindowCocoaHider
;
24 class wxWindowCocoaScrollView
;
26 // ========================================================================
28 // ========================================================================
29 class WXDLLEXPORT wxWindowCocoa
: public wxWindowBase
, protected wxCocoaNSView
31 DECLARE_DYNAMIC_CLASS(wxWindowCocoa
)
32 DECLARE_NO_COPY_CLASS(wxWindowCocoa
)
34 friend wxWindow
*wxWindowBase::GetCapture();
35 friend class wxWindowCocoaScrollView
;
36 // ------------------------------------------------------------------------
38 // ------------------------------------------------------------------------
40 wxWindowCocoa() { Init(); }
41 inline wxWindowCocoa(wxWindow
*parent
, wxWindowID winid
,
42 const wxPoint
& pos
= wxDefaultPosition
,
43 const wxSize
& size
= wxDefaultSize
,
45 const wxString
& name
= wxPanelNameStr
)
48 Create(parent
, winid
, pos
, size
, style
, name
);
51 virtual ~wxWindowCocoa();
53 bool Create(wxWindow
*parent
, wxWindowID winid
,
54 const wxPoint
& pos
= wxDefaultPosition
,
55 const wxSize
& size
= wxDefaultSize
,
57 const wxString
& name
= wxPanelNameStr
);
60 // ------------------------------------------------------------------------
62 // ------------------------------------------------------------------------
64 // Returns the content NSView (where children are added, drawing performed)
65 inline WX_NSView
GetNSView() { return m_cocoaNSView
; }
66 // Returns the NSView suitable for use as a subview
67 WX_NSView
GetNSViewForSuperview() const;
68 // Returns the NSView that may be hidden/is being hidden
69 WX_NSView
GetNSViewForHiding() const;
70 // Returns the NSView for non-client drawing
71 virtual WX_NSView
GetNonClientNSView() { return GetNSViewForSuperview(); }
72 // Add/remove children
73 void CocoaAddChild(wxWindowCocoa
*child
);
74 void CocoaRemoveFromParent(void);
76 // Returns an autoreleased NSAffineTransform which can be applied
77 // to a graphics context currently using the view's coordinate system
78 // (such as the one locked when drawRect is called or after a call
79 // to [NSView lockFocus]) such that further drawing is done using
80 // the wxWidgets coordinate system.
81 WX_NSAffineTransform
CocoaGetWxToBoundsTransform();
84 // enable==false: disables the control
85 // enable==true: enables the control IF it should be enabled
86 bool EnableSelfAndChildren(bool enable
);
87 // actually enable/disable the cocoa control, overridden by subclasses
88 virtual void CocoaSetEnabled(bool enable
) { }
89 // Reflects the state for THIS window (ignoring disables by parents)
90 bool m_shouldBeEnabled
;
92 void CocoaCreateNSScrollView();
93 void InitMouseEvent(wxMouseEvent
&event
, WX_NSEvent cocoaEvent
);
94 virtual wxWindow
* GetWxWindow() const;
95 virtual void Cocoa_FrameChanged(void);
96 virtual bool Cocoa_drawRect(const NSRect
&rect
);
97 virtual bool Cocoa_mouseDown(WX_NSEvent theEvent
);
98 virtual bool Cocoa_mouseDragged(WX_NSEvent theEvent
);
99 virtual bool Cocoa_mouseUp(WX_NSEvent theEvent
);
100 virtual bool Cocoa_mouseMoved(WX_NSEvent theEvent
);
101 virtual bool Cocoa_mouseEntered(WX_NSEvent theEvent
);
102 virtual bool Cocoa_mouseExited(WX_NSEvent theEvent
);
103 virtual bool Cocoa_rightMouseDown(WX_NSEvent theEvent
);
104 virtual bool Cocoa_rightMouseDragged(WX_NSEvent theEvent
);
105 virtual bool Cocoa_rightMouseUp(WX_NSEvent theEvent
);
106 virtual bool Cocoa_otherMouseDown(WX_NSEvent theEvent
);
107 virtual bool Cocoa_otherMouseDragged(WX_NSEvent theEvent
);
108 virtual bool Cocoa_otherMouseUp(WX_NSEvent theEvent
);
109 virtual bool Cocoa_resetCursorRects();
110 void SetNSView(WX_NSView cocoaNSView
);
111 WX_NSView m_cocoaNSView
;
112 wxWindowCocoaHider
*m_cocoaHider
;
113 wxWindowCocoaScrollView
*m_wxCocoaScrollView
;
115 static wxWindow
*sm_capturedWindow
;
116 virtual void CocoaReplaceView(WX_NSView oldView
, WX_NSView newView
);
117 void SetInitialFrameRect(const wxPoint
& pos
, const wxSize
& size
);
119 inline NSRect
MakeDefaultNSRect(const wxSize
& size
)
121 // NOTE: position is 10,10 to make it "obvious" that it's out of place
122 return NSMakeRect(10.0,10.0,WidthDefault(size
.x
),HeightDefault(size
.y
));
124 // These functions translate NSPoint or NSRect between the coordinate
125 // system of Cocoa's boudns rect and wx's coordinate system.
126 NSPoint
CocoaTransformBoundsToWx(NSPoint pointBounds
);
127 NSRect
CocoaTransformBoundsToWx(NSRect rectBounds
);
128 NSPoint
CocoaTransformWxToBounds(NSPoint pointWx
);
129 NSRect
CocoaTransformWxToBounds(NSRect rectWx
);
130 #endif //def __OBJC__
131 // ------------------------------------------------------------------------
133 // ------------------------------------------------------------------------
136 // Raise the window to the top of the Z order
137 virtual void Raise();
138 // Lower the window to the bottom of the Z order
139 virtual void Lower();
140 // Set the focus to this window
141 virtual void SetFocus();
142 // Warp the pointer the given position
143 virtual void WarpPointer(int x_pos
, int y_pos
) ;
144 // Send the window a refresh event
145 virtual void Refresh(bool eraseBack
= TRUE
, const wxRect
*rect
= NULL
);
146 // Set/get the window's font
147 virtual bool SetFont(const wxFont
& f
);
148 // inline virtual wxFont& GetFont() const;
149 // Get character size
150 virtual int GetCharHeight() const;
151 virtual int GetCharWidth() const;
152 virtual void GetTextExtent(const wxString
& string
, int *x
, int *y
,
154 int *externalLeading
= NULL
,
155 const wxFont
*theFont
= NULL
) const;
157 virtual void SetScrollbar(int orient
, int pos
, int thumbVisible
,
158 int range
, bool refresh
= TRUE
);
159 virtual void SetScrollPos(int orient
, int pos
, bool refresh
= TRUE
);
160 virtual int GetScrollPos(int orient
) const;
161 virtual int GetScrollThumb(int orient
) const;
162 virtual int GetScrollRange(int orient
) const;
163 virtual void ScrollWindow(int dx
, int dy
, const wxRect
*rect
= NULL
);
164 virtual void DoSetVirtualSize(int x
, int y
);
165 // Get the private handle (platform-dependent)
166 virtual WXWidget
GetHandle() const;
167 // Convert client to screen coordinates
168 virtual void DoClientToScreen(int *x
, int *y
) const;
169 // Convert screen to client coordinates
170 virtual void DoScreenToClient(int *x
, int *y
) const;
171 // Capture/release mouse
172 virtual void DoCaptureMouse();
173 virtual void DoReleaseMouse();
174 // Get window position, relative to parent (or screen if no parent)
175 virtual void DoGetPosition(int *x
, int *y
) const;
176 // Get overall window size
177 virtual void DoGetSize(int *width
, int *height
) const;
178 // Get/set client (application-useable) size
179 virtual void DoGetClientSize(int *width
, int *height
) const;
180 virtual void DoSetClientSize(int width
, int size
);
181 // Set this window's tooltip
182 virtual void DoSetToolTip( wxToolTip
*tip
);
183 // Set the size of the wxWindow (the contentView of an NSWindow)
184 // wxTopLevelWindow will override this and set the NSWindow size
185 // such that the contentView will be this size
186 virtual void CocoaSetWxWindowSize(int width
, int height
);
187 // Set overall size and position
188 virtual void DoSetSize(int x
, int y
, int width
, int height
, int sizeFlags
= wxSIZE_AUTO
);
189 virtual void DoMoveWindow(int x
, int y
, int width
, int height
);
191 virtual bool DoPopupMenu(wxMenu
*menu
, int x
, int y
);
193 /* Other implementation */
195 // NOTE: typically Close() is not virtual, but we want this for Cocoa
196 virtual bool Close( bool force
= false );
197 virtual bool Show( bool show
= true );
198 virtual bool Enable( bool enable
= true );
201 #endif // __WX_COCOA_WINDOW_H__