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{Include files
}
16 \wxheading{Window styles
}
18 The following styles can apply to all windows, although they will not always make sense for a particular
22 \begin{twocollist
}\itemsep=
0pt
23 \twocolitem{\windowstyle{wxSIMPLE
\_BORDER}}{Displays a thin border around the window. wxBORDER is the old name
24 for this style. Windows only.
}
25 \twocolitem{\windowstyle{wxDOUBLE
\_BORDER}}{Displays a double border. Windows only.
}
26 \twocolitem{\windowstyle{wxSUNKEN
\_BORDER}}{Displays a sunken border.
}
27 \twocolitem{\windowstyle{wxRAISED
\_BORDER}}{Displays a raised border.
}
28 \twocolitem{\windowstyle{wxSTATIC
\_BORDER}}{Displays a border suitable for a static control. Windows only.
}
29 \twocolitem{\windowstyle{wxTRANSPARENT
\_WINDOW}}{The window is transparent, that is, it will not receive paint
30 events. Windows only.
}
31 \twocolitem{\windowstyle{wxNO
\_3D}}{Prevents the children of this window taking on
3D styles, even though
32 the application-wide policy is for
3D controls. Windows only.
}
33 \twocolitem{\windowstyle{wxTAB
\_TRAVERSAL}}{Use this to enable tab traversal for non-dialog windows.
}
34 \twocolitem{\windowstyle{wxVSCROLL
}}{Use this style to enable a vertical scrollbar. (Still used?)
}
35 \twocolitem{\windowstyle{wxHSCROLL
}}{Use this style to enable a horizontal scrollbar. (Still used?)
}
36 \twocolitem{\windowstyle{wxCLIP
\_CHILDREN}}{Use this style to eliminate flicker caused by the background being
37 repainted, then children being painted over them. Windows only.
}
40 See also
\helpref{window styles overview
}{windowstyles
}.
44 \helpref{Event handling overview
}{eventhandlingoverview
}
46 \latexignore{\rtfignore{\wxheading{Members
}}}
48 \membersection{wxWindow::wxWindow
}
50 \func{}{wxWindow
}{\void}
54 \func{}{wxWindow
}{\param{wxWindow*
}{ parent
},
\param{wxWindowID
}{id
},
55 \param{const wxPoint\&
}{pos = wxDefaultPosition
},
56 \param{const wxSize\&
}{size = wxDefaultSize
},
57 \param{long
}{style =
0},
58 \param{const wxString\&
}{name = wxPanelNameStr
}}
60 Constructs a window, which can be a child of a frame, dialog or any other non-control window.
62 \wxheading{Parameters
}
64 \docparam{parent
}{Pointer to a parent window.
}
66 \docparam{id
}{Window identifier. If -
1, will automatically create an identifier.
}
68 \docparam{pos
}{Window position. wxDefaultPosition is (-
1, -
1) which indicates that wxWindows
69 should generate a default position for the window. If using the wxWindow class directly, supply
72 \docparam{size
}{Window size. wxDefaultSize is (-
1, -
1) which indicates that wxWindows
73 should generate a default size for the window. If no suitable size can be found, the
74 window will be sized to
20x20 pixels so that the window is visible but obviously not
77 \docparam{style
}{Window style. For generic window styles, please see
\helpref{wxWindow
}{wxwindow
}.
}
79 \docparam{name
}{Window name.
}
81 \membersection{wxWindow::
\destruct{wxWindow
}}
83 \func{}{\destruct{wxWindow
}}{\void}
85 Destructor. Deletes all subwindows, then deletes itself. Instead of using
86 the
{\bf delete
} operator explicitly, you should normally
87 use
\helpref{wxWindow::Destroy
}{wxwindowdestroy
} so that wxWindows
88 can delete a window only when it is safe to do so, in idle time.
92 \helpref{Window deletion overview
}{windowdeletionoverview
},
\rtfsp
93 \helpref{wxWindow::OnCloseWindow
}{wxwindowonclosewindow
},
\rtfsp
94 \helpref{wxWindow::Destroy
}{wxwindowdestroy
},
\rtfsp
95 \helpref{wxCloseEvent
}{wxcloseevent
}
97 \membersection{wxWindow::AddChild
}
99 \func{virtual void
}{AddChild
}{\param{wxWindow*
}{child
}}
101 Adds a child window. This is called automatically by window creation
102 functions so should not be required by the application programmer.
104 \wxheading{Parameters
}
106 \docparam{child
}{Child window to add.
}
108 \membersection{wxWindow::CaptureMouse
}\label{wxwindowcapturemouse
}
110 \func{virtual void
}{CaptureMouse
}{\void}
112 Directs all mouse input to this window. Call
\helpref{wxWindow::ReleaseMouse
}{wxwindowreleasemouse
} to
117 \helpref{wxWindow::ReleaseMouse
}{wxwindowreleasemouse
}
119 \membersection{wxWindow::Center
}\label{wxwindowcenter
}
121 \func{void
}{Center
}{\param{int
}{ direction
}}
123 A synonym for
\helpref{Centre
}{wxwindowcentre
}.
125 \membersection{wxWindow::CenterOnParent
}\label{wxwindowcenteronparent
}
127 \func{void
}{CenterOnParent
}{\param{int
}{ direction
}}
129 A synonym for
\helpref{CentreOnParent
}{wxwindowcentreonparent
}.
131 \membersection{wxWindow::Centre
}\label{wxwindowcentre
}
133 \func{void
}{Centre
}{\param{int
}{ direction = wxHORIZONTAL
}}
137 \wxheading{Parameters
}
139 \docparam{direction
}{Specifies the direction for the centering. May be
{\tt wxHORIZONTAL
},
{\tt wxVERTICAL
}\rtfsp
140 or
{\tt wxBOTH
}. It may also include
{\tt wxCENTER
\_FRAME} flag if you want to center the window
141 on its parent and not on the screen (actually, this flag is added automatically for all controls
142 because it makes no sense to center them on the screen)
}
146 The actual behaviour depends on the derived window. For a frame or dialog box,
147 centring is relative to the whole display. For a panel item, centring is
148 relative to the panel.
152 \helpref{wxWindow::Center
}{wxwindowcenter
}
154 \membersection{wxWindow::CentreOnParent
}\label{wxwindowcentreonparent
}
156 \func{void
}{CentreOnParent
}{\param{int
}{ direction = wxHORIZONTAL
}}
160 \wxheading{Parameters
}
162 \docparam{direction
}{Specifies the direction for the centering. May be
{\tt wxHORIZONTAL
},
{\tt wxVERTICAL
}\rtfsp
167 This methods provides for a way to center top level windows over their
168 parents instead of the entire screen. If there is no parent or if the
169 window is not a top level window, then behaviour is the same as
170 \helpref{wxWindow::Centre
}{wxwindowcentre
}.
174 \helpref{wxWindow::CenterOnParent
}{wxwindowcenteronparent
}
176 \membersection{wxWindow::Clear
}\label{wxwindowclear
}
178 \func{void
}{Clear
}{\void}
180 Clears the window by filling it with the current background colour. Does not
181 cause an erase background event to be generated.
183 \membersection{wxWindow::ClientToScreen
}
185 \constfunc{virtual void
}{ClientToScreen
}{\param{int*
}{x
},
\param{int*
}{y
}}
187 \constfunc{virtual wxPoint
}{ClientToScreen
}{\param{const wxPoint\&
}{ pt
}}
189 Converts to screen coordinates from coordinates relative to this window.
191 \docparam{x
}{A pointer to a integer value for the x coordinate. Pass the client coordinate in, and
192 a screen coordinate will be passed out.
}
194 \docparam{y
}{A pointer to a integer value for the y coordinate. Pass the client coordinate in, and
195 a screen coordinate will be passed out.
}
197 \docparam{pt
}{The client position for the second form of the function.
}
199 \pythonnote{In place of a single overloaded method name, wxPython
200 implements the following methods:
\par
201 \indented{2cm
}{\begin{twocollist
}
202 \twocolitem{\bf{ClientToScreen(point)
}}{Accepts and returns a wxPoint
}
203 \twocolitem{\bf{ClientToScreenXY(x, y)
}}{Returns a
2-tuple, (x, y)
}
208 \membersection{wxWindow::Close
}\label{wxwindowclose
}
210 \func{virtual bool
}{Close
}{\param{const bool
}{ force = FALSE
}}
212 The purpose of this call is to provide a safer way of destroying a window than using
213 the
{\it delete
} operator.
215 \wxheading{Parameters
}
217 \docparam{force
}{FALSE if the window's close handler should be able to veto the destruction
218 of this window, TRUE if it cannot.
}
222 Close calls the
\helpref{close handler
}{wxcloseevent
} for the window, providing an opportunity for the window to
223 choose whether to destroy the window.
225 The close handler should check whether the window is being deleted forcibly,
226 using
\helpref{wxCloseEvent::GetForce
}{wxcloseeventgetforce
}, in which case it should
227 destroy the window using
\helpref{wxWindow::Destroy
}{wxwindowdestroy
}.
229 Applies to managed windows (wxFrame and wxDialog classes) only.
231 {\it Note
} that calling Close does not guarantee that the window will be destroyed; but it
232 provides a way to simulate a manual close of a window, which may or may not be implemented by
233 destroying the window. The default implementation of wxDialog::OnCloseWindow does not
234 necessarily delete the dialog, since it will simply simulate an wxID
\_CANCEL event which
235 itself only hides the dialog.
237 To guarantee that the window will be destroyed, call
\helpref{wxWindow::Destroy
}{wxwindowdestroy
} instead.
241 \helpref{Window deletion overview
}{windowdeletionoverview
},
\rtfsp
242 \helpref{wxWindow::OnCloseWindow
}{wxwindowonclosewindow
},
\rtfsp
243 \helpref{wxWindow::Destroy
}{wxwindowdestroy
},
\rtfsp
244 \helpref{wxCloseEvent
}{wxcloseevent
}
246 \membersection{wxWindow::ConvertDialogToPixels
}\label{wxwindowconvertdialogtopixels
}
248 \func{wxPoint
}{ConvertDialogToPixels
}{\param{const wxPoint\&
}{ pt
}}
250 \func{wxSize
}{ConvertDialogToPixels
}{\param{const wxSize\&
}{ sz
}}
252 Converts a point or size from dialog units to pixels.
254 For the x dimension, the dialog units are multiplied by the average character width
255 and then divided by
4.
257 For the y dimension, the dialog units are multiplied by the average character height
258 and then divided by
8.
262 Dialog units are used for maintaining a dialog's proportions even if the font changes.
263 Dialogs created using Dialog Editor optionally use dialog units.
265 You can also use these functions programmatically. A convenience macro is defined:
269 #define wxDLG_UNIT(parent, pt) parent->ConvertDialogToPixels(pt)
275 \helpref{wxWindow::ConvertPixelsToDialog
}{wxwindowconvertpixelstodialog
}
277 \pythonnote{In place of a single overloaded method name, wxPython
278 implements the following methods:
\par
279 \indented{2cm
}{\begin{twocollist
}
280 \twocolitem{\bf{ConvertDialogPointToPixels(point)
}}{Accepts and returns a wxPoint
}
281 \twocolitem{\bf{ConvertDialogSizeToPixels(size)
}}{Accepts and returns a wxSize
}
284 Additionally, the following helper functions are defined:
\par
285 \indented{2cm
}{\begin{twocollist
}
286 \twocolitem{\bf{wxDLG
\_PNT(win, point)
}}{Converts a wxPoint from dialog
288 \twocolitem{\bf{wxDLG
\_SZE(win, size)
}}{Converts a wxSize from dialog
294 \membersection{wxWindow::ConvertPixelsToDialog
}\label{wxwindowconvertpixelstodialog
}
296 \func{wxPoint
}{ConvertPixelsToDialog
}{\param{const wxPoint\&
}{ pt
}}
298 \func{wxSize
}{ConvertPixelsToDialog
}{\param{const wxSize\&
}{ sz
}}
300 Converts a point or size from pixels to dialog units.
302 For the x dimension, the pixels are multiplied by
4 and then divided by the average
305 For the y dimension, the pixels are multipled by
8 and then divided by the average
310 Dialog units are used for maintaining a dialog's proportions even if the font changes.
311 Dialogs created using Dialog Editor optionally use dialog units.
315 \helpref{wxWindow::ConvertDialogToPixels
}{wxwindowconvertdialogtopixels
}
318 \pythonnote{In place of a single overloaded method name, wxPython
319 implements the following methods:
\par
320 \indented{2cm
}{\begin{twocollist
}
321 \twocolitem{\bf{ConvertDialogPointToPixels(point)
}}{Accepts and returns a wxPoint
}
322 \twocolitem{\bf{ConvertDialogSizeToPixels(size)
}}{Accepts and returns a wxSize
}
326 \membersection{wxWindow::Destroy
}\label{wxwindowdestroy
}
328 \func{virtual bool
}{Destroy
}{\void}
330 Destroys the window safely. Use this function instead of the delete operator, since
331 different window classes can be destroyed differently. Frames and dialogs
332 are not destroyed immediately when this function is called - they are added
333 to a list of windows to be deleted on idle time, when all the window's events
334 have been processed. This prevents problems with events being sent to non-existant
337 \wxheading{Return value
}
339 TRUE if the window has either been successfully deleted, or it has been added
340 to the list of windows pending real deletion.
342 \membersection{wxWindow::DestroyChildren
}
344 \func{virtual void
}{DestroyChildren
}{\void}
346 Destroys all children of a window. Called automatically by the destructor.
348 \membersection{wxWindow::DragAcceptFiles
}\label{wxwindowdragacceptfiles
}
350 \func{virtual void
}{DragAcceptFiles
}{\param{const bool
}{ accept
}}
352 Enables or disables elibility for drop file events (OnDropFiles).
354 \wxheading{Parameters
}
356 \docparam{accept
}{If TRUE, the window is eligible for drop file events. If FALSE, the window
357 will not accept drop file events.
}
365 \helpref{wxWindow::OnDropFiles
}{wxwindowondropfiles
}
367 \membersection{wxWindow::Enable
}\label{wxwindowenable
}
369 \func{virtual void
}{Enable
}{\param{const bool
}{ enable
}}
371 Enable or disable the window for user input.
373 \wxheading{Parameters
}
375 \docparam{enable
}{If TRUE, enables the window for input. If FALSE, disables the window.
}
379 \helpref{wxWindow::IsEnabled
}{wxwindowisenabled
}
381 \membersection{wxWindow::FindFocus
}\label{wxwindowfindfocus
}
383 \func{static wxWindow*
}{FindFocus
}{\void}
385 Finds the window or control which currently has the keyboard focus.
389 Note that this is a static function, so it can be called without needing a wxWindow pointer.
393 \helpref{wxWindow::SetFocus
}{wxwindowsetfocus
}
395 \membersection{wxWindow::FindWindow
}\label{wxwindowfindwindow
}
397 \func{wxWindow*
}{FindWindow
}{\param{long
}{ id
}}
399 Find a child of this window, by identifier.
401 \func{wxWindow*
}{FindWindow
}{\param{const wxString\&
}{ name
}}
403 Find a child of this window, by name.
405 \pythonnote{In place of a single overloaded method name, wxPython
406 implements the following methods:
\par
407 \indented{2cm
}{\begin{twocollist
}
408 \twocolitem{\bf{FindWindowById(id)
}}{Accepts an integer
}
409 \twocolitem{\bf{FindWindowByName(name)
}}{Accepts a string
}
413 \membersection{wxWindow::Fit
}\label{wxwindowfit
}
415 \func{virtual void
}{Fit
}{\void}
417 Sizes the window so that it fits around its subwindows.
419 \membersection{wxWindow::GetBackgroundColour
}\label{wxwindowgetbackgroundcolour
}
421 \constfunc{virtual wxColour
}{GetBackgroundColour
}{\void}
423 Returns the background colour of the window.
427 \helpref{wxWindow::SetBackgroundColour
}{wxwindowsetbackgroundcolour
},
\rtfsp
428 \helpref{wxWindow::SetForegroundColour
}{wxwindowsetforegroundcolour
},
\rtfsp
429 \helpref{wxWindow::GetForegroundColour
}{wxwindowgetforegroundcolour
},
\rtfsp
430 \helpref{wxWindow::OnEraseBackground
}{wxwindowonerasebackground
}
432 \membersection{wxWindow::GetCharHeight
}
434 \constfunc{virtual int
}{GetCharHeight
}{\void}
436 Returns the character height for this window.
438 \membersection{wxWindow::GetCharWidth
}
440 \constfunc{virtual int
}{GetCharWidth
}{\void}
442 Returns the average character width for this window.
444 \membersection{wxWindow::GetChildren
}
446 \func{wxList\&
}{GetChildren
}{\void}
448 Returns a reference to the list of the window's children.
450 \membersection{wxWindow::GetClientSize
}\label{wxwindowgetclientsize
}
452 \constfunc{virtual void
}{GetClientSize
}{\param{int*
}{width
},
\param{int*
}{height
}}
454 \constfunc{virtual wxSize
}{GetClientSize
}{\void}
456 This gets the size of the window `client area' in pixels. The client area is the
457 area which may be drawn on by the programmer, excluding title bar, border etc.
459 \wxheading{Parameters
}
461 \docparam{width
}{Receives the client width in pixels.
}
463 \docparam{height
}{Receives the client height in pixels.
}
465 \pythonnote{In place of a single overloaded method name, wxPython
466 implements the following methods:
\par
467 \indented{2cm
}{\begin{twocollist
}
468 \twocolitem{\bf{wxGetClientSizeTuple()
}}{Returns a
2-tuple of (width, height)
}
469 \twocolitem{\bf{wxGetClientSize()
}}{Returns a wxSize object
}
473 \membersection{wxWindow::GetConstraints
}\label{wxwindowgetconstraints
}
475 \constfunc{wxLayoutConstraints*
}{GetConstraints
}{\void}
477 Returns a pointer to the window's layout constraints, or NULL if there are none.
479 \membersection{wxWindow::GetDefaultItem
}\label{wxwindowgetdefaultitem
}
481 \constfunc{wxButton*
}{GetDefaultItem
}{\void}
483 Returns a pointer to the button which is the default for this window, or NULL.
485 \membersection{wxWindow::GetDropTarget
}\label{wxwindowgetdroptarget
}
487 \constfunc{wxDropTarget*
}{GetDropTarget
}{\void}
489 Returns the associated drop target, which may be NULL.
493 \helpref{wxWindow::SetDropTarget
}{wxwindowsetdroptarget
},
494 \helpref{Drag and drop overview
}{wxdndoverview
}
496 \membersection{wxWindow::GetEventHandler
}\label{wxwindowgeteventhandler
}
498 \constfunc{wxEvtHandler*
}{GetEventHandler
}{\void}
500 Returns the event handler for this window. By default, the window is its
505 \helpref{wxWindow::SetEventHandler
}{wxwindowseteventhandler
},
\rtfsp
506 \helpref{wxWindow::PushEventHandler
}{wxwindowpusheventhandler
},
\rtfsp
507 \helpref{wxWindow::PopEventHandler
}{wxwindowpusheventhandler
},
\rtfsp
508 \helpref{wxEvtHandler::ProcessEvent
}{wxevthandlerprocessevent
},
\rtfsp
509 \helpref{wxEvtHandler
}{wxevthandler
}\rtfsp
511 \membersection{wxWindow::GetFont
}\label{wxwindowgetfont
}
513 \constfunc{wxFont\&
}{GetFont
}{\void}
515 Returns a reference to the font for this window.
519 \helpref{wxWindow::SetFont
}{wxwindowsetfont
}
521 \membersection{wxWindow::GetForegroundColour
}\label{wxwindowgetforegroundcolour
}
523 \func{virtual wxColour
}{GetForegroundColour
}{\void}
525 Returns the foreground colour of the window.
529 The interpretation of foreground colour is open to interpretation according
530 to the window class; it may be the text colour or other colour, or it may not
535 \helpref{wxWindow::SetForegroundColour
}{wxwindowsetforegroundcolour
},
\rtfsp
536 \helpref{wxWindow::SetBackgroundColour
}{wxwindowsetbackgroundcolour
},
\rtfsp
537 \helpref{wxWindow::GetBackgroundColour
}{wxwindowgetbackgroundcolour
}
539 \membersection{wxWindow::GetGrandParent
}
541 \constfunc{wxWindow*
}{GetGrandParent
}{\void}
543 Returns the grandparent of a window, or NULL if there isn't one.
545 \membersection{wxWindow::GetHandle
}
547 \constfunc{void*
}{GetHandle
}{\void}
549 Returns the platform-specific handle of the physical window. Cast it to an appropriate
550 handle, such as
{\bf HWND
} for Windows,
{\bf Widget
} for Motif or
{\bf GtkWidget
} for GTK.
552 \membersection{wxWindow::GetId
}\label{wxwindowgetid
}
554 \constfunc{int
}{GetId
}{\void}
556 Returns the identifier of the window.
560 Each window has an integer identifier. If the application has not provided one
561 (or the default Id -
1) an unique identifier with a negative value will be generated.
565 \helpref{wxWindow::SetId
}{wxwindowsetid
}\rtfsp
566 \helpref{Window identifiers
}{windowids
}
568 \membersection{wxWindow::GetPosition
}
570 \constfunc{virtual void
}{GetPosition
}{\param{int*
}{x
},
\param{int*
}{y
}}
572 This gets the position of the window in pixels, relative to the parent window or
573 if no parent, relative to the whole display.
575 \wxheading{Parameters
}
577 \docparam{x
}{Receives the x position of the window.
}
579 \docparam{y
}{Receives the y position of the window.
}
581 \pythonnote{In place of a single overloaded method name, wxPython
582 implements the following methods:
\par
583 \indented{2cm
}{\begin{twocollist
}
584 \twocolitem{\bf{GetPosition()
}}{Returns a wxPoint
}
585 \twocolitem{\bf{GetPositionTuple()
}}{Returns a tuple (x, y)
}
589 \membersection{wxWindow::GetLabel
}
591 \constfunc{virtual wxString
}{GetLabel
}{\void}
593 Generic way of getting a label from any window, for
594 identification purposes.
598 The interpretation of this function differs from class to class.
599 For frames and dialogs, the value returned is the title. For buttons or static text controls, it is
600 the button text. This function can be useful for meta-programs (such as testing
601 tools or special-needs access programs) which need to identify windows
604 \membersection{wxWindow::GetName
}\label{wxwindowgetname
}
606 \constfunc{virtual wxString
}{GetName
}{\void}
608 Returns the window's name.
612 This name is not guaranteed to be unique; it is up to the programmer to supply an appropriate
613 name in the window constructor or via
\helpref{wxWindow::SetName
}{wxwindowsetname
}.
617 \helpref{wxWindow::SetName
}{wxwindowsetname
}
619 \membersection{wxWindow::GetParent
}
621 \constfunc{virtual wxWindow*
}{GetParent
}{\void}
623 Returns the parent of the window, or NULL if there is no parent.
625 \membersection{wxWindow::GetRect
}\label{wxwindowgetrect
}
627 \constfunc{virtual wxRect
}{GetRect
}{\void}
629 Returns the size and position of the window as a
\helpref{wxRect
}{wxrect
} object.
631 \membersection{wxWindow::GetScrollThumb
}\label{wxwindowgetscrollthumb
}
633 \func{virtual int
}{GetScrollThumb
}{\param{int
}{orientation
}}
635 Returns the built-in scrollbar thumb size.
639 \helpref{wxWindow::SetScrollbar
}{wxwindowsetscrollbar
}
641 \membersection{wxWindow::GetScrollPos
}\label{wxwindowgetscrollpos
}
643 \func{virtual int
}{GetScrollPos
}{\param{int
}{orientation
}}
645 Returns the built-in scrollbar position.
649 See
\helpref{wxWindow::SetScrollbar
}{wxwindowsetscrollbar
}
651 \membersection{wxWindow::GetScrollRange
}\label{wxwindowgetscrollrange
}
653 \func{virtual int
}{GetScrollRange
}{\param{int
}{orientation
}}
655 Returns the built-in scrollbar range.
659 \helpref{wxWindow::SetScrollbar
}{wxwindowsetscrollbar
}
661 \membersection{wxWindow::GetSize
}\label{wxwindowgetsize
}
663 \constfunc{virtual void
}{GetSize
}{\param{int*
}{width
},
\param{int*
}{height
}}
665 \constfunc{virtual wxSize
}{GetSize
}{\void}
667 This gets the size of the entire window in pixels.
669 \wxheading{Parameters
}
671 \docparam{width
}{Receives the window width.
}
673 \docparam{height
}{Receives the window height.
}
675 \pythonnote{In place of a single overloaded method name, wxPython
676 implements the following methods:
\par
677 \indented{2cm
}{\begin{twocollist
}
678 \twocolitem{\bf{GetSize()
}}{Returns a wxSize
}
679 \twocolitem{\bf{GetSizeTuple()
}}{Returns a
2-tuple (width, height)
}
683 \membersection{wxWindow::GetTextExtent
}
685 \constfunc{virtual void
}{GetTextExtent
}{\param{const wxString\&
}{string
},
\param{int*
}{x
},
\param{int*
}{y
},
686 \param{int*
}{descent = NULL
},
\param{int*
}{externalLeading = NULL
},
687 \param{const wxFont*
}{font = NULL
},
\param{const bool
}{ use16 = FALSE
}}
689 Gets the dimensions of the string as it would be drawn on the
690 window with the currently selected font.
692 \wxheading{Parameters
}
694 \docparam{string
}{String whose extent is to be measured.
}
696 \docparam{x
}{Return value for width.
}
698 \docparam{y
}{Return value for height.
}
700 \docparam{descent
}{Return value for descent (optional).
}
702 \docparam{externalLeading
}{Return value for external leading (optional).
}
704 \docparam{font
}{Font to use instead of the current window font (optional).
}
706 \docparam{use16
}{If TRUE,
{\it string
} contains
16-bit characters. The default is FALSE.
}
709 \pythonnote{In place of a single overloaded method name, wxPython
710 implements the following methods:
\par
711 \indented{2cm
}{\begin{twocollist
}
712 \twocolitem{\bf{GetTextExtent(string)
}}{Returns a
2-tuple, (width, height)
}
713 \twocolitem{\bf{GetFullTextExtent(string, font=NULL)
}}{Returns a
714 4-tuple, (width, height, descent, externalLeading)
}
719 \membersection{wxWindow::GetTitle
}\label{wxwindowgettitle
}
721 \func{virtual wxString
}{GetTitle
}{\void}
723 Gets the window's title. Applicable only to frames and dialogs.
727 \helpref{wxWindow::SetTitle
}{wxwindowsettitle
}
729 \membersection{wxWindow::GetUpdateRegion
}\label{wxwindowgetupdateregion
}
731 \constfunc{virtual wxRegion
}{GetUpdateRegion
}{\void}
733 Returns the region specifying which parts of the window have been damaged. Should
734 only be called within an
\helpref{OnPaint
}{wxwindowonpaint
} event handler.
738 \helpref{wxRegion
}{wxregion
},
\helpref{wxRegionIterator
}{wxregioniterator
},
\helpref{wxWindow::OnPaint
}{wxwindowonpaint
}
740 \membersection{wxWindow::GetValidator
}\label{wxwindowgetvalidator
}
742 \constfunc{wxValidator*
}{GetValidator
}{\void}
744 Returns a pointer to the current validator for the window, or NULL if there is none.
746 \membersection{wxWindow::GetWindowStyleFlag
}
748 \constfunc{long
}{GetWindowStyleFlag
}{\void}
750 Gets the window style that was passed to the consructor or
{\bf Create
} member.
751 {\bf GetWindowStyle
} is synonymous.
753 \membersection{wxWindow::InitDialog
}\label{wxwindowinitdialog
}
755 \func{void
}{InitDialog
}{\void}
757 Sends an
\helpref{wxWindow::OnInitDialog
}{wxwindowoninitdialog
} event, which
758 in turn transfers data to the dialog via validators.
762 \helpref{wxWindow::OnInitDialog
}{wxwindowoninitdialog
}
764 \membersection{wxWindow::IsEnabled
}\label{wxwindowisenabled
}
766 \constfunc{virtual bool
}{IsEnabled
}{\void}
768 Returns TRUE if the window is enabled for input, FALSE otherwise.
772 \helpref{wxWindow::Enable
}{wxwindowenable
}
774 \membersection{wxWindow::IsRetained
}\label{wxwindowisretained
}
776 \constfunc{virtual bool
}{IsRetained
}{\void}
778 Returns TRUE if the window is retained, FALSE otherwise.
782 Retained windows are only available on X platforms.
784 \membersection{wxWindow::IsShown
}\label{wxwindowisshown
}
786 \constfunc{virtual bool
}{IsShown
}{\void}
788 Returns TRUE if the window is shown, FALSE if it has been hidden.
790 \membersection{wxWindow::IsTopLevel
}\label{wxwindowistoplevel
}
792 \constfunc{bool
}{IsTopLevel
}{\void}
794 Returns TRUE if the given window is a top-level one. Currently all frames and
795 dialogs are considered to be top-level windows (even if they have a parent
798 \membersection{wxWindow::Layout
}\label{wxwindowlayout
}
800 \func{void
}{Layout
}{\void}
802 Invokes the constraint-based layout algorithm for this window.
804 See
\helpref{wxWindow::SetAutoLayout
}{wxwindowsetautolayout
} on when
805 this function gets called automatically using auto layout.
807 \membersection{wxWindow::LoadFromResource
}\label{wxwindowloadfromresource
}
809 \func{virtual bool
}{LoadFromResource
}{\param{wxWindow*
}{parent
},
\rtfsp
810 \param{const wxString\&
}{resourceName
},
\param{const wxResourceTable*
}{resourceTable = NULL
}}
812 Loads a panel or dialog from a resource file.
814 \wxheading{Parameters
}
816 \docparam{parent
}{Parent window.
}
818 \docparam{resourceName
}{The name of the resource to load.
}
820 \docparam{resourceTable
}{The resource table to load it from. If this is NULL, the
821 default resource table will be used.
}
823 \wxheading{Return value
}
825 TRUE if the operation succeeded, otherwise FALSE.
827 \membersection{wxWindow::Lower
}\label{wxwindowlower
}
829 \func{void
}{Lower
}{\void}
831 Lowers the window to the bottom of the window hierarchy if it is a managed window (dialog
834 \membersection{wxWindow::MakeModal
}\label{wxwindowmakemodal
}
836 \func{virtual void
}{MakeModal
}{\param{const bool
}{flag
}}
838 Disables all other windows in the application so that
839 the user can only interact with this window. (This function
840 is not implemented anywhere).
842 \wxheading{Parameters
}
844 \docparam{flag
}{If TRUE, this call disables all other windows in the application so that
845 the user can only interact with this window. If FALSE, the effect is reversed.
}
847 \membersection{wxWindow::Move
}\label{wxwindowmove
}
849 \func{void
}{Move
}{\param{int
}{ x
},
\param{int
}{ y
}}
851 \func{void
}{Move
}{\param{const wxPoint\&
}{ pt
}}
853 Moves the window to the given position.
855 \wxheading{Parameters
}
857 \docparam{x
}{Required x position.
}
859 \docparam{y
}{Required y position.
}
861 \docparam{pt
}{\helpref{wxPoint
}{wxpoint
} object representing the position.
}
865 Implementations of SetSize can also implicitly implement the
866 wxWindow::Move function, which is defined in the base wxWindow class
870 SetSize(x, y, -
1, -
1, wxSIZE_USE_EXISTING);
875 \helpref{wxWindow::SetSize
}{wxwindowsetsize
}
877 \pythonnote{In place of a single overloaded method name, wxPython
878 implements the following methods:
\par
879 \indented{2cm
}{\begin{twocollist
}
880 \twocolitem{\bf{Move(point)
}}{Accepts a wxPoint
}
881 \twocolitem{\bf{MoveXY(x, y)
}}{Accepts a pair of integers
}
885 \membersection{wxWindow::OnActivate
}\label{wxwindowonactivate
}
887 \func{void
}{OnActivate
}{\param{wxActivateEvent\&
}{ event
}}
889 Called when a window is activated or deactivated.
891 \wxheading{Parameters
}
893 \docparam{event
}{Object containing activation information.
}
897 If the window is being activated,
\helpref{wxActivateEvent::GetActive
}{wxactivateeventgetactive
} returns TRUE,
898 otherwise it returns FALSE (it is being deactivated).
902 \helpref{wxActivateEvent
}{wxactivateevent
},
\rtfsp
903 \helpref{Event handling overview
}{eventhandlingoverview
}
905 \membersection{wxWindow::OnChar
}\label{wxwindowonchar
}
907 \func{void
}{OnChar
}{\param{wxKeyEvent\&
}{ event
}}
909 Called when the user has pressed a key that is not a modifier (SHIFT, CONTROL or ALT).
911 \wxheading{Parameters
}
913 \docparam{event
}{Object containing keypress information. See
\helpref{wxKeyEvent
}{wxkeyevent
} for
914 details about this class.
}
918 This member function is called in response to a keypress. To intercept this event,
919 use the EVT
\_CHAR macro in an event table definition. Your
{\bf OnChar
} handler may call this
920 default function to achieve default keypress functionality.
922 Note that the ASCII values do not have explicit key codes: they are passed as ASCII
925 Note that not all keypresses can be intercepted this way. If you wish to intercept modifier
926 keypresses, then you will need to use
\helpref{wxWindow::OnKeyDown
}{wxwindowonkeydown
} or
927 \helpref{wxWindow::OnKeyUp
}{wxwindowonkeyup
}.
929 Most, but not all, windows allow keypresses to be intercepted.
933 \helpref{wxWindow::OnKeyDown
}{wxwindowonkeydown
},
\helpref{wxWindow::OnKeyUp
}{wxwindowonkeyup
},
\rtfsp
934 \helpref{wxKeyEvent
}{wxkeyevent
},
\helpref{wxWindow::OnCharHook
}{wxwindowoncharhook
},
\rtfsp
935 \helpref{Event handling overview
}{eventhandlingoverview
}
937 \membersection{wxWindow::OnCharHook
}\label{wxwindowoncharhook
}
939 \func{void
}{OnCharHook
}{\param{wxKeyEvent\&
}{ event
}}
941 This member is called to allow the window to intercept keyboard events
942 before they are processed by child windows.
944 \wxheading{Parameters
}
946 \docparam{event
}{Object containing keypress information. See
\helpref{wxKeyEvent
}{wxkeyevent
} for
947 details about this class.
}
951 This member function is called in response to a keypress, if the window is active. To intercept this event,
952 use the EVT
\_CHAR\_HOOK macro in an event table definition. If you do not process a particular
953 keypress, call
\helpref{wxEvent::Skip
}{wxeventskip
} to allow default processing.
955 An example of using this function is in the implementation of escape-character processing for wxDialog,
956 where pressing ESC dismisses the dialog by
{\bf OnCharHook
} 'forging' a cancel button press event.
958 Note that the ASCII values do not have explicit key codes: they are passed as ASCII
961 This function is only relevant to top-level windows (frames and dialogs), and under
962 Windows only. Under GTK the normal EVT
\_CHAR\_ event has the functionality, i.e.
963 you can intercepts it and if you don't call
\helpref{wxEvent::Skip
}{wxeventskip
}
964 the window won't get the event.
968 \helpref{wxKeyEvent
}{wxkeyevent
},
\helpref{wxWindow::OnCharHook
}{wxwindowoncharhook
},
\rtfsp
969 \helpref{wxApp::OnCharHook
}{wxapponcharhook
},
\rtfsp
970 \helpref{Event handling overview
}{eventhandlingoverview
}
972 \membersection{wxWindow::OnCommand
}\label{wxwindowoncommand
}
974 \func{virtual void
}{OnCommand
}{\param{wxEvtHandler\&
}{object
},
\param{wxCommandEvent\&
}{event
}}
976 This virtual member function is called if the control does not handle the command event.
978 \wxheading{Parameters
}
980 \docparam{object
}{Object receiving the command event.
}
982 \docparam{event
}{Command event
}
986 This virtual function is provided mainly for backward compatibility. You can also intercept commands
987 from child controls by using an event table, with identifiers or identifier ranges to identify
988 the control(s) in question.
992 \helpref{wxCommandEvent
}{wxcommandevent
},
\rtfsp
993 \helpref{Event handling overview
}{eventhandlingoverview
}
995 \membersection{wxWindow::OnClose
}\label{wxwindowonclose
}
997 \func{virtual bool
}{OnClose
}{\void}
999 Called when the user has tried to close a a frame
1000 or dialog box using the window manager (X) or system menu (Windows).
1002 {\bf Note:
} This is an obsolete function.
1003 It is superceded by the
\helpref{wxWindow::OnCloseWindow
}{wxwindowonclosewindow
} event
1006 \wxheading{Return value
}
1008 If TRUE is returned by OnClose, the window will be deleted by the system, otherwise the
1009 attempt will be ignored. Do not delete the window from within this handler, although
1010 you may delete other windows.
1012 \wxheading{See also
}
1014 \helpref{Window deletion overview
}{windowdeletionoverview
},
\rtfsp
1015 \helpref{wxWindow::Close
}{wxwindowclose
},
\rtfsp
1016 \helpref{wxWindow::OnCloseWindow
}{wxwindowonclosewindow
},
\rtfsp
1017 \helpref{wxCloseEvent
}{wxcloseevent
}
1019 \membersection{wxWindow::OnCloseWindow
}\label{wxwindowonclosewindow
}
1021 \func{void
}{OnCloseWindow
}{\param{wxCloseEvent\&
}{event
}}
1023 This is an event handler function called when the user has tried to close a a frame
1024 or dialog box using the window manager (X) or system menu (Windows). It is
1025 called via the
\helpref{wxWindow::Close
}{wxwindowclose
} function, so
1026 that the application can also invoke the handler programmatically.
1028 Use the EVT
\_CLOSE event table macro to handle close events.
1030 You should check whether the application is forcing the deletion of the window
1031 using
\helpref{wxCloseEvent::GetForce
}{wxcloseeventgetforce
}. If this is TRUE,
1032 destroy the window using
\helpref{wxWindow::Destroy
}{wxwindowdestroy
}.
1033 If not, it is up to you whether you respond by destroying the window.
1035 (Note: GetForce is now superceded by CanVeto. So to test whether forced destruction of
1036 the window is required, test for the negative of CanVeto. If CanVeto returns FALSE,
1037 it is not possible to skip window deletion.)
1039 If you don't destroy the window, you should call
\helpref{wxCloseEvent::Veto
}{wxcloseeventveto
} to
1040 let the calling code know that you did not destroy the window. This allows the
\helpref{wxWindow::Close
}{wxwindowclose
} function
1041 to return TRUE or FALSE depending on whether the close instruction was honoured or not.
1045 The
\helpref{wxWindow::OnClose
}{wxwindowonclose
} virtual function remains
1046 for backward compatibility with earlier versions of wxWindows. The
1047 default
{\bf OnCloseWindow
} handler for wxFrame and wxDialog will call
{\bf OnClose
},
1048 destroying the window if it returns TRUE or if the close is being forced.
1050 \wxheading{See also
}
1052 \helpref{Window deletion overview
}{windowdeletionoverview
},
\rtfsp
1053 \helpref{wxWindow::Close
}{wxwindowclose
},
\rtfsp
1054 \helpref{wxWindow::OnClose
}{wxwindowonclose
},
\rtfsp
1055 \helpref{wxWindow::Destroy
}{wxwindowdestroy
},
\rtfsp
1056 \helpref{wxCloseEvent
}{wxcloseevent
},
\rtfsp
1057 \helpref{wxApp::OnQueryEndSession
}{wxapponqueryendsession
},
\rtfsp
1058 \helpref{wxApp::OnEndSession
}{wxapponendsession
}
1060 \membersection{wxWindow::OnDropFiles
}\label{wxwindowondropfiles
}
1062 \func{void
}{OnDropFiles
}{\param{wxDropFilesEvent\&
}{ event
}}
1064 Called when files have been dragged from the file manager to the window.
1066 \wxheading{Parameters
}
1068 \docparam{event
}{Drop files event. For more information, see
\helpref{wxDropFilesEvent
}{wxdropfilesevent
}.
}
1072 The window must have previously been enabled for dropping by calling
1073 \rtfsp\helpref{wxWindow::DragAcceptFiles
}{wxwindowdragacceptfiles
}.
1075 This event is only generated under Windows.
1077 To intercept this event, use the EVT
\_DROP\_FILES macro in an event table definition.
1079 \wxheading{See also
}
1081 \helpref{wxDropFilesEvent
}{wxdropfilesevent
},
\helpref{wxWindow::DragAcceptFiles
}{wxwindowdragacceptfiles
},
\rtfsp
1082 \helpref{Event handling overview
}{eventhandlingoverview
}
1084 \membersection{wxWindow::OnEraseBackground
}\label{wxwindowonerasebackground
}
1086 \func{void
}{OnEraseBackground
}{\param{wxEraseEvent\&
}{ event
}}
1088 Called when the background of the window needs to be erased.
1090 \wxheading{Parameters
}
1092 \docparam{event
}{Erase background event. For more information, see
\helpref{wxEraseEvent
}{wxeraseevent
}.
}
1096 This event is only generated under Windows. It is therefore recommended that
1097 you set the text background colour explicitly in order to prevent flicker.
1098 The default background colour under GTK is grey.
1100 To intercept this event, use the EVT
\_ERASE\_BACKGROUND macro in an event table definition.
1102 \wxheading{See also
}
1104 \helpref{wxEraseEvent
}{wxeraseevent
},
\helpref{Event handling overview
}{eventhandlingoverview
}
1106 \membersection{wxWindow::OnKeyDown
}\label{wxwindowonkeydown
}
1108 \func{void
}{OnKeyDown
}{\param{wxKeyEvent\&
}{ event
}}
1110 Called when the user has pressed a key, before it is translated into an ASCII value using other
1111 modifier keys that might be pressed at the same time.
1113 \wxheading{Parameters
}
1115 \docparam{event
}{Object containing keypress information. See
\helpref{wxKeyEvent
}{wxkeyevent
} for
1116 details about this class.
}
1120 This member function is called in response to a key down event. To intercept this event,
1121 use the EVT
\_KEY\_DOWN macro in an event table definition. Your
{\bf OnKeyDown
} handler may call this
1122 default function to achieve default keypress functionality.
1124 Note that not all keypresses can be intercepted this way. If you wish to intercept special
1125 keys, such as shift, control, and function keys, then you will need to use
\helpref{wxWindow::OnKeyDown
}{wxwindowonkeydown
} or
1126 \helpref{wxWindow::OnKeyUp
}{wxwindowonkeyup
}.
1128 Most, but not all, windows allow keypresses to be intercepted.
1130 \wxheading{See also
}
1132 \helpref{wxWindow::OnChar
}{wxwindowonchar
},
\helpref{wxWindow::OnKeyUp
}{wxwindowonkeyup
},
\rtfsp
1133 \helpref{wxKeyEvent
}{wxkeyevent
},
\helpref{wxWindow::OnCharHook
}{wxwindowoncharhook
},
\rtfsp
1134 \helpref{Event handling overview
}{eventhandlingoverview
}
1136 \membersection{wxWindow::OnKeyUp
}\label{wxwindowonkeyup
}
1138 \func{void
}{OnKeyUp
}{\param{wxKeyEvent\&
}{ event
}}
1140 Called when the user has released a key.
1142 \wxheading{Parameters
}
1144 \docparam{event
}{Object containing keypress information. See
\helpref{wxKeyEvent
}{wxkeyevent
} for
1145 details about this class.
}
1149 This member function is called in response to a key up event. To intercept this event,
1150 use the EVT
\_KEY\_UP macro in an event table definition. Your
{\bf OnKeyUp
} handler may call this
1151 default function to achieve default keypress functionality.
1153 Note that not all keypresses can be intercepted this way. If you wish to intercept special
1154 keys, such as shift, control, and function keys, then you will need to use
\helpref{wxWindow::OnKeyDown
}{wxwindowonkeydown
} or
1155 \helpref{wxWindow::OnKeyUp
}{wxwindowonkeyup
}.
1157 Most, but not all, windows allow key up events to be intercepted.
1159 \wxheading{See also
}
1161 \helpref{wxWindow::OnChar
}{wxwindowonchar
},
\helpref{wxWindow::OnKeyDown
}{wxwindowonkeydown
},
\rtfsp
1162 \helpref{wxKeyEvent
}{wxkeyevent
},
\helpref{wxWindow::OnCharHook
}{wxwindowoncharhook
},
\rtfsp
1163 \helpref{Event handling overview
}{eventhandlingoverview
}
1165 \membersection{wxWindow::OnKillFocus
}\label{wxwindowonkillfocus
}
1167 \func{void
}{OnKillFocus
}{\param{wxFocusEvent\&
}{event
}}
1169 Called when a window's focus is being killed.
1171 \wxheading{Parameters
}
1173 \docparam{event
}{The focus event. For more information, see
\helpref{wxFocusEvent
}{wxfocusevent
}.
}
1177 To intercept this event, use the macro EVT
\_KILL\_FOCUS in an event table definition.
1179 Most, but not all, windows respond to this event.
1181 \wxheading{See also
}
1183 \helpref{wxFocusEvent
}{wxfocusevent
},
\helpref{wxWindow::OnSetFocus
}{wxwindowonsetfocus
},
\rtfsp
1184 \helpref{Event handling overview
}{eventhandlingoverview
}
1186 \membersection{wxWindow::OnIdle
}\label{wxwindowonidle
}
1188 \func{void
}{OnIdle
}{\param{wxIdleEvent\&
}{event
}}
1190 Provide this member function for any processing which needs to be done
1191 when the application is idle.
1193 \wxheading{See also
}
1195 \helpref{wxApp::OnIdle
}{wxapponidle
},
\helpref{wxIdleEvent
}{wxidleevent
}
1197 \membersection{wxWindow::OnInitDialog
}\label{wxwindowoninitdialog
}
1199 \func{void
}{OnInitDialog
}{\param{wxInitDialogEvent\&
}{ event
}}
1201 Default handler for the wxEVT
\_INIT\_DIALOG event. Calls
\helpref{wxWindow::TransferDataToWindow
}{wxwindowtransferdatatowindow
}.
1203 \wxheading{Parameters
}
1205 \docparam{event
}{Dialog initialisation event.
}
1209 Gives the window the default behaviour of transferring data to child controls via
1210 the validator that each control has.
1212 \wxheading{See also
}
1214 \helpref{wxValidator
}{wxvalidator
},
\helpref{wxWindow::TransferDataToWindow
}{wxwindowtransferdatatowindow
}
1216 \membersection{wxWindow::OnMenuCommand
}\label{wxwindowonmenucommand
}
1218 \func{void
}{OnMenuCommand
}{\param{wxCommandEvent\&
}{event
}}
1220 Called when a menu command is received from a menu bar.
1222 \wxheading{Parameters
}
1224 \docparam{event
}{The menu command event. For more information, see
\helpref{wxCommandEvent
}{wxcommandevent
}.
}
1228 A function with this name doesn't actually exist; you can choose any member function to receive
1229 menu command events, using the EVT
\_COMMAND macro for individual commands or EVT
\_COMMAND\_RANGE for
1230 a range of commands.
1232 \wxheading{See also
}
1234 \helpref{wxCommandEvent
}{wxcommandevent
},
\rtfsp
1235 \helpref{wxWindow::OnMenuHighlight
}{wxwindowonmenuhighlight
},
\rtfsp
1236 \helpref{Event handling overview
}{eventhandlingoverview
}
1238 \membersection{wxWindow::OnMenuHighlight
}\label{wxwindowonmenuhighlight
}
1240 \func{void
}{OnMenuHighlight
}{\param{wxMenuEvent\&
}{event
}}
1242 Called when a menu select is received from a menu bar: that is, the
1243 mouse cursor is over a menu item, but the left mouse button has not been
1246 \wxheading{Parameters
}
1248 \docparam{event
}{The menu highlight event. For more information, see
\helpref{wxMenuEvent
}{wxmenuevent
}.
}
1252 You can choose any member function to receive
1253 menu select events, using the EVT
\_MENU\_HIGHLIGHT macro for individual menu items or EVT
\_MENU\_HIGHLIGHT\_ALL macro
1256 The default implementation for
\helpref{wxFrame::OnMenuHighlight
}{wxframeonmenuhighlight
} displays help
1257 text in the first field of the status bar.
1259 This function was known as
{\bf OnMenuSelect
} in earlier versions of wxWindows, but this was confusing
1260 since a selection is normally a left-click action.
1262 \wxheading{See also
}
1264 \helpref{wxMenuEvent
}{wxmenuevent
},
\rtfsp
1265 \helpref{wxWindow::OnMenuCommand
}{wxwindowonmenucommand
},
\rtfsp
1266 \helpref{Event handling overview
}{eventhandlingoverview
}
1269 \membersection{wxWindow::OnMouseEvent
}\label{wxwindowonmouseevent
}
1271 \func{void
}{OnMouseEvent
}{\param{wxMouseEvent\&
}{ event
}}
1273 Called when the user has initiated an event with the
1276 \wxheading{Parameters
}
1278 \docparam{event
}{The mouse event. See
\helpref{wxMouseEvent
}{wxmouseevent
} for
1283 Most, but not all, windows respond to this event.
1285 To intercept this event, use the EVT
\_MOUSE\_EVENTS macro in an event table definition, or individual
1286 mouse event macros such as EVT
\_LEFT\_DOWN.
1288 \wxheading{See also
}
1290 \helpref{wxMouseEvent
}{wxmouseevent
},
\rtfsp
1291 \helpref{Event handling overview
}{eventhandlingoverview
}
1293 \membersection{wxWindow::OnMove
}\label{wxwindowonmove
}
1295 \func{void
}{OnMove
}{\param{wxMoveEvent\&
}{event
}}
1297 Called when a window is moved.
1299 \wxheading{Parameters
}
1301 \docparam{event
}{The move event. For more information, see
\helpref{wxMoveEvent
}{wxmoveevent
}.
}
1305 Use the EVT
\_MOVE macro to intercept move events.
1309 Not currently implemented.
1311 \wxheading{See also
}
1313 \helpref{wxMoveEvent
}{wxmoveevent
},
\rtfsp
1314 \helpref{wxFrame::OnSize
}{wxframeonsize
},
\rtfsp
1315 \helpref{Event handling overview
}{eventhandlingoverview
}
1317 \membersection{wxWindow::OnPaint
}\label{wxwindowonpaint
}
1319 \func{void
}{OnPaint
}{\param{wxPaintEvent\&
}{event
}}
1321 Sent to the event handler when the window must be refreshed.
1323 \wxheading{Parameters
}
1325 \docparam{event
}{Paint event. For more information, see
\helpref{wxPaintEvent
}{wxpaintevent
}.
}
1329 Use the EVT
\_PAINT macro in an event table definition to intercept paint events.
1331 In a paint event handler, the application should always create a
\helpref{wxPaintDC
}{wxpaintdc
} object.
1337 void MyWindow::OnPaint(wxPaintEvent& event)
1346 You can optimize painting by retrieving the rectangles
1347 that have been damaged and only repainting these. The rectangles are in
1348 terms of the client area, and are unscrolled, so you will need to do
1349 some calculations using the current view position to obtain logical,
1352 Here is an example of using the
\helpref{wxRegionIterator
}{wxregioniterator
} class:
1356 // Called when window needs to be repainted.
1357 void MyWindow::OnPaint(wxPaintEvent& event)
1361 // Find Out where the window is scrolled to
1362 int vbX,vbY; // Top left corner of client
1363 ViewStart(&vbX,&vbY);
1365 int vX,vY,vW,vH; // Dimensions of client area in pixels
1366 wxRegionIterator upd(GetUpdateRegion()); // get the update rect list
1375 // Alternatively we can do this:
1377 // upd.GetRect(&rect);
1379 // Repaint this rectangle
1388 \wxheading{See also
}
1390 \helpref{wxPaintEvent
}{wxpaintevent
},
\rtfsp
1391 \helpref{wxPaintDC
}{wxpaintdc
},
\rtfsp
1392 \helpref{Event handling overview
}{eventhandlingoverview
}
1394 \membersection{wxWindow::OnScroll
}\label{wxwindowonscroll
}
1396 \func{void
}{OnScroll
}{\param{wxScrollWinEvent\&
}{event
}}
1398 Called when a scroll window event is received from one of the window's built-in scrollbars.
1400 \wxheading{Parameters
}
1402 \docparam{event
}{Command event. Retrieve the new scroll position by
1403 calling
\helpref{wxScrollEvent::GetPosition
}{wxscrolleventgetposition
}, and the
1404 scrollbar orientation by calling
\helpref{wxScrollEvent::GetOrientation
}{wxscrolleventgetorientation
}.
}
1408 Note that it is not possible to distinguish between horizontal and vertical scrollbars
1409 until the function is executing (you can't have one function for vertical, another
1410 for horizontal events).
1412 \wxheading{See also
}
1414 \helpref{wxScrollWinEvent
}{wxscrollwinevent
},
\rtfsp
1415 \helpref{Event handling overview
}{eventhandlingoverview
}
1417 \membersection{wxWindow::OnSetFocus
}\label{wxwindowonsetfocus
}
1419 \func{void
}{OnSetFocus
}{\param{wxFocusEvent\&
}{event
}}
1421 Called when a window's focus is being set.
1423 \wxheading{Parameters
}
1425 \docparam{event
}{The focus event. For more information, see
\helpref{wxFocusEvent
}{wxfocusevent
}.
}
1429 To intercept this event, use the macro EVT
\_SET\_FOCUS in an event table definition.
1431 Most, but not all, windows respond to this event.
1433 \wxheading{See also
}
1435 \helpref{wxFocusEvent
}{wxfocusevent
},
\helpref{wxWindow::OnKillFocus
}{wxwindowonkillfocus
},
\rtfsp
1436 \helpref{Event handling overview
}{eventhandlingoverview
}
1438 \membersection{wxWindow::OnSize
}\label{wxwindowonsize
}
1440 \func{void
}{OnSize
}{\param{wxSizeEvent\&
}{event
}}
1442 Called when the window has been resized.
1444 \wxheading{Parameters
}
1446 \docparam{event
}{Size event. For more information, see
\helpref{wxSizeEvent
}{wxsizeevent
}.
}
1450 You may wish to use this for frames to resize their child windows as appropriate.
1452 Note that the size passed is of
1453 the whole window: call
\helpref{wxWindow::GetClientSize
}{wxwindowgetclientsize
} for the area which may be
1454 used by the application.
1456 \wxheading{See also
}
1458 \helpref{wxSizeEvent
}{wxsizeevent
},
\rtfsp
1459 \helpref{Event handling overview
}{eventhandlingoverview
}
1461 \membersection{wxWindow::OnSysColourChanged
}\label{wxwindowonsyscolourchanged
}
1463 \func{void
}{OnSysColourChanged
}{\param{wxOnSysColourChangedEvent\&
}{event
}}
1465 Called when the user has changed the system colours. Windows only.
1467 \wxheading{Parameters
}
1469 \docparam{event
}{System colour change event. For more information, see
\helpref{wxSysColourChangedEvent
}{wxsyscolourchangedevent
}.
}
1471 \wxheading{See also
}
1473 \helpref{wxSysColourChangedEvent
}{wxsyscolourchangedevent
},
\rtfsp
1474 \helpref{Event handling overview
}{eventhandlingoverview
}
1476 \membersection{wxWindow::PopEventHandler
}\label{wxwindowpopeventhandler
}
1478 \constfunc{wxEvtHandler*
}{PopEventHandler
}{\param{bool
}{deleteHandler = FALSE
}}
1480 Removes and returns the top-most event handler on the event handler stack.
1482 \wxheading{Parameters
}
1484 \docparam{deleteHandler
}{If this is TRUE, the handler will be deleted after it is removed. The
1485 default value is FALSE.
}
1487 \wxheading{See also
}
1489 \helpref{wxWindow::SetEventHandler
}{wxwindowseteventhandler
},
\rtfsp
1490 \helpref{wxWindow::GetEventHandler
}{wxwindowgeteventhandler
},
\rtfsp
1491 \helpref{wxWindow::PushEventHandler
}{wxwindowpusheventhandler
},
\rtfsp
1492 \helpref{wxEvtHandler::ProcessEvent
}{wxevthandlerprocessevent
},
\rtfsp
1493 \helpref{wxEvtHandler
}{wxevthandler
}\rtfsp
1495 \membersection{wxWindow::PopupMenu
}\label{wxwindowpopupmenu
}
1497 \func{bool
}{PopupMenu
}{\param{wxMenu*
}{menu
},
\param{const wxPoint&
}{pos
}}
1499 \func{bool
}{PopupMenu
}{\param{wxMenu*
}{menu
},
\param{int
}{x
},
\param{int
}{y
}}
1501 Pops up the given menu at the specified coordinates, relative to this
1502 window, and returns control when the user has dismissed the menu. If a
1503 menu item is selected, the corresponding menu event is generated and will be
1504 processed as usually.
1506 \wxheading{Parameters
}
1508 \docparam{menu
}{Menu to pop up.
}
1510 \docparam{pos
}{The position where the menu will appear.
}
1512 \docparam{x
}{Required x position for the menu to appear.
}
1514 \docparam{y
}{Required y position for the menu to appear.
}
1516 \wxheading{See also
}
1518 \helpref{wxMenu
}{wxmenu
}
1522 Just before the menu is popped up,
\helpref{wxMenu::UpdateUI
}{wxmenuupdateui
} is called
1523 to ensure that the menu items are in the correct state. The menu does not get deleted
1526 \pythonnote{In place of a single overloaded method name, wxPython
1527 implements the following methods:
\par
1528 \indented{2cm
}{\begin{twocollist
}
1529 \twocolitem{\bf{PopupMenu(menu, point)
}}{Specifies position with a wxPoint
}
1530 \twocolitem{\bf{PopupMenuXY(menu, x, y)
}}{Specifies position with two integers (x, y)
}
1534 \membersection{wxWindow::PushEventHandler
}\label{wxwindowpusheventhandler
}
1536 \func{void
}{PushEventHandler
}{\param{wxEvtHandler*
}{handler
}}
1538 Pushes this event handler onto the event stack for the window.
1540 \wxheading{Parameters
}
1542 \docparam{handler
}{Specifies the handler to be pushed.
}
1546 An event handler is an object that is capable of processing the events
1547 sent to a window. By default, the window is its own event handler, but
1548 an application may wish to substitute another, for example to allow
1549 central implementation of event-handling for a variety of different
1552 \helpref{wxWindow::PushEventHandler
}{wxwindowpusheventhandler
} allows
1553 an application to set up a chain of event handlers, where an event not handled by one event handler is
1554 handed to the next one in the chain. Use
\helpref{wxWindow::PopEventHandler
}{wxwindowpopeventhandler
} to
1555 remove the event handler.
1557 \wxheading{See also
}
1559 \helpref{wxWindow::SetEventHandler
}{wxwindowseteventhandler
},
\rtfsp
1560 \helpref{wxWindow::GetEventHandler
}{wxwindowgeteventhandler
},
\rtfsp
1561 \helpref{wxWindow::PopEventHandler
}{wxwindowpusheventhandler
},
\rtfsp
1562 \helpref{wxEvtHandler::ProcessEvent
}{wxevthandlerprocessevent
},
\rtfsp
1563 \helpref{wxEvtHandler
}{wxevthandler
}
1565 \membersection{wxWindow::Raise
}\label{wxwindowraise
}
1567 \func{void
}{Raise
}{\void}
1569 Raises the window to the top of the window hierarchy if it is a managed window (dialog
1572 \membersection{wxWindow::Refresh
}\label{wxwindowrefresh
}
1574 \func{virtual void
}{Refresh
}{\param{const bool
}{ eraseBackground = TRUE
},
\param{const wxRect*
}{rect
1577 Causes a message or event to be generated to repaint the
1580 \wxheading{Parameters
}
1582 \docparam{eraseBackground
}{If TRUE, the background will be
1585 \docparam{rect
}{If non-NULL, only the given rectangle will
1586 be treated as damaged.
}
1588 \membersection{wxWindow::ReleaseMouse
}\label{wxwindowreleasemouse
}
1590 \func{virtual void
}{ReleaseMouse
}{\void}
1592 Releases mouse input captured with
\helpref{wxWindow::CaptureMouse
}{wxwindowcapturemouse
}.
1594 \wxheading{See also
}
1596 \helpref{wxWindow::CaptureMouse
}{wxwindowcapturemouse
}
1598 \membersection{wxWindow::RemoveChild
}\label{wxwindowremovechild
}
1600 \func{virtual void
}{RemoveChild
}{\param{wxWindow*
}{child
}}
1602 Removes a child window. This is called automatically by window deletion
1603 functions so should not be required by the application programmer.
1605 \wxheading{Parameters
}
1607 \docparam{child
}{Child window to remove.
}
1609 \membersection{wxWindow::Reparent
}\label{wxwindowreparent
}
1611 \func{virtual bool
}{Reparent
}{\param{wxWindow*
}{newParent
}}
1613 Reparents the window, i.e the window will be removed from its
1614 current parent window (e.g. a non-standard toolbar in a wxFrame)
1615 and then re-inserted into another (e.g. a wxMiniFrame for a
1616 floating toolbar). Available on Windows and GTK+.
1618 \wxheading{Parameters
}
1620 \docparam{newParent
}{New parent.
}
1622 \membersection{wxWindow::ScreenToClient
}\label{wxwindowscreentoclient
}
1624 \constfunc{virtual void
}{ScreenToClient
}{\param{int*
}{x
},
\param{int*
}{y
}}
1626 \constfunc{virtual wxPoint
}{ScreenToClient
}{\param{const wxPoint\&
}{pt
}}
1628 Converts from screen to client window coordinates.
1630 \wxheading{Parameters
}
1632 \docparam{x
}{Stores the screen x coordinate and receives the client x coordinate.
}
1634 \docparam{y
}{Stores the screen x coordinate and receives the client x coordinate.
}
1636 \docparam{pt
}{The screen position for the second form of the function.
}
1638 \pythonnote{In place of a single overloaded method name, wxPython
1639 implements the following methods:
\par
1640 \indented{2cm
}{\begin{twocollist
}
1641 \twocolitem{\bf{ScreenToClient(point)
}}{Accepts and returns a wxPoint
}
1642 \twocolitem{\bf{ScreenToClientXY(x, y)
}}{Returns a
2-tuple, (x, y)
}
1647 \membersection{wxWindow::ScrollWindow
}\label{wxwindowscrollwindow
}
1649 \func{virtual void
}{ScrollWindow
}{\param{int
}{dx
},
\param{int
}{dy
},
\param{const wxRect*
}{ rect = NULL
}}
1651 Physically scrolls the pixels in the window and move child windows accordingly.
1653 \wxheading{Parameters
}
1655 \docparam{dx
}{Amount to scroll horizontally.
}
1657 \docparam{dy
}{Amount to scroll vertically.
}
1659 \docparam{rect
}{Rectangle to invalidate. If this is NULL, the whole window is invalidated. If you
1660 pass a rectangle corresponding to the area of the window exposed by the scroll, your painting handler
1661 can optimise painting by checking for the invalidated region. This paramter is ignored under GTK,
1662 instead the regions to be invalidated are calculated automatically.
}
1666 Use this function to optimise your scrolling implementations, to minimise the area that must be
1667 redrawn. Note that it is rarely required to call this function from a user program.
1669 \membersection{wxWindow::SetAcceleratorTable
}\label{wxwindowsetacceleratortable
}
1671 \func{virtual void
}{SetAcceleratorTable
}{\param{const wxAcceleratorTable\&
}{ accel
}}
1673 Sets the accelerator table for this window. See
\helpref{wxAcceleratorTable
}{wxacceleratortable
}.
1675 \membersection{wxWindow::SetAutoLayout
}\label{wxwindowsetautolayout
}
1677 \func{void
}{SetAutoLayout
}{\param{const bool
}{ autoLayout
}}
1679 Determines whether the
\helpref{wxWindow::Layout
}{wxwindowlayout
} function will
1680 be called automatically when the window is resized.
1682 \wxheading{Parameters
}
1684 \docparam{autoLayout
}{Set this to TRUE if you wish the Layout function to be called
1685 from within wxWindow::OnSize functions.
}
1689 Note that this function is actually disabled for wxWindow and only indirectly
1690 takes affect for children of wxDialog, wxFrame, wxNotebook and wxSplitterWindow.
1692 \wxheading{See also
}
1694 \helpref{wxWindow::SetConstraints
}{wxwindowsetconstraints
}
1696 \membersection{wxWindow::SetBackgroundColour
}\label{wxwindowsetbackgroundcolour
}
1698 \func{virtual void
}{SetBackgroundColour
}{\param{const wxColour\&
}{colour
}}
1700 Sets the background colour of the window.
1702 \wxheading{Parameters
}
1704 \docparam{colour
}{The colour to be used as the background colour.
}
1708 The background colour is usually painted by the default
\rtfsp
1709 \helpref{wxWindow::OnEraseBackground
}{wxwindowonerasebackground
} event handler function
1710 under Windows and automatically under GTK.
1712 Note that setting the background colour does not cause an immediate refresh, so you
1713 may wish to call
\helpref{wxWindow::Clear
}{wxwindowclear
} or
\helpref{wxWindow::Refresh
}{wxwindowrefresh
} after
1714 calling this function.
1716 Note that when using this functions under GTK, you will disable the so called "themes",
1717 i.e. the user chosen apperance of windows and controls, including the themes of
1718 their parent windows.
1720 \wxheading{See also
}
1722 \helpref{wxWindow::GetBackgroundColour
}{wxwindowgetbackgroundcolour
},
\rtfsp
1723 \helpref{wxWindow::SetForegroundColour
}{wxwindowsetforegroundcolour
},
\rtfsp
1724 \helpref{wxWindow::GetForegroundColour
}{wxwindowgetforegroundcolour
},
\rtfsp
1725 \helpref{wxWindow::Clear
}{wxwindowclear
},
\rtfsp
1726 \helpref{wxWindow::Refresh
}{wxwindowrefresh
},
\rtfsp
1727 \helpref{wxWindow::OnEraseBackground
}{wxwindowonerasebackground
}
1729 \membersection{wxWindow::SetClientSize
}\label{wxwindowsetclientsize
}
1731 \func{virtual void
}{SetClientSize
}{\param{int
}{ width
},
\param{int
}{ height
}}
1733 \func{virtual void
}{SetClientSize
}{\param{const wxSize\&
}{ size
}}
1735 This sets the size of the window client area in pixels. Using this function to size a window
1736 tends to be more device-independent than
\helpref{wxWindow::SetSize
}{wxwindowsetsize
}, since the application need not
1737 worry about what dimensions the border or title bar have when trying to fit the window
1738 around panel items, for example.
1740 \wxheading{Parameters
}
1742 \docparam{width
}{The required client area width.
}
1744 \docparam{height
}{The required client area height.
}
1746 \docparam{size
}{The required client size.
}
1748 \pythonnote{In place of a single overloaded method name, wxPython
1749 implements the following methods:
\par
1750 \indented{2cm
}{\begin{twocollist
}
1751 \twocolitem{\bf{SetClientSize(size)
}}{Accepts a wxSize
}
1752 \twocolitem{\bf{SetClientSizeWH(width, height)
}}{}
1756 \membersection{wxWindow::SetCursor
}\label{wxwindowsetcursor
}
1758 \func{virtual void
}{SetCursor
}{\param{const wxCursor\&
}{cursor
}}
1760 Sets the window's cursor. Notice that setting the cursor for this window does
1761 not set it for its children so you'll need to explicitly call SetCursor() for
1762 them too if you need it.
1764 \wxheading{Parameters
}
1766 \docparam{cursor
}{Specifies the cursor that the window should normally display.
}
1768 \wxheading{See also
}
1770 \helpref{::wxSetCursor
}{wxsetcursor
},
\helpref{wxCursor
}{wxcursor
}
1772 \membersection{wxWindow::SetEventHandler
}\label{wxwindowseteventhandler
}
1774 \func{void
}{SetEventHandler
}{\param{wxEvtHandler*
}{handler
}}
1776 Sets the event handler for this window.
1778 \wxheading{Parameters
}
1780 \docparam{handler
}{Specifies the handler to be set.
}
1784 An event handler is an object that is capable of processing the events
1785 sent to a window. By default, the window is its own event handler, but
1786 an application may wish to substitute another, for example to allow
1787 central implementation of event-handling for a variety of different
1790 It is usually better to use
\helpref{wxWindow::PushEventHandler
}{wxwindowpusheventhandler
} since
1791 this sets up a chain of event handlers, where an event not handled by one event handler is
1792 handed to the next one in the chain.
1794 \wxheading{See also
}
1796 \helpref{wxWindow::GetEventHandler
}{wxwindowgeteventhandler
},
\rtfsp
1797 \helpref{wxWindow::PushEventHandler
}{wxwindowpusheventhandler
},
\rtfsp
1798 \helpref{wxWindow::PopEventHandler
}{wxwindowpusheventhandler
},
\rtfsp
1799 \helpref{wxEvtHandler::ProcessEvent
}{wxevthandlerprocessevent
},
\rtfsp
1800 \helpref{wxEvtHandler
}{wxevthandler
}
1802 \membersection{wxWindow::SetConstraints
}\label{wxwindowsetconstraints
}
1804 \func{void
}{SetConstraints
}{\param{wxLayoutConstraints*
}{constraints
}}
1806 Sets the window to have the given layout constraints. The window
1807 will then own the object, and will take care of its deletion.
1808 If an existing layout constraints object is already owned by the
1809 window, it will be deleted.
1811 \wxheading{Parameters
}
1813 \docparam{constraints
}{The constraints to set. Pass NULL to disassociate and delete the window's
1818 You must call
\helpref{wxWindow::SetAutoLayout
}{wxwindowsetautolayout
} to tell a window to use
1819 the constraints automatically in OnSize; otherwise, you must
1820 override OnSize and call Layout explicitly.
1822 \membersection{wxWindow::SetDropTarget
}\label{wxwindowsetdroptarget
}
1824 \func{void
}{SetDropTarget
}{\param{wxDropTarget*
}{ target
}}
1826 Associates a drop target with this window.
1828 If the window already has a drop target, it is deleted.
1830 \wxheading{See also
}
1832 \helpref{wxWindow::GetDropTarget
}{wxwindowgetdroptarget
},
1833 \helpref{Drag and drop overview
}{wxdndoverview
}
1835 \membersection{wxWindow::SetFocus
}\label{wxwindowsetfocus
}
1837 \func{virtual void
}{SetFocus
}{\void}
1839 This sets the window to receive keyboard input.
1841 \membersection{wxWindow::SetFont
}\label{wxwindowsetfont
}
1843 \func{void
}{SetFont
}{\param{const wxFont\&
}{font
}}
1845 Sets the font for this window.
1847 \wxheading{Parameters
}
1849 \docparam{font
}{Font to associate with this window.
}
1851 \wxheading{See also
}
1853 \helpref{wxWindow::GetFont
}{wxwindowgetfont
}
1855 \membersection{wxWindow::SetForegroundColour
}\label{wxwindowsetforegroundcolour
}
1857 \func{virtual void
}{SetForegroundColour
}{\param{const wxColour\&
}{colour
}}
1859 Sets the foreground colour of the window.
1861 \wxheading{Parameters
}
1863 \docparam{colour
}{The colour to be used as the foreground colour.
}
1867 The interpretation of foreground colour is open to interpretation according
1868 to the window class; it may be the text colour or other colour, or it may not
1871 Note that when using this functions under GTK, you will disable the so called "themes",
1872 i.e. the user chosen apperance of windows and controls, including the themes of
1873 their parent windows.
1875 \wxheading{See also
}
1877 \helpref{wxWindow::GetForegroundColour
}{wxwindowgetforegroundcolour
},
\rtfsp
1878 \helpref{wxWindow::SetBackgroundColour
}{wxwindowsetbackgroundcolour
},
\rtfsp
1879 \helpref{wxWindow::GetBackgroundColour
}{wxwindowgetbackgroundcolour
}
1881 \membersection{wxWindow::SetId
}\label{wxwindowsetid
}
1883 \func{void
}{SetId
}{\param{int
}{ id
}}
1885 Sets the identifier of the window.
1889 Each window has an integer identifier. If the application has not provided one,
1890 an identifier will be generated. Normally, the identifier should be provided
1891 on creation and should not be modified subsequently.
1893 \wxheading{See also
}
1895 \helpref{wxWindow::GetId
}{wxwindowgetid
},
\rtfsp
1896 \helpref{Window identifiers
}{windowids
}
1898 \membersection{wxWindow::SetName
}\label{wxwindowsetname
}
1900 \func{virtual void
}{SetName
}{\param{const wxString\&
}{name
}}
1902 Sets the window's name.
1904 \wxheading{Parameters
}
1906 \docparam{name
}{A name to set for the window.
}
1908 \wxheading{See also
}
1910 \helpref{wxWindow::GetName
}{wxwindowgetname
}
1912 \membersection{wxWindow::SetPalette
}\label{wxwindowsetpalette
}
1914 \func{virtual void
}{SetPalette
}{\param{wxPalette*
}{palette
}}
1916 Obsolete - use
\helpref{wxDC::SetPalette
}{wxdcsetpalette
} instead.
1918 \membersection{wxWindow::SetScrollbar
}\label{wxwindowsetscrollbar
}
1920 \func{virtual void
}{SetScrollbar
}{\param{int
}{orientation
},
\param{int
}{position
},
\rtfsp
1921 \param{int
}{thumbSize
},
\param{int
}{range
},
\rtfsp
1922 \param{const bool
}{refresh = TRUE
}}
1924 Sets the scrollbar properties of a built-in scrollbar.
1926 \wxheading{Parameters
}
1928 \docparam{orientation
}{Determines the scrollbar whose page size is to be set. May be wxHORIZONTAL or wxVERTICAL.
}
1930 \docparam{position
}{The position of the scrollbar in scroll units.
}
1932 \docparam{thumbSize
}{The size of the thumb, or visible portion of the scrollbar, in scroll units.
}
1934 \docparam{range
}{The maximum position of the scrollbar.
}
1936 \docparam{refresh
}{TRUE to redraw the scrollbar, FALSE otherwise.
}
1940 Let's say you wish to display
50 lines of text, using the same font.
1941 The window is sized so that you can only see
16 lines at a time.
1947 SetScrollbar(wxVERTICAL,
0,
16,
50);
1951 Note that with the window at this size, the thumb position can never go
1952 above
50 minus
16, or
34.
1954 You can determine how many lines are currently visible by dividing the current view
1955 size by the character height in pixels.
1957 When defining your own scrollbar behaviour, you will always need to recalculate
1958 the scrollbar settings when the window size changes. You could therefore put your
1959 scrollbar calculations and SetScrollbar
1960 call into a function named AdjustScrollbars, which can be called initially and also
1961 from your
\helpref{wxWindow::OnSize
}{wxwindowonsize
} event handler function.
1963 \wxheading{See also
}
1965 \helpref{Scrolling overview
}{scrollingoverview
},
\rtfsp
1966 \helpref{wxScrollBar
}{wxscrollbar
},
\helpref{wxScrolledWindow
}{wxscrolledwindow
}
1969 \membersection{wxWindow::SetScrollPage
}\label{wxwindowsetscrollpage
}
1971 \func{virtual void
}{SetScrollPage
}{\param{int
}{orientation
},
\param{int
}{pageSize
},
\param{const bool
}{refresh = TRUE
}}
1973 Sets the page size of one of the built-in scrollbars.
1975 \wxheading{Parameters
}
1977 \docparam{orientation
}{Determines the scrollbar whose page size is to be set. May be wxHORIZONTAL or wxVERTICAL.
}
1979 \docparam{pageSize
}{Page size in scroll units.
}
1981 \docparam{refresh
}{TRUE to redraw the scrollbar, FALSE otherwise.
}
1985 The page size of a scrollbar is the number of scroll units that the scroll thumb travels when you
1986 click on the area above/left of or below/right of the thumb. Normally you will want a whole visible
1987 page to be scrolled, i.e. the size of the current view (perhaps the window client size). This
1988 value has to be adjusted when the window is resized, since the page size will have changed.
1990 In addition to specifying how far the scroll thumb travels when paging, in Motif and some versions of Windows
1991 the thumb changes size to reflect the page size relative to the length of the
document. When the
1992 document size is only slightly bigger than the current view (window) size, almost all of the scrollbar
1993 will be taken up by the thumb. When the two values become the same, the scrollbar will (on some systems)
1996 Currently, this function should be called before SetPageRange, because of a quirk in the Windows
1997 handling of pages and ranges.
1999 \wxheading{See also
}
2001 \helpref{wxWindow::SetScrollPos
}{wxwindowsetscrollpos
},
\rtfsp
2002 \helpref{wxWindow::GetScrollPos
}{wxwindowsetscrollpos
},
\rtfsp
2003 \helpref{wxWindow::GetScrollPage
}{wxwindowsetscrollpage
},
\rtfsp
2004 \helpref{wxScrollBar
}{wxscrollbar
},
\helpref{wxScrolledWindow
}{wxscrolledwindow
}
2007 \membersection{wxWindow::SetScrollPos
}\label{wxwindowsetscrollpos
}
2009 \func{virtual void
}{SetScrollPos
}{\param{int
}{orientation
},
\param{int
}{pos
},
\param{const bool
}{refresh = TRUE
}}
2011 Sets the position of one of the built-in scrollbars.
2013 \wxheading{Parameters
}
2015 \docparam{orientation
}{Determines the scrollbar whose position is to be set. May be wxHORIZONTAL or wxVERTICAL.
}
2017 \docparam{pos
}{Position in scroll units.
}
2019 \docparam{refresh
}{TRUE to redraw the scrollbar, FALSE otherwise.
}
2023 This function does not directly affect the contents of the window: it is up to the
2024 application to take note of scrollbar attributes and redraw contents accordingly.
2026 \wxheading{See also
}
2028 \helpref{wxWindow::SetScrollbar
}{wxwindowsetscrollbar
},
\rtfsp
2029 \helpref{wxWindow::GetScrollPos
}{wxwindowsetscrollpos
},
\rtfsp
2030 \helpref{wxWindow::GetScrollThumb
}{wxwindowgetscrollthumb
},
\rtfsp
2031 \helpref{wxScrollBar
}{wxscrollbar
},
\helpref{wxScrolledWindow
}{wxscrolledwindow
}
2034 \membersection{wxWindow::SetScrollRange
}\label{wxwindowsetscrollrange
}
2036 \func{virtual void
}{SetScrollRange
}{\param{int
}{orientation
},
\param{int
}{range
},
\param{const bool
}{refresh = TRUE
}}
2038 Sets the range of one of the built-in scrollbars.
2040 \wxheading{Parameters
}
2042 \docparam{orientation
}{Determines the scrollbar whose range is to be set. May be wxHORIZONTAL or wxVERTICAL.
}
2044 \docparam{range
}{Scroll range.
}
2046 \docparam{refresh
}{TRUE to redraw the scrollbar, FALSE otherwise.
}
2050 The range of a scrollbar is the number of steps that the thumb may travel, rather than the total
2051 object length of the scrollbar. If you are implementing a scrolling window, for example, you
2052 would adjust the scroll range when the window is resized, by subtracting the window view size from the
2053 total virtual window size. When the two sizes are the same (all the window is visible), the range goes to zero
2054 and usually the scrollbar will be automatically hidden.
2056 \wxheading{See also
}
2058 \helpref{wxWindow::SetScrollPos
}{wxwindowsetscrollpos
},
\rtfsp
2059 \helpref{wxWindow::SetScrollPage
}{wxwindowsetscrollpage
},
\rtfsp
2060 \helpref{wxWindow::GetScrollPos
}{wxwindowsetscrollpos
},
\rtfsp
2061 \helpref{wxWindow::GetScrollPage
}{wxwindowsetscrollpage
},
\rtfsp
2062 \helpref{wxScrollBar
}{wxscrollbar
},
\helpref{wxScrolledWindow
}{wxscrolledwindow
}
2065 \membersection{wxWindow::SetSize
}\label{wxwindowsetsize
}
2067 \func{virtual void
}{SetSize
}{\param{int
}{ x
},
\param{int
}{ y
},
\param{int
}{ width
},
\param{int
}{ height
},
2068 \param{int
}{ sizeFlags = wxSIZE
\_AUTO}}
2070 \func{virtual void
}{SetSize
}{\param{const wxRect\&
}{ rect
}}
2072 Sets the size and position of the window in pixels.
2074 \func{virtual void
}{SetSize
}{\param{int
}{ width
},
\param{int
}{ height
}}
2076 \func{virtual void
}{SetSize
}{\param{const wxSize\&
}{ size
}}
2078 Sets the size of the window in pixels.
2080 \wxheading{Parameters
}
2082 \docparam{x
}{Required x position in pixels, or -
1 to indicate that the existing
2083 value should be used.
}
2085 \docparam{y
}{Required y position in pixels, or -
1 to indicate that the existing
2086 value should be used.
}
2088 \docparam{width
}{Required width in pixels, or -
1 to indicate that the existing
2089 value should be used.
}
2091 \docparam{height
}{Required height position in pixels, or -
1 to indicate that the existing
2092 value should be used.
}
2094 \docparam{size
}{\helpref{wxSize
}{wxsize
} object for setting the size.
}
2096 \docparam{rect
}{\helpref{wxRect
}{wxrect
} object for setting the position and size.
}
2098 \docparam{sizeFlags
}{Indicates the interpretation of other parameters. It is a bit list of the following:
2100 {\bf wxSIZE
\_AUTO\_WIDTH}: a -
1 width value is taken to indicate
2101 a wxWindows-supplied default width.\\
2102 {\bf wxSIZE
\_AUTO\_HEIGHT}: a -
1 height value is taken to indicate
2103 a wxWindows-supplied default width.\\
2104 {\bf wxSIZE
\_AUTO}: -
1 size values are taken to indicate
2105 a wxWindows-supplied default size.\\
2106 {\bf wxSIZE
\_USE\_EXISTING}: existing dimensions should be used
2107 if -
1 values are supplied.\\
2108 {\bf wxSIZE
\_ALLOW\_MINUS\_ONE}: allow dimensions of -
1 and less to be interpreted
2109 as real dimensions, not default values.
2114 The second form is a convenience for calling the first form with default
2115 x and y parameters, and must be used with non-default width and height values.
2117 The first form sets the position and optionally size, of the window.
2118 Parameters may be -
1 to indicate either that a default should be supplied
2119 by wxWindows, or that the current value of the dimension should be used.
2121 \wxheading{See also
}
2123 \helpref{wxWindow::Move
}{wxwindowmove
}
2125 \pythonnote{In place of a single overloaded method name, wxPython
2126 implements the following methods:
\par
2127 \indented{2cm
}{\begin{twocollist
}
2128 \twocolitem{\bf{SetDimensions(x, y, width, height, sizeFlags=wxSIZE_AUTO)
}}{}
2129 \twocolitem{\bf{SetSize(size)
}}{}
2130 \twocolitem{\bf{SetPosition(point)
}}{}
2134 \membersection{wxWindow::SetSizeHints
}\label{wxwindowsetsizehints
}
2136 \func{virtual void
}{SetSizeHints
}{\param{int
}{ minW=-
1},
\param{int
}{ minH=-
1},
\param{int
}{ maxW=-
1},
\param{int
}{ maxH=-
1},
2137 \param{int
}{ incW=-
1},
\param{int
}{ incH=-
1}}
2139 Allows specification of minimum and maximum window sizes, and window size increments.
2140 If a pair of values is not set (or set to -
1), the default values will be used.
2142 \wxheading{Parameters
}
2144 \docparam{minW
}{Specifies the minimum width allowable.
}
2146 \docparam{minH
}{Specifies the minimum height allowable.
}
2148 \docparam{maxW
}{Specifies the maximum width allowable.
}
2150 \docparam{maxH
}{Specifies the maximum height allowable.
}
2152 \docparam{incW
}{Specifies the increment for sizing the width (Motif/Xt only).
}
2154 \docparam{incH
}{Specifies the increment for sizing the height (Motif/Xt only).
}
2158 If this function is called, the user will not be able to size the window outside the
2161 The resizing increments are only significant under Motif or Xt.
2163 \membersection{wxWindow::SetTitle
}\label{wxwindowsettitle
}
2165 \func{virtual void
}{SetTitle
}{\param{const wxString\&
}{title
}}
2167 Sets the window's title. Applicable only to frames and dialogs.
2169 \wxheading{Parameters
}
2171 \docparam{title
}{The window's title.
}
2173 \wxheading{See also
}
2175 \helpref{wxWindow::GetTitle
}{wxwindowgettitle
}
2177 \membersection{wxWindow::SetValidator
}\label{wxwindowsetvalidator
}
2179 \func{virtual void
}{SetValidator
}{\param{const wxValidator\&
}{ validator
}}
2181 Deletes the current validator (if any) and sets the window validator, having called wxValidator::Clone to
2182 create a new validator of this type.
2184 \membersection{wxWindow::Show
}\label{wxwindowshow
}
2186 \func{virtual bool
}{Show
}{\param{const bool
}{ show
}}
2188 Shows or hides the window.
2190 \wxheading{Parameters
}
2192 \docparam{show
}{If TRUE, displays the window and brings it to the front. Otherwise,
2195 \wxheading{See also
}
2197 \helpref{wxWindow::IsShown
}{wxwindowisshown
}
2199 \membersection{wxWindow::TransferDataFromWindow
}\label{wxwindowtransferdatafromwindow
}
2201 \func{virtual bool
}{TransferDataFromWindow
}{\void}
2203 Transfers values from child controls to data areas specified by their validators. Returns
2204 FALSE if a transfer failed.
2206 \wxheading{See also
}
2208 \helpref{wxWindow::TransferDataToWindow
}{wxwindowtransferdatatowindow
},
\rtfsp
2209 \helpref{wxValidator
}{wxvalidator
},
\helpref{wxWindow::Validate
}{wxwindowvalidate
}
2211 \membersection{wxWindow::TransferDataToWindow
}\label{wxwindowtransferdatatowindow
}
2213 \func{virtual bool
}{TransferDataToWindow
}{\void}
2215 Transfers values to child controls from data areas specified by their validators.
2217 \wxheading{Return value
}
2219 Returns FALSE if a transfer failed.
2221 \wxheading{See also
}
2223 \helpref{wxWindow::TransferDataFromWindow
}{wxwindowtransferdatafromwindow
},
\rtfsp
2224 \helpref{wxValidator
}{wxvalidator
},
\helpref{wxWindow::Validate
}{wxwindowvalidate
}
2226 \membersection{wxWindow::Validate
}\label{wxwindowvalidate
}
2228 \func{virtual bool
}{Validate
}{\void}
2230 Validates the current values of the child controls using their validators.
2232 \wxheading{Return value
}
2234 Returns FALSE if any of the validations failed.
2236 \wxheading{See also
}
2238 \helpref{wxWindow::TransferDataFromWindow
}{wxwindowtransferdatafromwindow
},
\rtfsp
2239 \helpref{wxWindow::TransferDataFromWindow
}{wxwindowtransferdatafromwindow
},
\rtfsp
2240 \helpref{wxValidator
}{wxvalidator
}
2242 \membersection{wxWindow::WarpPointer
}\label{wxwindowwarppointer
}
2244 \func{void
}{WarpPointer
}{\param{int
}{ x
},
\param{int
}{ y
}}
2246 Moves the pointer to the given position on the window.
2248 \wxheading{Parameters
}
2250 \docparam{x
}{The new x position for the cursor.
}
2252 \docparam{y
}{The new y position for the cursor.
}