1 /////////////////////////////////////////////////////////////////////////////
3 // Purpose: wxWindow class
4 // Author: Julian Smart
8 // Copyright: (c) Julian Smart
9 // Licence: wxWindows licence
10 /////////////////////////////////////////////////////////////////////////////
15 #if defined(__GNUG__) && !defined(NO_GCC_PRAGMA)
16 #pragma interface "window.h"
19 #include "wx/region.h"
21 // ----------------------------------------------------------------------------
22 // wxWindow class for Motif - see also wxWindowBase
23 // ----------------------------------------------------------------------------
25 class wxWindow
: public wxWindowBase
27 friend class WXDLLEXPORT wxDC
;
28 friend class WXDLLEXPORT wxWindowDC
;
31 wxWindow() { Init(); }
33 wxWindow(wxWindow
*parent
,
35 const wxPoint
& pos
= wxDefaultPosition
,
36 const wxSize
& size
= wxDefaultSize
,
38 const wxString
& name
= wxPanelNameStr
)
41 Create(parent
, id
, pos
, size
, style
, name
);
46 bool Create(wxWindow
*parent
,
48 const wxPoint
& pos
= wxDefaultPosition
,
49 const wxSize
& size
= wxDefaultSize
,
51 const wxString
& name
= wxPanelNameStr
);
53 // implement base class pure virtuals
54 virtual void SetTitle( const wxString
& title
);
55 virtual wxString
GetTitle() const;
60 virtual bool Show( bool show
= TRUE
);
61 virtual bool Enable( bool enable
= TRUE
);
63 virtual void SetFocus();
65 virtual void WarpPointer(int x
, int y
);
67 virtual void Refresh( bool eraseBackground
= TRUE
,
68 const wxRect
*rect
= (const wxRect
*) NULL
);
71 virtual bool SetBackgroundColour( const wxColour
&colour
);
72 virtual bool SetForegroundColour( const wxColour
&colour
);
74 virtual bool SetCursor( const wxCursor
&cursor
);
75 virtual bool SetFont( const wxFont
&font
);
77 virtual int GetCharHeight() const;
78 virtual int GetCharWidth() const;
79 virtual void GetTextExtent(const wxString
& string
,
81 int *descent
= (int *) NULL
,
82 int *externalLeading
= (int *) NULL
,
83 const wxFont
*theFont
= (const wxFont
*) NULL
)
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
);
95 #if wxUSE_DRAG_AND_DROP
96 virtual void SetDropTarget( wxDropTarget
*dropTarget
);
97 #endif // wxUSE_DRAG_AND_DROP
99 // Accept files for dragging
100 virtual void DragAcceptFiles(bool accept
);
102 // Get the unique identifier of a window
103 virtual WXWidget
GetHandle() const { return GetMainWidget(); }
105 // implementation from now on
106 // --------------------------
111 // Get main widget for this window, e.g. a text widget
112 virtual WXWidget
GetMainWidget() const;
113 // Get the widget that corresponds to the label (for font setting,
114 // label setting etc.)
115 virtual WXWidget
GetLabelWidget() const;
116 // Get the client widget for this window (something we can create other
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;
124 // Get the underlying X window and display
125 WXWindow
GetClientXWindow() const;
126 WXWindow
GetXWindow() const;
127 WXDisplay
*GetXDisplay() const;
129 void SetLastClick(int button
, long timestamp
)
130 { m_lastButton
= button
; m_lastTS
= timestamp
; }
132 int GetLastClickedButton() const { return m_lastButton
; }
133 long GetLastClickTime() const { return m_lastTS
; }
135 // Gives window a chance to do something in response to a size message,
136 // e.g. arrange status bar, toolbar etc.
137 virtual bool PreResize();
139 // Generates a paint event
140 virtual void DoPaint();
142 // update rectangle/region manipulation
143 // (for wxWindowDC and Motif callbacks only)
144 // -----------------------------------------
146 // Adds a recangle to the updates list
147 void AddUpdateRect(int x
, int y
, int w
, int h
);
149 void ClearUpdateRegion() { m_updateRegion
.Clear(); }
150 void SetUpdateRegion(const wxRegion
& region
) { m_updateRegion
= region
; }
152 // For implementation purposes - sometimes decorations make the client area
154 virtual wxPoint
GetClientAreaOrigin() const;
156 // Process idle (send update events)
157 void OnInternalIdle();
160 // Responds to colour changes: passes event on to children.
161 void OnSysColourChanged(wxSysColourChangedEvent
& event
);
165 void SetMainWidget(WXWidget w
) { m_mainWidget
= w
; }
167 // See src/motif/window.cpp, near the top, for an explanation
168 // why this is necessary
169 void CanvasSetSizeIntr(int x
, int y
, int width
, int height
,
170 int sizeFlags
, bool fromCtor
);
171 void DoSetSizeIntr(int x
, int y
,
172 int width
, int height
,
173 int sizeFlags
, bool fromCtor
);
175 // for DoMoveWindowIntr flags
184 void DoMoveWindowIntr(int x
, int y
, int width
, int height
,
187 // helper function, to remove duplicate code, used in wxScrollBar
188 WXWidget
DoCreateScrollBar(WXWidget parent
, wxOrientation orientation
,
191 WXPixmap
GetBackingPixmap() const { return m_backingPixmap
; }
192 void SetBackingPixmap(WXPixmap pixmap
) { m_backingPixmap
= pixmap
; }
193 int GetPixmapWidth() const { return m_pixmapWidth
; }
194 int GetPixmapHeight() const { return m_pixmapHeight
; }
195 void SetPixmapWidth(int w
) { m_pixmapWidth
= w
; }
196 void SetPixmapHeight(int h
) { m_pixmapHeight
= h
; }
199 // Change to the current font (often overridden)
200 virtual void ChangeFont(bool keepOriginalSize
= TRUE
);
202 // Change background and foreground colour using current background colour
203 // setting (Motif generates foreground based on background)
204 virtual void ChangeBackgroundColour();
205 // Change foreground colour using current foreground colour setting
206 virtual void ChangeForegroundColour();
209 // Adds the widget to the hash table and adds event handlers.
210 bool AttachWidget(wxWindow
* parent
, WXWidget mainWidget
,
211 WXWidget formWidget
, int x
, int y
, int width
, int height
);
212 bool DetachWidget(WXWidget widget
);
214 // How to implement accelerators. If we find a key event, translate to
215 // wxWindows wxKeyEvent form. Find a widget for the window. Now find a
216 // wxWindow for the widget. If there isn't one, go up the widget hierarchy
217 // trying to find one. Once one is found, call ProcessAccelerator for the
218 // window. If it returns TRUE (processed the event), skip the X event,
219 // otherwise carry on up the wxWindows window hierarchy calling
220 // ProcessAccelerator. If all return FALSE, process the X event as normal.
221 // Eventually we can implement OnCharHook the same way, but concentrate on
222 // accelerators for now. ProcessAccelerator must look at the current
223 // accelerator table, and try to find what menu id or window (beneath it)
224 // has this ID. Then construct an appropriate command
225 // event and send it.
227 virtual bool ProcessAccelerator(wxKeyEvent
& event
);
230 // unmanage and destroy an X widget f it's !NULL (passing NULL is ok)
231 void UnmanageAndDestroy(WXWidget widget
);
233 // map or unmap an X widget (passing NULL is ok),
234 // returns TRUE if widget was mapped/unmapped
235 bool MapOrUnmap(WXWidget widget
, bool map
);
240 // create/destroy window scrollbars
241 void CreateScrollbar(wxOrientation orientation
);
242 void DestroyScrollbar(wxOrientation orientation
);
244 // get either hor or vert scrollbar widget
245 WXWidget
GetScrollbar(wxOrientation orient
) const
246 { return orient
== wxHORIZONTAL
? m_hScrollBar
: m_vScrollBar
; }
248 // set the scroll pos
249 void SetInternalScrollPos(wxOrientation orient
, int pos
)
251 if ( orient
== wxHORIZONTAL
)
257 // Motif-specific flags
258 // --------------------
260 bool m_needsRefresh
:1; // repaint backing store?
262 // For double-click detection
263 long m_lastTS
; // last timestamp
264 unsigned m_lastButton
:2; // last pressed button
267 WXWidget m_mainWidget
;
268 WXWidget m_hScrollBar
;
269 WXWidget m_vScrollBar
;
270 WXWidget m_borderWidget
;
271 WXWidget m_scrolledWindow
;
272 WXWidget m_drawingArea
;
273 bool m_winCaptured
:1;
274 WXPixmap m_backingPixmap
;
280 // Store the last scroll pos, since in wxWin the pos isn't set
281 // automatically by system
285 // implement the base class pure virtuals
286 virtual void DoClientToScreen( int *x
, int *y
) const;
287 virtual void DoScreenToClient( int *x
, int *y
) const;
288 virtual void DoGetPosition( int *x
, int *y
) const;
289 virtual void DoGetSize( int *width
, int *height
) const;
290 virtual void DoGetClientSize( int *width
, int *height
) const;
291 virtual void DoSetSize(int x
, int y
,
292 int width
, int height
,
293 int sizeFlags
= wxSIZE_AUTO
);
294 virtual void DoSetClientSize(int width
, int height
);
295 virtual void DoMoveWindow(int x
, int y
, int width
, int height
);
296 virtual bool DoPopupMenu(wxMenu
*menu
, int x
, int y
);
297 virtual void DoCaptureMouse();
298 virtual void DoReleaseMouse();
301 virtual void DoSetToolTip( wxToolTip
*tip
);
302 #endif // wxUSE_TOOLTIPS
305 // common part of all ctors
308 DECLARE_DYNAMIC_CLASS(wxWindow
)
309 DECLARE_NO_COPY_CLASS(wxWindow
)
310 DECLARE_EVENT_TABLE()
313 // ----------------------------------------------------------------------------
314 // A little class to switch off `size optimization' while an instance of the
315 // object exists: this may be useful to temporarily disable the optimisation
316 // which consists to do nothing when the new size is equal to the old size -
317 // although quite useful usually to avoid flicker, sometimes it leads to
318 // undesired effects.
320 // Usage: create an instance of this class on the stack to disable the size
321 // optimisation, it will be reenabled as soon as the object goes out
323 // ----------------------------------------------------------------------------
325 class WXDLLEXPORT wxNoOptimize
328 wxNoOptimize() { ms_count
++; }
329 ~wxNoOptimize() { ms_count
--; }
331 static bool CanOptimize() { return ms_count
== 0; }