1 /////////////////////////////////////////////////////////////////////////////
3 // Purpose: wxWindow class
4 // Author: Julian Smart
8 // Copyright: (c) Julian Smart
9 // Licence: wxWindows licence
10 /////////////////////////////////////////////////////////////////////////////
16 #pragma interface "window.h"
19 // ----------------------------------------------------------------------------
20 // A list of rectangles type used by wxWindow
21 // ----------------------------------------------------------------------------
23 WX_DECLARE_LIST(wxRect
, wxRectList
);
25 // ----------------------------------------------------------------------------
26 // wxWindow class for Motif - see also wxWindowBase
27 // ----------------------------------------------------------------------------
29 class wxWindow
: public wxWindowBase
31 DECLARE_DYNAMIC_CLASS(wxWindow
)
33 friend class WXDLLEXPORT wxDC
;
34 friend class WXDLLEXPORT wxWindowDC
;
37 wxWindow() { Init(); }
39 wxWindow(wxWindow
*parent
,
41 const wxPoint
& pos
= wxDefaultPosition
,
42 const wxSize
& size
= wxDefaultSize
,
44 const wxString
& name
= wxPanelNameStr
)
47 Create(parent
, id
, pos
, size
, style
, name
);
52 bool Create(wxWindow
*parent
,
54 const wxPoint
& pos
= wxDefaultPosition
,
55 const wxSize
& size
= wxDefaultSize
,
57 const wxString
& name
= wxPanelNameStr
);
59 // implement base class pure virtuals
60 virtual void SetTitle( const wxString
& title
);
61 virtual wxString
GetTitle() const;
66 virtual bool Show( bool show
= TRUE
);
67 virtual bool Enable( bool enable
= TRUE
);
69 virtual void SetFocus();
71 virtual void WarpPointer(int x
, int y
);
72 virtual void CaptureMouse();
73 virtual void ReleaseMouse();
75 virtual void Refresh( bool eraseBackground
= TRUE
,
76 const wxRect
*rect
= (const wxRect
*) NULL
);
79 virtual bool SetBackgroundColour( const wxColour
&colour
);
80 virtual bool SetForegroundColour( const wxColour
&colour
);
82 virtual bool SetCursor( const wxCursor
&cursor
);
83 virtual bool SetFont( const wxFont
&font
);
85 virtual int GetCharHeight() const;
86 virtual int GetCharWidth() const;
87 virtual void GetTextExtent(const wxString
& string
,
89 int *descent
= (int *) NULL
,
90 int *externalLeading
= (int *) NULL
,
91 const wxFont
*theFont
= (const wxFont
*) NULL
)
94 virtual bool PopupMenu( wxMenu
*menu
, int x
, int y
);
96 virtual void SetScrollbar( int orient
, int pos
, int thumbVisible
,
97 int range
, bool refresh
= TRUE
);
98 virtual void SetScrollPos( int orient
, int pos
, bool refresh
= TRUE
);
99 virtual int GetScrollPos( int orient
) const;
100 virtual int GetScrollThumb( int orient
) const;
101 virtual int GetScrollRange( int orient
) const;
102 virtual void ScrollWindow( int dx
, int dy
,
103 const wxRect
* rect
= (wxRect
*) NULL
);
105 virtual void SetSizeHints(int minW
, int minH
,
106 int maxW
= -1, int maxH
= -1,
107 int incW
= -1, int incH
= -1);
108 #if wxUSE_DRAG_AND_DROP
109 virtual void SetDropTarget( wxDropTarget
*dropTarget
);
110 #endif // wxUSE_DRAG_AND_DROP
112 // Accept files for dragging
113 virtual void DragAcceptFiles(bool accept
);
115 // Get the unique identifier of a window
116 virtual WXWidget
GetHandle() const { return GetMainWidget(); }
118 // implementation from now on
119 // --------------------------
124 // Get main widget for this window, e.g. a text widget
125 virtual WXWidget
GetMainWidget() const;
126 // Get the widget that corresponds to the label (for font setting, label setting etc.)
127 virtual WXWidget
GetLabelWidget() const;
128 // Get the client widget for this window (something we can create other
130 virtual WXWidget
GetClientWidget() const;
131 // Get the top widget for this window, e.g. the scrolled widget parent of a
132 // multi-line text widget. Top means, top in the window hierarchy that
133 // implements this window.
134 virtual WXWidget
GetTopWidget() const;
136 // Get the underlying X window and display
137 WXWindow
GetXWindow() const;
138 WXDisplay
*GetXDisplay() const;
140 // called from Motif callbacks - and should only be called from there
142 void SetButton1(bool pressed
) { m_button1Pressed
= pressed
; }
143 void SetButton2(bool pressed
) { m_button2Pressed
= pressed
; }
144 void SetButton3(bool pressed
) { m_button3Pressed
= pressed
; }
146 void SetLastClick(int button
, long timestamp
)
147 { m_lastButton
= button
; m_lastTS
= timestamp
; }
149 int GetLastClickedButton() const { return m_lastButton
; }
150 long GetLastClickTime() const { return m_lastTS
; }
152 // Gives window a chance to do something in response to a size message, e.g.
153 // arrange status bar, toolbar etc.
154 virtual bool PreResize();
156 // Generates a paint event
157 virtual void DoPaint();
159 // update rectangle/region manipulation
160 // (for wxWindowDC and Motif callbacks only)
161 // -----------------------------------------
163 // read/write access to the update rect list
164 const wxRectList
& GetUpdateRects() const { return m_updateRects
; }
166 // Adds a recangle to the updates list
167 void AddUpdateRect(int x
, int y
, int w
, int h
)
168 { m_updateRects
.Append(new wxRect(x
, y
, w
, h
)); }
170 // Empties the m_updateRects list
171 void ClearUpdateRects();
173 void ClearUpdateRegion() { m_updateRegion
.Clear(); }
174 void SetUpdateRegion(const wxRegion
& region
) { m_updateRegion
= region
; }
176 // sets the fore/background colour for the given widget
177 static void DoChangeForegroundColour(WXWidget widget
, wxColour
& foregroundColour
);
178 static void DoChangeBackgroundColour(WXWidget widget
, wxColour
& backgroundColour
, bool changeArmColour
= FALSE
);
181 // event handlers (not virtual by design)
182 void OnIdle(wxIdleEvent
& event
);
184 // For implementation purposes - sometimes decorations make the client area
186 virtual wxPoint
GetClientAreaOrigin() const;
188 // Makes an adjustment to the window position (for example, a frame that has
189 // a toolbar that it manages itself).
190 virtual void AdjustForParentClientOrigin(int& x
, int& y
, int sizeFlags
);
192 wxWindow
*GetChild(int number
) const
193 { return GetChildren().Item(number
)->GetData(); }
195 // Responds to colour changes: passes event on to children.
196 void OnSysColourChanged(wxSysColourChangedEvent
& event
);
200 // CanvasXXXSiize functions
201 void CanvasGetSize(int* width
, int* height
) const; // If have drawing area
202 void CanvasGetClientSize(int *width
, int *height
) const;
203 void CanvasGetPosition(int *x
, int *y
) const; // If have drawing area
204 void CanvasSetClientSize(int width
, int size
);
205 void CanvasSetSize(int x
, int y
, int width
, int height
, int sizeFlags
= wxSIZE_AUTO
);
207 void SetMainWidget(WXWidget w
) { m_mainWidget
= w
; }
209 bool CanAddEventHandler() const { return m_canAddEventHandler
; }
210 void SetCanAddEventHandler(bool flag
) { m_canAddEventHandler
= flag
; }
212 WXPixmap
GetBackingPixmap() const { return m_backingPixmap
; }
213 int GetPixmapWidth() const { return m_pixmapWidth
; }
214 int GetPixmapHeight() const { return m_pixmapHeight
; }
218 virtual void ChangeFont(bool keepOriginalSize
= TRUE
); // Change to the current font (often overridden)
220 // Change background and foreground colour using current background colour
221 // setting (Motif generates foreground based on background)
222 virtual void ChangeBackgroundColour();
223 // Change foreground colour using current foreground colour setting
224 virtual void ChangeForegroundColour();
227 // Adds the widget to the hash table and adds event handlers.
228 bool AttachWidget(wxWindow
* parent
, WXWidget mainWidget
,
229 WXWidget formWidget
, int x
, int y
, int width
, int height
);
230 bool DetachWidget(WXWidget widget
);
232 // How to implement accelerators. If we find a key event, translate to
233 // wxWindows wxKeyEvent form. Find a widget for the window. Now find a
234 // wxWindow for the widget. If there isn't one, go up the widget hierarchy
235 // trying to find one. Once one is found, call ProcessAccelerator for the
236 // window. If it returns TRUE (processed the event), skip the X event,
237 // otherwise carry on up the wxWindows window hierarchy calling
238 // ProcessAccelerator. If all return FALSE, process the X event as normal.
239 // Eventually we can implement OnCharHook the same way, but concentrate on
240 // accelerators for now. ProcessAccelerator must look at the current
241 // accelerator table, and try to find what menu id or window (beneath it)
242 // has this ID. Then construct an appropriate command
243 // event and send it.
245 virtual bool ProcessAccelerator(wxKeyEvent
& event
);
248 // unmanage and destroy an X widget f it's !NULL (passing NULL is ok)
249 void UnmanageAndDestroy(WXWidget widget
);
251 // map or unmap an X widget (passing NULL is ok), returns TRUE if widget was
253 bool MapOrUnmap(WXWidget widget
, bool map
);
258 // create/destroy window scrollbars
259 void CreateScrollbar(wxOrientation orientation
);
260 void DestroyScrollbar(wxOrientation orientation
);
262 // get either hor or vert scrollbar widget
263 WXWidget
GetScrollbar(wxOrientation orient
) const
264 { return orient
== wxHORIZONTAL
? m_hScrollBar
: m_vScrollBar
; }
266 // set the scroll pos
267 void SetInternalScrollPos(wxOrientation orient
, int pos
)
269 if ( orient
== wxHORIZONTAL
)
275 // Motif-specific flags
276 // --------------------
278 bool m_needsRefresh
:1; // repaint backing store?
279 bool m_canAddEventHandler
:1; // ???
280 bool m_button1Pressed
:1;
281 bool m_button2Pressed
:1;
282 bool m_button3Pressed
:1;
284 // For double-click detection
285 long m_lastTS
; // last timestamp
286 int m_lastButton
; // last pressed button
288 // List of wxRects representing damaged region
289 wxRectList m_updateRects
;
292 WXWidget m_mainWidget
;
293 WXWidget m_hScrollBar
;
294 WXWidget m_vScrollBar
;
295 WXWidget m_borderWidget
;
296 WXWidget m_scrolledWindow
;
297 WXWidget m_drawingArea
;
301 WXPixmap m_backingPixmap
;
307 // Store the last scroll pos, since in wxWin the pos isn't set automatically
312 // implement the base class pure virtuals
313 virtual void DoClientToScreen( int *x
, int *y
) const;
314 virtual void DoScreenToClient( int *x
, int *y
) const;
315 virtual void DoGetPosition( int *x
, int *y
) const;
316 virtual void DoGetSize( int *width
, int *height
) const;
317 virtual void DoGetClientSize( int *width
, int *height
) const;
318 virtual void DoSetSize(int x
, int y
,
319 int width
, int height
,
320 int sizeFlags
= wxSIZE_AUTO
);
321 virtual void DoSetClientSize(int width
, int height
);
324 virtual void DoSetToolTip( wxToolTip
*tip
);
325 #endif // wxUSE_TOOLTIPS
328 // common part of all ctors
331 DECLARE_NO_COPY_CLASS(wxWindow
);
332 DECLARE_EVENT_TABLE()
335 // ----------------------------------------------------------------------------
336 // A little class to switch off `size optimization' while an instance of the
337 // object exists: this may be useful to temporarily disable the optimisation
338 // which consists to do nothing when the new size is equal to the old size -
339 // although quite useful usually to avoid flicker, sometimes it leads to
340 // undesired effects.
342 // Usage: create an instance of this class on the stack to disable the size
343 // optimisation, it will be reenabled as soon as the object goes out from scope.
344 // ----------------------------------------------------------------------------
346 class WXDLLEXPORT wxNoOptimize
349 wxNoOptimize() { ms_count
++; }
350 ~wxNoOptimize() { ms_count
--; }
352 static bool CanOptimize() { return ms_count
== 0; }