diff options
author | Tor Arne Vestbø <tor.arne.vestbo@nokia.com> | 2010-07-05 15:38:51 (GMT) |
---|---|---|
committer | Tor Arne Vestbø <tor.arne.vestbo@nokia.com> | 2010-07-08 11:05:44 (GMT) |
commit | 6d5655089fa4e2231a1a8edc98ecbb6b29e344e1 (patch) | |
tree | bd6c9a184fc6e2f1a74416248383a2af0543a788 /src/gui/text/qfont.cpp | |
parent | ebf175b3d68e28cd808204adaba1ec8942ac5a8f (diff) | |
download | Qt-6d5655089fa4e2231a1a8edc98ecbb6b29e344e1.zip Qt-6d5655089fa4e2231a1a8edc98ecbb6b29e344e1.tar.gz Qt-6d5655089fa4e2231a1a8edc98ecbb6b29e344e1.tar.bz2 |
Add three new style-hints to QFont to match CSS' generic font families
The defaults were chosen to match major web browsers. See:
http://xhva.net/log/?p=160
Reviewed-by: Simon Hausmann
Diffstat (limited to 'src/gui/text/qfont.cpp')
-rw-r--r-- | src/gui/text/qfont.cpp | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/src/gui/text/qfont.cpp b/src/gui/text/qfont.cpp index c229242..3fe98e1 100644 --- a/src/gui/text/qfont.cpp +++ b/src/gui/text/qfont.cpp @@ -1266,6 +1266,15 @@ QFont::StyleHint QFont::styleHint() const \value OldEnglish the font matcher prefers decorative fonts. \value Decorative is a synonym for \c OldEnglish. + \value Monospace the font matcher prefers fonts that map to the + CSS generic font-family 'monospace'. + + \value Fantasy the font matcher prefers fonts that map to the + CSS generic font-family 'fantasy'. + + \value Cursive the font matcher prefers fonts that map to the + CSS generic font-family 'cursive'. + \value System the font matcher prefers system fonts. */ |