#include </home/zeitlin/src/wx/github/interface/wx/window.h>
wxWindow is the base class for all windows and represents any visible object on screen.
All controls, top level windows and so on are windows. Sizers and device contexts are not, however, as they don't appear on screen themselves.
Please note that all children of the window will be deleted automatically by the destructor before the window itself is deleted which means that you don't have to worry about deleting them manually. Please see the window deletion overview for more information.
Also note that in this, and many others, wxWidgets classes some GetXXX()
methods may be overloaded (as, for example, wxWindow::GetSize or wxWindow::GetClientSize). In this case, the overloads are non-virtual because having multiple virtual functions with the same name results in a virtual function name hiding at the derived class level (in English, this means that the derived class has to override all overloaded variants if it overrides any of them). To allow overriding them in the derived class, wxWidgets uses a unique protected virtual DoGetXXX()
method and all GetXXX()
ones are forwarded to it, so overriding the former changes the behaviour of the latter.
This class supports the following styles:
This class supports the following extra styles:
wxEVT_HELP
event if the user clicked on an application window. This style cannot be used (because of the underlying native behaviour) together with wxMAXIMIZE_BOX
or wxMINIMIZE_BOX
, so these two styles are automatically turned off if this one is used. wxIDLE_PROCESS_SPECIFIED
. wxUPDATE_UI_PROCESS_SPECIFIED
. Event macros for events emitted by this class:
wxEVT_ACTIVATE
event. See wxActivateEvent. wxEVT_CHILD_FOCUS
event. See wxChildFocusEvent. wxEVT_HELP
event. See wxHelpEvent. wxEVT_HELP
event for a range of ids. See wxHelpEvent. wxEVT_DROP_FILES
event. See wxDropFilesEvent. wxEVT_ERASE_BACKGROUND
event. See wxEraseEvent. wxEVT_SET_FOCUS
event. See wxFocusEvent. wxEVT_KILL_FOCUS
event. See wxFocusEvent. wxEVT_IDLE
event. See wxIdleEvent. wxEVT_KEY_DOWN
event (any key has been pressed). See wxKeyEvent. wxEVT_KEY_UP
event (any key has been released). See wxKeyEvent. wxEVT_CHAR
event. See wxKeyEvent. wxEVT_CHAR_HOOK
event. See wxKeyEvent. wxEVT_MOUSE_CAPTURE_LOST
event. See wxMouseCaptureLostEvent. wxEVT_MOUSE_CAPTURE_CHANGED
event. See wxMouseCaptureChangedEvent. wxEVT_PAINT
event. See wxPaintEvent. wxEVT_SET_CURSOR
event. See wxSetCursorEvent. wxEVT_SIZE
event. See wxSizeEvent. wxEVT_SYS_COLOUR_CHANGED
event. See wxSysColourChangedEvent. Public Member Functions | |
wxWindow () | |
Default constructor. | |
wxWindow (wxWindow *parent, wxWindowID id, const wxPoint &pos=wxDefaultPosition, const wxSize &size=wxDefaultSize, long style=0, const wxString &name=wxPanelNameStr) | |
Constructs a window, which can be a child of a frame, dialog or any other non-control window. | |
virtual | ~wxWindow () |
Destructor. | |
bool | Create (wxWindow *parent, wxWindowID id, const wxPoint &pos=wxDefaultPosition, const wxSize &size=wxDefaultSize, long style=0, const wxString &name=wxPanelNameStr) |
Focus functions | |
See also the static function FindFocus(). | |
virtual bool | AcceptsFocus () const |
This method may be overridden in the derived classes to return false to indicate that this control doesn't accept input at all (i.e. | |
virtual bool | AcceptsFocusFromKeyboard () const |
This method may be overridden in the derived classes to return false to indicate that while this control can, in principle, have focus if the user clicks it with the mouse, it shouldn't be included in the TAB traversal chain when using the keyboard. | |
virtual bool | AcceptsFocusRecursively () const |
Overridden to indicate whether this window or one of its children accepts focus. | |
virtual bool | HasFocus () const |
Returns true if the window (or in case of composite controls, its main child window) has focus. | |
virtual void | SetCanFocus (bool canFocus) |
This method is only implemented by ports which have support for native TAB traversal (such as GTK+ 2.0). | |
virtual void | SetFocus () |
This sets the window to receive keyboard input. | |
virtual void | SetFocusFromKbd () |
This function is called by wxWidgets keyboard navigation code when the user gives the focus to this window from keyboard (e.g. | |
Child management functions | |
virtual void | AddChild (wxWindow *child) |
Adds a child window. | |
bool | DestroyChildren () |
Destroys all children of a window. | |
wxWindow * | FindWindow (long id) const |
Find a child of this window, by id. | |
wxWindow * | FindWindow (const wxString &name) const |
Find a child of this window, by name. | |
wxWindowList & | GetChildren () |
Returns a reference to the list of the window's children. | |
const wxWindowList & | GetChildren () const |
This is an overloaded member function, provided for convenience. It differs from the above function only in what argument(s) it accepts. | |
virtual void | RemoveChild (wxWindow *child) |
Removes a child window. | |
Sibling and parent management functions | |
wxWindow * | GetGrandParent () const |
Returns the grandparent of a window, or NULL if there isn't one. | |
wxWindow * | GetNextSibling () const |
Returns the next window after this one among the parent's children or NULL if this window is the last child. | |
wxWindow * | GetParent () const |
Returns the parent of the window, or NULL if there is no parent. | |
wxWindow * | GetPrevSibling () const |
Returns the previous window before this one among the parent's children or NULL if this window is the first child. | |
bool | IsDescendant (wxWindowBase *win) const |
Check if the specified window is a descendant of this one. | |
virtual bool | Reparent (wxWindow *newParent) |
Reparents the window, i.e. | |
Scrolling and scrollbars functions | |
Note that these methods don't work with native controls which don't use wxWidgets scrolling framework (i.e. don't derive from wxScrolledWindow). | |
virtual void | AlwaysShowScrollbars (bool hflag=true, bool vflag=true) |
Call this function to force one or both scrollbars to be always shown, even if the window is big enough to show its entire contents without scrolling. | |
virtual int | GetScrollPos (int orientation) const |
Returns the built-in scrollbar position. | |
virtual int | GetScrollRange (int orientation) const |
Returns the built-in scrollbar range. | |
virtual int | GetScrollThumb (int orientation) const |
Returns the built-in scrollbar thumb size. | |
bool | CanScroll (int orient) const |
Returns true if this window can have a scroll bar in this orientation. | |
bool | HasScrollbar (int orient) const |
Returns true if this window currently has a scroll bar for this orientation. | |
virtual bool | IsScrollbarAlwaysShown (int orient) const |
Return whether a scrollbar is always shown. | |
virtual bool | ScrollLines (int lines) |
Scrolls the window by the given number of lines down (if lines is positive) or up. | |
virtual bool | ScrollPages (int pages) |
Scrolls the window by the given number of pages down (if pages is positive) or up. | |
virtual void | ScrollWindow (int dx, int dy, const wxRect *rect=NULL) |
Physically scrolls the pixels in the window and move child windows accordingly. | |
bool | LineUp () |
Same as ScrollLines (-1). | |
bool | LineDown () |
Same as ScrollLines (1). | |
bool | PageUp () |
Same as ScrollPages (-1). | |
bool | PageDown () |
Same as ScrollPages (1). | |
virtual void | SetScrollPos (int orientation, int pos, bool refresh=true) |
Sets the position of one of the built-in scrollbars. | |
virtual void | SetScrollbar (int orientation, int position, int thumbSize, int range, bool refresh=true) |
Sets the scrollbar properties of a built-in scrollbar. | |
Sizing functions | |
See also the protected functions DoGetBestSize() and DoGetBestClientSize(). | |
void | CacheBestSize (const wxSize &size) const |
Sets the cached best size value. | |
virtual wxSize | ClientToWindowSize (const wxSize &size) const |
Converts client area size size to corresponding window size. | |
virtual wxSize | WindowToClientSize (const wxSize &size) const |
Converts window size size to corresponding client area size In other words, the returned value is what would GetClientSize() return if this window had given window size. | |
virtual void | Fit () |
サブウィンドウにフィットするようにウィンドウのサイズを設定します。 | |
virtual void | FitInside () |
Similar to Fit(), but sizes the interior (virtual) size of a window. | |
wxSize | GetBestSize () const |
This functions returns the best acceptable minimal size for the window. | |
int | GetBestHeight (int width) const |
Returns the best height needed by this window if it had the given width. | |
int | GetBestWidth (int height) const |
Returns the best width needed by this window if it had the given height. | |
void | GetClientSize (int *width, int *height) const |
Returns the size of the window 'client area' in pixels. | |
wxSize | GetClientSize () const |
This is an overloaded member function, provided for convenience. It differs from the above function only in what argument(s) it accepts. | |
virtual wxSize | GetEffectiveMinSize () const |
ウィンドウの最適サイズを最小サイズにマージし、その結果を返却します。 | |
virtual wxSize | GetMaxClientSize () const |
Returns the maximum size of window's client area. | |
virtual wxSize | GetMaxSize () const |
Returns the maximum size of the window. | |
virtual wxSize | GetMinClientSize () const |
Returns the minimum size of window's client area, an indication to the sizer layout mechanism that this is the minimum required size of its client area. | |
virtual wxSize | GetMinSize () const |
Returns the minimum size of the window, an indication to the sizer layout mechanism that this is the minimum required size. | |
int | GetMinWidth () const |
Sets the cached best size value. | |
int | GetMinHeight () const |
Sets the cached best size value. | |
int | GetMaxWidth () const |
Sets the cached best size value. | |
int | GetMaxHeight () const |
Sets the cached best size value. | |
void | GetSize (int *width, int *height) const |
タイトルバー、ボーダー、スクロールバーなどを含む、ウィンドウ全体のサイズをピクセル単位で返却します。 | |
wxSize | GetSize () const |
See the GetSize(int*,int*) overload for more info. | |
wxSize | GetVirtualSize () const |
This gets the virtual size of the window in pixels. | |
void | GetVirtualSize (int *width, int *height) const |
Like the other GetVirtualSize() overload but uses pointers instead. | |
virtual wxSize | GetBestVirtualSize () const |
Return the largest of ClientSize and BestSize (as determined by a sizer, interior children, or other means) | |
virtual wxSize | GetWindowBorderSize () const |
Returns the size of the left/right and top/bottom borders of this window in x and y components of the result respectively. | |
virtual bool | InformFirstDirection (int direction, int size, int availableOtherDir) |
wxSizer and friends use this to give a chance to a component to recalc its min size once one of the final size components is known. | |
void | InvalidateBestSize () |
Resets the cached best size value so it will be recalculated the next time it is needed. | |
void | PostSizeEvent () |
Posts a size event to the window. | |
void | PostSizeEventToParent () |
Posts a size event to the parent of this window. | |
virtual void | SendSizeEvent (int flags=0) |
This function sends a dummy size event to the window allowing it to re-layout its children positions. | |
void | SendSizeEventToParent (int flags=0) |
Safe wrapper for GetParent()->SendSizeEvent(). | |
void | SetClientSize (int width, int height) |
This sets the size of the window client area in pixels. | |
void | SetClientSize (const wxSize &size) |
This is an overloaded member function, provided for convenience. It differs from the above function only in what argument(s) it accepts. | |
void | SetClientSize (const wxRect &rect) |
This is an overloaded member function, provided for convenience. It differs from the above function only in what argument(s) it accepts. | |
void | SetContainingSizer (wxSizer *sizer) |
This normally does not need to be called by user code. | |
void | SetInitialSize (const wxSize &size=wxDefaultSize) |
A smart SetSize that will fill in default size components with the window's best size values. | |
virtual void | SetMaxClientSize (const wxSize &size) |
Sets the maximum client size of the window, to indicate to the sizer layout mechanism that this is the maximum possible size of its client area. | |
virtual void | SetMaxSize (const wxSize &size) |
Sets the maximum size of the window, to indicate to the sizer layout mechanism that this is the maximum possible size. | |
virtual void | SetMinClientSize (const wxSize &size) |
Sets the minimum client size of the window, to indicate to the sizer layout mechanism that this is the minimum required size of window's client area. | |
virtual void | SetMinSize (const wxSize &size) |
Sets the minimum size of the window, to indicate to the sizer layout mechanism that this is the minimum required size. | |
void | SetSize (int x, int y, int width, int height, int sizeFlags=wxSIZE_AUTO) |
ピクセル単位でウィンドウサイズを設定します。 | |
void | SetSize (const wxRect &rect) |
ピクセル単位でウィンドウサイズを設定します。 | |
void | SetSize (const wxSize &size) |
This is an overloaded member function, provided for convenience. It differs from the above function only in what argument(s) it accepts. | |
void | SetSize (int width, int height) |
This is an overloaded member function, provided for convenience. It differs from the above function only in what argument(s) it accepts. | |
virtual void | SetSizeHints (const wxSize &minSize, const wxSize &maxSize=wxDefaultSize, const wxSize &incSize=wxDefaultSize) |
Use of this function for windows which are not toplevel windows (such as wxDialog or wxFrame) is discouraged. | |
virtual void | SetSizeHints (int minW, int minH, int maxW=-1, int maxH=-1, int incW=-1, int incH=-1) |
Sets the cached best size value. | |
void | SetVirtualSize (int width, int height) |
Sets the virtual size of the window in pixels. | |
void | SetVirtualSize (const wxSize &size) |
This is an overloaded member function, provided for convenience. It differs from the above function only in what argument(s) it accepts. | |
Positioning functions | |
void | Center (int dir=wxBOTH) |
A synonym for Centre(). | |
void | CenterOnParent (int dir=wxBOTH) |
A synonym for CentreOnParent(). | |
void | Centre (int direction=wxBOTH) |
Centres the window. | |
void | CentreOnParent (int direction=wxBOTH) |
Centres the window on its parent. | |
void | GetPosition (int *x, int *y) const |
This gets the position of the window in pixels, relative to the parent window for the child windows or relative to the display origin for the top level windows. | |
wxPoint | GetPosition () const |
This gets the position of the window in pixels, relative to the parent window for the child windows or relative to the display origin for the top level windows. | |
wxRect | GetRect () const |
Returns the position and size of the window as a wxRect object. | |
void | GetScreenPosition (int *x, int *y) const |
Returns the window position in screen coordinates, whether the window is a child window or a top level one. | |
wxPoint | GetScreenPosition () const |
Returns the window position in screen coordinates, whether the window is a child window or a top level one. | |
wxRect | GetScreenRect () const |
Returns the position and size of the window on the screen as a wxRect object. | |
virtual wxPoint | GetClientAreaOrigin () const |
Get the origin of the client area of the window relative to the window top left corner (the client area may be shifted because of the borders, scrollbars, other decorations...) | |
wxRect | GetClientRect () const |
Get the client rectangle in window (i.e. | |
void | Move (int x, int y, int flags=wxSIZE_USE_EXISTING) |
Moves the window to the given position. | |
void | Move (const wxPoint &pt, int flags=wxSIZE_USE_EXISTING) |
Moves the window to the given position. | |
void | SetPosition (const wxPoint &pt) |
A synonym for Centre(). | |
Coordinate conversion functions | |
void | ClientToScreen (int *x, int *y) const |
Converts to screen coordinates from coordinates relative to this window. | |
wxPoint | ClientToScreen (const wxPoint &pt) const |
Converts to screen coordinates from coordinates relative to this window. | |
wxPoint | ConvertDialogToPixels (const wxPoint &pt) const |
Converts a point or size from dialog units to pixels. | |
wxSize | ConvertDialogToPixels (const wxSize &sz) const |
This is an overloaded member function, provided for convenience. It differs from the above function only in what argument(s) it accepts. | |
wxPoint | ConvertPixelsToDialog (const wxPoint &pt) const |
Converts a point or size from pixels to dialog units. | |
wxSize | ConvertPixelsToDialog (const wxSize &sz) const |
This is an overloaded member function, provided for convenience. It differs from the above function only in what argument(s) it accepts. | |
void | ScreenToClient (int *x, int *y) const |
Converts from screen to client window coordinates. | |
wxPoint | ScreenToClient (const wxPoint &pt) const |
Converts from screen to client window coordinates. | |
Drawing-related functions | |
virtual void | ClearBackground () |
Clears the window by filling it with the current background colour. | |
void | Freeze () |
ウィンドウをフリーズ、つまり、画面上のいかなる更新も行われないようにします。これを行なうとウィンドウはまったく再描画されなくなります。 | |
void | Thaw () |
Re-enables window updating after a previous call to Freeze(). | |
bool | IsFrozen () const |
Returns true if the window is currently frozen by a call to Freeze(). | |
wxColour | GetBackgroundColour () const |
Returns the background colour of the window. | |
virtual wxBackgroundStyle | GetBackgroundStyle () const |
Returns the background style of the window. | |
virtual int | GetCharHeight () const |
Returns the character height for this window. | |
virtual int | GetCharWidth () const |
Returns the average character width for this window. | |
virtual wxVisualAttributes | GetDefaultAttributes () const |
Currently this is the same as calling wxWindow::GetClassDefaultAttributes(wxWindow::GetWindowVariant()). | |
wxFont | GetFont () const |
Returns the font for this window. | |
wxColour | GetForegroundColour () const |
Returns the foreground colour of the window. | |
void | GetTextExtent (const wxString &string, int *w, int *h, int *descent=NULL, int *externalLeading=NULL, const wxFont *font=NULL) const |
Gets the dimensions of the string as it would be drawn on the window with the currently selected font. | |
wxSize | GetTextExtent (const wxString &string) const |
Gets the dimensions of the string as it would be drawn on the window with the currently selected font. | |
const wxRegion & | GetUpdateRegion () const |
Returns the region specifying which parts of the window have been damaged. | |
wxRect | GetUpdateClientRect () const |
Get the update rectangle bounding box in client coords. | |
virtual bool | HasTransparentBackground () |
Returns true if this window background is transparent (as, for example, for wxStaticText) and should show the parent window background. | |
virtual void | Refresh (bool eraseBackground=true, const wxRect *rect=NULL) |
Causes this window, and all of its children recursively (except under wxGTK1 where this is not implemented), to be repainted. | |
void | RefreshRect (const wxRect &rect, bool eraseBackground=true) |
Redraws the contents of the given rectangle: only the area inside it will be repainted. | |
virtual void | Update () |
Calling this method immediately repaints the invalidated area of the window and all of its children recursively (this normally only happens when the flow of control returns to the event loop). | |
virtual bool | SetBackgroundColour (const wxColour &colour) |
Sets the background colour of the window. | |
virtual bool | SetBackgroundStyle (wxBackgroundStyle style) |
Sets the background style of the window. | |
virtual bool | IsTransparentBackgroundSupported (wxString *reason=NULL) const |
Checks whether using transparent background might work. | |
virtual bool | SetFont (const wxFont &font) |
Sets the font for this window. | |
virtual bool | SetForegroundColour (const wxColour &colour) |
Sets the foreground colour of the window. | |
void | SetOwnBackgroundColour (const wxColour &colour) |
Sets the background colour of the window but prevents it from being inherited by the children of this window. | |
void | SetOwnFont (const wxFont &font) |
Sets the font of the window but prevents it from being inherited by the children of this window. | |
void | SetOwnForegroundColour (const wxColour &colour) |
Sets the foreground colour of the window but prevents it from being inherited by the children of this window. | |
void | SetPalette (const wxPalette &pal) |
virtual bool | ShouldInheritColours () const |
Return true from here to allow the colours of this window to be changed by InheritAttributes(). | |
virtual void | SetThemeEnabled (bool enable) |
This function tells a window if it should use the system's "theme" code to draw the windows' background instead of its own background drawing code. | |
virtual bool | GetThemeEnabled () const |
Clears the window by filling it with the current background colour. | |
virtual bool | CanSetTransparent () |
Returns true if the system supports transparent windows and calling SetTransparent() may succeed. | |
virtual bool | SetTransparent (wxByte alpha) |
Set the transparency of the window. | |
Event-handling functions | |
wxWindow allows you to build a (sort of) stack of event handlers which can be used to override the window's own event handling. | |
wxEvtHandler * | GetEventHandler () const |
Returns the event handler for this window. | |
bool | HandleAsNavigationKey (const wxKeyEvent &event) |
This function will generate the appropriate call to Navigate() if the key event is one normally used for keyboard navigation and return true in this case. | |
bool | HandleWindowEvent (wxEvent &event) const |
Shorthand for: | |
bool | ProcessWindowEvent (wxEvent &event) |
Convenient wrapper for ProcessEvent(). | |
bool | ProcessWindowEventLocally (wxEvent &event) |
Wrapper for wxEvtHandler::ProcessEventLocally(). | |
wxEvtHandler * | PopEventHandler (bool deleteHandler=false) |
Removes and returns the top-most event handler on the event handler stack. | |
void | PushEventHandler (wxEvtHandler *handler) |
このイベントハンドラをウィンドウのイベントスタック上に追加します。 | |
bool | RemoveEventHandler (wxEvtHandler *handler) |
Find the given handler in the windows event handler stack and removes (but does not delete) it from the stack. | |
void | SetEventHandler (wxEvtHandler *handler) |
このウィンドウのイベントハンドラを設定します。 | |
virtual void | SetNextHandler (wxEvtHandler *handler) |
wxWindows cannot be used to form event handler chains; this function thus will assert when called. | |
virtual void | SetPreviousHandler (wxEvtHandler *handler) |
wxWindows cannot be used to form event handler chains; this function thus will assert when called. | |
Window styles functions | |
long | GetExtraStyle () const |
Returns the extra style bits for the window. | |
virtual long | GetWindowStyleFlag () const |
Gets the window style that was passed to the constructor or Create() method. | |
long | GetWindowStyle () const |
See GetWindowStyleFlag() for more info. | |
bool | HasExtraStyle (int exFlag) const |
Returns true if the window has the given exFlag bit set in its extra styles. | |
bool | HasFlag (int flag) const |
Returns true if the window has the given flag bit set. | |
virtual void | SetExtraStyle (long exStyle) |
Sets the extra style bits for the window. | |
virtual void | SetWindowStyleFlag (long style) |
Sets the style of the window. | |
void | SetWindowStyle (long style) |
See SetWindowStyleFlag() for more info. | |
bool | ToggleWindowStyle (int flag) |
Turns the given flag on if it's currently turned off and vice versa. | |
Tab order functions | |
void | MoveAfterInTabOrder (wxWindow *win) |
Moves this window in the tab navigation order after the specified win. | |
void | MoveBeforeInTabOrder (wxWindow *win) |
Same as MoveAfterInTabOrder() except that it inserts this window just before win instead of putting it right after it. | |
bool | Navigate (int flags=wxNavigationKeyEvent::IsForward) |
このウィンドウから始まるキーボードナビゲーション処理を実行します。 | |
bool | NavigateIn (int flags=wxNavigationKeyEvent::IsForward) |
Performs a keyboard navigation action inside this window. | |
Z order functions | |
virtual void | Lower () |
Lowers the window to the bottom of the window hierarchy (Z-order). | |
virtual void | Raise () |
Raises the window to the top of the window hierarchy (Z-order). | |
Window status functions | |
bool | Hide () |
Equivalent to calling wxWindow::Show(false). | |
virtual bool | HideWithEffect (wxShowEffect effect, unsigned int timeout=0) |
This function hides a window, like Hide(), but using a special visual effect if possible. | |
bool | IsEnabled () const |
Returns true if the window is enabled, i.e. | |
bool | IsExposed (int x, int y) const |
Returns true if the given point or rectangle area has been exposed since the last repaint. | |
bool | IsExposed (wxPoint &pt) const |
This is an overloaded member function, provided for convenience. It differs from the above function only in what argument(s) it accepts. | |
bool | IsExposed (int x, int y, int w, int h) const |
This is an overloaded member function, provided for convenience. It differs from the above function only in what argument(s) it accepts. | |
bool | IsExposed (wxRect &rect) const |
This is an overloaded member function, provided for convenience. It differs from the above function only in what argument(s) it accepts. | |
virtual bool | IsShown () const |
Returns true if the window is shown, false if it has been hidden. | |
virtual bool | IsShownOnScreen () const |
Returns true if the window is physically visible on the screen, i.e. | |
bool | Disable () |
Disables the window. | |
virtual bool | Enable (bool enable=true) |
Enable or disable the window for user input. | |
virtual bool | Show (bool show=true) |
ウィンドウの表示非表示を切り替えます。 | |
virtual bool | ShowWithEffect (wxShowEffect effect, unsigned int timeout=0) |
This function shows a window, like Show(), but using a special visual effect if possible. | |
Context-sensitive help functions | |
wxString | GetHelpText () const |
Gets the help text to be used as context-sensitive help for this window. | |
void | SetHelpText (const wxString &helpText) |
Sets the help text to be used as context-sensitive help for this window. | |
virtual wxString | GetHelpTextAtPoint (const wxPoint &point, wxHelpEvent::Origin origin) const |
Gets the help text to be used as context-sensitive help for this window. | |
wxToolTip * | GetToolTip () const |
Get the associated tooltip or NULL if none. | |
wxString | GetToolTipText () const |
Get the text of the associated tooltip or empty string if none. | |
void | SetToolTip (const wxString &tipString) |
Attach a tooltip to the window. | |
void | SetToolTip (wxToolTip *tip) |
This is an overloaded member function, provided for convenience. It differs from the above function only in what argument(s) it accepts. | |
void | UnsetToolTip () |
Unset any existing tooltip. | |
Popup/context menu functions | |
int | GetPopupMenuSelectionFromUser (wxMenu &menu, const wxPoint &pos=wxDefaultPosition) |
This function shows a popup menu at the given position in this window and returns the selected id. | |
int | GetPopupMenuSelectionFromUser (wxMenu &menu, int x, int y) |
This is an overloaded member function, provided for convenience. It differs from the above function only in what argument(s) it accepts. | |
bool | PopupMenu (wxMenu *menu, const wxPoint &pos=wxDefaultPosition) |
Pops up the given menu at the specified coordinates, relative to this window, and returns control when the user has dismissed the menu. | |
bool | PopupMenu (wxMenu *menu, int x, int y) |
This is an overloaded member function, provided for convenience. It differs from the above function only in what argument(s) it accepts. | |
virtual wxValidator * | GetValidator () |
Validator functions. | |
virtual void | SetValidator (const wxValidator &validator) |
Deletes the current validator (if any) and sets the window validator, having called wxValidator::Clone to create a new validator of this type. | |
virtual bool | TransferDataFromWindow () |
子コントロールからバリデータで指定されたデータ領域へ値を転送します。 | |
virtual bool | TransferDataToWindow () |
バリデータで指定されたデータ領域から子コントロールへ値を転送します。 | |
virtual bool | Validate () |
バリデータを使用して子コントロールの現在の値を検証します。 | |
wxWindow properties functions | |
wxWindowID | GetId () const |
Returns the identifier of the window. | |
virtual wxString | GetLabel () const |
Generic way of getting a label from any window, for identification purposes. | |
virtual wxLayoutDirection | GetLayoutDirection () const |
Returns the layout direction for this window, Note that wxLayout_Default is returned if layout direction is not supported. | |
virtual wxString | GetName () const |
Returns the window's name. | |
wxWindowVariant | GetWindowVariant () const |
Returns the value previously passed to SetWindowVariant(). | |
void | SetId (wxWindowID winid) |
Sets the identifier of the window. | |
virtual void | SetLabel (const wxString &label) |
Sets the window's label. | |
virtual void | SetLayoutDirection (wxLayoutDirection dir) |
Sets the layout direction for this window. | |
virtual void | SetName (const wxString &name) |
Sets the window's name. | |
void | SetWindowVariant (wxWindowVariant variant) |
This function can be called under all platforms but only does anything under Mac OS X 10.3+ currently. | |
wxAcceleratorTable * | GetAcceleratorTable () |
Gets the accelerator table for this window. | |
wxAccessible * | GetAccessible () |
Returns the accessible object for this window, if any. | |
virtual void | SetAcceleratorTable (const wxAcceleratorTable &accel) |
Sets the accelerator table for this window. | |
void | SetAccessible (wxAccessible *accessible) |
Sets the accessible for this window. | |
Window deletion functions | |
bool | Close (bool force=false) |
This function simply generates a wxCloseEvent whose handler usually tries to close the window. | |
virtual bool | Destroy () |
安全にウィンドウを破棄します。 | |
bool | IsBeingDeleted () const |
Returns true if this window is in process of being destroyed. | |
Drag and drop functions | |
virtual wxDropTarget * | GetDropTarget () const |
Returns the associated drop target, which may be NULL. | |
virtual void | SetDropTarget (wxDropTarget *target) |
このウィンドウに関連付けられたドロップ先。 | |
virtual void | DragAcceptFiles (bool accept) |
Enables or disables eligibility for drop file events (OnDropFiles). | |
Constraints, sizers and window layout functions | |
wxSizer * | GetContainingSizer () const |
Returns the sizer of which this window is a member, if any, otherwise NULL. | |
wxSizer * | GetSizer () const |
Returns the sizer associated with the window by a previous call to SetSizer(), or NULL. | |
void | SetSizer (wxSizer *sizer, bool deleteOld=true) |
Sets the window to have the given layout sizer. | |
void | SetSizerAndFit (wxSizer *sizer, bool deleteOld=true) |
This method calls SetSizer() and then wxSizer::SetSizeHints which sets the initial window size to the size needed to accommodate all sizer elements and sets the size hints which, if this window is a top level one, prevent the user from resizing it to be less than this minimal size. | |
wxLayoutConstraints * | GetConstraints () const |
Returns a pointer to the window's layout constraints, or NULL if there are none. | |
void | SetConstraints (wxLayoutConstraints *constraints) |
Sets the window to have the given layout constraints. | |
virtual bool | Layout () |
Invokes the constraint-based layout algorithm or the sizer-based algorithm for this window. | |
void | SetAutoLayout (bool autoLayout) |
Determines whether the Layout() function will be called automatically when the window is resized. | |
bool | GetAutoLayout () const |
Returns the sizer of which this window is a member, if any, otherwise NULL. | |
Mouse functions | |
void | CaptureMouse () |
Directs all mouse input to this window. | |
wxCaret * | GetCaret () const |
Returns the caret() associated with the window. | |
const wxCursor & | GetCursor () const |
Return the cursor associated with this window. | |
virtual bool | HasCapture () const |
Returns true if this window has the current mouse capture. | |
void | ReleaseMouse () |
Releases mouse input captured with CaptureMouse(). | |
void | SetCaret (wxCaret *caret) |
Sets the caret() associated with the window. | |
virtual bool | SetCursor (const wxCursor &cursor) |
Sets the window's cursor. | |
virtual void | WarpPointer (int x, int y) |
Moves the pointer to the given position on the window. | |
Miscellaneous functions | |
wxHitTest | HitTest (wxCoord x, wxCoord y) const |
Get the window border style from the given flags: this is different from simply doing flags & wxBORDER_MASK because it uses GetDefaultBorder() to translate wxBORDER_DEFAULT to something reasonable. | |
wxHitTest | HitTest (const wxPoint &pt) const |
Get the window border style from the given flags: this is different from simply doing flags & wxBORDER_MASK because it uses GetDefaultBorder() to translate wxBORDER_DEFAULT to something reasonable. | |
wxBorder | GetBorder (long flags) const |
Get the window border style from the given flags: this is different from simply doing flags & wxBORDER_MASK because it uses GetDefaultBorder() to translate wxBORDER_DEFAULT to something reasonable. | |
wxBorder | GetBorder () const |
Get border for the flags of this window. | |
virtual void | DoUpdateWindowUI (wxUpdateUIEvent &event) |
Does the window-specific updating after processing the update event. | |
virtual WXWidget | GetHandle () const |
Returns the platform-specific handle of the physical window. | |
virtual bool | HasMultiplePages () const |
This method should be overridden to return true if this window has multiple pages. | |
virtual void | InheritAttributes () |
This function is (or should be, in case of custom controls) called during window creation to intelligently set up the window visual attributes, that is the font and the foreground and background colours. | |
virtual void | InitDialog () |
Sends an wxEVT_INIT_DIALOG event, whose handler usually transfers data to the dialog via validators. | |
virtual bool | IsDoubleBuffered () const |
Returns true if the window contents is double-buffered by the system, i.e. | |
void | SetDoubleBuffered (bool on) |
Turn on or off double buffering of the window if the system supports it. | |
virtual bool | IsRetained () const |
Returns true if the window is retained, false otherwise. | |
bool | IsThisEnabled () const |
Returns true if this window is intrinsically enabled, false otherwise, i.e. | |
virtual bool | IsTopLevel () const |
Returns true if the given window is a top-level one. | |
virtual void | OnInternalIdle () |
This virtual function is normally only used internally, but sometimes an application may need it to implement functionality that should not be disabled by an application defining an OnIdle handler in a derived class. | |
virtual bool | RegisterHotKey (int hotkeyId, int modifiers, int virtualKeyCode) |
Registers a system wide hotkey. | |
virtual bool | UnregisterHotKey (int hotkeyId) |
Unregisters a system wide hotkey. | |
virtual void | UpdateWindowUI (long flags=wxUPDATE_UI_NONE) |
This function sends one or more wxUpdateUIEvent to the window. | |
Static Public Member Functions | |
Miscellaneous static functions | |
static wxVisualAttributes | GetClassDefaultAttributes (wxWindowVariant variant=wxWINDOW_VARIANT_NORMAL) |
Returns the default font and colours which are used by the control. | |
static wxWindow * | FindFocus () |
Finds the window or control which currently has the keyboard focus. | |
static wxWindow * | FindWindowById (long id, const wxWindow *parent=0) |
Find the first window with the given id. | |
static wxWindow * | FindWindowByLabel (const wxString &label, const wxWindow *parent=0) |
Find a window by its label. | |
static wxWindow * | FindWindowByName (const wxString &name, const wxWindow *parent=0) |
Find a window by its name (as given in a window constructor or Create() function call). | |
static wxWindow * | GetCapture () |
Returns the currently captured window. | |
static wxWindowID | NewControlId (int count=1) |
Create a new ID or range of IDs that are not currently in use. | |
static void | UnreserveControlId (wxWindowID id, int count=1) |
Unreserve an ID or range of IDs that was reserved by NewControlId(). | |
Protected Member Functions | |
virtual void | DoCentre (int direction) |
Centres the window. | |
virtual wxSize | DoGetBestSize () const |
Implementation of GetBestSize() that can be overridden. | |
virtual wxSize | DoGetBestClientSize () const |
Override this method to return the best size for a custom control. | |
virtual int | DoGetBestClientHeight (int width) const |
Override this method to implement height-for-width best size calculation. | |
virtual int | DoGetBestClientWidth (int height) const |
Override this method to implement width-for-height best size calculation. | |
virtual void | SetInitialBestSize (const wxSize &size) |
Sets the initial window size if none is given (i.e. | |
void | SendDestroyEvent () |
Generate wxWindowDestroyEvent for this window. | |
virtual bool | ProcessEvent (wxEvent &event) |
This function is public in wxEvtHandler but protected in wxWindow because for wxWindows you should always call ProcessEvent() on the pointer returned by GetEventHandler() and not on the wxWindow object itself. | |
bool | SafelyProcessEvent (wxEvent &event) |
See ProcessEvent() for more info about why you shouldn't use this function and the reason for making this function protected in wxWindow. | |
virtual void | QueueEvent (wxEvent *event) |
See ProcessEvent() for more info about why you shouldn't use this function and the reason for making this function protected in wxWindow. | |
virtual void | AddPendingEvent (const wxEvent &event) |
See ProcessEvent() for more info about why you shouldn't use this function and the reason for making this function protected in wxWindow. | |
void | ProcessPendingEvents () |
See ProcessEvent() for more info about why you shouldn't use this function and the reason for making this function protected in wxWindow. | |
bool | ProcessThreadEvent (const wxEvent &event) |
See ProcessEvent() for more info about why you shouldn't use this function and the reason for making this function protected in wxWindow. |
wxWindow::wxWindow | ( | ) |
Default constructor.
wxWindow::wxWindow | ( | wxWindow * | parent, |
wxWindowID | id, | ||
const wxPoint & | pos = wxDefaultPosition , |
||
const wxSize & | size = wxDefaultSize , |
||
long | style = 0 , |
||
const wxString & | name = wxPanelNameStr |
||
) |
Constructs a window, which can be a child of a frame, dialog or any other non-control window.
parent | Pointer to a parent window. |
id | Window identifier. If wxID_ANY, will automatically create an identifier. |
pos | Window position. wxDefaultPosition indicates that wxWidgets should generate a default position for the window. If using the wxWindow class directly, supply an actual position. |
size | Window size. wxDefaultSize indicates that wxWidgets should generate a default size for the window. If no suitable size can be found, the window will be sized to 20x20 pixels so that the window is visible but obviously not correctly sized. |
style | Window style. For generic window styles, please see wxWindow. |
name | Window name. |
virtual wxWindow::~wxWindow | ( | ) | [virtual] |
Destructor.
Deletes all sub-windows, then deletes itself. Instead of using the delete operator explicitly, you should normally use Destroy() so that wxWidgets can delete a window only when it is safe to do so, in idle time.
virtual bool wxWindow::AcceptsFocus | ( | ) | const [virtual] |
This method may be overridden in the derived classes to return false to indicate that this control doesn't accept input at all (i.e.
behaves like e.g. wxStaticText) and so doesn't need focus.
Reimplemented in wxPanel.
virtual bool wxWindow::AcceptsFocusFromKeyboard | ( | ) | const [virtual] |
This method may be overridden in the derived classes to return false to indicate that while this control can, in principle, have focus if the user clicks it with the mouse, it shouldn't be included in the TAB traversal chain when using the keyboard.
virtual bool wxWindow::AcceptsFocusRecursively | ( | ) | const [virtual] |
Overridden to indicate whether this window or one of its children accepts focus.
Usually it's the same as AcceptsFocus() but is overridden for container windows.
virtual void wxWindow::AddChild | ( | wxWindow * | child | ) | [virtual] |
Adds a child window.
This is called automatically by window creation functions so should not be required by the application programmer. Notice that this function is mostly internal to wxWidgets and shouldn't be called by the user code.
child | Child window to add. |
virtual void wxWindow::AddPendingEvent | ( | const wxEvent & | event | ) | [protected, virtual] |
See ProcessEvent() for more info about why you shouldn't use this function and the reason for making this function protected in wxWindow.
Reimplemented from wxEvtHandler.
virtual void wxWindow::AlwaysShowScrollbars | ( | bool | hflag = true , |
bool | vflag = true |
||
) | [virtual] |
Call this function to force one or both scrollbars to be always shown, even if the window is big enough to show its entire contents without scrolling.
hflag | Whether the horizontal scroll bar should always be visible. |
vflag | Whether the vertical scroll bar should always be visible. |
void wxWindow::CacheBestSize | ( | const wxSize & | size | ) | const |
Sets the cached best size value.
bool wxWindow::CanScroll | ( | int | orient | ) | const |
Returns true if this window can have a scroll bar in this orientation.
orient | Orientation to check, either wxHORIZONTAL or wxVERTICAL. |
virtual bool wxWindow::CanSetTransparent | ( | ) | [virtual] |
Returns true if the system supports transparent windows and calling SetTransparent() may succeed.
If this function returns false, transparent windows are definitely not supported by the current system.
Reimplemented in wxTopLevelWindow.
void wxWindow::CaptureMouse | ( | ) |
Directs all mouse input to this window.
Call ReleaseMouse() to release the capture.
Note that wxWidgets maintains the stack of windows having captured the mouse and when the mouse is released the capture returns to the window which had had captured it previously and it is only really released if there were no previous window. In particular, this means that you must release the mouse as many times as you capture it, unless the window receives the wxMouseCaptureLostEvent event.
Any application which captures the mouse in the beginning of some operation must handle wxMouseCaptureLostEvent and cancel this operation when it receives the event. The event handler must not recapture mouse.
void wxWindow::Center | ( | int | dir = wxBOTH | ) |
A synonym for Centre().
void wxWindow::CenterOnParent | ( | int | dir = wxBOTH | ) |
A synonym for CentreOnParent().
void wxWindow::Centre | ( | int | direction = wxBOTH | ) |
Centres the window.
direction | Specifies the direction for the centring. May be wxHORIZONTAL, wxVERTICAL or wxBOTH. It may also include the wxCENTRE_ON_SCREEN flag if you want to centre the window on the entire screen and not on its parent window. |
void wxWindow::CentreOnParent | ( | int | direction = wxBOTH | ) |
Centres the window on its parent.
This is a more readable synonym for Centre().
direction | Specifies the direction for the centring. May be wxHORIZONTAL, wxVERTICAL or wxBOTH. |
virtual void wxWindow::ClearBackground | ( | ) | [virtual] |
Clears the window by filling it with the current background colour.
Does not cause an erase background event to be generated.
Notice that this uses wxClientDC to draw on the window and the results of doing it while also drawing on wxPaintDC for this window are undefined. Hence this method shouldn't be used from EVT_PAINT handlers, just use wxDC::Clear() on the wxPaintDC you already use there instead.
void wxWindow::ClientToScreen | ( | int * | x, |
int * | y | ||
) | const |
Converts to screen coordinates from coordinates relative to this window.
x | A pointer to a integer value for the x coordinate. Pass the client coordinate in, and a screen coordinate will be passed out. |
y | A pointer to a integer value for the y coordinate. Pass the client coordinate in, and a screen coordinate will be passed out. |
wxPerl Note: In wxPerl this method returns a 2-element list instead of modifying its parameters.
Converts to screen coordinates from coordinates relative to this window.
pt | The client position for the second form of the function. |
Converts client area size size to corresponding window size.
In other words, the returned value is what would GetSize() return if this window had client area of given size. Components with wxDefaultCoord value are left unchanged. Note that the conversion is not always exact, it assumes that non-client area doesn't change and so doesn't take into account things like menu bar (un)wrapping or (dis)appearance of the scrollbars.
bool wxWindow::Close | ( | bool | force = false | ) |
This function simply generates a wxCloseEvent whose handler usually tries to close the window.
It doesn't close the window itself, however.
force | false if the window's close handler should be able to veto the destruction of this window, true if it cannot. |
Converts a point or size from dialog units to pixels.
For the x dimension, the dialog units are multiplied by the average character width and then divided by 4. For the y dimension, the dialog units are multiplied by the average character height and then divided by 8.
#define wxDLG_UNIT(parent, pt) parent->ConvertDialogToPixels(pt)
This is an overloaded member function, provided for convenience. It differs from the above function only in what argument(s) it accepts.
Converts a point or size from pixels to dialog units.
For the x dimension, the pixels are multiplied by 4 and then divided by the average character width. For the y dimension, the pixels are multiplied by 8 and then divided by the average character height.
This is an overloaded member function, provided for convenience. It differs from the above function only in what argument(s) it accepts.
bool wxWindow::Create | ( | wxWindow * | parent, |
wxWindowID | id, | ||
const wxPoint & | pos = wxDefaultPosition , |
||
const wxSize & | size = wxDefaultSize , |
||
long | style = 0 , |
||
const wxString & | name = wxPanelNameStr |
||
) |
Reimplemented in wxBookCtrlBase, wxChoicebook, wxHeaderCtrl, wxHtmlListBox, wxSashLayoutWindow, wxListbook, wxNotebook, wxPanel, wxPropertyGridManager, wxPropertyGrid, wxSpinButton, wxSplitterWindow, wxStaticLine, wxStyledTextCtrl, wxToolbook, wxTreebook, wxTreeListCtrl, wxVListBox, wxVScrolledWindow, wxHScrolledWindow, and wxHVScrolledWindow.
virtual bool wxWindow::Destroy | ( | ) | [virtual] |
安全にウィンドウを破棄します。
Use this function instead of the delete operator, since different window classes can be destroyed differently. Frames and dialogs are not destroyed immediately when this function is called -- they are added to a list of windows to be deleted on idle time, when all the window's events have been processed. This prevents problems with events being sent to non-existent windows.
bool wxWindow::DestroyChildren | ( | ) |
Destroys all children of a window.
Called automatically by the destructor.
bool wxWindow::Disable | ( | ) |
Disables the window.
Same as Enable() Enable(false).
virtual void wxWindow::DoCentre | ( | int | direction | ) | [protected, virtual] |
Centres the window.
direction | Specifies the direction for the centring. May be wxHORIZONTAL, wxVERTICAL or wxBOTH. It may also include the wxCENTRE_ON_SCREEN flag. |
virtual int wxWindow::DoGetBestClientHeight | ( | int | width | ) | const [protected, virtual] |
Override this method to implement height-for-width best size calculation.
Return the height needed to fully display the control contents if its width is fixed to the given value. Custom classes implementing wrapping should override this method and return the height corresponding to the number of lines needed to lay out the control contents at this width.
Currently this method is not used by wxWidgets yet, however it is planned that it will be used by the new sizer classes implementing height-for-width layout strategy in the future.
Notice that implementing this method or even implementing both it and DoGetBestClientWidth() doesn't replace overriding DoGetBestClientSize(), i.e. you still need to implement the latter as well in order to provide the best size when neither width nor height are constrained.
By default returns wxDefaultCoord meaning that the vertical component of DoGetBestClientSize() return value should be used.
virtual wxSize wxWindow::DoGetBestClientSize | ( | ) | const [protected, virtual] |
Override this method to return the best size for a custom control.
A typical implementation of this method should compute the minimal size needed to fully display the control contents taking into account the current font size.
The default implementation simply returns wxDefaultSize and GetBestSize() returns an arbitrary hardcoded size for the window, so you must override it when implementing a custom window class.
virtual int wxWindow::DoGetBestClientWidth | ( | int | height | ) | const [protected, virtual] |
Override this method to implement width-for-height best size calculation.
This method is exactly the same as DoGetBestClientHeight() except that it determines the width assuming the height is fixed instead of vice versa.
virtual wxSize wxWindow::DoGetBestSize | ( | ) | const [protected, virtual] |
Implementation of GetBestSize() that can be overridden.
Notice that it is usually more convenient to override DoGetBestClientSize() rather than this method itself as you need to explicitly account for the window borders size if you do the latter.
The default implementation of this function is designed for use in container windows, such as wxPanel, and works something like this:
Reimplemented in wxRichTextCtrl.
virtual void wxWindow::DoUpdateWindowUI | ( | wxUpdateUIEvent & | event | ) | [virtual] |
Does the window-specific updating after processing the update event.
This function is called by UpdateWindowUI() in order to check return values in the wxUpdateUIEvent and act appropriately. For example, to allow frame and dialog title updating, wxWidgets implements this function as follows:
// do the window-specific processing after processing the update event void wxTopLevelWindowBase::DoUpdateWindowUI(wxUpdateUIEvent& event) { if ( event.GetSetEnabled() ) Enable(event.GetEnabled()); if ( event.GetSetText() ) { if ( event.GetText() != GetTitle() ) SetTitle(event.GetText()); } }
virtual void wxWindow::DragAcceptFiles | ( | bool | accept | ) | [virtual] |
Enables or disables eligibility for drop file events (OnDropFiles).
accept | If true, the window is eligible for drop file events. If false, the window will not accept drop file events. |
virtual bool wxWindow::Enable | ( | bool | enable = true | ) | [virtual] |
Enable or disable the window for user input.
Note that when a parent window is disabled, all of its children are disabled as well and they are reenabled again when the parent is.
enable | If true, enables the window for input. If false, disables the window. |
static wxWindow* wxWindow::FindFocus | ( | ) | [static] |
Finds the window or control which currently has the keyboard focus.
wxWindow* wxWindow::FindWindow | ( | long | id | ) | const |
Find a child of this window, by id.
May return this if it matches itself.
Find a child of this window, by name.
May return this if it matches itself.
Find the first window with the given id.
If parent is NULL, the search will start from all top-level frames and dialog boxes; if non-NULL, the search will be limited to the given window hierarchy. The search is recursive in both cases.
static wxWindow* wxWindow::FindWindowByLabel | ( | const wxString & | label, |
const wxWindow * | parent = 0 |
||
) | [static] |
Find a window by its label.
Depending on the type of window, the label may be a window title or panel item label. If parent is NULL, the search will start from all top-level frames and dialog boxes; if non-NULL, the search will be limited to the given window hierarchy. The search is recursive in both cases.
static wxWindow* wxWindow::FindWindowByName | ( | const wxString & | name, |
const wxWindow * | parent = 0 |
||
) | [static] |
Find a window by its name (as given in a window constructor or Create() function call).
If parent is NULL, the search will start from all top-level frames and dialog boxes; if non-NULL, the search will be limited to the given window hierarchy.
The search is recursive in both cases. If no window with such name is found, FindWindowByLabel() is called.
virtual void wxWindow::Fit | ( | ) | [virtual] |
サブウィンドウにフィットするようにウィンドウのサイズを設定します。
This function won't do anything if there are no subwindows and will only really work correctly if sizers are used for the subwindows layout.
Also, if the window has exactly one subwindow it is better (faster and the result is more precise as Fit() adds some margin to account for fuzziness of its calculations) to call:
window->SetClientSize(child->GetSize());
instead of calling Fit().
virtual void wxWindow::FitInside | ( | ) | [virtual] |
Similar to Fit(), but sizes the interior (virtual) size of a window.
Mainly useful with scrolled windows to reset scrollbars after sizing changes that do not trigger a size event, and/or scrolled windows without an interior sizer. This function similarly won't do anything if there are no subwindows.
void wxWindow::Freeze | ( | ) |
ウィンドウをフリーズ、つまり、画面上のいかなる更新も行われないようにします。これを行なうとウィンドウはまったく再描画されなくなります。
Thaw() must be called to reenable window redrawing. Calls to these two functions may be nested but to ensure that the window is properly repainted again, you must thaw it exactly as many times as you froze it.
If the window has any children, they are recursively frozen too.
This method is useful for visual appearance optimization (for example, it is a good idea to use it before doing many large text insertions in a row into a wxTextCtrl under wxGTK) but is not implemented on all platforms nor for all controls so it is mostly just a hint to wxWidgets and not a mandatory directive.
wxAcceleratorTable* wxWindow::GetAcceleratorTable | ( | ) |
Gets the accelerator table for this window.
See wxAcceleratorTable.
wxAccessible* wxWindow::GetAccessible | ( | ) |
Returns the accessible object for this window, if any.
See also wxAccessible.
bool wxWindow::GetAutoLayout | ( | ) | const |
Returns the sizer of which this window is a member, if any, otherwise NULL.
wxColour wxWindow::GetBackgroundColour | ( | ) | const |
Returns the background colour of the window.
virtual wxBackgroundStyle wxWindow::GetBackgroundStyle | ( | ) | const [virtual] |
Returns the background style of the window.
int wxWindow::GetBestHeight | ( | int | width | ) | const |
Returns the best height needed by this window if it had the given width.
wxSize wxWindow::GetBestSize | ( | ) | const |
This functions returns the best acceptable minimal size for the window.
For example, for a static control, it will be the minimal size such that the control label is not truncated. For windows containing subwindows (typically wxPanel), the size returned by this function will be the same as the size the window would have had after calling Fit().
Override virtual DoGetBestSize() or, better, because it's usually more convenient, DoGetBestClientSize() when writing your own custom window class to change the value returned by this public non-virtual method.
Reimplemented in wxMediaCtrl.
virtual wxSize wxWindow::GetBestVirtualSize | ( | ) | const [virtual] |
Return the largest of ClientSize and BestSize (as determined by a sizer, interior children, or other means)
int wxWindow::GetBestWidth | ( | int | height | ) | const |
Returns the best width needed by this window if it had the given height.
wxBorder wxWindow::GetBorder | ( | long | flags | ) | const |
Get the window border style from the given flags: this is different from simply doing flags & wxBORDER_MASK because it uses GetDefaultBorder() to translate wxBORDER_DEFAULT to something reasonable.
wxBorder wxWindow::GetBorder | ( | ) | const |
Get border for the flags of this window.
static wxWindow* wxWindow::GetCapture | ( | ) | [static] |
Returns the currently captured window.
wxCaret* wxWindow::GetCaret | ( | ) | const |
Returns the caret() associated with the window.
virtual int wxWindow::GetCharHeight | ( | ) | const [virtual] |
Returns the character height for this window.
virtual int wxWindow::GetCharWidth | ( | ) | const [virtual] |
Returns the average character width for this window.
wxWindowList& wxWindow::GetChildren | ( | ) |
Returns a reference to the list of the window's children.
wxWindowList
is a type-safe wxList-like class whose elements are of type wxWindow*
.
const wxWindowList& wxWindow::GetChildren | ( | ) | const |
This is an overloaded member function, provided for convenience. It differs from the above function only in what argument(s) it accepts.
static wxVisualAttributes wxWindow::GetClassDefaultAttributes | ( | wxWindowVariant | variant = wxWINDOW_VARIANT_NORMAL | ) | [static] |
Returns the default font and colours which are used by the control.
This is useful if you want to use the same font or colour in your own control as in a standard control -- which is a much better idea than hard coding specific colours or fonts which might look completely out of place on the users system, especially if it uses themes.
The variant parameter is only relevant under Mac currently and is ignore under other platforms. Under Mac, it will change the size of the returned font. See SetWindowVariant() for more about this.
This static method is "overridden" in many derived classes and so calling, for example, wxButton::GetClassDefaultAttributes() will typically return the values appropriate for a button which will be normally different from those returned by, say, wxListCtrl::GetClassDefaultAttributes().
The wxVisualAttributes
structure has at least the fields font
, colFg
and colBg
. All of them may be invalid if it was not possible to determine the default control appearance or, especially for the background colour, if the field doesn't make sense as is the case for colBg
for the controls with themed background.
virtual wxPoint wxWindow::GetClientAreaOrigin | ( | ) | const [virtual] |
Get the origin of the client area of the window relative to the window top left corner (the client area may be shifted because of the borders, scrollbars, other decorations...)
Reimplemented in wxFrame.
wxRect wxWindow::GetClientRect | ( | ) | const |
Get the client rectangle in window (i.e.
client) coordinates
void wxWindow::GetClientSize | ( | int * | width, |
int * | height | ||
) | const |
Returns the size of the window 'client area' in pixels.
The client area is the area which may be drawn on by the programmer, excluding title bar, border, scrollbars, etc. Note that if this window is a top-level one and it is currently minimized, the return size is empty (both width and height are 0).
wxPerl Note: In wxPerl this method takes no parameters and returns a 2-element list (width, height).
wxSize wxWindow::GetClientSize | ( | ) | const |
This is an overloaded member function, provided for convenience. It differs from the above function only in what argument(s) it accepts.
wxLayoutConstraints* wxWindow::GetConstraints | ( | ) | const |
Returns a pointer to the window's layout constraints, or NULL if there are none.
wxSizer* wxWindow::GetContainingSizer | ( | ) | const |
Returns the sizer of which this window is a member, if any, otherwise NULL.
const wxCursor& wxWindow::GetCursor | ( | ) | const |
Return the cursor associated with this window.
virtual wxVisualAttributes wxWindow::GetDefaultAttributes | ( | ) | const [virtual] |
Currently this is the same as calling wxWindow::GetClassDefaultAttributes(wxWindow::GetWindowVariant()).
One advantage of using this function compared to the static version is that the call is automatically dispatched to the correct class (as usual with virtual functions) and you don't have to specify the class name explicitly.
The other one is that in the future this function could return different results, for example it might return a different font for an "Ok" button than for a generic button if the users GUI is configured to show such buttons in bold font. Of course, the down side is that it is impossible to call this function without actually having an object to apply it to whereas the static version can be used without having to create an object first.
virtual wxDropTarget* wxWindow::GetDropTarget | ( | ) | const [virtual] |
Returns the associated drop target, which may be NULL.
virtual wxSize wxWindow::GetEffectiveMinSize | ( | ) | const [virtual] |
ウィンドウの最適サイズを最小サイズにマージし、その結果を返却します。
This is the value used by sizers to determine the appropriate amount of space to allocate for the widget.
This is the method called by a wxSizer when it queries the size of a window or control.
wxEvtHandler* wxWindow::GetEventHandler | ( | ) | const |
Returns the event handler for this window.
By default, the window is its own event handler.
long wxWindow::GetExtraStyle | ( | ) | const |
Returns the extra style bits for the window.
wxColour wxWindow::GetForegroundColour | ( | ) | const |
Returns the foreground colour of the window.
wxWindow* wxWindow::GetGrandParent | ( | ) | const |
Returns the grandparent of a window, or NULL if there isn't one.
virtual WXWidget wxWindow::GetHandle | ( | ) | const [virtual] |
Returns the platform-specific handle of the physical window.
Cast it to an appropriate handle, such as HWND for Windows, Widget for Motif or GtkWidget for GTK.
wxPerl Note: This method will return an integer in wxPerl.
wxString wxWindow::GetHelpText | ( | ) | const |
Gets the help text to be used as context-sensitive help for this window.
Note that the text is actually stored by the current wxHelpProvider implementation, and not in the window object itself.
virtual wxString wxWindow::GetHelpTextAtPoint | ( | const wxPoint & | point, |
wxHelpEvent::Origin | origin | ||
) | const [virtual] |
Gets the help text to be used as context-sensitive help for this window.
This method should be overridden if the help message depends on the position inside the window, otherwise GetHelpText() can be used.
point | Coordinates of the mouse at the moment of help event emission. |
origin | Help event origin, see also wxHelpEvent::GetOrigin. |
wxWindowID wxWindow::GetId | ( | ) | const |
Returns the identifier of the window.
virtual wxString wxWindow::GetLabel | ( | ) | const [virtual] |
Generic way of getting a label from any window, for identification purposes.
Reimplemented in wxButton, wxCommandLinkButton, and wxControl.
virtual wxLayoutDirection wxWindow::GetLayoutDirection | ( | ) | const [virtual] |
Returns the layout direction for this window, Note that wxLayout_Default
is returned if layout direction is not supported.
virtual wxSize wxWindow::GetMaxClientSize | ( | ) | const [virtual] |
Returns the maximum size of window's client area.
This is an indication to the sizer layout mechanism that this is the maximum possible size as well as the upper bound on window's size settable using SetClientSize().
int wxWindow::GetMaxHeight | ( | ) | const |
Sets the cached best size value.
virtual wxSize wxWindow::GetMaxSize | ( | ) | const [virtual] |
Returns the maximum size of the window.
This is an indication to the sizer layout mechanism that this is the maximum possible size as well as the upper bound on window's size settable using SetSize().
int wxWindow::GetMaxWidth | ( | ) | const |
Sets the cached best size value.
virtual wxSize wxWindow::GetMinClientSize | ( | ) | const [virtual] |
Returns the minimum size of window's client area, an indication to the sizer layout mechanism that this is the minimum required size of its client area.
It normally just returns the value set by SetMinClientSize(), but it can be overridden to do the calculation on demand.
int wxWindow::GetMinHeight | ( | ) | const |
Sets the cached best size value.
virtual wxSize wxWindow::GetMinSize | ( | ) | const [virtual] |
Returns the minimum size of the window, an indication to the sizer layout mechanism that this is the minimum required size.
This method normally just returns the value set by SetMinSize(), but it can be overridden to do the calculation on demand.
int wxWindow::GetMinWidth | ( | ) | const |
Sets the cached best size value.
virtual wxString wxWindow::GetName | ( | ) | const [virtual] |
wxWindow* wxWindow::GetNextSibling | ( | ) | const |
Returns the next window after this one among the parent's children or NULL if this window is the last child.
wxWindow* wxWindow::GetParent | ( | ) | const |
Returns the parent of the window, or NULL if there is no parent.
int wxWindow::GetPopupMenuSelectionFromUser | ( | wxMenu & | menu, |
const wxPoint & | pos = wxDefaultPosition |
||
) |
This function shows a popup menu at the given position in this window and returns the selected id.
It can be more convenient than the general purpose PopupMenu() function for simple menus proposing a choice in a list of strings to the user.
Notice that to avoid unexpected conflicts between the (usually consecutive range of) ids used by the menu passed to this function and the existing EVT_UPDATE_UI() handlers, this function temporarily disables UI updates for the window, so you need to manually disable (or toggle or ...) any items which should be disabled in the menu before showing it.
The parameter menu is the menu to show. The parameter pos (or the parameters x and y) is the position at which to show the menu in client coordinates. It is recommended to not explicitly specify coordinates when calling this method in response to mouse click, because some of the ports (namely, wxGTK) can do a better job of positioning the menu in that case.
wxID_NONE
if none selected or an error occurred.int wxWindow::GetPopupMenuSelectionFromUser | ( | wxMenu & | menu, |
int | x, | ||
int | y | ||
) |
This is an overloaded member function, provided for convenience. It differs from the above function only in what argument(s) it accepts.
void wxWindow::GetPosition | ( | int * | x, |
int * | y | ||
) | const |
This gets the position of the window in pixels, relative to the parent window for the child windows or relative to the display origin for the top level windows.
x | Receives the x position of the window if non-NULL. |
y | Receives the y position of the window if non-NULL. |
wxPerl Note: In wxPerl this method is implemented as GetPositionXY() returning a 2-element list (x, y).
wxPoint wxWindow::GetPosition | ( | ) | const |
This gets the position of the window in pixels, relative to the parent window for the child windows or relative to the display origin for the top level windows.
wxWindow* wxWindow::GetPrevSibling | ( | ) | const |
Returns the previous window before this one among the parent's children or NULL if this window is the first child.
void wxWindow::GetScreenPosition | ( | int * | x, |
int * | y | ||
) | const |
Returns the window position in screen coordinates, whether the window is a child window or a top level one.
x | Receives the x position of the window on the screen if non-NULL. |
y | Receives the y position of the window on the screen if non-NULL. |
wxPoint wxWindow::GetScreenPosition | ( | ) | const |
Returns the window position in screen coordinates, whether the window is a child window or a top level one.
wxRect wxWindow::GetScreenRect | ( | ) | const |
virtual int wxWindow::GetScrollPos | ( | int | orientation | ) | const [virtual] |
Returns the built-in scrollbar position.
virtual int wxWindow::GetScrollRange | ( | int | orientation | ) | const [virtual] |
Returns the built-in scrollbar range.
virtual int wxWindow::GetScrollThumb | ( | int | orientation | ) | const [virtual] |
Returns the built-in scrollbar thumb size.
void wxWindow::GetSize | ( | int * | width, |
int * | height | ||
) | const |
タイトルバー、ボーダー、スクロールバーなどを含む、ウィンドウ全体のサイズをピクセル単位で返却します。
Note that if this window is a top-level one and it is currently minimized, the returned size is the restored window size, not the size of the window icon.
width | Receives the window width. |
height | Receives the window height. |
wxPerl Note: In wxPerl this method is implemented as GetSizeWH() returning a 2-element list (width, height).
wxSize wxWindow::GetSize | ( | ) | const |
See the GetSize(int*,int*) overload for more info.
wxSizer* wxWindow::GetSizer | ( | ) | const |
Returns the sizer associated with the window by a previous call to SetSizer(), or NULL.
void wxWindow::GetTextExtent | ( | const wxString & | string, |
int * | w, | ||
int * | h, | ||
int * | descent = NULL , |
||
int * | externalLeading = NULL , |
||
const wxFont * | font = NULL |
||
) | const |
Gets the dimensions of the string as it would be drawn on the window with the currently selected font.
The text extent is returned in the w and h pointers.
string | String whose extent is to be measured. |
w | Return value for width. |
h | Return value for height. |
descent | Return value for descent (optional). |
externalLeading | Return value for external leading (optional). |
font | Font to use instead of the current window font (optional). |
wxPerl Note: In wxPerl this method takes only the string and optionally font parameters, and returns a 4-element list (x, y, descent, externalLeading).
Gets the dimensions of the string as it would be drawn on the window with the currently selected font.
virtual bool wxWindow::GetThemeEnabled | ( | ) | const [virtual] |
Clears the window by filling it with the current background colour.
Does not cause an erase background event to be generated.
Notice that this uses wxClientDC to draw on the window and the results of doing it while also drawing on wxPaintDC for this window are undefined. Hence this method shouldn't be used from EVT_PAINT handlers, just use wxDC::Clear() on the wxPaintDC you already use there instead.
wxToolTip* wxWindow::GetToolTip | ( | ) | const |
Get the associated tooltip or NULL if none.
wxString wxWindow::GetToolTipText | ( | ) | const |
Get the text of the associated tooltip or empty string if none.
wxRect wxWindow::GetUpdateClientRect | ( | ) | const |
Get the update rectangle bounding box in client coords.
const wxRegion& wxWindow::GetUpdateRegion | ( | ) | const |
Returns the region specifying which parts of the window have been damaged.
Should only be called within an wxPaintEvent handler.
virtual wxValidator* wxWindow::GetValidator | ( | ) | [virtual] |
Validator functions.
Returns a pointer to the current validator for the window, or NULL if there is none.
wxSize wxWindow::GetVirtualSize | ( | ) | const |
This gets the virtual size of the window in pixels.
By default it returns the client size of the window, but after a call to SetVirtualSize() it will return the size set with that method.
void wxWindow::GetVirtualSize | ( | int * | width, |
int * | height | ||
) | const |
Like the other GetVirtualSize() overload but uses pointers instead.
width | Receives the window virtual width. |
height | Receives the window virtual height. |
virtual wxSize wxWindow::GetWindowBorderSize | ( | ) | const [virtual] |
Returns the size of the left/right and top/bottom borders of this window in x and y components of the result respectively.
long wxWindow::GetWindowStyle | ( | ) | const |
See GetWindowStyleFlag() for more info.
virtual long wxWindow::GetWindowStyleFlag | ( | ) | const [virtual] |
Gets the window style that was passed to the constructor or Create() method.
GetWindowStyle() is another name for the same function.
Reimplemented in wxAuiToolBar.
wxWindowVariant wxWindow::GetWindowVariant | ( | ) | const |
Returns the value previously passed to SetWindowVariant().
bool wxWindow::HandleAsNavigationKey | ( | const wxKeyEvent & | event | ) |
This function will generate the appropriate call to Navigate() if the key event is one normally used for keyboard navigation and return true in this case.
bool wxWindow::HandleWindowEvent | ( | wxEvent & | event | ) | const |
virtual bool wxWindow::HasCapture | ( | ) | const [virtual] |
Returns true if this window has the current mouse capture.
bool wxWindow::HasExtraStyle | ( | int | exFlag | ) | const |
Returns true if the window has the given exFlag bit set in its extra styles.
bool wxWindow::HasFlag | ( | int | flag | ) | const |
Returns true if the window has the given flag bit set.
virtual bool wxWindow::HasFocus | ( | ) | const [virtual] |
Returns true if the window (or in case of composite controls, its main child window) has focus.
virtual bool wxWindow::HasMultiplePages | ( | ) | const [virtual] |
This method should be overridden to return true if this window has multiple pages.
All standard class with multiple pages such as wxNotebook, wxListbook and wxTreebook already override it to return true and user-defined classes with similar behaviour should also do so, to allow the library to handle such windows appropriately.
bool wxWindow::HasScrollbar | ( | int | orient | ) | const |
Returns true if this window currently has a scroll bar for this orientation.
This method may return false even when CanScroll() for the same orientation returns true, but if CanScroll() returns false, i.e. scrolling in this direction is not enabled at all, HasScrollbar() always returns false as well.
orient | Orientation to check, either wxHORIZONTAL or wxVERTICAL. |
virtual bool wxWindow::HasTransparentBackground | ( | ) | [virtual] |
Returns true if this window background is transparent (as, for example, for wxStaticText) and should show the parent window background.
This method is mostly used internally by the library itself and you normally shouldn't have to call it. You may, however, have to override it in your wxWindow-derived class to ensure that background is painted correctly.
bool wxWindow::Hide | ( | ) |
Equivalent to calling wxWindow::Show(false).
virtual bool wxWindow::HideWithEffect | ( | wxShowEffect | effect, |
unsigned int | timeout = 0 |
||
) | [virtual] |
This function hides a window, like Hide(), but using a special visual effect if possible.
The parameters of this function are the same as for ShowWithEffect(), please see their description there.
Get the window border style from the given flags: this is different from simply doing flags & wxBORDER_MASK because it uses GetDefaultBorder() to translate wxBORDER_DEFAULT to something reasonable.
Reimplemented in wxListBox.
Get the window border style from the given flags: this is different from simply doing flags & wxBORDER_MASK because it uses GetDefaultBorder() to translate wxBORDER_DEFAULT to something reasonable.
Reimplemented in wxListBox, and wxPropertyGrid.
virtual bool wxWindow::InformFirstDirection | ( | int | direction, |
int | size, | ||
int | availableOtherDir | ||
) | [virtual] |
wxSizer and friends use this to give a chance to a component to recalc its min size once one of the final size components is known.
Override this function when that is useful (such as for wxStaticText which can stretch over several lines). Parameter availableOtherDir tells the item how much more space there is available in the opposite direction (-1 if unknown).
virtual void wxWindow::InheritAttributes | ( | ) | [virtual] |
This function is (or should be, in case of custom controls) called during window creation to intelligently set up the window visual attributes, that is the font and the foreground and background colours.
By "intelligently" the following is meant: by default, all windows use their own GetClassDefaultAttributes() default attributes. However if some of the parents attributes are explicitly (that is, using SetFont() and not wxWindow::SetOwnFont) changed and if the corresponding attribute hadn't been explicitly set for this window itself, then this window takes the same value as used by the parent. In addition, if the window overrides ShouldInheritColours() to return false, the colours will not be changed no matter what and only the font might.
This rather complicated logic is necessary in order to accommodate the different usage scenarios. The most common one is when all default attributes are used and in this case, nothing should be inherited as in modern GUIs different controls use different fonts (and colours) than their siblings so they can't inherit the same value from the parent. However it was also deemed desirable to allow to simply change the attributes of all children at once by just changing the font or colour of their common parent, hence in this case we do inherit the parents attributes.
virtual void wxWindow::InitDialog | ( | ) | [virtual] |
Sends an wxEVT_INIT_DIALOG
event, whose handler usually transfers data to the dialog via validators.
Reimplemented in wxPanel.
void wxWindow::InvalidateBestSize | ( | ) |
Resets the cached best size value so it will be recalculated the next time it is needed.
bool wxWindow::IsBeingDeleted | ( | ) | const |
Returns true if this window is in process of being destroyed.
Top level windows are not deleted immediately but are rather scheduled for later destruction to give them time to process any pending messages; see Destroy() description.
This function returns true if this window, or one of its parent windows, is scheduled for destruction and can be useful to avoid manipulating it as it's usually useless to do something with a window which is on the point of disappearing anyhow.
bool wxWindow::IsDescendant | ( | wxWindowBase * | win | ) | const |
Check if the specified window is a descendant of this one.
Returns true if the window is a descendant (i.e. a child or grand-child or grand-grand-child or ...) of this one.
Notice that a window can never be a descendant of another one if they are in different top level windows, i.e. a child of a wxDialog is not considered to be a descendant of dialogs parent wxFrame.
win | Any window, possible NULL (false is always returned then). |
virtual bool wxWindow::IsDoubleBuffered | ( | ) | const [virtual] |
Returns true if the window contents is double-buffered by the system, i.e.
if any drawing done on the window is really done on a temporary backing surface and transferred to the screen all at once later.
bool wxWindow::IsEnabled | ( | ) | const |
Returns true if the window is enabled, i.e.
if it accepts user input, false otherwise.
Notice that this method can return false even if this window itself hadn't been explicitly disabled when one of its parent windows is disabled. To get the intrinsic status of this window, use IsThisEnabled()
bool wxWindow::IsExposed | ( | int | x, |
int | y | ||
) | const |
Returns true if the given point or rectangle area has been exposed since the last repaint.
Call this in an paint event handler to optimize redrawing by only redrawing those areas, which have been exposed.
bool wxWindow::IsExposed | ( | wxPoint & | pt | ) | const |
This is an overloaded member function, provided for convenience. It differs from the above function only in what argument(s) it accepts.
bool wxWindow::IsExposed | ( | wxRect & | rect | ) | const |
This is an overloaded member function, provided for convenience. It differs from the above function only in what argument(s) it accepts.
bool wxWindow::IsExposed | ( | int | x, |
int | y, | ||
int | w, | ||
int | h | ||
) | const |
This is an overloaded member function, provided for convenience. It differs from the above function only in what argument(s) it accepts.
bool wxWindow::IsFrozen | ( | ) | const |
Returns true if the window is currently frozen by a call to Freeze().
Reimplemented in wxPropertyGridManager, and wxPropertyGrid.
virtual bool wxWindow::IsRetained | ( | ) | const [virtual] |
Returns true if the window is retained, false otherwise.
virtual bool wxWindow::IsScrollbarAlwaysShown | ( | int | orient | ) | const [virtual] |
Return whether a scrollbar is always shown.
orient | Orientation to check, either wxHORIZONTAL or wxVERTICAL. |
virtual bool wxWindow::IsShown | ( | ) | const [virtual] |
Returns true if the window is shown, false if it has been hidden.
virtual bool wxWindow::IsShownOnScreen | ( | ) | const [virtual] |
Returns true if the window is physically visible on the screen, i.e.
it is shown and all its parents up to the toplevel window are shown as well.
bool wxWindow::IsThisEnabled | ( | ) | const |
Returns true if this window is intrinsically enabled, false otherwise, i.e.
if Enable() Enable(false) had been called. This method is mostly used for wxWidgets itself, user code should normally use IsEnabled() instead.
virtual bool wxWindow::IsTopLevel | ( | ) | const [virtual] |
Returns true if the given window is a top-level one.
Currently all frames and dialogs are considered to be top-level windows (even if they have a parent window).
virtual bool wxWindow::IsTransparentBackgroundSupported | ( | wxString * | reason = NULL | ) | const [virtual] |
Checks whether using transparent background might work.
If this function returns false, calling SetBackgroundStyle() with wxBG_STYLE_TRANSPARENT is not going to work. If it returns true, setting transparent style should normally succeed.
Notice that this function would typically be called on the parent of a window you want to set transparent background style for as the window for which this method is called must be fully created.
reason | If not NULL, a reason message is provided if transparency is not supported. |
virtual bool wxWindow::Layout | ( | ) | [virtual] |
Invokes the constraint-based layout algorithm or the sizer-based algorithm for this window.
This function does not get called automatically when the window is resized because lots of windows deriving from wxWindow does not need this functionality. If you want to have Layout() called automatically, you should derive from wxPanel (see wxPanel::Layout).
Reimplemented in wxPanel, and wxTopLevelWindow.
bool wxWindow::LineDown | ( | ) |
Same as ScrollLines (1).
Reimplemented in wxStyledTextCtrl.
bool wxWindow::LineUp | ( | ) |
Same as ScrollLines (-1).
Reimplemented in wxStyledTextCtrl.
virtual void wxWindow::Lower | ( | ) | [virtual] |
Lowers the window to the bottom of the window hierarchy (Z-order).
void wxWindow::Move | ( | int | x, |
int | y, | ||
int | flags = wxSIZE_USE_EXISTING |
||
) |
Moves the window to the given position.
x | Required x position. |
y | Required y position. |
flags | See SetSize() for more info about this parameter. |
void wxWindow::Move | ( | const wxPoint & | pt, |
int | flags = wxSIZE_USE_EXISTING |
||
) |
Moves the window to the given position.
pt | wxPoint object representing the position. |
flags | See SetSize() for more info about this parameter. |
void wxWindow::MoveAfterInTabOrder | ( | wxWindow * | win | ) |
Moves this window in the tab navigation order after the specified win.
This means that when the user presses TAB
key on that other window, the focus switches to this window.
Default tab order is the same as creation order, this function and MoveBeforeInTabOrder() allow to change it after creating all the windows.
win | A sibling of this window which should precede it in tab order, must not be NULL |
void wxWindow::MoveBeforeInTabOrder | ( | wxWindow * | win | ) |
Same as MoveAfterInTabOrder() except that it inserts this window just before win instead of putting it right after it.
bool wxWindow::Navigate | ( | int | flags = wxNavigationKeyEvent::IsForward | ) |
このウィンドウから始まるキーボードナビゲーション処理を実行します。
This method is equivalent to calling NavigateIn() method on the parent window.
flags | A combination of wxNavigationKeyEvent::IsForward and wxNavigationKeyEvent::WinChange. |
bool wxWindow::NavigateIn | ( | int | flags = wxNavigationKeyEvent::IsForward | ) |
Performs a keyboard navigation action inside this window.
See Navigate() for more information.
static wxWindowID wxWindow::NewControlId | ( | int | count = 1 | ) | [static] |
Create a new ID or range of IDs that are not currently in use.
The IDs will be reserved until assigned to a wxWindow ID or unreserved with UnreserveControlId().
See Window IDs for more information.
count | The number of sequential IDs to reserve. |
virtual void wxWindow::OnInternalIdle | ( | ) | [virtual] |
This virtual function is normally only used internally, but sometimes an application may need it to implement functionality that should not be disabled by an application defining an OnIdle handler in a derived class.
This function may be used to do delayed painting, for example, and most implementations call UpdateWindowUI() in order to send update events to the window in idle time.
bool wxWindow::PageDown | ( | ) |
Same as ScrollPages (1).
Reimplemented in wxStyledTextCtrl.
bool wxWindow::PageUp | ( | ) |
Same as ScrollPages (-1).
Reimplemented in wxStyledTextCtrl.
wxEvtHandler* wxWindow::PopEventHandler | ( | bool | deleteHandler = false | ) |
Removes and returns the top-most event handler on the event handler stack.
E.g. in the case of:
when calling W->PopEventHandler()
, the event handler A
will be removed and B
will be the first handler of the stack.
Note that it's an error to call this function when no event handlers were pushed on this window (i.e. when the window itself is its only event handler).
deleteHandler | If this is true, the handler will be deleted after it is removed (and the returned value will be NULL). |
bool wxWindow::PopupMenu | ( | wxMenu * | menu, |
int | x, | ||
int | y | ||
) |
This is an overloaded member function, provided for convenience. It differs from the above function only in what argument(s) it accepts.
bool wxWindow::PopupMenu | ( | wxMenu * | menu, |
const wxPoint & | pos = wxDefaultPosition |
||
) |
Pops up the given menu at the specified coordinates, relative to this window, and returns control when the user has dismissed the menu.
If a menu item is selected, the corresponding menu event is generated and will be processed as usual. If coordinates are not specified, the current mouse cursor position is used.
menu is the menu to pop up.
The position where the menu will appear can be specified either as a wxPoint pos or by two integers (x and y).
void wxWindow::PostSizeEvent | ( | ) |
Posts a size event to the window.
This is the same as SendSizeEvent() with wxSEND_EVENT_POST
argument.
void wxWindow::PostSizeEventToParent | ( | ) |
Posts a size event to the parent of this window.
This is the same as SendSizeEventToParent() with wxSEND_EVENT_POST
argument.
virtual bool wxWindow::ProcessEvent | ( | wxEvent & | event | ) | [protected, virtual] |
This function is public in wxEvtHandler but protected in wxWindow because for wxWindows you should always call ProcessEvent() on the pointer returned by GetEventHandler() and not on the wxWindow object itself.
For convenience, a ProcessWindowEvent() method is provided as a synonym for
Note that it's still possible to call these functions directly on the wxWindow object (e.g. casting it to wxEvtHandler) but doing that will create subtle bugs when windows with event handlers pushed on them are involved.
This holds also for all other wxEvtHandler functions.
Reimplemented from wxEvtHandler.
void wxWindow::ProcessPendingEvents | ( | ) | [protected] |
See ProcessEvent() for more info about why you shouldn't use this function and the reason for making this function protected in wxWindow.
Reimplemented from wxEvtHandler.
bool wxWindow::ProcessThreadEvent | ( | const wxEvent & | event | ) | [protected] |
See ProcessEvent() for more info about why you shouldn't use this function and the reason for making this function protected in wxWindow.
bool wxWindow::ProcessWindowEvent | ( | wxEvent & | event | ) |
Convenient wrapper for ProcessEvent().
This is the same as writing
GetEventHandler()->ProcessEvent(event);
but more convenient. Notice that ProcessEvent() itself can't be called for wxWindow objects as it ignores the event handlers associated with the window; use this function instead.
bool wxWindow::ProcessWindowEventLocally | ( | wxEvent & | event | ) |
Wrapper for wxEvtHandler::ProcessEventLocally().
This method is similar to ProcessWindowEvent() but can be used to search for the event handler only in this window and any event handlers pushed on top of it. Unlike ProcessWindowEvent() it won't propagate the event upwards. But it will use the validator and event handlers associated with this window, if any.
void wxWindow::PushEventHandler | ( | wxEvtHandler * | handler | ) |
このイベントハンドラをウィンドウのイベントスタック上に追加します。
An event handler is an object that is capable of processing the events sent to a window. By default, the window is its own event handler, but an application may wish to substitute another, for example to allow central implementation of event-handling for a variety of different window classes.
wxWindow::PushEventHandler allows an application to set up a stack of event handlers, where an event not handled by one event handler is handed to the next one in the chain.
E.g. if you have two event handlers A
and B
and a wxWindow instance W
and you call:
W->PushEventHandler(A); W->PushEventHandler(B);
you will end up with the following situation:
Note that you can use wxWindow::PopEventHandler to remove the event handler.
handler | Specifies the handler to be pushed. It must not be part of a wxEvtHandler chain; an assert will fail if it's not unlinked (see wxEvtHandler::IsUnlinked). |
virtual void wxWindow::QueueEvent | ( | wxEvent * | event | ) | [protected, virtual] |
See ProcessEvent() for more info about why you shouldn't use this function and the reason for making this function protected in wxWindow.
Reimplemented from wxEvtHandler.
virtual void wxWindow::Raise | ( | ) | [virtual] |
Raises the window to the top of the window hierarchy (Z-order).
Notice that this function only requests the window manager to raise this window to the top of Z-order. Depending on its configuration, the window manager may raise the window, not do it at all or indicate that a window requested to be raised in some other way, e.g. by flashing its icon if it is minimized.
virtual void wxWindow::Refresh | ( | bool | eraseBackground = true , |
const wxRect * | rect = NULL |
||
) | [virtual] |
Causes this window, and all of its children recursively (except under wxGTK1 where this is not implemented), to be repainted.
Note that repainting doesn't happen immediately but only during the next event loop iteration, if you need to update the window immediately you should use Update() instead.
eraseBackground | If true, the background will be erased. |
rect | If non-NULL, only the given rectangle will be treated as damaged. |
Reimplemented in wxMenuBar.
void wxWindow::RefreshRect | ( | const wxRect & | rect, |
bool | eraseBackground = true |
||
) |
virtual bool wxWindow::RegisterHotKey | ( | int | hotkeyId, |
int | modifiers, | ||
int | virtualKeyCode | ||
) | [virtual] |
Registers a system wide hotkey.
Every time the user presses the hotkey registered here, this window will receive a hotkey event.
It will receive the event even if the application is in the background and does not have the input focus because the user is working with some other application.
hotkeyId | Numeric identifier of the hotkey. For applications this must be between 0 and 0xBFFF. If this function is called from a shared DLL, it must be a system wide unique identifier between 0xC000 and 0xFFFF. This is a MSW specific detail. |
modifiers | A bitwise combination of wxMOD_SHIFT, wxMOD_CONTROL, wxMOD_ALT or wxMOD_WIN specifying the modifier keys that have to be pressed along with the key. |
virtualKeyCode | The virtual key code of the hotkey. |
void wxWindow::ReleaseMouse | ( | ) |
Releases mouse input captured with CaptureMouse().
virtual void wxWindow::RemoveChild | ( | wxWindow * | child | ) | [virtual] |
Removes a child window.
This is called automatically by window deletion functions so should not be required by the application programmer. Notice that this function is mostly internal to wxWidgets and shouldn't be called by the user code.
child | Child window to remove. |
bool wxWindow::RemoveEventHandler | ( | wxEvtHandler * | handler | ) |
Find the given handler in the windows event handler stack and removes (but does not delete) it from the stack.
See wxEvtHandler::Unlink() for more info.
handler | The event handler to remove, must be non-NULL and must be present in this windows event handlers stack. |
virtual bool wxWindow::Reparent | ( | wxWindow * | newParent | ) | [virtual] |
Reparents the window, i.e.
the window will be removed from its current parent window (e.g. a non-standard toolbar in a wxFrame) and then re-inserted into another.
Notice that currently you need to explicitly call wxNotebook::RemovePage() before reparenting a notebook page.
newParent | New parent. |
bool wxWindow::SafelyProcessEvent | ( | wxEvent & | event | ) | [protected] |
See ProcessEvent() for more info about why you shouldn't use this function and the reason for making this function protected in wxWindow.
Reimplemented from wxEvtHandler.
void wxWindow::ScreenToClient | ( | int * | x, |
int * | y | ||
) | const |
Converts from screen to client window coordinates.
x | Stores the screen x coordinate and receives the client x coordinate. |
y | Stores the screen x coordinate and receives the client x coordinate. |
Converts from screen to client window coordinates.
pt | The screen position. |
virtual bool wxWindow::ScrollLines | ( | int | lines | ) | [virtual] |
Scrolls the window by the given number of lines down (if lines is positive) or up.
Reimplemented in wxRibbonGallery, and wxRibbonPage.
virtual bool wxWindow::ScrollPages | ( | int | pages | ) | [virtual] |
Scrolls the window by the given number of pages down (if pages is positive) or up.
virtual void wxWindow::ScrollWindow | ( | int | dx, |
int | dy, | ||
const wxRect * | rect = NULL |
||
) | [virtual] |
Physically scrolls the pixels in the window and move child windows accordingly.
dx | Amount to scroll horizontally. |
dy | Amount to scroll vertically. |
rect | Rectangle to scroll, if it is NULL, the whole window is scrolled (this is always the case under wxGTK which doesn't support this parameter) |
void wxWindow::SendDestroyEvent | ( | ) | [protected] |
Generate wxWindowDestroyEvent for this window.
This is called by the window itself when it is being destroyed and usually there is no need to call it but see wxWindowDestroyEvent for explanations of when you might want to do it.
virtual void wxWindow::SendSizeEvent | ( | int | flags = 0 | ) | [virtual] |
This function sends a dummy size event to the window allowing it to re-layout its children positions.
It is sometimes useful to call this function after adding or deleting a children after the frame creation or if a child size changes. Note that if the frame is using either sizers or constraints for the children layout, it is enough to call wxWindow::Layout() directly and this function should not be used in this case.
If flags includes wxSEND_EVENT_POST
value, this function posts the event, i.e. schedules it for later processing, instead of dispatching it directly. You can also use PostSizeEvent() as a more readable equivalent of calling this function with this flag.
flags | May include wxSEND_EVENT_POST . Default value is 0. |
void wxWindow::SendSizeEventToParent | ( | int | flags = 0 | ) |
Safe wrapper for GetParent()->SendSizeEvent().
This function simply checks that the window has a valid parent which is not in process of being deleted and calls SendSizeEvent() on it. It is used internally by windows such as toolbars changes to whose state should result in parent re-layout (e.g. when a toolbar is added to the top of the window, all the other windows must be shifted down).
flags | See description of this parameter in SendSizeEvent() documentation. |
virtual void wxWindow::SetAcceleratorTable | ( | const wxAcceleratorTable & | accel | ) | [virtual] |
Sets the accelerator table for this window.
See wxAcceleratorTable.
void wxWindow::SetAccessible | ( | wxAccessible * | accessible | ) |
Sets the accessible for this window.
Any existing accessible for this window will be deleted first, if not identical to accessible. See also wxAccessible.
void wxWindow::SetAutoLayout | ( | bool | autoLayout | ) |
Determines whether the Layout() function will be called automatically when the window is resized.
This method is called implicitly by SetSizer() but if you use SetConstraints() you should call it manually or otherwise the window layout won't be correctly updated when its size changes.
autoLayout | Set this to true if you wish the Layout() function to be called automatically when the window is resized. |
virtual bool wxWindow::SetBackgroundColour | ( | const wxColour & | colour | ) | [virtual] |
Sets the background colour of the window.
Notice that as with SetForegroundColour(), setting the background colour of a native control may not affect the entire control and could be not supported at all depending on the control and platform.
Please see InheritAttributes() for explanation of the difference between this method and SetOwnBackgroundColour().
colour | The colour to be used as the background colour; pass wxNullColour to reset to the default colour. Note that you may want to use wxSystemSettings::GetColour() to retrieve a suitable colour to use rather than setting an hard-coded one. |
Reimplemented in wxListCtrl.
virtual bool wxWindow::SetBackgroundStyle | ( | wxBackgroundStyle | style | ) | [virtual] |
Sets the background style of the window.
The default background style is wxBG_STYLE_ERASE
which indicates that the window background may be erased in EVT_ERASE_BACKGROUND
handler. This is a safe, compatibility default; however you may want to change it to wxBG_STYLE_SYSTEM
if you don't define any erase background event handlers at all, to avoid unnecessary generation of erase background events and always let system erase the background. And you should change the background style to wxBG_STYLE_PAINT
if you define an EVT_PAINT
handler which completely overwrites the window background as in this case erasing it previously, either in EVT_ERASE_BACKGROUND
handler or in the system default handler, would result in flicker as the background pixels will be repainted twice every time the window is redrawn. Do ensure that the background is entirely erased by your EVT_PAINT
handler in this case however as otherwise garbage may be left on screen.
Notice that in previous versions of wxWidgets a common way to work around the above mentioned flickering problem was to define an empty EVT_ERASE_BACKGROUND
handler. Setting background style to wxBG_STYLE_PAINT
is a simpler and more efficient solution to the same problem.
Under wxGTK and wxOSX, you can use wxBG_STYLE_TRANSPARENT to obtain full transparency of the window background. Note that wxGTK supports this only since GTK 2.12 with a compositing manager enabled, call IsTransparentBackgroundSupported() to check whether this is the case.
Also, on order for SetBackgroundStyle(wxBG_STYLE_TRANSPARENT)
to work, it must be called before Create(). If you're using your own wxWindow-derived class you should write your code in the following way:
class MyWidget : public wxWindow { public: MyWidget(wxWindow* parent, ...) : wxWindow() // Use default ctor here! { // Do this first: SetBackgroundStyle(wxBG_STYLE_TRANSPARENT); // And really create the window afterwards: Create(parent, ...); } };
virtual void wxWindow::SetCanFocus | ( | bool | canFocus | ) | [virtual] |
This method is only implemented by ports which have support for native TAB traversal (such as GTK+ 2.0).
It is called by wxWidgets' container control code to give the native system a hint when doing TAB traversal. A call to this does not disable or change the effect of programmatically calling SetFocus().
void wxWindow::SetCaret | ( | wxCaret * | caret | ) |
Sets the caret() associated with the window.
void wxWindow::SetClientSize | ( | const wxSize & | size | ) |
This is an overloaded member function, provided for convenience. It differs from the above function only in what argument(s) it accepts.
void wxWindow::SetClientSize | ( | const wxRect & | rect | ) |
This is an overloaded member function, provided for convenience. It differs from the above function only in what argument(s) it accepts.
void wxWindow::SetClientSize | ( | int | width, |
int | height | ||
) |
This sets the size of the window client area in pixels.
Using this function to size a window tends to be more device-independent than SetSize(), since the application need not worry about what dimensions the border or title bar have when trying to fit the window around panel items, for example.
void wxWindow::SetConstraints | ( | wxLayoutConstraints * | constraints | ) |
Sets the window to have the given layout constraints.
The window will then own the object, and will take care of its deletion. If an existing layout constraints object is already owned by the window, it will be deleted.
constraints | The constraints to set. Pass NULL to disassociate and delete the window's constraints. |
void wxWindow::SetContainingSizer | ( | wxSizer * | sizer | ) |
This normally does not need to be called by user code.
It is called when a window is added to a sizer, and is used so the window can remove itself from the sizer when it is destroyed.
virtual bool wxWindow::SetCursor | ( | const wxCursor & | cursor | ) | [virtual] |
Sets the window's cursor.
Notice that the window cursor also sets it for the children of the window implicitly.
The cursor may be wxNullCursor
in which case the window cursor will be reset back to default.
cursor | Specifies the cursor that the window should normally display. |
void wxWindow::SetDoubleBuffered | ( | bool | on | ) |
Turn on or off double buffering of the window if the system supports it.
virtual void wxWindow::SetDropTarget | ( | wxDropTarget * | target | ) | [virtual] |
このウィンドウに関連付けられたドロップ先。
If the window already has a drop target, it is deleted.
void wxWindow::SetEventHandler | ( | wxEvtHandler * | handler | ) |
このウィンドウのイベントハンドラを設定します。
Note that if you use this function you may want to use as the "next" handler of handler the window itself; in this way when handler doesn't process an event, the window itself will have a chance to do it.
handler | Specifies the handler to be set. Cannot be NULL. |
virtual void wxWindow::SetExtraStyle | ( | long | exStyle | ) | [virtual] |
Sets the extra style bits for the window.
The currently defined extra style bits are reported in the class description.
virtual void wxWindow::SetFocus | ( | ) | [virtual] |
This sets the window to receive keyboard input.
Reimplemented in wxPanel.
virtual void wxWindow::SetFocusFromKbd | ( | ) | [virtual] |
This function is called by wxWidgets keyboard navigation code when the user gives the focus to this window from keyboard (e.g.
using TAB
key).
By default this method simply calls SetFocus() but can be overridden to do something in addition to this in the derived classes.
virtual bool wxWindow::SetFont | ( | const wxFont & | font | ) | [virtual] |
Sets the font for this window.
This function should not be called for the parent window if you don't want its font to be inherited by its children, use SetOwnFont() instead in this case and see InheritAttributes() for more explanations.
Please notice that the given font is not automatically used for wxPaintDC objects associated with this window, you need to call wxDC::SetFont too. However this font is used by any standard controls for drawing their text as well as by GetTextExtent().
font | Font to associate with this window, pass wxNullFont to reset to the default font. |
Reimplemented in wxAuiNotebook, wxAuiToolBar, wxInfoBar, and wxRichTextCtrl.
virtual bool wxWindow::SetForegroundColour | ( | const wxColour & | colour | ) | [virtual] |
Sets the foreground colour of the window.
The meaning of foreground colour varies according to the window class; it may be the text colour or other colour, or it may not be used at all. Additionally, not all native controls support changing their foreground colour so this method may change their colour only partially or even not at all.
Please see InheritAttributes() for explanation of the difference between this method and SetOwnForegroundColour().
colour | The colour to be used as the foreground colour; pass wxNullColour to reset to the default colour. |
void wxWindow::SetHelpText | ( | const wxString & | helpText | ) |
Sets the help text to be used as context-sensitive help for this window.
Note that the text is actually stored by the current wxHelpProvider implementation, and not in the window object itself.
void wxWindow::SetId | ( | wxWindowID | winid | ) |
Sets the identifier of the window.
virtual void wxWindow::SetInitialBestSize | ( | const wxSize & | size | ) | [protected, virtual] |
Sets the initial window size if none is given (i.e.
at least one of the components of the size passed to ctor/Create() is wxDefaultCoord).
void wxWindow::SetInitialSize | ( | const wxSize & | size = wxDefaultSize | ) |
A smart SetSize that will fill in default size components with the window's best size values.
Also sets the window's minsize to the value passed in for use with sizers. This means that if a full or partial size is passed to this function then the sizers will use that size instead of the results of GetBestSize() to determine the minimum needs of the window for layout.
Most controls will use this to set their initial size, and their min size to the passed in value (if any.)
virtual void wxWindow::SetLabel | ( | const wxString & | label | ) | [virtual] |
Sets the window's label.
label | The window label. |
Reimplemented in wxButton, wxCommandLinkButton, and wxControl.
virtual void wxWindow::SetLayoutDirection | ( | wxLayoutDirection | dir | ) | [virtual] |
Sets the layout direction for this window.
virtual void wxWindow::SetMaxClientSize | ( | const wxSize & | size | ) | [virtual] |
Sets the maximum client size of the window, to indicate to the sizer layout mechanism that this is the maximum possible size of its client area.
Note that this method is just a shortcut for:
SetMaxSize(ClientToWindowSize(size));
virtual void wxWindow::SetMaxSize | ( | const wxSize & | size | ) | [virtual] |
Sets the maximum size of the window, to indicate to the sizer layout mechanism that this is the maximum possible size.
Reimplemented in wxTopLevelWindow.
virtual void wxWindow::SetMinClientSize | ( | const wxSize & | size | ) | [virtual] |
Sets the minimum client size of the window, to indicate to the sizer layout mechanism that this is the minimum required size of window's client area.
You may need to call this if you change the window size after construction and before adding to its parent sizer.
Note, that just as with SetMinSize(), calling this method doesn't prevent the program from explicitly making the window smaller than the specified size.
Note that this method is just a shortcut for:
SetMinSize(ClientToWindowSize(size));
virtual void wxWindow::SetMinSize | ( | const wxSize & | size | ) | [virtual] |
Sets the minimum size of the window, to indicate to the sizer layout mechanism that this is the minimum required size.
You may need to call this if you change the window size after construction and before adding to its parent sizer.
Notice that calling this method doesn't prevent the program from making the window explicitly smaller than the specified size by calling SetSize(), it just ensures that it won't become smaller than this size during the automatic layout.
Reimplemented in wxTopLevelWindow.
virtual void wxWindow::SetName | ( | const wxString & | name | ) | [virtual] |
virtual void wxWindow::SetNextHandler | ( | wxEvtHandler * | handler | ) | [virtual] |
wxWindows cannot be used to form event handler chains; this function thus will assert when called.
Note that instead you can use PushEventHandler() or SetEventHandler() to implement a stack of event handlers to override wxWindow's own event handling mechanism.
Reimplemented from wxEvtHandler.
void wxWindow::SetOwnBackgroundColour | ( | const wxColour & | colour | ) |
Sets the background colour of the window but prevents it from being inherited by the children of this window.
void wxWindow::SetOwnFont | ( | const wxFont & | font | ) |
Sets the font of the window but prevents it from being inherited by the children of this window.
void wxWindow::SetOwnForegroundColour | ( | const wxColour & | colour | ) |
Sets the foreground colour of the window but prevents it from being inherited by the children of this window.
void wxWindow::SetPalette | ( | const wxPalette & | pal | ) |
virtual void wxWindow::SetPreviousHandler | ( | wxEvtHandler * | handler | ) | [virtual] |
wxWindows cannot be used to form event handler chains; this function thus will assert when called.
Note that instead you can use PushEventHandler() or SetEventHandler() to implement a stack of event handlers to override wxWindow's own event handling mechanism.
Reimplemented from wxEvtHandler.
virtual void wxWindow::SetScrollbar | ( | int | orientation, |
int | position, | ||
int | thumbSize, | ||
int | range, | ||
bool | refresh = true |
||
) | [virtual] |
Sets the scrollbar properties of a built-in scrollbar.
orientation | Determines the scrollbar whose page size is to be set. May be wxHORIZONTAL or wxVERTICAL. |
position | The position of the scrollbar in scroll units. |
thumbSize | The size of the thumb, or visible portion of the scrollbar, in scroll units. |
range | The maximum position of the scrollbar. Value of -1 can be used to ask for the scrollbar to be shown but in the disabled state: this can be used to avoid removing the scrollbar even when it is not needed (currently this is only implemented in wxMSW port). |
refresh | true to redraw the scrollbar, false otherwise. |
SetScrollbar(wxVERTICAL, 0, 16, 50);
Reimplemented in wxScrollBar.
virtual void wxWindow::SetScrollPos | ( | int | orientation, |
int | pos, | ||
bool | refresh = true |
||
) | [virtual] |
Sets the position of one of the built-in scrollbars.
orientation | Determines the scrollbar whose position is to be set. May be wxHORIZONTAL or wxVERTICAL. |
pos | Position in scroll units. |
refresh | true to redraw the scrollbar, false otherwise. |
void wxWindow::SetSize | ( | int | x, |
int | y, | ||
int | width, | ||
int | height, | ||
int | sizeFlags = wxSIZE_AUTO |
||
) |
ピクセル単位でウィンドウサイズを設定します。
x | Required x position in pixels, or wxDefaultCoord to indicate that the existing value should be used. |
y | Required y position in pixels, or wxDefaultCoord to indicate that the existing value should be used. |
width | Required width in pixels, or wxDefaultCoord to indicate that the existing value should be used. |
height | Required height position in pixels, or wxDefaultCoord to indicate that the existing value should be used. |
sizeFlags | Indicates the interpretation of other parameters. It is a bit list of the following:
|
void wxWindow::SetSize | ( | int | width, |
int | height | ||
) |
This is an overloaded member function, provided for convenience. It differs from the above function only in what argument(s) it accepts.
void wxWindow::SetSize | ( | const wxSize & | size | ) |
This is an overloaded member function, provided for convenience. It differs from the above function only in what argument(s) it accepts.
void wxWindow::SetSize | ( | const wxRect & | rect | ) |
virtual void wxWindow::SetSizeHints | ( | const wxSize & | minSize, |
const wxSize & | maxSize = wxDefaultSize , |
||
const wxSize & | incSize = wxDefaultSize |
||
) | [virtual] |
Use of this function for windows which are not toplevel windows (such as wxDialog or wxFrame) is discouraged.
Please use SetMinSize() and SetMaxSize() instead.
Reimplemented in wxTopLevelWindow.
virtual void wxWindow::SetSizeHints | ( | int | minW, |
int | minH, | ||
int | maxW = -1 , |
||
int | maxH = -1 , |
||
int | incW = -1 , |
||
int | incH = -1 |
||
) | [virtual] |
void wxWindow::SetSizer | ( | wxSizer * | sizer, |
bool | deleteOld = true |
||
) |
Sets the window to have the given layout sizer.
The window will then own the object, and will take care of its deletion. If an existing layout constraints object is already owned by the window, it will be deleted if the deleteOld parameter is true.
Note that this function will also call SetAutoLayout() implicitly with true parameter if the sizer is non-NULL and false otherwise so that the sizer will be effectively used to layout the window children whenever it is resized.
sizer | The sizer to set. Pass NULL to disassociate and conditionally delete the window's sizer. See below. |
deleteOld | If true (the default), this will delete any pre-existing sizer. Pass false if you wish to handle deleting the old sizer yourself but remember to do it yourself in this case to avoid memory leaks. |
void wxWindow::SetSizerAndFit | ( | wxSizer * | sizer, |
bool | deleteOld = true |
||
) |
This method calls SetSizer() and then wxSizer::SetSizeHints which sets the initial window size to the size needed to accommodate all sizer elements and sets the size hints which, if this window is a top level one, prevent the user from resizing it to be less than this minimal size.
virtual void wxWindow::SetThemeEnabled | ( | bool | enable | ) | [virtual] |
This function tells a window if it should use the system's "theme" code to draw the windows' background instead of its own background drawing code.
This does not always have any effect since the underlying platform obviously needs to support the notion of themes in user defined windows. One such platform is GTK+ where windows can have (very colourful) backgrounds defined by a user's selected theme.
Dialogs, notebook pages and the status bar have this flag set to true by default so that the default look and feel is simulated best.
void wxWindow::SetToolTip | ( | wxToolTip * | tip | ) |
This is an overloaded member function, provided for convenience. It differs from the above function only in what argument(s) it accepts.
void wxWindow::SetToolTip | ( | const wxString & | tipString | ) |
Attach a tooltip to the window.
wxToolTip pointer can be NULL in the overload taking the pointer, meaning to unset any existing tooltips; however UnsetToolTip() provides a more readable alternative to this operation.
Notice that these methods are always available, even if wxWidgets was compiled with wxUSE_TOOLTIPS
set to 0, but don't do anything in this case.
virtual bool wxWindow::SetTransparent | ( | wxByte | alpha | ) | [virtual] |
Set the transparency of the window.
If the system supports transparent windows, returns true, otherwise returns false and the window remains fully opaque. See also CanSetTransparent().
The parameter alpha is in the range 0..255 where 0 corresponds to a fully transparent window and 255 to the fully opaque one. The constants wxIMAGE_ALPHA_TRANSPARENT
and wxIMAGE_ALPHA_OPAQUE
can be used.
Reimplemented in wxTopLevelWindow.
virtual void wxWindow::SetValidator | ( | const wxValidator & | validator | ) | [virtual] |
Deletes the current validator (if any) and sets the window validator, having called wxValidator::Clone to create a new validator of this type.
void wxWindow::SetVirtualSize | ( | const wxSize & | size | ) |
This is an overloaded member function, provided for convenience. It differs from the above function only in what argument(s) it accepts.
void wxWindow::SetVirtualSize | ( | int | width, |
int | height | ||
) |
Sets the virtual size of the window in pixels.
void wxWindow::SetWindowStyle | ( | long | style | ) |
See SetWindowStyleFlag() for more info.
Reimplemented in wxTreeCtrl.
virtual void wxWindow::SetWindowStyleFlag | ( | long | style | ) | [virtual] |
Sets the style of the window.
Please note that some styles cannot be changed after the window creation and that Refresh() might need to be called after changing the others for the change to take place immediately.
See Window styles for more information about flags.
Reimplemented in wxAuiToolBar, and wxListCtrl.
void wxWindow::SetWindowVariant | ( | wxWindowVariant | variant | ) |
This function can be called under all platforms but only does anything under Mac OS X 10.3+ currently.
Under this system, each of the standard control can exist in several sizes which correspond to the elements of wxWindowVariant enum.
By default the controls use the normal size, of course, but this function can be used to change this.
virtual bool wxWindow::ShouldInheritColours | ( | ) | const [virtual] |
Return true from here to allow the colours of this window to be changed by InheritAttributes().
Returning false forbids inheriting them from the parent window.
The base class version returns false, but this method is overridden in wxControl where it returns true.
Reimplemented in wxRichTextCtrl.
virtual bool wxWindow::Show | ( | bool | show = true | ) | [virtual] |
ウィンドウの表示非表示を切り替えます。
You may need to call Raise() for a top level window if you want to bring it to top, although this is not needed if Show() is called immediately after the frame creation.
Notice that the default state of newly created top level windows is hidden (to allow you to create their contents without flicker) unlike for all the other, not derived from wxTopLevelWindow, windows that are by default created in the shown state.
show | If true displays the window. Otherwise, hides it. |
Reimplemented in wxDialog.
virtual bool wxWindow::ShowWithEffect | ( | wxShowEffect | effect, |
unsigned int | timeout = 0 |
||
) | [virtual] |
This function shows a window, like Show(), but using a special visual effect if possible.
effect | The effect to use. |
timeout | The timeout parameter specifies the time of the animation, in milliseconds. If the default value of 0 is used, the default animation time for the current platform is used. |
void wxWindow::Thaw | ( | ) |
bool wxWindow::ToggleWindowStyle | ( | int | flag | ) |
Turns the given flag on if it's currently turned off and vice versa.
This function cannot be used if the value of the flag is 0 (which is often the case for default flags).
Also, please notice that not all styles can be changed after the control creation.
virtual bool wxWindow::TransferDataFromWindow | ( | ) | [virtual] |
子コントロールからバリデータで指定されたデータ領域へ値を転送します。
Returns false if a transfer failed.
If the window has wxWS_EX_VALIDATE_RECURSIVELY
extra style flag set, the method will also call TransferDataFromWindow() of all child windows.
virtual bool wxWindow::TransferDataToWindow | ( | ) | [virtual] |
バリデータで指定されたデータ領域から子コントロールへ値を転送します。
If the window has wxWS_EX_VALIDATE_RECURSIVELY
extra style flag set, the method will also call TransferDataToWindow() of all child windows.
virtual bool wxWindow::UnregisterHotKey | ( | int | hotkeyId | ) | [virtual] |
Unregisters a system wide hotkey.
hotkeyId | Numeric identifier of the hotkey. Must be the same id that was passed to RegisterHotKey(). |
static void wxWindow::UnreserveControlId | ( | wxWindowID | id, |
int | count = 1 |
||
) | [static] |
Unreserve an ID or range of IDs that was reserved by NewControlId().
See Window IDs for more information.
id | The starting ID of the range of IDs to unreserve. |
count | The number of sequential IDs to unreserve. |
void wxWindow::UnsetToolTip | ( | ) |
virtual void wxWindow::Update | ( | ) | [virtual] |
Calling this method immediately repaints the invalidated area of the window and all of its children recursively (this normally only happens when the flow of control returns to the event loop).
Notice that this function doesn't invalidate any area of the window so nothing happens if nothing has been invalidated (i.e. marked as requiring a redraw). Use Refresh() first if you want to immediately redraw the window unconditionally.
virtual void wxWindow::UpdateWindowUI | ( | long | flags = wxUPDATE_UI_NONE | ) | [virtual] |
This function sends one or more wxUpdateUIEvent to the window.
The particular implementation depends on the window; for example a wxToolBar will send an update UI event for each toolbar button, and a wxFrame will send an update UI event for each menubar menu item.
You can call this function from your application to ensure that your UI is up-to-date at this point (as far as your wxUpdateUIEvent handlers are concerned). This may be necessary if you have called wxUpdateUIEvent::SetMode() or wxUpdateUIEvent::SetUpdateInterval() to limit the overhead that wxWidgets incurs by sending update UI events in idle time. flags should be a bitlist of one or more of the wxUpdateUI enumeration.
If you are calling this function from an OnInternalIdle or OnIdle function, make sure you pass the wxUPDATE_UI_FROMIDLE flag, since this tells the window to only update the UI elements that need to be updated in idle time. Some windows update their elements only when necessary, for example when a menu is about to be shown. The following is an example of how to call UpdateWindowUI from an idle function.
void MyWindow::OnInternalIdle() { if (wxUpdateUIEvent::CanUpdate(this)) UpdateWindowUI(wxUPDATE_UI_FROMIDLE); }
virtual bool wxWindow::Validate | ( | ) | [virtual] |
バリデータを使用して子コントロールの現在の値を検証します。
If the window has wxWS_EX_VALIDATE_RECURSIVELY
extra style flag set, the method will also call Validate() of all child windows.
virtual void wxWindow::WarpPointer | ( | int | x, |
int | y | ||
) | [virtual] |
Moves the pointer to the given position on the window.
x | The new x position for the cursor. |
y | The new y position for the cursor. |
Converts window size size to corresponding client area size In other words, the returned value is what would GetClientSize() return if this window had given window size.
Components with wxDefaultCoord value are left unchanged.
Note that the conversion is not always exact, it assumes that non-client area doesn't change and so doesn't take into account things like menu bar (un)wrapping or (dis)appearance of the scrollbars.