qmetaobject.h
上传用户:detong
上传日期:2022-06-22
资源大小:20675k
文件大小:5k
源码类别:

系统编程

开发平台:

Unix_Linux

  1. /****************************************************************************
  2. **
  3. ** Copyright (C) 2008 Nokia Corporation and/or its subsidiary(-ies).
  4. ** Contact: Qt Software Information (qt-info@nokia.com)
  5. **
  6. ** This file is part of the QtCore module of the Qt Toolkit.
  7. **
  8. ** Commercial Usage
  9. ** Licensees holding valid Qt Commercial licenses may use this file in
  10. ** accordance with the Qt Commercial License Agreement provided with the
  11. ** Software or, alternatively, in accordance with the terms contained in
  12. ** a written agreement between you and Nokia.
  13. **
  14. **
  15. ** GNU General Public License Usage
  16. ** Alternatively, this file may be used under the terms of the GNU
  17. ** General Public License versions 2.0 or 3.0 as published by the Free
  18. ** Software Foundation and appearing in the file LICENSE.GPL included in
  19. ** the packaging of this file.  Please review the following information
  20. ** to ensure GNU General Public Licensing requirements will be met:
  21. ** http://www.fsf.org/licensing/licenses/info/GPLv2.html and
  22. ** http://www.gnu.org/copyleft/gpl.html.  In addition, as a special
  23. ** exception, Nokia gives you certain additional rights. These rights
  24. ** are described in the Nokia Qt GPL Exception version 1.3, included in
  25. ** the file GPL_EXCEPTION.txt in this package.
  26. **
  27. ** Qt for Windows(R) Licensees
  28. ** As a special exception, Nokia, as the sole copyright holder for Qt
  29. ** Designer, grants users of the Qt/Eclipse Integration plug-in the
  30. ** right for the Qt/Eclipse Integration to link to functionality
  31. ** provided by Qt Designer and its related libraries.
  32. **
  33. ** If you are unsure which license is appropriate for your use, please
  34. ** contact the sales department at qt-sales@nokia.com.
  35. **
  36. ****************************************************************************/
  37. #ifndef QMETAOBJECT_H
  38. #define QMETAOBJECT_H
  39. #include <QtCore/qobjectdefs.h>
  40. #include <QtCore/qvariant.h>
  41. QT_BEGIN_HEADER
  42. QT_BEGIN_NAMESPACE
  43. QT_MODULE(Core)
  44. template <typename T> class QList;
  45. class Q_CORE_EXPORT QMetaMethod
  46. {
  47. public:
  48.     inline QMetaMethod() : mobj(0),handle(0) {}
  49.     const char *signature() const;
  50.     const char *typeName() const;
  51.     QList<QByteArray> parameterTypes() const;
  52.     QList<QByteArray> parameterNames() const;
  53.     const char *tag() const;
  54.     enum Access { Private, Protected, Public };
  55.     Access access() const;
  56.     enum MethodType { Method, Signal, Slot };
  57.     MethodType methodType() const;
  58.     enum Attributes { Compatibility = 0x1, Cloned = 0x2, Scriptable = 0x4 };
  59.     int attributes() const;
  60.     inline const QMetaObject *enclosingMetaObject() const { return mobj; }
  61. private:
  62.     const QMetaObject *mobj;
  63.     uint handle;
  64.     friend struct QMetaObject;
  65. };
  66. Q_DECLARE_TYPEINFO(QMetaMethod, Q_MOVABLE_TYPE);
  67. class Q_CORE_EXPORT QMetaEnum
  68. {
  69. public:
  70.     inline QMetaEnum() : mobj(0),handle(0) {}
  71.     const char *name() const;
  72.     bool isFlag() const;
  73.     int keyCount() const;
  74.     const char *key(int index) const;
  75.     int value(int index) const;
  76.     const char *scope() const;
  77.     int keyToValue(const char *key) const;
  78.     const char* valueToKey(int value) const;
  79.     int keysToValue(const char * keys) const;
  80.     QByteArray valueToKeys(int value) const;
  81.     inline const QMetaObject *enclosingMetaObject() const { return mobj; }
  82.     inline bool isValid() const { return name() != 0; }
  83. private:
  84.     const QMetaObject *mobj;
  85.     uint handle;
  86.     friend struct QMetaObject;
  87. };
  88. Q_DECLARE_TYPEINFO(QMetaEnum, Q_MOVABLE_TYPE);
  89. class Q_CORE_EXPORT QMetaProperty
  90. {
  91. public:
  92.     QMetaProperty();
  93.     const char *name() const;
  94.     const char *typeName() const;
  95.     QVariant::Type type() const;
  96.     int userType() const;
  97.     bool isReadable() const;
  98.     bool isWritable() const;
  99.     bool isResettable() const;
  100.     bool isDesignable(const QObject *obj = 0) const;
  101.     bool isScriptable(const QObject *obj = 0) const;
  102.     bool isStored(const QObject *obj = 0) const;
  103.     bool isEditable(const QObject *obj = 0) const;
  104.     bool isUser(const QObject *obj = 0) const;
  105.     bool isFlagType() const;
  106.     bool isEnumType() const;
  107.     QMetaEnum enumerator() const;
  108.     QVariant read(const QObject *obj) const;
  109.     bool write(QObject *obj, const QVariant &value) const;
  110.     bool reset(QObject *obj) const;
  111.     bool hasStdCppSet() const;
  112.     inline bool isValid() const { return isReadable(); }
  113.     inline const QMetaObject *enclosingMetaObject() const { return mobj; }
  114. private:
  115.     const QMetaObject *mobj;
  116.     uint handle;
  117.     int idx;
  118.     QMetaEnum menum;
  119.     friend struct QMetaObject;
  120. };
  121. class Q_CORE_EXPORT QMetaClassInfo
  122. {
  123. public:
  124.     inline QMetaClassInfo() : mobj(0),handle(0) {}
  125.     const char *name() const;
  126.     const char *value() const;
  127.     inline const QMetaObject *enclosingMetaObject() const { return mobj; }
  128. private:
  129.     const QMetaObject *mobj;
  130.     uint handle;
  131.     friend struct QMetaObject;
  132. };
  133. Q_DECLARE_TYPEINFO(QMetaClassInfo, Q_MOVABLE_TYPE);
  134. QT_END_NAMESPACE
  135. QT_END_HEADER
  136. #endif // QMETAOBJECT_H