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