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  · 

QPalette Class Reference

The QPalette class contains color groups for each widget state. More...

#include <qpalette.h>

List of all member functions.

Public Members

  • QPalette ()
  • QPalette ( const QColor & button )  (obsolete)
  • QPalette ( const QColor & button, const QColor & background )
  • QPalette ( const QColorGroup & active, const QColorGroup & disabled, const QColorGroup & inactive )
  • QPalette ( const QPalette & p )
  • ~QPalette ()
  • QPalette & operator= ( const QPalette & p )
  • enum ColorGroup { Disabled, Active, Inactive, NColorGroups, Normal = Active }
  • const QColor & color ( ColorGroup gr, QColorGroup::ColorRole r ) const
  • const QBrush & brush ( ColorGroup gr, QColorGroup::ColorRole r ) const
  • void setColor ( ColorGroup gr, QColorGroup::ColorRole r, const QColor & c )
  • void setBrush ( ColorGroup gr, QColorGroup::ColorRole r, const QBrush & b )
  • void setColor ( QColorGroup::ColorRole r, const QColor & c )
  • void setBrush ( QColorGroup::ColorRole r, const QBrush & b )
  • QPalette copy () const
  • const QColorGroup & active () const
  • const QColorGroup & disabled () const
  • const QColorGroup & inactive () const
  • const QColorGroup & normal () const  (obsolete)
  • void setActive ( const QColorGroup & g )
  • void setDisabled ( const QColorGroup & g )
  • void setInactive ( const QColorGroup & g )
  • void setNormal ( const QColorGroup & cg )  (obsolete)
  • bool operator== ( const QPalette & p ) const
  • bool operator!= ( const QPalette & p ) const
  • bool isCopyOf ( const QPalette & p )
  • int serialNumber () const

Related Functions

  • QDataStream & operator<< ( QDataStream & s, const QPalette & p )
  • QDataStream & operator>> ( QDataStream & s, QPalette & p )

Detailed Description

The QPalette class contains color groups for each widget state.

A palette consists of three color groups: active, disabled, and inactive. All widgets contain a palette, and all widgets in Qt use their palette to draw themselves. This makes the user interface easily configurable and easier to keep consistent.

If you create a new widget we strongly recommend that you use the colors in the palette rather than hard-coding specific colors.

The color groups:

  • The active() group is used for the window that has keyboard focus.
  • The inactive() group is used for other windows.
  • The disabled() group is used for widgets (not windows) that are disabled for some reason.

Both active and inactive windows can contain disabled widgets. (Disabled widgets are often called inaccessible or grayed out.)

In Motif style, active() and inactive() look the same. In Windows 2000 style and Macintosh Platinum style, the two styles look slightly different.

There are setActive(), setInactive(), and setDisabled() functions to modify the palette. (Qt also supports a normal() group; this is an obsolete alias for active(), supported for backwards compatibility.)

Colors and brushes can be set for particular roles in any of a palette's color groups with setColor() and setBrush().

You can copy a palette using the copy constructor and test to see if two palettes are identical using isCopyOf().

See also QApplication::setPalette(), QWidget::palette, QColorGroup, QColor, Widget Appearance and Style, Graphics Classes, Image Processing Classes, and Implicitly and Explicitly Shared Classes.


Member Type Documentation

QPalette::ColorGroup

  • QPalette::Disabled
  • QPalette::Active
  • QPalette::Inactive
  • QPalette::NColorGroups
  • QPalette::Normal - synonym for Active

Member Function Documentation

QPalette::QPalette ()

Constructs a palette that consists of color groups with only black colors.

QPalette::QPalette ( const QColor & button )

This function is obsolete. It is provided to keep old source working. We strongly advise against using it in new code.

Constructs a palette from the button color. The other colors are automatically calculated, based on this color. Background will be the button color as well.

QPalette::QPalette ( const QColor & button, const QColor & background )

Constructs a palette from a button color and a background. The other colors are automatically calculated, based on these colors.

QPalette::QPalette ( const QColorGroup & active, const QColorGroup & disabled, const QColorGroup & inactive )

Constructs a palette that consists of the three color groups active, disabled and inactive. See the Detailed Description for definitions of the color groups and QColorGroup::ColorRole for definitions of each color role in the three groups.

See also QColorGroup and QColorGroup::ColorRole.

QPalette::QPalette ( const QPalette & p )

Constructs a copy of p.

This constructor is fast (it uses copy-on-write).

QPalette::~QPalette ()

Destroys the palette.

const QColorGroup & QPalette::active () const

Returns the active color group of this palette.

See also QColorGroup, setActive(), inactive(), and disabled().

Examples: themes/metal.cpp and themes/wood.cpp.

