Viadeo Twitter Google Bookmarks ! Facebook Digg del.icio.us MySpace Yahoo MyWeb Blinklist Netvouz Reddit Simpy StumbleUpon Bookmarks Windows Live Favorites 
Logo Documentation Qt ·  Page d'accueil  ·  Toutes les classes  ·  Classes principales  ·  Annotées  ·  Classes groupées  ·  Modules  ·  Fonctions  · 

QDesignerCustomWidgetInterface Class Reference
[QtDesigner module]

The QDesignerCustomWidgetInterface class enables Qt Designer to access and construct a custom widget. More...

#include <QDesignerCustomWidgetInterface>

Public Functions


Detailed Description

The QDesignerCustomWidgetInterface class enables Qt Designer to access and construct a custom widget.

QDesignerCustomWidgetInterface provides a custom widget with an interface. The class contains a set of functions that gives Qt Designer the basic information about the widget, such as its class name and its include file. Furthermore the interface is able to create instances of the custom widget, and it defines the initialize() function which is called after the custom widget plugin is loaded into Qt Designer. This latter function's QDesignerFormEditorInterface parameter provides the plugin with a gateway to all of Qt Designer's API.

When implementing a custom widget you must subclass QDesignerCustomWidgetInterface to expose your widget to Qt Designer. For example:

    class MyCustomWidgetPlugin : public QObject, public QDesignerCustomWidgetInterface
    {
        Q_OBJECT
        Q_INTERFACES(QDesignerCustomWidgetInterface)

    public:
        MyCustomWidgetPlugin(QObject *parent = 0);

        bool isContainer() const;
        bool isInitialized() const;
        QIcon icon() const;
        QString domXml() const;
        QString group() const;
        QString includeFile() const;
        QString name() const;
        QString toolTip() const;
        QString whatsThis() const;
        QWidget *createWidget(QWidget *parent);
        void initialize(QDesignerFormEditorInterface *core);

    private:
        bool initialized;
    };

Note that the only part of the class definition that is specific to this particular custom widget is the class name. In addition, since we are implementing an interface, we must ensure that it's made known to the meta object system using the Q_INTERFACES() macro. This enables Qt Designer to use the qobject_cast() function to query for supported interfaces using nothing but a QObject pointer.

In the implementation of the class you must remember to export your custom widget plugin to Qt Designer using the Q_EXPORT_PLUGIN2() macro:

        Q_EXPORT_PLUGIN2(MyCustomWidget)

This macro ensures that Qt Designer can access and construct the custom widget. Without this macro, there is no way for Qt Designer to use it.

When implementing a custom widget plugin, you build it as a separate library. If you want to include several custom widget plugins in the same library, you must in addition subclass QDesignerCustomWidgetCollectionInterface.

Warning: If your custom widget plugin contains QVariant properties, be aware that only the following types are supported:

For a complete example using the QDesignerCustomWidgetInterface class, see the Custom Widget Example. The example shows how to create a custom widget plugin for Qt Designer.

See also QDesignerCustomWidgetCollectionInterface and Creating Custom Widgets for Qt Designer.


Member Function Documentation

QDesignerCustomWidgetInterface::~QDesignerCustomWidgetInterface ()   [virtual]

Destroys the custom widget interface.

QString QDesignerCustomWidgetInterface::codeTemplate () const   [virtual]

This function is reserved for future use by Qt Designer.

QWidget * QDesignerCustomWidgetInterface::createWidget ( QWidget * parent )   [pure virtual]

Returns a new instance of the custom widget, with the given parent.

QString QDesignerCustomWidgetInterface::domXml () const   [virtual]

Returns the XML that is used to describe the custom widget's properties to Qt Designer.

QString QDesignerCustomWidgetInterface::group () const   [pure virtual]

Returns the name of the group to which the custom widget belongs.

QIcon QDesignerCustomWidgetInterface::icon () const   [pure virtual]

