]>
Commit | Line | Data |
---|---|---|
9b6dbb09 JS |
1 | ///////////////////////////////////////////////////////////////////////////// |
2 | // Name: window.h | |
3 | // Purpose: wxWindow class | |
4 | // Author: Julian Smart | |
5 | // Modified by: | |
6 | // Created: 17/09/98 | |
7 | // RCS-ID: $Id$ | |
8 | // Copyright: (c) Julian Smart | |
34636400 | 9 | // Licence: wxWindows licence |
9b6dbb09 JS |
10 | ///////////////////////////////////////////////////////////////////////////// |
11 | ||
12 | #ifndef _WX_WINDOW_H_ | |
13 | #define _WX_WINDOW_H_ | |
14 | ||
3399051e | 15 | #if defined(__GNUG__) && !defined(__APPLE__) |
83df96d6 | 16 | #pragma interface "window.h" |
9b6dbb09 JS |
17 | #endif |
18 | ||
25f47127 | 19 | #include "wx/region.h" |
af0bb3b1 | 20 | |
34636400 VZ |
21 | // ---------------------------------------------------------------------------- |
22 | // wxWindow class for Motif - see also wxWindowBase | |
23 | // ---------------------------------------------------------------------------- | |
9b6dbb09 | 24 | |
34636400 | 25 | class wxWindow : public wxWindowBase |
9b6dbb09 | 26 | { |
83df96d6 JS |
27 | friend class WXDLLEXPORT wxDC; |
28 | friend class WXDLLEXPORT wxWindowDC; | |
29 | ||
9b6dbb09 | 30 | public: |
34636400 | 31 | wxWindow() { Init(); } |
83df96d6 | 32 | |
34636400 | 33 | wxWindow(wxWindow *parent, |
83df96d6 JS |
34 | wxWindowID id, |
35 | const wxPoint& pos = wxDefaultPosition, | |
36 | const wxSize& size = wxDefaultSize, | |
37 | long style = 0, | |
38 | const wxString& name = wxPanelNameStr) | |
bfc6fde4 | 39 | { |
34636400 | 40 | Init(); |
bfc6fde4 VZ |
41 | Create(parent, id, pos, size, style, name); |
42 | } | |
83df96d6 | 43 | |
bfc6fde4 | 44 | virtual ~wxWindow(); |
83df96d6 | 45 | |
34636400 | 46 | bool Create(wxWindow *parent, |
83df96d6 JS |
47 | wxWindowID id, |
48 | const wxPoint& pos = wxDefaultPosition, | |
49 | const wxSize& size = wxDefaultSize, | |
50 | long style = 0, | |
51 | const wxString& name = wxPanelNameStr); | |
52 | ||
34636400 VZ |
53 | // implement base class pure virtuals |
54 | virtual void SetTitle( const wxString& title); | |
55 | virtual wxString GetTitle() const; | |
83df96d6 | 56 | |
bfc6fde4 | 57 | virtual void Raise(); |
bfc6fde4 | 58 | virtual void Lower(); |
83df96d6 | 59 | |
34636400 VZ |
60 | virtual bool Show( bool show = TRUE ); |
61 | virtual bool Enable( bool enable = TRUE ); | |
83df96d6 | 62 | |
34636400 | 63 | virtual void SetFocus(); |
83df96d6 | 64 | |
34636400 | 65 | virtual void WarpPointer(int x, int y); |
83df96d6 | 66 | |
34636400 | 67 | virtual void Refresh( bool eraseBackground = TRUE, |
83df96d6 | 68 | const wxRect *rect = (const wxRect *) NULL ); |
34636400 | 69 | virtual void Clear(); |
83df96d6 | 70 | |
af0bb3b1 VZ |
71 | virtual bool SetBackgroundColour( const wxColour &colour ); |
72 | virtual bool SetForegroundColour( const wxColour &colour ); | |
83df96d6 | 73 | |
34636400 VZ |
74 | virtual bool SetCursor( const wxCursor &cursor ); |
75 | virtual bool SetFont( const wxFont &font ); | |
83df96d6 | 76 | |
bfc6fde4 VZ |
77 | virtual int GetCharHeight() const; |
78 | virtual int GetCharWidth() const; | |
34636400 | 79 | virtual void GetTextExtent(const wxString& string, |
83df96d6 JS |
80 | int *x, int *y, |
81 | int *descent = (int *) NULL, | |
82 | int *externalLeading = (int *) NULL, | |
83 | const wxFont *theFont = (const wxFont *) NULL) | |
84 | const; | |
85 | ||
34636400 | 86 | virtual void SetScrollbar( int orient, int pos, int thumbVisible, |
83df96d6 | 87 | int range, bool refresh = TRUE ); |
34636400 VZ |
88 | virtual void SetScrollPos( int orient, int pos, bool refresh = TRUE ); |
89 | virtual int GetScrollPos( int orient ) const; | |
90 | virtual int GetScrollThumb( int orient ) const; | |
91 | virtual int GetScrollRange( int orient ) const; | |
92 | virtual void ScrollWindow( int dx, int dy, | |
83df96d6 JS |
93 | const wxRect* rect = (wxRect *) NULL ); |
94 | ||
47d67540 | 95 | #if wxUSE_DRAG_AND_DROP |
34636400 VZ |
96 | virtual void SetDropTarget( wxDropTarget *dropTarget ); |
97 | #endif // wxUSE_DRAG_AND_DROP | |
83df96d6 | 98 | |
bfc6fde4 VZ |
99 | // Accept files for dragging |
100 | virtual void DragAcceptFiles(bool accept); | |
83df96d6 | 101 | |
af0bb3b1 VZ |
102 | // Get the unique identifier of a window |
103 | virtual WXWidget GetHandle() const { return GetMainWidget(); } | |
83df96d6 | 104 | |
af0bb3b1 VZ |
105 | // implementation from now on |
106 | // -------------------------- | |
83df96d6 | 107 | |
af0bb3b1 VZ |
108 | // accessors |
109 | // --------- | |
83df96d6 | 110 | |
af0bb3b1 VZ |
111 | // Get main widget for this window, e.g. a text widget |
112 | virtual WXWidget GetMainWidget() const; | |
a8680e3e MB |
113 | // Get the widget that corresponds to the label (for font setting, |
114 | // label setting etc.) | |
af0bb3b1 VZ |
115 | virtual WXWidget GetLabelWidget() const; |
116 | // Get the client widget for this window (something we can create other | |
117 | // windows on) | |
118 | virtual WXWidget GetClientWidget() const; | |
119 | // Get the top widget for this window, e.g. the scrolled widget parent of a | |
120 | // multi-line text widget. Top means, top in the window hierarchy that | |
121 | // implements this window. | |
122 | virtual WXWidget GetTopWidget() const; | |
83df96d6 | 123 | |
af0bb3b1 VZ |
124 | // Get the underlying X window and display |
125 | WXWindow GetXWindow() const; | |
126 | WXDisplay *GetXDisplay() const; | |
83df96d6 | 127 | |
af0bb3b1 | 128 | void SetLastClick(int button, long timestamp) |
83df96d6 JS |
129 | { m_lastButton = button; m_lastTS = timestamp; } |
130 | ||
af0bb3b1 VZ |
131 | int GetLastClickedButton() const { return m_lastButton; } |
132 | long GetLastClickTime() const { return m_lastTS; } | |
83df96d6 | 133 | |
a8680e3e MB |
134 | // Gives window a chance to do something in response to a size message, |
135 | // e.g. arrange status bar, toolbar etc. | |
af0bb3b1 | 136 | virtual bool PreResize(); |
83df96d6 | 137 | |
af0bb3b1 VZ |
138 | // Generates a paint event |
139 | virtual void DoPaint(); | |
83df96d6 | 140 | |
af0bb3b1 VZ |
141 | // update rectangle/region manipulation |
142 | // (for wxWindowDC and Motif callbacks only) | |
143 | // ----------------------------------------- | |
83df96d6 | 144 | |
af0bb3b1 VZ |
145 | // read/write access to the update rect list |
146 | const wxRectList& GetUpdateRects() const { return m_updateRects; } | |
83df96d6 | 147 | |
af0bb3b1 VZ |
148 | // Adds a recangle to the updates list |
149 | void AddUpdateRect(int x, int y, int w, int h) | |
83df96d6 JS |
150 | { m_updateRects.Append(new wxRect(x, y, w, h)); } |
151 | ||
af0bb3b1 VZ |
152 | // Empties the m_updateRects list |
153 | void ClearUpdateRects(); | |
83df96d6 | 154 | |
af0bb3b1 VZ |
155 | void ClearUpdateRegion() { m_updateRegion.Clear(); } |
156 | void SetUpdateRegion(const wxRegion& region) { m_updateRegion = region; } | |
83df96d6 | 157 | |
bfc6fde4 VZ |
158 | // For implementation purposes - sometimes decorations make the client area |
159 | // smaller | |
160 | virtual wxPoint GetClientAreaOrigin() const; | |
83df96d6 | 161 | |
d6eaea28 VS |
162 | protected: |
163 | // event handlers (not virtual by design) | |
164 | void OnIdle(wxIdleEvent& event); | |
83df96d6 | 165 | |
bfc6fde4 VZ |
166 | // Responds to colour changes: passes event on to children. |
167 | void OnSysColourChanged(wxSysColourChangedEvent& event); | |
83df96d6 | 168 | |
34636400 | 169 | // Motif-specific |
83df96d6 | 170 | |
34636400 | 171 | void SetMainWidget(WXWidget w) { m_mainWidget = w; } |
83df96d6 | 172 | |
37c997b4 MB |
173 | // See src/motif/window.cpp, near the top, for an explanation |
174 | // why this is necessary | |
175 | void CanvasSetSizeIntr(int x, int y, int width, int height, | |
176 | int sizeFlags, bool fromCtor); | |
177 | void DoSetSizeIntr(int x, int y, | |
178 | int width, int height, | |
179 | int sizeFlags, bool fromCtor); | |
fc7ca9b3 MB |
180 | |
181 | // for DoMoveWindowIntr flags | |
182 | enum | |
183 | { | |
184 | wxMOVE_X = 1, | |
185 | wxMOVE_Y = 2, | |
186 | wxMOVE_WIDTH = 4, | |
187 | wxMOVE_HEIGHT = 8 | |
188 | }; | |
189 | ||
190 | void DoMoveWindowIntr(int x, int y, int width, int height, | |
191 | int flags); | |
9806a47c | 192 | public: |
34636400 | 193 | WXPixmap GetBackingPixmap() const { return m_backingPixmap; } |
9806a47c | 194 | void SetBackingPixmap(WXPixmap pixmap) { m_backingPixmap = pixmap; } |
bfc6fde4 VZ |
195 | int GetPixmapWidth() const { return m_pixmapWidth; } |
196 | int GetPixmapHeight() const { return m_pixmapHeight; } | |
9806a47c JS |
197 | void SetPixmapWidth(int w) { m_pixmapWidth = w; } |
198 | void SetPixmapHeight(int h) { m_pixmapHeight = h; } | |
83df96d6 | 199 | |
bfc6fde4 | 200 | // Change properties |
a8680e3e MB |
201 | // Change to the current font (often overridden) |
202 | virtual void ChangeFont(bool keepOriginalSize = TRUE); | |
83df96d6 | 203 | |
34636400 VZ |
204 | // Change background and foreground colour using current background colour |
205 | // setting (Motif generates foreground based on background) | |
206 | virtual void ChangeBackgroundColour(); | |
207 | // Change foreground colour using current foreground colour setting | |
208 | virtual void ChangeForegroundColour(); | |
83df96d6 | 209 | |
da175b2c | 210 | protected: |
bfc6fde4 | 211 | // Adds the widget to the hash table and adds event handlers. |
34636400 | 212 | bool AttachWidget(wxWindow* parent, WXWidget mainWidget, |
83df96d6 | 213 | WXWidget formWidget, int x, int y, int width, int height); |
bfc6fde4 | 214 | bool DetachWidget(WXWidget widget); |
83df96d6 | 215 | |
34636400 VZ |
216 | // How to implement accelerators. If we find a key event, translate to |
217 | // wxWindows wxKeyEvent form. Find a widget for the window. Now find a | |
218 | // wxWindow for the widget. If there isn't one, go up the widget hierarchy | |
bfc6fde4 VZ |
219 | // trying to find one. Once one is found, call ProcessAccelerator for the |
220 | // window. If it returns TRUE (processed the event), skip the X event, | |
34636400 VZ |
221 | // otherwise carry on up the wxWindows window hierarchy calling |
222 | // ProcessAccelerator. If all return FALSE, process the X event as normal. | |
223 | // Eventually we can implement OnCharHook the same way, but concentrate on | |
224 | // accelerators for now. ProcessAccelerator must look at the current | |
225 | // accelerator table, and try to find what menu id or window (beneath it) | |
226 | // has this ID. Then construct an appropriate command | |
bfc6fde4 | 227 | // event and send it. |
d75638f8 | 228 | public: |
bfc6fde4 | 229 | virtual bool ProcessAccelerator(wxKeyEvent& event); |
d75638f8 RR |
230 | |
231 | protected: | |
34636400 VZ |
232 | // unmanage and destroy an X widget f it's !NULL (passing NULL is ok) |
233 | void UnmanageAndDestroy(WXWidget widget); | |
83df96d6 | 234 | |
a8680e3e MB |
235 | // map or unmap an X widget (passing NULL is ok), |
236 | // returns TRUE if widget was mapped/unmapped | |
34636400 | 237 | bool MapOrUnmap(WXWidget widget, bool map); |
83df96d6 | 238 | |
af0bb3b1 VZ |
239 | // scrolling stuff |
240 | // --------------- | |
83df96d6 | 241 | |
af0bb3b1 VZ |
242 | // create/destroy window scrollbars |
243 | void CreateScrollbar(wxOrientation orientation); | |
244 | void DestroyScrollbar(wxOrientation orientation); | |
83df96d6 | 245 | |
34636400 VZ |
246 | // get either hor or vert scrollbar widget |
247 | WXWidget GetScrollbar(wxOrientation orient) const | |
83df96d6 JS |
248 | { return orient == wxHORIZONTAL ? m_hScrollBar : m_vScrollBar; } |
249 | ||
34636400 VZ |
250 | // set the scroll pos |
251 | void SetInternalScrollPos(wxOrientation orient, int pos) | |
252 | { | |
253 | if ( orient == wxHORIZONTAL ) | |
254 | m_scrollPosX = pos; | |
255 | else | |
256 | m_scrollPosY = pos; | |
257 | } | |
83df96d6 | 258 | |
34636400 | 259 | // Motif-specific flags |
af0bb3b1 | 260 | // -------------------- |
83df96d6 | 261 | |
34636400 | 262 | bool m_needsRefresh:1; // repaint backing store? |
83df96d6 | 263 | |
bfc6fde4 | 264 | // For double-click detection |
a8680e3e MB |
265 | long m_lastTS; // last timestamp |
266 | unsigned m_lastButton:2; // last pressed button | |
83df96d6 | 267 | |
af0bb3b1 VZ |
268 | // List of wxRects representing damaged region |
269 | wxRectList m_updateRects; | |
83df96d6 | 270 | |
9b6dbb09 | 271 | protected: |
bfc6fde4 VZ |
272 | WXWidget m_mainWidget; |
273 | WXWidget m_hScrollBar; | |
274 | WXWidget m_vScrollBar; | |
275 | WXWidget m_borderWidget; | |
276 | WXWidget m_scrolledWindow; | |
277 | WXWidget m_drawingArea; | |
a8680e3e | 278 | bool m_winCaptured:1; |
bfc6fde4 VZ |
279 | WXPixmap m_backingPixmap; |
280 | int m_pixmapWidth; | |
281 | int m_pixmapHeight; | |
282 | int m_pixmapOffsetX; | |
283 | int m_pixmapOffsetY; | |
83df96d6 | 284 | |
a8680e3e MB |
285 | // Store the last scroll pos, since in wxWin the pos isn't set |
286 | // automatically by system | |
34636400 VZ |
287 | int m_scrollPosX; |
288 | int m_scrollPosY; | |
83df96d6 | 289 | |
34636400 VZ |
290 | // implement the base class pure virtuals |
291 | virtual void DoClientToScreen( int *x, int *y ) const; | |
292 | virtual void DoScreenToClient( int *x, int *y ) const; | |
293 | virtual void DoGetPosition( int *x, int *y ) const; | |
294 | virtual void DoGetSize( int *width, int *height ) const; | |
295 | virtual void DoGetClientSize( int *width, int *height ) const; | |
bfc6fde4 | 296 | virtual void DoSetSize(int x, int y, |
83df96d6 JS |
297 | int width, int height, |
298 | int sizeFlags = wxSIZE_AUTO); | |
bfc6fde4 | 299 | virtual void DoSetClientSize(int width, int height); |
9d9b7755 | 300 | virtual void DoMoveWindow(int x, int y, int width, int height); |
ee31c392 | 301 | virtual bool DoPopupMenu(wxMenu *menu, int x, int y); |
4116c221 VZ |
302 | virtual void DoCaptureMouse(); |
303 | virtual void DoReleaseMouse(); | |
83df96d6 | 304 | |
34636400 VZ |
305 | #if wxUSE_TOOLTIPS |
306 | virtual void DoSetToolTip( wxToolTip *tip ); | |
307 | #endif // wxUSE_TOOLTIPS | |
83df96d6 | 308 | |
bfc6fde4 | 309 | private: |
34636400 VZ |
310 | // common part of all ctors |
311 | void Init(); | |
83df96d6 | 312 | |
c4ea2971 GD |
313 | DECLARE_DYNAMIC_CLASS(wxWindow) |
314 | DECLARE_NO_COPY_CLASS(wxWindow) | |
bfc6fde4 | 315 | DECLARE_EVENT_TABLE() |
9b6dbb09 JS |
316 | }; |
317 | ||
34636400 | 318 | // ---------------------------------------------------------------------------- |
af0bb3b1 VZ |
319 | // A little class to switch off `size optimization' while an instance of the |
320 | // object exists: this may be useful to temporarily disable the optimisation | |
321 | // which consists to do nothing when the new size is equal to the old size - | |
322 | // although quite useful usually to avoid flicker, sometimes it leads to | |
323 | // undesired effects. | |
34636400 | 324 | // |
af0bb3b1 | 325 | // Usage: create an instance of this class on the stack to disable the size |
a8680e3e MB |
326 | // optimisation, it will be reenabled as soon as the object goes out |
327 | // from scope. | |
34636400 | 328 | // ---------------------------------------------------------------------------- |
af0bb3b1 VZ |
329 | |
330 | class WXDLLEXPORT wxNoOptimize | |
88150e60 JS |
331 | { |
332 | public: | |
83df96d6 JS |
333 | wxNoOptimize() { ms_count++; } |
334 | ~wxNoOptimize() { ms_count--; } | |
335 | ||
336 | static bool CanOptimize() { return ms_count == 0; } | |
337 | ||
88150e60 | 338 | protected: |
83df96d6 | 339 | static int ms_count; |
88150e60 JS |
340 | }; |
341 | ||
9b6dbb09 | 342 | #endif |
83df96d6 | 343 | // _WX_WINDOW_H_ |