Qyoto  4.0.5
Qyoto is a C# language binding for Qt
 All Classes Namespaces Functions Variables Typedefs Enumerations Properties
QtGui.IQFontDialogSignals Interface Reference
Inheritance diagram for QtGui.IQFontDialogSignals:
Collaboration diagram for QtGui.IQFontDialogSignals:

Public Member Functions

void CurrentFontChanged (QFont font)
 
 
void FontSelected (QFont font)
 
 
- Public Member Functions inherited from QtGui.IQDialogSignals
void Finished (int result)
 
 
void Accepted ()
 
 
void Rejected ()
 
 
- Public Member Functions inherited from QtGui.IQWidgetSignals
void CustomContextMenuRequested (QPoint pos)
 
 
- Public Member Functions inherited from QtCore.IQObjectSignals
void Destroyed (QObject arg1)
 
void Destroyed ()
 
 

Member Function Documentation

void QtGui.IQFontDialogSignals.CurrentFontChanged ( QFont  font)

This signal is emitted when the current font is changed. The new font is specified in font.

The signal is emitted while a user is selecting a font. Ultimately, the chosen font may differ from the font currently selected.

This function was introduced in Qt 4.5.

See also currentFont, fontSelected(), and selectedFont().

void QtGui.IQFontDialogSignals.FontSelected ( QFont  font)

This signal is emitted when a font has been selected. The selected font is specified in font.

The signal is only emitted when a user has chosen the final font to be used. It is not emitted while the user is changing the current font in the font dialog.

This function was introduced in Qt 4.5.

See also selectedFont(), currentFontChanged(), and currentFont.