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  · 

Main Document Widget

Applications that view or edit a particular type or types of files are called document-oriented applications. Qt Extended has framework support to invoking these applications to open specific documents.

Implementation

The top-level widget of a document-oriented application must have a setDocument() slot declared:

    public slot:
        void setDocument( const QString& filename );

This slot is invoked by Qt Extended with the file name of the document to open. It should be implemented to save the application's current document (if any) and to show (and possibly edit) the specified document. An example implementation is:

    void Main::setDocument( const QString& filename )
    {
        if ( !current.isNull() ) {
            if ( !current.save( data ) ) {
                // error
                return;
            }
        }

        current = QContent( filename );

        if ( !current.load( data ) ) {
            // error
        }
    }

Registering MIME types

Document-oriented applications declare the MIME types that they support by adding a line to their .desktop file specifying each supported type separated by commas. A list may alternately be separated by semi-colons, but if this is done the list must be enclosed in double quotes otherwise a semi-colon will be interpreted as a comment character.

        MimeType=type/subtype,type/subtype,...

The subtype can be "*", indicating that this application can process all forms of the given type. Such an application is only invoked if no other more specific application is available.

Optionally an icon and a DRM permission may be specified for a MIME type when registering it. This is done by adding the MimeTypeIcons and MimeTypePermissions lines to the .desktop file.

The MimeTypeIcons line is a comma separated list of icon paths, the list must contain either a single icon path or the same number of paths as MIME types on the MimeType line. If a single icon path is given it is repeated for each MIME type, otherwise the icons are paired with MIME type according to their positions in the list.

The MimeTypePermissions line has the same semantics as the MimeTypeIcons line but defines a DRM permission that must be verified before an application is invoked to open a document. The possible permission values are the names of the primary enumeration values in QDrmRights::Permission. The MimeTypePermissions line is part of the DRM group.

An example of an application with only one icon and open permission for multiple MIME types:

        MimeType=image/jpeg,image/png
        MimeTypeIcons=imageviewer/ImageViewer
        [DRM]
        MimeTypePermissions=Display

An example of an application with multiple MIME type icons and open permissions:

        MimeType=audio/mpeg,video/mpeg,image/jpeg,image/png
        MimeTypeIcons=mediaviewer/AudioPlayer,mediaviewer/VideoPlayer,mediaviewer/ImageViewer
        [DRM]
        MimeTypePermissions=Play,Play,Display,Display

A complete listing of .desktop file entries can be found in the Desktop File Standard

Run-time registration

An application may also associate itself with a MIME type at run-time using QMimeType::addAssociation(), and remove an association with QMimeType::removeAssociation(). QMimeType may also be used to query existing associations between applications and MIME types.

Opening a document in another application

To open a document in an associated application execute the document with QContent::execute(). This will determine the appropriate application to open the document, start it, and call the setDocument() slot of its top-most widget:

        QContent document( fileName );

        document.execute();

Selecting a document within an application

The QDocumentSelector(Dialog) and QImageDocumentSelector(Dialog) widgets can be used to browse and select documents from within an application. For an example of using the QDocumentSelector widget see the Notes Application tutorial.

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 94
  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. Pourquoi les programmeurs sont-ils moins payés que les gestionnaires de programmes ? Manquent-ils de pouvoir de négociation ? 48
  4. Les développeurs ignorent-ils trop les failles découvertes dans leur code ? Prenez-vous en compte les remarques des autres ? 17
  5. Les développeurs détestent-ils les antivirus ? Un programmeur manifeste sa haine envers ces solutions de sécurité 13
  6. Quelles nouveautés de C++11 Visual C++ doit-il rapidement intégrer ? Donnez-nous votre avis 10
  7. Qt Commercial : Digia organise un webinar gratuit le 27 mars sur la conception d'interfaces utilisateur et d'applications avec le framework 0
Page suivante

Le Qt Developer Network au hasard

Logo

Compiler l'add-in Qt de Visual Studio

Le Qt Developer Network est un réseau de développeurs Qt anglophone, où ils peuvent partager leur expérience sur le framework. 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