Home | All Classes | Main Classes | Annotated | Grouped Classes | Functions | ![]() |
The QWidget class is the base class of all user interface objects. More...
#include <QWidget>
Inherits QObject and QPaintDevice.
Inherited by Q3DataBrowser, Q3DataView, Q3DateTimeEditBase, Q3DateTimeEdit, Q3DockArea, Q3Header, Q3MainWindow, Q3Workspace, QDialog, QDesktopWidget, QAbstractButton, QAbstractSlider, QAbstractSpinBox, QComboBox, QFrame, QGroupBox, QLineEdit, QMainWindow, QMenu, QMenuBar, QProgressBar, QRubberBand, QSizeGrip, QSplashScreen, QStatusBar, QTabBar, QTabWidget, QToolBar, and QGLWidget.
|
|
|
|
The QWidget class is the base class of all user interface objects.
The widget is the atom of the user interface: it receives mouse, keyboard and other events from the window system, and paints a representation of itself on the screen. Every widget is rectangular, and they are sorted in a Z-order. A widget is clipped by its parent and by the widgets in front of it.
A widget that isn't embedded in a parent widget is called a top-level widget. Usually, top-level widgets are windows with a frame and a title bar (although it is also possible to create top-level widgets without such decoration if suitable widget flags are used). In Qt, QMainWindow and the various subclasses of QDialog are the most common top-level windows.
A widget without a parent widget is always a top-level widget.
Non-top-level widgets are child widgets. These are child windows in their parent widgets. You cannot usually distinguish a child widget from its parent visually. Most other widgets in Qt are useful only as child widgets. (It is possible to make, say, a button into a top-level widget, but most people prefer to put their buttons inside other widgets, e.g. QDialog.)
If you want to use a QWidget to hold child widgets you will probably want to add a layout to the parent QWidget. (See Layouts.)
QWidget has many member functions, but some of them have little direct functionality: for example, QWidget has a font property, but never uses this itself. There are many subclasses which provide real functionality, such as QPushButton, QListBox and QTabDialog, etc.
Every widget's constructor accepts one or two standard arguments:
The tictac/tictac.cpp example program is good example of a simple widget. It contains a few event handlers (as all widgets must), a few custom routines that are specific to it (as all useful widgets do), and has a few children and connections. Everything it does is done in response to an event: this is by far the most common way to design GUI applications.
You will need to supply the content for your widgets yourself, but here is a brief run-down of the events, starting with the most common ones:
If your widget only contains child widgets, you probably do not need to implement any event handlers. If you want to detect a mouse click in a child widget call the child's underMouse() function inside the parent widget's mousePressEvent().
Widgets that accept keyboard input need to reimplement a few more event handlers:
Some widgets will also need to reimplement some of the less common event handlers:
There are also some rather obscure events. They are listed in qevent.h and you need to reimplement event() to handle them. The default implementation of event() handles Tab and Shift+Tab (to move the keyboard focus), and passes on most other events to one of the more specialized handlers above.
When implementing a widget, there are a few more things to consider.
From Qt 4.0, QWidget automatically double-buffers its painting, so there's no need to write double-buffering code in paintEvent() to avoid flicker.
See also QEvent, QPainter, QGridLayout, and QBoxLayout.
This property holds whether drop events are enabled for this widget.
Setting this property to true announces to the system that this widget may be able to accept drop events.
If the widget is the desktop (QWidget::isDesktop()), this may fail if another application is using the desktop; you can call acceptDrops() to test if this occurs.
Warning: Do not modify this property in a Drag&Drop event handler.
Access functions:
This property holds the widget's description as seen by assistive technologies.
Access functions:
See also QAccessibleInterface::text.
This property holds the widget's name as seen by assistive technologies.
Access functions:
See also QAccessibleInterface::text.
This property holds whether the auto mask feature is enabled for the widget.
Transparent widgets use a mask to define their visible region. QWidget has some built-in support to make the task of recalculating the mask easier. When setting auto mask to true, updateMask() will be called whenever the widget is resized or changes its focus state. Note that you must reimplement updateMask() (which should include a call to setMask()) or nothing will happen.
Note: when you re-implement resizeEvent(), focusInEvent() or focusOutEvent() in your custom widgets and still want to ensure that the auto mask calculation works, you should add:
if (autoMask()) updateMask();
at the end of your event handlers. This is true for all member functions that change the appearance of the widget in a way that requires a recalculation of the mask.
While being a technically appealing concept, masks have a big drawback: when using complex masks that cannot be expressed easily with relatively simple regions, they can be very slow on some window systems. The classic example is a transparent label. The complex shape of its contents makes it necessary to represent its mask by a bitmap, which consumes both memory and time. If all you want is to blend the background of several neighboring widgets together seamlessly, you will probably want to use setBackgroundOrigin() rather than a mask.
Access functions:
See also autoMask(), updateMask(), setMask(), and clearMask().
This property holds the base size of the widget.
The base size is used to calculate a proper widget size if the widget defines sizeIncrement().
Access functions:
See also setSizeIncrement().
This property holds the bounding rectangle of the widget's children.
Hidden children are excluded.
Access functions:
See also childrenRegion() and geometry().
This property holds the combined region occupied by the widget's children.
Hidden children are excluded.
Access functions:
See also childrenRect() and geometry().
This property holds the cursor shape for this widget.
The mouse cursor will assume this shape when it's over this widget. See the list of predefined cursor objects for a range of useful shapes.
An editor widget might use an I-beam cursor:
setCursor(Qt::IbeamCursor);
If no cursor has been set, or after a call to unsetCursor(), the parent's cursor is used. The function unsetCursor() has no effect on top-level widgets.
Access functions:
See also QApplication::setOverrideCursor().
This property holds whether the widget is enabled.
An enabled widget receives keyboard and mouse events; a disabled widget does not. In fact, an enabled widget only receives keyboard events when it is in focus.
Some widgets display themselves differently when they are disabled. For example a button might draw its label grayed out. If your widget needs to know when it becomes enabled or disabled, you can use the changeEvent() with type QEvent::EnabledChange.
Disabling a widget implicitly disables all its children. Enabling respectively enables all child widgets unless they have been explicitly disabled.
Access functions:
See also isEnabled(), isEnabledTo(), QKeyEvent, QMouseEvent, and changeEvent().
This property holds whether this widget (or its focus proxy) has the keyboard input focus.
Effectively equivalent to qApp->focusWidget() == this.
Access functions:
See also setFocus(), clearFocus(), setFocusPolicy(), and QApplication::focusWidget().
This property holds whether the widget accepts keyboard focus.
Keyboard focus is initially disabled (i.e. focusPolicy() == QWidget::NoFocus).
You must enable keyboard focus for a widget if it processes keyboard events. This is normally done from the widget's constructor. For instance, the QLineEdit constructor calls setFocusPolicy(QWidget::StrongFocus).
Access functions:
See also setFocusPolicy(), focusInEvent(), focusOutEvent(), keyPressEvent(), keyReleaseEvent(), and isEnabled().
This property holds the way the widget accepts keyboard focus.
The policy is QWidget::TabFocus if the widget accepts keyboard focus by tabbing, QWidget::ClickFocus if the widget accepts focus by clicking, QWidget::StrongFocus if it accepts both, and QWidget::NoFocus (the default) if it does not accept focus at all.
You must enable keyboard focus for a widget if it processes keyboard events. This is normally done from the widget's constructor. For instance, the QLineEdit constructor calls setFocusPolicy(QWidget::StrongFocus).
Access functions:
See also focusEnabled, focusInEvent(), focusOutEvent(), keyPressEvent(), keyReleaseEvent(), and enabled.
This property holds the font currently set for the widget.
The fontInfo() function reports the actual font that is being used by the widget.
As long as no special font has been set, or after setFont(QFont()) is called, this is either a special font for the widget class, the parent's font or (if this widget is a top level widget), the default application font.
This code fragment sets a 12 point helvetica bold font:
QFont f("Helvetica", 12, QFont::Bold); setFont(f);
In addition to setting the font, setFont() informs all children about the change.
Access functions:
See also fontInfo() and fontMetrics().
This property holds geometry of the widget relative to its parent including any window frame.
See the Window Geometry documentation for an overview of geometry issues with top-level widgets.
Access functions:
See also geometry(), x(), y(), and pos().
This property holds the size of the widget including any window frame.
Access functions:
This property holds whether the widget is full screen.
Access functions:
See also windowState(), minimized, and maximized.
This property holds the geometry of the widget relative to its parent and excluding the window frame.
When changing the geometry, the widget, if visible, receives a move event (moveEvent()) and/or a resize event (resizeEvent()) immediately. If the widget is not currently visible, it is guaranteed to receive appropriate events before it is shown.
The size component is adjusted if it lies outside the range defined by minimumSize() and maximumSize().
Warning: Calling setGeometry() inside resizeEvent() or moveEvent() can lead to infinite recursion.
See the Window Geometry documentation for an overview of top-level widget geometry.
Access functions:
See also frameGeometry(), rect(), move(), resize(), moveEvent(), resizeEvent(), minimumSize(), and maximumSize().
This property holds the height of the widget excluding any window frame.
See the Window Geometry documentation for an overview of top-level widget geometry.
Access functions:
See also geometry, width, and size.
This property holds whether the widget is explicitly hidden.
If false, the widget is visible or would become visible if all its ancestors became visible.
Access functions:
See also hide(), show(), isVisible(), isVisibleTo(), and shown.
This property holds whether this widget is the active window.
The active window is the window (or child of the window) that has keyboard focus.
When popup windows are visible, this property is true for both the active window and for the popup.
Access functions:
See also setActiveWindow() and QApplication::activeWindow().
This property holds the layout direction for this widget.
Access functions:
See also QApplication::layoutDirection.
This property holds whether this widget is maximized.
This property is only relevant for top-level widgets.
Note that due to limitations in some window-systems, this does not always report the expected results (e.g. if the user on X11 maximizes the window via the window manager, Qt has no way of distinguishing this from any other resize). This is expected to improve as window manager protocols evolve.
Access functions:
See also windowState(), showMaximized(), visible, show(), hide(), showNormal(), and minimized.
This property holds the widget's maximum height.
This property corresponds to maximumSize().height().
Access functions:
See also maximumSize and maximumWidth.
This property holds the widget's maximum size.
The widget cannot be resized to a larger size than the maximum widget size.
If the widget has a layout, the maximum size will be set by the layout and not by setMaximumSize(). If you want to set the maximum size yourself, you must first call QLayout::setResizeMode(QLayout::Fixed).
Access functions:
See also maximumWidth, maximumHeight, minimumSize, sizeIncrement, and QLayout::resizeMode.
This property holds the widget's maximum width.
This property corresponds to maximumSize().width().
Access functions:
See also maximumSize and maximumHeight.
This property holds whether this widget is minimized (iconified).
This property is only relevant for top-level widgets.
Access functions:
See also showMinimized(), visible, show(), hide(), showNormal(), and maximized.
This property holds the widget's minimum height.
This property corresponds to minimumSize().height().
Access functions:
See also minimumSize and minimumWidth.
This property holds the widget's minimum size.
The widget cannot be resized to a smaller size than the minimum widget size. The widget's size is forced to the minimum size if the current size is smaller.
If the widget has a layout, the minimum size will be set by the layout and not by setMinimumSize(). If you want to set the minimum size yourself, you must first call QLayout::setResizeMode(QLayout::Fixed).
Access functions:
See also minimumWidth, minimumHeight, maximumSize, sizeIncrement, and QLayout::resizeMode.
This property holds the recommended minimum size for the widget.
If the value of this property is an invalid size, no minimum size is recommended.
The default implementation of minimumSizeHint() returns an invalid size if there is no layout for this widget, and returns the layout's minimum size otherwise. Most built-in widgets reimplement minimumSizeHint().
QLayout will never resize a widget to a size smaller than minimumSizeHint.
Access functions:
See also QSize::isValid(), resize(), setMinimumSize(), and sizePolicy().
This property holds the widget's minimum width.
This property corresponds to minimumSize().width().
Access functions:
See also minimumSize and minimumHeight.
Access functions:
This property holds whether mouse tracking is enabled for the widget.
If mouse tracking is disabled (the default), the widget only receives mouse move events when at least one mouse button is pressed while the mouse is being moved.
If mouse tracking is enabled, the widget receives mouse move events even if no buttons are pressed.
Access functions:
See also mouseMoveEvent().
This property holds the geometry a toplevel widget has when it is not maximized or fullscreen.
For child widgets this property always holds an empty rect.
Access functions:
See also windowState and geometry.
This property holds the widget's palette.
As long as no special palette has been set, this is either a special palette for the widget class, the parent's palette or (if this widget is a top level widget), the default application palette.
Access functions:
See also QApplication::palette().
This property holds the position of the widget within its parent widget.
If the widget is a top-level widget, the position is that of the widget on the desktop, including its frame.
When changing the position, the widget, if visible, receives a move event (moveEvent()) immediately. If the widget is not currently visible, it is guaranteed to receive an event before it is shown.
move() is virtual, and all other overloaded move() implementations in Qt call it.
Warning: Calling move() or setGeometry() inside moveEvent() can lead to infinite recursion.
See the Window Geometry documentation for an overview of top-level widget geometry.
Access functions:
See also frameGeometry, size, x(), and y().
This property holds the internal geometry of the widget excluding any window frame.
The rect property equals QRect(0, 0, width(), height()).
See the Window Geometry documentation for an overview of top-level widget geometry.
Access functions:
See also size.
This property holds whether the widget is shown.
If true, the widget is visible or would become visible if all its ancestors became visible.
Access functions:
See also hide(), show(), isVisible(), isVisibleTo(), and hidden.
This property holds the size of the widget excluding any window frame.
If the widget is visible when it is being resized, it receives a resize event (resizeEvent()) immediately. If the widget is not currently visible, it is guaranteed to receive an event before it is shown.
The size is adjusted if it lies outside the range defined by minimumSize() and maximumSize(). For top-level widgets, the minimum size is always at least QSize(1, 1), and it might be larger, depending on the window manager.
Warning: Calling resize() or setGeometry() inside resizeEvent() can lead to infinite recursion.
Access functions:
See also pos, geometry, minimumSize, maximumSize, and resizeEvent().
This property holds the recommended size for the widget.
If the value of this property is an invalid size, no size is recommended.
The default implementation of sizeHint() returns an invalid size if there is no layout for this widget, and returns the layout's preferred size otherwise.
Access functions:
See also QSize::isValid(), minimumSizeHint(), sizePolicy(), setMinimumSize(), and updateGeometry().
This property holds the size increment of the widget.
When the user resizes the window, the size will move in steps of sizeIncrement().width() pixels horizontally and sizeIncrement.height() pixels vertically, with baseSize() as the basis. Preferred widget sizes are for non-negative integers i and j:
width = baseSize().width() + i * sizeIncrement().width(); height = baseSize().height() + j * sizeIncrement().height();
Note that while you can set the size increment for all widgets, it only affects top-level widgets.
Warning: The size increment has no effect under Windows, and may be disregarded by the window manager on X.
Access functions:
See also size, minimumSize, and maximumSize.
This property holds the default layout behavior of the widget.
If there is a QLayout that manages this widget's children, the size policy specified by that layout is used. If there is no such QLayout, the result of this function is used.
The default policy is Preferred/Preferred, which means that the widget can be freely resized, but prefers to be the size sizeHint() returns. Button-like widgets set the size policy to specify that they may stretch horizontally, but are fixed vertically. The same applies to lineedit controls (such as QLineEdit, QSpinBox or an editable QComboBox) and other horizontally orientated widgets (such as QProgressBar). QToolButton's are normally square, so they allow growth in both directions. Widgets that support different directions (such as QSlider, QScrollBar or QHeader) specify stretching in the respective direction only. Widgets that can provide scrollbars (usually subclasses of QScrollView) tend to specify that they can use additional space, and that they can make do with less than sizeHint().
Access functions:
See also sizeHint(), QLayout, QSizePolicy, and updateGeometry().
This property holds the widget's status tip.
Access functions:
See also toolTip and whatsThis.
This property holds the widget's tooltip.
Access functions:
See also QToolTip, statusTip, and whatsThis.
This property holds whether updates are enabled.
Calling update() and repaint() has no effect if updates are disabled. Paint events from the window system are processed normally even if updates are disabled.
setUpdatesEnabled() is normally used to disable updates for a short period of time, for instance to avoid screen flicker during large changes.
Example:
setUpdatesEnabled(false); bigVisualChanges(); setUpdatesEnabled(true); repaint();
Access functions:
See also update(), repaint(), and paintEvent().
This property holds whether the widget is visible.
Calling show() sets the widget to visible status if all its parent widgets up to the top-level widget are visible. If an ancestor is not visible, the widget won't become visible until all its ancestors are shown.
Calling hide() hides a widget explicitly. An explicitly hidden widget will never become visible, even if all its ancestors become visible, unless you show it.
A widget receives show and hide events when its visibility status changes. Between a hide and a show event, there is no need to waste CPU cycles preparing or displaying information to the user. A video application, for example, might simply stop generating new frames.
A widget that happens to be obscured by other windows on the screen is considered to be visible. The same applies to iconified top-level widgets and windows that exist on another virtual desktop (on platforms that support this concept). A widget receives spontaneous show and hide events when its mapping status is changed by the window system, e.g. a spontaneous hide event when the user minimizes the window, and a spontaneous show event when the window is restored again.
Access functions:
See also show(), hide(), isHidden(), isVisibleTo(), isMinimized(), showEvent(), and hideEvent().
This property holds the widget's What's This help text.
Access functions:
See also QWhatsThis, QWidget::toolTip, and QWidget::statusTip.
This property holds the width of the widget excluding any window frame.
See the Window Geometry documentation for an overview of top-level widget geometry.
Access functions:
See also geometry, height, and size.
This property holds the widget's icon.
This property only makes sense for top-level widgets. If no icon has been set, windowIcon() returns the application icon.
Access functions:
See also windowIconText, windowTitle, and Setting the Application Icon.
This property holds the widget's icon text.
This property only makes sense for top-level widgets. If no icon text has been set, this functions returns an empty string.
Access functions:
See also windowIcon and windowTitle.
This property holds the level of opacity for the window.
The valid range of opacity is from 1.0 (completely opaque) to 0.0 (completely transparent).
By default the value of this property is 1.0.
This feature is only present on Mac OS X and Windows 2000 and up.
Warning: Changing this property from opaque to transparent might issue a paint event that needs to be processed before the window is displayed correctly. This affects mainly the use of QPixmap::grabWindow(). Also note that semi-transparent windows update and resize significantly slower than opaque windows.
Access functions:
This property holds the window title (caption).
This property only makes sense for top-level widgets. If no caption has been set, the title is an empty string.
Access functions:
See also windowIcon and windowIconText.
This property holds the x coordinate of the widget relative to its parent including any window frame.
See the Window Geometry documentation for an overview of top-level widget geometry.
Access functions:
See also frameGeometry, y, and pos.
This property holds the y coordinate of the widget relative to its parent and including any window frame.
See the Window Geometry documentation for an overview of top-level widget geometry.
Access functions:
See also frameGeometry, x, and pos.
Constructs a widget which is a child of parent, with widget flags set to f.
If parent is 0, the new widget becomes a top-level window. If parent is another widget, this widget becomes a child window inside parent. The new widget is deleted when its parent is deleted.
The widget flags argument, f, is normally 0, but it can be set to customize the window frame of a top-level widget (i.e. parent must be 0). To customize the frame, set the Qt::WStyle_Customize flag OR'ed with any of the Qt::WFlags.
If you add a child widget to an already visible widget you must explicitly show the child to make it visible.
Note that the X11 version of Qt may not be able to deliver all combinations of style flags on all systems. This is because on X11, Qt can only ask the window manager, and the window manager can override the application's settings. On Windows, Qt can set whatever flags you want.
Destroys the widget.
All this widget's children are deleted first. The application exits if this widget is the main widget.
This event handler is called with the given event whenever the widget's actions are changed.
See also addAction(), insertAction(), removeAction(), actions(), and QActionEvent.
Returns the (possibly empty) list of this widget's actions.
Appends the action action to this widget's list of actions.
All QWidgets have list of QActions, however they can be represented graphically in many different ways. The default use of the QAction list (as returned by actions()) is to create a context QMenu.
See also removeAction() and QMenu.
Appends the actions actions to this widget's list of actions.
See also removeAction(), QMenu, and addAction().
Adjusts the size of the widget to fit the contents.
Uses sizeHint() if valid (i.e if the size hint's width and height are >= 0), otherwise sets the size to the children rectangle (the union of all child widget geometries). For toplevel widgets, the function also takes the screen size into account.
See also sizeHint() and childrenRect().
Returns the background role.
See also setBackgroundRole() and foregroundRole().
This event handler can be reimplemented to handle state changes.
The state being changed in this event can be retrieved through event e.
Returns the visible child widget at pixel position (x, y) in the widget's own coordinate system. If there is no visible child widget at the specified position, returns 0.
This is an overloaded member function, provided for convenience. It behaves essentially like the above function.
Returns the visible child widget at point p in the widget's own coordinate system.
Takes keyboard input focus from the widget.
If the widget has active focus, a focus out event is sent to this widget to tell it that it is about to lose the focus.
This widget must enable focus setting in order to get the keyboard input focus, i.e. it must call setFocusPolicy().
See also hasFocus(), setFocus(), focusInEvent(), focusOutEvent(), setFocusPolicy(), and QApplication::focusWidget().
Removes any mask set by setMask().
See also setMask().
Clears the widget flags f.
Widget flags are a combination of Qt::WindowFlags.
See also testWFlags(), getWFlags(), and setWFlags().
Returns the unobscured region where paint events can occur.
For visible widgets, this is an approximation of the area not covered by other widgets; otherwise, this is an empty region.
The repaint() function calls this function if necessary, so in general you do not need to call it.
Closes this widget. Returns true if the widget was closed; otherwise returns false.
First it sends the widget a QCloseEvent. The widget is hidden if it accepts the close event. If it ignores the event, nothing happens. The default implementation of QWidget::closeEvent() accepts the close event.
If the widget has the Qt::WA_DeleteOnClose flag, the widget is also deleted. A close events is delivered to the widget no matter if the widget is visible or not.
The QApplication::lastWindowClosed() signal is emitted when the last visible top level widget is closed.
This event handler, for event e, can be reimplemented in a subclass to receive widget close events.
See also event(), hide(), close(), and QCloseEvent.
Returns the size of the widget's margin. This is the same as size() - contentsRect().size().
See also setContentsMargins() and contentsRect().
Returns the area inside the widget's margins.
See also setContentsMargins() and contentsMarginSize().
This event handler, for event e, can be reimplemented in a subclass to receive widget context menu events.
The default implementation calls e->ignore(), which rejects the context event. See the QContextMenuEvent documentation for more details.
See also event() and QContextMenuEvent.
Creates a new widget window if window is 0, otherwise sets the widget's window to window.
Initializes the window (sets the geometry etc.) if initializeWindow is true. If initializeWindow is false, no initialization is performed. This parameter only makes sense if window is a valid window.
Destroys the old window if destroyOldWindow is true. If destroyOldWindow is false, you are responsible for destroying the window yourself (using platform native code).
The QWidget constructor calls create(0,true,true) to create a window for this widget.
Frees up window system resources. Destroys the widget window if destroyWindow is true.
destroy() calls itself recursively for all the child widgets, passing destroySubWindows for the destroyWindow parameter. To have more control over destruction of subwidgets, destroy subwidgets selectively first.
This function is usually called from the QWidget destructor.
This event handler is called when a drag is in progress and the mouse enters this widget. The event is passed in the event parameter.
See the Drag-and-drop documentation for an overview of how to provide drag-and-drop in your application.
See also QTextDrag, QImageDrag, and QDragEnterEvent.
This event handler is called when a drag is in progress and the mouse leaves this widget. The event is passed in the event parameter.
See the Drag-and-drop documentation for an overview of how to provide drag-and-drop in your application.
See also QTextDrag, QImageDrag, and QDragLeaveEvent.
This event handler is called if a drag is in progress, and when any of the following conditions occurs: the cursor enters this widget, the cursor moves within this widget, or a modifier key is pressed on the keyboard while this widget has the focus. The event is passed in the event parameter.
See the Drag-and-drop documentation for an overview of how to provide drag-and-drop in your application.
See also QTextDrag, QImageDrag, and QDragMoveEvent.
This event handler is called when the drag is dropped on this widget which are passed in the event parameter.
See the Drag-and-drop documentation for an overview of how to provide drag-and-drop in your application.
See also QTextDrag, QImageDrag, and QDropEvent.
Ensures delayed initialization of a widget and its children.
This function will be called after a widget has been fully created and before it is shown the very first time. Children will be polished after the polishEvent() handler for this widget is called.
Polishing is useful for final initialization which depends on having an instantiated widget. This is something a constructor cannot guarantee since the initialization of the subclasses might not be finished.
For widgets, this function makes sure the widget has a proper font and palette and QApplication::polish() has been called.
If you need to change some settings when a widget is polished, use polishEvent().
See also polishEvent() and QApplication::polish().
This event handler can be reimplemented in a subclass to receive widget enter events which are passed in the event parameter.
An event is sent to the widget when the mouse cursor enters the widget.
See also leaveEvent(), mouseMoveEvent(), and event().
This is the main event handler; it handles event e. You can reimplement this function in a subclass, but we recommend using one of the specialized event handlers instead.
The main event handler first passes an event through all event filters that have been installed. If none of the filters intercept the event, it calls one of the specialized event handlers.
Key press and release events are treated differently from other events. event() checks for Tab and Shift+Tab and tries to move the focus appropriately. If there is no widget to move the focus to (or the key press is not Tab or Shift+Tab), event() calls keyPressEvent().
This function returns true if it is able to pass the event over to someone (i.e. someone wanted the event); otherwise returns false.
Reimplemented from QObject.
See also closeEvent(), focusInEvent(), focusOutEvent(), enterEvent(), keyPressEvent(), keyReleaseEvent(), leaveEvent(), mouseDoubleClickEvent(), mouseMoveEvent(), mousePressEvent(), mouseReleaseEvent(), moveEvent(), paintEvent(), resizeEvent(), QObject::event(), and QObject::timerEvent().
Returns a pointer to the widget with window identifer/handle id.
The window identifier type depends on the underlying window system, see qwindowdefs.h for the actual definition. If there is no widget with this identifier, 0 is returned.
This event handler can be reimplemented in a subclass to receive keyboard focus events (focus received) for the widget. The event is passed in the event parameter
A widget normally must setFocusPolicy() to something other than Qt::NoFocus in order to receive focus events. (Note that the application programmer can call setFocus() on any widget, even those that do not normally accept focus.)
The default implementation updates the widget (except for top-level widgets that do not specify a focusPolicy()).
See also focusOutEvent(), setFocusPolicy(), keyPressEvent(), keyReleaseEvent(), event(), and QFocusEvent.
Finds a new widget to give the keyboard focus to, as appropriate for Tab and Shift+Tab, and returns true if is can find a new widget and false if it can't,
If next is true, this function searches "forwards", if next is false, it searches "backwards".
Sometimes, you will want to reimplement this function. For example, a web browser might reimplement it to move its "current active link" forwards or backwards, and call QWidget::focusNextPrevChild() only when it reaches the last or first link on the "page".
Child widgets call focusNextPrevChild() on their parent widgets, but only the top-level widget decides where to redirect focus. By overriding this method for an object, you thus gain control of focus traversal for all child widgets.
This event handler can be reimplemented in a subclass to receive keyboard focus events (focus lost) for the widget. The events is passed in the event parameter.
A widget normally must setFocusPolicy() to something other than Qt::NoFocus in order to receive focus events. (Note that the application programmer can call setFocus() on any widget, even those that do not normally accept focus.)
The default implementation updates the widget (except for top-level widgets that do not specify a focusPolicy()).
See also focusInEvent(), setFocusPolicy(), keyPressEvent(), keyReleaseEvent(), event(), and QFocusEvent.
Returns the focus proxy, or 0 if there is no focus proxy.
See also setFocusProxy().
Returns the last child of this widget that setFocus had been called on. For top level widgets this is the widget that will get focus in case this window gets activated
This is not the same as QApplication::focusWidget(), which returns the focus widget in the currently active window.
Returns the font info for the widget's current font. Equivalent to QFontInto(widget->font()).
See also font(), fontMetrics(), and setFont().
Returns the font metrics for the widget's current font. Equivalent to QFontMetrics(widget->font()).
See also font(), fontInfo(), and setFont().
Returns the foreground role.
If no explicit foreground role is set, returns a role that contrasts with the backgroundRole().
See also setForegroundRole() and backgroundRole().
Returns the window system handle of the widget, for low-level access. Using this function is not portable.
An HDC aquired with getDC() has to be released with releaseDC().
Reimplemented from QPaintDevice.
Returns the widget flags for this this widget.
Widget flags are a combination of Qt::WindowFlags.
See also testWFlags(), setWFlags(), and clearWFlags().
Grabs the keyboard input.
This widget reveives all keyboard events until releaseKeyboard() is called; other widgets get no keyboard events at all. Mouse events are not affected. Use grabMouse() if you want to grab that.
The focus widget is not affected, except that it doesn't receive any keyboard events. setFocus() moves the focus as usual, but the new focus widget receives keyboard events only after releaseKeyboard() is called.
If a different widget is currently grabbing keyboard input, that widget's grab is released first.
See also releaseKeyboard(), grabMouse(), releaseMouse(), and focusWidget().
Grabs the mouse input.
This widget receives all mouse events until releaseMouse() is called; other widgets get no mouse events at all. Keyboard events are not affected. Use grabKeyboard() if you want to grab that.
Warning: Bugs in mouse-grabbing applications very often lock the terminal. Use this function with extreme caution, and consider using the -nograb command line option while debugging.
It is almost never necessary to grab the mouse when using Qt, as Qt grabs and releases it sensibly. In particular, Qt grabs the mouse when a mouse button is pressed and keeps it until the last button is released.
Note that only visible widgets can grab mouse input. If isVisible() returns false for a widget, that widget cannot call grabMouse().
See also releaseMouse(), grabKeyboard(), releaseKeyboard(), and grabKeyboard().
This is an overloaded member function, provided for convenience. It behaves essentially like the above function.
Grabs the mouse input and changes the cursor shape.
The cursor will assume shape cursor (for as long as the mouse focus is grabbed) and this widget will be the only one to receive mouse events until releaseMouse() is called().
Warning: Grabbing the mouse might lock the terminal.
See also releaseMouse(), grabKeyboard(), releaseKeyboard(), and setCursor().
Adds a shortcut to Qt's shortcut system that watches for the given key sequence in the given context. If the context is not OnApplication, the shortcut is local to this widget; otherwise it applies to the application as a whole.
If the same key sequence has been grabbed by several widgets, when the key sequence occurs a QEvent::Shortcut event is sent to all the widgets to which it applies in a non-deterministic order, but with the ``ambiguous'' flag set to true.
Warning: You should not normally need to use this function; instead create QActions with the shortcut key sequences you require (if you also want equivalent menu options and toolbar buttons), or create QShortcuts if you just need key sequences. Both QAction and QShortcut handle all the event filtering for you, and provide signals which are triggered when the user triggers the key sequence, so are much easier to use than this low-level function.
See also releaseShortcut() and setShortcutEnabled().
Returns the preferred height for this widget, given the width w. The default implementation returns 0, indicating that the preferred height does not depend on the width.
Warning: Does not look at the widget's layout.
Hides the widget.
You almost never have to reimplement this function. If you need to do something after a widget is hidden, use hideEvent() instead.
See also hideEvent(), isHidden(), show(), showMinimized(), isVisible(), and close().
This event handler can be reimplemented in a subclass to receive widget hide events. The event is passed in the event parameter.
Hide events are sent to widgets immediately after they have been hidden.
Note: A widget receives spontaneous show and hide events when its mapping status is changed by the window system, e.g. a spontaneous hide event when the user minimizes the window, and a spontaneous show event when the window is restored again. After receiving a spontaneous hide event, a widget is still considered visible in the sense of isVisible().
See also visible, event(), and QHideEvent.
This function returns the QInputContext for this widget. By default the input context is inherited from the widgets parent. For toplevels it is inherited from QApplication.
You can override this and set a special input context for this widget by using the setInputContext() method.
See also setInputContext().
This event handler, for event e, can be reimplemented in a subclass to receive Input Method composition events. This handler is called when the state of the input method changes.
The default implementation calls e->ignore(), which rejects the Input Method event. See the QInputMethodEvent documentation for more details.
See also event() and QInputMethodEvent.
This method is only relevant for input widgets. It is used by the input method to query a set of properties of the widget to be able to support complex input method operations as support for surrounding text and reconversions.
/sa Qt::ImQueryProperty QInputMethodEvent QInputContext
Inserts the action action to this widget's list of actions, before the action before. It appends the action if before is 0 or before is not a valid action for this widget.
See also addAction().
Inserts the actions actions to this widget's list of actions, before the action before. It appends the action if before is 0 or before is not a valid action for this widget.
See also removeAction(), QMenu, and insertAction().
whether the widget is a desktop widget, i.e. represents the desktop
A desktop widget is also a top-level widget.
See also isTopLevel() and QApplication::desktop().
whether the widget is a dialog widget
A dialog widget is a secondary top-level widget, i.e. a top-level widget with a parent.
See also isTopLevel() and QDialog.
Returns true if this widget would become enabled if ancestor is enabled; otherwise returns false.
This is the case if neither the widget itself nor every parent up to but excluding ancestor has been explicitly disabled.
isEnabledTo(0) is equivalent to isEnabled().
See also setEnabled() and enabled.
whether the widget is a popup widget
A popup widget is created by specifying the widget flag Qt::WType_Popup to the widget constructor. A popup widget is also a top-level widget.
See also isTopLevel().
whether the widget is a top-level widget
A top-level widget is a widget which usually has a frame and a title. Popup and desktop widgets are also top-level widgets.
A top-level widget can have a parent widget. It will then be grouped with its parent and deleted when the parent is deleted, minimized when the parent is minimized etc. If supported by the window manager, it will also have a common taskbar entry with its parent.
QDialog and QMainWindow widgets are by default top-level, even if a parent widget is specified in the constructor. This behavior is specified by the Qt::WType_TopLevel widget flag.
See also topLevelWidget(), isDialog(), isModal(), isPopup(), isDesktop(), and parentWidget().
Returns true if this widget would become visible if ancestor is shown; otherwise returns false.
The true case occurs if neither the widget itself nor any parent up to but excluding ancestor has been explicitly hidden.
This function will still return true if the widget is obscured by other windows on the screen, but could be physically visible if it or they were to be moved.
isVisibleTo(0) is identical to isVisible().
See also show(), hide(), and isVisible().
This event handler, for event e, can be reimplemented in a subclass to receive key press events for the widget.
A widget must call setFocusPolicy() to accept focus initially and have focus in order to receive a key press event.
If you reimplement this handler, it is very important that you ignore() the event if you do not understand it, so that the widget's parent can interpret it.
The default implementation closes popup widgets if the user presses Esc. Otherwise the event is ignored.
See also keyReleaseEvent(), QKeyEvent::ignore(), setFocusPolicy(), focusInEvent(), focusOutEvent(), event(), and QKeyEvent.
This event handler, for event e, can be reimplemented in a subclass to receive key release events for the widget.
A widget must accept focus initially and have focus in order to receive a key release event.
If you reimplement this handler, it is very important that you ignore() the release if you do not understand it, so that the widget's parent can interpret it.
The default implementation ignores the event.
See also keyPressEvent(), QKeyEvent::ignore(), setFocusPolicy(), focusInEvent(), focusOutEvent(), event(), and QKeyEvent.
Returns the widget that is currently grabbing the keyboard input.
If no widget in this application is currently grabbing the keyboard, 0 is returned.
See also grabMouse() and mouseGrabber().
Returns the layout engine that manages the geometry of this widget's children.
If the widget does not have a layout, layout() returns 0.
See also sizePolicy().
This event handler can be reimplemented in a subclass to receive widget leave events which are passed in the event parameter.
A leave event is sent to the widget when the mouse cursor leaves the widget.
See also enterEvent(), mouseMoveEvent(), and event().
Lowers the widget to the bottom of the parent widget's stack.
After this call the widget will be visually behind (and therefore obscured by) any overlapping sibling widgets.
See also raise() and stackUnder().
This special event handler can be reimplemented in a subclass to receive native Macintosh events which are passed from the caller with the event details in the event parameter.
In your reimplementation of this function, if you want to stop the event being handled by Qt, return true. If you return false, this native event is passed back to Qt, which translates the event into a Qt event and sends it to the widget.
Warning: This function is not portable.
See also QApplication::macEventFilter().
Translates the widget coordinate pos from the coordinate system of parent to this widget's coordinate system. The parent must not be 0 and must be a parent of the calling widget.
See also mapTo(), mapFromParent(), mapFromGlobal(), and underMouse().
Translates the global screen coordinate pos to widget coordinates.
See also mapToGlobal(), mapFrom(), and mapFromParent().
Translates the parent widget coordinate pos to widget coordinates.
Same as mapFromGlobal() if the widget has no parent.
See also mapToParent(), mapFrom(), mapFromGlobal(), and underMouse().
Translates the widget coordinate pos to the coordinate system of parent. The parent must not be 0 and must be a parent of the calling widget.
See also mapFrom(), mapToParent(), mapToGlobal(), and underMouse().
Translates the widget coordinate pos to global screen coordinates. For example, mapToGlobal(QPoint(0,0)) would give the global coordinates of the top-left pixel of the widget.
See also mapFromGlobal(), mapTo(), and mapToParent().
Translates the widget coordinate pos to a coordinate in the parent widget.
Same as mapToGlobal() if the widget has no parent.
See also mapFromParent(), mapTo(), mapToGlobal(), and underMouse().
Returns the mask currently set on a widget. If no mask is set the return value will be an empty region.
See also setMask(), clearMask(), and QRegion::isEmpty().
Internal implementation of the virtual QPaintDevice::metric() function.
m is the metric to get.
Reimplemented from QPaintDevice.
This event handler, for event e, can be reimplemented in a subclass to receive mouse double click events for the widget.
The default implementation generates a normal mouse press event.
Note that the widgets gets a mousePressEvent() and a mouseReleaseEvent() before the mouseDoubleClickEvent().
See also mousePressEvent(), mouseReleaseEvent(), mouseMoveEvent(), event(), and QMouseEvent.
Returns the widget that is currently grabbing the mouse input.
If no widget in this application is currently grabbing the mouse, 0 is returned.
See also grabMouse() and keyboardGrabber().
This event handler, for event e, can be reimplemented in a subclass to receive mouse move events for the widget.
If mouse tracking is switched off, mouse move events only occur if a mouse button is pressed while the mouse is being moved. If mouse tracking is switched on, mouse move events occur even if no mouse button is pressed.
QMouseEvent::pos() reports the position of the mouse cursor, relative to this widget. For press and release events, the position is usually the same as the position of the last mouse move event, but it might be different if the user's hand shakes. This is a feature of the underlying window system, not Qt.
See also setMouseTracking(), mousePressEvent(), mouseReleaseEvent(), mouseDoubleClickEvent(), event(), and QMouseEvent.
This event handler, for event e, can be reimplemented in a subclass to receive mouse press events for the widget.
If you create new widgets in the mousePressEvent() the mouseReleaseEvent() may not end up where you expect, depending on the underlying window system (or X11 window manager), the widgets' location and maybe more.
The default implementation implements the closing of popup widgets when you click outside the window. For other widget types it does nothing.
See also mouseReleaseEvent(), mouseDoubleClickEvent(), mouseMoveEvent(), event(), and QMouseEvent.
This event handler, for event e, can be reimplemented in a subclass to receive mouse release events for the widget.
See also mousePressEvent(), mouseDoubleClickEvent(), mouseMoveEvent(), event(), and QMouseEvent.
This event handler can be reimplemented in a subclass to receive widget move events which are passed in the event parameter. When the widget receives this event, it is already at the new position.
The old position is accessible through QMoveEvent::oldPos().
See also resizeEvent(), event(), move(), and QMoveEvent.
Returns the next widget in this widget's focus chain.
Returns the widget's paint engine. (This defaults to the QQWSPaintEngine.)
Reimplemented from QPaintDevice.
This event handler can be reimplemented in a subclass to receive paint events which are passed in the event parameter.
A paint event is a request to repaint all or part of the widget. It can happen as a result of repaint() or update(), or because the widget was obscured and has now been uncovered, or for many other reasons.
Many widgets can simply repaint their entire surface when asked to, but some slow widgets need to optimize by painting only the requested region: QPaintEvent::region(). This speed optimization does not change the result, as painting is clipped to that region during event processing. QListView and QCanvas do this, for example.
Qt also tries to speed up painting by merging multiple paint events into one. When update() is called several times or the window system sends several paint events, Qt merges these events into one event with a larger region (see QRegion::unite()). repaint() does not permit this optimization, so we suggest using update() when possible.
When the paint event occurs, the update region has normally been erased, so that you're painting on the widget's background. There are a couple of exceptions and QPaintEvent::erased() tells you whether the widget has been erased or not.
The background can be set using setBackground() or setBackgroundRole().
From Qt 4.0, QWidget automatically double-buffers its painting, so there's no need to write double-buffering code in paintEvent() to avoid flicker.
See also event(), repaint(), update(), QPainter, QPixmap, and QPaintEvent.
Returns the parent of this widget, or 0 if it does not have any parent widget.
This event handler can be reimplemented in a subclass to receive widget polish events passed in the event parameter.
See also ensurePolished() and QApplication::polish().
This special event handler can be reimplemented in a subclass to receive native Qt/Embedded events which are passed in the event parameter.
In your reimplementation of this function, if you want to stop the event being handled by Qt, return true. If you return false, this native event is passed back to Qt, which translates the event into a Qt event and sends it to the widget.
Warning: This function is not portable.
See also QApplication::qwsEventFilter().
Raises this widget to the top of the parent widget's stack.
After this call the widget will be visually in front of any overlapping sibling widgets.
See also lower() and stackUnder().
Releases the HDC aquired by a previous call to getDC(). Using this function is not portable.
Reimplemented from QPaintDevice.
Releases the keyboard grab.
See also grabKeyboard(), grabMouse(), and releaseMouse().
Releases the mouse grab.
See also grabMouse(), grabKeyboard(), and releaseKeyboard().
Removes the shortcut with the given id from Qt's shortcut system. The widget will no longer receive QEvent::Shortcut events for the shortcut's key sequence (unless it has other shortcuts with the same key sequence).
Warning: You should not normally need to use this function since Qt's shortcut system removes shortcuts automatically when their parent widget is destroyed. It is best to use QAction or QShortcut to handle shortcuts, since they are easier to use than this low-level function. Note also that this is an expensive operation.
See also grabShortcut() and setShortcutEnabled().
Removes the action action from this widget's list of actions.
Repaints the widget directly by calling paintEvent() immediately, unless updates are disabled or the widget is hidden.
We suggest only using repaint() if you need an immediate repaint, for example during animation. In almost all circumstances update() is better, as it permits Qt to optimize for speed and minimize flicker.
Warning: If you call repaint() in a function which may itself be called from paintEvent(), you may get infinite recursion. The update() function never causes recursion.
See also update(), paintEvent(), and setUpdatesEnabled().
This is an overloaded member function, provided for convenience. It behaves essentially like the above function.
This version repaints a rectangle (x, y, w, h) inside the widget.
If w is negative, it is replaced with width() - x, and if h is negative, it is replaced width height() - y.
This is an overloaded member function, provided for convenience. It behaves essentially like the above function.
This version repaints a rectangle r inside the widget.
This is an overloaded member function, provided for convenience. It behaves essentially like the above function.
This version repaints a region rgn inside the widget.
This function is called when text widgets need to be neutral state to execute text operations properly. See qlineedit.cpp and qtextedit.cpp as example.
Ordinary reset that along with changing focus to another widget, moving the cursor, etc, is implicitly handled via unfocusInputContext() because whether reset or not when such situation is a responsibility of input methods. So we delegate the responsibility to the input context via unfocusInputContext(). See 'Preedit preservation' section of the class description of QInputContext for further information.
See also QInputContext, unfocusInputContext(), and QInputContext::unsetFocus().
This event handler can be reimplemented in a subclass to receive widget resize events which are passed in the event parameter. When resizeEvent() is called, the widget already has its new geometry. The old size is accessible through QResizeEvent::oldSize().
The widget will be erased and receive a paint event immediately after processing the resize event. No drawing need be (or should be) done inside this handler.
Widgets that have been created with the Qt::WNoAutoErase flag will not be erased. Nevertheless, they will receive a paint event for their entire area afterwards. Again, no drawing needs to be done inside this handler.
The default implementation calls updateMask() if the widget has automatic masking enabled.
See also moveEvent(), event(), resize(), QResizeEvent, and paintEvent().
Scrolls the widget including its children dx pixels to the right and dy downwards. Both dx and dy may be negative.
After scrolling, scroll() sends a paint event for the the part that is read but not written. For example, when scrolling 10 pixels rightwards, the leftmost ten pixels of the widget need repainting. The paint event may be delivered immediately or later, depending on some heuristics (note that you might have to force processing of paint events using QApplication::sendPostedEvents() when using scroll() and move() in combination).
See also QScrollView and bitBlt().
This is an overloaded member function, provided for convenience. It behaves essentially like the above function.
This version only scrolls r and does not move the children of the widget.
If r is empty or invalid, the result is undefined.
See also QScrollView and bitBlt().
Sets the top-level widget containing this widget to be the active window.
An active window is a visible top-level window that has the keyboard input focus.
This function performs the same operation as clicking the mouse on the title bar of a top-level window. On X11, the result depends on the Window Manager. If you want to ensure that the window is stacked on top as well you should also call raise(). Note that the window must be visible, otherwise setActiveWindow() has no effect.
On Windows, if you are calling this when the application is not currently the active one then it will not make it the active window. It will flash the task bar entry blue to indicate that the window has done something. This is because Microsoft do not allow an application to interrupt what the user is currently doing in another application.
See also isActiveWindow(), topLevelWidget(), and show().
Sets the attribute attribute on this widget if on is true; otherwise clears the attribute.
See also testAttribute().
Sets the background role of the widget to role.
See also backgroundRole() and foregroundRole().
Sets the margins around the contents of the widget to have the sizes left, top, right, and bottom. The margins are used by the layout system, and may be used by subclasses to specify the area to draw in (e.g. excluding the frame).
Changing the margins will trigger a resizeEvent().
See also contentsRect().
Disables widget input events if disable is true; otherwise enables input events.
See the enabled documentation for more information.
See also isEnabledTo(), QKeyEvent, QMouseEvent, and changeEvent().
Sets both the minimum and maximum heights of the widget to h without changing the widths. Provided for convenience.
See also sizeHint(), minimumSize(), maximumSize(), and setFixedSize().
Sets both the minimum and maximum sizes of the widget to s, thereby preventing it from ever growing or shrinking.
If the widget has a layout, the minimum and maximum sizes will automatically be set by the layout. If you want to set the minimum size yourself, you must first call QLayout::setResizeMode(QLayout::Fixed).
If the widget has a layout, the layout automatically sets the widget's minimum and maximum sizes based on its contents. If you want to manually set a fixed size, you must call QLayout::setResizeMode(QLayout::FreeResize) before calling setFixedSize(). Alternatively, if you want the dialog to have a fixed size based on its contents, call QLayout::setResizeMode(QLayout::Fixed).
See also maximumSize, minimumSize, and QLayout::resizeMode.
This is an overloaded member function, provided for convenience. It behaves essentially like the above function.
Sets the width of the widget to w and the height to h.
Sets both the minimum and maximum width of the widget to w without changing the heights. Provided for convenience.
See also sizeHint(), minimumSize(), maximumSize(), and setFixedSize().
Gives the keyboard input focus to this widget (or its focus proxy) if this widget or one of its parents is the active window.
First, a focus out event is sent to the focus widget (if any) to tell it that it is about to lose the focus. Then a focus in event is sent to this widget to tell it that it just received the focus. (Nothing happens if the focus in and focus out widgets are the same.)
setFocus() gives focus to a widget regardless of its focus policy, but does not clear any keyboard grab (see grabKeyboard()).
Be aware that if the widget is hidden, it will not accept focus.
Warning: If you call setFocus() in a function which may itself be called from focusOutEvent() or focusInEvent(), you may get an infinite recursion.
setFocusPolicy() QApplication::focusWidget() grabKeyboard() grabMouse()
See also hasFocus(), clearFocus(), focusInEvent(), and focusOutEvent().
Sets the widget's focus proxy to widget w. If w is 0, the function resets this widget to have no focus proxy.
Some widgets can "have focus", but create a child widget, such as QLineEdit, to actually handle the focus. In this case, the widget can set the line edit to be its focus proxy.
setFocusProxy() sets the widget which will actually get focus when "this widget" gets it. If there is a focus proxy, setFocus() and hasFocus() operate on the focus proxy.
See also focusProxy().
Sets the foreground role of the widget to role
backgroundRole(), setForegroundRole()
This function sets an input context specified by identifierName on this widget.
See also inputContext().
Causes only the pixels of the widget for which bitmap has a corresponding 1 bit to be visible. If the region includes pixels outside the rect() of the widget, window system controls in that area may or may not be visible, depending on the platform.
Note that this effect can be slow if the region is particularly complex.
See examples/tux for an example of masking for transparency.
See also setMask() and clearMask().
This is an overloaded member function, provided for convenience. It behaves essentially like the above function.
Causes only the parts of the widget which overlap region to be visible. If the region includes pixels outside the rect() of the widget, window system controls in that area may or may not be visible, depending on the platform.
Note that this effect can be slow if the region is particularly complex.
See also setMask() and clearMask().
Sets the parent of the widget to parent. The widget is moved to position (0,0) in its new parent.
If the new parent widget is in a different top-level widget, the reparented widget and its children are appended to the end of the tab chain of the new parent widget, in the same internal order as before. If one of the moved widgets had keyboard focus, setParent() calls clearFocus() for that widget.
If the new parent widget is in the same top-level widget as the old parent, setting the parent doesn't change the tab order or keyboard focus.
Warning: It is extremely unlikely that you will ever need this function. If you have a widget that changes its content dynamically, it is far easier to use QWidgetStack or QWizard.
This is an overloaded member function, provided for convenience. It behaves essentially like the above function.
This function also takes widget flags, f as an argument.
See also getWFlags().
If enable is true, the shortcut with the given id is enabled; otherwise the shortcut is disabled.
Warning: You should not normally need to use this function since Qt's shortcut system enables/disables shortcuts automatically as widgets become hidden/visible and gain or lose focus. It is best to use QAction or QShortcut to handle shortcuts, since they are easier to use than this low-level function.
See also grabShortcut() and releaseShortcut().
Sets the widget's GUI style to style. Ownership of the style object is not transferred.
If no style is set, the widget uses the application's style, QApplication::style() instead.
Setting a widget's style has no effect on existing or future child widgets.
Warning: This function is particularly useful for demonstration purposes, where you want to show Qt's styling capabilities. Real applications should avoid it and use one consistent GUI style instead.
See also style(), QStyle, QApplication::style(), and QApplication::setStyle().
This is an overloaded member function, provided for convenience. It behaves essentially like the above function.
Sets the widget's GUI style to style using the QStyleFactory.
Moves the second widget around the ring of focus widgets so that keyboard focus moves from the first widget to the second widget when the Tab key is pressed.
Note that since the tab order of the second widget is changed, you should order a chain like this:
setTabOrder(a, b); // a to b setTabOrder(b, c); // a to b to c setTabOrder(c, d); // a to b to c to d
not like this:
setTabOrder(c, d); // c to d WRONG setTabOrder(a, b); // a to b AND c to d setTabOrder(b, c); // a to b to c, but not c to d
If first or second has a focus proxy, setTabOrder() correctly substitutes the proxy.
See also setFocusPolicy() and setFocusProxy().
Sets the widget flags f.
Widget flags are a combination of Qt::WindowFlags.
See also testWFlags(), getWFlags(), and clearWFlags().
Sets the window's role to role. This only makes sense for top-level widgets on X11.
Sets the window state to windowState. The window state is a OR'ed combination of Qt::WindowState: Qt::WindowMinimized, Qt::WindowMaximized, Qt::WindowFullScreen and Qt::WindowActive.
If the window is not visible (i.e. isVisible() returns false), the window state will take effect when show() is called. For visible windows, the change is immediate. For example, to toggle between full-screen and mormal mode, use the following code:
w->setWindowState(w->windowState() ^ Qt::WindowFullScreen);
In order to restore and activate a minimized window (while preserving its maximized and/or full-screen state), use the following:
w->setWindowState(w->windowState() & ~Qt::WindowMinimized | Qt::WindowActive);
Note: On some window systems Qt::WindowActive is not immediate, and may be ignored in certain cases.
See also Qt::WindowState and windowState().
Shows the widget and its child widgets.
If its size or position has changed, Qt guarantees that a widget gets move and resize events just before it is shown. If the widget has not been resized yet, Qt will adjust the widget's size to a useful default using adjustSize().
You almost never have to reimplement this function. If you need to change some settings before a widget is shown, use showEvent() instead. If you need to do some delayed initialization use polishEvent().
See also showEvent(), hide(), showMinimized(), showMaximized(), showNormal(), and isVisible().
This event handler can be reimplemented in a subclass to receive widget show events which are passed in the event parameter.
Non-spontaneous show events are sent to widgets immediately before they are shown. The spontaneous show events of top-level widgets are delivered afterwards.
Note: A widget receives spontaneous show and hide events when its mapping status is changed by the window system, e.g. a spontaneous hide event when the user minimizes the window, and a spontaneous show event when the window is restored again. After receiving a spontaneous hide event, a widget is still considered visible in the sense of isVisible().
See also visible, event(), and QShowEvent.
Shows the widget in full-screen mode.
Calling this function only affects top-level widgets.
To return from full-screen mode, call showNormal().
Full-screen mode works fine under Windows, but has certain problems under X. These problems are due to limitations of the ICCCM protocol that specifies the communication between X11 clients and the window manager. ICCCM simply does not understand the concept of non-decorated full-screen windows. Therefore, the best we can do is to request a borderless window and place and resize it to fill the entire screen. Depending on the window manager, this may or may not work. The borderless window is requested using MOTIF hints, which are at least partially supported by virtually all modern window managers.
An alternative would be to bypass the window manager entirely and create a window with the Qt::WX11BypassWM flag. This has other severe problems though, like totally broken keyboard focus and very strange effects on desktop changes or when the user raises other windows.
X11 window managers that follow modern post-ICCCM specifications support full-screen mode properly.
See also showNormal(), showMaximized(), show(), hide(), and isVisible().
Shows the widget maximized.
Calling this function only affects top-level widgets.
On X11, this function may not work properly with certain window managers. See the Window Geometry documentation for an explanation.
See also setWindowState(), showNormal(), showMinimized(), show(), hide(), and isVisible().
Shows the widget minimized, as an icon.
Calling this function only affects top-level widgets.
See also showNormal(), showMaximized(), show(), hide(), isVisible(), and isMinimized().
Restores the widget after it has been maximized or minimized.
Calling this function only affects top-level widgets.
See also setWindowState(), showMinimized(), showMaximized(), show(), hide(), and isVisible().
Places the widget under w in the parent widget's stack.
To make this work, the widget itself and w must be siblings.
Returns the GUI style for this widget
See also QWidget::setStyle(), QApplication::setStyle(), and QApplication::style().
This event handler, for event e, can be reimplemented in a subclass to receive tablet events for the widget.
If you reimplement this handler, it is very important that you ignore() the event if you do not handle it, so that the widget's parent can interpret it.
The default implementation ignores the event.
See also QTabletEvent::ignore(), QTabletEvent::accept(), event(), and QTabletEvent.
Returns true if attribute attribute is set on this widget; otherwise returns false.
See also setAttribute().
Returns the bitwise AND of the widget flags and f.
Widget flags are a combination of Qt::WindowFlags.
If you want to test for the presence of multiple flags (or composite flags such as Qt::WStyle_Splash), test the return value for equality against the argument. For example:
int flags = Qt::WStyle_Tool | Qt::WStyle_NoBorder; if (testWFlags(flags)) ... // Qt::WStyle_Tool or Qt::WStyle_NoBorder or both are set if (testWFlags(flags) == flags) ... // both Qt::WStyle_Tool and Qt::WStyle_NoBorder are set
See also getWFlags(), setWFlags(), and clearWFlags().
Returns the top-level widget for this widget, i.e. the next ancestor widget that has (or could have) a window-system frame.
If the widget is a top-level, the widget itself is returned.
Typical usage is changing the window title:
aWidget->topLevelWidget()->setWindowTitle("New Window Title");
See also isTopLevel().
Returns true if the widget is under the mouse cursor; otherwise returns false.
This value is not updated properly during drag and drop operations.
See also QEvent::Enter and QEvent::Leave.
Updates the widget unless updates are disabled or the widget is hidden.
This function does not cause an immediate repaint; instead it schedules a paint event for processing when Qt returns to the main event loop. This permits Qt to optimize for more speed and less flicker than a call to repaint() does.
Calling update() several times normally results in just one paintEvent() call.
Qt normally erases the widget's area before the paintEvent() call. If the Qt::WRepaintNoErase widget flag is set, the widget is responsible for painting all its pixels itself.
See also repaint(), paintEvent(), setUpdatesEnabled(), and setWFlags().
This is an overloaded member function, provided for convenience. It behaves essentially like the above function.
This version updates a rectangle (x, y, w, h) inside the widget.
This is an overloaded member function, provided for convenience. It behaves essentially like the above function.
This version updates a rectangle r inside the widget.
This is an overloaded member function, provided for convenience. It behaves essentially like the above function.
This version repaints a region rgn inside the widget.
Notifies the layout system that this widget has changed and may need to change geometry.
Call this function if the sizeHint() or sizePolicy() have changed.
For explicitly hidden widgets, updateGeometry() is a no-op. The layout system will be notified as soon as the widget is shown.
This function can be reimplemented in a subclass to support transparent widgets. It should be called whenever a widget changes state in a way that means that the shape mask must be recalculated.
See also setAutoMask(), updateMask(), setMask(), and clearMask().
This event handler, for event e, can be reimplemented in a subclass to receive wheel events for the widget.
If you reimplement this handler, it is very important that you ignore() the event if you do not handle it, so that the widget's parent can interpret it.
The default implementation ignores the event.
See also QWheelEvent::ignore(), QWheelEvent::accept(), event(), and QWheelEvent.
This special event handler can be reimplemented in a subclass to receive native Windows events which are passed in the message parameter.
In your reimplementation of this function, if you want to stop the event being handled by Qt, return true and set result to the value that the window procedure should return. If you return false, this native event is passed back to Qt, which translates the event into a Qt event and sends it to the widget.
Warning: This function is not portable.
See also QApplication::winEventFilter().
Returns the window system identifier of the widget.
Portable in principle, but if you use it you are probably about to do something non-portable. Be careful.
See also find().
Returns the window's role, or an empty string.
See also windowIcon and windowTitle.
Returns the current window state. The window state is a OR'ed combination of Qt::WindowState: Qt::WindowMinimized, Qt::WindowMaximized, Qt::WindowFullScreen and Qt::WindowActive.
See also Qt::WindowState and setWindowState().
This special event handler can be reimplemented in a subclass to receive native X11 events which are passed in the event parameter.
In your reimplementation of this function, if you want to stop the event being handled by Qt, return true. If you return false, this native event is passed back to Qt, which translates the event into a Qt event and sends it to the widget.
Warning: This function is not portable.
See also QApplication::x11EventFilter().
Returns the Xft draw handle of the widget for XRender support. Use of this function is not portable. This function will return 0 if XRender support is not compiled into Qt, if the XRender extension is not supported on the X11 display, or if the handle could not be created.
Returns the Xft picture handle of the widget for XRender support. Use of this function is not portable. This function will return 0 if XRender support is not compiled into Qt, if the XRender extension is not supported on the X11 display, or if the handle could not be created.
Copyright © 2004 Trolltech | Trademarks | Qt 4.0.0-b1 |