]> git.saurik.com Git - wxWidgets.git/blame - include/wx/cocoa/window.h
Use wxObjcAutoRefFromAlloc for sm_cocoaTarget.
[wxWidgets.git] / include / wx / cocoa / window.h
CommitLineData
fb896a32
DE
1/////////////////////////////////////////////////////////////////////////////
2// Name: wx/cocoa/window.h
3// Purpose: wxWindowCocoa
4// Author: David Elliott
5// Modified by:
6// Created: 2002/12/26
7// RCS-ID: $Id:
8// Copyright: (c) 2002 David Elliott
65571936 9// Licence: wxWindows licence
fb896a32
DE
10/////////////////////////////////////////////////////////////////////////////
11
12#ifndef __WX_COCOA_WINDOW_H__
13#define __WX_COCOA_WINDOW_H__
14
15#include "wx/cocoa/NSView.h"
16
d139c3a8
DE
17#ifdef __OBJC__
18 #import <Foundation/NSGeometry.h>
19#endif //def __OBJC__
20
a82b8141 21class wxWindowCocoaHider;
816c52cf 22class wxWindowCocoaScroller;
a82b8141 23
fb896a32
DE
24// ========================================================================
25// wxWindowCocoa
26// ========================================================================
27class WXDLLEXPORT wxWindowCocoa: public wxWindowBase, protected wxCocoaNSView
28{
29 DECLARE_DYNAMIC_CLASS(wxWindowCocoa)
30 DECLARE_NO_COPY_CLASS(wxWindowCocoa)
31 DECLARE_EVENT_TABLE()
b9505233 32 friend wxWindow *wxWindowBase::GetCapture();
816c52cf 33 friend class wxWindowCocoaScroller;
fb896a32
DE
34// ------------------------------------------------------------------------
35// initialization
36// ------------------------------------------------------------------------
37public:
38 wxWindowCocoa() { Init(); }
39 inline wxWindowCocoa(wxWindow *parent, wxWindowID winid,
40 const wxPoint& pos = wxDefaultPosition,
41 const wxSize& size = wxDefaultSize,
42 long style = 0,
43 const wxString& name = wxPanelNameStr)
44 {
45 Init();
46 Create(parent, winid, pos, size, style, name);
47 }
48
49 virtual ~wxWindowCocoa();
50
51 bool Create(wxWindow *parent, wxWindowID winid,
52 const wxPoint& pos = wxDefaultPosition,
53 const wxSize& size = wxDefaultSize,
54 long style = 0,
55 const wxString& name = wxPanelNameStr);
56protected:
57 void Init();
58// ------------------------------------------------------------------------
59// Cocoa specifics
60// ------------------------------------------------------------------------
61public:
a82b8141 62 // Returns the content NSView (where children are added, drawing performed)
fb896a32 63 inline WX_NSView GetNSView() { return m_cocoaNSView; }
a82b8141
DE
64 // Returns the NSView suitable for use as a subview
65 WX_NSView GetNSViewForSuperview() const;
66 // Returns the NSView that may be hidden/is being hidden
67 WX_NSView GetNSViewForHiding() const;
514e7b7b
DE
68 // Returns the NSView for non-client drawing
69 virtual WX_NSView GetNonClientNSView() { return GetNSViewForSuperview(); }
70 // Add/remove children
fb896a32
DE
71 void CocoaAddChild(wxWindowCocoa *child);
72 void CocoaRemoveFromParent(void);
fb896a32 73protected:
adb4816c
DE
74 // enable==false: disables the control
75 // enable==true: enables the control IF it should be enabled
76 bool EnableSelfAndChildren(bool enable);
77 // actually enable/disable the cocoa control, overridden by subclasses
78 virtual void CocoaSetEnabled(bool enable) { }
79 // Reflects the state for THIS window (ignoring disables by parents)
80 bool m_shouldBeEnabled;
81
816c52cf 82 void CocoaCreateNSScrollView();
69dbb709 83 void InitMouseEvent(wxMouseEvent &event, WX_NSEvent cocoaEvent);
f7e98dee 84 virtual wxWindow* GetWxWindow() const;
8ea5271e
DE
85 virtual void Cocoa_FrameChanged(void);
86 virtual bool Cocoa_drawRect(const NSRect &rect);
69dbb709
DE
87 virtual bool Cocoa_mouseDown(WX_NSEvent theEvent);
88 virtual bool Cocoa_mouseDragged(WX_NSEvent theEvent);
89 virtual bool Cocoa_mouseUp(WX_NSEvent theEvent);
90 virtual bool Cocoa_mouseMoved(WX_NSEvent theEvent);
91 virtual bool Cocoa_mouseEntered(WX_NSEvent theEvent);
92 virtual bool Cocoa_mouseExited(WX_NSEvent theEvent);
93 virtual bool Cocoa_rightMouseDown(WX_NSEvent theEvent);
94 virtual bool Cocoa_rightMouseDragged(WX_NSEvent theEvent);
95 virtual bool Cocoa_rightMouseUp(WX_NSEvent theEvent);
96 virtual bool Cocoa_otherMouseDown(WX_NSEvent theEvent);
97 virtual bool Cocoa_otherMouseDragged(WX_NSEvent theEvent);
98 virtual bool Cocoa_otherMouseUp(WX_NSEvent theEvent);
5558135c 99 virtual bool Cocoa_resetCursorRects();
fb896a32
DE
100 void SetNSView(WX_NSView cocoaNSView);
101 WX_NSView m_cocoaNSView;
a82b8141 102 wxWindowCocoaHider *m_cocoaHider;
816c52cf 103 wxWindowCocoaScroller *m_cocoaScroller;
55c5be5e 104 bool m_isInPaint;
b9505233 105 static wxWindow *sm_capturedWindow;
a82b8141 106 virtual void CocoaReplaceView(WX_NSView oldView, WX_NSView newView);
d139c3a8
DE
107 void SetInitialFrameRect(const wxPoint& pos, const wxSize& size);
108#ifdef __OBJC__
109 inline NSRect MakeDefaultNSRect(const wxSize& size)
110 {
111 // NOTE: position is 10,10 to make it "obvious" that it's out of place
112 return NSMakeRect(10.0,10.0,WidthDefault(size.x),HeightDefault(size.y));
113 }
114#endif //def __OBJC__
fb896a32
DE
115// ------------------------------------------------------------------------
116// Implementation
117// ------------------------------------------------------------------------
118public:
119 /* Pure Virtuals */
120 // Raise the window to the top of the Z order
121 virtual void Raise();
122 // Lower the window to the bottom of the Z order
123 virtual void Lower();
124 // Set the focus to this window
125 virtual void SetFocus();
126 // Warp the pointer the given position
127 virtual void WarpPointer(int x_pos, int y_pos) ;
128 // Send the window a refresh event
129 virtual void Refresh(bool eraseBack = TRUE, const wxRect *rect = NULL);
fb896a32
DE
130 // Set/get the window's font
131 virtual bool SetFont(const wxFont& f);
132// inline virtual wxFont& GetFont() const;
133 // Get character size
134 virtual int GetCharHeight() const;
135 virtual int GetCharWidth() const;
136 virtual void GetTextExtent(const wxString& string, int *x, int *y,
137 int *descent = NULL,
138 int *externalLeading = NULL,
139 const wxFont *theFont = NULL) const;
140 // Scroll stuff
141 virtual void SetScrollbar(int orient, int pos, int thumbVisible,
142 int range, bool refresh = TRUE);
143 virtual void SetScrollPos(int orient, int pos, bool refresh = TRUE);
144 virtual int GetScrollPos(int orient) const;
145 virtual int GetScrollThumb(int orient) const;
146 virtual int GetScrollRange(int orient) const;
147 virtual void ScrollWindow(int dx, int dy, const wxRect *rect = NULL);
816c52cf 148 virtual void DoSetVirtualSize(int x, int y);
fb896a32
DE
149 // Get the private handle (platform-dependent)
150 virtual WXWidget GetHandle() const;
151 // Convert client to screen coordinates
152 virtual void DoClientToScreen(int *x, int *y) const;
153 // Convert screen to client coordinates
154 virtual void DoScreenToClient(int *x, int *y) const;
155 // Capture/release mouse
156 virtual void DoCaptureMouse();
157 virtual void DoReleaseMouse();
158 // Get window position, relative to parent (or screen if no parent)
159 virtual void DoGetPosition(int *x, int *y) const;
160 // Get overall window size
161 virtual void DoGetSize(int *width, int *height) const;
162 // Get/set client (application-useable) size
163 virtual void DoGetClientSize(int *width, int *height) const;
164 virtual void DoSetClientSize(int width, int size);
5558135c
RN
165 // Set this window's tooltip
166 virtual void DoSetToolTip( wxToolTip *tip );
e08efb8d
DE
167 // Set the size of the wxWindow (the contentView of an NSWindow)
168 // wxTopLevelWindow will override this and set the NSWindow size
169 // such that the contentView will be this size
170 virtual void CocoaSetWxWindowSize(int width, int height);
fb896a32
DE
171 // Set overall size and position
172 virtual void DoSetSize(int x, int y, int width, int height, int sizeFlags = wxSIZE_AUTO);
173 virtual void DoMoveWindow(int x, int y, int width, int height);
174 // Popup a menu
175 virtual bool DoPopupMenu(wxMenu *menu, int x, int y);
176
177 /* Other implementation */
178
179 // NOTE: typically Close() is not virtual, but we want this for Cocoa
180 virtual bool Close( bool force = false );
181 virtual bool Show( bool show = true );
adb4816c 182 virtual bool Enable( bool enable = true );
fb896a32
DE
183};
184
185#endif // __WX_COCOA_WINDOW_H__