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  · 

QScreenInformationProvider Class Reference
[QtBaseModule]

The QScreenInformationProvider class provides the back end implementation of QScreenInformation. More...

    #include <QScreenInformationProvider>

Inherits QObject.

Public Functions

  • 29 public functions inherited from QObject

Protected Functions

  • 7 protected functions inherited from QObject

Additional Inherited Members

  • 1 property inherited from QObject
  • 1 public slot inherited from QObject
  • 1 signal inherited from QObject
  • 1 public type inherited from QObject
  • 4 static public members inherited from QObject
  • 2 protected variables inherited from QObject

Detailed Description

The QScreenInformationProvider class provides the back end implementation of QScreenInformation.

The following class represents a screen of type Television which by default is a clone of the primary LCD screen:

    class TvScreen : public QScreenInformationProvider
    {
        Q_OBJECT
    public:
        TvScreen(int screenNumber, QObject *parent=0);

    public slots:
        void videoCableInserted();
        void videoCableRemoved();

    protected:
        void changeClonedScreen(int value);
        void revertClonedScreen();
    };

    TvScreen::TvScreen(int screenNumber, QObject *parent)
        : QScreenInformationProvider(screenNumber, parent)
    {
        setType(QScreenInformation::Television);
        setVisible(false);
        setClonedScreen(QApplication::desktop()->primaryScreen());
    }

    void TvScreen::videoCableInserted()
    {
        setVisible(true);
    }

    void TvScreen::videoCableRemoved()
    {
        setVisible(false);
    }

    void TvScreen::changeClonedScreen(int value)
    {
        // Tell the hardware to change the clone mode.
        ...

        // Update the clone state as seen by client applications.
        setClonedScreen(value);
    }

    void TvScreen::revertClonedScreen()
    {
        // Change back to cloning the primary screen.
        changeClonedScreen(QApplication::desktop()->primaryScreen());
    }

See also QScreenInformation.


Member Function Documentation

QScreenInformationProvider::QScreenInformationProvider ( int screenNumber = -1, QObject * parent = 0 )

Constructs a screen information provider object for screenNumber and attaches it to parent. If screenNumber is -1, then the primary screen number is used.

Object construction should be followed by calls to setVisible(), setType(), and setClonedScreen() to populate the screen's initial properties.

See also setVisible(), setType(), and setClonedScreen().

QScreenInformationProvider::~QScreenInformationProvider ()

Destroys this screen information provider object.

void QScreenInformationProvider::changeClonedScreen ( int value )   [virtual protected]

Changes the cloned screen number to value. The default implementation does nothing. Sub-classes should change the screen and then call setClonedScreen() to update the cloned screen number for clients.

See also setClonedScreen() and revertClonedScreen().

void QScreenInformationProvider::changeLayer ( int value )   [virtual protected]

Changes the overlay layer number for this screen to value. The default implementation does nothing. Sub-classes should change the screen and then call setLayer() to update the value for clients.

Changing the layer on an overlay screen also makes it visible, so sub-classes should also call setVisible() to update that value for clients. The layer will be made invisible again when revertLayer() is called.

See also revertLayer().

void QScreenInformationProvider::revertClonedScreen ()   [virtual protected]

Reverts the cloned screen number to its default value. The default implementation does nothing. Sub-classes should revert the screen and then call setClonedScreen() to update the cloned screen number for clients.

See also setClonedScreen() and changeClonedScreen().

void QScreenInformationProvider::revertLayer ()   [virtual protected]

Reverts the overlay layer number for this screen to its default value and makes the layer invisible because the application that requested a layer change is no longer running. The default implementation does nothing. Sub-classes should revert the screen and then call setLayer() to update the value for clients.

See also changeLayer().

void QScreenInformationProvider::setClonedScreen ( int value )

Sets the state of QScreenInformation::clonedScreen() for this screen to value and cause QScreenInformation::changed() to be emitted.

The default value, as seen by QScreenInformation::clonedScreen(), will be -1.

See also QScreenInformation::clonedScreen() and QScreenInformation::changed().

void QScreenInformationProvider::setLayer ( int value )

Sets the state of QScreenInformation::layer() for this screen to value and cause QScreenInformation::changed() to be emitted.

The default value, as seen by QScreenInformation::layer(), will be 0.

See also QScreenInformation::layer() and QScreenInformation::changed().

void QScreenInformationProvider::setSupportedLayers ( const QList<int> & value )

Sets the state of QScreenInformation::supportedLayers() for this screen to value and cause QScreenInformation::changed() to be emitted.

The default value, as seen by QScreenInformation::supportedLayers(), will be an empty list.

See also QScreenInformation::supportedLayers() and QScreenInformation::changed().

void QScreenInformationProvider::setTransparencyColor ( const QColor & value )

Sets the state of QScreenInformation::transparencyColor() for this screen to value and cause QScreenInformation::changed() to be emitted.

The default value, as seen by QScreenInformation::transparencyColor(), will be a null QColor value.

See also QScreenInformation::transparencyColor() and QScreenInformation::changed().

void QScreenInformationProvider::setType ( QScreenInformation::Type value )

Sets the state of QScreenInformation::type() for this screen to value and cause QScreenInformation::changed() to be emitted.

The default value, as seen by QScreenInformation::type(), will be QScreenInformation::Normal.

See also QScreenInformation::type() and QScreenInformation::changed().

void QScreenInformationProvider::setVisible ( bool value )

Sets the state of QScreenInformation::isVisible() for this screen to value and cause QScreenInformation::changed() to be emitted.

The default value, as seen by QScreenInformation::isVisible(), will be true.

See also QScreenInformation::isVisible() and QScreenInformation::changed().

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 68
  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. La rubrique Qt a besoin de vous ! 1
Page suivante

Le blog Digia au hasard

Logo

Créer des applications avec un style Metro avec Qt, exemples en QML et C++, un article de Digia Qt traduit par Thibaut Cuvelier

Le blog Digia est l'endroit privilégié pour la communication sur l'édition commerciale de Qt, où des réponses publiques sont apportées aux questions les plus posées au support. 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