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  ·  Toutes les fonctions  ·  Vues d'ensemble  · 

Qt Extended startup

The Qtopia server consists of a variety of components and widgets which are loaded and executed during the startup phase of Qtopia.

    main( int argc, char **argv )
    {
        //...
        // step 1
        QtopiaServerApplication::startup( argc, argv, QList<ByteArray> << "startup" );

        //...
        // step 2
        QAbstractServerInterface *interface =
                qtopiaWidget<QAbstractServerInterface>(0,Qt::FramelessWindowHint);
        if ( interface )
            interface->show();

        //...
        // step 3
        QtopiaApplication::exec();
        //...
    }

The above main function gives a brief summary what the server is doing. This function is not complete and does not reflect the actual implementation. However it demonstrates the general order during the startup phase.

  1. Starting server tasks

    The server task documentation provides a detailed introduction into the concept of server tasks. The call to QtopiaServerApplication::startup(..) will call the constructor of each task. The order of tasks is dynamically calculated based on parameters provided in $QPEDIR/etc/Tasks.cfg. The Qt Extended logging mechanism should be used to obtain the actual order of execution at runtime. The QtopiaServer logging channel should be used. The subsequent log is an example how this log may look like (note that for simplification reasons some output has been removed):

        QtopiaServer :  Starting task "ApplicationLauncher"
        QtopiaServer :  Starting task "QtopiaServerApplicationLauncher"
        QtopiaServer :  Starting task "BuiltinApplicationLauncher"
        QtopiaServer :  Starting task "QuickExeApplicationLauncher"
        QtopiaServer :  Starting task "ConsoleApplicationLauncher"
        QtopiaServer :  Starting task "SandboxedExeApplicationLauncher"
        QtopiaServer :  Starting task "SimpleExeApplicationLauncher"
        QtopiaServer :  Starting task "PhoneServer"
        ...
        QtopiaServer :  Starting task "QtopiaNetworkServer"
        QtopiaServer :  Starting task "QtopiaVpnManager"
        QtopiaServer :  Starting task "DocumentServer"
        QtopiaServer :  Starting task "DefaultBluetoothPassKeyAgent"
        QtopiaServer :  Starting task "BluetoothServiceManager"
        QtopiaServer :  Starting task "StandardDeviceFeatures"
        QtopiaServer :  Starting task "BtHandsfreeServiceTask"
        QtopiaServer :  Starting task "ShutdownSplashScreen"
        QtopiaServer :  Starting task "GenericMemoryMonitor"
        QtopiaServer :  Starting task "BtHeadsetServiceTask"
        ...
        QtopiaServer :  Starting task "InputDeviceSettings"
        QtopiaServer :  Starting task "BtDialupServiceTask"
        QtopiaServer :  Starting task "TerminationHandler"
        QtopiaServer :  Starting task "DummyVolumeService"
        QtopiaServer :  Starting task "TimeUpdateService"
        QtopiaServer :  Starting task "QtopiaApplication"
        QtopiaServer :  Starting task "PhonePowerManager"
        QtopiaServer :  Starting task "MediaServicesTask"
        QtopiaServer :  Starting task "WindowManagement"
        QtopiaServer :  Starting task "EnvironmentSetup"
        QtopiaServer :  Starting task "BtFtpServiceTask"
        QtopiaServer :  Starting task "VirtualKeyboard"
        QtopiaServer :  Starting task "StandardDialogs"
        QtopiaServer :  Starting task "SecurityMonitor"
        QtopiaServer :  Starting task "StorageMonitor"
        QtopiaServer :  Starting task "IrPowerService"
        QtopiaServer :  Starting task "ExternalAccess"
        QtopiaServer :  Starting task "DefaultBattery"
        QtopiaServer :  Starting task "BtPowerService"
        QtopiaServer :  Starting task "WaitIndicator"
        QtopiaServer :  Starting task "SystemSuspend"
        QtopiaServer :  Starting task "PhoneProfiles"
        QtopiaServer :  Starting task "LowMemoryTask"
        QtopiaServer :  Starting task "DefaultSignal"
        QtopiaServer :  Starting task "ContentServer"
        QtopiaServer :  Starting task "DeviceButton"
        QtopiaServer :  Starting task "AlertService"
        QtopiaServer :  Starting task "TimeMonitor"
        QtopiaServer :  Starting task "StabMonitor"
        QtopiaServer :  Starting task "RingControl"
        QtopiaServer :  Starting task "MediaServer"
        ...
        QtopiaServer :  Starting task "GPRSMonitor"
        QtopiaServer :  Starting task "QDSyncTask"
        QtopiaServer :  Starting task "APMBattery"
        QtopiaServer :  Starting task "IpcRouter"
        QtopiaServer :  Starting task "DBMigrate"
        QtopiaServer :  Starting task "CellModem"
        QtopiaServer :  Starting task "Asterisk"
        QtopiaServer :  Starting task "VoIP"
        QtopiaServer :  Starting task "StartupApplications"
  2. Showing the main widget

    Once all server tasks in the prestartup and startup groups are loaded the main server widget will be found, loaded and shown. The main Qtopia widget is a subclass of QAbstractServerInterface and it is responsible for the loading of all other widgets. The server widget documentation provides more detailed documentation on how to use widgets in the server and the Integration Guide provides a summary of existing server widgets and how they interact with each other.

  3. Entering Qt's event loop by calling QtopiaApplication::exec()

    The last step is to enter the event loop. From this point on every subsequent execution of code is event-driven.

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 88
  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. Pourquoi les programmeurs sont-ils moins payés que les gestionnaires de programmes ? Manquent-ils de pouvoir de négociation ? 36
  5. 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
  6. Quelles nouveautés de C++11 Visual C++ doit-il rapidement intégrer ? Donnez-nous votre avis 10
  7. Adieu qmake, bienvenue qbs : Qt Building Suite, un outil déclaratif et extensible pour la compilation de projets Qt 17
Page suivante

Le Qt Quarterly au hasard

Logo

Utiliser CMake pour compiler des projets Qt

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 qtextended4.4
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