qaxbindable.hThis is the verbatim text of the qaxbindable.h include file. It is provided only for illustration; the copyright remains with Trolltech. /**************************************************************************** ** $Id: qt/qaxbindable.h 3.3.7 edited Aug 31 2005 $ ** ** Declaration of the QAxBindable class ** ** Copyright (C) 2001-2005 Trolltech AS. All rights reserved. ** ** This file is part of the Active Qt integration. ** ** Licensees holding valid Qt Enterprise Edition ** licenses for Windows may use this file in accordance with the Qt Commercial ** License Agreement provided with the Software. ** ** This file is not available for use under any other license without ** express written permission from the copyright holder. ** ** This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING THE ** WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. ** ** See http://www.trolltech.com/pricing.html or email sales@trolltech.com for ** information about Qt Commercial License Agreements. ** ** Contact info@trolltech.com if any conditions of this licensing are ** not clear to you. ** **********************************************************************/ #ifndef QAXBINDABLE_H #define QAXBINDABLE_H #include <qwidget.h> #include <private/qcom_p.h> struct IAxServerBase; struct IUnknown; class QAxAggregated { friend class QAxServerBase; public: virtual long queryInterface( const QUuid &iid, void **iface ) = 0; protected: virtual ~QAxAggregated(); IUnknown *controllingUnknown() const { return controlling_unknown; } QWidget *widget() const { if ( the_object && the_object->isWidgetType() ) return (QWidget*)the_object; return 0; } QObject *object() const { return the_object; } private: IUnknown *controlling_unknown; QObject *the_object; }; #define QAXAGG_IUNKNOWN \ HRESULT WINAPI QueryInterface( REFIID iid, LPVOID *iface ) { \ return controllingUnknown()->QueryInterface( iid, iface ); } \ ULONG WINAPI AddRef() {return controllingUnknown()->AddRef(); } \ ULONG WINAPI Release() {return controllingUnknown()->Release(); } \ class QAxBindable { friend class QAxServerBase; public: QAxBindable(); virtual ~QAxBindable(); virtual QAxAggregated *createAggregate(); static void reportError( int code, const QString &src, const QString &desc, const QString &help = QString::null ); protected: bool requestPropertyChange( const char *property ); void propertyChanged( const char *property ); IUnknown *clientSite() const; private: IAxServerBase *activex; }; #endif // QAXBINDABLE_H |
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 3.3 | |
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