From 0e787fb7f5b56b4fe87cd8ada64ae740bbca87bc Mon Sep 17 00:00:00 2001 From: Michele Calgaro Date: Wed, 24 Jul 2024 19:37:05 +0900 Subject: Rename text class nt* related files to equivalent tq* Signed-off-by: Michele Calgaro --- doc/man/man3/tqaccel.3qt | 8 +- doc/man/man3/tqaccessible.3qt | 2 +- doc/man/man3/tqaction.3qt | 2 +- doc/man/man3/tqchar.3qt | 86 ++-- doc/man/man3/tqcharref.3qt | 12 +- doc/man/man3/tqconststring.3qt | 26 +- doc/man/man3/tqerrormessage.3qt | 2 +- doc/man/man3/tqfiledialog.3qt | 20 +- doc/man/man3/tqframe.3qt | 8 +- doc/man/man3/tqgridlayout.3qt | 2 +- doc/man/man3/tqguardedptr.3qt | 4 +- doc/man/man3/tqhebrewcodec.3qt | 2 +- doc/man/man3/tqimageconsumer.3qt | 2 +- doc/man/man3/tqlabel.3qt | 106 ++-- doc/man/man3/tqlcdnumber.3qt | 2 +- doc/man/man3/tqlineedit.3qt | 2 +- doc/man/man3/tqlocale.3qt | 916 +++++++++++++++++------------------ doc/man/man3/tqmainwindow.3qt | 4 +- doc/man/man3/tqmenubar.3qt | 2 +- doc/man/man3/tqmenudata.3qt | 2 +- doc/man/man3/tqmimesourcefactory.3qt | 10 +- doc/man/man3/tqmovie.3qt | 4 +- doc/man/man3/tqobject.3qt | 2 +- doc/man/man3/tqpixmap.3qt | 2 +- doc/man/man3/tqpopupmenu.3qt | 4 +- doc/man/man3/tqprogressdialog.3qt | 4 +- doc/man/man3/tqregexp.3qt | 2 +- doc/man/man3/tqscrollview.3qt | 22 +- doc/man/man3/tqsimplerichtext.3qt | 66 +-- doc/man/man3/tqsizepolicy.3qt | 2 +- doc/man/man3/tqsqlpropertymap.3qt | 2 +- doc/man/man3/tqstatusbar.3qt | 4 +- doc/man/man3/tqstring.3qt | 30 +- doc/man/man3/tqstylesheet.3qt | 6 +- doc/man/man3/tqsyntaxhighlighter.3qt | 40 +- doc/man/man3/tqt.3qt | 4 +- doc/man/man3/tqtextbrowser.3qt | 2 +- doc/man/man3/tqtextedit.3qt | 10 +- doc/man/man3/tqtooltip.3qt | 2 +- doc/man/man3/tqwhatsthis.3qt | 62 +-- doc/man/man3/tqwidget.3qt | 10 +- 41 files changed, 750 insertions(+), 750 deletions(-) (limited to 'doc/man') diff --git a/doc/man/man3/tqaccel.3qt b/doc/man/man3/tqaccel.3qt index 28420add5..4ad264c2f 100644 --- a/doc/man/man3/tqaccel.3qt +++ b/doc/man/man3/tqaccel.3qt @@ -102,7 +102,7 @@ The QAccel class handles keyboard accelerator and shortcut keys. .PP A keyboard accelerator triggers an action when a certain key combination is pressed. The accelerator handles all keyboard activity for all the children of one top-level widget, so it is not affected by the keyboard focus. .PP -In most cases, you will not need to use this class directly. Use the TQAction class to create actions with accelerators that can be used in both menus and toolbars. If you're only interested in menus use TQMenuData::insertItem() or TQMenuData::setAccel() to make accelerators for operations that are also available on menus. Many widgets automatically generate accelerators, such as QButton, QGroupBox, QLabel (with QLabel::setBuddy()), TQMenuBar and QTabBar. Example: +In most cases, you will not need to use this class directly. Use the TQAction class to create actions with accelerators that can be used in both menus and toolbars. If you're only interested in menus use TQMenuData::insertItem() or TQMenuData::setAccel() to make accelerators for operations that are also available on menus. Many widgets automatically generate accelerators, such as QButton, QGroupBox, TQLabel (with TQLabel::setBuddy()), TQMenuBar and QTabBar. Example: .PP .nf .br @@ -120,7 +120,7 @@ Each accelerator item consists of an identifier and a QKeySequence. A single key .PP When an accelerator key is pressed, the accelerator sends out the signal activated() with a number that identifies this particular accelerator item. Accelerator items can also be individually connected, so that two different keys will activate two different slots (see connectItem() and disconnectItem()). .PP -The activated() signal is \fInot\fR emitted when two or more accelerators match the same key. Instead, the first matching accelerator sends out the activatedAmbiguously() signal. By pressing the key multiple times, users can navigate between all matching accelerators. Some standard controls like QPushButton and QCheckBox connect the activatedAmbiguously() signal to the harmless setFocus() slot, whereas activated() is connected to a slot invoking the button's action. Most controls, like QLabel and QTabBar, treat activated() and activatedAmbiguously() as equivalent. +The activated() signal is \fInot\fR emitted when two or more accelerators match the same key. Instead, the first matching accelerator sends out the activatedAmbiguously() signal. By pressing the key multiple times, users can navigate between all matching accelerators. Some standard controls like QPushButton and QCheckBox connect the activatedAmbiguously() signal to the harmless setFocus() slot, whereas activated() is connected to a slot invoking the button's action. Most controls, like TQLabel and QTabBar, treat activated() and activatedAmbiguously() as equivalent. .PP Use setEnabled() to enable or disable all the items in an accelerator, or setItemEnabled() to enable or disable individual items. An item is active only when both the QAccel and the item itself are enabled. .PP @@ -151,7 +151,7 @@ Example: .br .fi .PP -See also QKeyEvent, TQWidget::keyPressEvent(), TQMenuData::setAccel(), QButton::accel, QLabel::setBuddy(), QKeySequence, GUI Design Handbook: Keyboard Shortcuts, and Miscellaneous Classes. +See also QKeyEvent, TQWidget::keyPressEvent(), TQMenuData::setAccel(), QButton::accel, TQLabel::setBuddy(), QKeySequence, GUI Design Handbook: Keyboard Shortcuts, and Miscellaneous Classes. .SH MEMBER FUNCTION DOCUMENTATION .SH "QAccel::QAccel ( TQWidget * parent, const char * name = 0 )" Constructs a QAccel object called \fIname\fR, with parent \fIparent\fR. The accelerator operates on \fIparent\fR. @@ -262,7 +262,7 @@ The text will be shown when the application is in What's This mode and the user .PP To set What's This help on a menu item (with or without an accelerator key), use TQMenuData::setWhatsThis(). .PP -See also whatsThis(), QWhatsThis::inWhatsThisMode(), TQMenuData::setWhatsThis(), and TQAction::whatsThis. +See also whatsThis(), TQWhatsThis::inWhatsThisMode(), TQMenuData::setWhatsThis(), and TQAction::whatsThis. .SH "QKeySequence QAccel::shortcutKey ( const TQString & str )\fC [static]\fR" Returns the shortcut key sequence for \fIstr\fR, or an invalid key sequence (0) if \fIstr\fR has no shortcut sequence. .PP diff --git a/doc/man/man3/tqaccessible.3qt b/doc/man/man3/tqaccessible.3qt index b3e790457..498c72485 100644 --- a/doc/man/man3/tqaccessible.3qt +++ b/doc/man/man3/tqaccessible.3qt @@ -366,7 +366,7 @@ Notifies accessibility clients about a change in \fIobject\fR's accessibility in .PP \fIreason\fR specifies the cause of the change, for example, ValueChange when the position of a slider has been changed. \fIcontrol\fR is the ID of the child element that has changed. When \fIcontrol\fR is 0, the object itself has changed. .PP -Call this function whenever the state of your accessible object or one of it's sub-elements has been changed either programmatically (e.g. by calling QLabel::setText()) or by user interaction. +Call this function whenever the state of your accessible object or one of it's sub-elements has been changed either programmatically (e.g. by calling TQLabel::setText()) or by user interaction. .PP If there are no accessibility tools listening to this event, the performance penalty for calling this function is minor, but if determining diff --git a/doc/man/man3/tqaction.3qt b/doc/man/man3/tqaction.3qt index 507e3d4d8..862763dfb 100644 --- a/doc/man/man3/tqaction.3qt +++ b/doc/man/man3/tqaction.3qt @@ -506,7 +506,7 @@ This property holds the action's "What's This?" help text. .PP The whats this text is used to provide a brief description of the action. The text may contain rich text (HTML-like tags -- see TQStyleSheet for the list of supported tags). There is no default" What's This" text. .PP -See also QWhatsThis. +See also TQWhatsThis. .PP Set this property's value with setWhatsThis() and get this property's value with whatsThis(). diff --git a/doc/man/man3/tqchar.3qt b/doc/man/man3/tqchar.3qt index e3786c2f4..86e001d7c 100644 --- a/doc/man/man3/tqchar.3qt +++ b/doc/man/man3/tqchar.3qt @@ -16,31 +16,31 @@ Almost all the functions in this class are reentrant when TQt is built with thre .SS "Public Members" .in +1c .ti -1c -.BI "\fBQChar\fR ()" +.BI "\fBTQChar\fR ()" .br .ti -1c -.BI "\fBQChar\fR ( char c )" +.BI "\fBTQChar\fR ( char c )" .br .ti -1c -.BI "\fBQChar\fR ( uchar c )" +.BI "\fBTQChar\fR ( uchar c )" .br .ti -1c -.BI "\fBQChar\fR ( uchar c, uchar r )" +.BI "\fBTQChar\fR ( uchar c, uchar r )" .br .ti -1c -.BI "\fBQChar\fR ( const TQChar & c )" +.BI "\fBTQChar\fR ( const TQChar & c )" .br .ti -1c -.BI "\fBQChar\fR ( ushort rc )" +.BI "\fBTQChar\fR ( ushort rc )" .br .ti -1c -.BI "\fBQChar\fR ( short rc )" +.BI "\fBTQChar\fR ( short rc )" .br .ti -1c -.BI "\fBQChar\fR ( uint rc )" +.BI "\fBTQChar\fR ( uint rc )" .br .ti -1c -.BI "\fBQChar\fR ( int rc )" +.BI "\fBTQChar\fR ( int rc )" .br .ti -1c .BI "enum \fBCategory\fR { NoCategory, Mark_NonSpacing, Mark_SpacingCombining, Mark_Enclosing, Number_DecimalDigit, Number_Letter, Number_Other, Separator_Space, Separator_Line, Separator_Paragraph, Other_Control, Other_Format, Other_Surrogate, Other_PrivateUse, Other_NotAssigned, Letter_Uppercase, Letter_Lowercase, Letter_Titlecase, Letter_Modifier, Letter_Other, Punctuation_Connector, Punctuation_Dash, Punctuation_Dask = Punctuation_Dash, Punctuation_Open, Punctuation_Close, Punctuation_InitialQuote, Punctuation_FinalQuote, Punctuation_Other, Symbol_Math, Symbol_Currency, Symbol_Modifier, Symbol_Other }" @@ -221,80 +221,80 @@ The conversion functions include unicode() (to a scalar), latin1() (to scalar, b .PP More information can be found in the document About Unicode. .PP -See also TQString, QCharRef, and Text Related Classes. +See also TQString, TQCharRef, and Text Related Classes. .SS "Member Type Documentation" .SH "TQChar::Category" This enum maps the Unicode character categories. .PP The following characters are normative in Unicode: .TP -\fCQChar::Mark_NonSpacing\fR - Unicode class name Mn +\fCTQChar::Mark_NonSpacing\fR - Unicode class name Mn .TP -\fCQChar::Mark_SpacingCombining\fR - Unicode class name Mc +\fCTQChar::Mark_SpacingCombining\fR - Unicode class name Mc .TP -\fCQChar::Mark_Enclosing\fR - Unicode class name Me +\fCTQChar::Mark_Enclosing\fR - Unicode class name Me .TP -\fCQChar::Number_DecimalDigit\fR - Unicode class name Nd +\fCTQChar::Number_DecimalDigit\fR - Unicode class name Nd .TP -\fCQChar::Number_Letter\fR - Unicode class name Nl +\fCTQChar::Number_Letter\fR - Unicode class name Nl .TP -\fCQChar::Number_Other\fR - Unicode class name No +\fCTQChar::Number_Other\fR - Unicode class name No .TP -\fCQChar::Separator_Space\fR - Unicode class name Zs +\fCTQChar::Separator_Space\fR - Unicode class name Zs .TP -\fCQChar::Separator_Line\fR - Unicode class name Zl +\fCTQChar::Separator_Line\fR - Unicode class name Zl .TP -\fCQChar::Separator_Paragraph\fR - Unicode class name Zp +\fCTQChar::Separator_Paragraph\fR - Unicode class name Zp .TP -\fCQChar::Other_Control\fR - Unicode class name Cc +\fCTQChar::Other_Control\fR - Unicode class name Cc .TP -\fCQChar::Other_Format\fR - Unicode class name Cf +\fCTQChar::Other_Format\fR - Unicode class name Cf .TP -\fCQChar::Other_Surrogate\fR - Unicode class name Cs +\fCTQChar::Other_Surrogate\fR - Unicode class name Cs .TP -\fCQChar::Other_PrivateUse\fR - Unicode class name Co +\fCTQChar::Other_PrivateUse\fR - Unicode class name Co .TP -\fCQChar::Other_NotAssigned\fR - Unicode class name Cn +\fCTQChar::Other_NotAssigned\fR - Unicode class name Cn .PP The following categories are informative in Unicode: .TP -\fCQChar::Letter_Uppercase\fR - Unicode class name Lu +\fCTQChar::Letter_Uppercase\fR - Unicode class name Lu .TP -\fCQChar::Letter_Lowercase\fR - Unicode class name Ll +\fCTQChar::Letter_Lowercase\fR - Unicode class name Ll .TP -\fCQChar::Letter_Titlecase\fR - Unicode class name Lt +\fCTQChar::Letter_Titlecase\fR - Unicode class name Lt .TP -\fCQChar::Letter_Modifier\fR - Unicode class name Lm +\fCTQChar::Letter_Modifier\fR - Unicode class name Lm .TP -\fCQChar::Letter_Other\fR - Unicode class name Lo +\fCTQChar::Letter_Other\fR - Unicode class name Lo .TP -\fCQChar::Punctuation_Connector\fR - Unicode class name Pc +\fCTQChar::Punctuation_Connector\fR - Unicode class name Pc .TP -\fCQChar::Punctuation_Dash\fR - Unicode class name Pd +\fCTQChar::Punctuation_Dash\fR - Unicode class name Pd .TP -\fCQChar::Punctuation_Open\fR - Unicode class name Ps +\fCTQChar::Punctuation_Open\fR - Unicode class name Ps .TP -\fCQChar::Punctuation_Close\fR - Unicode class name Pe +\fCTQChar::Punctuation_Close\fR - Unicode class name Pe .TP -\fCQChar::Punctuation_InitialQuote\fR - Unicode class name Pi +\fCTQChar::Punctuation_InitialQuote\fR - Unicode class name Pi .TP -\fCQChar::Punctuation_FinalQuote\fR - Unicode class name Pf +\fCTQChar::Punctuation_FinalQuote\fR - Unicode class name Pf .TP -\fCQChar::Punctuation_Other\fR - Unicode class name Po +\fCTQChar::Punctuation_Other\fR - Unicode class name Po .TP -\fCQChar::Symbol_Math\fR - Unicode class name Sm +\fCTQChar::Symbol_Math\fR - Unicode class name Sm .TP -\fCQChar::Symbol_Currency\fR - Unicode class name Sc +\fCTQChar::Symbol_Currency\fR - Unicode class name Sc .TP -\fCQChar::Symbol_Modifier\fR - Unicode class name Sk +\fCTQChar::Symbol_Modifier\fR - Unicode class name Sk .TP -\fCQChar::Symbol_Other\fR - Unicode class name So +\fCTQChar::Symbol_Other\fR - Unicode class name So .PP There are two categories that are specific to Qt: .TP -\fCQChar::NoCategory\fR - used when TQt is dazed and confused and cannot make sense of anything. +\fCTQChar::NoCategory\fR - used when TQt is dazed and confused and cannot make sense of anything. .TP -\fCQChar::Punctuation_Dask\fR - old typo alias for Punctuation_Dash +\fCTQChar::Punctuation_Dask\fR - old typo alias for Punctuation_Dash .SH "TQChar::CombiningClass" This enum type defines names for some of the Unicode combining classes. See the Unicode Standard for a description of the values. .SH "TQChar::Decomposition" @@ -465,7 +465,7 @@ character \fIch\fR is greater than or equal to that of \fIc\fR; otherwise returns FALSE. .SH "SEE ALSO" -.BR http://doc.trolltech.com/qchar.html +.BR http://doc.trolltech.com/tqchar.html .BR http://www.trolltech.com/faq/tech.html .SH COPYRIGHT Copyright 1992-2007 Trolltech ASA, http://www.trolltech.com. See the diff --git a/doc/man/man3/tqcharref.3qt b/doc/man/man3/tqcharref.3qt index 9427f0c8e..0bdff229a 100644 --- a/doc/man/man3/tqcharref.3qt +++ b/doc/man/man3/tqcharref.3qt @@ -1,5 +1,5 @@ '\" t -.TH QCharRef 3qt "2 February 2007" "Trolltech AS" \" -*- nroff -*- +.TH TQCharRef 3qt "2 February 2007" "Trolltech AS" \" -*- nroff -*- .\" Copyright 1992-2007 Trolltech ASA. All rights reserved. See the .\" license file included in the distribution for a complete license .\" statement. @@ -7,23 +7,23 @@ .ad l .nh .SH NAME -QCharRef \- Helper class for TQString +TQCharRef \- Helper class for TQString .SH SYNOPSIS All the functions in this class are reentrant when TQt is built with thread support.

.PP \fC#include \fR .PP .SH DESCRIPTION -The QCharRef class is a helper class for TQString. +The TQCharRef class is a helper class for TQString. .PP -When you get an object of type QCharRef, if you can assign to it, the assignment will apply to the character in the string from which you got the reference. That is its whole purpose in life. The QCharRef becomes invalid once modifications are made to the string: if you want to keep the character, copy it into a TQChar. +When you get an object of type TQCharRef, if you can assign to it, the assignment will apply to the character in the string from which you got the reference. That is its whole purpose in life. The TQCharRef becomes invalid once modifications are made to the string: if you want to keep the character, copy it into a TQChar. .PP -Most of the TQChar member functions also exist in QCharRef. However, they are not explicitly documented here. +Most of the TQChar member functions also exist in TQCharRef. However, they are not explicitly documented here. .PP See also TQString::operator[](), TQString::at(), TQChar, and Text Related Classes. .SH "SEE ALSO" -.BR http://doc.trolltech.com/qcharref.html +.BR http://doc.trolltech.com/tqcharref.html .BR http://www.trolltech.com/faq/tech.html .SH COPYRIGHT Copyright 1992-2007 Trolltech ASA, http://www.trolltech.com. See the diff --git a/doc/man/man3/tqconststring.3qt b/doc/man/man3/tqconststring.3qt index 887f7b76c..4c3e717d1 100644 --- a/doc/man/man3/tqconststring.3qt +++ b/doc/man/man3/tqconststring.3qt @@ -1,5 +1,5 @@ '\" t -.TH QConstString 3qt "2 February 2007" "Trolltech AS" \" -*- nroff -*- +.TH TQConstString 3qt "2 February 2007" "Trolltech AS" \" -*- nroff -*- .\" Copyright 1992-2007 Trolltech ASA. All rights reserved. See the .\" license file included in the distribution for a complete license .\" statement. @@ -7,7 +7,7 @@ .ad l .nh .SH NAME -QConstString \- String objects using constant Unicode data +TQConstString \- String objects using constant Unicode data .SH SYNOPSIS All the functions in this class are reentrant when TQt is built with thread support.

.PP @@ -16,36 +16,36 @@ All the functions in this class are reentrant when TQt is built with thread supp .SS "Public Members" .in +1c .ti -1c -.BI "\fBQConstString\fR ( const TQChar * unicode, uint length )" +.BI "\fBTQConstString\fR ( const TQChar * unicode, uint length )" .br .ti -1c -.BI "\fB~QConstString\fR ()" +.BI "\fB~TQConstString\fR ()" .br .ti -1c .BI "const TQString & \fBstring\fR () const" .br .in -1c .SH DESCRIPTION -The QConstString class provides string objects using constant Unicode data. +The TQConstString class provides string objects using constant Unicode data. .PP -In order to minimize copying, highly optimized applications can use QConstString to provide a TQString-compatible object from existing Unicode data. It is then the programmer's responsibility to ensure that the Unicode data exists for the entire lifetime of the QConstString object. +In order to minimize copying, highly optimized applications can use TQConstString to provide a TQString-compatible object from existing Unicode data. It is then the programmer's responsibility to ensure that the Unicode data exists for the entire lifetime of the TQConstString object. .PP -A QConstString is created with the QConstString constructor. The string held by the object can be obtained by calling string(). +A TQConstString is created with the TQConstString constructor. The string held by the object can be obtained by calling string(). .PP See also Text Related Classes. .SH MEMBER FUNCTION DOCUMENTATION -.SH "QConstString::QConstString ( const TQChar * unicode, uint length )" -Constructs a QConstString that uses the first \fIlength\fR Unicode characters in the array \fIunicode\fR. Any attempt to modify copies of the string will cause it to create a copy of the data, thus it remains forever unmodified. +.SH "TQConstString::TQConstString ( const TQChar * unicode, uint length )" +Constructs a TQConstString that uses the first \fIlength\fR Unicode characters in the array \fIunicode\fR. Any attempt to modify copies of the string will cause it to create a copy of the data, thus it remains forever unmodified. .PP The data in \fIunicode\fR is not copied. The caller must be able to guarantee that \fIunicode\fR will not be deleted or modified. -.SH "QConstString::~QConstString ()" -Destroys the QConstString, creating a copy of the data if other strings are still using it. -.SH "const TQString & QConstString::string () const" +.SH "TQConstString::~TQConstString ()" +Destroys the TQConstString, creating a copy of the data if other strings are still using it. +.SH "const TQString & TQConstString::string () const" Returns a constant string referencing the data passed during construction. .SH "SEE ALSO" -.BR http://doc.trolltech.com/qconststring.html +.BR http://doc.trolltech.com/tqconststring.html .BR http://www.trolltech.com/faq/tech.html .SH COPYRIGHT Copyright 1992-2007 Trolltech ASA, http://www.trolltech.com. See the diff --git a/doc/man/man3/tqerrormessage.3qt b/doc/man/man3/tqerrormessage.3qt index 81a84b9f5..8effc51ff 100644 --- a/doc/man/man3/tqerrormessage.3qt +++ b/doc/man/man3/tqerrormessage.3qt @@ -37,7 +37,7 @@ Inherits QDialog. .SH DESCRIPTION The QErrorMessage class provides an error message display dialog. .PP -This is basically a QLabel and a "show this message again" checkbox which remembers what not to show. +This is basically a TQLabel and a "show this message again" checkbox which remembers what not to show. .PP There are two ways to use this class:
    .IP 1 diff --git a/doc/man/man3/tqfiledialog.3qt b/doc/man/man3/tqfiledialog.3qt index de55d1923..4bdadcc70 100644 --- a/doc/man/man3/tqfiledialog.3qt +++ b/doc/man/man3/tqfiledialog.3qt @@ -214,7 +214,7 @@ Inherits QDialog. .SS "Protected Members" .in +1c .ti -1c -.BI "void \fBaddWidgets\fR ( QLabel * l, TQWidget * w, QPushButton * b )" +.BI "void \fBaddWidgets\fR ( TQLabel * l, TQWidget * w, QPushButton * b )" .br .ti -1c .BI "void \fBaddToolButton\fR ( QButton * b, bool separator = FALSE )" @@ -311,13 +311,13 @@ A preview widget is a widget that is placed inside a TQFileDialog so that the us .PP .nf .br - class Preview : public QLabel, public TQFilePreview + class Preview : public TQLabel, public TQFilePreview .br { .br public: .br - Preview( TQWidget *parent=0 ) : QLabel( parent ) {} + Preview( TQWidget *parent=0 ) : TQLabel( parent ) {} .br .br void previewUrl( const TQUrl &u ) @@ -342,7 +342,7 @@ A preview widget is a widget that is placed inside a TQFileDialog so that the us .br .fi .PP -In the above snippet, we create a preview widget which inherits from QLabel and TQFilePreview. File preview widgets \fImust\fR inherit from TQFilePreview. +In the above snippet, we create a preview widget which inherits from TQLabel and TQFilePreview. File preview widgets \fImust\fR inherit from TQFilePreview. .PP Inside the class we reimplement TQFilePreview::previewUrl(), this is where we determine what happens when a file is selected. In the above example we only show a preview of the file if it is a valid pixmap. Here's how to make a file dialog use a preview widget: .PP @@ -447,7 +447,7 @@ See also addLeftWidget(), addWidgets(), and addToolButton(). Adds the tool button \fIb\fR to the row of tool buttons at the top of the file dialog. The button is appended to the right of this row. If \fIseparator\fR is TRUE, a small space is inserted between the last button of the row and the new button \fIb\fR. .PP See also addWidgets(), addLeftWidget(), and addRightWidget(). -.SH "void TQFileDialog::addWidgets ( QLabel * l, TQWidget * w, QPushButton * b )\fC [protected]\fR" +.SH "void TQFileDialog::addWidgets ( TQLabel * l, TQWidget * w, QPushButton * b )\fC [protected]\fR" Adds the specified widgets to the bottom of the file dialog. The label \fIl\fR is placed underneath the "file name" and the "file types" labels. The widget \fIw\fR is placed underneath the file types combobox. The button \fIb\fR is placed underneath the Cancel pushbutton. .PP .nf @@ -458,7 +458,7 @@ Adds the specified widgets to the bottom of the file dialog. The label \fIl\fR i .br { .br - QLabel* label = new QLabel( "Added widgets", this ); + TQLabel* label = new TQLabel( "Added widgets", this ); .br QLineEdit* lineedit = new QLineEdit( this ); .br @@ -687,13 +687,13 @@ Normally you would create a preview widget that derives from both TQWidget and T .PP .nf .br - class Preview : public QLabel, public TQFilePreview + class Preview : public TQLabel, public TQFilePreview .br { .br public: .br - Preview( TQWidget *parent=0 ) : QLabel( parent ) {} + Preview( TQWidget *parent=0 ) : TQLabel( parent ) {} .br .br void previewUrl( const TQUrl &u ) @@ -813,13 +813,13 @@ Normally you would create a preview widget that derives from both TQWidget and T .PP .nf .br - class Preview : public QLabel, public TQFilePreview + class Preview : public TQLabel, public TQFilePreview .br { .br public: .br - Preview( TQWidget *parent=0 ) : QLabel( parent ) {} + Preview( TQWidget *parent=0 ) : TQLabel( parent ) {} .br .br void previewUrl( const TQUrl &u ) diff --git a/doc/man/man3/tqframe.3qt b/doc/man/man3/tqframe.3qt index 7ff469fb3..0d9fcaff7 100644 --- a/doc/man/man3/tqframe.3qt +++ b/doc/man/man3/tqframe.3qt @@ -13,7 +13,7 @@ QFrame \- The base class of widgets that can have a frame .PP Inherits TQWidget. .PP -Inherited by QGroupBox, QScrollView, QDockWindow, QGrid, QHBox, QLabel, QLCDNumber, QLineEdit, TQMenuBar, TQPopupMenu, QProgressBar, QSplitter, TQToolBox, and TQWidgetStack. +Inherited by QGroupBox, QScrollView, QDockWindow, QGrid, QHBox, TQLabel, QLCDNumber, QLineEdit, TQMenuBar, TQPopupMenu, QProgressBar, QSplitter, TQToolBox, and TQWidgetStack. .PP .SS "Public Members" .in +1c @@ -125,11 +125,11 @@ The QFrame class is the base class of widgets that can have a frame. .PP It draws a frame and calls a virtual function, drawContents(), to fill in the frame. This function is reimplemented by subclasses. There are also two other less useful functions: drawFrame() and frameChanged(). .PP -TQPopupMenu uses this to "raise" the menu above the surrounding screen. QProgressBar has a "sunken" look. QLabel has a flat look. The frames of widgets like these can be changed. +TQPopupMenu uses this to "raise" the menu above the surrounding screen. QProgressBar has a "sunken" look. TQLabel has a flat look. The frames of widgets like these can be changed. .PP .nf .br - QLabel label(...); + TQLabel label(...); .br label.setFrameStyle( QFrame::Panel | QFrame::Raised ); .br @@ -228,7 +228,7 @@ This function is reimplemented by subclasses that draw something inside the fram .PP See also contentsRect and TQPainter::setClipRect(). .PP -Reimplemented in QLabel, QLCDNumber, TQMenuBar, and TQPopupMenu. +Reimplemented in TQLabel, QLCDNumber, TQMenuBar, and TQPopupMenu. .SH "void QFrame::drawFrame ( TQPainter * p )\fC [virtual protected]\fR" Draws the frame using the painter \fIp\fR and the current frame attributes and color group. The rectangle inside the frame is not affected. .PP diff --git a/doc/man/man3/tqgridlayout.3qt b/doc/man/man3/tqgridlayout.3qt index 5fb3d2a55..2a2f1a250 100644 --- a/doc/man/man3/tqgridlayout.3qt +++ b/doc/man/man3/tqgridlayout.3qt @@ -154,7 +154,7 @@ This illustration shows a fragment of a dialog with a five-column, three-row gri .PP .PP -Columns 0, 2 and 4 in this dialog fragment are made up of a QLabel, a QLineEdit, and a QListBox. Columns 1 and 3 are placeholders made with addColSpacing(). Row 0 consists of three QLabel objects, row 1 of three QLineEdit objects and row 2 of three QListBox objects. We used placeholder columns (1 and 3) to get the right amount of space between the columns. +Columns 0, 2 and 4 in this dialog fragment are made up of a TQLabel, a QLineEdit, and a QListBox. Columns 1 and 3 are placeholders made with addColSpacing(). Row 0 consists of three TQLabel objects, row 1 of three QLineEdit objects and row 2 of three QListBox objects. We used placeholder columns (1 and 3) to get the right amount of space between the columns. .PP Note that the columns and rows are not equally wide or tall. If you want two columns to have the same width, you must set their minimum widths and stretch factors to be the same yourself. You do this using addColSpacing() and setColStretch(). .PP diff --git a/doc/man/man3/tqguardedptr.3qt b/doc/man/man3/tqguardedptr.3qt index 580a8b955..b6c8e7a12 100644 --- a/doc/man/man3/tqguardedptr.3qt +++ b/doc/man/man3/tqguardedptr.3qt @@ -61,12 +61,12 @@ Example: .PP .nf .br - QGuardedPtr label = new QLabel( 0, "label" ); + QGuardedPtr label = new TQLabel( 0, "label" ); .br label->setText( "I like guarded pointers" ); .br .br - delete (QLabel*) label; // simulate somebody destroying the label + delete (TQLabel*) label; // simulate somebody destroying the label .br .br if ( label) diff --git a/doc/man/man3/tqhebrewcodec.3qt b/doc/man/man3/tqhebrewcodec.3qt index 8ebd2f338..3fe11e4cb 100644 --- a/doc/man/man3/tqhebrewcodec.3qt +++ b/doc/man/man3/tqhebrewcodec.3qt @@ -44,7 +44,7 @@ Transforms the logically ordered TQString, \fIuc\fR, into a visually ordered str .PP The algorithm is designed to work on whole paragraphs of text, so processing a line at a time may produce incorrect results. This approach is taken because the reordering of the contents of a particular line in a paragraph may depend on the previous line in the same paragraph. .PP -Some encodings (for example Japanese or UTF-8) are multibyte (so one input character is mapped to two output characters). The \fIlenInOut\fR argument specifies the number of QChars that should be converted and is set to the number of characters returned. +Some encodings (for example Japanese or UTF-8) are multibyte (so one input character is mapped to two output characters). The \fIlenInOut\fR argument specifies the number of TQChars that should be converted and is set to the number of characters returned. .PP Reimplemented from TQTextCodec. .SH "const char * TQHebrewCodec::mimeName () const\fC [virtual]\fR" diff --git a/doc/man/man3/tqimageconsumer.3qt b/doc/man/man3/tqimageconsumer.3qt index b0db864f2..bd37843b5 100644 --- a/doc/man/man3/tqimageconsumer.3qt +++ b/doc/man/man3/tqimageconsumer.3qt @@ -38,7 +38,7 @@ TQImageConsumer \- Abstraction used by TQImageDecoder .SH DESCRIPTION The TQImageConsumer class is an abstraction used by TQImageDecoder. .PP -The TQMovie class, or QLabel::setMovie(), are easy to use and for most situations do what you want with regards animated images. +The TQMovie class, or TQLabel::setMovie(), are easy to use and for most situations do what you want with regards animated images. .PP A TQImageConsumer consumes information about changes to the TQImage maintained by a TQImageDecoder. Think of the TQImage as the model or source of the image data, with the TQImageConsumer as a view of that data and the TQImageDecoder being the controller that orchestrates the relationship between the model and the view. .PP diff --git a/doc/man/man3/tqlabel.3qt b/doc/man/man3/tqlabel.3qt index 838034f99..c3e5cc25c 100644 --- a/doc/man/man3/tqlabel.3qt +++ b/doc/man/man3/tqlabel.3qt @@ -1,5 +1,5 @@ '\" t -.TH QLabel 3qt "2 February 2007" "Trolltech AS" \" -*- nroff -*- +.TH TQLabel 3qt "2 February 2007" "Trolltech AS" \" -*- nroff -*- .\" Copyright 1992-2007 Trolltech ASA. All rights reserved. See the .\" license file included in the distribution for a complete license .\" statement. @@ -7,25 +7,25 @@ .ad l .nh .SH NAME -QLabel \- Text or image display +TQLabel \- Text or image display .SH SYNOPSIS -\fC#include \fR +\fC#include \fR .PP Inherits QFrame. .PP .SS "Public Members" .in +1c .ti -1c -.BI "\fBQLabel\fR ( TQWidget * parent, const char * name = 0, WFlags f = 0 )" +.BI "\fBTQLabel\fR ( TQWidget * parent, const char * name = 0, WFlags f = 0 )" .br .ti -1c -.BI "\fBQLabel\fR ( const TQString & text, TQWidget * parent, const char * name = 0, WFlags f = 0 )" +.BI "\fBTQLabel\fR ( const TQString & text, TQWidget * parent, const char * name = 0, WFlags f = 0 )" .br .ti -1c -.BI "\fBQLabel\fR ( TQWidget * buddy, const TQString & text, TQWidget * parent, const char * name = 0, WFlags f = 0 )" +.BI "\fBTQLabel\fR ( TQWidget * buddy, const TQString & text, TQWidget * parent, const char * name = 0, WFlags f = 0 )" .br .ti -1c -.BI "\fB~QLabel\fR ()" +.BI "\fB~TQLabel\fR ()" .br .ti -1c .BI "TQString \fBtext\fR () const" @@ -134,11 +134,11 @@ Inherits QFrame. .br .in -1c .SH DESCRIPTION -The QLabel widget provides a text or image display. +The TQLabel widget provides a text or image display. .PP -QLabel is used for displaying text or an image. No user interaction functionality is provided. The visual appearance of the label can be configured in various ways, and it can be used for specifying a focus accelerator key for another widget. +TQLabel is used for displaying text or an image. No user interaction functionality is provided. The visual appearance of the label can be configured in various ways, and it can be used for specifying a focus accelerator key for another widget. .PP -A QLabel can contain any of the following content types:
    .nf +A TQLabel can contain any of the following content types:
    .nf .TS l - l. Content Setting Plain text Pass a TQString to setText(). Rich text Pass a TQString that contains rich text to setText(). A pixmap Pass a TQPixmap to setPixmap(). A movie Pass a TQMovie to setMovie(). A number Pass an \fIint\fR or a \fIdouble\fR to setNum(), which converts the number to plain text. Nothing .TE @@ -147,11 +147,11 @@ l - l. Content Setting Plain text Pass a TQString to setText(). Rich text Pass a .PP When the content is changed using any of these functions, any previous content is cleared. .PP -The look of a QLabel can be tuned in several ways. All the settings of QFrame are available for specifying a widget frame. The positioning of the content within the QLabel widget area can be tuned with setAlignment() and setIndent(). For example, this code sets up a sunken panel with a two-line text in the bottom right corner (both lines being flush with the right side of the label): +The look of a TQLabel can be tuned in several ways. All the settings of QFrame are available for specifying a widget frame. The positioning of the content within the TQLabel widget area can be tuned with setAlignment() and setIndent(). For example, this code sets up a sunken panel with a two-line text in the bottom right corner (both lines being flush with the right side of the label): .PP .nf .br - QLabel *label = new QLabel( this ); + TQLabel *label = new TQLabel( this ); .br label->setFrameStyle( QFrame::Panel | QFrame::Sunken ); .br @@ -161,13 +161,13 @@ The look of a QLabel can be tuned in several ways. All the settings of QFrame ar .br .fi .PP -A QLabel is often used as a label for an interactive widget. For this use QLabel provides a useful mechanism for adding an accelerator key (see QAccel) that will set the keyboard focus to the other widget (called the QLabel's "buddy"). For example: +A TQLabel is often used as a label for an interactive widget. For this use TQLabel provides a useful mechanism for adding an accelerator key (see QAccel) that will set the keyboard focus to the other widget (called the TQLabel's "buddy"). For example: .PP .nf .br QLineEdit* phoneEdit = new QLineEdit( this, "phoneEdit" ); .br - QLabel* phoneLabel = new QLabel( phoneEdit, "&Phone:", this, "phoneLabel" ); + TQLabel* phoneLabel = new TQLabel( phoneEdit, "&Phone:", this, "phoneLabel" ); .br .fi .PP @@ -182,19 +182,19 @@ In this example, keyboard focus is transferred to the label's buddy (the QLineEd .PP See also QLineEdit, TQTextEdit, TQPixmap, TQMovie, GUI Design Handbook: Label, Basic Widgets, and Text Related Classes. .SH MEMBER FUNCTION DOCUMENTATION -.SH "QLabel::QLabel ( TQWidget * parent, const char * name = 0, WFlags f = 0 )" +.SH "TQLabel::TQLabel ( TQWidget * parent, const char * name = 0, WFlags f = 0 )" Constructs an empty label. .PP The \fIparent\fR, \fIname\fR and widget flag \fIf\fR, arguments are passed to the QFrame constructor. .PP See also alignment, setFrameStyle(), and indent. -.SH "QLabel::QLabel ( const TQString & text, TQWidget * parent, const char * name = 0, WFlags f = 0 )" +.SH "TQLabel::TQLabel ( const TQString & text, TQWidget * parent, const char * name = 0, WFlags f = 0 )" Constructs a label that displays the text, \fItext\fR. .PP The \fIparent\fR, \fIname\fR and widget flag \fIf\fR, arguments are passed to the QFrame constructor. .PP See also text, alignment, setFrameStyle(), and indent. -.SH "QLabel::QLabel ( TQWidget * buddy, const TQString & text, TQWidget * parent, const char * name = 0, WFlags f = 0 )" +.SH "TQLabel::TQLabel ( TQWidget * buddy, const TQString & text, TQWidget * parent, const char * name = 0, WFlags f = 0 )" Constructs a label that displays the text \fItext\fR. The label has a buddy widget, \fIbuddy\fR. .PP If the \fItext\fR contains an underlined letter (a letter preceded by an ampersand, &), and the text is in plain text format, when the user presses Alt+ the underlined letter, focus is passed to the buddy widget. @@ -202,11 +202,11 @@ If the \fItext\fR contains an underlined letter (a letter preceded by an ampersa The \fIparent\fR, \fIname\fR and widget flag, \fIf\fR, arguments are passed to the QFrame constructor. .PP See also text, setBuddy(), alignment, setFrameStyle(), and indent. -.SH "QLabel::~QLabel ()" +.SH "TQLabel::~TQLabel ()" Destroys the label. -.SH "int QLabel::alignment () const" +.SH "int TQLabel::alignment () const" Returns the alignment of the label's contents. See the "alignment" property for details. -.SH "bool QLabel::autoResize () const" +.SH "bool TQLabel::autoResize () const" \fBThis function is obsolete.\fR It is provided to keep old source working. We strongly advise against using it in new code. .PP Returns TRUE if auto-resizing is enabled, or FALSE if auto-resizing is disabled. @@ -214,46 +214,46 @@ Returns TRUE if auto-resizing is enabled, or FALSE if auto-resizing is disabled. Auto-resizing is disabled by default. .PP See also setAutoResize(). -.SH "TQWidget * QLabel::buddy () const" +.SH "TQWidget * TQLabel::buddy () const" Returns this label's buddy, or 0 if no buddy is currently set. .PP See also setBuddy(). -.SH "void QLabel::clear ()\fC [slot]\fR" +.SH "void TQLabel::clear ()\fC [slot]\fR" Clears any label contents. Equivalent to setText( "" ). -.SH "void QLabel::drawContents ( TQPainter * p )\fC [virtual protected]\fR" +.SH "void TQLabel::drawContents ( TQPainter * p )\fC [virtual protected]\fR" Draws the label contents using the painter \fIp\fR. .PP Reimplemented from QFrame. -.SH "bool QLabel::hasScaledContents () const" +.SH "bool TQLabel::hasScaledContents () const" Returns TRUE if the label will scale its contents to fill all available space; otherwise returns FALSE. See the "scaledContents" property for details. -.SH "int QLabel::indent () const" +.SH "int TQLabel::indent () const" Returns the label's text indent in pixels. See the "indent" property for details. -.SH "TQMovie * QLabel::movie () const" +.SH "TQMovie * TQLabel::movie () const" Returns a pointer to the label's movie, or 0 if no movie has been set. .PP See also setMovie(). -.SH "TQPicture * QLabel::picture () const" +.SH "TQPicture * TQLabel::picture () const" Returns the label's picture or 0 if the label doesn't have a picture. -.SH "TQPixmap * QLabel::pixmap () const" +.SH "TQPixmap * TQLabel::pixmap () const" Returns the label's pixmap. See the "pixmap" property for details. -.SH "void QLabel::setAlignment ( int )\fC [virtual]\fR" +.SH "void TQLabel::setAlignment ( int )\fC [virtual]\fR" Sets the alignment of the label's contents. See the "alignment" property for details. -.SH "void QLabel::setAutoResize ( bool enable )\fC [virtual]\fR" +.SH "void TQLabel::setAutoResize ( bool enable )\fC [virtual]\fR" \fBThis function is obsolete.\fR It is provided to keep old source working. We strongly advise against using it in new code. .PP Enables auto-resizing if \fIenable\fR is TRUE, or disables it if \fIenable\fR is FALSE. .PP -When auto-resizing is enabled the label will resize itself to fit the contents whenever the contents change. The top-left corner is not moved. This is useful for QLabel widgets that are not managed by a QLayout (e.g., top-level widgets). +When auto-resizing is enabled the label will resize itself to fit the contents whenever the contents change. The top-left corner is not moved. This is useful for TQLabel widgets that are not managed by a QLayout (e.g., top-level widgets). .PP Auto-resizing is disabled by default. .PP See also autoResize(), adjustSize(), and sizeHint. -.SH "void QLabel::setBuddy ( TQWidget * buddy )\fC [virtual]\fR" +.SH "void TQLabel::setBuddy ( TQWidget * buddy )\fC [virtual]\fR" Sets this label's buddy to \fIbuddy\fR. .PP When the user presses the accelerator key indicated by this label, the keyboard focus is transferred to the label's buddy widget. .PP -The buddy mechanism is only available for QLabels that contain plain text in which one letter is prefixed with an ampersand, &. This letter is set as the accelerator key. The letter is displayed underlined, and the '&' is not displayed (i.e. the ShowPrefix alignment flag is turned on; see setAlignment()). +The buddy mechanism is only available for TQLabels that contain plain text in which one letter is prefixed with an ampersand, &. This letter is set as the accelerator key. The letter is displayed underlined, and the '&' is not displayed (i.e. the ShowPrefix alignment flag is turned on; see setAlignment()). .PP In a dialog, you might create two data entry widgets and a label for each, and set up the geometry layout so each label is just to the left of its data entry widget (its "buddy"), for example: .PP @@ -261,13 +261,13 @@ In a dialog, you might create two data entry widgets and a label for each, and s .br QLineEdit *nameEd = new QLineEdit( this ); .br - QLabel *nameLb = new QLabel( "&Name:", this ); + TQLabel *nameLb = new TQLabel( "&Name:", this ); .br nameLb->setBuddy( nameEd ); .br QLineEdit *phoneEd = new QLineEdit( this ); .br - QLabel *phoneLb = new QLabel( "&Phone:", this ); + TQLabel *phoneLb = new TQLabel( "&Phone:", this ); .br phoneLb->setBuddy( phoneEd ); .br @@ -283,15 +283,15 @@ See also buddy(), text, QAccel, and alignment. .PP Examples: .)l addressbook/centralwidget.cpp, chart/optionsform.cpp, and regexptester/regexptester.cpp. -.SH "void QLabel::setFont ( const TQFont & f )\fC [virtual]\fR" -Sets the font used on the QLabel to font \fIf\fR. +.SH "void TQLabel::setFont ( const TQFont & f )\fC [virtual]\fR" +Sets the font used on the TQLabel to font \fIf\fR. .PP Example: menu/menu.cpp. .PP Reimplemented from TQWidget. -.SH "void QLabel::setIndent ( int )" +.SH "void TQLabel::setIndent ( int )" Sets the label's text indent in pixels. See the "indent" property for details. -.SH "void QLabel::setMovie ( const TQMovie & movie )\fC [virtual slot]\fR" +.SH "void TQLabel::setMovie ( const TQMovie & movie )\fC [virtual slot]\fR" Sets the label contents to \fImovie\fR. Any previous content is cleared. .PP The buddy accelerator, if any, is disabled. @@ -299,7 +299,7 @@ The buddy accelerator, if any, is disabled. The label resizes itself if auto-resizing is enabled. .PP See also movie() and setBuddy(). -.SH "void QLabel::setNum ( int num )\fC [virtual slot]\fR" +.SH "void TQLabel::setNum ( int num )\fC [virtual slot]\fR" Sets the label contents to plain text containing the textual representation of integer \fInum\fR. Any previous content is cleared. Does nothing if the integer's string representation is the same as the current contents of the label. .PP The buddy accelerator, if any, is disabled. @@ -307,7 +307,7 @@ The buddy accelerator, if any, is disabled. The label resizes itself if auto-resizing is enabled. .PP See also text, TQString::setNum(), and setBuddy(). -.SH "void QLabel::setNum ( double num )\fC [virtual slot]\fR" +.SH "void TQLabel::setNum ( double num )\fC [virtual slot]\fR" This is an overloaded member function, provided for convenience. It behaves essentially like the above function. .PP Sets the label contents to plain text containing the textual representation of double \fInum\fR. Any previous content is cleared. Does nothing if the double's string representation is the same as the current contents of the label. @@ -317,29 +317,29 @@ The buddy accelerator, if any, is disabled. The label resizes itself if auto-resizing is enabled. .PP See also text, TQString::setNum(), and setBuddy(). -.SH "void QLabel::setPicture ( const TQPicture & picture )\fC [virtual slot]\fR" +.SH "void TQLabel::setPicture ( const TQPicture & picture )\fC [virtual slot]\fR" Sets the label contents to \fIpicture\fR. Any previous content is cleared. .PP The buddy accelerator, if any, is disabled. .PP See also picture() and setBuddy(). -.SH "void QLabel::setPixmap ( const TQPixmap & )\fC [virtual slot]\fR" +.SH "void TQLabel::setPixmap ( const TQPixmap & )\fC [virtual slot]\fR" Sets the label's pixmap. See the "pixmap" property for details. -.SH "void QLabel::setScaledContents ( bool )" +.SH "void TQLabel::setScaledContents ( bool )" Sets whether the label will scale its contents to fill all available space. See the "scaledContents" property for details. -.SH "void QLabel::setText ( const TQString & )\fC [virtual slot]\fR" +.SH "void TQLabel::setText ( const TQString & )\fC [virtual slot]\fR" Sets the label's text. See the "text" property for details. -.SH "void QLabel::setTextFormat ( TextFormat )" +.SH "void TQLabel::setTextFormat ( TextFormat )" Sets the label's text format. See the "textFormat" property for details. -.SH "TQString QLabel::text () const" +.SH "TQString TQLabel::text () const" Returns the label's text. See the "text" property for details. -.SH "TextFormat QLabel::textFormat () const" +.SH "TextFormat TQLabel::textFormat () const" Returns the label's text format. See the "textFormat" property for details. .SS "Property Documentation" .SH "Alignment alignment" This property holds the alignment of the label's contents. .PP -The alignment is a bitwise OR of TQt::AlignmentFlags and TQt::TextFlags values. The ExpandTabs, SingleLine and ShowPrefix flags apply only if the label contains plain text; otherwise they are ignored. The DontClip flag is always ignored. WordBreak applies to both rich text and plain text labels. The BreakAnywhere flag is not supported in QLabel. +The alignment is a bitwise OR of TQt::AlignmentFlags and TQt::TextFlags values. The ExpandTabs, SingleLine and ShowPrefix flags apply only if the label contains plain text; otherwise they are ignored. The DontClip flag is always ignored. WordBreak applies to both rich text and plain text labels. The BreakAnywhere flag is not supported in TQLabel. .PP If the label has a buddy, the ShowPrefix flag is forced to TRUE. .PP @@ -369,7 +369,7 @@ This property holds the label's pixmap. .PP If no pixmap has been set this will return an invalid pixmap. .PP -Setting the pixmap clears any previous content, and resizes the label if QLabel::autoResize() is TRUE. The buddy accelerator, if any, is disabled. +Setting the pixmap clears any previous content, and resizes the label if TQLabel::autoResize() is TRUE. The buddy accelerator, if any, is disabled. .PP Set this property's value with setPixmap() and get this property's value with pixmap(). .SH "bool scaledContents" @@ -387,13 +387,13 @@ This property holds the label's text. .PP If no text has been set this will return an empty string. Setting the text clears any previous content, unless they are the same. .PP -The text will be interpreted either as a plain text or as a rich text, depending on the text format setting; see setTextFormat(). The default setting is AutoText, i.e. QLabel will try to auto-detect the format of the text set. +The text will be interpreted either as a plain text or as a rich text, depending on the text format setting; see setTextFormat(). The default setting is AutoText, i.e. TQLabel will try to auto-detect the format of the text set. .PP If the text is interpreted as a plain text and a buddy has been set, the buddy accelerator key is updated from the new text. .PP The label resizes itself if auto-resizing is enabled. .PP -Note that Qlabel is well-suited to display small rich text documents, i.e. those small documents that get their document specific settings (font, text color, link color) from the label's palette and font properties. For large documents, use TQTextEdit in read-only mode instead. TQTextEdit will flicker less on resize and can also provide a scrollbar when necessary. +Note that TQLabel is well-suited to display small rich text documents, i.e. those small documents that get their document specific settings (font, text color, link color) from the label's palette and font properties. For large documents, use TQTextEdit in read-only mode instead. TQTextEdit will flicker less on resize and can also provide a scrollbar when necessary. .PP See also textFormat, setBuddy(), and alignment. .PP @@ -410,7 +410,7 @@ See also text. Set this property's value with setTextFormat() and get this property's value with textFormat(). .SH "SEE ALSO" -.BR http://doc.trolltech.com/ntqlabel.html +.BR http://doc.trolltech.com/tqlabel.html .BR http://www.trolltech.com/faq/tech.html .SH COPYRIGHT Copyright 1992-2007 Trolltech ASA, http://www.trolltech.com. See the diff --git a/doc/man/man3/tqlcdnumber.3qt b/doc/man/man3/tqlcdnumber.3qt index b7213c2fa..e9b215ec1 100644 --- a/doc/man/man3/tqlcdnumber.3qt +++ b/doc/man/man3/tqlcdnumber.3qt @@ -146,7 +146,7 @@ Incidentally, QLCDNumber is the very oldest part of Qt, tracing back to a BASIC .ce 1 .B "[Image Omitted]" .PP -See also QLabel, QFrame, and Basic Widgets. +See also TQLabel, QFrame, and Basic Widgets. .SS "Member Type Documentation" .SH "QLCDNumber::Mode" This type determines how numbers are shown. diff --git a/doc/man/man3/tqlineedit.3qt b/doc/man/man3/tqlineedit.3qt index 1b1a18ab0..a0fd587a4 100644 --- a/doc/man/man3/tqlineedit.3qt +++ b/doc/man/man3/tqlineedit.3qt @@ -310,7 +310,7 @@ Any other key sequence that represents a valid character, will cause the charact .ce 1 .B "[Image Omitted]" .PP -See also TQTextEdit, QLabel, QComboBox, GUI Design Handbook: Field, Entry, and Basic Widgets. +See also TQTextEdit, TQLabel, QComboBox, GUI Design Handbook: Field, Entry, and Basic Widgets. .SS "Member Type Documentation" .SH "QLineEdit::EchoMode" This enum type describes how a line edit should display its contents. diff --git a/doc/man/man3/tqlocale.3qt b/doc/man/man3/tqlocale.3qt index b7a0ac4aa..23232bfda 100644 --- a/doc/man/man3/tqlocale.3qt +++ b/doc/man/man3/tqlocale.3qt @@ -1,5 +1,5 @@ '\" t -.TH QLocale 3qt "2 February 2007" "Trolltech AS" \" -*- nroff -*- +.TH TQLocale 3qt "2 February 2007" "Trolltech AS" \" -*- nroff -*- .\" Copyright 1992-2007 Trolltech ASA. All rights reserved. See the .\" license file included in the distribution for a complete license .\" statement. @@ -7,11 +7,11 @@ .ad l .nh .SH NAME -QLocale \- Converts between numbers and their string representations in various languages +TQLocale \- Converts between numbers and their string representations in various languages .SH SYNOPSIS Almost all the functions in this class are reentrant when TQt is built with thread support. The exception is \fBsetDefault\fR().

    .PP -\fC#include \fR +\fC#include \fR .PP .SS "Public Members" .in +1c @@ -22,19 +22,19 @@ Almost all the functions in this class are reentrant when TQt is built with thre .BI "enum \fBCountry\fR { AnyCountry = 0, Afghanistan = 1, Albania = 2, Algeria = 3, AmericanSamoa = 4, Andorra = 5, Angola = 6, Anguilla = 7, Antarctica = 8, AntiguaAndBarbuda = 9, Argentina = 10, Armenia = 11, Aruba = 12, Australia = 13, Austria = 14, Azerbaijan = 15, Bahamas = 16, Bahrain = 17, Bangladesh = 18, Barbados = 19, Belarus = 20, Belgium = 21, Belize = 22, Benin = 23, Bermuda = 24, Bhutan = 25, Bolivia = 26, BosniaAndHerzegowina = 27, Botswana = 28, BouvetIsland = 29, Brazil = 30, BritishIndianOceanTerritory = 31, BruneiDarussalam = 32, Bulgaria = 33, BurkinaFaso = 34, Burundi = 35, Cambodia = 36, Cameroon = 37, Canada = 38, CapeVerde = 39, CaymanIslands = 40, CentralAfricanRepublic = 41, Chad = 42, Chile = 43, China = 44, ChristmasIsland = 45, CocosIslands = 46, Colombia = 47, Comoros = 48, DemocraticRepublicOfCongo = 49, PeoplesRepublicOfCongo = 50, CookIslands = 51, CostaRica = 52, IvoryCoast = 53, Croatia = 54, Cuba = 55, Cyprus = 56, CzechRepublic = 57, Denmark = 58, Djibouti = 59, Dominica = 60, DominicanRepublic = 61, EastTimor = 62, Ecuador = 63, Egypt = 64, ElSalvador = 65, EquatorialGuinea = 66, Eritrea = 67, Estonia = 68, Ethiopia = 69, FalklandIslands = 70, FaroeIslands = 71, FijiCountry = 72, Finland = 73, France = 74, MetropolitanFrance = 75, FrenchGuiana = 76, FrenchPolynesia = 77, FrenchSouthernTerritories = 78, Gabon = 79, Gambia = 80, Georgia = 81, Germany = 82, Ghana = 83, Gibraltar = 84, Greece = 85, Greenland = 86, Grenada = 87, Guadeloupe = 88, Guam = 89, Guatemala = 90, Guinea = 91, GuineaBissau = 92, Guyana = 93, Haiti = 94, HeardAndMcDonaldIslands = 95, Honduras = 96, HongKong = 97, Hungary = 98, Iceland = 99, India = 100, Indonesia = 101, Iran = 102, Iraq = 103, Ireland = 104, Israel = 105, Italy = 106, Jamaica = 107, Japan = 108, Jordan = 109, Kazakhstan = 110, Kenya = 111, Kiribati = 112, DemocraticRepublicOfKorea = 113, RepublicOfKorea = 114, Kuwait = 115, Kyrgyzstan = 116, Lao = 117, Latvia = 118, Lebanon = 119, Lesotho = 120, Liberia = 121, LibyanArabJamahiriya = 122, Liechtenstein = 123, Lithuania = 124, Luxembourg = 125, Macau = 126, Macedonia = 127, Madagascar = 128, Malawi = 129, Malaysia = 130, Maldives = 131, Mali = 132, Malta = 133, MarshallIslands = 134, Martinique = 135, Mauritania = 136, Mauritius = 137, Mayotte = 138, Mexico = 139, Micronesia = 140, Moldova = 141, Monaco = 142, Mongolia = 143, Montserrat = 144, Morocco = 145, Mozambique = 146, Myanmar = 147, Namibia = 148, NauruCountry = 149, Nepal = 150, Netherlands = 151, NetherlandsAntilles = 152, NewCaledonia = 153, NewZealand = 154, Nicaragua = 155, Niger = 156, Nigeria = 157, Niue = 158, NorfolkIsland = 159, NorthernMarianaIslands = 160, Norway = 161, Oman = 162, Pakistan = 163, Palau = 164, PalestinianTerritory = 165, Panama = 166, PapuaNewGuinea = 167, Paraguay = 168, Peru = 169, Philippines = 170, Pitcairn = 171, Poland = 172, Portugal = 173, PuertoRico = 174, Qatar = 175, Reunion = 176, Romania = 177, RussianFederation = 178, Rwanda = 179, SaintKittsAndNevis = 180, StLucia = 181, StVincentAndTheGrenadines = 182, Samoa = 183, SanMarino = 184, SaoTomeAndPrincipe = 185, SaudiArabia = 186, Senegal = 187, Seychelles = 188, SierraLeone = 189, Singapore = 190, Slovakia = 191, Slovenia = 192, SolomonIslands = 193, Somalia = 194, SouthAfrica = 195, SouthGeorgiaAndTheSouthSandwichIslands = 196, Spain = 197, SriLanka = 198, StHelena = 199, StPierreAndMiquelon = 200, Sudan = 201, Suriname = 202, SvalbardAndJanMayenIslands = 203, Swaziland = 204, Sweden = 205, Switzerland = 206, SyrianArabRepublic = 207, Taiwan = 208, Tajikistan = 209, Tanzania = 210, Thailand = 211, Togo = 212, Tokelau = 213, TongaCountry = 214, TrinidadAndTobago = 215, Tunisia = 216, Turkey = 217, Turkmenistan = 218, TurksAndCaicosIslands = 219, Tuvalu = 220, Uganda = 221, Ukraine = 222, UnitedArabEmirates = 223, UnitedKingdom = 224, UnitedStates = 225, UnitedStatesMinorOutlyingIslands = 226, Uruguay = 227, Uzbekistan = 228, Vanuatu = 229, VaticanCityState = 230, Venezuela = 231, VietNam = 232, BritishVirginIslands = 233, USVirginIslands = 234, WallisAndFutunaIslands = 235, WesternSahara = 236, Yemen = 237, Yugoslavia = 238, Zambia = 239, Zimbabwe = 240, LastCountry = Zimbabwe }" .br .ti -1c -.BI "\fBQLocale\fR ()" +.BI "\fBTQLocale\fR ()" .br .ti -1c -.BI "\fBQLocale\fR ( const TQString & name )" +.BI "\fBTQLocale\fR ( const TQString & name )" .br .ti -1c -.BI "\fBQLocale\fR ( Language language, Country country = AnyCountry )" +.BI "\fBTQLocale\fR ( Language language, Country country = AnyCountry )" .br .ti -1c -.BI "\fBQLocale\fR ( const QLocale & other )" +.BI "\fBTQLocale\fR ( const TQLocale & other )" .br .ti -1c -.BI "QLocale & \fBoperator=\fR ( const QLocale & other )" +.BI "TQLocale & \fBoperator=\fR ( const TQLocale & other )" .br .ti -1c .BI "Language \fBlanguage\fR () const" @@ -115,23 +115,23 @@ Almost all the functions in this class are reentrant when TQt is built with thre .BI "TQString \fBcountryToString\fR ( Country country )" .br .ti -1c -.BI "void \fBsetDefault\fR ( const QLocale & locale )" +.BI "void \fBsetDefault\fR ( const TQLocale & locale )" .br .ti -1c -.BI "QLocale \fBc\fR ()" +.BI "TQLocale \fBc\fR ()" .br .ti -1c -.BI "QLocale \fBsystem\fR ()" +.BI "TQLocale \fBsystem\fR ()" .br .in -1c .SH DESCRIPTION -The QLocale class converts between numbers and their string representations in various languages. +The TQLocale class converts between numbers and their string representations in various languages. .PP It is initialized with a country/language pair in its constructor and offers number-to-string and string-to-number conversion functions simmilar to those in TQString. .PP .nf .br - QLocale egyptian(QLocale::Arabic, QLocale::Egypt); + TQLocale egyptian(TQLocale::Arabic, TQLocale::Egypt); .br TQString s1 = egyptian.toString(1.571429E+07, 'e'); .br @@ -144,9 +144,9 @@ It is initialized with a country/language pair in its constructor and offers num .br .fi .PP -QLocale supports the concept of a default locale, which is determined from the system's locale settings at application startup. The default locale can be changed by calling the static member setDefault(). The default locale has the following effects: +TQLocale supports the concept of a default locale, which is determined from the system's locale settings at application startup. The default locale can be changed by calling the static member setDefault(). The default locale has the following effects: .TP -If a QLocale object is constructed with the default constructor, it will use the default locale's settings. +If a TQLocale object is constructed with the default constructor, it will use the default locale's settings. .TP TQString::toDouble() interprets the string according to the default locale. If this fails, it falls back on the "C" locale. .TP @@ -154,9 +154,9 @@ TQString::arg() uses the default locale to format a number when its position spe .PP .nf .br - QLocale::setDefault(QLocale(QLocale::Hebrew, QLocale::Israel)); + TQLocale::setDefault(TQLocale(TQLocale::Hebrew, TQLocale::Israel)); .br - QLocale hebrew; // Constructs a default QLocale + TQLocale hebrew; // Constructs a default TQLocale .br TQString s1 = hebrew.toString(15714.3, 'e'); .br @@ -166,21 +166,21 @@ TQString::arg() uses the default locale to format a number when its position spe double d; .br .br - QLocale::setDefault(QLocale::C); + TQLocale::setDefault(TQLocale::C); .br d = TQString( "1234,56" ).toDouble(&ok); // ok == false .br d = TQString( "1234.56" ).toDouble(&ok); // ok == true, d == 1234.56 .br .br - QLocale::setDefault(QLocale::German); + TQLocale::setDefault(TQLocale::German); .br d = TQString( "1234,56" ).toDouble(&ok); // ok == true, d == 1234.56 .br d = TQString( "1234.56" ).toDouble(&ok); // ok == true, d == 1234.56 .br .br - QLocale::setDefault(QLocale(QLocale::English, QLocale::UnitedStates)); + TQLocale::setDefault(TQLocale(TQLocale::English, TQLocale::UnitedStates)); .br str = TQString( "%1 %L2 %L3" ) .br @@ -200,25 +200,25 @@ If the language/country pair is found in the database, it is used. .TP If the language is found but the country is not, or if the country is AnyCountry, the language is used with the most appropriate available country (for example, Germany for German), .TP -If neither the language nor the country are found, QLocale defaults to the default locale (see setDefault()). +If neither the language nor the country are found, TQLocale defaults to the default locale (see setDefault()). .PP The "C" locale is identical to English/UnitedStates. .PP Use language() and country() to determine the actual language and country values used. .PP -An alternative method for constructing a QLocale object is by specifying the locale name. +An alternative method for constructing a TQLocale object is by specifying the locale name. .PP .nf .br - QLocale korean("ko"); + TQLocale korean("ko"); .br - QLocale swiss("de_CH"); + TQLocale swiss("de_CH"); .br .fi .PP This constructor converts the locale name to a language/country pair; it does not use the system locale database. .PP -All the methods in QLocale, with the exception of setDefault(), are reentrant. +All the methods in TQLocale, with the exception of setDefault(), are reentrant. .PP See also TQString::toDouble(), TQString::arg(), and Text Related Classes. .PP @@ -232,779 +232,779 @@ THIS SOFTWARE IS BEING PROVIDED "AS IS", WITHOUT ANY EXPRESS OR IMPLIED WARRANTY .PP This product includes software developed by the University of California, Berkeley and its contributors. .SS "Member Type Documentation" -.SH "QLocale::Country" +.SH "TQLocale::Country" This enumerated type is used to specify a country. .TP -\fCQLocale::AnyCountry\fR +\fCTQLocale::AnyCountry\fR .TP -\fCQLocale::Afghanistan\fR +\fCTQLocale::Afghanistan\fR .TP -\fCQLocale::Albania\fR +\fCTQLocale::Albania\fR .TP -\fCQLocale::Algeria\fR +\fCTQLocale::Algeria\fR .TP -\fCQLocale::AmericanSamoa\fR +\fCTQLocale::AmericanSamoa\fR .TP -\fCQLocale::Andorra\fR +\fCTQLocale::Andorra\fR .TP -\fCQLocale::Angola\fR +\fCTQLocale::Angola\fR .TP -\fCQLocale::Anguilla\fR +\fCTQLocale::Anguilla\fR .TP -\fCQLocale::Antarctica\fR +\fCTQLocale::Antarctica\fR .TP -\fCQLocale::AntiguaAndBarbuda\fR +\fCTQLocale::AntiguaAndBarbuda\fR .TP -\fCQLocale::Argentina\fR +\fCTQLocale::Argentina\fR .TP -\fCQLocale::Armenia\fR +\fCTQLocale::Armenia\fR .TP -\fCQLocale::Aruba\fR +\fCTQLocale::Aruba\fR .TP -\fCQLocale::Australia\fR +\fCTQLocale::Australia\fR .TP -\fCQLocale::Austria\fR +\fCTQLocale::Austria\fR .TP -\fCQLocale::Azerbaijan\fR +\fCTQLocale::Azerbaijan\fR .TP -\fCQLocale::Bahamas\fR +\fCTQLocale::Bahamas\fR .TP -\fCQLocale::Bahrain\fR +\fCTQLocale::Bahrain\fR .TP -\fCQLocale::Bangladesh\fR +\fCTQLocale::Bangladesh\fR .TP -\fCQLocale::Barbados\fR +\fCTQLocale::Barbados\fR .TP -\fCQLocale::Belarus\fR +\fCTQLocale::Belarus\fR .TP -\fCQLocale::Belgium\fR +\fCTQLocale::Belgium\fR .TP -\fCQLocale::Belize\fR +\fCTQLocale::Belize\fR .TP -\fCQLocale::Benin\fR +\fCTQLocale::Benin\fR .TP -\fCQLocale::Bermuda\fR +\fCTQLocale::Bermuda\fR .TP -\fCQLocale::Bhutan\fR +\fCTQLocale::Bhutan\fR .TP -\fCQLocale::Bolivia\fR +\fCTQLocale::Bolivia\fR .TP -\fCQLocale::BosniaAndHerzegowina\fR +\fCTQLocale::BosniaAndHerzegowina\fR .TP -\fCQLocale::Botswana\fR +\fCTQLocale::Botswana\fR .TP -\fCQLocale::BouvetIsland\fR +\fCTQLocale::BouvetIsland\fR .TP -\fCQLocale::Brazil\fR +\fCTQLocale::Brazil\fR .TP -\fCQLocale::BritishIndianOceanTerritory\fR +\fCTQLocale::BritishIndianOceanTerritory\fR .TP -\fCQLocale::BruneiDarussalam\fR +\fCTQLocale::BruneiDarussalam\fR .TP -\fCQLocale::Bulgaria\fR +\fCTQLocale::Bulgaria\fR .TP -\fCQLocale::BurkinaFaso\fR +\fCTQLocale::BurkinaFaso\fR .TP -\fCQLocale::Burundi\fR +\fCTQLocale::Burundi\fR .TP -\fCQLocale::Cambodia\fR +\fCTQLocale::Cambodia\fR .TP -\fCQLocale::Cameroon\fR +\fCTQLocale::Cameroon\fR .TP -\fCQLocale::Canada\fR +\fCTQLocale::Canada\fR .TP -\fCQLocale::CapeVerde\fR +\fCTQLocale::CapeVerde\fR .TP -\fCQLocale::CaymanIslands\fR +\fCTQLocale::CaymanIslands\fR .TP -\fCQLocale::CentralAfricanRepublic\fR +\fCTQLocale::CentralAfricanRepublic\fR .TP -\fCQLocale::Chad\fR +\fCTQLocale::Chad\fR .TP -\fCQLocale::Chile\fR +\fCTQLocale::Chile\fR .TP -\fCQLocale::China\fR +\fCTQLocale::China\fR .TP -\fCQLocale::ChristmasIsland\fR +\fCTQLocale::ChristmasIsland\fR .TP -\fCQLocale::CocosIslands\fR +\fCTQLocale::CocosIslands\fR .TP -\fCQLocale::Colombia\fR +\fCTQLocale::Colombia\fR .TP -\fCQLocale::Comoros\fR +\fCTQLocale::Comoros\fR .TP -\fCQLocale::DemocraticRepublicOfCongo\fR +\fCTQLocale::DemocraticRepublicOfCongo\fR .TP -\fCQLocale::PeoplesRepublicOfCongo\fR +\fCTQLocale::PeoplesRepublicOfCongo\fR .TP -\fCQLocale::CookIslands\fR +\fCTQLocale::CookIslands\fR .TP -\fCQLocale::CostaRica\fR +\fCTQLocale::CostaRica\fR .TP -\fCQLocale::IvoryCoast\fR +\fCTQLocale::IvoryCoast\fR .TP -\fCQLocale::Croatia\fR +\fCTQLocale::Croatia\fR .TP -\fCQLocale::Cuba\fR +\fCTQLocale::Cuba\fR .TP -\fCQLocale::Cyprus\fR +\fCTQLocale::Cyprus\fR .TP -\fCQLocale::CzechRepublic\fR +\fCTQLocale::CzechRepublic\fR .TP -\fCQLocale::Denmark\fR +\fCTQLocale::Denmark\fR .TP -\fCQLocale::Djibouti\fR +\fCTQLocale::Djibouti\fR .TP -\fCQLocale::Dominica\fR +\fCTQLocale::Dominica\fR .TP -\fCQLocale::DominicanRepublic\fR +\fCTQLocale::DominicanRepublic\fR .TP -\fCQLocale::EastTimor\fR +\fCTQLocale::EastTimor\fR .TP -\fCQLocale::Ecuador\fR +\fCTQLocale::Ecuador\fR .TP -\fCQLocale::Egypt\fR +\fCTQLocale::Egypt\fR .TP -\fCQLocale::ElSalvador\fR +\fCTQLocale::ElSalvador\fR .TP -\fCQLocale::EquatorialGuinea\fR +\fCTQLocale::EquatorialGuinea\fR .TP -\fCQLocale::Eritrea\fR +\fCTQLocale::Eritrea\fR .TP -\fCQLocale::Estonia\fR +\fCTQLocale::Estonia\fR .TP -\fCQLocale::Ethiopia\fR +\fCTQLocale::Ethiopia\fR .TP -\fCQLocale::FalklandIslands\fR +\fCTQLocale::FalklandIslands\fR .TP -\fCQLocale::FaroeIslands\fR +\fCTQLocale::FaroeIslands\fR .TP -\fCQLocale::FijiCountry\fR +\fCTQLocale::FijiCountry\fR .TP -\fCQLocale::Finland\fR +\fCTQLocale::Finland\fR .TP -\fCQLocale::France\fR +\fCTQLocale::France\fR .TP -\fCQLocale::MetropolitanFrance\fR +\fCTQLocale::MetropolitanFrance\fR .TP -\fCQLocale::FrenchGuiana\fR +\fCTQLocale::FrenchGuiana\fR .TP -\fCQLocale::FrenchPolynesia\fR +\fCTQLocale::FrenchPolynesia\fR .TP -\fCQLocale::FrenchSouthernTerritories\fR +\fCTQLocale::FrenchSouthernTerritories\fR .TP -\fCQLocale::Gabon\fR +\fCTQLocale::Gabon\fR .TP -\fCQLocale::Gambia\fR +\fCTQLocale::Gambia\fR .TP -\fCQLocale::Georgia\fR +\fCTQLocale::Georgia\fR .TP -\fCQLocale::Germany\fR +\fCTQLocale::Germany\fR .TP -\fCQLocale::Ghana\fR +\fCTQLocale::Ghana\fR .TP -\fCQLocale::Gibraltar\fR +\fCTQLocale::Gibraltar\fR .TP -\fCQLocale::Greece\fR +\fCTQLocale::Greece\fR .TP -\fCQLocale::Greenland\fR +\fCTQLocale::Greenland\fR .TP -\fCQLocale::Grenada\fR +\fCTQLocale::Grenada\fR .TP -\fCQLocale::Guadeloupe\fR +\fCTQLocale::Guadeloupe\fR .TP -\fCQLocale::Guam\fR +\fCTQLocale::Guam\fR .TP -\fCQLocale::Guatemala\fR +\fCTQLocale::Guatemala\fR .TP -\fCQLocale::Guinea\fR +\fCTQLocale::Guinea\fR .TP -\fCQLocale::GuineaBissau\fR +\fCTQLocale::GuineaBissau\fR .TP -\fCQLocale::Guyana\fR +\fCTQLocale::Guyana\fR .TP -\fCQLocale::Haiti\fR +\fCTQLocale::Haiti\fR .TP -\fCQLocale::HeardAndMcDonaldIslands\fR +\fCTQLocale::HeardAndMcDonaldIslands\fR .TP -\fCQLocale::Honduras\fR +\fCTQLocale::Honduras\fR .TP -\fCQLocale::HongKong\fR +\fCTQLocale::HongKong\fR .TP -\fCQLocale::Hungary\fR +\fCTQLocale::Hungary\fR .TP -\fCQLocale::Iceland\fR +\fCTQLocale::Iceland\fR .TP -\fCQLocale::India\fR +\fCTQLocale::India\fR .TP -\fCQLocale::Indonesia\fR +\fCTQLocale::Indonesia\fR .TP -\fCQLocale::Iran\fR +\fCTQLocale::Iran\fR .TP -\fCQLocale::Iraq\fR +\fCTQLocale::Iraq\fR .TP -\fCQLocale::Ireland\fR +\fCTQLocale::Ireland\fR .TP -\fCQLocale::Israel\fR +\fCTQLocale::Israel\fR .TP -\fCQLocale::Italy\fR +\fCTQLocale::Italy\fR .TP -\fCQLocale::Jamaica\fR +\fCTQLocale::Jamaica\fR .TP -\fCQLocale::Japan\fR +\fCTQLocale::Japan\fR .TP -\fCQLocale::Jordan\fR +\fCTQLocale::Jordan\fR .TP -\fCQLocale::Kazakhstan\fR +\fCTQLocale::Kazakhstan\fR .TP -\fCQLocale::Kenya\fR +\fCTQLocale::Kenya\fR .TP -\fCQLocale::Kiribati\fR +\fCTQLocale::Kiribati\fR .TP -\fCQLocale::DemocraticRepublicOfKorea\fR +\fCTQLocale::DemocraticRepublicOfKorea\fR .TP -\fCQLocale::RepublicOfKorea\fR +\fCTQLocale::RepublicOfKorea\fR .TP -\fCQLocale::Kuwait\fR +\fCTQLocale::Kuwait\fR .TP -\fCQLocale::Kyrgyzstan\fR +\fCTQLocale::Kyrgyzstan\fR .TP -\fCQLocale::Lao\fR +\fCTQLocale::Lao\fR .TP -\fCQLocale::Latvia\fR +\fCTQLocale::Latvia\fR .TP -\fCQLocale::Lebanon\fR +\fCTQLocale::Lebanon\fR .TP -\fCQLocale::Lesotho\fR +\fCTQLocale::Lesotho\fR .TP -\fCQLocale::Liberia\fR +\fCTQLocale::Liberia\fR .TP -\fCQLocale::LibyanArabJamahiriya\fR +\fCTQLocale::LibyanArabJamahiriya\fR .TP -\fCQLocale::Liechtenstein\fR +\fCTQLocale::Liechtenstein\fR .TP -\fCQLocale::Lithuania\fR +\fCTQLocale::Lithuania\fR .TP -\fCQLocale::Luxembourg\fR +\fCTQLocale::Luxembourg\fR .TP -\fCQLocale::Macau\fR +\fCTQLocale::Macau\fR .TP -\fCQLocale::Macedonia\fR +\fCTQLocale::Macedonia\fR .TP -\fCQLocale::Madagascar\fR +\fCTQLocale::Madagascar\fR .TP -\fCQLocale::Malawi\fR +\fCTQLocale::Malawi\fR .TP -\fCQLocale::Malaysia\fR +\fCTQLocale::Malaysia\fR .TP -\fCQLocale::Maldives\fR +\fCTQLocale::Maldives\fR .TP -\fCQLocale::Mali\fR +\fCTQLocale::Mali\fR .TP -\fCQLocale::Malta\fR +\fCTQLocale::Malta\fR .TP -\fCQLocale::MarshallIslands\fR +\fCTQLocale::MarshallIslands\fR .TP -\fCQLocale::Martinique\fR +\fCTQLocale::Martinique\fR .TP -\fCQLocale::Mauritania\fR +\fCTQLocale::Mauritania\fR .TP -\fCQLocale::Mauritius\fR +\fCTQLocale::Mauritius\fR .TP -\fCQLocale::Mayotte\fR +\fCTQLocale::Mayotte\fR .TP -\fCQLocale::Mexico\fR +\fCTQLocale::Mexico\fR .TP -\fCQLocale::Micronesia\fR +\fCTQLocale::Micronesia\fR .TP -\fCQLocale::Moldova\fR +\fCTQLocale::Moldova\fR .TP -\fCQLocale::Monaco\fR +\fCTQLocale::Monaco\fR .TP -\fCQLocale::Mongolia\fR +\fCTQLocale::Mongolia\fR .TP -\fCQLocale::Montserrat\fR +\fCTQLocale::Montserrat\fR .TP -\fCQLocale::Morocco\fR +\fCTQLocale::Morocco\fR .TP -\fCQLocale::Mozambique\fR +\fCTQLocale::Mozambique\fR .TP -\fCQLocale::Myanmar\fR +\fCTQLocale::Myanmar\fR .TP -\fCQLocale::Namibia\fR +\fCTQLocale::Namibia\fR .TP -\fCQLocale::NauruCountry\fR +\fCTQLocale::NauruCountry\fR .TP -\fCQLocale::Nepal\fR +\fCTQLocale::Nepal\fR .TP -\fCQLocale::Netherlands\fR +\fCTQLocale::Netherlands\fR .TP -\fCQLocale::NetherlandsAntilles\fR +\fCTQLocale::NetherlandsAntilles\fR .TP -\fCQLocale::NewCaledonia\fR +\fCTQLocale::NewCaledonia\fR .TP -\fCQLocale::NewZealand\fR +\fCTQLocale::NewZealand\fR .TP -\fCQLocale::Nicaragua\fR +\fCTQLocale::Nicaragua\fR .TP -\fCQLocale::Niger\fR +\fCTQLocale::Niger\fR .TP -\fCQLocale::Nigeria\fR +\fCTQLocale::Nigeria\fR .TP -\fCQLocale::Niue\fR +\fCTQLocale::Niue\fR .TP -\fCQLocale::NorfolkIsland\fR +\fCTQLocale::NorfolkIsland\fR .TP -\fCQLocale::NorthernMarianaIslands\fR +\fCTQLocale::NorthernMarianaIslands\fR .TP -\fCQLocale::Norway\fR +\fCTQLocale::Norway\fR .TP -\fCQLocale::Oman\fR +\fCTQLocale::Oman\fR .TP -\fCQLocale::Pakistan\fR +\fCTQLocale::Pakistan\fR .TP -\fCQLocale::Palau\fR +\fCTQLocale::Palau\fR .TP -\fCQLocale::PalestinianTerritory\fR +\fCTQLocale::PalestinianTerritory\fR .TP -\fCQLocale::Panama\fR +\fCTQLocale::Panama\fR .TP -\fCQLocale::PapuaNewGuinea\fR +\fCTQLocale::PapuaNewGuinea\fR .TP -\fCQLocale::Paraguay\fR +\fCTQLocale::Paraguay\fR .TP -\fCQLocale::Peru\fR +\fCTQLocale::Peru\fR .TP -\fCQLocale::Philippines\fR +\fCTQLocale::Philippines\fR .TP -\fCQLocale::Pitcairn\fR +\fCTQLocale::Pitcairn\fR .TP -\fCQLocale::Poland\fR +\fCTQLocale::Poland\fR .TP -\fCQLocale::Portugal\fR +\fCTQLocale::Portugal\fR .TP -\fCQLocale::PuertoRico\fR +\fCTQLocale::PuertoRico\fR .TP -\fCQLocale::Qatar\fR +\fCTQLocale::Qatar\fR .TP -\fCQLocale::Reunion\fR +\fCTQLocale::Reunion\fR .TP -\fCQLocale::Romania\fR +\fCTQLocale::Romania\fR .TP -\fCQLocale::RussianFederation\fR +\fCTQLocale::RussianFederation\fR .TP -\fCQLocale::Rwanda\fR +\fCTQLocale::Rwanda\fR .TP -\fCQLocale::SaintKittsAndNevis\fR +\fCTQLocale::SaintKittsAndNevis\fR .TP -\fCQLocale::StLucia\fR +\fCTQLocale::StLucia\fR .TP -\fCQLocale::StVincentAndTheGrenadines\fR +\fCTQLocale::StVincentAndTheGrenadines\fR .TP -\fCQLocale::Samoa\fR +\fCTQLocale::Samoa\fR .TP -\fCQLocale::SanMarino\fR +\fCTQLocale::SanMarino\fR .TP -\fCQLocale::SaoTomeAndPrincipe\fR +\fCTQLocale::SaoTomeAndPrincipe\fR .TP -\fCQLocale::SaudiArabia\fR +\fCTQLocale::SaudiArabia\fR .TP -\fCQLocale::Senegal\fR +\fCTQLocale::Senegal\fR .TP -\fCQLocale::Seychelles\fR +\fCTQLocale::Seychelles\fR .TP -\fCQLocale::SierraLeone\fR +\fCTQLocale::SierraLeone\fR .TP -\fCQLocale::Singapore\fR +\fCTQLocale::Singapore\fR .TP -\fCQLocale::Slovakia\fR +\fCTQLocale::Slovakia\fR .TP -\fCQLocale::Slovenia\fR +\fCTQLocale::Slovenia\fR .TP -\fCQLocale::SolomonIslands\fR +\fCTQLocale::SolomonIslands\fR .TP -\fCQLocale::Somalia\fR +\fCTQLocale::Somalia\fR .TP -\fCQLocale::SouthAfrica\fR +\fCTQLocale::SouthAfrica\fR .TP -\fCQLocale::SouthGeorgiaAndTheSouthSandwichIslands\fR +\fCTQLocale::SouthGeorgiaAndTheSouthSandwichIslands\fR .TP -\fCQLocale::Spain\fR +\fCTQLocale::Spain\fR .TP -\fCQLocale::SriLanka\fR +\fCTQLocale::SriLanka\fR .TP -\fCQLocale::StHelena\fR +\fCTQLocale::StHelena\fR .TP -\fCQLocale::StPierreAndMiquelon\fR +\fCTQLocale::StPierreAndMiquelon\fR .TP -\fCQLocale::Sudan\fR +\fCTQLocale::Sudan\fR .TP -\fCQLocale::Suriname\fR +\fCTQLocale::Suriname\fR .TP -\fCQLocale::SvalbardAndJanMayenIslands\fR +\fCTQLocale::SvalbardAndJanMayenIslands\fR .TP -\fCQLocale::Swaziland\fR +\fCTQLocale::Swaziland\fR .TP -\fCQLocale::Sweden\fR +\fCTQLocale::Sweden\fR .TP -\fCQLocale::Switzerland\fR +\fCTQLocale::Switzerland\fR .TP -\fCQLocale::SyrianArabRepublic\fR +\fCTQLocale::SyrianArabRepublic\fR .TP -\fCQLocale::Taiwan\fR +\fCTQLocale::Taiwan\fR .TP -\fCQLocale::Tajikistan\fR +\fCTQLocale::Tajikistan\fR .TP -\fCQLocale::Tanzania\fR +\fCTQLocale::Tanzania\fR .TP -\fCQLocale::Thailand\fR +\fCTQLocale::Thailand\fR .TP -\fCQLocale::Togo\fR +\fCTQLocale::Togo\fR .TP -\fCQLocale::Tokelau\fR +\fCTQLocale::Tokelau\fR .TP -\fCQLocale::TongaCountry\fR +\fCTQLocale::TongaCountry\fR .TP -\fCQLocale::TrinidadAndTobago\fR +\fCTQLocale::TrinidadAndTobago\fR .TP -\fCQLocale::Tunisia\fR +\fCTQLocale::Tunisia\fR .TP -\fCQLocale::Turkey\fR +\fCTQLocale::Turkey\fR .TP -\fCQLocale::Turkmenistan\fR +\fCTQLocale::Turkmenistan\fR .TP -\fCQLocale::TurksAndCaicosIslands\fR +\fCTQLocale::TurksAndCaicosIslands\fR .TP -\fCQLocale::Tuvalu\fR +\fCTQLocale::Tuvalu\fR .TP -\fCQLocale::Uganda\fR +\fCTQLocale::Uganda\fR .TP -\fCQLocale::Ukraine\fR +\fCTQLocale::Ukraine\fR .TP -\fCQLocale::UnitedArabEmirates\fR +\fCTQLocale::UnitedArabEmirates\fR .TP -\fCQLocale::UnitedKingdom\fR +\fCTQLocale::UnitedKingdom\fR .TP -\fCQLocale::UnitedStates\fR +\fCTQLocale::UnitedStates\fR .TP -\fCQLocale::UnitedStatesMinorOutlyingIslands\fR +\fCTQLocale::UnitedStatesMinorOutlyingIslands\fR .TP -\fCQLocale::Uruguay\fR +\fCTQLocale::Uruguay\fR .TP -\fCQLocale::Uzbekistan\fR +\fCTQLocale::Uzbekistan\fR .TP -\fCQLocale::Vanuatu\fR +\fCTQLocale::Vanuatu\fR .TP -\fCQLocale::VaticanCityState\fR +\fCTQLocale::VaticanCityState\fR .TP -\fCQLocale::Venezuela\fR +\fCTQLocale::Venezuela\fR .TP -\fCQLocale::VietNam\fR +\fCTQLocale::VietNam\fR .TP -\fCQLocale::BritishVirginIslands\fR +\fCTQLocale::BritishVirginIslands\fR .TP -\fCQLocale::USVirginIslands\fR +\fCTQLocale::USVirginIslands\fR .TP -\fCQLocale::WallisAndFutunaIslands\fR +\fCTQLocale::WallisAndFutunaIslands\fR .TP -\fCQLocale::WesternSahara\fR +\fCTQLocale::WesternSahara\fR .TP -\fCQLocale::Yemen\fR +\fCTQLocale::Yemen\fR .TP -\fCQLocale::Yugoslavia\fR +\fCTQLocale::Yugoslavia\fR .TP -\fCQLocale::Zambia\fR +\fCTQLocale::Zambia\fR .TP -\fCQLocale::Zimbabwe\fR -.SH "QLocale::Language" +\fCTQLocale::Zimbabwe\fR +.SH "TQLocale::Language" This enumerated type is used to specify a language. .TP -\fCQLocale::C\fR - Identical to English/UnitedStates +\fCTQLocale::C\fR - Identical to English/UnitedStates .TP -\fCQLocale::Abkhazian\fR +\fCTQLocale::Abkhazian\fR .TP -\fCQLocale::Afan\fR +\fCTQLocale::Afan\fR .TP -\fCQLocale::Afar\fR +\fCTQLocale::Afar\fR .TP -\fCQLocale::Afrikaans\fR +\fCTQLocale::Afrikaans\fR .TP -\fCQLocale::Albanian\fR +\fCTQLocale::Albanian\fR .TP -\fCQLocale::Amharic\fR +\fCTQLocale::Amharic\fR .TP -\fCQLocale::Arabic\fR +\fCTQLocale::Arabic\fR .TP -\fCQLocale::Armenian\fR +\fCTQLocale::Armenian\fR .TP -\fCQLocale::Assamese\fR +\fCTQLocale::Assamese\fR .TP -\fCQLocale::Aymara\fR +\fCTQLocale::Aymara\fR .TP -\fCQLocale::Azerbaijani\fR +\fCTQLocale::Azerbaijani\fR .TP -\fCQLocale::Bashkir\fR +\fCTQLocale::Bashkir\fR .TP -\fCQLocale::Basque\fR +\fCTQLocale::Basque\fR .TP -\fCQLocale::Bengali\fR +\fCTQLocale::Bengali\fR .TP -\fCQLocale::Bhutani\fR +\fCTQLocale::Bhutani\fR .TP -\fCQLocale::Bihari\fR +\fCTQLocale::Bihari\fR .TP -\fCQLocale::Bislama\fR +\fCTQLocale::Bislama\fR .TP -\fCQLocale::Breton\fR +\fCTQLocale::Breton\fR .TP -\fCQLocale::Bulgarian\fR +\fCTQLocale::Bulgarian\fR .TP -\fCQLocale::Burmese\fR +\fCTQLocale::Burmese\fR .TP -\fCQLocale::Byelorussian\fR +\fCTQLocale::Byelorussian\fR .TP -\fCQLocale::Cambodian\fR +\fCTQLocale::Cambodian\fR .TP -\fCQLocale::Catalan\fR +\fCTQLocale::Catalan\fR .TP -\fCQLocale::Chinese\fR +\fCTQLocale::Chinese\fR .TP -\fCQLocale::Corsican\fR +\fCTQLocale::Corsican\fR .TP -\fCQLocale::Croatian\fR +\fCTQLocale::Croatian\fR .TP -\fCQLocale::Czech\fR +\fCTQLocale::Czech\fR .TP -\fCQLocale::Danish\fR +\fCTQLocale::Danish\fR .TP -\fCQLocale::Dutch\fR +\fCTQLocale::Dutch\fR .TP -\fCQLocale::English\fR +\fCTQLocale::English\fR .TP -\fCQLocale::Esperanto\fR +\fCTQLocale::Esperanto\fR .TP -\fCQLocale::Estonian\fR +\fCTQLocale::Estonian\fR .TP -\fCQLocale::Faroese\fR +\fCTQLocale::Faroese\fR .TP -\fCQLocale::FijiLanguage\fR +\fCTQLocale::FijiLanguage\fR .TP -\fCQLocale::Finnish\fR +\fCTQLocale::Finnish\fR .TP -\fCQLocale::French\fR +\fCTQLocale::French\fR .TP -\fCQLocale::Frisian\fR +\fCTQLocale::Frisian\fR .TP -\fCQLocale::Gaelic\fR +\fCTQLocale::Gaelic\fR .TP -\fCQLocale::Galician\fR +\fCTQLocale::Galician\fR .TP -\fCQLocale::Georgian\fR +\fCTQLocale::Georgian\fR .TP -\fCQLocale::German\fR +\fCTQLocale::German\fR .TP -\fCQLocale::Greek\fR +\fCTQLocale::Greek\fR .TP -\fCQLocale::Greenlandic\fR +\fCTQLocale::Greenlandic\fR .TP -\fCQLocale::Guarani\fR +\fCTQLocale::Guarani\fR .TP -\fCQLocale::Gujarati\fR +\fCTQLocale::Gujarati\fR .TP -\fCQLocale::Hausa\fR +\fCTQLocale::Hausa\fR .TP -\fCQLocale::Hebrew\fR +\fCTQLocale::Hebrew\fR .TP -\fCQLocale::Hindi\fR +\fCTQLocale::Hindi\fR .TP -\fCQLocale::Hungarian\fR +\fCTQLocale::Hungarian\fR .TP -\fCQLocale::Icelandic\fR +\fCTQLocale::Icelandic\fR .TP -\fCQLocale::Indonesian\fR +\fCTQLocale::Indonesian\fR .TP -\fCQLocale::Interlingua\fR +\fCTQLocale::Interlingua\fR .TP -\fCQLocale::Interlingue\fR +\fCTQLocale::Interlingue\fR .TP -\fCQLocale::Inuktitut\fR +\fCTQLocale::Inuktitut\fR .TP -\fCQLocale::Inupiak\fR +\fCTQLocale::Inupiak\fR .TP -\fCQLocale::Irish\fR +\fCTQLocale::Irish\fR .TP -\fCQLocale::Italian\fR +\fCTQLocale::Italian\fR .TP -\fCQLocale::Japanese\fR +\fCTQLocale::Japanese\fR .TP -\fCQLocale::Javanese\fR +\fCTQLocale::Javanese\fR .TP -\fCQLocale::Kannada\fR +\fCTQLocale::Kannada\fR .TP -\fCQLocale::Kashmiri\fR +\fCTQLocale::Kashmiri\fR .TP -\fCQLocale::Kazakh\fR +\fCTQLocale::Kazakh\fR .TP -\fCQLocale::Kinyarwanda\fR +\fCTQLocale::Kinyarwanda\fR .TP -\fCQLocale::Kirghiz\fR +\fCTQLocale::Kirghiz\fR .TP -\fCQLocale::Korean\fR +\fCTQLocale::Korean\fR .TP -\fCQLocale::Kurdish\fR +\fCTQLocale::Kurdish\fR .TP -\fCQLocale::Kurundi\fR +\fCTQLocale::Kurundi\fR .TP -\fCQLocale::Laothian\fR +\fCTQLocale::Laothian\fR .TP -\fCQLocale::Latin\fR +\fCTQLocale::Latin\fR .TP -\fCQLocale::Latvian\fR +\fCTQLocale::Latvian\fR .TP -\fCQLocale::Lingala\fR +\fCTQLocale::Lingala\fR .TP -\fCQLocale::Lithuanian\fR +\fCTQLocale::Lithuanian\fR .TP -\fCQLocale::Macedonian\fR +\fCTQLocale::Macedonian\fR .TP -\fCQLocale::Malagasy\fR +\fCTQLocale::Malagasy\fR .TP -\fCQLocale::Malay\fR +\fCTQLocale::Malay\fR .TP -\fCQLocale::Malayalam\fR +\fCTQLocale::Malayalam\fR .TP -\fCQLocale::Maltese\fR +\fCTQLocale::Maltese\fR .TP -\fCQLocale::Maori\fR +\fCTQLocale::Maori\fR .TP -\fCQLocale::Marathi\fR +\fCTQLocale::Marathi\fR .TP -\fCQLocale::Moldavian\fR +\fCTQLocale::Moldavian\fR .TP -\fCQLocale::Mongolian\fR +\fCTQLocale::Mongolian\fR .TP -\fCQLocale::NauruLanguage\fR +\fCTQLocale::NauruLanguage\fR .TP -\fCQLocale::Nepali\fR +\fCTQLocale::Nepali\fR .TP -\fCQLocale::Norwegian\fR +\fCTQLocale::Norwegian\fR .TP -\fCQLocale::Occitan\fR +\fCTQLocale::Occitan\fR .TP -\fCQLocale::Oriya\fR +\fCTQLocale::Oriya\fR .TP -\fCQLocale::Pashto\fR +\fCTQLocale::Pashto\fR .TP -\fCQLocale::Persian\fR +\fCTQLocale::Persian\fR .TP -\fCQLocale::Polish\fR +\fCTQLocale::Polish\fR .TP -\fCQLocale::Portuguese\fR +\fCTQLocale::Portuguese\fR .TP -\fCQLocale::Punjabi\fR +\fCTQLocale::Punjabi\fR .TP -\fCQLocale::Quechua\fR +\fCTQLocale::Quechua\fR .TP -\fCQLocale::RhaetoRomance\fR +\fCTQLocale::RhaetoRomance\fR .TP -\fCQLocale::Romanian\fR +\fCTQLocale::Romanian\fR .TP -\fCQLocale::Russian\fR +\fCTQLocale::Russian\fR .TP -\fCQLocale::Samoan\fR +\fCTQLocale::Samoan\fR .TP -\fCQLocale::Sangho\fR +\fCTQLocale::Sangho\fR .TP -\fCQLocale::Sanskrit\fR +\fCTQLocale::Sanskrit\fR .TP -\fCQLocale::Serbian\fR +\fCTQLocale::Serbian\fR .TP -\fCQLocale::SerboCroatian\fR +\fCTQLocale::SerboCroatian\fR .TP -\fCQLocale::Sesotho\fR +\fCTQLocale::Sesotho\fR .TP -\fCQLocale::Setswana\fR +\fCTQLocale::Setswana\fR .TP -\fCQLocale::Shona\fR +\fCTQLocale::Shona\fR .TP -\fCQLocale::Sindhi\fR +\fCTQLocale::Sindhi\fR .TP -\fCQLocale::Singhalese\fR +\fCTQLocale::Singhalese\fR .TP -\fCQLocale::Siswati\fR +\fCTQLocale::Siswati\fR .TP -\fCQLocale::Slovak\fR +\fCTQLocale::Slovak\fR .TP -\fCQLocale::Slovenian\fR +\fCTQLocale::Slovenian\fR .TP -\fCQLocale::Somali\fR +\fCTQLocale::Somali\fR .TP -\fCQLocale::Spanish\fR +\fCTQLocale::Spanish\fR .TP -\fCQLocale::Sundanese\fR +\fCTQLocale::Sundanese\fR .TP -\fCQLocale::Swahili\fR +\fCTQLocale::Swahili\fR .TP -\fCQLocale::Swedish\fR +\fCTQLocale::Swedish\fR .TP -\fCQLocale::Tagalog\fR +\fCTQLocale::Tagalog\fR .TP -\fCQLocale::Tajik\fR +\fCTQLocale::Tajik\fR .TP -\fCQLocale::Tamil\fR +\fCTQLocale::Tamil\fR .TP -\fCQLocale::Tatar\fR +\fCTQLocale::Tatar\fR .TP -\fCQLocale::Telugu\fR +\fCTQLocale::Telugu\fR .TP -\fCQLocale::Thai\fR +\fCTQLocale::Thai\fR .TP -\fCQLocale::Tibetan\fR +\fCTQLocale::Tibetan\fR .TP -\fCQLocale::Tigrinya\fR +\fCTQLocale::Tigrinya\fR .TP -\fCQLocale::TongaLanguage\fR +\fCTQLocale::TongaLanguage\fR .TP -\fCQLocale::Tsonga\fR +\fCTQLocale::Tsonga\fR .TP -\fCQLocale::Turkish\fR +\fCTQLocale::Turkish\fR .TP -\fCQLocale::Turkmen\fR +\fCTQLocale::Turkmen\fR .TP -\fCQLocale::Twi\fR +\fCTQLocale::Twi\fR .TP -\fCQLocale::Uigur\fR +\fCTQLocale::Uigur\fR .TP -\fCQLocale::Ukrainian\fR +\fCTQLocale::Ukrainian\fR .TP -\fCQLocale::Urdu\fR +\fCTQLocale::Urdu\fR .TP -\fCQLocale::Uzbek\fR +\fCTQLocale::Uzbek\fR .TP -\fCQLocale::Vietnamese\fR +\fCTQLocale::Vietnamese\fR .TP -\fCQLocale::Volapuk\fR +\fCTQLocale::Volapuk\fR .TP -\fCQLocale::Welsh\fR +\fCTQLocale::Welsh\fR .TP -\fCQLocale::Wolof\fR +\fCTQLocale::Wolof\fR .TP -\fCQLocale::Xhosa\fR +\fCTQLocale::Xhosa\fR .TP -\fCQLocale::Yiddish\fR +\fCTQLocale::Yiddish\fR .TP -\fCQLocale::Yoruba\fR +\fCTQLocale::Yoruba\fR .TP -\fCQLocale::Zhuang\fR +\fCTQLocale::Zhuang\fR .TP -\fCQLocale::Zulu\fR +\fCTQLocale::Zulu\fR .SH MEMBER FUNCTION DOCUMENTATION -.SH "QLocale::QLocale ()" -Constructs a QLocale object initialized with the default locale. +.SH "TQLocale::TQLocale ()" +Constructs a TQLocale object initialized with the default locale. .PP See also setDefault(). -.SH "QLocale::QLocale ( const TQString & name )" -Constructs a QLocale object with the specified \fIname\fR, which has the format" language[_country][.codeset][@modifier]" or "C", where: +.SH "TQLocale::TQLocale ( const TQString & name )" +Constructs a TQLocale object with the specified \fIname\fR, which has the format" language[_country][.codeset][@modifier]" or "C", where: .TP language is a lowercase, two-letter, ISO 639 language code, .TP @@ -1014,58 +1014,58 @@ and codeset and modifier are ignored. .PP If the string violates the locale format, or language is not a valid ISO 369 code, the "C" locale is used instead. If country is not present, or is not a valid ISO 3166 code, the most appropriate country is chosen for the specified language. .PP -The language and country codes are converted to their respective Language and Country enums. After this conversion is performed the constructor behaves exactly like QLocale(Country, Language). +The language and country codes are converted to their respective Language and Country enums. After this conversion is performed the constructor behaves exactly like TQLocale(Country, Language). .PP -This constructor is much slower than QLocale(Country, Language). +This constructor is much slower than TQLocale(Country, Language). .PP See also name(). -.SH "QLocale::QLocale ( Language language, Country country = AnyCountry )" -Constructs a QLocale object with the specified \fIlanguage\fR and \fIcountry\fR. +.SH "TQLocale::TQLocale ( Language language, Country country = AnyCountry )" +Constructs a TQLocale object with the specified \fIlanguage\fR and \fIcountry\fR. .TP If the language/country pair is found in the database, it is used. .TP If the language is found but the country is not, or if the country is AnyCountry, the language is used with the most appropriate available country (for example, Germany for German), .TP -If neither the language nor the country are found, QLocale defaults to the default locale (see setDefault()). +If neither the language nor the country are found, TQLocale defaults to the default locale (see setDefault()). .PP The language and country that are actually used can be queried using language() and country(). .PP See also setDefault(), language(), and country(). -.SH "QLocale::QLocale ( const QLocale & other )" -Constructs a QLocale object as a copy of \fIother\fR. -.SH "QLocale QLocale::c ()\fC [static]\fR" -Returns a QLocale object initialized to the "C" locale. +.SH "TQLocale::TQLocale ( const TQLocale & other )" +Constructs a TQLocale object as a copy of \fIother\fR. +.SH "TQLocale TQLocale::c ()\fC [static]\fR" +Returns a TQLocale object initialized to the "C" locale. .PP See also system(). -.SH "Country QLocale::country () const" +.SH "Country TQLocale::country () const" Returns the country of this locale. .PP -See also QLocale(). -.SH "TQString QLocale::countryToString ( Country country )\fC [static]\fR" +See also TQLocale(). +.SH "TQString TQLocale::countryToString ( Country country )\fC [static]\fR" Returns a TQString containing the name of \fIcountry\fR. -.SH "Language QLocale::language () const" +.SH "Language TQLocale::language () const" Returns the language of this locale. .PP -See also QLocale(). -.SH "TQString QLocale::languageToString ( Language language )\fC [static]\fR" +See also TQLocale(). +.SH "TQString TQLocale::languageToString ( Language language )\fC [static]\fR" Returns a TQString containing the name of \fIlanguage\fR. -.SH "TQString QLocale::name () const" +.SH "TQString TQLocale::name () const" Returns the language and country of this locale as a string of the form "language_country", where language is a lowercase, two-letter ISO 639 language code, and country is an uppercase, two-letter ISO 3166 country code. .PP -See also QLocale(). -.SH "QLocale & QLocale::operator= ( const QLocale & other )" -Assigns \fIother\fR to this QLocale object and returns a reference to this QLocale object. -.SH "void QLocale::setDefault ( const QLocale & locale )\fC [static]\fR" +See also TQLocale(). +.SH "TQLocale & TQLocale::operator= ( const TQLocale & other )" +Assigns \fIother\fR to this TQLocale object and returns a reference to this TQLocale object. +.SH "void TQLocale::setDefault ( const TQLocale & locale )\fC [static]\fR" \fBWarning:\fR This function is \fInot\fR reentrant.

    .PP -Sets the global default locale to \fIlocale\fR. These values are used when a QLocale object is constructed with no arguments. If this function is not called, the system's locale is used. +Sets the global default locale to \fIlocale\fR. These values are used when a TQLocale object is constructed with no arguments. If this function is not called, the system's locale is used. .PP \fBWarning:\fR In a multithreaded application, the default locale should be set at application startup, before any non-GUI threads are created. .PP See also system() and c(). -.SH "QLocale QLocale::system ()\fC [static]\fR" -Returns a QLocale object initialized to the system locale. -.SH "double QLocale::toDouble ( const TQString & s, bool * ok = 0 ) const" +.SH "TQLocale TQLocale::system ()\fC [static]\fR" +Returns a TQLocale object initialized to the system locale. +.SH "double TQLocale::toDouble ( const TQString & s, bool * ok = 0 ) const" Returns the double represented by the localized string \fIs\fR, or 0.0 if the conversion failed. .PP If \fIok\fR is not 0, reports failure by setting *ok to false and success by setting *ok to true. @@ -1079,7 +1079,7 @@ Unlike TQString::toDouble(), this function does not fall back to the "C" locale double d; .br .br - QLocale c(QLocale::C); + TQLocale c(TQLocale::C); .br d = c.toDouble( "1234.56", &ok ); // ok == true, d == 1234.56 .br @@ -1088,7 +1088,7 @@ Unlike TQString::toDouble(), this function does not fall back to the "C" locale d = c.toDouble( "1234,56", &ok ); // ok == false .br .br - QLocale german(QLocale::German); + TQLocale german(TQLocale::German); .br d = german.toDouble( "1234,56", &ok ); // ok == true, d == 1234.56 .br @@ -1106,7 +1106,7 @@ Notice that the last conversion returns 1234.0, because '.' is the thousands gro This function ignores leading and trailing whitespace. .PP See also toString() and TQString::toDouble(). -.SH "float QLocale::toFloat ( const TQString & s, bool * ok = 0 ) const" +.SH "float TQLocale::toFloat ( const TQString & s, bool * ok = 0 ) const" Returns the float represented by the localized string \fIs\fR, or 0.0 if the conversion failed. .PP If \fIok\fR is not 0, reports failure by setting *ok to false and success by setting *ok to true. @@ -1114,7 +1114,7 @@ If \fIok\fR is not 0, reports failure by setting *ok to false and success by set This function ignores leading and trailing whitespace. .PP See also toString(). -.SH "int QLocale::toInt ( const TQString & s, bool * ok = 0 ) const" +.SH "int TQLocale::toInt ( const TQString & s, bool * ok = 0 ) const" Returns the int represented by the localized string \fIs\fR, or 0 if the conversion failed. .PP If \fIok\fR is not 0, reports failure by setting *ok to false and success by setting *ok to true. @@ -1122,7 +1122,7 @@ If \fIok\fR is not 0, reports failure by setting *ok to false and success by set This function ignores leading and trailing whitespace. .PP See also toString(). -.SH "TQ_LONG QLocale::toLong ( const TQString & s, bool * ok = 0 ) const" +.SH "TQ_LONG TQLocale::toLong ( const TQString & s, bool * ok = 0 ) const" Returns the long int represented by the localized string \fIs\fR, or 0 if the conversion failed. .PP If \fIok\fR is not 0, reports failure by setting *ok to false and success by setting *ok to true. @@ -1130,7 +1130,7 @@ If \fIok\fR is not 0, reports failure by setting *ok to false and success by set This function ignores leading and trailing whitespace. .PP See also toString(). -.SH "TQ_LLONG QLocale::toLongLong ( const TQString & s, bool * ok = 0 ) const" +.SH "TQ_LLONG TQLocale::toLongLong ( const TQString & s, bool * ok = 0 ) const" Returns the long long int represented by the localized string \fIs\fR, or 0 if the conversion failed. .PP If \fIok\fR is not 0, reports failure by setting *ok to false and success by setting *ok to true. @@ -1138,7 +1138,7 @@ If \fIok\fR is not 0, reports failure by setting *ok to false and success by set This function ignores leading and trailing whitespace. .PP See also toString(). -.SH "short QLocale::toShort ( const TQString & s, bool * ok = 0 ) const" +.SH "short TQLocale::toShort ( const TQString & s, bool * ok = 0 ) const" Returns the short int represented by the localized string \fIs\fR, or 0 if the conversion failed. .PP If \fIok\fR is not 0, reports failure by setting *ok to false and success by setting *ok to true. @@ -1146,51 +1146,51 @@ If \fIok\fR is not 0, reports failure by setting *ok to false and success by set This function ignores leading and trailing whitespace. .PP See also toString(). -.SH "TQString QLocale::toString ( TQ_LLONG i ) const" +.SH "TQString TQLocale::toString ( TQ_LLONG i ) const" Returns a localized string representation of \fIi\fR. .PP See also toLongLong(). -.SH "TQString QLocale::toString ( short i ) const" +.SH "TQString TQLocale::toString ( short i ) const" This is an overloaded member function, provided for convenience. It behaves essentially like the above function. .PP See also toShort(). -.SH "TQString QLocale::toString ( ushort i ) const" +.SH "TQString TQLocale::toString ( ushort i ) const" This is an overloaded member function, provided for convenience. It behaves essentially like the above function. .PP See also toUShort(). -.SH "TQString QLocale::toString ( int i ) const" +.SH "TQString TQLocale::toString ( int i ) const" This is an overloaded member function, provided for convenience. It behaves essentially like the above function. .PP See also toInt(). -.SH "TQString QLocale::toString ( uint i ) const" +.SH "TQString TQLocale::toString ( uint i ) const" This is an overloaded member function, provided for convenience. It behaves essentially like the above function. .PP See also toUInt(). -.SH "TQString QLocale::toString ( TQ_LONG i ) const" +.SH "TQString TQLocale::toString ( TQ_LONG i ) const" This is an overloaded member function, provided for convenience. It behaves essentially like the above function. .PP See also toLong(). -.SH "TQString QLocale::toString ( TQ_ULONG i ) const" +.SH "TQString TQLocale::toString ( TQ_ULONG i ) const" This is an overloaded member function, provided for convenience. It behaves essentially like the above function. .PP See also toULong(). -.SH "TQString QLocale::toString ( TQ_ULLONG i ) const" +.SH "TQString TQLocale::toString ( TQ_ULLONG i ) const" This is an overloaded member function, provided for convenience. It behaves essentially like the above function. .PP See also toULongLong(). -.SH "TQString QLocale::toString ( float i, char f = 'g', int prec = 6 ) const" +.SH "TQString TQLocale::toString ( float i, char f = 'g', int prec = 6 ) const" This is an overloaded member function, provided for convenience. It behaves essentially like the above function. .PP \fIf\fR and \fIprec\fR have the same meaning as in TQString::number(double, char, int). .PP See also toDouble(). -.SH "TQString QLocale::toString ( double i, char f = 'g', int prec = 6 ) const" +.SH "TQString TQLocale::toString ( double i, char f = 'g', int prec = 6 ) const" This is an overloaded member function, provided for convenience. It behaves essentially like the above function. .PP \fIf\fR and \fIprec\fR have the same meaning as in TQString::number(double, char, int). .PP See also toDouble(). -.SH "uint QLocale::toUInt ( const TQString & s, bool * ok = 0 ) const" +.SH "uint TQLocale::toUInt ( const TQString & s, bool * ok = 0 ) const" Returns the unsigned int represented by the localized string \fIs\fR, or 0 if the conversion failed. .PP If \fIok\fR is not 0, reports failure by setting *ok to false and success by setting *ok to true. @@ -1198,7 +1198,7 @@ If \fIok\fR is not 0, reports failure by setting *ok to false and success by set This function ignores leading and trailing whitespace. .PP See also toString(). -.SH "TQ_ULONG QLocale::toULong ( const TQString & s, bool * ok = 0 ) const" +.SH "TQ_ULONG TQLocale::toULong ( const TQString & s, bool * ok = 0 ) const" Returns the unsigned long int represented by the localized string \fIs\fR, or 0 if the conversion failed. .PP If \fIok\fR is not 0, reports failure by setting *ok to false and success by setting *ok to true. @@ -1206,7 +1206,7 @@ If \fIok\fR is not 0, reports failure by setting *ok to false and success by set This function ignores leading and trailing whitespace. .PP See also toString(). -.SH "TQ_ULLONG QLocale::toULongLong ( const TQString & s, bool * ok = 0 ) const" +.SH "TQ_ULLONG TQLocale::toULongLong ( const TQString & s, bool * ok = 0 ) const" Returns the unsigned long long int represented by the localized string \fIs\fR, or 0 if the conversion failed. .PP If \fIok\fR is not 0, reports failure by setting *ok to false and success by setting *ok to true. @@ -1214,7 +1214,7 @@ If \fIok\fR is not 0, reports failure by setting *ok to false and success by set This function ignores leading and trailing whitespace. .PP See also toString(). -.SH "ushort QLocale::toUShort ( const TQString & s, bool * ok = 0 ) const" +.SH "ushort TQLocale::toUShort ( const TQString & s, bool * ok = 0 ) const" Returns the unsigned short int represented by the localized string \fIs\fR, or 0 if the conversion failed. .PP If \fIok\fR is not 0, reports failure by setting *ok to false and success by setting *ok to true. @@ -1224,7 +1224,7 @@ This function ignores leading and trailing whitespace. See also toString(). .SH "SEE ALSO" -.BR http://doc.trolltech.com/ntqlocale.html +.BR http://doc.trolltech.com/tqlocale.html .BR http://www.trolltech.com/faq/tech.html .SH COPYRIGHT Copyright 1992-2007 Trolltech ASA, http://www.trolltech.com. See the diff --git a/doc/man/man3/tqmainwindow.3qt b/doc/man/man3/tqmainwindow.3qt index 191d948d7..d09ffec84 100644 --- a/doc/man/man3/tqmainwindow.3qt +++ b/doc/man/man3/tqmainwindow.3qt @@ -745,7 +745,7 @@ This signal is emitted whenever the setUsesTextLabel() is called with a value di .SH "void TQMainWindow::whatsThis ()\fC [virtual slot]\fR" Enters 'What's This?' mode and returns immediately. .PP -This is the same as QWhatsThis::enterWhatsThisMode(), but implemented as a main window object's slot. This way it can easily be used for popup menus, for example: +This is the same as TQWhatsThis::enterWhatsThisMode(), but implemented as a main window object's slot. This way it can easily be used for popup menus, for example: .PP .nf .br @@ -755,7 +755,7 @@ This is the same as QWhatsThis::enterWhatsThisMode(), but implemented as a main .br .fi .PP -See also QWhatsThis::enterWhatsThisMode(). +See also TQWhatsThis::enterWhatsThisMode(). .SS "Property Documentation" .SH "bool dockWindowsMovable" This property holds whether the dock windows are movable. diff --git a/doc/man/man3/tqmenubar.3qt b/doc/man/man3/tqmenubar.3qt index b296e0da6..50e597908 100644 --- a/doc/man/man3/tqmenubar.3qt +++ b/doc/man/man3/tqmenubar.3qt @@ -445,7 +445,7 @@ Ownership of \fIwidget\fR is transferred to the popup menu or to the menu bar. .PP Theoretically, any widget can be inserted into a popup menu. In practice, this only makes sense with certain widgets. .PP -If a widget is not focus-enabled (see TQWidget::isFocusEnabled()), the menu treats it as a separator; this means that the item is not selectable and will never get focus. In this way you can, for example, simply insert a QLabel if you need a popup menu with a title. +If a widget is not focus-enabled (see TQWidget::isFocusEnabled()), the menu treats it as a separator; this means that the item is not selectable and will never get focus. In this way you can, for example, simply insert a TQLabel if you need a popup menu with a title. .PP If the widget is focus-enabled it will get focus when the user traverses the popup menu with the arrow keys. If the widget does not accept \fCArrowUp\fR and \fCArrowDown\fR in its key event handler, the focus will move back to the menu when the respective arrow key is hit one more time. This works with a QLineEdit, for example. If the widget accepts the arrow key itself, it must also provide the possibility to put the focus back on the menu again by calling TQWidget::focusNextPrevChild(). Futhermore, if the embedded widget closes the menu when the user made a selection, this can be done safely by calling: .PP diff --git a/doc/man/man3/tqmenudata.3qt b/doc/man/man3/tqmenudata.3qt index 8c092dd88..6a0d238f3 100644 --- a/doc/man/man3/tqmenudata.3qt +++ b/doc/man/man3/tqmenudata.3qt @@ -485,7 +485,7 @@ Ownership of \fIwidget\fR is transferred to the popup menu or to the menu bar. .PP Theoretically, any widget can be inserted into a popup menu. In practice, this only makes sense with certain widgets. .PP -If a widget is not focus-enabled (see TQWidget::isFocusEnabled()), the menu treats it as a separator; this means that the item is not selectable and will never get focus. In this way you can, for example, simply insert a QLabel if you need a popup menu with a title. +If a widget is not focus-enabled (see TQWidget::isFocusEnabled()), the menu treats it as a separator; this means that the item is not selectable and will never get focus. In this way you can, for example, simply insert a TQLabel if you need a popup menu with a title. .PP If the widget is focus-enabled it will get focus when the user traverses the popup menu with the arrow keys. If the widget does not accept \fCArrowUp\fR and \fCArrowDown\fR in its key event handler, the focus will move back to the menu when the respective arrow key is hit one more time. This works with a QLineEdit, for example. If the widget accepts the arrow key itself, it must also provide the possibility to put the focus back on the menu again by calling TQWidget::focusNextPrevChild(). Futhermore, if the embedded widget closes the menu when the user made a selection, this can be done safely by calling: .PP diff --git a/doc/man/man3/tqmimesourcefactory.3qt b/doc/man/man3/tqmimesourcefactory.3qt index c1f5db94c..7f66d1202 100644 --- a/doc/man/man3/tqmimesourcefactory.3qt +++ b/doc/man/man3/tqmimesourcefactory.3qt @@ -78,7 +78,7 @@ A TQMimeSourceFactory provides an abstract interface to a collection of informat .PP The base TQMimeSourceFactory can be used in two ways: as an abstraction of a collection of files or as specifically stored data. For it to access files, call setFilePath() before accessing data. For stored data, call setData() for each item (there are also convenience functions, e.g. setText(), setImage() and setPixmap(), that simply call setData() with appropriate parameters). .PP -The rich text widgets, TQTextEdit and TQTextBrowser, use TQMimeSourceFactory to resolve references such as images or links within rich text documents. They either access the default factory (see defaultFactory()) or their own (see TQTextEdit::setMimeSourceFactory()). Other classes that are capable of displaying rich text (such as QLabel, QWhatsThis or QMessageBox) always use the default factory. +The rich text widgets, TQTextEdit and TQTextBrowser, use TQMimeSourceFactory to resolve references such as images or links within rich text documents. They either access the default factory (see defaultFactory()) or their own (see TQTextEdit::setMimeSourceFactory()). Other classes that are capable of displaying rich text (such as TQLabel, TQWhatsThis or QMessageBox) always use the default factory. .PP A factory can also be used as a container to store data associated with a name. This technique is useful whenever rich text contains images that are stored in the program itself, not loaded from the hard disk. Your program may, for example, define some image data as: .PP @@ -94,7 +94,7 @@ A factory can also be used as a container to store data associated with a name. .br .fi .PP -To be able to use this image within some rich text, for example inside a QLabel, you must create a TQImage from the raw data and insert it into the factory with a unique name: +To be able to use this image within some rich text, for example inside a TQLabel, you must create a TQImage from the raw data and insert it into the factory with a unique name: .PP .nf .br @@ -102,11 +102,11 @@ To be able to use this image within some rich text, for example inside a QLabel, .br .fi .PP -Now you can create a rich text QLabel with +Now you can create a rich text TQLabel with .PP .nf .br - QLabel* label = new QLabel( + TQLabel* label = new TQLabel( .br "Rich text with embedded image:" .br @@ -166,7 +166,7 @@ This is an overloaded member function, provided for convenience. It behaves esse .PP A convenience function. See data(const TQString& abs_name). The file name is given in \fIabs_or_rel_name\fR and the path is in \fIcontext\fR. .SH "TQMimeSourceFactory * TQMimeSourceFactory::defaultFactory ()\fC [static]\fR" -Returns the application-wide default mime source factory. This factory is used by rich text rendering classes such as QSimpleRichText, QWhatsThis and QMessageBox to resolve named references within rich text documents. It serves also as the initial factory for the more complex render widgets, TQTextEdit and TQTextBrowser. +Returns the application-wide default mime source factory. This factory is used by rich text rendering classes such as TQSimpleRichText, TQWhatsThis and QMessageBox to resolve named references within rich text documents. It serves also as the initial factory for the more complex render widgets, TQTextEdit and TQTextBrowser. .PP See also setDefaultFactory(). .PP diff --git a/doc/man/man3/tqmovie.3qt b/doc/man/man3/tqmovie.3qt index 97f337f4a..aa5047956 100644 --- a/doc/man/man3/tqmovie.3qt +++ b/doc/man/man3/tqmovie.3qt @@ -122,7 +122,7 @@ TQMovie \- Incremental loading of animations or images, signalling as it progres .SH DESCRIPTION The TQMovie class provides incremental loading of animations or images, signalling as it progresses. .PP -The simplest way to display a TQMovie is to use a QLabel and QLabel::setMovie(). +The simplest way to display a TQMovie is to use a TQLabel and TQLabel::setMovie(). .PP A TQMovie provides a TQPixmap as the framePixmap(); connections can be made via connectResize() and connectUpdate() to receive notification of size and pixmap changes. All decoding is driven by the normal event-processing mechanisms. .PP @@ -146,7 +146,7 @@ GIF support may be removed completely in a future version of Qt. We recommend us .PP
    .PP -See also QLabel::setMovie(), Graphics Classes, Image Processing Classes, and Multimedia Classes. +See also TQLabel::setMovie(), Graphics Classes, Image Processing Classes, and Multimedia Classes. .SS "Member Type Documentation" .SH "TQMovie::Status" .TP diff --git a/doc/man/man3/tqobject.3qt b/doc/man/man3/tqobject.3qt index 39be265fe..f52bbde23 100644 --- a/doc/man/man3/tqobject.3qt +++ b/doc/man/man3/tqobject.3qt @@ -302,7 +302,7 @@ You must use the TQ_SIGNAL() and TQ_SLOT() macros when specifying the \fIsignal\ .PP .nf .br - QLabel *label = new QLabel; + TQLabel *label = new TQLabel; .br QScrollBar *scroll = new QScrollBar; .br diff --git a/doc/man/man3/tqpixmap.3qt b/doc/man/man3/tqpixmap.3qt index 3342e11c6..404637246 100644 --- a/doc/man/man3/tqpixmap.3qt +++ b/doc/man/man3/tqpixmap.3qt @@ -226,7 +226,7 @@ bitBlt() the pixmap contents onto the widget. .PP Pixel data in a pixmap is internal and is managed by the underlying window system. Pixels can be accessed only through TQPainter functions, through bitBlt(), and by converting the TQPixmap to a TQImage. .PP -You can easily display a TQPixmap on the screen using QLabel::setPixmap(). For example, all the QButton subclasses support pixmap use. +You can easily display a TQPixmap on the screen using TQLabel::setPixmap(). For example, all the QButton subclasses support pixmap use. .PP The TQPixmap class uses copy-on-write, so it is practical to pass TQPixmap objects by value. .PP diff --git a/doc/man/man3/tqpopupmenu.3qt b/doc/man/man3/tqpopupmenu.3qt index ef8b119ff..d17106a5e 100644 --- a/doc/man/man3/tqpopupmenu.3qt +++ b/doc/man/man3/tqpopupmenu.3qt @@ -231,7 +231,7 @@ A popup menu can display check marks for certain items when enabled with setChec .PP Items are either enabled or disabled. You toggle their state with setItemEnabled(). Just before a popup menu becomes visible, it emits the aboutToShow() signal. You can use this signal to set the correct enabled/disabled states of all menu items before the user sees it. The corresponding aboutToHide() signal is emitted when the menu hides again. .PP -You can provide What's This? help for single menu items with setWhatsThis(). See QWhatsThis for general information about this kind of lightweight online help. +You can provide What's This? help for single menu items with setWhatsThis(). See TQWhatsThis for general information about this kind of lightweight online help. .PP For ultimate flexibility, you can also add entire widgets as items into a popup menu (for example, a color selector). .PP @@ -573,7 +573,7 @@ Ownership of \fIwidget\fR is transferred to the popup menu or to the menu bar. .PP Theoretically, any widget can be inserted into a popup menu. In practice, this only makes sense with certain widgets. .PP -If a widget is not focus-enabled (see TQWidget::isFocusEnabled()), the menu treats it as a separator; this means that the item is not selectable and will never get focus. In this way you can, for example, simply insert a QLabel if you need a popup menu with a title. +If a widget is not focus-enabled (see TQWidget::isFocusEnabled()), the menu treats it as a separator; this means that the item is not selectable and will never get focus. In this way you can, for example, simply insert a TQLabel if you need a popup menu with a title. .PP If the widget is focus-enabled it will get focus when the user traverses the popup menu with the arrow keys. If the widget does not accept \fCArrowUp\fR and \fCArrowDown\fR in its key event handler, the focus will move back to the menu when the respective arrow key is hit one more time. This works with a QLineEdit, for example. If the widget accepts the arrow key itself, it must also provide the possibility to put the focus back on the menu again by calling TQWidget::focusNextPrevChild(). Futhermore, if the embedded widget closes the menu when the user made a selection, this can be done safely by calling: .PP diff --git a/doc/man/man3/tqprogressdialog.3qt b/doc/man/man3/tqprogressdialog.3qt index 6c225a88c..5383a4da7 100644 --- a/doc/man/man3/tqprogressdialog.3qt +++ b/doc/man/man3/tqprogressdialog.3qt @@ -25,7 +25,7 @@ Inherits QDialog. .BI "\fB~QProgressDialog\fR ()" .br .ti -1c -.BI "void \fBsetLabel\fR ( QLabel * label )" +.BI "void \fBsetLabel\fR ( TQLabel * label )" .br .ti -1c .BI "void \fBsetCancelButton\fR ( QPushButton * cancelButton )" @@ -314,7 +314,7 @@ See also setCancelButtonText(). Sets the cancel button's text to \fIcancelButtonText\fR. .PP See also setCancelButton(). -.SH "void QProgressDialog::setLabel ( QLabel * label )" +.SH "void QProgressDialog::setLabel ( TQLabel * label )" Sets the label to \fIlabel\fR. The progress dialog resizes to fit. The label becomes owned by the progress dialog and will be deleted when necessary, so do not pass the address of an object on the stack. .PP See also labelText. diff --git a/doc/man/man3/tqregexp.3qt b/doc/man/man3/tqregexp.3qt index 2077d70f1..09cf52cc2 100644 --- a/doc/man/man3/tqregexp.3qt +++ b/doc/man/man3/tqregexp.3qt @@ -689,7 +689,7 @@ If \fIindexIsStart\fR is TRUE (the default), the position \fIindex\fR in the str .PP Use search() and matchedLength() instead of this function. .PP -See also TQString::mid() and QConstString. +See also TQString::mid() and TQConstString. .PP Example: qmag/qmag.cpp. .SH "int TQRegExp::matchedLength () const" diff --git a/doc/man/man3/tqscrollview.3qt b/doc/man/man3/tqscrollview.3qt index 55f564f02..baf27b35a 100644 --- a/doc/man/man3/tqscrollview.3qt +++ b/doc/man/man3/tqscrollview.3qt @@ -336,17 +336,17 @@ You can go on to add arbitrary child widgets to the single child in the scrollvi .PP .nf .br - QLabel* child1 = new QLabel("CHILD", big_box); + TQLabel* child1 = new TQLabel("CHILD", big_box); .br - QLabel* child2 = new QLabel("CHILD", big_box); + TQLabel* child2 = new TQLabel("CHILD", big_box); .br - QLabel* child3 = new QLabel("CHILD", big_box); + TQLabel* child3 = new TQLabel("CHILD", big_box); .br ... .br .fi .PP -Here the QScrollView has four children: the viewport(), the verticalScrollBar(), the horizontalScrollBar() and a small cornerWidget(). The viewport() has one child: the big QVBox. The QVBox has the three QLabel objects as child widgets. When the view is scrolled, the QVBox is moved; its children move with it as child widgets normally do. +Here the QScrollView has four children: the viewport(), the verticalScrollBar(), the horizontalScrollBar() and a small cornerWidget(). The viewport() has one child: the big QVBox. The QVBox has the three TQLabel objects as child widgets. When the view is scrolled, the QVBox is moved; its children move with it as child widgets normally do. .SH "Using a Very Big View with Some Widgets"
    .ce 1 @@ -360,20 +360,20 @@ The second usage of QScrollView (depicted above) is appropriate when few, if any .br QScrollView* sv = new QScrollView(...); .br - QLabel* child1 = new QLabel("CHILD", sv->viewport()); + TQLabel* child1 = new TQLabel("CHILD", sv->viewport()); .br sv->addChild(child1); .br - QLabel* child2 = new QLabel("CHILD", sv->viewport()); + TQLabel* child2 = new TQLabel("CHILD", sv->viewport()); .br sv->addChild(child2); .br - QLabel* child3 = new QLabel("CHILD", sv->viewport()); + TQLabel* child3 = new TQLabel("CHILD", sv->viewport()); .br sv->addChild(child3); .br .fi -Here, the QScrollView has the same four children: the viewport(), the verticalScrollBar(), the horizontalScrollBar() and a small cornerWidget(). The viewport() has the three QLabel objects as child widgets. When the view is scrolled, the scrollview moves the child widgets individually. +Here, the QScrollView has the same four children: the viewport(), the verticalScrollBar(), the horizontalScrollBar() and a small cornerWidget(). The viewport() has the three TQLabel objects as child widgets. When the view is scrolled, the scrollview moves the child widgets individually. .SH "Using a Very Big View with Many Widgets"
    .ce 1 @@ -389,15 +389,15 @@ The final usage of QScrollView (depicted above) is appropriate when many widgets .br sv->enableClipper(TRUE); .br - QLabel* child1 = new QLabel("CHILD", sv->viewport()); + TQLabel* child1 = new TQLabel("CHILD", sv->viewport()); .br sv->addChild(child1); .br - QLabel* child2 = new QLabel("CHILD", sv->viewport()); + TQLabel* child2 = new TQLabel("CHILD", sv->viewport()); .br sv->addChild(child2); .br - QLabel* child3 = new QLabel("CHILD", sv->viewport()); + TQLabel* child3 = new TQLabel("CHILD", sv->viewport()); .br sv->addChild(child3); .br diff --git a/doc/man/man3/tqsimplerichtext.3qt b/doc/man/man3/tqsimplerichtext.3qt index 6b4208e96..c1f02b62f 100644 --- a/doc/man/man3/tqsimplerichtext.3qt +++ b/doc/man/man3/tqsimplerichtext.3qt @@ -1,5 +1,5 @@ '\" t -.TH QSimpleRichText 3qt "2 February 2007" "Trolltech AS" \" -*- nroff -*- +.TH TQSimpleRichText 3qt "2 February 2007" "Trolltech AS" \" -*- nroff -*- .\" Copyright 1992-2007 Trolltech ASA. All rights reserved. See the .\" license file included in the distribution for a complete license .\" statement. @@ -7,20 +7,20 @@ .ad l .nh .SH NAME -QSimpleRichText \- Small displayable piece of rich text +TQSimpleRichText \- Small displayable piece of rich text .SH SYNOPSIS -\fC#include \fR +\fC#include \fR .PP .SS "Public Members" .in +1c .ti -1c -.BI "\fBQSimpleRichText\fR ( const TQString & text, const TQFont & fnt, const TQString & context = TQString::null, const TQStyleSheet * sheet = 0 )" +.BI "\fBTQSimpleRichText\fR ( const TQString & text, const TQFont & fnt, const TQString & context = TQString::null, const TQStyleSheet * sheet = 0 )" .br .ti -1c -.BI "\fBQSimpleRichText\fR ( const TQString & text, const TQFont & fnt, const TQString & context, const TQStyleSheet * sheet, const TQMimeSourceFactory * factory, int pageBreak = -1, const TQColor & linkColor = TQt::blue, bool linkUnderline = TRUE )" +.BI "\fBTQSimpleRichText\fR ( const TQString & text, const TQFont & fnt, const TQString & context, const TQStyleSheet * sheet, const TQMimeSourceFactory * factory, int pageBreak = -1, const TQColor & linkColor = TQt::blue, bool linkUnderline = TRUE )" .br .ti -1c -.BI "\fB~QSimpleRichText\fR ()" +.BI "\fB~TQSimpleRichText\fR ()" .br .ti -1c .BI "void \fBsetWidth\fR ( int w )" @@ -60,77 +60,77 @@ QSimpleRichText \- Small displayable piece of rich text .br .in -1c .SH DESCRIPTION -The QSimpleRichText class provides a small displayable piece of rich text. +The TQSimpleRichText class provides a small displayable piece of rich text. .PP This class encapsulates simple rich text usage in which a string is interpreted as rich text and can be drawn. This is particularly useful if you want to display some rich text in a custom widget. A TQStyleSheet is needed to interpret the tags and format the rich text. TQt provides a default HTML-like style sheet, but you may define custom style sheets. .PP -Once created, the rich text object can be queried for its width(), height(), and the actual width used (see widthUsed()). Most importantly, it can be drawn on any given TQPainter with draw(). QSimpleRichText can also be used to implement hypertext or active text facilities by using anchorAt(). A hit test through inText() makes it possible to use simple rich text for text objects in editable drawing canvases. +Once created, the rich text object can be queried for its width(), height(), and the actual width used (see widthUsed()). Most importantly, it can be drawn on any given TQPainter with draw(). TQSimpleRichText can also be used to implement hypertext or active text facilities by using anchorAt(). A hit test through inText() makes it possible to use simple rich text for text objects in editable drawing canvases. .PP Once constructed from a string the contents cannot be changed, only resized. If the contents change, just throw the rich text object away and make a new one with the new contents. .PP -For large documents use TQTextEdit or TQTextBrowser. For very small items of rich text you can use a QLabel. +For large documents use TQTextEdit or TQTextBrowser. For very small items of rich text you can use a TQLabel. .PP -If you are using QSimpleRichText to print in high resolution you should call setWidth(TQPainter, int) so that the content will be laid out properly on the page. +If you are using TQSimpleRichText to print in high resolution you should call setWidth(TQPainter, int) so that the content will be laid out properly on the page. .PP See also Text Related Classes. .SH MEMBER FUNCTION DOCUMENTATION -.SH "QSimpleRichText::QSimpleRichText ( const TQString & text, const TQFont & fnt, const TQString & context = TQString::null, const TQStyleSheet * sheet = 0 )" -Constructs a QSimpleRichText from the rich text string \fItext\fR and the font \fIfnt\fR. +.SH "TQSimpleRichText::TQSimpleRichText ( const TQString & text, const TQFont & fnt, const TQString & context = TQString::null, const TQStyleSheet * sheet = 0 )" +Constructs a TQSimpleRichText from the rich text string \fItext\fR and the font \fIfnt\fR. .PP The font is used as a basis for the text rendering. When using rich text rendering on a widget \fIw\fR, you would normally specify the widget's font, for example: .PP .nf .br - QSimpleRichText myrichtext( contents, mywidget->font() ); + TQSimpleRichText myrichtext( contents, mywidget->font() ); .br .fi .PP -\fIcontext\fR is the optional context of the rich text object. This becomes important if \fItext\fR contains relative references, for example within image tags. QSimpleRichText always uses the default mime source factory (see TQMimeSourceFactory::defaultFactory()) to resolve those references. The context will then be used to calculate the absolute path. See TQMimeSourceFactory::makeAbsolute() for details. +\fIcontext\fR is the optional context of the rich text object. This becomes important if \fItext\fR contains relative references, for example within image tags. TQSimpleRichText always uses the default mime source factory (see TQMimeSourceFactory::defaultFactory()) to resolve those references. The context will then be used to calculate the absolute path. See TQMimeSourceFactory::makeAbsolute() for details. .PP The \fIsheet\fR is an optional style sheet. If it is 0, the default style sheet will be used (see TQStyleSheet::defaultSheet()). -.SH "QSimpleRichText::QSimpleRichText ( const TQString & text, const TQFont & fnt, const TQString & context, const TQStyleSheet * sheet, const TQMimeSourceFactory * factory, int pageBreak = -1, const TQColor & linkColor = TQt::blue, bool linkUnderline = TRUE )" -Constructs a QSimpleRichText from the rich text string \fItext\fR and the font \fIfnt\fR. +.SH "TQSimpleRichText::TQSimpleRichText ( const TQString & text, const TQFont & fnt, const TQString & context, const TQStyleSheet * sheet, const TQMimeSourceFactory * factory, int pageBreak = -1, const TQColor & linkColor = TQt::blue, bool linkUnderline = TRUE )" +Constructs a TQSimpleRichText from the rich text string \fItext\fR and the font \fIfnt\fR. .PP -This is a slightly more complex constructor for QSimpleRichText that takes an additional mime source factory \fIfactory\fR, a page break parameter \fIpageBreak\fR and a bool \fIlinkUnderline\fR. \fIlinkColor\fR is only provided for compatibility, but has no effect, as TQColorGroup's TQColorGroup::link() color is used now. +This is a slightly more complex constructor for TQSimpleRichText that takes an additional mime source factory \fIfactory\fR, a page break parameter \fIpageBreak\fR and a bool \fIlinkUnderline\fR. \fIlinkColor\fR is only provided for compatibility, but has no effect, as TQColorGroup's TQColorGroup::link() color is used now. .PP -\fIcontext\fR is the optional context of the rich text object. This becomes important if \fItext\fR contains relative references, for example within image tags. QSimpleRichText always uses the default mime source factory (see TQMimeSourceFactory::defaultFactory()) to resolve those references. The context will then be used to calculate the absolute path. See TQMimeSourceFactory::makeAbsolute() for details. +\fIcontext\fR is the optional context of the rich text object. This becomes important if \fItext\fR contains relative references, for example within image tags. TQSimpleRichText always uses the default mime source factory (see TQMimeSourceFactory::defaultFactory()) to resolve those references. The context will then be used to calculate the absolute path. See TQMimeSourceFactory::makeAbsolute() for details. .PP The \fIsheet\fR is an optional style sheet. If it is 0, the default style sheet will be used (see TQStyleSheet::defaultSheet()). .PP -This constructor is useful for creating a QSimpleRichText object suitable for printing. Set \fIpageBreak\fR to be the height of the contents area of the pages. -.SH "QSimpleRichText::~QSimpleRichText ()" +This constructor is useful for creating a TQSimpleRichText object suitable for printing. Set \fIpageBreak\fR to be the height of the contents area of the pages. +.SH "TQSimpleRichText::~TQSimpleRichText ()" Destroys the rich text object, freeing memory. -.SH "void QSimpleRichText::adjustSize ()" +.SH "void TQSimpleRichText::adjustSize ()" Adjusts the richt text object to a reasonable size. .PP See also setWidth(). -.SH "TQString QSimpleRichText::anchorAt ( const TQPoint & pos ) const" +.SH "TQString TQSimpleRichText::anchorAt ( const TQPoint & pos ) const" Returns the anchor at the requested position, \fIpos\fR. An empty string is returned if no anchor is specified for this position. -.SH "TQString QSimpleRichText::context () const" +.SH "TQString TQSimpleRichText::context () const" Returns the context of the rich text object. If no context has been specified in the constructor, a null string is returned. The context is the path to use to look up relative links, such as image tags and anchor references. -.SH "void QSimpleRichText::draw ( TQPainter * p, int x, int y, const TQRect & clipRect, const TQColorGroup & cg, const TQBrush * paper = 0 ) const" +.SH "void TQSimpleRichText::draw ( TQPainter * p, int x, int y, const TQRect & clipRect, const TQColorGroup & cg, const TQBrush * paper = 0 ) const" Draws the formatted text with painter \fIp\fR, at position (\fIx\fR, \fIy\fR), clipped to \fIclipRect\fR. The clipping rectangle is given in the rich text object's coordinates translated by (\fIx\fR, \fIy\fR). Passing an null rectangle results in no clipping. Colors from the color group \fIcg\fR are used as needed, and if not 0, \fI*paper\fR is used as the background brush. .PP Note that the display code is highly optimized to reduce flicker, so passing a brush for \fIpaper\fR is preferable to simply clearing the area to be painted and then calling this without a brush. .PP Examples: .)l action/application.cpp, application/application.cpp, helpviewer/helpwindow.cpp, and mdi/application.cpp. -.SH "void QSimpleRichText::draw ( TQPainter * p, int x, int y, const TQRegion & clipRegion, const TQColorGroup & cg, const TQBrush * paper = 0 ) const" +.SH "void TQSimpleRichText::draw ( TQPainter * p, int x, int y, const TQRegion & clipRegion, const TQColorGroup & cg, const TQBrush * paper = 0 ) const" \fBThis function is obsolete.\fR It is provided to keep old source working. We strongly advise against using it in new code. .PP Use the version with clipRect instead. The region version has problems with larger documents on some platforms (on X11 regions internally are represented with 16bit coordinates). -.SH "int QSimpleRichText::height () const" +.SH "int TQSimpleRichText::height () const" Returns the height of the rich text object in pixels. .PP See also setWidth(). .PP Examples: .)l action/application.cpp, application/application.cpp, helpviewer/helpwindow.cpp, and mdi/application.cpp. -.SH "bool QSimpleRichText::inText ( const TQPoint & pos ) const" +.SH "bool TQSimpleRichText::inText ( const TQPoint & pos ) const" Returns TRUE if \fIpos\fR is within a text line of the rich text object; otherwise returns FALSE. -.SH "void QSimpleRichText::setDefaultFont ( const TQFont & f )" +.SH "void TQSimpleRichText::setDefaultFont ( const TQFont & f )" Sets the default font for the rich text object to \fIf\fR -.SH "void QSimpleRichText::setWidth ( TQPainter * p, int w )" +.SH "void TQSimpleRichText::setWidth ( TQPainter * p, int w )" Sets the width of the rich text object to \fIw\fR pixels, recalculating the layout as if it were to be drawn with painter \fIp\fR. .PP Passing a painter is useful when you intend drawing on devices other than the screen, for example a TQPrinter. @@ -139,17 +139,17 @@ See also height() and adjustSize(). .PP Examples: .)l action/application.cpp, application/application.cpp, helpviewer/helpwindow.cpp, and mdi/application.cpp. -.SH "void QSimpleRichText::setWidth ( int w )" +.SH "void TQSimpleRichText::setWidth ( int w )" This is an overloaded member function, provided for convenience. It behaves essentially like the above function. .PP Sets the width of the rich text object to \fIw\fR pixels. .PP See also height() and adjustSize(). -.SH "int QSimpleRichText::width () const" +.SH "int TQSimpleRichText::width () const" Returns the set width of the rich text object in pixels. .PP See also widthUsed(). -.SH "int QSimpleRichText::widthUsed () const" +.SH "int TQSimpleRichText::widthUsed () const" Returns the width in pixels that is actually used by the rich text object. This can be smaller or wider than the set width. .PP It may be wider, for example, if the text contains images or non-breakable words that are already wider than the available space. It's smaller when the object only consists of lines that do not fill the width completely. @@ -157,7 +157,7 @@ It may be wider, for example, if the text contains images or non-breakable words See also width(). .SH "SEE ALSO" -.BR http://doc.trolltech.com/ntqsimplerichtext.html +.BR http://doc.trolltech.com/tqsimplerichtext.html .BR http://www.trolltech.com/faq/tech.html .SH COPYRIGHT Copyright 1992-2007 Trolltech ASA, http://www.trolltech.com. See the diff --git a/doc/man/man3/tqsizepolicy.3qt b/doc/man/man3/tqsizepolicy.3qt index 96fae066b..541edca7a 100644 --- a/doc/man/man3/tqsizepolicy.3qt +++ b/doc/man/man3/tqsizepolicy.3qt @@ -132,7 +132,7 @@ This is the constructor normally used to return a value in the overridden TQWidg .PP It constructs a TQSizePolicy with independent horizontal and vertical sizing types, \fIhor\fR and \fIver\fR respectively. These sizing types affect how the widget is treated by the layout engine. .PP -If \fIhfw\fR is TRUE, the preferred height of the widget is dependent on the width of the widget (for example, a QLabel with line wrapping). +If \fIhfw\fR is TRUE, the preferred height of the widget is dependent on the width of the widget (for example, a TQLabel with line wrapping). .PP See also horData(), verData(), and hasHeightForWidth(). .SH "TQSizePolicy::TQSizePolicy ( SizeType hor, SizeType ver, uchar horStretch, uchar verStretch, bool hfw = FALSE )" diff --git a/doc/man/man3/tqsqlpropertymap.3qt b/doc/man/man3/tqsqlpropertymap.3qt index bf0e380aa..a41aeb310 100644 --- a/doc/man/man3/tqsqlpropertymap.3qt +++ b/doc/man/man3/tqsqlpropertymap.3qt @@ -123,7 +123,7 @@ Constructs a TQSqlPropertyMap. .PP The default property mappings used by TQt widgets are:
    .nf .TS -l - l. Widgets Property QCheckBox, QRadioButton checked QComboBox, QListBox currentItem TQDateEdit date TQDateTimeEdit dateTime TQTextBrowser source QButton, QDial, QLabel, QLineEdit, QMultiLineEdit, QPushButton, TQTextEdit, text TQTimeEdit time QLCDNumber, QScrollBar QSlider, QSpinBox +l - l. Widgets Property QCheckBox, QRadioButton checked QComboBox, QListBox currentItem TQDateEdit date TQDateTimeEdit dateTime TQTextBrowser source QButton, QDial, TQLabel, QLineEdit, QMultiLineEdit, QPushButton, TQTextEdit, text TQTimeEdit time QLCDNumber, QScrollBar QSlider, QSpinBox .TE .fi
    diff --git a/doc/man/man3/tqstatusbar.3qt b/doc/man/man3/tqstatusbar.3qt index b7871a461..10802279d 100644 --- a/doc/man/man3/tqstatusbar.3qt +++ b/doc/man/man3/tqstatusbar.3qt @@ -100,7 +100,7 @@ To display a \fItemporary\fR message, call message() (perhaps by connecting a su .br .fi .PP -\fINormal\fR and \fIPermanent\fR messages are displayed by creating a small widget and then adding it to the status bar with addWidget(). Widgets like QLabel, QProgressBar or even TQToolButton are useful for adding to status bars. removeWidget() is used to remove widgets. +\fINormal\fR and \fIPermanent\fR messages are displayed by creating a small widget and then adding it to the status bar with addWidget(). Widgets like TQLabel, QProgressBar or even TQToolButton are useful for adding to status bars. removeWidget() is used to remove widgets. .PP .nf .br @@ -117,7 +117,7 @@ By default TQStatusBar provides a TQSizeGrip in the lower-right corner. You can .ce 1 .B "[Image Omitted]" .PP -See also TQToolBar, TQMainWindow, QLabel, GUI Design Handbook: Status Bar, Main Window and Related Classes, and Help System. +See also TQToolBar, TQMainWindow, TQLabel, GUI Design Handbook: Status Bar, Main Window and Related Classes, and Help System. .SH MEMBER FUNCTION DOCUMENTATION .SH "TQStatusBar::TQStatusBar ( TQWidget * parent = 0, const char * name = 0 )" Constructs a status bar called \fIname\fR with parent \fIparent\fR and with a size grip. diff --git a/doc/man/man3/tqstring.3qt b/doc/man/man3/tqstring.3qt index 9a9fb8852..670cb7164 100644 --- a/doc/man/man3/tqstring.3qt +++ b/doc/man/man3/tqstring.3qt @@ -400,10 +400,10 @@ All the functions in this class are reentrant when TQt is built with thread supp .BI "TQChar \fBoperator[]\fR ( int i ) const" .br .ti -1c -.BI "QCharRef \fBat\fR ( uint i )" +.BI "TQCharRef \fBat\fR ( uint i )" .br .ti -1c -.BI "QCharRef \fBoperator[]\fR ( int i )" +.BI "TQCharRef \fBoperator[]\fR ( int i )" .br .ti -1c .BI "TQChar \fBconstref\fR ( uint i ) const" @@ -655,7 +655,7 @@ The 'copying' of input to output is almost as fast as copying a pointer because .PP If you wish to create a deep copy of a TQString without losing any Unicode information then you should use TQDeepCopy. .PP -See also TQChar, TQCString, TQByteArray, QConstString, Implicitly and Explicitly Shared Classes, Text Related Classes, and Non-GUI Classes. +See also TQChar, TQCString, TQByteArray, TQConstString, Implicitly and Explicitly Shared Classes, Text Related Classes, and Non-GUI Classes. .SS "Member Type Documentation" .SH "TQString::SectionFlags" .TP @@ -780,7 +780,7 @@ The \fIfieldWidth\fR value specifies the minimum amount of space that \fIa\fR is .PP \fIa\fR is expressed in base \fIbase\fR, which is 10 by default and must be between 2 and 36. .PP -The '%' can be followed by an 'L', in which case the sequence is replaced with a localized representation of \fIa\fR. The conversion uses the default locale. The default locale is determined from the system's locale settings at application startup. It can be changed using QLocale::setDefault(). The 'L' flag is ignored if \fIbase\fR is not 10. +The '%' can be followed by an 'L', in which case the sequence is replaced with a localized representation of \fIa\fR. The conversion uses the default locale. The default locale is determined from the system's locale settings at application startup. It can be changed using TQLocale::setDefault(). The 'L' flag is ignored if \fIbase\fR is not 10. .PP .nf .br @@ -793,7 +793,7 @@ The '%' can be followed by an 'L', in which case the sequence is replaced with a // str == "Decimal 63 is 3f in hexadecimal" .br .br - QLocale::setDefault(QLocale::English, QLocale::UnitedStates); + TQLocale::setDefault(TQLocale::English, TQLocale::UnitedStates); .br str = TQString( "%1 %L2 %L3" ) .br @@ -916,7 +916,7 @@ Returns the character at index \fIi\fR, or 0 if \fIi\fR is beyond the length of .fi .PP If the TQString is not const (i.e. const TQString) or const& (i.e. const TQString &), then the non-const overload of at() will be used instead. -.SH "QCharRef TQString::at ( uint i )" +.SH "TQCharRef TQString::at ( uint i )" This is an overloaded member function, provided for convenience. It behaves essentially like the above function. .PP The function returns a reference to the character at index \fIi\fR. The resulting reference can then be assigned to, or used immediately, but it will become invalid once further modifications are made to the original string. @@ -1553,14 +1553,14 @@ Sets the string to contain just the single character \fIc\fR. Returns the character at index \fIi\fR, or TQChar::null if \fIi\fR is beyond the length of the string. .PP If the TQString is not const (i.e., const TQString) or const& (i.e., const TQString&), then the non-const overload of operator[] will be used instead. -.SH "QCharRef TQString::operator[] ( int i )" +.SH "TQCharRef TQString::operator[] ( int i )" This is an overloaded member function, provided for convenience. It behaves essentially like the above function. .PP The function returns a reference to the character at index \fIi\fR. The resulting reference can then be assigned to, or used immediately, but it will become invalid once further modifications are made to the original string. .PP -If \fIi\fR is beyond the length of the string then the string is expanded with TQChar::nulls, so that the QCharRef references a valid (null) character in the string. +If \fIi\fR is beyond the length of the string then the string is expanded with TQChar::nulls, so that the TQCharRef references a valid (null) character in the string. .PP -The QCharRef internal class can be used much like a constant TQChar, but if you assign to it, you change the original string (which will detach itself because of TQString's copy-on-write semantics). You will get compilation errors if you try to use the result as anything but a TQChar. +The TQCharRef internal class can be used much like a constant TQChar, but if you assign to it, you change the original string (which will detach itself because of TQString's copy-on-write semantics). You will get compilation errors if you try to use the result as anything but a TQChar. .SH "TQString & TQString::prepend ( const TQString & s )" Inserts \fIs\fR at the beginning of the string and returns a reference to the string. .PP @@ -2147,7 +2147,7 @@ toULongLong() .TP toFloat() .TP -toDouble() can handle numbers represented in various locales. These representations may use different characters for the decimal point, thousands group sepearator and even individual digits. TQString's functions try to interpret the string according to the current locale. The current locale is determined from the system at application startup and can be changed by calling QLocale::setDefault(). If the string cannot be interpreted according to the current locale, this function falls back on the "C" locale. +toDouble() can handle numbers represented in various locales. These representations may use different characters for the decimal point, thousands group sepearator and even individual digits. TQString's functions try to interpret the string according to the current locale. The current locale is determined from the system at application startup and can be changed by calling TQLocale::setDefault(). If the string cannot be interpreted according to the current locale, this function falls back on the "C" locale. .PP .nf .br @@ -2156,14 +2156,14 @@ toDouble() can handle numbers represented in various locales. These representati double d; .br .br - QLocale::setDefault(QLocale::C); + TQLocale::setDefault(TQLocale::C); .br d = TQString( "1234,56" ).toDouble(&ok); // ok == false .br d = TQString( "1234.56" ).toDouble(&ok); // ok == true, d == 1234.56 .br .br - QLocale::setDefault(QLocale::German); + TQLocale::setDefault(TQLocale::German); .br d = TQString( "1234,56" ).toDouble(&ok); // ok == true, d == 1234.56 .br @@ -2171,13 +2171,13 @@ toDouble() can handle numbers represented in various locales. These representati .br .fi .PP -Due to the ambiguity between the decimal point and thousands group separator in various locales, these functions do not handle thousands group separators. If you need to convert such numbers, use the corresponding function in QLocale. +Due to the ambiguity between the decimal point and thousands group separator in various locales, these functions do not handle thousands group separators. If you need to convert such numbers, use the corresponding function in TQLocale. .PP .nf .br bool ok; .br - QLocale::setDefault(QLocale::C); + TQLocale::setDefault(TQLocale::C); .br double d = TQString( "1,234,567.89" ).toDouble(&ok); // ok == false .br @@ -2185,7 +2185,7 @@ Due to the ambiguity between the decimal point and thousands group separator in .PP \fBWarning:\fR If the string contains trailing whitespace this function will fail, and set \fI*ok\fR to false if \fIok\fR is not 0. Leading whitespace is ignored. .PP -See also number(), QLocale::setDefault(), QLocale::toDouble(), and stripWhiteSpace(). +See also number(), TQLocale::setDefault(), TQLocale::toDouble(), and stripWhiteSpace(). .SH "float TQString::toFloat ( bool * ok = 0 ) const" Returns the string converted to a \fCfloat\fR value. .PP diff --git a/doc/man/man3/tqstylesheet.3qt b/doc/man/man3/tqstylesheet.3qt index 5ff18ce22..c2d4a0922 100644 --- a/doc/man/man3/tqstylesheet.3qt +++ b/doc/man/man3/tqstylesheet.3qt @@ -58,7 +58,7 @@ Inherits TQObject. .SH DESCRIPTION The TQStyleSheet class is a collection of styles for rich text rendering and a generator of tags. .PP -By creating TQStyleSheetItem objects for a style sheet you build a definition of a set of tags. This definition will be used by the internal rich text rendering system to parse and display text documents to which the style sheet applies. Rich text is normally visualized in a TQTextEdit or a TQTextBrowser. However, QLabel, QWhatsThis and QMessageBox also support it, and other classes are likely to follow. With QSimpleRichText it is possible to use the rich text renderer for custom widgets as well. +By creating TQStyleSheetItem objects for a style sheet you build a definition of a set of tags. This definition will be used by the internal rich text rendering system to parse and display text documents to which the style sheet applies. Rich text is normally visualized in a TQTextEdit or a TQTextBrowser. However, TQLabel, TQWhatsThis and QMessageBox also support it, and other classes are likely to follow. With TQSimpleRichText it is possible to use the rich text renderer for custom widgets as well. .PP The default TQStyleSheet object has the following style bindings, sorted by structuring bindings, anchors, character style bindings (i.e. inline styles), special elements such as horizontal lines or images, and other tags. In addition, rich text supports simple HTML tables. .PP @@ -152,7 +152,7 @@ See also escape(). Examples: .)l action/application.cpp, application/application.cpp, and mdi/application.cpp. .SH "TQStyleSheet * TQStyleSheet::defaultSheet ()\fC [static]\fR" -Returns the application-wide default style sheet. This style sheet is used by rich text rendering classes such as QSimpleRichText, QWhatsThis and QMessageBox to define the rendering style and available tags within rich text documents. It also serves as the initial style sheet for the more complex render widgets, TQTextEdit and TQTextBrowser. +Returns the application-wide default style sheet. This style sheet is used by rich text rendering classes such as TQSimpleRichText, TQWhatsThis and QMessageBox to define the rendering style and available tags within rich text documents. It also serves as the initial style sheet for the more complex render widgets, TQTextEdit and TQTextBrowser. .PP See also setDefaultSheet(). .SH "void TQStyleSheet::error ( const TQString & msg ) const\fC [virtual]\fR" @@ -192,7 +192,7 @@ See also defaultSheet(). .PP Generates an internal object for the tag called \fIname\fR, given the attributes \fIattr\fR, and using additional information provided by the mime source factory \fIfactory\fR. .PP -\fIcontext\fR is the optional context of the document, i.e. the path to look for relative links. This becomes important if the text contains relative references, for example within image tags. QSimpleRichText always uses the default mime source factory (see TQMimeSourceFactory::defaultFactory()) to resolve these references. The context will then be used to calculate the absolute path. See TQMimeSourceFactory::makeAbsolute() for details. +\fIcontext\fR is the optional context of the document, i.e. the path to look for relative links. This becomes important if the text contains relative references, for example within image tags. TQSimpleRichText always uses the default mime source factory (see TQMimeSourceFactory::defaultFactory()) to resolve these references. The context will then be used to calculate the absolute path. See TQMimeSourceFactory::makeAbsolute() for details. .PP \fIemptyTag\fR and \fIdoc\fR are for internal use only. .PP diff --git a/doc/man/man3/tqsyntaxhighlighter.3qt b/doc/man/man3/tqsyntaxhighlighter.3qt index 058be188e..2d3e92973 100644 --- a/doc/man/man3/tqsyntaxhighlighter.3qt +++ b/doc/man/man3/tqsyntaxhighlighter.3qt @@ -1,5 +1,5 @@ '\" t -.TH QSyntaxHighlighter 3qt "2 February 2007" "Trolltech AS" \" -*- nroff -*- +.TH TQSyntaxHighlighter 3qt "2 February 2007" "Trolltech AS" \" -*- nroff -*- .\" Copyright 1992-2007 Trolltech ASA. All rights reserved. See the .\" license file included in the distribution for a complete license .\" statement. @@ -7,19 +7,19 @@ .ad l .nh .SH NAME -QSyntaxHighlighter \- Base class for implementing TQTextEdit syntax highlighters +TQSyntaxHighlighter \- Base class for implementing TQTextEdit syntax highlighters .SH SYNOPSIS -\fC#include \fR +\fC#include \fR .PP Inherits Qt. .PP .SS "Public Members" .in +1c .ti -1c -.BI "\fBQSyntaxHighlighter\fR ( TQTextEdit * textEdit )" +.BI "\fBTQSyntaxHighlighter\fR ( TQTextEdit * textEdit )" .br .ti -1c -.BI "virtual \fB~QSyntaxHighlighter\fR ()" +.BI "virtual \fB~TQSyntaxHighlighter\fR ()" .br .ti -1c .BI "virtual int \fBhighlightParagraph\fR ( const TQString & text, int endStateOfLastPara ) = 0" @@ -44,27 +44,27 @@ Inherits Qt. .br .in -1c .SH DESCRIPTION -The QSyntaxHighlighter class is a base class for implementing TQTextEdit syntax highlighters. +The TQSyntaxHighlighter class is a base class for implementing TQTextEdit syntax highlighters. .PP A syntax highligher automatically highlights parts of the text in a TQTextEdit. Syntax highlighters are often used when the user is entering text in a specific format (for example, source code) and help the user to read the text and identify syntax errors. .PP -To provide your own syntax highlighting for TQTextEdit, you must subclass QSyntaxHighlighter and reimplement highlightParagraph(). +To provide your own syntax highlighting for TQTextEdit, you must subclass TQSyntaxHighlighter and reimplement highlightParagraph(). .PP -When you create an instance of your QSyntaxHighlighter subclass, pass it the TQTextEdit that you want the syntax highlighting to be applied to. After this your highlightParagraph() function will be called automatically whenever necessary. Use your highlightParagraph() function to apply formatting (e.g. setting the font and color) to the text that is passed to it. +When you create an instance of your TQSyntaxHighlighter subclass, pass it the TQTextEdit that you want the syntax highlighting to be applied to. After this your highlightParagraph() function will be called automatically whenever necessary. Use your highlightParagraph() function to apply formatting (e.g. setting the font and color) to the text that is passed to it. .PP See also Basic Widgets and Text Related Classes. .SH MEMBER FUNCTION DOCUMENTATION -.SH "QSyntaxHighlighter::QSyntaxHighlighter ( TQTextEdit * textEdit )" -Constructs the QSyntaxHighlighter and installs it on \fItextEdit\fR. +.SH "TQSyntaxHighlighter::TQSyntaxHighlighter ( TQTextEdit * textEdit )" +Constructs the TQSyntaxHighlighter and installs it on \fItextEdit\fR. .PP -It is the caller's responsibility to delete the QSyntaxHighlighter when it is no longer needed. -.SH "QSyntaxHighlighter::~QSyntaxHighlighter ()\fC [virtual]\fR" +It is the caller's responsibility to delete the TQSyntaxHighlighter when it is no longer needed. +.SH "TQSyntaxHighlighter::~TQSyntaxHighlighter ()\fC [virtual]\fR" Destructor. Uninstalls this syntax highlighter from the textEdit() -.SH "int QSyntaxHighlighter::currentParagraph () const" +.SH "int TQSyntaxHighlighter::currentParagraph () const" Returns the id of the paragraph which is highlighted, or -1 of no paragraph is currently highlighted. .PP Usually this function is called from within highlightParagraph(). -.SH "int QSyntaxHighlighter::highlightParagraph ( const TQString & text, int endStateOfLastPara )\fC [pure virtual]\fR" +.SH "int TQSyntaxHighlighter::highlightParagraph ( const TQString & text, int endStateOfLastPara )\fC [pure virtual]\fR" This function is called when necessary by the rich text engine, i.e. on paragraphs which have changed. .PP In your reimplementation you should parse the paragraph's \fItext\fR and call setFormat() as often as necessary to apply any font and color changes that you require. Your function must return a value which indicates the paragraph's end state: see below. @@ -80,22 +80,22 @@ The value you return is up to you. We recommend only returning 0 (to signify tha To find out which paragraph is highlighted, call currentParagraph(). .PP For example, if you're writing a simple C++ syntax highlighter, you might designate 1 to signify "in comment". For a paragraph that ended in the middle of a comment you'd return 1, and for other paragraphs you'd return 0. In your parsing code if \fIendStateOfLastPara\fR was 1, you would highlight the text as a C++ comment until you reached the closing \fC*\fR\fC/\fR. -.SH "void QSyntaxHighlighter::rehighlight ()" +.SH "void TQSyntaxHighlighter::rehighlight ()" Redoes the highlighting of the whole document. -.SH "void QSyntaxHighlighter::setFormat ( int start, int count, const TQFont & font, const TQColor & color )" +.SH "void TQSyntaxHighlighter::setFormat ( int start, int count, const TQFont & font, const TQColor & color )" This function is applied to the syntax highlighter's current paragraph (the text of which is passed to the highlightParagraph() function). .PP The specified \fIfont\fR and \fIcolor\fR are applied to the text from position \fIstart\fR for \fIcount\fR characters. (If \fIcount\fR is 0, nothing is done.) -.SH "void QSyntaxHighlighter::setFormat ( int start, int count, const TQColor & color )" +.SH "void TQSyntaxHighlighter::setFormat ( int start, int count, const TQColor & color )" This is an overloaded member function, provided for convenience. It behaves essentially like the above function. -.SH "void QSyntaxHighlighter::setFormat ( int start, int count, const TQFont & font )" +.SH "void TQSyntaxHighlighter::setFormat ( int start, int count, const TQFont & font )" This is an overloaded member function, provided for convenience. It behaves essentially like the above function. -.SH "TQTextEdit * QSyntaxHighlighter::textEdit () const" +.SH "TQTextEdit * TQSyntaxHighlighter::textEdit () const" Returns the TQTextEdit on which this syntax highlighter is installed .SH "SEE ALSO" -.BR http://doc.trolltech.com/ntqsyntaxhighlighter.html +.BR http://doc.trolltech.com/tqsyntaxhighlighter.html .BR http://www.trolltech.com/faq/tech.html .SH COPYRIGHT Copyright 1992-2007 Trolltech ASA, http://www.trolltech.com. See the diff --git a/doc/man/man3/tqt.3qt b/doc/man/man3/tqt.3qt index 631bac95b..0921bb909 100644 --- a/doc/man/man3/tqt.3qt +++ b/doc/man/man3/tqt.3qt @@ -11,7 +11,7 @@ Qt \- Namespace for miscellaneous identifiers that need to be global-like .SH SYNOPSIS \fC#include \fR .PP -Inherited by TQObject, TQPixmap, TQBrush, TQCanvasItem, QCursor, TQPainter, QEvent, TQIconViewItem, QKeySequence, QListViewItem, QCustomMenuItem, TQPen, TQStyleSheetItem, QSyntaxHighlighter, QTab, QTableItem, TQThread, TQToolTip, and QWhatsThis. +Inherited by TQObject, TQPixmap, TQBrush, TQCanvasItem, QCursor, TQPainter, QEvent, TQIconViewItem, QKeySequence, QListViewItem, QCustomMenuItem, TQPen, TQStyleSheetItem, TQSyntaxHighlighter, QTab, QTableItem, TQThread, TQToolTip, and TQWhatsThis. .PP .SS "Public Members" .in +1c @@ -1210,7 +1210,7 @@ You can use as many modifier flags as you want, except that SingleLine and WordB .PP Flags that are inappropriate for a given use (e.g. ShowPrefix to QGridLayout::addWidget()) are generally ignored. .SH "TQt::TextFormat" -This enum is used in widgets that can display both plain text and rich text, e.g. QLabel. It is used for deciding whether a text string should be interpreted as one or the other. This is normally done by passing one of the enum values to a setTextFormat() function. +This enum is used in widgets that can display both plain text and rich text, e.g. TQLabel. It is used for deciding whether a text string should be interpreted as one or the other. This is normally done by passing one of the enum values to a setTextFormat() function. .TP \fCQt::PlainText\fR - The text string is interpreted as a plain text string. .TP diff --git a/doc/man/man3/tqtextbrowser.3qt b/doc/man/man3/tqtextbrowser.3qt index 84d740581..b4d93f33c 100644 --- a/doc/man/man3/tqtextbrowser.3qt +++ b/doc/man/man3/tqtextbrowser.3qt @@ -108,7 +108,7 @@ This is to ensure that the factory is able to resolve the document names. .PP TQTextBrowser interprets the tags it processes in accordance with the default style sheet. Change the style sheet with setStyleSheet(); see TQStyleSheet for details. .PP -If you want to provide your users with editable rich text use TQTextEdit. If you want a text browser without hypertext navigation use TQTextEdit, and use TQTextEdit::setReadOnly() to disable editing. If you just need to display a small piece of rich text use QSimpleRichText or QLabel. +If you want to provide your users with editable rich text use TQTextEdit. If you want a text browser without hypertext navigation use TQTextEdit, and use TQTextEdit::setReadOnly() to disable editing. If you just need to display a small piece of rich text use TQSimpleRichText or TQLabel. .PP .ce 1 .B "[Image Omitted]" diff --git a/doc/man/man3/tqtextedit.3qt b/doc/man/man3/tqtextedit.3qt index cf041bf7b..b990e3b25 100644 --- a/doc/man/man3/tqtextedit.3qt +++ b/doc/man/man3/tqtextedit.3qt @@ -192,7 +192,7 @@ Inherited by QMultiLineEdit, TQTextBrowser, and TQTextView. .BI "uint \fBautoFormatting\fR () const" .br .ti -1c -.BI "QSyntaxHighlighter * \fBsyntaxHighlighter\fR () const" +.BI "TQSyntaxHighlighter * \fBsyntaxHighlighter\fR () const" .br .in -1c .SS "Public Slots" @@ -539,7 +539,7 @@ l - l. Mode Command Notes Plain Text Editor setTextFormat(PlainText) Set text wi .PP 1.A more complete API that supports setting margins, images, etc., is planned for a later TQt release. .PP -TQTextEdit can be used as a syntax highlighting editor when used in conjunction with QSyntaxHighlighter. +TQTextEdit can be used as a syntax highlighting editor when used in conjunction with TQSyntaxHighlighter. .PP We recommend that you always call setTextFormat() to set the mode you want to use. If you use AutoText then setText() and append() will try to determine whether the text they are given is plain text or rich text. If you use RichText then setText() and append() will assume that the text they are given is rich text. insert() simply inserts the text it is given. .PP @@ -553,7 +553,7 @@ The text edit documentation uses the following concepts: .PP TQTextEdit can display images (using TQMimeSourceFactory), lists and tables. If the text is too large to view within the text edit's viewport, scrollbars will appear. The text edit can load both plain text and HTML files (a subset of HTML 3.2 and 4). The rendering style and the set of valid tags are defined by a styleSheet(). Custom tags can be created and placed in a custom style sheet. Change the style sheet with setStyleSheet(); see TQStyleSheet for details. The images identified by image tags are displayed if they can be interpreted using the text edit's TQMimeSourceFactory; see setMimeSourceFactory(). .PP -If you want a text browser with more navigation use TQTextBrowser. If you just need to display a small piece of rich text use QLabel or QSimpleRichText. +If you want a text browser with more navigation use TQTextBrowser. If you just need to display a small piece of rich text use TQLabel or TQSimpleRichText. .PP If you create a new TQTextEdit, and want to allow the user to edit rich text, call setTextFormat(TQt::RichText) to ensure that the text is treated as rich text. (Rich text uses HTML tags to set text formatting attributes. See TQStyleSheet for information on the HTML tags that are supported.). If you don't call setTextFormat() explicitly the text edit will guess from the text itself whether it is rich text or plain text. This means that if the text looks like HTML or XML it will probably be interpreted as rich text, so you should call setTextFormat(TQt::PlainText) to preserve such text. .PP @@ -1215,8 +1215,8 @@ Examples: TQTextEdit is optimized for large amounts text. One of its optimizations is to format only the visible text, formatting the rest on demand, e.g. as the user scrolls, so you don't usually need to call this function. .PP In some situations you may want to force the whole text to be formatted. For example, if after calling setText(), you wanted to know the height of the document (using contentsHeight()), you would call this function first. -.SH "QSyntaxHighlighter * TQTextEdit::syntaxHighlighter () const" -Returns the QSyntaxHighlighter set on this TQTextEdit. 0 is returned if no syntax highlighter is set. +.SH "TQSyntaxHighlighter * TQTextEdit::syntaxHighlighter () const" +Returns the TQSyntaxHighlighter set on this TQTextEdit. 0 is returned if no syntax highlighter is set. .SH "bool TQTextEdit::tabChangesFocus () const" Returns TRUE if TAB changes focus or is accepted as input; otherwise returns FALSE. See the "tabChangesFocus" property for details. .SH "int TQTextEdit::tabStopWidth () const" diff --git a/doc/man/man3/tqtooltip.3qt b/doc/man/man3/tqtooltip.3qt index efc66404f..5c1756001 100644 --- a/doc/man/man3/tqtooltip.3qt +++ b/doc/man/man3/tqtooltip.3qt @@ -163,7 +163,7 @@ You can retrieve the text of a tooltip for a given position within a widget usin .PP The global tooltip font and palette can be set with the static setFont() and setPalette() functions respectively. .PP -See also TQStatusBar, QWhatsThis, TQToolTipGroup, GUI Design Handbook: Tool Tip, and Help System. +See also TQStatusBar, TQWhatsThis, TQToolTipGroup, GUI Design Handbook: Tool Tip, and Help System. .SH MEMBER FUNCTION DOCUMENTATION .SH "TQToolTip::TQToolTip ( TQWidget * widget, TQToolTipGroup * group = 0 )" Constructs a tool tip object. This is only necessary if you need tool tips on regions that can move within the widget (most often because the widget's contents can scroll). diff --git a/doc/man/man3/tqwhatsthis.3qt b/doc/man/man3/tqwhatsthis.3qt index 0912cee25..40de1c1ab 100644 --- a/doc/man/man3/tqwhatsthis.3qt +++ b/doc/man/man3/tqwhatsthis.3qt @@ -1,5 +1,5 @@ '\" t -.TH QWhatsThis 3qt "2 February 2007" "Trolltech AS" \" -*- nroff -*- +.TH TQWhatsThis 3qt "2 February 2007" "Trolltech AS" \" -*- nroff -*- .\" Copyright 1992-2007 Trolltech ASA. All rights reserved. See the .\" license file included in the distribution for a complete license .\" statement. @@ -7,19 +7,19 @@ .ad l .nh .SH NAME -QWhatsThis \- Simple description of any widget, i.e. answering the question "What's this?" +TQWhatsThis \- Simple description of any widget, i.e. answering the question "What's this?" .SH SYNOPSIS -\fC#include \fR +\fC#include \fR .PP Inherits Qt. .PP .SS "Public Members" .in +1c .ti -1c -.BI "\fBQWhatsThis\fR ( TQWidget * widget )" +.BI "\fBTQWhatsThis\fR ( TQWidget * widget )" .br .ti -1c -.BI "virtual \fB~QWhatsThis\fR ()" +.BI "virtual \fB~TQWhatsThis\fR ()" .br .ti -1c .BI "virtual TQString \fBtext\fR ( const TQPoint & )" @@ -59,16 +59,16 @@ Inherits Qt. .br .in -1c .SH DESCRIPTION -The QWhatsThis class provides a simple description of any widget, i.e. answering the question "What's this?". +The TQWhatsThis class provides a simple description of any widget, i.e. answering the question "What's this?". .PP .PP" What's this?" help is part of an application's online help system that provides users with information about functionality, usage, background etc., in various levels of detail from short tool tips to full text browsing help windows. .PP -QWhatsThis provides a single window with an explanatory text that pops up when the user asks "What's this?". The default way to do this is to focus the relevant widget and press Shift+F1. The help text appears immediately; it goes away as soon as the user does something else. +TQWhatsThis provides a single window with an explanatory text that pops up when the user asks "What's this?". The default way to do this is to focus the relevant widget and press Shift+F1. The help text appears immediately; it goes away as soon as the user does something else. .PP (Note that if there is an accelerator for Shift+F1, this mechanism will not work.) .PP -To add "What's this?" text to a widget you simply call QWhatsThis::add() for the widget. For example, to assign text to a menu item, call TQMenuData::setWhatsThis(); for a global accelerator key, call QAccel::setWhatsThis() and If you're using actions, use TQAction::setWhatsThis(). +To add "What's this?" text to a widget you simply call TQWhatsThis::add() for the widget. For example, to assign text to a menu item, call TQMenuData::setWhatsThis(); for a global accelerator key, call QAccel::setWhatsThis() and If you're using actions, use TQAction::setWhatsThis(). .PP The text can be either rich text or plain text. If you specify a rich text formatted string, it will be rendered using the default stylesheet. This makes it possible to embed images. See TQStyleSheet::defaultSheet() for details. .PP @@ -89,7 +89,7 @@ The text can be either rich text or plain text. If you specify a rich text forma fileOpenAction->setWhatsThis( fileOpenText ); .fi .PP -An alternative way to enter "What's this?" mode is to use the ready-made tool bar tool button from QWhatsThis::whatsThisButton(). By invoking this context help button (in the picture below the first one from the right) the user switches into "What's this?" mode. If they now click on a widget the appropriate help text is shown. The mode is left when help is given or when the user presses Esc. +An alternative way to enter "What's this?" mode is to use the ready-made tool bar tool button from TQWhatsThis::whatsThisButton(). By invoking this context help button (in the picture below the first one from the right) the user switches into "What's this?" mode. If they now click on a widget the appropriate help text is shown. The mode is left when help is given or when the user presses Esc. .PP
    .ce 1 @@ -99,21 +99,21 @@ An alternative way to enter "What's this?" mode is to use the ready-made tool ba .PP If you are using TQMainWindow you can also use the TQMainWindow::whatsThis() slot to invoke the mode from a menu item. .PP -For more control you can create a dedicated QWhatsThis object for a special widget. By subclassing and reimplementing QWhatsThis::text() it is possible to have different help texts, depending on the position of the mouse click. By reimplementing QWhatsThis::clicked() it is possible to have hyperlinks inside the help texts. +For more control you can create a dedicated TQWhatsThis object for a special widget. By subclassing and reimplementing TQWhatsThis::text() it is possible to have different help texts, depending on the position of the mouse click. By reimplementing TQWhatsThis::clicked() it is possible to have hyperlinks inside the help texts. .PP If you wish to control the "What's this?" behavior of a widget manually see TQWidget::customWhatsThis(). .PP -The What's This object can be removed using QWhatsThis::remove(), although this is rarely necessary because it is automatically removed when the widget is destroyed. +The What's This object can be removed using TQWhatsThis::remove(), although this is rarely necessary because it is automatically removed when the widget is destroyed. .PP See also TQToolTip and Help System. .SH MEMBER FUNCTION DOCUMENTATION -.SH "QWhatsThis::QWhatsThis ( TQWidget * widget )" +.SH "TQWhatsThis::TQWhatsThis ( TQWidget * widget )" Constructs a dynamic "What's this?" object for \fIwidget\fR. The object is deleted when the \fIwidget\fR is destroyed. .PP -When the widget is queried by the user the text() function of this QWhatsThis will be called to provide the appropriate text, rather than using the text assigned by add(). -.SH "QWhatsThis::~QWhatsThis ()\fC [virtual]\fR" +When the widget is queried by the user the text() function of this TQWhatsThis will be called to provide the appropriate text, rather than using the text assigned by add(). +.SH "TQWhatsThis::~TQWhatsThis ()\fC [virtual]\fR" Destroys the object and frees any allocated resources. -.SH "void QWhatsThis::add ( TQWidget * widget, const TQString & text )\fC [static]\fR" +.SH "void TQWhatsThis::add ( TQWidget * widget, const TQString & text )\fC [static]\fR" Adds \fItext\fR as "What's this" help for \fIwidget\fR. If the text is rich text formatted (i.e. it contains markup) it will be rendered with the default stylesheet TQStyleSheet::defaultSheet(). .PP The text is destroyed if the widget is later destroyed, so it need not be explicitly removed. @@ -122,19 +122,19 @@ See also remove(). .PP Examples: .)l application/application.cpp, helpsystem/mainwindow.cpp, and mdi/application.cpp. -.SH "bool QWhatsThis::clicked ( const TQString & href )\fC [virtual]\fR" +.SH "bool TQWhatsThis::clicked ( const TQString & href )\fC [virtual]\fR" This virtual function is called when the user clicks inside the" What's this?" window. \fIhref\fR is the link the user clicked on, or TQString::null if there was no link. .PP If the function returns TRUE (the default), the "What's this?" window is closed, otherwise it remains visible. .PP The default implementation ignores \fIhref\fR and returns TRUE. -.SH "void QWhatsThis::display ( const TQString & text, const TQPoint & pos = QCursor::pos ( ), TQWidget * w = 0 )\fC [static]\fR" +.SH "void TQWhatsThis::display ( const TQString & text, const TQPoint & pos = QCursor::pos ( ), TQWidget * w = 0 )\fC [static]\fR" Display \fItext\fR in a help window at the global screen position \fIpos\fR. .PP -If widget \fIw\fR is not 0 and has its own dedicated QWhatsThis object, this object will receive clicked() messages when the user clicks on hyperlinks inside the help text. +If widget \fIw\fR is not 0 and has its own dedicated TQWhatsThis object, this object will receive clicked() messages when the user clicks on hyperlinks inside the help text. .PP -See also QWhatsThis::clicked(). -.SH "void QWhatsThis::enterWhatsThisMode ()\fC [static]\fR" +See also TQWhatsThis::clicked(). +.SH "void TQWhatsThis::enterWhatsThisMode ()\fC [static]\fR" Enters "What's this?" mode and returns immediately. .PP Qt will install a special cursor and take over mouse input until the user clicks somewhere. It then shows any help available and ends "What's this?" mode. Finally, TQt removes the special cursor and help window and then restores ordinary event processing, at which point the left mouse button is no longer pressed. @@ -142,47 +142,47 @@ Qt will install a special cursor and take over mouse input until the user clicks The user can also use the Esc key to leave "What's this?" mode. .PP See also inWhatsThisMode() and leaveWhatsThisMode(). -.SH "bool QWhatsThis::inWhatsThisMode ()\fC [static]\fR" +.SH "bool TQWhatsThis::inWhatsThisMode ()\fC [static]\fR" Returns TRUE if the application is in "What's this?" mode; otherwise returns FALSE. .PP See also enterWhatsThisMode() and leaveWhatsThisMode(). -.SH "void QWhatsThis::leaveWhatsThisMode ( const TQString & text = TQString::null, const TQPoint & pos = QCursor::pos ( ), TQWidget * w = 0 )\fC [static]\fR" +.SH "void TQWhatsThis::leaveWhatsThisMode ( const TQString & text = TQString::null, const TQPoint & pos = QCursor::pos ( ), TQWidget * w = 0 )\fC [static]\fR" Leaves "What's this?" question mode. .PP This function is used internally by widgets that support TQWidget::customWhatsThis(); applications do not usually call it. An example of such a widget is TQPopupMenu: menus still work normally in "What's this?" mode but also provide help texts for individual menu items. .PP -If \fItext\fR is not TQString::null, a "What's this?" help window is displayed at the global screen position \fIpos\fR. If widget \fIw\fR is not 0 and has its own dedicated QWhatsThis object, this object will receive clicked() messages when the user clicks on hyperlinks inside the help text. +If \fItext\fR is not TQString::null, a "What's this?" help window is displayed at the global screen position \fIpos\fR. If widget \fIw\fR is not 0 and has its own dedicated TQWhatsThis object, this object will receive clicked() messages when the user clicks on hyperlinks inside the help text. .PP -See also inWhatsThisMode(), enterWhatsThisMode(), and QWhatsThis::clicked(). -.SH "void QWhatsThis::remove ( TQWidget * widget )\fC [static]\fR" +See also inWhatsThisMode(), enterWhatsThisMode(), and TQWhatsThis::clicked(). +.SH "void TQWhatsThis::remove ( TQWidget * widget )\fC [static]\fR" Removes the "What's this?" help associated with the \fIwidget\fR. This happens automatically if the widget is destroyed. .PP See also add(). -.SH "void QWhatsThis::setFont ( const TQFont & font )\fC [static]\fR" +.SH "void TQWhatsThis::setFont ( const TQFont & font )\fC [static]\fR" Sets the font for all "What's this?" helps to \fIfont\fR. -.SH "TQString QWhatsThis::text ( const TQPoint & )\fC [virtual]\fR" +.SH "TQString TQWhatsThis::text ( const TQPoint & )\fC [virtual]\fR" This virtual function returns the text for position \fIp\fR in the widget that this "What's this?" object documents. If there is no" What's this?" text for the position, TQString::null is returned. .PP The default implementation returns TQString::null. -.SH "TQString QWhatsThis::textFor ( TQWidget * w, const TQPoint & pos = TQPoint ( ), bool includeParents = FALSE )\fC [static]\fR" +.SH "TQString TQWhatsThis::textFor ( TQWidget * w, const TQPoint & pos = TQPoint ( ), bool includeParents = FALSE )\fC [static]\fR" Returns the what's this text for widget \fIw\fR or TQString::null if there is no "What's this?" help for the widget. \fIpos\fR contains the mouse position; this is useful, for example, if you've subclassed to make the text that is displayed position dependent. .PP If \fIincludeParents\fR is TRUE, parent widgets are taken into consideration as well when looking for what's this help text. .PP See also add(). -.SH "TQToolButton * QWhatsThis::whatsThisButton ( TQWidget * parent )\fC [static]\fR" +.SH "TQToolButton * TQWhatsThis::whatsThisButton ( TQWidget * parent )\fC [static]\fR" Creates a TQToolButton preconfigured to enter "What's this?" mode when clicked. You will often use this with a tool bar as \fIparent\fR: .PP .nf .br - (void) QWhatsThis::whatsThisButton( my_help_tool_bar ); + (void) TQWhatsThis::whatsThisButton( my_help_tool_bar ); .br .fi .PP Example: helpsystem/mainwindow.cpp. .SH "SEE ALSO" -.BR http://doc.trolltech.com/ntqwhatsthis.html +.BR http://doc.trolltech.com/tqwhatsthis.html .BR http://www.trolltech.com/faq/tech.html .SH COPYRIGHT Copyright 1992-2007 Trolltech ASA, http://www.trolltech.com. See the diff --git a/doc/man/man3/tqwidget.3qt b/doc/man/man3/tqwidget.3qt index bc612f78d..3d4822f35 100644 --- a/doc/man/man3/tqwidget.3qt +++ b/doc/man/man3/tqwidget.3qt @@ -1146,7 +1146,7 @@ Example: .PP .nf .br - QLabel *splashScreen = new QLabel( 0, "mySplashScreen", + TQLabel *splashScreen = new TQLabel( 0, "mySplashScreen", .br WStyle_Customize | WStyle_Splash ); .br @@ -2079,7 +2079,7 @@ See also focusProxy(). .SH "void TQWidget::setFont ( const TQFont & )\fC [virtual]\fR" Sets the font currently set for the widget. See the "font" property for details. .PP -Reimplemented in QComboBox, QLabel, and QTabDialog. +Reimplemented in QComboBox, TQLabel, and QTabDialog. .SH "void TQWidget::setFont ( const TQFont & f, bool )" \fBThis function is obsolete.\fR It is provided to keep old source working. We strongly advise against using it in new code. .PP @@ -2646,11 +2646,11 @@ This property holds whether the widget wants to handle What's This help manually .PP The default implementation of customWhatsThis() returns FALSE, which means the widget will not receive any events in Whats This mode. .PP -The widget may leave What's This mode by calling QWhatsThis::leaveWhatsThisMode(), with or without actually displaying any help text. +The widget may leave What's This mode by calling TQWhatsThis::leaveWhatsThisMode(), with or without actually displaying any help text. .PP -You can also reimplement customWhatsThis() if your widget is a" passive interactor" supposed to work under all circumstances. Simply don't call QWhatsThis::leaveWhatsThisMode() in that case. +You can also reimplement customWhatsThis() if your widget is a" passive interactor" supposed to work under all circumstances. Simply don't call TQWhatsThis::leaveWhatsThisMode() in that case. .PP -See also QWhatsThis::inWhatsThisMode() and QWhatsThis::leaveWhatsThisMode(). +See also TQWhatsThis::inWhatsThisMode() and TQWhatsThis::leaveWhatsThisMode(). .PP Get this property's value with customWhatsThis(). .SH "bool enabled" -- cgit v1.2.1