diff options
author | Michele Calgaro <michele.calgaro@yahoo.it> | 2024-06-06 13:44:12 +0900 |
---|---|---|
committer | Michele Calgaro <michele.calgaro@yahoo.it> | 2024-06-06 13:52:29 +0900 |
commit | e6077c30d14e9d662e8843c554db86c0d366d0b6 (patch) | |
tree | 672319afee32f0316bad258c0e9a1e0dd737bd61 /doc/man/man3/tqfontdatabase.3qt | |
parent | 8c029298d9d3f1f84b65ac4a3a16cd1fa28d9cde (diff) | |
download | tqt3-e6077c30d14e9d662e8843c554db86c0d366d0b6.tar.gz tqt3-e6077c30d14e9d662e8843c554db86c0d366d0b6.zip |
Rename str nt* related files to equivalent tq*
Signed-off-by: Michele Calgaro <michele.calgaro@yahoo.it>
Diffstat (limited to 'doc/man/man3/tqfontdatabase.3qt')
-rw-r--r-- | doc/man/man3/tqfontdatabase.3qt | 28 |
1 files changed, 14 insertions, 14 deletions
diff --git a/doc/man/man3/tqfontdatabase.3qt b/doc/man/man3/tqfontdatabase.3qt index 10cb8b239..54df08dbb 100644 --- a/doc/man/man3/tqfontdatabase.3qt +++ b/doc/man/man3/tqfontdatabase.3qt @@ -17,13 +17,13 @@ QFontDatabase \- Information about the fonts available in the underlying window .BI "\fBQFontDatabase\fR ()" .br .ti -1c -.BI "QStringList \fBfamilies\fR () const" +.BI "TQStringList \fBfamilies\fR () const" .br .ti -1c -.BI "QStringList \fBfamilies\fR ( QFont::Script script ) const" +.BI "TQStringList \fBfamilies\fR ( QFont::Script script ) const" .br .ti -1c -.BI "QStringList \fBstyles\fR ( const TQString & family ) const" +.BI "TQStringList \fBstyles\fR ( const TQString & family ) const" .br .ti -1c .BI "TQValueList<int> \fBpointSizes\fR ( const TQString & family, const TQString & style = TQString::null )" @@ -59,10 +59,10 @@ QFontDatabase \- Information about the fonts available in the underlying window .BI "int \fBweight\fR ( const TQString & family, const TQString & style ) const" .br .ti -1c -.BI "QStringList families ( bool ) const \fI(obsolete)\fR" +.BI "TQStringList families ( bool ) const \fI(obsolete)\fR" .br .ti -1c -.BI "QStringList styles ( const TQString & family, const TQString & ) const \fI(obsolete)\fR" +.BI "TQStringList styles ( const TQString & family, const TQString & ) const \fI(obsolete)\fR" .br .ti -1c .BI "TQValueList<int> pointSizes ( const TQString & family, const TQString & style, const TQString & ) \fI(obsolete)\fR" @@ -141,17 +141,17 @@ int main( int argc, char **argv ) .br QFontDatabase fdb; .br - QStringList families = fdb.families(); + TQStringList families = fdb.families(); .br - for ( QStringList::Iterator f = families.begin(); f != families.end(); ++f ) { + for ( TQStringList::Iterator f = families.begin(); f != families.end(); ++f ) { .br TQString family = *f; .br tqDebug( family ); .br - QStringList styles = fdb.styles( family ); + TQStringList styles = fdb.styles( family ); .br - for ( QStringList::Iterator s = styles.begin(); s != styles.end(); ++s ) { + for ( TQStringList::Iterator s = styles.begin(); s != styles.end(); ++s ) { .br TQString style = *s; .br @@ -191,13 +191,13 @@ Returns TRUE if the font that has family \fIfamily\fR and style \fIstyle\fR is b See also italic() and weight(). .SH "bool QFontDatabase::bold ( const TQString & family, const TQString & style, const TQString & ) const" \fBThis function is obsolete.\fR It is provided to keep old source working. We strongly advise against using it in new code. -.SH "QStringList QFontDatabase::families () const" +.SH "TQStringList QFontDatabase::families () const" Returns a sorted list of the names of the available font families. .PP If a family exists in several foundries, the returned name for that font is in the form "family [foundry]". Examples: .)l "Times [Adobe]", "Times [Cronyx]", "Palatino". -.SH "QStringList QFontDatabase::families ( QFont::Script script ) const" +.SH "TQStringList QFontDatabase::families ( QFont::Script script ) const" This is an overloaded member function, provided for convenience. It behaves essentially like the above function. .PP Returns a sorted list of the available font families which support the Unicode script \fIscript\fR. @@ -205,7 +205,7 @@ Returns a sorted list of the available font families which support the Unicode s If a family exists in several foundries, the returned name for that font is in the form "family [foundry]". Examples: .)l "Times [Adobe]", "Times [Cronyx]", "Palatino". -.SH "QStringList QFontDatabase::families ( bool ) const" +.SH "TQStringList QFontDatabase::families ( bool ) const" \fBThis function is obsolete.\fR It is provided to keep old source working. We strongly advise against using it in new code. .SH "QFont QFontDatabase::font ( const TQString & family, const TQString & style, int pointSize )" Returns a QFont object that has family \fIfamily\fR, style \fIstyle\fR and point size \fIpointSize\fR. If no matching font could be created, a QFont object that uses the application's default font is returned. @@ -265,9 +265,9 @@ Returns a list of standard font sizes. See also smoothSizes() and pointSizes(). .SH "TQString QFontDatabase::styleString ( const QFont & f )" Returns a string that describes the style of the font \fIf\fR. For example, "Bold Italic", "Bold", "Italic" or "Normal". An empty string may be returned. -.SH "QStringList QFontDatabase::styles ( const TQString & family ) const" +.SH "TQStringList QFontDatabase::styles ( const TQString & family ) const" Returns a list of the styles available for the font family \fIfamily\fR. Some example styles: "Light", "Light Italic", "Bold"," Oblique", "Demi". The list may be empty. -.SH "QStringList QFontDatabase::styles ( const TQString & family, const TQString & ) const" +.SH "TQStringList QFontDatabase::styles ( const TQString & family, const TQString & ) const" \fBThis function is obsolete.\fR It is provided to keep old source working. We strongly advise against using it in new code. .SH "int QFontDatabase::weight ( const TQString & family, const TQString & style ) const" Returns the weight of the font that has family \fIfamily\fR and style \fIstyle\fR. If there is no such family and style combination, returns -1. |