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  ·  Fonctions  · 

A Qt example as a scriptable ActiveX control (executable)

This example shows how to turn an existing Qt application into an ActiveX control server. The ActiveX control is based on the Qt tetrix example.

It demonstrates the use of the default factory provied by the QAXFACTORY_DEFAULT macro, and of QAxFactory::isServer().

The code changes for the tetrix GUI are minimal (a property score, a signal gameOver and a slot startGame) and provide a better scripting interface for the use of the control in a web environment.

The implementation of the ActiveX server functionality is only in the tetrax.cpp file. The default implementation of the QAxFactory is used through the QAXFACTORY_DEFAULT macro, and exports the QTetrax object specifying the five unique IDs required by COM to instantiate and communicate with the server.

    #include "qtetrax.h"
    #include "qdragapp.h"
    #include "qfont.h"

    #include <qaxfactory.h>

    QAXFACTORY_DEFAULT( QTetrax,
                "{852558AD-CBD6-4f07-844C-D1E8983CD6FC}",
                "{2F5D0068-772C-4d1e-BCD2-D3F6BC7FD315}",
                "{769F4820-9F28-490f-BA50-5545BD381DCB}",
                "{5753B1A8-53B9-4abe-8690-6F14EC5CA8D0}",
                "{DE2F7CE3-CFA7-4938-A9FC-867E2FEB63BA}" )
The main entry point method instantiates a QApplication object, and creates the GUI only if the program is not running as an ActiveX server (ie. the program has been started by the user, not by COM).
    int main( int argc, char **argv )
    {
        QApplication::setColorSpec( QApplication::CustomColor );
        QDragApplication a(argc,argv);

        QTetrax *tetrax = 0;
        if ( !QAxFactory::isServer() ) {
            tetrax = new QTetrax;
            tetrax->setCaption("Tetrax");
            a.setMainWidget(tetrax);
            tetrax->setCaption("Qt Example - Tetrax");
            tetrax->show();
        }
The server enters the application event loop, and destroys the GUI before exiting.
        int res = a.exec();
        delete tetrax;
        return res;
    }

To build the example you must first build the QAxServer library. Then run qmake and your make tool in examples/tetrix.


The demonstration requires your Web browser to support ActiveX controls, and scripting to be enabled.

The "Tetrix" control is embedded using the <object> tag. Note that the dimensions of the control are provided explicitely, as the control itself does not use Qt's layout engine.

    <object ID="QTetrax" width=550 height=370
        CLASSID="CLSID:852558AD-CBD6-4f07-844C-D1E8983CD6FC"
        CODEBASE=http://www.trolltech.com/demos/tetrax.cab>
        <PARAM NAME="score" VALUE="0">
    [Object not available! Did you forget to build and register the server?]
    </object>
An HTML button is added to start the game.
    <form>
        <input type="button" value="Start Game..."
            onClick="QTetrax.startGame()">
    </form>
And an event handler for the gameOver() event is implemented in JavaScript to display a simple message box.
    <SCRIPT LANGUAGE=JavaScript>
    function QTetrax::gameOver()
    {
        alert( "GameOver!" );
    }
    </SCRIPT>

See also The QAxServer Examples.

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 82
  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. 2017 : un quinquennat pour une nouvelle version du C++ ? Possible, selon Herb Sutter 6
Page suivante

Le Qt Labs au hasard

Logo

Quand il est juste de se tromper

Les Qt Labs sont les laboratoires des développeurs de Qt, où ils peuvent partager des impressions sur le framework, son utilisation, ce que pourrait être son futur. 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 3.2
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