QAbstractFormBuilder Class

The QAbstractFormBuilder class provides a default implementation for classes that create user interfaces at run-time. More...

Header: #include <QAbstractFormBuilder>
Inherited By:

QFormBuilder

Public Functions

QAbstractFormBuilder()
virtual ~QAbstractFormBuilder()
virtual QWidget * load(QIODevice * device, QWidget * parent = 0)
virtual void save(QIODevice * device, QWidget * widget)
void setWorkingDirectory(const QDir & directory)
QDir workingDirectory() const

Detailed Description

The QAbstractFormBuilder class provides a default implementation for classes that create user interfaces at run-time.

QAbstractFormBuilder provides a standard interface and a default implementation for constructing forms from user interface files. It is not intended to be instantiated directly. Use the QFormBuilder class to create user interfaces from UI files at run-time. For example:

        MyForm::MyForm(QWidget *parent)
            : QWidget(parent)
        {
            QFormBuilder builder;
            QFile file(":/forms/myWidget.ui");
            file.open(QFile::ReadOnly);
            QWidget *myWidget = builder.load(&file, this);
            file.close();

            QVBoxLayout *layout = new QVBoxLayout;
            layout->addWidget(myWidget);
            setLayout(layout);
        }

To override certain aspects of the form builder's behavior, subclass QAbstractFormBuilder and reimplement the relevant virtual functions:

  • load() handles reading of UI format files from arbitrary QIODevices, and construction of widgets from the XML data that they contain.
  • save() handles saving of widget details in UI format to arbitrary QIODevices.
  • workingDirectory() and setWorkingDirectory() control the directory in which forms are held. The form builder looks for other resources on paths relative to this directory.

The QFormBuilder class is typically used by custom components and applications that embed Qt Designer. Standalone applications that need to dynamically generate user interfaces at run-time use the QUiLoader, found in the QtUiTools module.

See also QtUiTools Module.

Member Function Documentation

QAbstractFormBuilder::QAbstractFormBuilder()

Constructs a new form builder.

[virtual] QAbstractFormBuilder::~QAbstractFormBuilder()

Destroys the form builder.

[virtual] QWidget * QAbstractFormBuilder::load(QIODevice * device, QWidget * parent = 0)

Loads an XML representation of a widget from the given device, and constructs a new widget with the specified parent.

See also save().

[virtual] void QAbstractFormBuilder::save(QIODevice * device, QWidget * widget)

Saves an XML representation of the given widget to the specified device in the standard UI file format.

See also load().

void QAbstractFormBuilder::setWorkingDirectory(const QDir & directory)

Sets the current working directory of the form builder to the specified directory.

See also workingDirectory().

QDir QAbstractFormBuilder::workingDirectory() const

Returns the current working directory of the form builder.

See also setWorkingDirectory().

© 2016 The Qt Company Ltd. Documentation contributions included herein are the copyrights of their respective owners. The documentation provided herein is licensed under the terms of the GNU Free Documentation License version 1.3 as published by the Free Software Foundation. Qt and respective logos are trademarks of The Qt Company Ltd. in Finland and/or other countries worldwide. All other trademarks are property of their respective owners.