]> git.saurik.com Git - wxWidgets.git/blob - include/wx/cocoa/window.h
Implemented wxWindowCocoa::Cocoa_drawRect
[wxWidgets.git] / include / wx / cocoa / window.h
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
9 // Licence: wxWindows licence
10 /////////////////////////////////////////////////////////////////////////////
11
12 #ifndef __WX_COCOA_WINDOW_H__
13 #define __WX_COCOA_WINDOW_H__
14
15 #include "wx/cocoa/NSView.h"
16
17 // ========================================================================
18 // wxWindowCocoa
19 // ========================================================================
20 class WXDLLEXPORT wxWindowCocoa: public wxWindowBase, protected wxCocoaNSView
21 {
22 DECLARE_DYNAMIC_CLASS(wxWindowCocoa)
23 DECLARE_NO_COPY_CLASS(wxWindowCocoa)
24 DECLARE_EVENT_TABLE()
25 // ------------------------------------------------------------------------
26 // initialization
27 // ------------------------------------------------------------------------
28 public:
29 wxWindowCocoa() { Init(); }
30 inline wxWindowCocoa(wxWindow *parent, wxWindowID winid,
31 const wxPoint& pos = wxDefaultPosition,
32 const wxSize& size = wxDefaultSize,
33 long style = 0,
34 const wxString& name = wxPanelNameStr)
35 {
36 Init();
37 Create(parent, winid, pos, size, style, name);
38 }
39
40 virtual ~wxWindowCocoa();
41
42 bool Create(wxWindow *parent, wxWindowID winid,
43 const wxPoint& pos = wxDefaultPosition,
44 const wxSize& size = wxDefaultSize,
45 long style = 0,
46 const wxString& name = wxPanelNameStr);
47 protected:
48 void Init();
49 // ------------------------------------------------------------------------
50 // Cocoa specifics
51 // ------------------------------------------------------------------------
52 public:
53 inline WX_NSView GetNSView() { return m_cocoaNSView; }
54 void CocoaAddChild(wxWindowCocoa *child);
55 void CocoaRemoveFromParent(void);
56 protected:
57 virtual void Cocoa_FrameChanged(void);
58 virtual bool Cocoa_drawRect(const NSRect &rect);
59 void SetNSView(WX_NSView cocoaNSView);
60 WX_NSView m_cocoaNSView;
61 WX_NSView m_dummyNSView;
62 // ------------------------------------------------------------------------
63 // Implementation
64 // ------------------------------------------------------------------------
65 public:
66 /* Pure Virtuals */
67 // Raise the window to the top of the Z order
68 virtual void Raise();
69 // Lower the window to the bottom of the Z order
70 virtual void Lower();
71 // Set the focus to this window
72 virtual void SetFocus();
73 // Warp the pointer the given position
74 virtual void WarpPointer(int x_pos, int y_pos) ;
75 // Send the window a refresh event
76 virtual void Refresh(bool eraseBack = TRUE, const wxRect *rect = NULL);
77 // Clear the window
78 virtual void Clear();
79 // Set/get the window's font
80 virtual bool SetFont(const wxFont& f);
81 // inline virtual wxFont& GetFont() const;
82 // Get character size
83 virtual int GetCharHeight() const;
84 virtual int GetCharWidth() const;
85 virtual void GetTextExtent(const wxString& string, int *x, int *y,
86 int *descent = NULL,
87 int *externalLeading = NULL,
88 const wxFont *theFont = NULL) const;
89 // Scroll stuff
90 virtual void SetScrollbar(int orient, int pos, int thumbVisible,
91 int range, bool refresh = TRUE);
92 virtual void SetScrollPos(int orient, int pos, bool refresh = TRUE);
93 virtual int GetScrollPos(int orient) const;
94 virtual int GetScrollThumb(int orient) const;
95 virtual int GetScrollRange(int orient) const;
96 virtual void ScrollWindow(int dx, int dy, const wxRect *rect = NULL);
97 // Get the private handle (platform-dependent)
98 virtual WXWidget GetHandle() const;
99 // Convert client to screen coordinates
100 virtual void DoClientToScreen(int *x, int *y) const;
101 // Convert screen to client coordinates
102 virtual void DoScreenToClient(int *x, int *y) const;
103 // Capture/release mouse
104 virtual void DoCaptureMouse();
105 virtual void DoReleaseMouse();
106 // Get window position, relative to parent (or screen if no parent)
107 virtual void DoGetPosition(int *x, int *y) const;
108 // Get overall window size
109 virtual void DoGetSize(int *width, int *height) const;
110 // Get/set client (application-useable) size
111 virtual void DoGetClientSize(int *width, int *height) const;
112 virtual void DoSetClientSize(int width, int size);
113 // Set overall size and position
114 virtual void DoSetSize(int x, int y, int width, int height, int sizeFlags = wxSIZE_AUTO);
115 virtual void DoMoveWindow(int x, int y, int width, int height);
116 // Popup a menu
117 virtual bool DoPopupMenu(wxMenu *menu, int x, int y);
118
119 /* Other implementation */
120
121 // NOTE: typically Close() is not virtual, but we want this for Cocoa
122 virtual bool Close( bool force = false );
123 virtual bool Show( bool show = true );
124 };
125
126 #endif // __WX_COCOA_WINDOW_H__