Detailed Description
The QDesignerContainerExtension class provides extensions for container widgets in Qt Designer.
Member Function Documentation
QDesignerContainerExtension::~QDesignerContainerExtension () [virtual]
Destroys the extension.
void QDesignerContainerExtension::addWidget ( QWidget * widget ) [pure virtual]
Adds the given widget to the container after all the existing widgets.
See also insertWidget() and remove().
int QDesignerContainerExtension::count () const [pure virtual]
Returns the number of widgets in the container.
int QDesignerContainerExtension::currentIndex () const [pure virtual]
Returns the current index, corresponding to the current widget in the container.
See also setCurrentIndex().
void QDesignerContainerExtension::insertWidget ( int index, QWidget * widget ) [pure virtual]
Inserts the given widget into the container at the specified index.
See also addWidget() and remove().
void QDesignerContainerExtension::remove ( int index ) [pure virtual]
Removes the widget at the given index in the container.
See also addWidget() and insertWidget().
void QDesignerContainerExtension::setCurrentIndex ( int index ) [pure virtual]
Sets the current index to the specified index, corresponding to the current widget in the container.
See also currentIndex().
QWidget * QDesignerContainerExtension::widget ( int index ) const [pure virtual]
Returns the widget at the given index in the container.
See also addWidget() and insertWidget().