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  ·  Classes  ·  Annotées  ·  Hiérarchie  ·  Fonctions  ·  Structure  · 

QFontDialog Class Reference


The QFontDialog class provides a dialog widget for selecting a text font. More...

#include <qfontdialog.h>

Inherits QDialog.

List of all member functions.

Signals

  • void fontSelected ( const QFont & font ) 
  • void fontHighlighted ( const QFont & font ) 

Static Public Members

  • QFont getFont ( bool * ok, const QFont & def, QWidget * parent = 0, const char * name = 0 ) 
  • QFont getFont ( bool * ok, QWidget * parent = 0, const char * name = 0 ) 

Protected Members

Protected Slots

  • void sizeChanged ( const QString & ) 

Detailed Description

The QFontDialog class provides a dialog widget for selecting a text font.

This dialog can be used to let the user choose a font with attributes and so on. Normally you may use the static convenience function getFont().


Member Function Documentation

bool QFontDialog::eventFilter ( QObject * o, QEvent * e ) [virtual protected]

Event filter to make up, down, pageup and pagedown work correctly in the line edits.

Reimplemented from QObject.

QListBox * QFontDialog::familyListBox () const [protected]

Returns a pointer to the "font family" list box. This is usable mainly if you reimplement updateFontFamilies();.

void QFontDialog::fontHighlighted ( const QFont & ) [signal]

This signal is emitted, when the user changed a setting in the dialog.

void QFontDialog::fontSelected ( const QFont & ) [signal]

This signal is emitted, when the user has chosen a font and clicked ok.

QFont QFontDialog::getFont ( bool * ok, QWidget * parent = 0,const char * name = 0 ) [static]

Opens a modal font dialog and returns the font selected by the user.

The ok parameter is set to TRUE if the user clicked OK, and FALSE if the user clicked Cancel.

If the user clicks Cancel the Qt default font is returned.

This static function is less capable than the full QFontDialog object, but is convenient and easy to use.

Example:

    // start at the current working directory and with *.cpp as filter
    bool ok;
    QFont f = QFontDialog::getFont( &ok, this );
    if ( ok ) {
        // the user selected a valid font
    } else {
        // the user cancelled the dialog
    }

QFont QFontDialog::getFont ( bool * ok, const QFont & initial, QWidget * parent = 0, const char * name = 0 ) [static]

Opens a modal font dialog and returns the font selected by the user.

initial is the initial selected font.

The ok parameter is set to TRUE if the user clicked OK, and FALSE if the user clicked Cancel.

If the user clicks Cancel the initial font is returned.

This static function is less capable than the full QFontDialog object, but is convenient and easy to use.

Example:

    // start at the current working directory and with *.cpp as filter
    bool ok;
    QFont f = QFontDialog::getFont( &ok, QFont( "Times", 12 ), this );
    if ( ok ) {
        // the user selected a valid font
    } else {
        // the user cancelled the dialog
    }

Another example:

    mywidget.setFont( QFontDialog::getFont( 0, mywidget.font() ) );

QComboBox * QFontDialog::scriptCombo () const [protected]

Returns a pointer to the "font style" list box. This is usable mainly if you reimplement updateFontStyles();.

void QFontDialog::sizeChanged ( const QString & s ) [protected slot]

This slot is called if the user changes the font size.

QListBox * QFontDialog::sizeListBox () const [protected]

Returns a pointer to the "font size" list box. This is usable mainly if you reimplement updateFontSizes();.

QListBox * QFontDialog::styleListBox () const [protected]

Returns a pointer to the "font style" list box. This is usable mainly if you reimplement updateFontStyles();.

void QFontDialog::updateFamilies () [virtual protected]

Update the contents of the "font family" list box. This function can be reimplemented if you have special requirements.

void QFontDialog::updateScripts () [virtual protected]

Update the contents of the "font script" combo box. This function can be reimplemented if you have special requirements.

void QFontDialog::updateSizes () [virtual protected]

Update the contents of the "font size" list box. This function can be reimplemented if you have special requirements.

void QFontDialog::updateStyles () [virtual protected]

Update the contents of the "font style" list box. This function can be reimplemented if you have special requirements.


Search the documentation, FAQ, qt-interest archive and more (uses www.trolltech.com):


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 8
Page suivante

Le Qt Labs au hasard

Logo

Utiliser OpenCL avec Qt

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 2.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