Eneboo - Documentación para desarrolladores
Métodos públicos estáticos | Amigas
Referencia de la Clase QFontDialog

The QFontDialog class provides a dialog widget for selecting a font. Más...

#include <qfontdialog.h>

Diagrama de herencias de QFontDialog
QDialog QDialog QWidget QWidget QWidget QWidget QPaintDevice QObject QPaintDevice QObject QPaintDevice QObject QPaintDevice QObject QPaintDevice QObject QPaintDevice QObject QPaintDevice QObject QPaintDevice QObject

Lista de todos los miembros.

Métodos públicos estáticos

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

Amigas

class QFontDialogPrivate

Descripción detallada

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

The usual way to use this class is to call one of the static convenience functions, e.g. getFont().

Examples:

    bool ok;
    QFont font = QFontDialog::getFont(
                    &ok, QFont( "Helvetica [Cronyx]", 10 ), this );
    if ( ok ) {
        // font is set to the font the user selected
    } else {
        // the user canceled the dialog; font is set to the initial
        // value, in this case Helvetica [Cronyx], 10
    }

The dialog can also be used to set a widget's font directly:

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

If the user clicks OK the font they chose will be used for myWidget, and if they click Cancel the original font is used.

Ver también:
QFont QFontInfo QFontMetrics
qfontdlg-w.png

Documentación de las funciones miembro

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

Executes a modal font dialog and returns a font.

If the user clicks OK, the selected font is returned. If the user clicks Cancel, the initial font is returned.

The dialog is called name, with the parent parent. initial is the initially selected font. If the ok parameter is not-null, *ok is set to TRUE if the user clicked OK, and set to FALSE if the user clicked Cancel.

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

Examples:

    bool ok;
    QFont font = QFontDialog::getFont( &ok, QFont( "Times", 12 ), this );
    if ( ok ) {
        // font is set to the font the user selected
    } else {
        // the user canceled the dialog; font is set to the initial
        // value, in this case Times, 12.
    }

The dialog can also be used to set a widget's font directly:

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

In this example, if the user clicks OK the font they chose will be used, and if they click Cancel the original font is used.

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

Esta es una función miembro sobrecargada que se suministra por conveniencia. Difiere de la anterior función solamente en los argumentos que acepta. Executes a modal font dialog and returns a font.

If the user clicks OK, the selected font is returned. If the user clicks Cancel, the Qt default font is returned.

The dialog is called name, with parent parent. If the ok parameter is not-null, *ok is set to TRUE if the user clicked OK, and FALSE if the user clicked Cancel.

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

Example:

    bool ok;
    QFont font = QFontDialog::getFont( &ok, this );
    if ( ok ) {
        // font is set to the font the user selected
    } else {
        // the user canceled the dialog; font is set to the default
        // application font, QApplication::font()
    }

Documentación de las funciones relacionadas y clases amigas


La documentación para esta clase fue generada a partir de los siguientes ficheros:
 Todo Clases Namespaces Archivos Funciones Variables 'typedefs' Enumeraciones Valores de enumeraciones Propiedades Amigas 'defines'