summaryrefslogtreecommitdiffstats
path: root/doc/man/man3/tqapplication.3qt
diff options
context:
space:
mode:
Diffstat (limited to 'doc/man/man3/tqapplication.3qt')
-rw-r--r--doc/man/man3/tqapplication.3qt16
1 files changed, 8 insertions, 8 deletions
diff --git a/doc/man/man3/tqapplication.3qt b/doc/man/man3/tqapplication.3qt
index c972a56d..cb3c6750 100644
--- a/doc/man/man3/tqapplication.3qt
+++ b/doc/man/man3/tqapplication.3qt
@@ -223,13 +223,13 @@ Inherits TQObject.
.BI "void \fBsetPalette\fR ( const QPalette & palette, bool informWidgets = FALSE, const char * className = 0 )"
.br
.ti -1c
-.BI "QFont \fBfont\fR ( const TQWidget * w = 0 )"
+.BI "TQFont \fBfont\fR ( const TQWidget * w = 0 )"
.br
.ti -1c
-.BI "void \fBsetFont\fR ( const QFont & font, bool informWidgets = FALSE, const char * className = 0 )"
+.BI "void \fBsetFont\fR ( const TQFont & font, bool informWidgets = FALSE, const char * className = 0 )"
.br
.ti -1c
-.BI "QFontMetrics \fBfontMetrics\fR ()"
+.BI "TQFontMetrics \fBfontMetrics\fR ()"
.br
.ti -1c
.BI "TQWidgetList * \fBallWidgets\fR ()"
@@ -905,7 +905,7 @@ Flushes the window system specific event queues.
.PP
If you are doing graphical changes inside a loop that does not return to the event loop on asynchronous window systems like X11 or double buffered window systems like MacOS X, and you want to visualize these changes immediately (e.g. Splash Screens), call this function.
.PP
-See also flushX(), sendPostedEvents(), and QPainter::flush().
+See also flushX(), sendPostedEvents(), and TQPainter::flush().
.SH "void QApplication::flushX ()\fC [static]\fR"
Flushes the X event queue in the X11 implementation. This normally returns almost immediately. Does nothing on other platforms.
.PP
@@ -916,17 +916,17 @@ Example: xform/xform.cpp.
Returns the application widget that has the keyboard input focus, or 0 if no widget in this application has the focus.
.PP
See also TQWidget::setFocus(), TQWidget::focus, and activeWindow().
-.SH "QFont QApplication::font ( const TQWidget * w = 0 )\fC [static]\fR"
+.SH "TQFont QApplication::font ( const TQWidget * w = 0 )\fC [static]\fR"
Returns the default font for the widget \fIw\fR, or the default application font if \fIw\fR is 0.
.PP
See also setFont(), fontMetrics(), and TQWidget::font.
.PP
Examples:
.)l qfd/fontdisplayer.cpp, themes/metal.cpp, and themes/themes.cpp.
-.SH "QFontMetrics QApplication::fontMetrics ()\fC [static]\fR"
+.SH "TQFontMetrics QApplication::fontMetrics ()\fC [static]\fR"
Returns display (screen) font metrics for the application font.
.PP
-See also font(), setFont(), TQWidget::fontMetrics(), and QPainter::fontMetrics().
+See also font(), setFont(), TQWidget::fontMetrics(), and TQPainter::fontMetrics().
.SH "TQSize QApplication::globalStrut ()\fC [static]\fR"
Returns the application's global strut.
.PP
@@ -1296,7 +1296,7 @@ Enables the UI effect \fIeffect\fR if \fIenable\fR is TRUE, otherwise the effect
Note: All effects are disabled on screens running at less than 16-bit color depth.
.PP
See also isEffectEnabled(), TQt::UIEffect, and setDesktopSettingsAware().
-.SH "void QApplication::setFont ( const QFont & font, bool informWidgets = FALSE, const char * className = 0 )\fC [static]\fR"
+.SH "void QApplication::setFont ( const TQFont & font, bool informWidgets = FALSE, const char * className = 0 )\fC [static]\fR"
Changes the default application font to \fIfont\fR. If \fIinformWidgets\fR is TRUE, then existing widgets are informed about the change and may adjust themselves to the new application setting. If \fIinformWidgets\fR is FALSE, the change only affects newly created widgets. If \fIclassName\fR is passed, the change applies only to classes that inherit \fIclassName\fR (as reported by TQObject::inherits()).
.PP
On application start-up, the default font depends on the window system. It can vary depending on both the window system version and the locale. This function lets you override the default font; but overriding may be a bad idea because, for example, some locales need extra-large fonts to support their special characters.