const QBrush & QPalette::brush ( ColorGroup gr, QColorGroup::ColorRole r ) const

Returns the brush in color group gr, used for color role r.

See also color(), setBrush(), and QColorGroup::ColorRole.

const QColor & QPalette::color ( ColorGroup gr, QColorGroup::ColorRole r ) const

Returns the color in color group gr, used for color role r.

See also brush(), setColor(), and QColorGroup::ColorRole.

QPalette QPalette::copy () const

Returns a deep copy of this palette.

Warning: This is slower than the copy constructor and assignment operator and offers no benefits.

const QColorGroup & QPalette::disabled () const

Returns the disabled color group of this palette.

See also QColorGroup, setDisabled(), active(), and inactive().

Examples: themes/metal.cpp and themes/wood.cpp.

const QColorGroup & QPalette::inactive () const

Returns the inactive color group of this palette.

See also QColorGroup, setInactive(), active(), and disabled().

bool QPalette::isCopyOf ( const QPalette & p )

Returns TRUE if this palette and p are copies of each other, i.e. one of them was created as a copy of the other and neither was subsequently modified; otherwise returns FALSE. This is much stricter than equality.

See also operator=() and operator==().

const QColorGroup & QPalette::normal () const

This function is obsolete. It is provided to keep old source working. We strongly advise against using it in new code.

Returns the active color group. Use active() instead.

See also setActive() and active().

bool QPalette::operator!= ( const QPalette & p ) const

Returns TRUE (slowly) if this palette is different from p; otherwise returns FALSE (usually quickly).

QPalette & QPalette::operator= ( const QPalette & p )

Assigns p to this palette and returns a reference to this palette.

This is fast (it uses copy-on-write).

See also copy().

bool QPalette::operator== ( const QPalette & p ) const

Returns TRUE (usually quickly) if this palette is equal to p; otherwise returns FALSE (slowly).

int QPalette::serialNumber () const

Returns a number that uniquely identifies this QPalette object. The serial number is intended for caching. Its value may not be used for anything other than equality testing.

Note that QPalette uses copy-on-write, and the serial number changes during the lazy copy operation (detach()), not during a shallow copy (copy constructor or assignment).

See also QPixmap, QPixmapCache, and QCache.

void QPalette::setActive ( const QColorGroup & g )

Sets the Active color group to g.

See also active(), setDisabled(), setInactive(), and QColorGroup.

void QPalette::setBrush ( ColorGroup gr, QColorGroup::ColorRole r, const QBrush & b )

Sets the brush in color group gr, used for color role r, to b.

See also brush(), setColor(), and QColorGroup::ColorRole.

void QPalette::setBrush ( QColorGroup::ColorRole r, const QBrush & b )

This is an overloaded member function, provided for convenience. It behaves essentially like the above function.

Sets the brush in for color role r in all three color groups to b.

See also brush(), setColor(), QColorGroup::ColorRole, active(), inactive(), and disabled().

void QPalette::setColor ( ColorGroup gr, QColorGroup::ColorRole r, const QColor & c )

Sets the brush in color group gr, used for color role r, to the solid color c.

See also setBrush(), color(), and QColorGroup::ColorRole.

Example: themes/themes.cpp.

void QPalette::setColor ( QColorGroup::ColorRole r, const QColor & c )

This is an overloaded member function, provided for convenience. It behaves essentially like the above function.

Sets the brush color used for color role r to color c in all three color groups.

See also color(), setBrush(), and QColorGroup::ColorRole.

void QPalette::setDisabled ( const QColorGroup & g )

Sets the Disabled color group to g.

See also disabled(), setActive(), and setInactive().

void QPalette::setInactive ( const QColorGroup & g )

Sets the Inactive color group to g.

See also active(), setDisabled(), setActive(), and QColorGroup.

void QPalette::setNormal ( const QColorGroup & cg )

This function is obsolete. It is provided to keep old source working. We strongly advise against using it in new code.

Sets the active color group to cg. Use setActive() instead.

See also setActive() and active().


Related Functions

QDataStream & operator<< ( QDataStream & s, const QPalette & p )

Writes the palette, p to the stream s and returns a reference to the stream.

See also Format of the QDataStream operators.

QDataStream & operator>> ( QDataStream & s, QPalette & p )

Reads a palette from the stream, s into the palette p, and returns a reference to the stream.

See also Format of the QDataStream operators.


This file is part of the Qt toolkit. Copyright © 1995-2005 Trolltech. All Rights Reserved.

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. 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 ? 42
  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 blog Digia au hasard

Logo

Déploiement d'applications Qt Commercial sur les tablettes Windows 8

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 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 !
 
 
 
 
Partenaires

Hébergement Web