/thirdparty/qxt/qxtweb-standalone/qxtweb/qxtboundfunctionbase.h

http://github.com/tomahawk-player/tomahawk · C Header · 61 lines · 24 code · 9 blank · 28 comment · 0 complexity · 26aa9d0e227b45b00bea1a6cd61e0657 MD5 · raw file

  1. /****************************************************************************
  2. **
  3. ** Copyright (C) Qxt Foundation. Some rights reserved.
  4. **
  5. ** This file is part of the QxtCore module of the Qxt library.
  6. **
  7. ** This library is free software; you can redistribute it and/or modify it
  8. ** under the terms of the Common Public License, version 1.0, as published
  9. ** by IBM, and/or under the terms of the GNU Lesser General Public License,
  10. ** version 2.1, as published by the Free Software Foundation.
  11. **
  12. ** This file is provided "AS IS", without WARRANTIES OR CONDITIONS OF ANY
  13. ** KIND, EITHER EXPRESS OR IMPLIED INCLUDING, WITHOUT LIMITATION, ANY
  14. ** WARRANTIES OR CONDITIONS OF TITLE, NON-INFRINGEMENT, MERCHANTABILITY OR
  15. ** FITNESS FOR A PARTICULAR PURPOSE.
  16. **
  17. ** You should have received a copy of the CPL and the LGPL along with this
  18. ** file. See the LICENSE file and the cpl1.0.txt/lgpl-2.1.txt files
  19. ** included with the source distribution for more information.
  20. ** If you did not receive a copy of the licenses, contact the Qxt Foundation.
  21. **
  22. ** <http://libqxt.org> <foundation@libqxt.org>
  23. **
  24. ****************************************************************************/
  25. // This file exists for the convenience of QxtBoundCFunction.
  26. // It is not part of the public API and is subject to change.
  27. //
  28. // We mean it.
  29. #ifndef QXTBOUNDFUNCTIONBASE_H
  30. #define QXTBOUNDFUNCTIONBASE_H
  31. #include <QObject>
  32. #include <QMetaObject>
  33. #include <QGenericArgument>
  34. #include <qxtmetaobject.h>
  35. #include <qxtboundfunction.h>
  36. #ifndef QXT_DOXYGEN_RUN
  37. #define QXT_10_UNUSED Q_UNUSED(p1) Q_UNUSED(p2) Q_UNUSED(p3) Q_UNUSED(p4) Q_UNUSED(p5) Q_UNUSED(p6) Q_UNUSED(p7) Q_UNUSED(p8) Q_UNUSED(p9) Q_UNUSED(p10)
  38. class QXT_CORE_EXPORT QxtBoundFunctionBase : public QxtBoundFunction
  39. {
  40. public:
  41. QByteArray bindTypes[10];
  42. QGenericArgument arg[10], p[10];
  43. void* data[10];
  44. QxtBoundFunctionBase(QObject* parent, QGenericArgument* params[10], QByteArray types[10]);
  45. virtual ~QxtBoundFunctionBase();
  46. int qt_metacall(QMetaObject::Call _c, int _id, void **_a);
  47. bool invokeBase(Qt::ConnectionType type, QGenericReturnArgument returnValue, QXT_PROTO_10ARGS(QGenericArgument));
  48. };
  49. #define QXT_ARG(i) ((argCount>i)?QGenericArgument(p ## i .typeName(), p ## i .constData()):QGenericArgument())
  50. #define QXT_VAR_ARG(i) (p ## i .isValid())?QGenericArgument(p ## i .typeName(), p ## i .constData()):QGenericArgument()
  51. #endif
  52. #endif