1 \section{\class{wxWindow
}}\label{wxwindow
}
3 wxWindow is the base class for all windows. Any
4 children of the window will be deleted automatically by the destructor
5 before the window itself is deleted.
7 \wxheading{Derived from
}
9 \helpref{wxEvtHandler
}{wxevthandler
}\\
10 \helpref{wxObject
}{wxobject
}
12 \wxheading{Window styles
}
14 The following styles can apply to all windows, although they will not always make sense for a particular
18 \begin{twocollist
}\itemsep=
0pt
19 \twocolitem{\windowstyle{wxSIMPLE
\_BORDER}}{Displays a thin border around the window. wxBORDER is the old name
21 \twocolitem{\windowstyle{wxDOUBLE
\_BORDER}}{Displays a double border. Windows only.
}
22 \twocolitem{\windowstyle{wxSUNKEN
\_BORDER}}{Displays a sunken border.
}
23 \twocolitem{\windowstyle{wxRAISED
\_BORDER}}{Displays a raised border.
}
24 \twocolitem{\windowstyle{wxSTATIC
\_BORDER}}{Displays a border suitable for a static control.
}
25 \twocolitem{\windowstyle{wxTRANSPARENT
\_WINDOW}}{The window is transparent, that is, it will not receive paint
26 events. Windows only.
}
27 \twocolitem{\windowstyle{wxNO
\_3D}}{Prevents the children of this window taking on
3D styles, even though
28 the application-wide policy is for
3D controls. Windows only.
}
29 \twocolitem{\windowstyle{wxTAB
\_TRAVERSAL}}{Use this to enable tab traversal for non-dialog windows.
}
30 \twocolitem{\windowstyle{wxVSCROLL
}}{Use this style to enable a vertical scrollbar.
}
31 \twocolitem{\windowstyle{wxHSCROLL
}}{Use this style to enable a horizontal scrollbar.
}
32 \twocolitem{\windowstyle{wxCLIP
\_CHILDREN}}{Use this style to eliminate flicker caused by the background being
33 repainted, then children being painted over them. Windows-only.
}
36 See also
\helpref{window styles overview
}{windowstyles
}.
40 \helpref{Event handling overview
}{eventhandlingoverview
}
42 \latexignore{\rtfignore{\wxheading{Members
}}}
44 \membersection{wxWindow::wxWindow
}
46 \func{}{wxWindow
}{\void}
50 \func{}{wxWindow
}{\param{wxWindow*
}{ parent
},
\param{wxWindowID
}{id
},
51 \param{const wxPoint\&
}{pos = wxDefaultPosition
},
52 \param{const wxSize\&
}{size = wxDefaultSize
},
53 \param{long
}{style =
0},
54 \param{const wxString\&
}{name = wxPanelNameStr
}}
56 Constructs a window, which can be a child of a frame, dialog or any other non-control window.
58 \wxheading{Parameters
}
60 \docparam{parent
}{Pointer to a parent window.
}
62 \docparam{id
}{Window identifier. If -
1, will automatically create an identifier.
}
64 \docparam{pos
}{Window position. wxDefaultPosition is (-
1, -
1) which indicates that wxWindows
65 should generate a default position for the window. If using the wxWindow class directly, supply
68 \docparam{size
}{Window size. wxDefaultSize is (-
1, -
1) which indicates that wxWindows
69 should generate a default size for the window.
}
71 \docparam{style
}{Window style. For generic window styles, please see
\helpref{wxWindow
}{wxwindow
}.
}
73 \docparam{name
}{Window name.
}
75 \membersection{wxWindow::
\destruct{wxWindow
}}
77 \func{}{\destruct{wxWindow
}}{\void}
79 Destructor. Deletes all subwindows, then deletes itself. Instead of using
80 the
{\bf delete
} operator explicitly, you should normally
81 use
\helpref{wxWindow::Destroy
}{wxwindowdestroy
} so that wxWindows
82 can delete a window only when it is safe to do so, in idle time.
86 \helpref{Window deletion overview
}{windowdeletionoverview
},
\rtfsp
87 \helpref{wxWindow::OnCloseWindow
}{wxwindowonclosewindow
},
\rtfsp
88 \helpref{wxWindow::Destroy
}{wxwindowdestroy
},
\rtfsp
89 \helpref{wxCloseEvent
}{wxcloseevent
}
91 \membersection{wxWindow::AddChild
}
93 \func{virtual void
}{AddChild
}{\param{wxWindow*
}{child
}}
95 Adds a child window. This is called automatically by window creation
96 functions so should not be required by the application programmer.
98 \wxheading{Parameters
}
100 \docparam{child
}{Child window to add.
}
102 \membersection{wxWindow::CaptureMouse
}\label{wxwindowcapturemouse
}
104 \func{virtual void
}{CaptureMouse
}{\void}
106 Directs all mouse input to this window. Call
\helpref{wxWindow::ReleaseMouse
}{wxwindowreleasemouse
} to
111 \helpref{wxWindow::ReleaseMouse
}{wxwindowreleasemouse
}
113 \membersection{wxWindow::Center
}\label{wxwindowcenter
}
115 \func{void
}{Center
}{\param{int
}{ direction
}}
117 A synonym for
\helpref{Centre
}{wxwindowcentre
}.
119 \membersection{wxWindow::Centre
}\label{wxwindowcentre
}
121 \func{virtual void
}{Centre
}{\param{int
}{ direction = wxHORIZONTAL
}}
125 \wxheading{Parameters
}
127 \docparam{direction
}{Specifies the direction for the centering. May be
{\tt wxHORIZONTAL
},
{\tt wxVERTICAL
}\rtfsp
132 The actual behaviour depends on the derived window. For a frame or dialog box,
133 centring is relative to the whole display. For a panel item, centring is
134 relative to the panel.
138 \helpref{wxWindow::Center
}{wxwindowcenter
}
140 \membersection{wxWindow::Clear
}\label{wxwindowclear
}
142 \func{void
}{Clear
}{\void}
144 Clears the window by filling it with the current background colour.
146 \membersection{wxWindow::ClientToScreen
}
148 \constfunc{virtual void
}{ClientToScreen
}{\param{int*
}{x
},
\param{int*
}{y
}}
150 \constfunc{virtual wxPoint
}{ClientToScreen
}{\param{const wxPoint\&
}{ pt
}}
152 Converts to screen coordinates from coordinates relative to this window.
154 \docparam{x
}{A pointer to a integer value for the x coordinate. Pass the client coordinate in, and
155 a screen coordinate will be passed out.
}
157 \docparam{y
}{A pointer to a integer value for the y coordinate. Pass the client coordinate in, and
158 a screen coordinate will be passed out.
}
160 \docparam{pt
}{The client position for the second form of the function.
}
162 \membersection{wxWindow::Close
}\label{wxwindowclose
}
164 \func{virtual bool
}{Close
}{\param{const bool
}{ force = FALSE
}}
166 The purpose of this call is to provide a safer way of destroying a window than using
167 the
{\it delete
} operator.
169 \wxheading{Parameters
}
171 \docparam{force
}{FALSE if the window's close handler should be able to veto the destruction
172 of this window, TRUE if it cannot.
}
176 Close calls the
\helpref{close handler
}{wxcloseevent
} for the window, providing an opportunity for the window to
177 choose whether to destroy the window.
179 The close handler should check whether the window is being deleted forcibly,
180 using
\helpref{wxCloseEvent::GetForce
}{wxcloseeventgetforce
}, in which case it should
181 destroy the window using
\helpref{wxWindow::Destroy
}{wxwindowdestroy
}.
183 Applies to managed windows (wxFrame and wxDialog classes) only.
187 \helpref{Window deletion overview
}{windowdeletionoverview
},
\rtfsp
188 \helpref{wxWindow::OnCloseWindow
}{wxwindowonclosewindow
},
\rtfsp
189 \helpref{wxWindow::Destroy
}{wxwindowdestroy
},
\rtfsp
190 \helpref{wxCloseEvent
}{wxcloseevent
}
192 \membersection{wxWindow::ConvertDialogToPixels
}\label{wxwindowconvertdialogtopixels
}
194 \func{wxPoint
}{ConvertDialogToPixels
}{\param{const wxPoint\&
}{ pt
}}
196 \func{wxSize
}{ConvertDialogToPixels
}{\param{const wxSize\&
}{ sz
}}
198 Converts a point or size from dialog units to pixels.
200 For the x dimension, the dialog units are multiplied by the average character width
201 and then divided by
4.
203 For the y dimension, the dialog units are multiplied by the average character height
204 and then divided by
8.
208 Dialog units are used for maintaining a dialog's proportions even if the font changes.
209 Dialogs created using Dialog Editor optionally use dialog units.
211 You can also use these functions programmatically. A convenience macro is defined:
215 #define wxDLG_UNIT(parent, pt) parent->ConvertDialogToPixels(pt)
221 \helpref{wxWindow::ConvertPixelsToDialog
}{wxwindowconvertpixelstodialog
}
223 \membersection{wxWindow::ConvertPixelsToDialog
}\label{wxwindowconvertpixelstodialog
}
225 \func{wxPoint
}{ConvertPixelsToDialog
}{\param{const wxPoint\&
}{ pt
}}
227 \func{wxSize
}{ConvertPixelsToDialog
}{\param{const wxSize\&
}{ sz
}}
229 Converts a point or size from pixels to dialog units.
231 For the x dimension, the pixels are multiplied by
4 and then divided by the average
234 For the y dimension, the pixels are multipled by
8 and then divided by the average
239 Dialog units are used for maintaining a dialog's proportions even if the font changes.
240 Dialogs created using Dialog Editor optionally use dialog units.
244 \helpref{wxWindow::ConvertDialogToPixels
}{wxwindowconvertdialogtopixels
}
246 \membersection{wxWindow::Destroy
}\label{wxwindowdestroy
}
248 \func{virtual bool
}{Destroy
}{\void}
250 Destroys the window safely. Use this function instead of the delete operator, since
251 different window classes can be destroyed differently. Frames and dialogs
252 are not destroyed immediately when this function is called - they are added
253 to a list of windows to be deleted on idle time, when all the window's events
254 have been processed. This prevents problems with events being sent to non-existant
257 \wxheading{Return value
}
259 TRUE if the window has either been successfully deleted, or it has been added
260 to the list of windows pending real deletion.
262 \membersection{wxWindow::DestroyChildren
}
264 \func{virtual void
}{DestroyChildren
}{\void}
266 Destroys all children of a window. Called automatically by the destructor.
268 \membersection{wxWindow::DragAcceptFiles
}\label{wxwindowdragacceptfiles
}
270 \func{virtual void
}{DragAcceptFiles
}{\param{const bool
}{ accept
}}
272 Enables or disables elibility for drop file events (OnDropFiles).
274 \wxheading{Parameters
}
276 \docparam{accept
}{If TRUE, the window is eligible for drop file events. If FALSE, the window
277 will not accept drop file events.
}
285 \helpref{wxWindow::OnDropFiles
}{wxwindowondropfiles
}
287 \membersection{wxWindow::Enable
}\label{wxwindowenable
}
289 \func{virtual void
}{Enable
}{\param{const bool
}{ enable
}}
291 Enable or disable the window for user input.
293 \wxheading{Parameters
}
295 \docparam{enable
}{If TRUE, enables the window for input. If FALSE, disables the window.
}
299 \helpref{wxWindow::IsEnabled
}{wxwindowisenabled
}
301 \membersection{wxWindow::FindFocus
}\label{wxwindowfindfocus
}
303 \func{static wxWindow*
}{FindFocus
}{\void}
305 Finds the window or control which currently has the keyboard focus.
309 Note that this is a static function, so it can be called without needing a wxWindow pointer.
313 \helpref{wxWindow::SetFocus
}{wxwindowsetfocus
}
315 \membersection{wxWindow::FindWindow
}\label{wxwindowfindwindow
}
317 \func{wxWindow*
}{FindWindow
}{\param{long
}{ id
}}
319 Find a child of this window, by identifier.
321 \func{wxWindow*
}{FindWindow
}{\param{const wxString\&
}{ name
}}
323 Find a child of this window, by name.
325 \membersection{wxWindow::Fit
}\label{wxwindowfit
}
327 \func{virtual void
}{Fit
}{\void}
329 Sizes the window so that it fits around its subwindows.
331 \membersection{wxWindow::GetBackgroundColour
}\label{wxwindowgetbackgroundcolour
}
333 \constfunc{virtual wxColour
}{GetBackgroundColour
}{\void}
335 Returns the background colour of the window.
339 \helpref{wxWindow::SetBackgroundColour
}{wxwindowsetbackgroundcolour
},
\rtfsp
340 \helpref{wxWindow::SetForegroundColour
}{wxwindowsetforegroundcolour
},
\rtfsp
341 \helpref{wxWindow::GetForegroundColour
}{wxwindowgetforegroundcolour
},
\rtfsp
342 \helpref{wxWindow::OnEraseBackground
}{wxwindowonerasebackground
}
344 \membersection{wxWindow::GetCharHeight
}
346 \constfunc{virtual int
}{GetCharHeight
}{\void}
348 Returns the character height for this window.
350 \membersection{wxWindow::GetCharWidth
}
352 \constfunc{virtual int
}{GetCharWidth
}{\void}
354 Returns the average character width for this window.
356 \membersection{wxWindow::GetChildren
}
358 \func{wxList\&
}{GetChildren
}{\void}
360 Returns a reference to the list of the window's children.
362 \membersection{wxWindow::GetClientSize
}\label{wxwindowgetclientsize
}
364 \constfunc{virtual void
}{GetClientSize
}{\param{int*
}{width
},
\param{int*
}{height
}}
366 \constfunc{virtual wxSize
}{GetClientSize
}{\void}
368 This gets the size of the window `client area' in pixels. The client area is the
369 area which may be drawn on by the programmer, excluding title bar, border etc.
371 \wxheading{Parameters
}
373 \docparam{width
}{Receives the client width in pixels.
}
375 \docparam{height
}{Receives the client height in pixels.
}
377 \membersection{wxWindow::GetConstraints
}\label{wxwindowgetconstraints
}
379 \constfunc{wxLayoutConstraints*
}{GetConstraints
}{\void}
381 Returns a pointer to the window's layout constraints, or NULL if there are none.
383 \membersection{wxWindow::GetDefaultItem
}\label{wxwindowgetdefaultitem
}
385 \constfunc{wxButton*
}{GetDefaultItem
}{\void}
387 Returns a pointer to the button which is the default for this window, or NULL.
389 \membersection{wxWindow::GetDropTarget
}\label{wxwindowgetdroptarget
}
391 \constfunc{wxDropTarget*
}{GetDropTarget
}{\void}
393 Returns the associated drop target, which may be NULL.
397 \helpref{wxWindow::SetDropTarget
}{wxwindowsetdroptarget
},
398 \helpref{Drag and drop overview
}{wxdndoverview
}
400 \membersection{wxWindow::GetEventHandler
}\label{wxwindowgeteventhandler
}
402 \constfunc{wxEvtHandler*
}{GetEventHandler
}{\void}
404 Returns the event handler for this window. By default, the window is its
409 \helpref{wxWindow::SetEventHandler
}{wxwindowseteventhandler
},
\rtfsp
410 \helpref{wxWindow::PushEventHandler
}{wxwindowpusheventhandler
},
\rtfsp
411 \helpref{wxWindow::PopEventHandler
}{wxwindowpusheventhandler
},
\rtfsp
412 \helpref{wxEvtHandler::ProcessEvent
}{wxevthandlerprocessevent
},
\rtfsp
413 \helpref{wxEvtHandler
}{wxevthandler
}\rtfsp
415 \membersection{wxWindow::GetFont
}\label{wxwindowgetfont
}
417 \constfunc{wxFont\&
}{GetFont
}{\void}
419 Returns a reference to the font for this window.
423 \helpref{wxWindow::SetFont
}{wxwindowsetfont
}
425 \membersection{wxWindow::GetForegroundColour
}\label{wxwindowgetforegroundcolour
}
427 \func{virtual wxColour
}{GetForegroundColour
}{\void}
429 Returns the foreground colour of the window.
433 The interpretation of foreground colour is open to interpretation according
434 to the window class; it may be the text colour or other colour, or it may not
439 \helpref{wxWindow::SetForegroundColour
}{wxwindowsetforegroundcolour
},
\rtfsp
440 \helpref{wxWindow::SetBackgroundColour
}{wxwindowsetbackgroundcolour
},
\rtfsp
441 \helpref{wxWindow::GetBackgroundColour
}{wxwindowgetbackgroundcolour
}
443 \membersection{wxWindow::GetGrandParent
}
445 \constfunc{wxWindow*
}{GetGrandParent
}{\void}
447 Returns the grandparent of a window, or NULL if there isn't one.
449 \membersection{wxWindow::GetHandle
}
451 \constfunc{void*
}{GetHandle
}{\void}
453 Returns the platform-specific handle of the physical window. Cast it to an appropriate
454 handle, such as
{\bf HWND
} for Windows or
{\bf Widget
} for Motif.
456 \membersection{wxWindow::GetId
}\label{wxwindowgetid
}
458 \constfunc{int
}{GetId
}{\void}
460 Returns the identifier of the window.
464 Each window has an integer identifier. If the application has not provided one,
465 an identifier will be generated.
467 TODO: perhaps there should be a default identifier for each class, rather
468 choosing one, which could clash with other ones.
472 \helpref{wxWindow::SetId
}{wxwindowsetid
}
474 \membersection{wxWindow::GetPosition
}
476 \constfunc{virtual void
}{GetPosition
}{\param{int*
}{x
},
\param{int*
}{y
}}
478 This gets the position of the window in pixels, relative to the parent window or
479 if no parent, relative to the whole display.
481 \wxheading{Parameters
}
483 \docparam{x
}{Receives the x position of the window.
}
485 \docparam{y
}{Receives the y position of the window.
}
487 \membersection{wxWindow::GetLabel
}
489 \constfunc{virtual wxString\&
}{GetLabel
}{\void}
491 Generic way of getting a label from any window, for
492 identification purposes.
496 The interpretation of this function differs from class to class.
497 For frames and dialogs, the value returned is the title. For buttons or static text controls, it is
498 the button text. This function can be useful for meta-programs (such as testing
499 tools or special-needs access programs) which need to identify windows
502 \membersection{wxWindow::GetName
}\label{wxwindowgetname
}
504 \constfunc{virtual wxString\&
}{GetName
}{\void}
506 Returns the window's name.
510 This name is not guaranteed to be unique; it is up to the programmer to supply an appropriate
511 name in the window constructor or via
\helpref{wxWindow::SetName
}{wxwindowsetname
}.
515 \helpref{wxWindow::SetName
}{wxwindowsetname
}
517 \membersection{wxWindow::GetParent
}
519 \constfunc{virtual wxWindow*
}{GetParent
}{\void}
521 Returns the parent of the window, or NULL if there is no parent.
523 \membersection{wxWindow::GetRect
}\label{wxwindowgetrect
}
525 \constfunc{virtual wxRect
}{GetRect
}{\void}
527 Returns the size and position of the window as a
\helpref{wxRect
}{wxrect
} object.
529 \membersection{wxWindow::GetReturnCode
}\label{wxwindowgetreturncode
}
531 \func{int
}{GetReturnCode
}{\void}
533 Gets the return code for this window.
537 A return code is normally associated with a modal dialog, where
\helpref{wxDialog::ShowModal
}{wxdialogshowmodal
} returns
538 a code to the application.
542 \helpref{wxWindow::SetReturnCode
}{wxwindowsetreturncode
},
\helpref{wxDialog::ShowModal
}{wxdialogshowmodal
},
\rtfsp
543 \helpref{wxDialog::EndModal
}{wxdialogendmodal
}
545 \membersection{wxWindow::GetScrollThumb
}\label{wxwindowgetscrollthumb
}
547 \func{virtual int
}{GetScrollThumb
}{\param{int
}{orientation
}}
549 Returns the built-in scrollbar thumb size.
553 \helpref{wxWindow::SetScrollbar
}{wxwindowsetscrollbar
}
555 \membersection{wxWindow::GetScrollPos
}\label{wxwindowgetscrollpos
}
557 \func{virtual int
}{GetScrollPos
}{\param{int
}{orientation
}}
559 Returns the built-in scrollbar position.
563 See
\helpref{wxWindow::SetScrollbar
}{wxwindowsetscrollbar
}
565 \membersection{wxWindow::GetScrollRange
}\label{wxwindowgetscrollrange
}
567 \func{virtual int
}{GetScrollRange
}{\param{int
}{orientation
}}
569 Returns the built-in scrollbar range.
573 \helpref{wxWindow::SetScrollbar
}{wxwindowsetscrollbar
}
575 \membersection{wxWindow::GetSize
}\label{wxwindowgetsize
}
577 \constfunc{virtual void
}{GetSize
}{\param{int*
}{width
},
\param{int*
}{height
}}
579 \constfunc{virtual wxSize
}{GetSize
}{\void}
581 This gets the size of the entire window in pixels.
583 \wxheading{Parameters
}
585 \docparam{width
}{Receives the window width.
}
587 \docparam{height
}{Receives the window height.
}
589 \membersection{wxWindow::GetTextExtent
}
591 \constfunc{virtual void
}{GetTextExtent
}{\param{const wxString\&
}{string
},
\param{int*
}{x
},
\param{int*
}{y
},
592 \param{int*
}{descent = NULL
},
\param{int*
}{externalLeading = NULL
},
593 \param{const wxFont*
}{font = NULL
},
\param{const bool
}{ use16 = FALSE
}}
595 Gets the dimensions of the string as it would be drawn on the
596 window with the currently selected font.
598 \wxheading{Parameters
}
600 \docparam{string
}{String whose extent is to be measured.
}
602 \docparam{x
}{Return value for width.
}
604 \docparam{y
}{Return value for height.
}
606 \docparam{descent
}{Return value for descent (optional).
}
608 \docparam{externalLeading
}{Return value for external leading (optional).
}
610 \docparam{font
}{Font to use instead of the current window font (optional).
}
612 \docparam{use16
}{If TRUE,
{\it string
} contains
16-bit characters. The default is FALSE.
}
614 \membersection{wxWindow::GetTitle
}\label{wxwindowgettitle
}
616 \func{virtual wxString
}{GetTitle
}{\void}
618 Gets the window's title. Applicable only to frames and dialogs.
622 \helpref{wxWindow::SetTitle
}{wxwindowsettitle
}
624 \membersection{wxWindow::GetUpdateRegion
}\label{wxwindowgetupdateregion
}
626 \constfunc{virtual wxRegion
}{GetUpdateRegion
}{\void}
628 Returns the region specifying which parts of the window have been damaged. Should
629 only be called within an
\helpref{OnPaint
}{wxwindowonpaint
} event handler.
633 \helpref{wxRegion
}{wxregion
},
\helpref{wxRegionIterator
}{wxregioniterator
},
\helpref{wxWindow::OnPaint
}{wxwindowonpaint
}
635 \membersection{wxWindow::GetWindowStyleFlag
}
637 \constfunc{long
}{GetWindowStyleFlag
}{\void}
639 Gets the window style that was passed to the consructor or
{\bf Create
} member.
641 \membersection{wxWindow::InitDialog
}\label{wxwindowinitdialog
}
643 \func{void
}{InitDialog
}{\void}
645 Sends an
\helpref{wxWindow::OnInitDialog
}{wxwindowoninitdialog
} event, which
646 in turn transfers data to the dialog via validators.
650 \helpref{wxWindow::OnInitDialog
}{wxwindowoninitdialog
}
652 \membersection{wxWindow::IsEnabled
}\label{wxwindowisenabled
}
654 \constfunc{virtual bool
}{IsEnabled
}{\void}
656 Returns TRUE if the window is enabled for input, FALSE otherwise.
660 \helpref{wxWindow::Enable
}{wxwindowenable
}
662 \membersection{wxWindow::IsRetained
}\label{wxwindowisretained
}
664 \constfunc{virtual bool
}{IsRetained
}{\void}
666 Returns TRUE if the window is retained, FALSE otherwise.
670 Retained windows are only available on X platforms.
672 \membersection{wxWindow::IsShown
}\label{wxwindowisshown
}
674 \constfunc{virtual bool
}{IsShown
}{\void}
676 Returns TRUE if the window is shown, FALSE if it has been hidden.
678 \membersection{wxWindow::Layout
}\label{wxwindowlayout
}
680 \func{void
}{Layout
}{\void}
682 Invokes the constraint-based layout algorithm for this window. It is called
683 automatically by the default
{\bf wxWindow::OnSize
} member.
685 \membersection{wxWindow::LoadFromResource
}\label{wxwindowloadfromresource
}
687 \func{virtual bool
}{LoadFromResource
}{\param{wxWindow*
}{parent
},
\rtfsp
688 \param{const wxString\&
}{resourceName
},
\param{const wxResourceTable*
}{resourceTable = NULL
}}
690 Loads a panel or dialog from a resource file.
692 \wxheading{Parameters
}
694 \docparam{parent
}{Parent window.
}
696 \docparam{resourceName
}{The name of the resource to load.
}
698 \docparam{resourceTable
}{The resource table to load it from. If this is NULL, the
699 default resource table will be used.
}
701 \wxheading{Return value
}
703 TRUE if the operation succeeded, otherwise FALSE.
713 \membersection{wxWindow::Lower
}\label{wxwindowlower
}
715 \func{void
}{Lower
}{\void}
717 Lowers the window to the bottom of the window hierarchy if it is a managed window (dialog
720 \membersection{wxWindow::MakeModal
}\label{wxwindowmakemodal
}
722 \func{virtual void
}{MakeModal
}{\param{const bool
}{flag
}}
724 Disables all other windows in the application so that
725 the user can only interact with this window.
727 \wxheading{Parameters
}
729 \docparam{flag
}{If TRUE, this call disables all other windows in the application so that
730 the user can only interact with this window. If FALSE, the effect is reversed.
}
732 \membersection{wxWindow::Move
}\label{wxwindowmove
}
734 \func{void
}{Move
}{\param{int
}{ x
},
\param{int
}{ y
}}
736 \func{void
}{Move
}{\param{const wxPoint\&
}{ pt
}}
738 Moves the window to the given position.
740 \wxheading{Parameters
}
742 \docparam{x
}{Required x position.
}
744 \docparam{y
}{Required y position.
}
746 \docparam{pt
}{\helpref{wxPoint
}{wxpoint
} object representing the position.
}
750 Implementations of SetSize can also implicitly implement the
751 wxWindow::Move function, which is defined in the base wxWindow class
755 SetSize(x, y, -
1, -
1, wxSIZE_USE_EXISTING);
760 \helpref{wxWindow::SetSize
}{wxwindowsetsize
}
762 \membersection{wxWindow::OnActivate
}\label{wxwindowonactivate
}
764 \func{void
}{OnActivate
}{\param{wxActivateEvent\&
}{ event
}}
766 Called when a window is activated or deactivated.
768 \wxheading{Parameters
}
770 \docparam{event
}{Object containing activation information.
}
774 If the window is being activated,
\helpref{wxActivateEvent::GetActive
}{wxactivateeventgetactive
} returns TRUE,
775 otherwise it returns FALSE (it is being deactivated).
779 \helpref{wxActivateEvent
}{wxactivateevent
},
\rtfsp
780 \helpref{Event handling overview
}{eventhandlingoverview
}
782 \membersection{wxWindow::OnChar
}\label{wxwindowonchar
}
784 \func{void
}{OnChar
}{\param{wxKeyEvent\&
}{ event
}}
786 Called when the user has pressed a key that is not a modifier (SHIFT, CONTROL or ALT).
788 \wxheading{Parameters
}
790 \docparam{event
}{Object containing keypress information. See
\helpref{wxKeyEvent
}{wxkeyevent
} for
791 details about this class.
}
795 This member function is called in response to a keypress. To intercept this event,
796 use the EVT
\_CHAR macro in an event table definition. Your
{\bf OnChar
} handler may call this
797 default function to achieve default keypress functionality.
799 Note that the ASCII values do not have explicit key codes: they are passed as ASCII
802 Note that not all keypresses can be intercepted this way. If you wish to intercept modifier
803 keypresses, then you will need to use
\helpref{wxWindow::OnKeyDown
}{wxwindowonkeydown
} or
804 \helpref{wxWindow::OnKeyUp
}{wxwindowonkeyup
}.
806 Most, but not all, windows allow keypresses to be intercepted.
810 \helpref{wxWindow::OnKeyDown
}{wxwindowonkeydown
},
\helpref{wxWindow::OnKeyUp
}{wxwindowonkeyup
},
\rtfsp
811 \helpref{wxKeyEvent
}{wxkeyevent
},
\helpref{wxWindow::OnCharHook
}{wxwindowoncharhook
},
\rtfsp
812 \helpref{Event handling overview
}{eventhandlingoverview
}
814 \membersection{wxWindow::OnCharHook
}\label{wxwindowoncharhook
}
816 \func{void
}{OnCharHook
}{\param{wxKeyEvent\&
}{ event
}}
818 This member is called to allow the window to intercept keyboard events
819 before they are processed by child windows.
821 \wxheading{Parameters
}
823 \docparam{event
}{Object containing keypress information. See
\helpref{wxKeyEvent
}{wxkeyevent
} for
824 details about this class.
}
828 This member function is called in response to a keypress, if the window is active. To intercept this event,
829 use the EVT
\_CHAR\_HOOK macro in an event table definition. If you do not process a particular
830 keypress, call
\helpref{wxEvent::Skip
}{wxeventskip
} to allow default processing.
832 An example of using this function is in the implementation of escape-character processing for wxDialog,
833 where pressing ESC dismisses the dialog by
{\bf OnCharHook
} 'forging' a cancel button press event.
835 Note that the ASCII values do not have explicit key codes: they are passed as ASCII
838 This function is only relevant to top-level windows (frames and dialogs), and under
843 \helpref{wxKeyEvent
}{wxkeyevent
},
\helpref{wxWindow::OnCharHook
}{wxwindowoncharhook
},
\rtfsp
844 \helpref{wxApp::OnCharHook
}{wxapponcharhook
},
\rtfsp
845 \helpref{Event handling overview
}{eventhandlingoverview
}
847 \membersection{wxWindow::OnCommand
}\label{wxwindowoncommand
}
849 \func{virtual void
}{OnCommand
}{\param{wxEvtHandler\&
}{object
},
\param{wxCommandEvent\&
}{event
}}
851 This virtual member function is called if the control does not handle the command event.
853 \wxheading{Parameters
}
855 \docparam{object
}{Object receiving the command event.
}
857 \docparam{event
}{Command event
}
861 This virtual function is provided mainly for backward compatibility. You can also intercept commands
862 from child controls by using an event table, with identifiers or identifier ranges to identify
863 the control(s) in question.
867 \helpref{wxCommandEvent
}{wxcommandevent
},
\rtfsp
868 \helpref{Event handling overview
}{eventhandlingoverview
}
870 \membersection{wxWindow::OnClose
}\label{wxwindowonclose
}
872 \func{virtual bool
}{OnClose
}{\void}
874 Called when the user has tried to close a a frame
875 or dialog box using the window manager (X) or system menu (Windows).
877 {\bf Note:
} This is an obsolete function.
878 It is superceded by the
\helpref{wxWindow::OnCloseWindow
}{wxwindowonclosewindow
} event
881 \wxheading{Return value
}
883 If TRUE is returned by OnClose, the window will be deleted by the system, otherwise the
884 attempt will be ignored. Do not delete the window from within this handler, although
885 you may delete other windows.
889 \helpref{Window deletion overview
}{windowdeletionoverview
},
\rtfsp
890 \helpref{wxWindow::Close
}{wxwindowclose
},
\rtfsp
891 \helpref{wxWindow::OnCloseWindow
}{wxwindowonclosewindow
},
\rtfsp
892 \helpref{wxCloseEvent
}{wxcloseevent
}
894 \membersection{wxWindow::OnCloseWindow
}\label{wxwindowonclosewindow
}
896 \func{void
}{OnCloseWindow
}{\param{wxCloseEvent\&
}{event
}}
898 This is an event handler function called when the user has tried to close a a frame
899 or dialog box using the window manager (X) or system menu (Windows). It is
900 called via the
\helpref{wxWindow::Close
}{wxwindowclose
} function, so
901 that the application can also invoke the handler programmatically.
903 Use the EVT
\_CLOSE event table macro to handle close events.
905 You should check whether the application is forcing the deletion of the window
906 using
\helpref{wxCloseEvent::GetForce
}{wxcloseeventgetforce
}. If this is TRUE,
907 destroy the window using
\helpref{wxWindow::Destroy
}{wxwindowdestroy
}.
908 If not, it is up to you whether you respond by destroying the window.
910 (Note: GetForce is now superceded by CanVeto. So to test whether forced destruction of
911 the window is required, test for the negative of CanVeto. If CanVeto returns FALSE,
912 it is not possible to skip window deletion.)
914 If you don't destroy the window, you should call
\helpref{wxCloseEvent::Veto
}{wxcloseeventveto
} to
915 let the calling code know that you did not destroy the window. This allows the
\helpref{wxWindow::Close
}{wxwindowclose
} function
916 to return TRUE or FALSE depending on whether the close instruction was honoured or not.
920 The
\helpref{wxWindow::OnClose
}{wxwindowonclose
} virtual function remains
921 for backward compatibility with earlier versions of wxWindows. The
922 default
{\bf OnCloseWindow
} handler for wxFrame and wxDialog will call
{\bf OnClose
},
923 destroying the window if it returns TRUE or if the close is being forced.
927 \helpref{Window deletion overview
}{windowdeletionoverview
},
\rtfsp
928 \helpref{wxWindow::Close
}{wxwindowclose
},
\rtfsp
929 \helpref{wxWindow::OnClose
}{wxwindowonclose
},
\rtfsp
930 \helpref{wxWindow::Destroy
}{wxwindowdestroy
},
\rtfsp
931 \helpref{wxCloseEvent
}{wxcloseevent
},
\rtfsp
932 \helpref{wxApp::OnQueryEndSession
}{wxapponqueryendsession
},
\rtfsp
933 \helpref{wxApp::OnEndSession
}{wxapponendsession
}
935 \membersection{wxWindow::OnDropFiles
}\label{wxwindowondropfiles
}
937 \func{void
}{OnDropFiles
}{\param{wxDropFilesEvent\&
}{ event
}}
939 Called when files have been dragged from the file manager to the window.
941 \wxheading{Parameters
}
943 \docparam{event
}{Drop files event. For more information, see
\helpref{wxDropFilesEvent
}{wxdropfilesevent
}.
}
947 The window must have previously been enabled for dropping by calling
948 \rtfsp\helpref{wxWindow::DragAcceptFiles
}{wxwindowdragacceptfiles
}.
950 This event is only generated under Windows.
952 To intercept this event, use the EVT
\_DROP\_FILES macro in an event table definition.
956 \helpref{wxDropFilesEvent
}{wxdropfilesevent
},
\helpref{wxWindow::DragAcceptFiles
}{wxwindowdragacceptfiles
},
\rtfsp
957 \helpref{Event handling overview
}{eventhandlingoverview
}
959 \membersection{wxWindow::OnEraseBackground
}\label{wxwindowonerasebackground
}
961 \func{void
}{OnEraseBackground
}{\param{wxEraseEvent\&
}{ event
}}
963 Called when the background of the window needs to be erased.
965 \wxheading{Parameters
}
967 \docparam{event
}{Erase background event. For more information, see
\helpref{wxEraseEvent
}{wxeraseevent
}.
}
971 This event is only generated under Windows.
973 To intercept this event, use the EVT
\_ERASE\_BACKGROUND macro in an event table definition.
977 \helpref{wxEraseEvent
}{wxeraseevent
},
\helpref{Event handling overview
}{eventhandlingoverview
}
979 \membersection{wxWindow::OnKeyDown
}\label{wxwindowonkeydown
}
981 \func{void
}{OnKeyDown
}{\param{wxKeyEvent\&
}{ event
}}
983 Called when the user has pressed a key, before it is translated into an ASCII value using other
984 modifier keys that might be pressed at the same time.
986 \wxheading{Parameters
}
988 \docparam{event
}{Object containing keypress information. See
\helpref{wxKeyEvent
}{wxkeyevent
} for
989 details about this class.
}
993 This member function is called in response to a key down event. To intercept this event,
994 use the EVT
\_KEY\_DOWN macro in an event table definition. Your
{\bf OnKeyDown
} handler may call this
995 default function to achieve default keypress functionality.
997 Note that not all keypresses can be intercepted this way. If you wish to intercept special
998 keys, such as shift, control, and function keys, then you will need to use
\helpref{wxWindow::OnKeyDown
}{wxwindowonkeydown
} or
999 \helpref{wxWindow::OnKeyUp
}{wxwindowonkeyup
}.
1001 Most, but not all, windows allow keypresses to be intercepted.
1003 \wxheading{See also
}
1005 \helpref{wxWindow::OnChar
}{wxwindowonchar
},
\helpref{wxWindow::OnKeyUp
}{wxwindowonkeyup
},
\rtfsp
1006 \helpref{wxKeyEvent
}{wxkeyevent
},
\helpref{wxWindow::OnCharHook
}{wxwindowoncharhook
},
\rtfsp
1007 \helpref{Event handling overview
}{eventhandlingoverview
}
1009 \membersection{wxWindow::OnKeyUp
}\label{wxwindowonkeyup
}
1011 \func{void
}{OnKeyUp
}{\param{wxKeyEvent\&
}{ event
}}
1013 Called when the user has released a key.
1015 \wxheading{Parameters
}
1017 \docparam{event
}{Object containing keypress information. See
\helpref{wxKeyEvent
}{wxkeyevent
} for
1018 details about this class.
}
1022 This member function is called in response to a key up event. To intercept this event,
1023 use the EVT
\_KEY\_UP macro in an event table definition. Your
{\bf OnKeyUp
} handler may call this
1024 default function to achieve default keypress functionality.
1026 Note that not all keypresses can be intercepted this way. If you wish to intercept special
1027 keys, such as shift, control, and function keys, then you will need to use
\helpref{wxWindow::OnKeyDown
}{wxwindowonkeydown
} or
1028 \helpref{wxWindow::OnKeyUp
}{wxwindowonkeyup
}.
1030 Most, but not all, windows allow key up events to be intercepted.
1032 \wxheading{See also
}
1034 \helpref{wxWindow::OnChar
}{wxwindowonchar
},
\helpref{wxWindow::OnKeyDown
}{wxwindowonkeydown
},
\rtfsp
1035 \helpref{wxKeyEvent
}{wxkeyevent
},
\helpref{wxWindow::OnCharHook
}{wxwindowoncharhook
},
\rtfsp
1036 \helpref{Event handling overview
}{eventhandlingoverview
}
1038 \membersection{wxWindow::OnKillFocus
}\label{wxwindowonkillfocus
}
1040 \func{void
}{OnKillFocus
}{\param{wxFocusEvent\&
}{event
}}
1042 Called when a window's focus is being killed.
1044 \wxheading{Parameters
}
1046 \docparam{event
}{The focus event. For more information, see
\helpref{wxFocusEvent
}{wxfocusevent
}.
}
1050 To intercept this event, use the macro EVT
\_KILL\_FOCUS in an event table definition.
1052 Most, but not all, windows respond to this event.
1054 \wxheading{See also
}
1056 \helpref{wxFocusEvent
}{wxfocusevent
},
\helpref{wxWindow::OnSetFocus
}{wxwindowonsetfocus
},
\rtfsp
1057 \helpref{Event handling overview
}{eventhandlingoverview
}
1059 \membersection{wxWindow::OnIdle
}\label{wxwindowonidle
}
1061 \func{void
}{OnIdle
}{\param{wxIdleEvent\&
}{event
}}
1063 Provide this member function for any processing which needs to be done
1064 when the application is idle.
1066 \wxheading{See also
}
1068 \helpref{wxApp::OnIdle
}{wxapponidle
},
\helpref{wxIdleEvent
}{wxidleevent
}
1070 \membersection{wxWindow::OnInitDialog
}\label{wxwindowoninitdialog
}
1072 \func{void
}{OnInitDialog
}{\param{wxInitDialogEvent\&
}{ event
}}
1074 Default handler for the wxEVT
\_INIT\_DIALOG event. Calls
\helpref{wxWindow::TransferDataToWindow
}{wxwindowtransferdatatowindow
}.
1076 \wxheading{Parameters
}
1078 \docparam{event
}{Dialog initialisation event.
}
1082 Gives the window the default behaviour of transferring data to child controls via
1083 the validator that each control has.
1085 \wxheading{See also
}
1087 \helpref{wxValidator
}{wxvalidator
},
\helpref{wxWindow::TransferDataToWindow
}{wxwindowtransferdatatowindow
}
1089 \membersection{wxWindow::OnMenuCommand
}\label{wxwindowonmenucommand
}
1091 \func{void
}{OnMenuCommand
}{\param{wxCommandEvent\&
}{event
}}
1093 Called when a menu command is received from a menu bar.
1095 \wxheading{Parameters
}
1097 \docparam{event
}{The menu command event. For more information, see
\helpref{wxCommandEvent
}{wxcommandevent
}.
}
1101 A function with this name doesn't actually exist; you can choose any member function to receive
1102 menu command events, using the EVT
\_COMMAND macro for individual commands or EVT
\_COMMAND\_RANGE for
1103 a range of commands.
1105 \wxheading{See also
}
1107 \helpref{wxCommandEvent
}{wxcommandevent
},
\rtfsp
1108 \helpref{wxWindow::OnMenuHighlight
}{wxwindowonmenuhighlight
},
\rtfsp
1109 \helpref{Event handling overview
}{eventhandlingoverview
}
1111 \membersection{wxWindow::OnMenuHighlight
}\label{wxwindowonmenuhighlight
}
1113 \func{void
}{OnMenuHighlight
}{\param{wxMenuEvent\&
}{event
}}
1115 Called when a menu select is received from a menu bar: that is, the
1116 mouse cursor is over a menu item, but the left mouse button has not been
1119 \wxheading{Parameters
}
1121 \docparam{event
}{The menu highlight event. For more information, see
\helpref{wxMenuEvent
}{wxmenuevent
}.
}
1125 You can choose any member function to receive
1126 menu select events, using the EVT
\_MENU\_HIGHLIGHT macro for individual menu items or EVT
\_MENU\_HIGHLIGHT\_ALL macro
1129 The default implementation for
\helpref{wxFrame::OnMenuHighlight
}{wxframeonmenuhighlight
} displays help
1130 text in the first field of the status bar.
1132 This function was known as
{\bf OnMenuSelect
} in earlier versions of wxWindows, but this was confusing
1133 since a selection is normally a left-click action.
1135 \wxheading{See also
}
1137 \helpref{wxMenuEvent
}{wxmenuevent
},
\rtfsp
1138 \helpref{wxWindow::OnMenuCommand
}{wxwindowonmenucommand
},
\rtfsp
1139 \helpref{Event handling overview
}{eventhandlingoverview
}
1142 \membersection{wxWindow::OnMouseEvent
}\label{wxwindowonmouseevent
}
1144 \func{void
}{OnMouseEvent
}{\param{wxMouseEvent\&
}{ event
}}
1146 Called when the user has initiated an event with the
1149 \wxheading{Parameters
}
1151 \docparam{event
}{The mouse event. See
\helpref{wxMouseEvent
}{wxmouseevent
} for
1156 Most, but not all, windows respond to this event.
1158 To intercept this event, use the EVT
\_MOUSE\_EVENTS macro in an event table definition, or individual
1159 mouse event macros such as EVT
\_LEFT\_DOWN.
1161 \wxheading{See also
}
1163 \helpref{wxMouseEvent
}{wxmouseevent
},
\rtfsp
1164 \helpref{Event handling overview
}{eventhandlingoverview
}
1166 \membersection{wxWindow::OnMove
}\label{wxwindowonmove
}
1168 \func{void
}{OnMove
}{\param{wxMoveEvent\&
}{event
}}
1170 Called when a window is moved.
1172 \wxheading{Parameters
}
1174 \docparam{event
}{The move event. For more information, see
\helpref{wxMoveEvent
}{wxmoveevent
}.
}
1178 Use the EVT
\_MOVE macro to intercept move events.
1182 Not currently implemented.
1184 \wxheading{See also
}
1186 \helpref{wxMoveEvent
}{wxmoveevent
},
\rtfsp
1187 \helpref{wxFrame::OnSize
}{wxframeonsize
},
\rtfsp
1188 \helpref{Event handling overview
}{eventhandlingoverview
}
1190 \membersection{wxWindow::OnPaint
}\label{wxwindowonpaint
}
1192 \func{void
}{OnPaint
}{\param{wxPaintEvent\&
}{event
}}
1194 Sent to the event handler when the window must be refreshed.
1196 \wxheading{Parameters
}
1198 \docparam{event
}{Paint event. For more information, see
\helpref{wxPaintEvent
}{wxpaintevent
}.
}
1202 Use the EVT
\_PAINT macro in an event table definition to intercept paint events.
1204 In a paint event handler, the application should always create a
\helpref{wxPaintDC
}{wxpaintdc
} object.
1210 void MyWindow::OnPaint(wxPaintEvent& event)
1219 You can optimize painting by retrieving the rectangles
1220 that have been damaged and only repainting these. The rectangles are in
1221 terms of the client area, and are unscrolled, so you will need to do
1222 some calculations using the current view position to obtain logical,
1225 Here is an example of using the
\helpref{wxRegionIterator
}{wxregioniterator
} class:
1229 // Called when window needs to be repainted.
1230 void MyWindow::OnPaint(wxPaintEvent& event)
1234 // Find Out where the window is scrolled to
1235 int vbX,vbY; // Top left corner of client
1236 ViewStart(&vbX,&vbY);
1238 int vX,vY,vW,vH; // Dimensions of client area in pixels
1239 wxRegionIterator upd(GetUpdateRegion()); // get the update rect list
1248 // Alternatively we can do this:
1250 // upd.GetRect(&rect);
1252 // Repaint this rectangle
1261 \wxheading{See also
}
1263 \helpref{wxPaintEvent
}{wxpaintevent
},
\rtfsp
1264 \helpref{wxPaintDC
}{wxpaintdc
},
\rtfsp
1265 \helpref{Event handling overview
}{eventhandlingoverview
}
1267 \membersection{wxWindow::OnScroll
}\label{wxwindowonscroll
}
1269 \func{void
}{OnScroll
}{\param{wxScrollEvent\&
}{event
}}
1271 Called when a scroll event is received from one of the window's built-in scrollbars.
1273 \wxheading{Parameters
}
1275 \docparam{event
}{Command event. Retrieve the new scroll position by
1276 calling
\helpref{wxScrollEvent::GetPosition
}{wxscrolleventgetposition
}, and the
1277 scrollbar orientation by calling
\helpref{wxScrollEvent::GetOrientation
}{wxscrolleventgetorientation
}.
}
1281 Note that it is not possible to distinguish between horizontal and vertical scrollbars
1282 until the function is executing (you can't have one function for vertical, another
1283 for horizontal events).
1285 \wxheading{See also
}
1287 \helpref{wxScrollEvent
}{wxscrollevent
},
\rtfsp
1288 \helpref{Event handling overview
}{eventhandlingoverview
}
1290 \membersection{wxWindow::OnSetFocus
}\label{wxwindowonsetfocus
}
1292 \func{void
}{OnSetFocus
}{\param{wxFocusEvent\&
}{event
}}
1294 Called when a window's focus is being set.
1296 \wxheading{Parameters
}
1298 \docparam{event
}{The focus event. For more information, see
\helpref{wxFocusEvent
}{wxfocusevent
}.
}
1302 To intercept this event, use the macro EVT
\_SET\_FOCUS in an event table definition.
1304 Most, but not all, windows respond to this event.
1306 \wxheading{See also
}
1308 \helpref{wxFocusEvent
}{wxfocusevent
},
\helpref{wxWindow::OnKillFocus
}{wxwindowonkillfocus
},
\rtfsp
1309 \helpref{Event handling overview
}{eventhandlingoverview
}
1311 \membersection{wxWindow::OnSize
}\label{wxwindowonsize
}
1313 \func{void
}{OnSize
}{\param{wxSizeEvent\&
}{event
}}
1315 Called when the window has been resized.
1317 \wxheading{Parameters
}
1319 \docparam{event
}{Size event. For more information, see
\helpref{wxSizeEvent
}{wxsizeevent
}.
}
1323 You may wish to use this for frames to resize their child windows as appropriate.
1325 Note that the size passed is of
1326 the whole window: call
\helpref{wxWindow::GetClientSize
}{wxwindowgetclientsize
} for the area which may be
1327 used by the application.
1329 \wxheading{See also
}
1331 \helpref{wxSizeEvent
}{wxsizeevent
},
\rtfsp
1332 \helpref{Event handling overview
}{eventhandlingoverview
}
1334 \membersection{wxWindow::OnSysColourChanged
}\label{wxwindowonsyscolourchanged
}
1336 \func{void
}{OnSysColourChanged
}{\param{wxOnSysColourChangedEvent\&
}{event
}}
1338 Called when the user has changed the system colours.
1340 \wxheading{Parameters
}
1342 \docparam{event
}{System colour change event. For more information, see
\helpref{wxSysColourChangedEvent
}{wxsyscolourchangedevent
}.
}
1344 \wxheading{See also
}
1346 \helpref{wxSysColourChangedEvent
}{wxsyscolourchangedevent
},
\rtfsp
1347 \helpref{Event handling overview
}{eventhandlingoverview
}
1349 \membersection{wxWindow::PopEventHandler
}\label{wxwindowpopeventhandler
}
1351 \constfunc{wxEvtHandler*
}{PopEventHandler
}{\param{bool
}{deleteHandler = FALSE
}}
1353 Removes and returns the top-most event handler on the event handler stack.
1355 \wxheading{Parameters
}
1357 \docparam{deleteHandler
}{If this is TRUE, the handler will be deleted after it is removed. The
1358 default value is FALSE.
}
1360 \wxheading{See also
}
1362 \helpref{wxWindow::SetEventHandler
}{wxwindowseteventhandler
},
\rtfsp
1363 \helpref{wxWindow::GetEventHandler
}{wxwindowgeteventhandler
},
\rtfsp
1364 \helpref{wxWindow::PushEventHandler
}{wxwindowpusheventhandler
},
\rtfsp
1365 \helpref{wxEvtHandler::ProcessEvent
}{wxevthandlerprocessevent
},
\rtfsp
1366 \helpref{wxEvtHandler
}{wxevthandler
}\rtfsp
1368 \membersection{wxWindow::PopupMenu
}\label{wxwindowpopupmenu
}
1370 \func{virtual bool
}{PopupMenu
}{\param{wxMenu*
}{menu
},
\param{int
}{x
},
\param{int
}{y
}}
1372 Pops up the given menu at the specified coordinates, relative to this
1373 window, and returns control when the user has dismissed the menu. If a
1374 menu item is selected, the callback defined for the menu is called with
1375 wxMenu and wxCommandEvent reference arguments. The callback should access
1376 the commandInt member of the event to check the selected menu identifier.
1378 \wxheading{Parameters
}
1380 \docparam{menu
}{Menu to pop up.
}
1382 \docparam{x
}{Required x position for the menu to appear.
}
1384 \docparam{y
}{Required y position for the menu to appear.
}
1386 \wxheading{See also
}
1388 \helpref{wxMenu
}{wxmenu
}
1392 Just before the menu is popped up,
\helpref{wxMenu::UpdateUI
}{wxmenuupdateui
} is called
1393 to ensure that the menu items are in the correct state.
1395 \membersection{wxWindow::PushEventHandler
}\label{wxwindowpusheventhandler
}
1397 \func{void
}{PushEventHandler
}{\param{wxEvtHandler*
}{handler
}}
1399 Pushes this event handler onto the event stack for the window.
1401 \wxheading{Parameters
}
1403 \docparam{handler
}{Specifies the handler to be pushed.
}
1407 An event handler is an object that is capable of processing the events
1408 sent to a window. By default, the window is its own event handler, but
1409 an application may wish to substitute another, for example to allow
1410 central implementation of event-handling for a variety of different
1413 \helpref{wxWindow::PushEventHandler
}{wxwindowpusheventhandler
} allows
1414 an application to set up a chain of event handlers, where an event not handled by one event handler is
1415 handed to the next one in the chain. Use
\helpref{wxWindow::PopEventHandler
}{wxwindowpopeventhandler
} to
1416 remove the event handler.
1418 \wxheading{See also
}
1420 \helpref{wxWindow::SetEventHandler
}{wxwindowseteventhandler
},
\rtfsp
1421 \helpref{wxWindow::GetEventHandler
}{wxwindowgeteventhandler
},
\rtfsp
1422 \helpref{wxWindow::PopEventHandler
}{wxwindowpusheventhandler
},
\rtfsp
1423 \helpref{wxEvtHandler::ProcessEvent
}{wxevthandlerprocessevent
},
\rtfsp
1424 \helpref{wxEvtHandler
}{wxevthandler
}
1426 \membersection{wxWindow::Raise
}\label{wxwindowraise
}
1428 \func{void
}{Raise
}{\void}
1430 Raises the window to the top of the window hierarchy if it is a managed window (dialog
1433 \membersection{wxWindow::Refresh
}\label{wxwindowrefresh
}
1435 \func{virtual void
}{Refresh
}{\param{const bool
}{ eraseBackground = TRUE
},
\param{const wxRect*
}{rect
1438 Causes a message or event to be generated to repaint the
1441 \wxheading{Parameters
}
1443 \docparam{eraseBackground
}{If TRUE, the background will be
1446 \docparam{rect
}{If non-NULL, only the given rectangle will
1447 be treated as damaged.
}
1449 \membersection{wxWindow::ReleaseMouse
}\label{wxwindowreleasemouse
}
1451 \func{virtual void
}{ReleaseMouse
}{\void}
1453 Releases mouse input captured with
\helpref{wxWindow::CaptureMouse
}{wxwindowcapturemouse
}.
1455 \wxheading{See also
}
1457 \helpref{wxWindow::CaptureMouse
}{wxwindowcapturemouse
}
1459 \membersection{wxWindow::RemoveChild
}\label{wxwindowremovechild
}
1461 \func{virtual void
}{RemoveChild
}{\param{wxWindow*
}{child
}}
1463 Removes a child window. This is called automatically by window deletion
1464 functions so should not be required by the application programmer.
1466 \wxheading{Parameters
}
1468 \docparam{child
}{Child window to remove.
}
1470 \membersection{wxWindow::ScreenToClient
}\label{wxwindowscreentoclient
}
1472 \constfunc{virtual void
}{ScreenToClient
}{\param{int*
}{x
},
\param{int*
}{y
}}
1474 \constfunc{virtual wxPoint
}{ScreenToClient
}{\param{const wxPoint\&
}{pt
}}
1476 Converts from screen to client window coordinates.
1478 \wxheading{Parameters
}
1480 \docparam{x
}{Stores the screen x coordinate and receives the client x coordinate.
}
1482 \docparam{y
}{Stores the screen x coordinate and receives the client x coordinate.
}
1484 \docparam{pt
}{The screen position for the second form of the function.
}
1486 \membersection{wxWindow::ScrollWindow
}\label{wxwindowscrollwindow
}
1488 \func{virtual void
}{ScrollWindow
}{\param{int
}{dx
},
\param{int
}{dy
},
\param{const wxRect*
}{ rect = NULL
}}
1490 Physically scrolls the pixels in the window.
1492 \wxheading{Parameters
}
1494 \docparam{dx
}{Amount to scroll horizontally.
}
1496 \docparam{dy
}{Amount to scroll vertically.
}
1498 \docparam{rect
}{Rectangle to invalidate. If this is NULL, the whole window is invalidated. If you
1499 pass a rectangle corresponding to the area of the window exposed by the scroll, your painting handler
1500 can optimise painting by checking for the invalidated region.
}
1504 Available only under Windows.
1506 Use this function to optimise your scrolling implementations, to minimise the area that must be
1509 \membersection{wxWindow::SetAcceleratorTable
}\label{wxwindowsetacceleratortable
}
1511 \func{virtual void
}{SetAcceleratorTable
}{\param{const wxAcceleratorTable\&
}{ accel
}}
1513 Sets the accelerator table for this window. See
\helpref{wxAcceleratorTable
}{wxacceleratortable
}.
1515 \membersection{wxWindow::SetAutoLayout
}\label{wxwindowsetautolayout
}
1517 \func{void
}{SetAutoLayout
}{\param{const bool
}{ autoLayout
}}
1519 Determines whether the
\helpref{wxWindow::Layout
}{wxwindowlayout
} function will
1520 be called automatically when the window is resized.
1522 \wxheading{Parameters
}
1524 \docparam{autoLayout
}{Set this to TRUE if you wish the Layout function to be called
1525 from within wxWindow::OnSize functions.
}
1527 \wxheading{See also
}
1529 \helpref{wxWindow::SetConstraints
}{wxwindowsetconstraints
}
1531 \membersection{wxWindow::SetBackgroundColour
}\label{wxwindowsetbackgroundcolour
}
1533 \func{virtual void
}{SetBackgroundColour
}{\param{const wxColour\&
}{colour
}}
1535 Sets the background colour of the window.
1537 \wxheading{Parameters
}
1539 \docparam{colour
}{The colour to be used as the background colour.
}
1543 The background colour is usually painted by the default
\rtfsp
1544 \helpref{wxWindow::OnEraseBackground
}{wxwindowonerasebackground
} event handler function.
1546 \wxheading{See also
}
1548 \helpref{wxWindow::GetBackgroundColour
}{wxwindowgetbackgroundcolour
},
\rtfsp
1549 \helpref{wxWindow::SetForegroundColour
}{wxwindowsetforegroundcolour
},
\rtfsp
1550 \helpref{wxWindow::GetForegroundColour
}{wxwindowgetforegroundcolour
},
\rtfsp
1551 \helpref{wxWindow::OnEraseBackground
}{wxwindowonerasebackground
}
1553 \membersection{wxWindow::SetConstraints
}\label{wxwindowsetconstraints
}
1555 \func{void
}{SetConstraints
}{\param{wxLayoutConstraints*
}{constraints
}}
1557 Sets the window to have the given layout constraints. The window
1558 will then own the object, and will take care of its deletion.
1559 If an existing layout constraints object is already owned by the
1560 window, it will be deleted.
1562 \wxheading{Parameters
}
1564 \docparam{constraints
}{The constraints to set. Pass NULL to disassociate and delete the window's
1569 You must call
\helpref{wxWindow::SetAutoLayout
}{wxwindowsetautolayout
} to tell a window to use
1570 the constraints automatically in OnSize; otherwise, you must
1571 override OnSize and call Layout explicitly.
1573 \membersection{wxWindow::SetDropTarget
}\label{wxwindowsetdroptarget
}
1575 \func{void
}{SetDropTarget
}{\param{wxDropTarget*
}{ target
}}
1577 Associates a drop target with this window.
1579 If the window already has a drop target, it is deleted.
1581 \wxheading{See also
}
1583 \helpref{wxWindow::GetDropTarget
}{wxwindowgetdroptarget
},
1584 \helpref{Drag and drop overview
}{wxdndoverview
}
1586 \membersection{wxWindow::SetFocus
}\label{wxwindowsetfocus
}
1588 \func{virtual void
}{SetFocus
}{\void}
1590 This sets the window to receive keyboard input.
1592 \membersection{wxWindow::SetFont
}\label{wxwindowsetfont
}
1594 \func{void
}{SetFont
}{\param{const wxFont\&
}{font
}}
1596 Sets the font for this window.
1598 \wxheading{Parameters
}
1600 \docparam{font
}{Font to associate with this window.
}
1602 \wxheading{See also
}
1604 \helpref{wxWindow::GetFont
}{wxwindowgetfont
}
1606 \membersection{wxWindow::SetForegroundColour
}\label{wxwindowsetforegroundcolour
}
1608 \func{virtual void
}{SetForegroundColour
}{\param{const wxColour\&
}{colour
}}
1610 Sets the foreground colour of the window.
1612 \wxheading{Parameters
}
1614 \docparam{colour
}{The colour to be used as the foreground colour.
}
1618 The interpretation of foreground colour is open to interpretation according
1619 to the window class; it may be the text colour or other colour, or it may not
1622 \wxheading{See also
}
1624 \helpref{wxWindow::GetForegroundColour
}{wxwindowgetforegroundcolour
},
\rtfsp
1625 \helpref{wxWindow::SetBackgroundColour
}{wxwindowsetbackgroundcolour
},
\rtfsp
1626 \helpref{wxWindow::GetBackgroundColour
}{wxwindowgetbackgroundcolour
}
1628 \membersection{wxWindow::SetId
}\label{wxwindowsetid
}
1630 \func{void
}{SetId
}{\param{int
}{ id
}}
1632 Sets the identifier of the window.
1636 Each window has an integer identifier. If the application has not provided one,
1637 an identifier will be generated. Normally, the identifier should be provided
1638 on creation and should not be modified subsequently.
1640 TODO: perhaps there should be a default identifier for each class, rather
1641 choosing one, which could clash with other ones.
1643 \wxheading{See also
}
1645 \helpref{wxWindow::GetId
}{wxwindowgetid
}
1648 \membersection{wxWindow::SetName
}\label{wxwindowsetname
}
1650 \func{virtual void
}{SetName
}{\param{const wxString\&
}{name
}}
1652 Sets the window's name.
1654 \wxheading{Parameters
}
1656 \docparam{name
}{A name to set for the window.
}
1658 \wxheading{See also
}
1660 \helpref{wxWindow::GetName
}{wxwindowgetname
}
1662 \membersection{wxWindow::SetReturnCode
}\label{wxwindowsetreturncode
}
1664 \func{void
}{SetReturnCode
}{\param{int
}{retCode
}}
1666 Sets the return code for this window.
1668 \wxheading{Parameters
}
1670 \docparam{retCode
}{The integer return code, usually a control identifier.
}
1674 A return code is normally associated with a modal dialog, where
\helpref{wxDialog::ShowModal
}{wxdialogshowmodal
} returns
1675 a code to the application. The function
\helpref{wxDialog::EndModal
}{wxdialogendmodal
} calls
{\bf SetReturnCode
}.
1677 \wxheading{See also
}
1679 \helpref{wxWindow::GetReturnCode
}{wxwindowgetreturncode
},
\helpref{wxDialog::ShowModal
}{wxdialogshowmodal
},
\rtfsp
1680 \helpref{wxDialog::EndModal
}{wxdialogendmodal
}
1682 \membersection{wxWindow::SetScrollbar
}\label{wxwindowsetscrollbar
}
1684 \func{virtual void
}{SetScrollbar
}{\param{int
}{orientation
},
\param{int
}{position
},
\rtfsp
1685 \param{int
}{thumbSize
},
\param{int
}{range
},
\rtfsp
1686 \param{const bool
}{refresh = TRUE
}}
1688 Sets the scrollbar properties of a built-in scrollbar.
1690 \wxheading{Parameters
}
1692 \docparam{orientation
}{Determines the scrollbar whose page size is to be set. May be wxHORIZONTAL or wxVERTICAL.
}
1694 \docparam{position
}{The position of the scrollbar in scroll units.
}
1696 \docparam{thumbSize
}{The size of the thumb, or visible portion of the scrollbar, in scroll units.
}
1698 \docparam{range
}{The maximum position of the scrollbar.
}
1700 \docparam{refresh
}{TRUE to redraw the scrollbar, FALSE otherwise.
}
1704 Let's say you wish to display
50 lines of text, using the same font.
1705 The window is sized so that you can only see
16 lines at a time.
1711 SetScrollbar(wxVERTICAL,
0,
16,
50);
1715 Note that with the window at this size, the thumb position can never go
1716 above
50 minus
16, or
34.
1718 You can determine how many lines are currently visible by dividing the current view
1719 size by the character height in pixels.
1721 When defining your own scrollbar behaviour, you will always need to recalculate
1722 the scrollbar settings when the window size changes. You could therefore put your
1723 scrollbar calculations and SetScrollbar
1724 call into a function named AdjustScrollbars, which can be called initially and also
1725 from your
\helpref{wxWindow::OnSize
}{wxwindowonsize
} event handler function.
1727 \wxheading{See also
}
1729 \helpref{Scrolling overview
}{scrollingoverview
},
\rtfsp
1730 \helpref{wxScrollBar
}{wxscrollbar
},
\helpref{wxScrolledWindow
}{wxscrolledwindow
}
1733 \membersection{wxWindow::SetScrollPage
}\label{wxwindowsetscrollpage
}
1735 \func{virtual void
}{SetScrollPage
}{\param{int
}{orientation
},
\param{int
}{pageSize
},
\param{const bool
}{refresh = TRUE
}}
1737 Sets the page size of one of the built-in scrollbars.
1739 \wxheading{Parameters
}
1741 \docparam{orientation
}{Determines the scrollbar whose page size is to be set. May be wxHORIZONTAL or wxVERTICAL.
}
1743 \docparam{pageSize
}{Page size in scroll units.
}
1745 \docparam{refresh
}{TRUE to redraw the scrollbar, FALSE otherwise.
}
1749 The page size of a scrollbar is the number of scroll units that the scroll thumb travels when you
1750 click on the area above/left of or below/right of the thumb. Normally you will want a whole visible
1751 page to be scrolled, i.e. the size of the current view (perhaps the window client size). This
1752 value has to be adjusted when the window is resized, since the page size will have changed.
1754 In addition to specifying how far the scroll thumb travels when paging, in Motif and some versions of Windows
1755 the thumb changes size to reflect the page size relative to the length of the
document. When the
1756 document size is only slightly bigger than the current view (window) size, almost all of the scrollbar
1757 will be taken up by the thumb. When the two values become the same, the scrollbar will (on some systems)
1760 Currently, this function should be called before SetPageRange, because of a quirk in the Windows
1761 handling of pages and ranges.
1763 \wxheading{See also
}
1765 \helpref{wxWindow::SetScrollPos
}{wxwindowsetscrollpos
},
\rtfsp
1766 \helpref{wxWindow::GetScrollPos
}{wxwindowsetscrollpos
},
\rtfsp
1767 \helpref{wxWindow::GetScrollPage
}{wxwindowsetscrollpage
},
\rtfsp
1768 \helpref{wxScrollBar
}{wxscrollbar
},
\helpref{wxScrolledWindow
}{wxscrolledwindow
}
1771 \membersection{wxWindow::SetScrollPos
}\label{wxwindowsetscrollpos
}
1773 \func{virtual void
}{SetScrollPos
}{\param{int
}{orientation
},
\param{int
}{pos
},
\param{const bool
}{refresh = TRUE
}}
1775 Sets the position of one of the built-in scrollbars.
1777 \wxheading{Parameters
}
1779 \docparam{orientation
}{Determines the scrollbar whose position is to be set. May be wxHORIZONTAL or wxVERTICAL.
}
1781 \docparam{pos
}{Position in scroll units.
}
1783 \docparam{refresh
}{TRUE to redraw the scrollbar, FALSE otherwise.
}
1787 This function does not directly affect the contents of the window: it is up to the
1788 application to take note of scrollbar attributes and redraw contents accordingly.
1790 \wxheading{See also
}
1792 \helpref{wxWindow::SetScrollbar
}{wxwindowsetscrollbar
},
\rtfsp
1793 \helpref{wxWindow::GetScrollPos
}{wxwindowsetscrollpos
},
\rtfsp
1794 \helpref{wxWindow::GetScrollThumb
}{wxwindowgetscrollthumb
},
\rtfsp
1795 \helpref{wxScrollBar
}{wxscrollbar
},
\helpref{wxScrolledWindow
}{wxscrolledwindow
}
1798 \membersection{wxWindow::SetScrollRange
}\label{wxwindowsetscrollrange
}
1800 \func{virtual void
}{SetScrollRange
}{\param{int
}{orientation
},
\param{int
}{range
},
\param{const bool
}{refresh = TRUE
}}
1802 Sets the range of one of the built-in scrollbars.
1804 \wxheading{Parameters
}
1806 \docparam{orientation
}{Determines the scrollbar whose range is to be set. May be wxHORIZONTAL or wxVERTICAL.
}
1808 \docparam{range
}{Scroll range.
}
1810 \docparam{refresh
}{TRUE to redraw the scrollbar, FALSE otherwise.
}
1814 The range of a scrollbar is the number of steps that the thumb may travel, rather than the total
1815 object length of the scrollbar. If you are implementing a scrolling window, for example, you
1816 would adjust the scroll range when the window is resized, by subtracting the window view size from the
1817 total virtual window size. When the two sizes are the same (all the window is visible), the range goes to zero
1818 and usually the scrollbar will be automatically hidden.
1820 \wxheading{See also
}
1822 \helpref{wxWindow::SetScrollPos
}{wxwindowsetscrollpos
},
\rtfsp
1823 \helpref{wxWindow::SetScrollPage
}{wxwindowsetscrollpage
},
\rtfsp
1824 \helpref{wxWindow::GetScrollPos
}{wxwindowsetscrollpos
},
\rtfsp
1825 \helpref{wxWindow::GetScrollPage
}{wxwindowsetscrollpage
},
\rtfsp
1826 \helpref{wxScrollBar
}{wxscrollbar
},
\helpref{wxScrolledWindow
}{wxscrolledwindow
}
1829 \membersection{wxWindow::SetSize
}\label{wxwindowsetsize
}
1831 \func{virtual void
}{SetSize
}{\param{int
}{ x
},
\param{int
}{ y
},
\param{int
}{ width
},
\param{int
}{ height
},
1832 \param{int
}{ sizeFlags = wxSIZE
\_AUTO}}
1834 \func{virtual void
}{SetSize
}{\param{const wxRect\&
}{ rect
}}
1836 Sets the size and position of the window in pixels.
1838 \func{virtual void
}{SetSize
}{\param{int
}{ width
},
\param{int
}{ height
}}
1840 \func{virtual void
}{SetSize
}{\param{const wxSize\&
}{ size
}}
1842 Sets the size of the window in pixels.
1844 \wxheading{Parameters
}
1846 \docparam{x
}{Required x position in pixels, or -
1 to indicate that the existing
1847 value should be used.
}
1849 \docparam{y
}{Required y position in pixels, or -
1 to indicate that the existing
1850 value should be used.
}
1852 \docparam{width
}{Required width in pixels, or -
1 to indicate that the existing
1853 value should be used.
}
1855 \docparam{height
}{Required height position in pixels, or -
1 to indicate that the existing
1856 value should be used.
}
1858 \docparam{size
}{\helpref{wxSize
}{wxsize
} object for setting the size.
}
1860 \docparam{rect
}{\helpref{wxRect
}{wxrect
} object for setting the position and size.
}
1862 \docparam{sizeFlags
}{Indicates the interpretation of other parameters. It is a bit list of the following:
1864 {\bf wxSIZE
\_AUTO\_WIDTH}: a -
1 width value is taken to indicate
1865 a wxWindows-supplied default width.\\
1866 {\bf wxSIZE
\_AUTO\_HEIGHT}: a -
1 height value is taken to indicate
1867 a wxWindows-supplied default width.\\
1868 {\bf wxSIZE
\_AUTO}: -
1 size values are taken to indicate
1869 a wxWindows-supplied default size.\\
1870 {\bf wxSIZE
\_USE\_EXISTING}: existing dimensions should be used
1871 if -
1 values are supplied.\\
1872 {\bf wxSIZE
\_ALLOW\_MINUS\_ONE}: allow dimensions of -
1 and less to be interpreted
1873 as real dimensions, not default values.
1878 The second form is a convenience for calling the first form with default
1879 x and y parameters, and must be used with non-default width and height values.
1881 The first form sets the position and optionally size, of the window.
1882 Parameters may be -
1 to indicate either that a default should be supplied
1883 by wxWindows, or that the current value of the dimension should be used.
1885 \wxheading{See also
}
1887 \helpref{wxWindow::Move
}{wxwindowmove
}
1889 \membersection{wxWindow::SetSizeHints
}\label{wxwindowsetsizehints
}
1891 \func{virtual void
}{SetSizeHints
}{\param{int
}{ minW=-
1},
\param{int
}{ minH=-
1},
\param{int
}{ maxW=-
1},
\param{int
}{ maxH=-
1},
1892 \param{int
}{ incW=-
1},
\param{int
}{ incH=-
1}}
1894 Allows specification of minimum and maximum window sizes, and window size increments.
1895 If a pair of values is not set (or set to -
1), the default values will be used.
1897 \wxheading{Parameters
}
1899 \docparam{minW
}{Specifies the minimum width allowable.
}
1901 \docparam{minH
}{Specifies the minimum height allowable.
}
1903 \docparam{maxW
}{Specifies the maximum width allowable.
}
1905 \docparam{maxH
}{Specifies the maximum height allowable.
}
1907 \docparam{incW
}{Specifies the increment for sizing the width (Motif/Xt only).
}
1909 \docparam{incH
}{Specifies the increment for sizing the height (Motif/Xt only).
}
1913 If this function is called, the user will not be able to size the window outside the
1916 The resizing increments are only significant under Motif or Xt.
1918 \membersection{wxWindow::SetClientSize
}
1920 \func{virtual void
}{SetClientSize
}{\param{int
}{ width
},
\param{int
}{ height
}}
1922 \func{virtual void
}{SetClientSize
}{\param{const wxSize\&
}{ size
}}
1924 This sets the size of the window client area in pixels. Using this function to size a window
1925 tends to be more device-independent than
\helpref{wxWindow::SetSize
}{wxwindowsetsize
}, since the application need not
1926 worry about what dimensions the border or title bar have when trying to fit the window
1927 around panel items, for example.
1929 \wxheading{Parameters
}
1931 \docparam{width
}{The required client area width.
}
1933 \docparam{height
}{The required client area height.
}
1935 \docparam{size
}{The required client size.
}
1937 \membersection{wxWindow::SetPalette
}
1939 \func{virtual void
}{SetPalette
}{\param{wxPalette*
}{palette
}}
1941 Obsolete - use
\helpref{wxDC::SetPalette
}{wxdcsetpalette
} instead.
1943 \membersection{wxWindow::SetCursor
}\label{wxwindowsetcursor
}
1945 \func{virtual void
}{SetCursor
}{\param{const wxCursor\&
}{cursor
}}
1947 Sets the window's cursor.
1949 \wxheading{Parameters
}
1951 \docparam{cursor
}{Specifies the cursor that the window should normally display.
}
1955 Under Windows, you sometimes need to call ::wxSetCursor in addition to this
1956 function if you want the cursor to change immediately, because under Windows,
1957 wxWindows only sets the global cursor when it detects mouse movement.
1959 \wxheading{See also
}
1961 \helpref{::wxSetCursor
}{wxsetcursor
},
\helpref{wxCursor
}{wxcursor
}
1963 \membersection{wxWindow::SetEventHandler
}\label{wxwindowseteventhandler
}
1965 \func{void
}{SetEventHandler
}{\param{wxEvtHandler*
}{handler
}}
1967 Sets the event handler for this window.
1969 \wxheading{Parameters
}
1971 \docparam{handler
}{Specifies the handler to be set.
}
1975 An event handler is an object that is capable of processing the events
1976 sent to a window. By default, the window is its own event handler, but
1977 an application may wish to substitute another, for example to allow
1978 central implementation of event-handling for a variety of different
1981 It is usually better to use
\helpref{wxWindow::PushEventHandler
}{wxwindowpusheventhandler
} since
1982 this sets up a chain of event handlers, where an event not handled by one event handler is
1983 handed to the next one in the chain.
1985 \wxheading{See also
}
1987 \helpref{wxWindow::GetEventHandler
}{wxwindowgeteventhandler
},
\rtfsp
1988 \helpref{wxWindow::PushEventHandler
}{wxwindowpusheventhandler
},
\rtfsp
1989 \helpref{wxWindow::PopEventHandler
}{wxwindowpusheventhandler
},
\rtfsp
1990 \helpref{wxEvtHandler::ProcessEvent
}{wxevthandlerprocessevent
},
\rtfsp
1991 \helpref{wxEvtHandler
}{wxevthandler
}
1993 \membersection{wxWindow::SetTitle
}\label{wxwindowsettitle
}
1995 \func{virtual void
}{SetTitle
}{\param{const wxString\&
}{title
}}
1997 Sets the window's title. Applicable only to frames and dialogs.
1999 \wxheading{Parameters
}
2001 \docparam{title
}{The window's title.
}
2003 \wxheading{See also
}
2005 \helpref{wxWindow::GetTitle
}{wxwindowgettitle
}
2007 \membersection{wxWindow::Show
}
2009 \func{virtual bool
}{Show
}{\param{const bool
}{ show
}}
2011 Shows or hides the window.
2013 \wxheading{Parameters
}
2015 \docparam{show
}{If TRUE, displays the window and brings it to the front. Otherwise,
2018 \wxheading{See also
}
2020 \helpref{wxWindow::IsShown
}{wxwindowisshown
}
2022 \membersection{wxWindow::TransferDataFromWindow
}\label{wxwindowtransferdatafromwindow
}
2024 \func{virtual bool
}{TransferDataFromWindow
}{\void}
2026 Transfers values from child controls to data areas specified by their validators. Returns
2027 FALSE if a transfer failed.
2029 \wxheading{See also
}
2031 \helpref{wxWindow::TransferDataToWindow
}{wxwindowtransferdatatowindow
},
\rtfsp
2032 \helpref{wxValidator
}{wxvalidator
},
\helpref{wxWindow::Validate
}{wxwindowvalidate
}
2034 \membersection{wxWindow::TransferDataToWindow
}\label{wxwindowtransferdatatowindow
}
2036 \func{virtual bool
}{TransferDataToWindow
}{\void}
2038 Transfers values to child controls from data areas specified by their validators.
2040 \wxheading{Return value
}
2042 Returns FALSE if a transfer failed.
2044 \wxheading{See also
}
2046 \helpref{wxWindow::TransferDataFromWindow
}{wxwindowtransferdatafromwindow
},
\rtfsp
2047 \helpref{wxValidator
}{wxvalidator
},
\helpref{wxWindow::Validate
}{wxwindowvalidate
}
2049 \membersection{wxWindow::Validate
}\label{wxwindowvalidate
}
2051 \func{virtual bool
}{Validate
}{\void}
2053 Validates the current values of the child controls using their validators.
2055 \wxheading{Return value
}
2057 Returns FALSE if any of the validations failed.
2059 \wxheading{See also
}
2061 \helpref{wxWindow::TransferDataFromWindow
}{wxwindowtransferdatafromwindow
},
\rtfsp
2062 \helpref{wxWindow::TransferDataFromWindow
}{wxwindowtransferdatafromwindow
},
\rtfsp
2063 \helpref{wxValidator
}{wxvalidator
}
2065 \membersection{wxWindow::WarpPointer
}\label{wxwindowwarppointer
}
2067 \func{void
}{WarpPointer
}{\param{int
}{ x
},
\param{int
}{ y
}}
2069 Moves the pointer to the given position on the window.
2071 \wxheading{Parameters
}
2073 \docparam{x
}{The new x position for the cursor.
}
2075 \docparam{y
}{The new y position for the cursor.
}