]>
Commit | Line | Data |
---|---|---|
b3c86150 VS |
1 | ///////////////////////////////////////////////////////////////////////////// |
2 | // Name: wx/dfb/window.h | |
3 | // Purpose: wxWindow class | |
4 | // Author: Vaclav Slavik | |
5 | // Created: 2006-08-10 | |
6 | // RCS-ID: $Id$ | |
7 | // Copyright: (c) 2006 REA Elektronik GmbH | |
8 | // Licence: wxWindows licence | |
9 | ///////////////////////////////////////////////////////////////////////////// | |
10 | ||
11 | #ifndef _WX_DFB_WINDOW_H_ | |
12 | #define _WX_DFB_WINDOW_H_ | |
13 | ||
14 | // --------------------------------------------------------------------------- | |
15 | // headers | |
16 | // --------------------------------------------------------------------------- | |
17 | ||
52c8d32a | 18 | #include "wx/dfb/dfbptr.h" |
b3c86150 VS |
19 | |
20 | wxDFB_DECLARE_INTERFACE(IDirectFBSurface); | |
21 | struct wxDFBWindowEvent; | |
22 | ||
b5dbe15d VS |
23 | class WXDLLIMPEXP_FWD_CORE wxFont; |
24 | class WXDLLIMPEXP_FWD_CORE wxNonOwnedWindow; | |
b3c86150 | 25 | |
30c841c8 VS |
26 | class wxOverlayImpl; |
27 | class wxDfbOverlaysList; | |
28 | ||
b3c86150 VS |
29 | // --------------------------------------------------------------------------- |
30 | // wxWindow | |
31 | // --------------------------------------------------------------------------- | |
32 | ||
33 | class WXDLLIMPEXP_CORE wxWindowDFB : public wxWindowBase | |
34 | { | |
35 | public: | |
36 | wxWindowDFB() { Init(); } | |
37 | ||
38 | wxWindowDFB(wxWindow *parent, | |
39 | wxWindowID id, | |
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, id, pos, size, style, name); | |
47 | } | |
48 | ||
49 | virtual ~wxWindowDFB(); | |
50 | ||
51 | bool Create(wxWindow *parent, | |
52 | wxWindowID id, | |
53 | const wxPoint& pos = wxDefaultPosition, | |
54 | const wxSize& size = wxDefaultSize, | |
55 | long style = 0, | |
56 | const wxString& name = wxPanelNameStr); | |
57 | ||
58 | // implement base class (pure) virtual methods | |
59 | // ------------------------------------------- | |
60 | ||
61 | virtual void SetLabel( const wxString &WXUNUSED(label) ) {} | |
62 | virtual wxString GetLabel() const { return wxEmptyString; } | |
63 | ||
64 | virtual void Raise(); | |
65 | virtual void Lower(); | |
66 | ||
67 | virtual bool Show(bool show = true); | |
68 | ||
69 | virtual void SetFocus(); | |
70 | ||
71 | virtual bool Reparent(wxWindowBase *newParent); | |
72 | ||
73 | virtual void WarpPointer(int x, int y); | |
74 | ||
75 | virtual void Refresh(bool eraseBackground = true, | |
76 | const wxRect *rect = (const wxRect *) NULL); | |
77 | virtual void Update(); | |
b3c86150 VS |
78 | |
79 | virtual bool SetCursor(const wxCursor &cursor); | |
80 | virtual bool SetFont(const wxFont &font) { m_font = font; return true; } | |
81 | ||
82 | virtual int GetCharHeight() const; | |
83 | virtual int GetCharWidth() const; | |
b3c86150 VS |
84 | |
85 | #if wxUSE_DRAG_AND_DROP | |
86 | virtual void SetDropTarget(wxDropTarget *dropTarget); | |
87 | ||
88 | // Accept files for dragging | |
89 | virtual void DragAcceptFiles(bool accept); | |
90 | #endif // wxUSE_DRAG_AND_DROP | |
91 | ||
92 | virtual WXWidget GetHandle() const { return this; } | |
93 | ||
94 | // implementation from now on | |
95 | // -------------------------- | |
96 | ||
97 | // Returns DirectFB surface used for rendering of this window | |
52c8d32a | 98 | wxIDirectFBSurfacePtr GetDfbSurface(); |
b3c86150 VS |
99 | |
100 | // returns toplevel window the window belongs to | |
42b0d8b9 | 101 | wxNonOwnedWindow *GetTLW() const { return m_tlw; } |
b3c86150 VS |
102 | |
103 | void OnInternalIdle(); | |
104 | ||
2e992e06 VZ |
105 | virtual bool IsDoubleBuffered() const { return true; } |
106 | ||
b3c86150 VS |
107 | protected: |
108 | // implement the base class pure virtuals | |
6de70470 VZ |
109 | virtual void DoGetTextExtent(const wxString& string, |
110 | int *x, int *y, | |
111 | int *descent = NULL, | |
112 | int *externalLeading = NULL, | |
113 | const wxFont *theFont = NULL) const; | |
b3c86150 VS |
114 | virtual void DoClientToScreen(int *x, int *y) const; |
115 | virtual void DoScreenToClient(int *x, int *y) const; | |
116 | virtual void DoGetPosition(int *x, int *y) const; | |
117 | virtual void DoGetSize(int *width, int *height) const; | |
118 | virtual void DoGetClientSize(int *width, int *height) const; | |
119 | virtual void DoSetSize(int x, int y, | |
120 | int width, int height, | |
121 | int sizeFlags = wxSIZE_AUTO); | |
122 | virtual void DoSetClientSize(int width, int height); | |
123 | ||
124 | virtual void DoCaptureMouse(); | |
125 | virtual void DoReleaseMouse(); | |
126 | ||
17808a75 VZ |
127 | virtual void DoThaw(); |
128 | ||
b3c86150 VS |
129 | // move the window to the specified location and resize it: this is called |
130 | // from both DoSetSize() and DoSetClientSize() and would usually just call | |
131 | // ::MoveWindow() except for composite controls which will want to arrange | |
132 | // themselves inside the given rectangle | |
133 | virtual void DoMoveWindow(int x, int y, int width, int height); | |
134 | ||
135 | // return DFB surface used to render this window (will be assigned to | |
136 | // m_surface if the window is visible) | |
52c8d32a | 137 | virtual wxIDirectFBSurfacePtr ObtainDfbSurface() const; |
b3c86150 VS |
138 | |
139 | // this method must be called when window's position, size or visibility | |
140 | // changes; it resets m_surface so that ObtainDfbSurface has to be called | |
141 | // next time GetDfbSurface is called | |
142 | void InvalidateDfbSurface(); | |
143 | ||
144 | // called by parent to render (part of) the window | |
20671963 | 145 | void PaintWindow(const wxRect& rect); |
b3c86150 | 146 | |
30c841c8 VS |
147 | // paint window's overlays (if any) on top of window's surface |
148 | void PaintOverlays(const wxRect& rect); | |
149 | ||
20671963 VS |
150 | // refreshes the entire window (including non-client areas) |
151 | void DoRefreshWindow(); | |
152 | // refreshes given rectangle of the window (in window, _not_ client coords) | |
153 | virtual void DoRefreshRect(const wxRect& rect); | |
30c841c8 VS |
154 | // refreshes given rectangle; unlike RefreshRect(), the argument is in |
155 | // window, not client, coords and unlike DoRefreshRect() and like Refresh(), | |
156 | // does nothing if the window is hidden or frozen | |
157 | void RefreshWindowRect(const wxRect& rect); | |
158 | ||
159 | // add/remove overlay for this window | |
160 | void AddOverlay(wxOverlayImpl *overlay); | |
161 | void RemoveOverlay(wxOverlayImpl *overlay); | |
b3c86150 VS |
162 | |
163 | // DirectFB events handling | |
164 | void HandleKeyEvent(const wxDFBWindowEvent& event_); | |
165 | ||
166 | private: | |
167 | // common part of all ctors | |
168 | void Init(); | |
169 | // counterpart to SetFocus | |
4ff28c37 | 170 | void DFBKillFocus(); |
b3c86150 VS |
171 | |
172 | protected: | |
173 | // toplevel window (i.e. DirectFB window) this window belongs to | |
42b0d8b9 | 174 | wxNonOwnedWindow *m_tlw; |
b3c86150 VS |
175 | |
176 | private: | |
177 | // subsurface of TLW's surface covered by this window | |
52c8d32a | 178 | wxIDirectFBSurfacePtr m_surface; |
b3c86150 VS |
179 | |
180 | // position of the window (relative to the parent, not used by wxTLW, so | |
181 | // don't access it directly) | |
182 | wxRect m_rect; | |
183 | ||
30c841c8 VS |
184 | // overlays for this window (or NULL if it doesn't have any) |
185 | wxDfbOverlaysList *m_overlays; | |
186 | ||
42b0d8b9 | 187 | friend class wxNonOwnedWindow; // for HandleXXXEvent |
30c841c8 | 188 | friend class wxOverlayImpl; // for Add/RemoveOverlay |
4a624f6e | 189 | friend class wxWindowDCImpl; // for PaintOverlays |
b3c86150 VS |
190 | |
191 | DECLARE_DYNAMIC_CLASS(wxWindowDFB) | |
c0c133e1 | 192 | wxDECLARE_NO_COPY_CLASS(wxWindowDFB); |
b3c86150 VS |
193 | DECLARE_EVENT_TABLE() |
194 | }; | |
195 | ||
b3c86150 | 196 | #endif // _WX_DFB_WINDOW_H_ |