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  · 

QMetaType Class Reference
[QtCore module]

The QMetaType class manages named types in the meta object system. More...

#include <QMetaType>

Public Types

  • enum Type { Void, Bool, Int, UInt, ..., User }

Static Public Members

Related Non-Members

Macros


Detailed Description

The QMetaType class manages named types in the meta object system.

The class is used as a helper to marshall types in QVariant and in queued signals and slots connections. It associates a type name to a type so that it can be created and destructed dynamically at run-time. Register new types with qRegisterMetaType(). Any class or struct that has a public constructor, a public copy constructor, and a public destructor can be registered.

The following code allocates and destructs an instance of MyClass:

    if (QMetaType::isRegistered("MyClass")) {
        int id = QMetaType::type("MyClass");
        void *myClassPtr = QMetaType::construct(id);
        ...
        QMetaType::destroy(id, myClassPtr);
        myClassPtr = 0;
    }

The Q_DECLARE_METATYPE() Macro

The Q_DECLARE_METATYPE() macro makes a custom type known to QMetaType. It is needed to use the type as a custom type in QVariant.

Ideally, this macro should be placed below the declaration of the class or struct. If that is not possible, it can be put in a private header file which has to be included every time that type is used in a QVariant.

This example shows a typical use case of Q_DECLARE_METATYPE():

    struct MyStruct
    {
        int i;
        ...
    };

    Q_DECLARE_METATYPE(MyStruct)

Since MyStruct is now known to QMetaType, it can be used in QVariant:

    MyStruct s;
    QVariant var;
    var.setValue(s); // copy s into the variant

    ...

    // retrieve the value
    MyStruct s2 = var.value<MyStruct>();

Note that Q_DECLARE_METATYPE() doesn't actually register the type; you must still use qRegisterMetaType() for that.

See also QVariant::setValue(), QVariant::value(), and QVariant::fromValue().


Member Type Documentation

enum QMetaType::Type

These are the built-in types supported by QMetaType:

ConstantValueDescription
QMetaType::Void0void
QMetaType::Bool1bool
QMetaType::Int2int
QMetaType::UInt3unsigned int
QMetaType::Double6double
QMetaType::QChar7QChar
QMetaType::QString10QString
QMetaType::QByteArray12QByteArray
QMetaType::VoidStar128void *
QMetaType::Long129long
QMetaType::Short130short
QMetaType::Char131char
QMetaType::ULong132unsigned long
QMetaType::UShort133unsigned short
QMetaType::UChar134unsigned char
QMetaType::Float135float
QMetaType::QObjectStar136QObject *
QMetaType::QWidgetStar137QWidget *
QMetaType::User256Base value for user types

Additional types can be registered using qRegisterMetaType().

See also type() and typeName().


Member Function Documentation

void * QMetaType::construct ( int type, const void * copy )   [static]

Returns a copy of copy, assuming it is of type type. If copy is zero, creates a default type.

See also destroy(), isRegistered(), and Type.

void QMetaType::destroy ( int type, void * data )   [static]

Destroys the data, assuming it is of the type given.

See also construct(), isRegistered(), and Type.

bool QMetaType::isRegistered ( int type )   [static]

Returns true if the custom datatype with ID type is registered; otherwise returns false.

See also type(), typeName(), and Type.

int QMetaType::type ( const char * typeName )   [static]

Returns a handle to the type called typeName, or 0 if there is no such type.

See also isRegistered(), typeName(), and Type.

const char * QMetaType::typeName ( int type )   [static]

Returns the type name associated with the given type, or 0 if no matching type was found. The returned pointer must not be deleted.

See also type(), isRegistered(), and Type.


Related Non-Members

int qRegisterMetaType ( const char * typeName, T * dummy = 0 )

Registers the type name typeName to the type T. Returns the internal ID used by QMetaType. Any class or struct that has a public constructor, a public copy constructor, and a public destructor can be registered.

After a type has been registered, you can create and destroy objects of that type dynamically at run-time.

This example registers the class MyClass:

    qRegisterMetaType<MyClass>("MyClass");

You don't need to pass any value for the dummy parameter. It is there because of an MSVC 6 limitation.

See also QMetaType::isRegistered() and Q_DECLARE_METATYPE().


Macro Documentation

Q_DECLARE_METATYPE ( Type )

This is an overloaded member function, provided for convenience. It behaves essentially like the above function.

This macro makes the type Type known to QMetaType. It is needed to use the type Type as a custom type in QVariant.

Ideally, this macro should be placed below the declaration of the class or struct. If that is not possible, it can be put in a private header file which has to be included every time that type is used in a QVariant.

Q_DECLARE_METATYPE() doesn't actually register the type; you must still use qRegisterMetaType() for that.

See also qRegisterMetaType().

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 59
  2. Apercevoir la troisième dimension ou l'utilisation multithreadée d'OpenGL dans Qt, un article des Qt Quarterly traduit par Guillaume Belz 0
  3. Les développeurs ignorent-ils trop les failles découvertes dans leur code ? Prenez-vous en compte les remarques des autres ? 17
  4. BlackBerry 10 : premières images du prochain OS de RIM qui devrait intégrer des widgets et des tuiles inspirées de Windows Phone 0
  5. Quelles nouveautés de C++11 Visual C++ doit-il rapidement intégrer ? Donnez-nous votre avis 10
  6. Adieu qmake, bienvenue qbs : Qt Building Suite, un outil déclaratif et extensible pour la compilation de projets Qt 17
  7. La rubrique Qt a besoin de vous ! 1
Page suivante

Le Qt Quarterly au hasard

Logo

Générer du XML

Qt Quarterly est la revue trimestrielle proposée par Nokia et à destination des développeurs Qt. Ces articles d'une grande qualité technique sont rédigés par des experts Qt. 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.0
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