QFormBuilder Class Reference |
QFormBuilder () | |
virtual | ~QFormBuilder () |
void | addPluginPath ( const QString & pluginPath ) |
void | clearPluginPaths () |
QList<QDesignerCustomWidgetInterface *> | customWidgets () const |
QStringList | pluginPaths () const |
void | setPluginPath ( const QStringList & pluginPaths ) |
The QFormBuilder class is used to dynamically construct user interfaces from UI files at run-time.
The QFormBuilder class provides a mechanism for dynamically creating user interfaces at run-time, based on UI files created with Qt Designer. 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); }
By including the user interface in the example's resources (myForm.qrc), we ensure that it will be present when the example is run:
<!DOCTYPE RCC><RCC version="1.0"> <qresource prefix="/forms"> <file>mywidget.ui</file> </qresource> </RCC>
QFormBuilder extends the QAbstractFormBuilder base class with a number of functions that are used to support custom widget plugins:
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 class, found in the QtUiTools module.
See also QAbstractFormBuilder and QtUiTools Module.
Constructs a new form builder.
Destroys the form builder.
Adds a new plugin path specified by pluginPath to the list of paths that will be searched by the form builder when loading a custom widget plugin.
See also setPluginPath() and clearPluginPaths().
Clears the list of paths that the form builder uses to search for custom widget plugins.
See also pluginPaths().
Returns a list of the available plugins.
Returns the list of paths the form builder searches for plugins.
See also addPluginPath().
Sets the list of plugin paths to the list specified by pluginPaths.
See also addPluginPath().
Cette page est une traduction d'une page de la documentation de Qt, écrite par Nokia Corporation and/or its subsidiary(-ies). Les éventuels problèmes résultant d'une mauvaise traduction ne sont pas imputables à Nokia. | Qt 4.6-snapshot | |
Copyright © 2012 Developpez LLC. Tous droits réservés Developpez LLC. Aucune reproduction, même partielle, ne peut être faite de ce site et de l'ensemble de son contenu : textes, documents et images sans l'autorisation expresse de Developpez LLC. Sinon, vous encourez selon la loi jusqu'à 3 ans de prison et jusqu'à 300 000 E de dommages et intérêts. Cette page est déposée à la SACD. | ||
Vous avez déniché une erreur ? Un bug ? Une redirection cassée ? Ou tout autre problème, quel qu'il soit ? Ou bien vous désirez participer à ce projet de traduction ? N'hésitez pas à nous contacter ou par MP ! |
Copyright © 2000-2012 - www.developpez.com