Home | All Classes | Main Classes | Annotated | Grouped Classes | Functions

QWidgetView Class Reference

The QWidgetView class provides a scrolling view onto another widget. More...

#include <QWidgetView>

Inherits QViewport.

Writable Properties

Read-Only Properties

Public Functions

Public Slots

Signals

Static Public Members

Protected Functions


Detailed Description

The QWidgetView class provides a scrolling view onto another widget.

A widget view is used to display the contents of a child widget within a frame. If the widget exceeds the size of the frame, the view can provide scroll bars so that the entire area of the child widget can be viewed.

The child widget must be specified with setWidget(); it can be retrieved with widget(). The view can be made to be resizable with the setWidgetResizable() function.

When using a widget view to display the contents of a custom widget, it is important to ensure that the QWidget::sizeHint size hint of the child widget is set to a suitable value. If a standard QWidget is used for the child widget, it may be necessary to call QWidget::setMinimumSize to ensure that the contents of the widget are shown correctly within the widget view.


Property Documentation

widgetResizable : bool

This property holds whether the widget view should resize the view widget.

If this property is set to false (the default), the view honors the size of its widget. Regardless of this property, you can programmatically resize the widget using widget()->resize(), and the widget view will automatically adjust itself to the new size.

If this property is set to true, the view will automatically resize the widget in order to avoid scroll bars where they can be avoided, or to take advantage of extra space.

Access functions:


Member Function Documentation

QWidgetView::QWidgetView ( QWidget * parent = 0 )

Constructs a widget view with the given parent, and with no widget; see setWidget().

QWidgetView::~QWidgetView ()

Destroys the widget view.

void QWidgetView::setWidget ( QWidget * w )

Set's the view widget's widget to w.

w becomes a child of the widget view, and will be destroyed when the widget view is deleted or when a new view widget is set.

See also widget().

QWidget * QWidgetView::widget () const

Returns the view widget's widget, or 0 if there is none.

See also setWidget().


Copyright © 2004 Trolltech Trademarks
Qt 4.0.0-b1