Returns the icon used to represent the custom widget in Qt Designer's widget box.

QString QDesignerCustomWidgetInterface::includeFile () const   [pure virtual]

Returns the path to the include file that uic uses when creating code for the custom widget.

void QDesignerCustomWidgetInterface::initialize ( QDesignerFormEditorInterface * formEditor )   [virtual]

Initializes the widget for use with the specified formEditor interface.

See also isInitialized().

bool QDesignerCustomWidgetInterface::isContainer () const   [pure virtual]

Returns true if the custom widget is intended to be used as a container; otherwise returns false.

Most custom widgets are not used to hold other widgets, so their implementations of this function will return false, but custom containers will return true to ensure that they behave correctly in Qt Designer.

bool QDesignerCustomWidgetInterface::isInitialized () const   [virtual]

Returns true if the widget has been initialized; otherwise returns false.

See also initialize().

QString QDesignerCustomWidgetInterface::name () const   [pure virtual]

Returns the name of the class that implements the custom widget.

QString QDesignerCustomWidgetInterface::toolTip () const   [pure virtual]

Returns a short description of the widget that can be used by Qt Designer in a tool tip.

QString QDesignerCustomWidgetInterface::whatsThis () const   [pure virtual]

Returns a description of the widget that can be used by Qt Designer in "What's This?" help for the widget.

Publicité

Best Of

Actualités les plus lues

Semaine
Mois
Année
  1. « Quelque chose ne va vraiment pas avec les développeurs "modernes" », un développeur à "l'ancienne" critique la multiplication des bibliothèques 103
  2. Pourquoi les programmeurs sont-ils moins payés que les gestionnaires de programmes ? Manquent-ils de pouvoir de négociation ? 56
  3. «Le projet de loi des droits du développeur» : quelles conditions doivent remplir les entreprises pour que le développeur puisse réussir ? 97
  4. Les développeurs détestent-ils les antivirus ? Un programmeur manifeste sa haine envers ces solutions de sécurité 32
  5. Qt Commercial : Digia organise un webinar gratuit le 27 mars sur la conception d'interfaces utilisateur et d'applications avec le framework 0
  6. Quelles nouveautés de C++11 Visual C++ doit-il rapidement intégrer ? Donnez-nous votre avis 10
  7. 2017 : un quinquennat pour une nouvelle version du C++ ? Possible, selon Herb Sutter 11
Page suivante
  1. Linus Torvalds : le "C++ est un langage horrible", en justifiant le choix du C pour le système de gestion de version Git 100
  2. Comment prendre en compte l'utilisateur dans vos applications ? Pour un développeur, « 90 % des utilisateurs sont des idiots » 231
  3. Quel est LE livre que tout développeur doit lire absolument ? Celui qui vous a le plus marqué et inspiré 96
  4. Apple cède et s'engage à payer des droits à Nokia, le conflit des brevets entre les deux firmes s'achève 158
  5. Nokia porte à nouveau plainte contre Apple pour violation de sept nouveaux brevets 158
  6. « Quelque chose ne va vraiment pas avec les développeurs "modernes" », un développeur à "l'ancienne" critique la multiplication des bibliothèques 103
  7. Quel est le code dont vous êtes le plus fier ? Pourquoi l'avez-vous écrit ? Et pourquoi vous a-t-il donné autant de satisfaction ? 83
Page suivante

Le Qt Developer Network au hasard

Logo

Applications mobiles modernes avec Qt et QML

Le Qt Developer Network est un réseau de développeurs Qt anglophone, où ils peuvent partager leur expérience sur le framework. Lire l'article.

Communauté

Ressources

Liens utiles

Contact

  • Vous souhaitez rejoindre la rédaction ou proposer un tutoriel, une traduction, une question... ? Postez dans le forum Contribuez ou contactez-nous par MP ou par email (voir en bas de page).

Qt dans le magazine

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.1
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 !
 
 
 
 
Partenaires

Hébergement Web