Qt:Документация 4.3.2/qfontcombobox

Материал из Wiki.crossplatform.ru

Перейти к: навигация, поиск
40px Внимание: Актуальная версия перевода документации находится здесь

__NOTOC__

Image:qt-logo.png

Главная · Все классы · Основные классы · Классы по группам · Модули · Функции

Image:trolltech-logo.png

Содержание

[править] QFontComboBox Class Reference
[модуль QtGui ]

The QFontComboBox widget is a combobox that lets the user select a font family. More...

 #include <QFontComboBox>

Inherits QComboBox.

This class was introduced in Qt 4.2.

[править] Открытые типы

  • enum FontFilter { AllFonts, ScalableFonts, NonScalableFonts, MonospacedFonts, ProportionalFonts }
  • flags FontFilters

[править] Свойства

  • 13 свойства унаследованных от QComboBox
  • 56 свойства унаследованных от QWidget
  • 1 свойство унаследованное от QObject

[править] Открытые функции

  • 54 открытых функций унаследованных от QComboBox
  • 201 открытых функций унаследованных от QWidget
  • 29 открытых функций унаследованных от QObject
  • 12 открытых функций унаследованных от QPaintDevice

[править] Открытые слоты

  • 4 открытых слотов унаследованных от QComboBox
  • 19 открытых слотов унаследованных от QWidget
  • 1 открытый слот унаследованный от QObject

[править] Сигналы

  • 7 сигнала унаследованных от QComboBox
  • 1 сигнал унаследованный от QWidget
  • 1 сигнал унаследованный от QObject

[править] Дополнительные унаследованные члены

  • 4 статических открытых члена унаследованных от QWidget
  • 5 статических открытых члена унаследованных от QObject
  • 1 защищенная функция унаследованна от QComboBox
  • 38 защищенных функций унаследованных от QWidget
  • 7 защищенных функций унаследованных от QObject
  • 1 защищенная функция унаследованна от QPaintDevice
  • 1 защищенный слот унаследованный от QWidget

[править] Подробное описание

The QFontComboBox widget is a combobox that lets the user select a font family.

The combobox is populated with an alphabetized list of font family names, such as Arial, Helvetica, and Times New Roman. Family names are displayed using the actual font when possible. For fonts such as Symbol, where the name is not representable in the font itself, a sample of the font is displayed next to the family name.

QFontComboBox is often used in toolbars, in conjunction with a QComboBox for controlling the font size and two QToolButtons for bold and italic.

When the user selects a new font, the currentFontChanged() signal is emitted in addition to currentIndexChanged().

Call setWritingSystem() to tell QFontComboBox to show only fonts that support a given writing system, and setFontFilters() to filter out certain types of fonts as e.g. non scalable fonts or monospaced fonts.

center

See also QComboBox, QFont, QFontInfo, QFontMetrics, QFontDatabase, and Character Map Example.


[править] Описание типов членов

[править]
enum QFontComboBox::FontFilter
flags QFontComboBox::FontFilters

This enum can be used to only show certain types of fonts in the font combo box.


Constant Value Description
QFontComboBox::AllFonts 0 Show all fonts
QFontComboBox::ScalableFonts 0x1 Only show scalable fonts
QFontComboBox::NonScalableFonts 0x2 Only show non scalable fonts
QFontComboBox::MonospacedFonts 0x4 Only show monospaced fonts
QFontComboBox::ProportionalFonts 0x8 Only show proportional fonts

The FontFilters type is a typedef for QFlags<FontFilter>. It stores an OR combination of FontFilter values.


[править] Описание свойств

[править]
currentFont : QFont

This property holds the currently selected font.

Функции доступа:

  • QFont currentFont () const
  • void setCurrentFont ( const QFont & font )

See also currentFontChanged(), currentIndex, and currentText.

[править]
fontFilters : FontFilters

This property holds the filter for the combobox.

By default, all fonts are listed.

Функции доступа:

  • FontFilters fontFilters () const
  • void setFontFilters ( FontFilters filters )

See also writingSystem.

[править]
writingSystem : QFontDatabase::WritingSystem

This property holds the writing system that serves as a filter for the combobox.

If script is QFontDatabase::Any (the default), all fonts are listed.

Функции доступа:

  • QFontDatabase::WritingSystem writingSystem () const
  • void setWritingSystem ( QFontDatabase::WritingSystem script )

See also fontFilters.


[править] Описание функций-членов

[править]
QFontComboBox::QFontComboBox ( QWidget * parent = 0 )

Constructs a font combobox with the given parent.

[править]
QFontComboBox::~QFontComboBox ()

Destroys the combobox.

[править]
void QFontComboBox::currentFontChanged ( const QFont & font ) [signal]

This signal is emitted whenever the current font changes, with the new font.

See also currentFont.


Copyright © 2007 Trolltech Trademarks
Qt 4.3.2