1 /////////////////////////////////////////////////////////////////////////////
3 // Purpose: wxWindow class
4 // Author: Julian Smart
8 // Copyright: (c) Julian Smart and Markus Holzem
9 // Licence: wxWindows licence
10 /////////////////////////////////////////////////////////////////////////////
16 #pragma interface "window.h"
19 #include "wx/gdicmn.h"
21 #include "wx/cursor.h"
24 #include "wx/validate.h"
26 #include "wx/string.h"
28 #include "wx/region.h"
29 #include "wx/msw/accel.h"
35 * Base class for frame, panel, canvas, panel items, dialog box.
40 * Event handler: windows have themselves as their event handlers
41 * by default, but their event handlers could be set to another
42 * object entirely. This separation can reduce the amount of
43 * derivation required, and allow alteration of a window's functionality
44 * (e.g. by a resource editor that temporarily switches event handlers).
47 class WXDLLEXPORT wxWindow
;
48 class WXDLLEXPORT wxEvent
;
49 class WXDLLEXPORT wxCommandEvent
;
50 class WXDLLEXPORT wxKeyEvent
;
51 class WXDLLEXPORT wxControl
;
52 class WXDLLEXPORT wxCursor
;
53 class WXDLLEXPORT wxColourMap
;
54 class WXDLLEXPORT wxFont
;
55 class WXDLLEXPORT wxMenu
;
56 class WXDLLEXPORT wxRect
;
57 class WXDLLEXPORT wxBitmap
;
58 class WXDLLEXPORT wxSizer
;
59 class WXDLLEXPORT wxList
;
60 class WXDLLEXPORT wxLayoutConstraints
;
61 class WXDLLEXPORT wxMouseEvent
;
62 class WXDLLEXPORT wxButton
;
63 class WXDLLEXPORT wxColour
;
64 class WXDLLEXPORT wxBrush
;
65 class WXDLLEXPORT wxPen
;
66 class WXDLLEXPORT wxIcon
;
67 class WXDLLEXPORT wxDC
;
68 class WXDLLEXPORT wxValidator
;
70 #if wxUSE_DRAG_AND_DROP
71 class WXDLLEXPORT wxDropTarget
;
74 #if wxUSE_WX_RESOURCES
75 class WXDLLEXPORT wxResourceTable
;
76 class WXDLLEXPORT wxItemResource
;
79 WXDLLEXPORT_DATA(extern const char*) wxPanelNameStr
;
81 WXDLLEXPORT_DATA(extern const wxSize
) wxDefaultSize
;
82 WXDLLEXPORT_DATA(extern const wxPoint
) wxDefaultPosition
;
84 //-----------------------------------------------------------------------------
86 //-----------------------------------------------------------------------------
92 virtual ~wxClientData() { }
95 //-----------------------------------------------------------------------------
97 //-----------------------------------------------------------------------------
99 class wxStringClientData
: public wxClientData
102 wxStringClientData() { }
103 wxStringClientData( wxString
&data
) { m_data
= data
; }
104 void SetData( wxString
&data
) { m_data
= data
; }
105 wxString
GetData() const { return m_data
; }
111 // Clash with Windows headers
120 class WXDLLEXPORT wxWindow
: public wxEvtHandler
122 DECLARE_ABSTRACT_CLASS(wxWindow
)
125 friend class wxPaintDC
;
129 wxWindow(wxWindow
*parent
, wxWindowID id
,
130 const wxPoint
& pos
= wxDefaultPosition
,
131 const wxSize
& size
= wxDefaultSize
,
133 const wxString
& name
= wxPanelNameStr
)
136 Create(parent
, id
, pos
, size
, style
, name
);
141 bool Create(wxWindow
*parent
, wxWindowID id
,
142 const wxPoint
& pos
= wxDefaultPosition
,
143 const wxSize
& size
= wxDefaultSize
,
145 const wxString
& name
= wxPanelNameStr
);
147 // Fit the window around the items
150 // Show or hide the window
151 virtual bool Show(bool show
);
153 // Is the window shown?
154 virtual bool IsShown() const;
156 // Raise the window to the top of the Z order
157 virtual void Raise();
159 // Lower the window to the bottom of the Z order
160 virtual void Lower();
162 // Is the window enabled?
163 virtual bool IsEnabled() const;
166 inline bool Enabled() const { return IsEnabled(); }
168 // Dialog support: override these and call
169 // base class members to add functionality
170 // that can't be done using validators.
172 // Transfer values to controls. If returns FALSE,
173 // it's an application error (pops up a dialog)
174 virtual bool TransferDataToWindow();
176 // Transfer values from controls. If returns FALSE,
177 // transfer failed: don't quit
178 virtual bool TransferDataFromWindow();
180 // Validate controls. If returns FALSE,
181 // validation failed: don't quit
182 virtual bool Validate();
184 // Return code for dialogs
185 inline void SetReturnCode(int retCode
);
186 inline int GetReturnCode();
189 virtual void SetCursor(const wxCursor
& cursor
);
190 inline virtual wxCursor
& GetCursor() const { return (wxCursor
& ) m_windowCursor
; };
192 // Get the window with the focus
193 static wxWindow
*FindFocus();
195 // Get character size
196 virtual int GetCharHeight() const;
197 virtual int GetCharWidth() const;
199 // Get overall window size
200 virtual void GetSize(int *width
, int *height
) const;
201 wxSize
GetSize() const { int w
, h
; GetSize(& w
, & h
); return wxSize(w
, h
); }
203 // Get window position, relative to parent (or screen if no parent)
204 virtual void GetPosition(int *x
, int *y
) const;
205 wxPoint
GetPosition() const
206 { int x
, y
; GetPosition(&x
, &y
); return wxPoint(x
, y
); }
208 // Get size and position
209 wxRect
GetRect() const
210 { int x
, y
, w
, h
; GetPosition(& x
, & y
); GetSize(& w
, & h
); return wxRect(x
, y
, w
, h
); }
212 // Get client (application-useable) size
213 virtual void GetClientSize(int *width
, int *height
) const;
214 wxSize
GetClientSize() const { int w
, h
; GetClientSize(& w
, & h
); return wxSize(w
, h
); }
216 // Set overall size and position
217 // generic function, may be overriden in derived classes
218 virtual void SetSize(int x
, int y
, int width
, int height
, int sizeFlags
= wxSIZE_AUTO
);
220 void SetSize(const wxRect
& rect
, int sizeFlags
= wxSIZE_AUTO
)
221 { SetSize(rect
.x
, rect
.y
, rect
.width
, rect
.height
, sizeFlags
); }
224 void SetSize(int width
, int height
)
225 { SetSize(-1, -1, width
, height
, wxSIZE_USE_EXISTING
); }
226 void SetSize(const wxSize
& size
)
227 { SetSize(-1, -1, size
.x
, size
.y
, wxSIZE_USE_EXISTING
); }
230 virtual void Move(int x
, int y
) { SetSize(x
, y
, -1, -1, wxSIZE_USE_EXISTING
); }
231 void Move(const wxPoint
& pt
) { SetSize(pt
.x
, pt
.y
, -1, -1, wxSIZE_USE_EXISTING
); }
234 virtual void SetClientSize(int width
, int height
);
235 void SetClientSize(const wxSize
& sz
) { SetClientSize(sz
.x
, sz
.y
); }
237 // Convert client to screen coordinates
238 virtual void ClientToScreen(int *x
, int *y
) const;
239 wxPoint
ClientToScreen(const wxPoint
& pt
) const
240 { int x
= pt
.x
; int y
= pt
.y
; ClientToScreen(& x
, & y
); return wxPoint(x
, y
); }
242 // Convert screen to client coordinates
243 virtual void ScreenToClient(int *x
, int *y
) const;
244 wxPoint
ScreenToClient(const wxPoint
& pt
) const
245 { int x
= pt
.x
; int y
= pt
.y
; ScreenToClient(& x
, & y
); return wxPoint(x
, y
); }
247 // Set the focus to this window
248 virtual void SetFocus();
250 // Capture/release mouse
251 virtual void CaptureMouse();
252 virtual void ReleaseMouse();
254 // Enable or disable the window
255 virtual void Enable(bool enable
);
257 #if wxUSE_DRAG_AND_DROP
258 // Associate a drop target with this window (if the window already had a drop
259 // target, it's deleted!) and return the current drop target (may be NULL).
260 void SetDropTarget(wxDropTarget
*pDropTarget
);
261 wxDropTarget
*GetDropTarget() const { return m_pDropTarget
; }
264 // Accept files for dragging
265 virtual void DragAcceptFiles(bool accept
);
267 // Update region access
268 virtual wxRegion
GetUpdateRegion() const;
269 virtual bool IsExposed(int x
, int y
, int w
, int h
) const;
270 virtual bool IsExposed(const wxPoint
& pt
) const;
271 virtual bool IsExposed(const wxRect
& rect
) const;
273 // Set/get the window title
274 virtual inline void SetTitle(const wxString
& WXUNUSED(title
)) {};
275 inline virtual wxString
GetTitle() const { return wxString(""); };
276 // Most windows have the concept of a label; for frames, this is the
277 // title; for items, this is the label or button text.
278 inline virtual wxString
GetLabel() const { return GetTitle(); }
280 // Set/get the window name (used for resource setting in X)
281 inline virtual wxString
GetName() const;
282 inline virtual void SetName(const wxString
& name
);
285 virtual void Centre(int direction
) ;
286 inline void Center(int direction
= wxHORIZONTAL
) { Centre(direction
); }
289 virtual bool PopupMenu(wxMenu
*menu
, int x
, int y
);
291 // Send the window a refresh event
292 virtual void Refresh(bool eraseBack
= TRUE
, const wxRect
*rect
= NULL
);
294 #if WXWIN_COMPATIBILITY
295 // Set/get scroll attributes
296 virtual void SetScrollRange(int orient
, int range
, bool refresh
= TRUE
);
297 virtual void SetScrollPage(int orient
, int page
, bool refresh
= TRUE
);
298 virtual int OldGetScrollRange(int orient
) const;
299 virtual int GetScrollPage(int orient
) const;
302 // New functions that will replace the above.
303 virtual void SetScrollbar(int orient
, int pos
, int thumbVisible
,
304 int range
, bool refresh
= TRUE
);
306 virtual void SetScrollPos(int orient
, int pos
, bool refresh
= TRUE
);
307 virtual int GetScrollPos(int orient
) const;
308 virtual int GetScrollRange(int orient
) const;
309 virtual int GetScrollThumb(int orient
) const;
311 virtual void ScrollWindow(int dx
, int dy
, const wxRect
*rect
= NULL
);
313 // Caret manipulation
314 virtual void CreateCaret(int w
, int h
);
315 virtual void CreateCaret(const wxBitmap
*bitmap
);
316 virtual void DestroyCaret();
317 virtual void ShowCaret(bool show
);
318 virtual void SetCaretPos(int x
, int y
);
319 virtual void GetCaretPos(int *x
, int *y
) const;
321 // Tell window how much it can be sized
322 virtual void SetSizeHints(int minW
= -1, int minH
= -1, int maxW
= -1, int maxH
= -1, int incW
= -1, int incH
= -1);
324 // Set/get the window's identifier
325 inline int GetId() const;
326 inline void SetId(int id
);
328 // Make the window modal (all other windows unresponsive)
329 virtual void MakeModal(bool modal
);
331 // Get the private handle (platform-dependent)
332 inline void *GetHandle() const;
334 // Set/get the window's relatives
335 inline wxWindow
*GetParent() const;
336 inline void SetParent(wxWindow
*p
) ;
337 inline wxWindow
*GetGrandParent() const;
338 inline wxList
& GetChildren() const;
339 // Set this window to be the child of 'parent'.
340 // Returns FALSE it's not possible (some systems
342 virtual bool Reparent(wxWindow
*parent
);
344 // Set/get the window's font
345 virtual void SetFont(const wxFont
& f
);
346 inline virtual wxFont
& GetFont() const;
348 // Set/get the window's validator
349 void SetValidator(const wxValidator
& validator
);
350 inline wxValidator
*GetValidator() const;
352 // Set/get the window's style
353 inline void SetWindowStyleFlag(long flag
);
354 inline long GetWindowStyleFlag() const;
356 // Set/get double-clickability
357 // TODO: we probably wish to get rid of this, and
358 // always allow double clicks.
359 inline void SetDoubleClick(bool flag
);
360 inline bool GetDoubleClick() const;
361 inline void AllowDoubleClick(bool value
) { SetDoubleClick(value
); }
363 // Handle a control command
364 virtual void OnCommand(wxWindow
& win
, wxCommandEvent
& event
);
366 // Set/get event handler
367 inline void SetEventHandler(wxEvtHandler
*handler
);
368 inline wxEvtHandler
*GetEventHandler() const;
370 // Push/pop event handler (i.e. allow a chain of event handlers
372 void PushEventHandler(wxEvtHandler
*handler
) ;
373 wxEvtHandler
*PopEventHandler(bool deleteHandler
= FALSE
) ;
375 // Close the window by calling OnClose, posting a deletion
376 virtual bool Close(bool force
= FALSE
);
378 // Destroy the window (delayed, if a managed window)
379 virtual bool Destroy() ;
381 // Mode for telling default OnSize members to
382 // call Layout(), if not using Sizers, just top-down constraints
383 inline void SetAutoLayout(bool a
);
384 inline bool GetAutoLayout() const;
386 // Set/get constraints
387 inline wxLayoutConstraints
*GetConstraints() const;
388 void SetConstraints(wxLayoutConstraints
*c
);
390 // Set/get window background colour
391 inline virtual void SetBackgroundColour(const wxColour
& col
);
392 inline virtual wxColour
GetBackgroundColour() const;
394 // Set/get window foreground colour
395 inline virtual void SetForegroundColour(const wxColour
& col
);
396 inline virtual wxColour
GetForegroundColour() const;
398 // For backward compatibility
399 inline virtual void SetButtonFont(const wxFont
& font
) { SetFont(font
); }
400 inline virtual void SetLabelFont(const wxFont
& font
) { SetFont(font
); }
401 inline virtual wxFont
& GetLabelFont() const { return GetFont(); };
402 inline virtual wxFont
& GetButtonFont() const { return GetFont(); };
404 // Get the default button, if there is one
405 inline virtual wxButton
*GetDefaultItem() const;
406 inline virtual void SetDefaultItem(wxButton
*but
);
408 virtual void SetAcceleratorTable(const wxAcceleratorTable
& accel
);
409 inline virtual wxAcceleratorTable
& GetAcceleratorTable() const { return (wxAcceleratorTable
&) m_acceleratorTable
; }
411 // Override to define new behaviour for default action (e.g. double clicking
413 virtual void OnDefaultAction(wxControl
*initiatingItem
);
416 #if wxUSE_WX_RESOURCES
417 virtual bool LoadFromResource(wxWindow
*parent
, const wxString
& resourceName
, const wxResourceTable
*table
= NULL
);
418 virtual wxControl
*CreateItem(const wxItemResource
* childResource
, const wxItemResource
* parentResource
, const wxResourceTable
*table
= NULL
);
421 // Native resource loading
422 virtual bool LoadNativeDialog(wxWindow
* parent
, wxWindowID
& id
);
423 virtual bool LoadNativeDialog(wxWindow
* parent
, const wxString
& name
);
424 virtual wxWindow
* GetWindowChild1(wxWindowID
& id
);
425 virtual wxWindow
* GetWindowChild(wxWindowID
& id
);
427 virtual void GetTextExtent(const wxString
& string
, int *x
, int *y
,
429 int *externalLeading
= NULL
,
430 const wxFont
*theFont
= NULL
, bool use16
= FALSE
) const;
432 // Is the window retained?
433 inline bool IsRetained() const;
435 // Warp the pointer the given position
436 virtual void WarpPointer(int x_pos
, int y_pos
) ;
439 virtual void Clear();
441 // Find a window by id or name
442 virtual wxWindow
*FindWindow(long id
);
443 virtual wxWindow
*FindWindow(const wxString
& name
);
445 // Constraint operations
447 void SetSizer(wxSizer
*sizer
); // Adds sizer child to this window
448 inline wxSizer
*GetSizer() const ;
449 inline wxWindow
*GetSizerParent() const ;
450 inline void SetSizerParent(wxWindow
*win
);
452 // Do Update UI processing for controls
453 void UpdateWindowUI();
455 void OnEraseBackground(wxEraseEvent
& event
);
456 void OnChar(wxKeyEvent
& event
);
457 void OnKeyDown(wxKeyEvent
& event
);
458 void OnKeyUp(wxKeyEvent
& event
);
459 void OnPaint(wxPaintEvent
& event
);
460 void OnIdle(wxIdleEvent
& event
);
462 // Does this window want to accept keyboard focus?
463 virtual bool AcceptsFocus() const;
465 virtual void PrepareDC( wxDC
& WXUNUSED(dc
) ) {};
467 ////////////////////////////////////////////////////////////////////////
470 // For implementation purposes - sometimes decorations make the client area
472 virtual wxPoint
GetClientAreaOrigin() const;
474 // Makes an adjustment to the window position (for example, a frame that has
475 // a toolbar that it manages itself).
476 virtual void AdjustForParentClientOrigin(int& x
, int& y
, int sizeFlags
);
478 // Windows subclassing
479 void SubclassWin(WXHWND hWnd
);
480 void UnsubclassWin();
481 virtual long Default();
482 virtual bool MSWCommand(WXUINT param
, WXWORD id
);
484 // returns TRUE if the event was processed
485 virtual bool MSWNotify(WXWPARAM wParam
, WXLPARAM lParam
, WXLPARAM
*result
);
487 virtual wxWindow
*FindItem(int id
) const;
488 virtual wxWindow
*FindItemByHWND(WXHWND hWnd
, bool controlOnly
= FALSE
) const ;
489 virtual void PreDelete(WXHDC dc
); // Allows system cleanup
490 // TO DO: how many of these need to be virtual?
491 virtual WXHWND
GetHWND() const ;
492 virtual void SetHWND(WXHWND hWnd
);
494 // Make a Windows extended style from the given wxWindows window style
495 virtual WXDWORD
MakeExtendedStyle(long style
, bool eliminateBorders
= TRUE
);
496 // Determine whether 3D effects are wanted
497 virtual WXDWORD
Determine3DEffects(WXDWORD defaultBorderStyle
, bool *want3D
);
499 virtual void AddChild(wxWindow
*child
); // Adds reference to the child object
500 virtual void RemoveChild(wxWindow
*child
); // Removes reference to child
501 // (but doesn't delete the child object)
502 virtual void DestroyChildren(); // Removes and destroys all children
504 inline bool IsBeingDeleted();
506 // MSW only: TRUE if this control is part of the main control
507 virtual bool ContainsHWND(WXHWND
WXUNUSED(hWnd
)) const { return FALSE
; };
509 // Constraint implementation
510 void UnsetConstraints(wxLayoutConstraints
*c
);
511 inline wxList
*GetConstraintsInvolvedIn() const ;
512 // Back-pointer to other windows we're involved with, so if we delete
513 // this window, we must delete any constraints we're involved with.
514 void AddConstraintReference(wxWindow
*otherWin
);
515 void RemoveConstraintReference(wxWindow
*otherWin
);
516 void DeleteRelatedConstraints();
518 virtual void ResetConstraints();
519 virtual void SetConstraintSizes(bool recurse
= TRUE
);
520 virtual bool LayoutPhase1(int *noChanges
);
521 virtual bool LayoutPhase2(int *noChanges
);
522 virtual bool DoPhase(int);
523 // Transforms from sizer coordinate space to actual
524 // parent coordinate space
525 virtual void TransformSizerToActual(int *x
, int *y
) const ;
527 // Set size with transformation to actual coordinates if nec.
528 virtual void SizerSetSize(int x
, int y
, int w
, int h
);
529 virtual void SizerMove(int x
, int y
);
531 // Only set/get the size/position of the constraint (if any)
532 virtual void SetSizeConstraint(int x
, int y
, int w
, int h
);
533 virtual void MoveConstraint(int x
, int y
);
534 virtual void GetSizeConstraint(int *w
, int *h
) const ;
535 virtual void GetClientSizeConstraint(int *w
, int *h
) const ;
536 virtual void GetPositionConstraint(int *x
, int *y
) const ;
538 // Dialog units translations. Implemented in wincmn.cpp.
539 wxPoint
ConvertPixelsToDialog(const wxPoint
& pt
) ;
540 wxPoint
ConvertDialogToPixels(const wxPoint
& pt
) ;
541 inline wxSize
ConvertPixelsToDialog(const wxSize
& sz
)
542 { wxPoint
pt(ConvertPixelsToDialog(wxPoint(sz
.x
, sz
.y
))); return wxSize(pt
.x
, pt
.y
); }
543 inline wxSize
ConvertDialogToPixels(const wxSize
& sz
)
544 { wxPoint
pt(ConvertDialogToPixels(wxPoint(sz
.x
, sz
.y
))); return wxSize(pt
.x
, pt
.y
); }
546 wxObject
*GetChild(int number
) const ;
548 void MSWCreate(int id
, wxWindow
*parent
, const char *wclass
, wxWindow
*wx_win
, const char *title
,
549 int x
, int y
, int width
, int height
,
550 WXDWORD style
, const char *dialog_template
= NULL
,
551 WXDWORD exendedStyle
= 0);
553 // Actually defined in wx_canvs.cc since requires wxCanvas declaration
554 virtual void MSWDeviceToLogical(float *x
, float *y
) const ;
556 // Create an appropriate wxWindow from a HWND
557 virtual wxWindow
* CreateWindowFromHWND(wxWindow
* parent
, WXHWND hWnd
);
559 // Make sure the window style reflects the HWND style (roughly)
560 virtual void AdoptAttributesFromHWND();
562 // Setup background and foreground colours correctly
563 virtual void SetupColours();
565 // Saves the last message information before calling base version
566 virtual bool ProcessEvent(wxEvent
& event
);
569 virtual void MSWOnCreate(WXLPCREATESTRUCT cs
);
570 virtual bool MSWOnPaint();
571 virtual WXHICON
MSWOnQueryDragIcon() { return 0; }
572 virtual void MSWOnSize(int x
, int y
, WXUINT flag
);
573 virtual void MSWOnWindowPosChanging(void *lpPos
);
574 virtual void MSWOnHScroll(WXWORD nSBCode
, WXWORD pos
, WXHWND control
);
575 virtual void MSWOnVScroll(WXWORD nSBCode
, WXWORD pos
, WXHWND control
);
576 virtual bool MSWOnCommand(WXWORD id
, WXWORD cmd
, WXHWND control
);
577 virtual long MSWOnSysCommand(WXWPARAM wParam
, WXLPARAM lParam
);
578 virtual long MSWOnNotify(WXWPARAM wParam
, WXLPARAM lParam
);
579 virtual WXHBRUSH
MSWOnCtlColor(WXHDC dc
, WXHWND pWnd
, WXUINT nCtlColor
,
580 WXUINT message
, WXWPARAM wParam
, WXLPARAM lParam
);
581 virtual bool MSWOnColorChange(WXHWND hWnd
, WXUINT message
, WXWPARAM wParam
, WXLPARAM lParam
);
582 virtual long MSWOnPaletteChanged(WXHWND hWndPalChange
);
583 virtual long MSWOnQueryNewPalette();
584 virtual bool MSWOnEraseBkgnd(WXHDC pDC
);
585 virtual void MSWOnMenuHighlight(WXWORD item
, WXWORD flags
, WXHMENU sysmenu
);
586 virtual void MSWOnInitMenuPopup(WXHMENU menu
, int pos
, bool isSystem
);
587 virtual bool MSWOnClose();
588 // Return TRUE to end session, FALSE to veto end session.
589 virtual bool MSWOnQueryEndSession(long logOff
);
590 virtual bool MSWOnEndSession(bool endSession
, long logOff
);
591 virtual bool MSWOnDestroy();
592 virtual bool MSWOnSetFocus(WXHWND wnd
);
593 virtual bool MSWOnKillFocus(WXHWND wnd
);
594 virtual void MSWOnDropFiles(WXWPARAM wParam
);
595 virtual bool MSWOnInitDialog(WXHWND hWndFocus
);
596 virtual void MSWOnShow(bool show
, int status
);
598 // TODO: rationalise these functions into 1 or 2 which take the
599 // event type as argument.
600 virtual void MSWOnLButtonDown(int x
, int y
, WXUINT flags
);
601 virtual void MSWOnLButtonUp(int x
, int y
, WXUINT flags
);
602 virtual void MSWOnLButtonDClick(int x
, int y
, WXUINT flags
);
604 virtual void MSWOnMButtonDown(int x
, int y
, WXUINT flags
);
605 virtual void MSWOnMButtonUp(int x
, int y
, WXUINT flags
);
606 virtual void MSWOnMButtonDClick(int x
, int y
, WXUINT flags
);
608 virtual void MSWOnRButtonDown(int x
, int y
, WXUINT flags
);
609 virtual void MSWOnRButtonUp(int x
, int y
, WXUINT flags
);
610 virtual void MSWOnRButtonDClick(int x
, int y
, WXUINT flags
);
612 virtual void MSWOnMouseMove(int x
, int y
, WXUINT flags
);
613 virtual void MSWOnMouseEnter(int x
, int y
, WXUINT flags
);
614 virtual void MSWOnMouseLeave(int x
, int y
, WXUINT flags
);
616 virtual void MSWOnChar(WXWORD wParam
, WXLPARAM lParam
, bool isASCII
= FALSE
);
617 virtual void MSWOnKeyDown(WXWORD wParam
, WXLPARAM lParam
, bool isASCII
= FALSE
);
618 virtual void MSWOnKeyUp(WXWORD wParam
, WXLPARAM lParam
, bool isASCII
= FALSE
);
620 virtual bool MSWOnActivate(int flag
, bool minimized
, WXHWND activate
);
621 virtual long MSWOnMDIActivate(long flag
, WXHWND activate
, WXHWND deactivate
);
623 virtual bool MSWOnDrawItem(int id
, WXDRAWITEMSTRUCT
*item
);
624 virtual bool MSWOnMeasureItem(int id
, WXMEASUREITEMSTRUCT
*item
);
626 virtual void MSWOnJoyDown(int joystick
, int x
, int y
, WXUINT flags
);
627 virtual void MSWOnJoyUp(int joystick
, int x
, int y
, WXUINT flags
);
628 virtual void MSWOnJoyMove(int joystick
, int x
, int y
, WXUINT flags
);
629 virtual void MSWOnJoyZMove(int joystick
, int z
, WXUINT flags
);
631 virtual long MSWGetDlgCode();
634 virtual long MSWWindowProc(WXUINT nMsg
, WXWPARAM wParam
, WXLPARAM lParam
);
636 // Calls an appropriate default window procedure
637 virtual long MSWDefWindowProc(WXUINT nMsg
, WXWPARAM wParam
, WXLPARAM lParam
);
638 virtual bool MSWProcessMessage(WXMSG
* pMsg
);
639 virtual bool MSWTranslateMessage(WXMSG
* pMsg
);
640 virtual void MSWDestroyWindow();
642 // Detach "Window" menu from menu bar so it doesn't get deleted
643 void MSWDetachWindowMenu();
645 inline WXFARPROC
MSWGetOldWndProc() const;
646 inline void MSWSetOldWndProc(WXFARPROC proc
);
648 // Define for each class of dialog and control
649 virtual WXHBRUSH
OnCtlColor(WXHDC pDC
, WXHWND pWnd
, WXUINT nCtlColor
,
650 WXUINT message
, WXWPARAM wParam
, WXLPARAM lParam
);
652 inline void SetShowing(bool show
);
653 inline bool IsUserEnabled() const;
654 inline bool GetUseCtl3D() const ;
655 inline bool GetTransparentBackground() const ;
657 // Responds to colour changes: passes event on to children.
658 void OnSysColourChanged(wxSysColourChangedEvent
& event
);
660 // Transfers data to any child controls
661 void OnInitDialog(wxInitDialogEvent
& event
);
663 // Sends an OnInitDialog event, which in turns transfers data to
664 // to the window via validators.
665 virtual void InitDialog();
667 ////////////////////////////////////////////////////////////////////////
670 wxAcceleratorTable m_acceleratorTable
;
672 long m_windowStyle
; // Store the window's style
673 wxEvtHandler
* m_windowEventHandler
; // Usually is 'this'
674 wxLayoutConstraints
* m_constraints
; // Constraints for this window
675 wxList
* m_constraintsInvolvedIn
; // List of constraints we're involved in
676 wxSizer
* m_windowSizer
; // Window's top-level sizer (if any)
677 wxWindow
* m_sizerParent
; // Window's parent sizer (if any)
678 bool m_autoLayout
; // Whether to call Layout() in OnSize
679 wxWindow
* m_windowParent
; // Each window always knows its parent
680 wxValidator
* m_windowValidator
;
681 // Old window proc, for subclassed controls
682 WXFARPROC m_oldWndProc
;
683 bool m_useCtl3D
; // Using CTL3D for this control
685 bool m_inOnSize
; // Protection against OnSize reentry
687 // Pointer to global memory, for EDIT controls that need
688 // special treatment to reduce USER area consumption.
689 WXHGLOBAL m_globalHandle
;
703 wxFont m_windowFont
; // Window's font
705 bool m_doubleClickAllowed
;
706 wxCursor m_windowCursor
; // Window's cursor
708 wxString m_windowName
; // Window name
710 #if wxUSE_EXTENDED_STATICS
711 wxList m_staticItems
;
714 wxButton
* m_defaultItem
;
715 wxColour m_backgroundColour
;
716 wxColour m_foregroundColour
;
717 bool m_backgroundTransparent
;
726 bool m_mouseInWindow
;
728 #if wxUSE_DRAG_AND_DROP
729 wxDropTarget
*m_pDropTarget
; // the current drop target or NULL
730 #endif //USE_DRAG_AND_DROP
733 WXHWND m_hWnd
; // MS Windows window handle
735 WXWPARAM m_lastWParam
;
736 WXLPARAM m_lastLParam
;
738 wxRegion m_updateRegion
;
740 wxRect m_updateRect; // Bounding box for screen damage area
742 WXHRGN m_updateRgn; // NT allows access to the rectangle list
746 // WXHANDLE m_acceleratorTable;
747 WXHMENU m_hMenu
; // Menu, if any
748 wxList
* m_children
; // Window's children
750 bool m_isBeingDeleted
; // Fudge because can't access parent
751 // when being deleted
754 // common part of all ctors
757 DECLARE_EVENT_TABLE()
760 ////////////////////////////////////////////////////////////////////////
763 inline void *wxWindow::GetHandle() const { return (void *)GetHWND(); }
764 inline int wxWindow::GetId() const { return m_windowId
; }
765 inline void wxWindow::SetId(int id
) { m_windowId
= id
; }
766 inline wxWindow
*wxWindow::GetParent() const { return m_windowParent
; }
767 inline void wxWindow::SetParent(wxWindow
*p
) { m_windowParent
= p
; }
768 inline wxWindow
*wxWindow::GetGrandParent() const { return (m_windowParent
? m_windowParent
->m_windowParent
: (wxWindow
*) NULL
); }
769 inline wxList
& wxWindow::GetChildren() const { return (wxList
&) *m_children
; }
770 inline wxFont
& wxWindow::GetFont() const { return (wxFont
&) m_windowFont
; }
771 inline wxString
wxWindow::GetName() const { return m_windowName
; }
772 inline void wxWindow::SetName(const wxString
& name
) { m_windowName
= name
; }
773 inline long wxWindow::GetWindowStyleFlag() const { return m_windowStyle
; }
774 inline void wxWindow::SetWindowStyleFlag(long flag
) { m_windowStyle
= flag
; }
775 inline void wxWindow::SetDoubleClick(bool flag
) { m_doubleClickAllowed
= flag
; }
776 inline bool wxWindow::GetDoubleClick() const { return m_doubleClickAllowed
; }
777 inline void wxWindow::SetEventHandler(wxEvtHandler
*handler
) { m_windowEventHandler
= handler
; }
778 inline wxEvtHandler
*wxWindow::GetEventHandler() const { return m_windowEventHandler
; }
779 inline void wxWindow::SetAutoLayout(bool a
) { m_autoLayout
= a
; }
780 inline bool wxWindow::GetAutoLayout() const { return m_autoLayout
; }
781 inline wxLayoutConstraints
*wxWindow::GetConstraints() const { return m_constraints
; }
782 inline void wxWindow::SetBackgroundColour(const wxColour
& col
) { m_backgroundColour
= col
; };
783 inline wxColour
wxWindow::GetBackgroundColour() const { return m_backgroundColour
; };
784 inline void wxWindow::SetForegroundColour(const wxColour
& col
) { m_foregroundColour
= col
; };
785 inline wxColour
wxWindow::GetForegroundColour() const { return m_foregroundColour
; };
787 inline wxButton
*wxWindow::GetDefaultItem() const { return m_defaultItem
; }
788 inline void wxWindow::SetDefaultItem(wxButton
*but
) { m_defaultItem
= but
; }
789 inline bool wxWindow::IsRetained() const { return ((m_windowStyle
& wxRETAINED
) == wxRETAINED
); }
791 inline void wxWindow::SetShowing(bool show
) { m_isShown
= show
; }
792 inline wxList
*wxWindow::GetConstraintsInvolvedIn() const { return m_constraintsInvolvedIn
; }
793 inline wxSizer
*wxWindow::GetSizer() const { return m_windowSizer
; }
794 inline wxWindow
*wxWindow::GetSizerParent() const { return m_sizerParent
; }
795 inline void wxWindow::SetSizerParent(wxWindow
*win
) { m_sizerParent
= win
; }
796 inline WXFARPROC
wxWindow::MSWGetOldWndProc() const { return m_oldWndProc
; }
797 inline void wxWindow::MSWSetOldWndProc(WXFARPROC proc
) { m_oldWndProc
= proc
; }
798 inline wxValidator
*wxWindow::GetValidator() const { return m_windowValidator
; }
799 inline bool wxWindow::IsUserEnabled() const { return m_winEnabled
; }
800 inline bool wxWindow::GetUseCtl3D() const { return m_useCtl3D
; }
801 inline bool wxWindow::GetTransparentBackground() const { return m_backgroundTransparent
; }
802 inline void wxWindow::SetReturnCode(int retCode
) { m_returnCode
= retCode
; }
803 inline int wxWindow::GetReturnCode() { return m_returnCode
; }
804 inline bool wxWindow::IsBeingDeleted() { return m_isBeingDeleted
; }
806 // Window specific (so far)
807 WXDLLEXPORT wxWindow
* wxGetActiveWindow();
809 WXDLLEXPORT_DATA(extern wxList
) wxTopLevelWindows
;
811 WXDLLEXPORT
int wxCharCodeMSWToWX(int keySym
);
812 WXDLLEXPORT
int wxCharCodeWXToMSW(int id
, bool *IsVirtual
);
814 // Allocates control ids
815 WXDLLEXPORT
int NewControlId();