diff --git a/doc/application-walkthrough.doc b/doc/application-walkthrough.doc index 84128566..0e187654 100644 --- a/doc/application-walkthrough.doc +++ b/doc/application-walkthrough.doc @@ -48,7 +48,7 @@ TQPopupMenu, \l TQToolBar and \l TQStatusBar - classes that every modern application window tends to use. (See also \link tutorial2.html Tutorial #2\endlink.) -It also illustrates some aspects of \l QWhatsThis (for simple help) and a +It also illustrates some aspects of \l TQWhatsThis (for simple help) and a typical \c main() using \l QApplication. Finally, it shows a typical print function based on \l TQPrinter. @@ -368,10 +368,10 @@ tool button. We present the user with the print setup dialog, and abandon printing if they cancel. -We create a QSimpleRichText object and give it the text. This object +We create a TQSimpleRichText object and give it the text. This object is able to format the text nicely as one long page. We achieve pagination by printing one paper page's worth of text from the -QSimpleRichText page at a time. +TQSimpleRichText page at a time. Now let's see what happens when a user wishes to \e close() diff --git a/doc/classchart.doc b/doc/classchart.doc index ea113495..432e00c5 100644 --- a/doc/classchart.doc +++ b/doc/classchart.doc @@ -48,11 +48,11 @@ - + - + @@ -189,7 +189,7 @@ - + @@ -239,8 +239,8 @@ - - + + @@ -266,7 +266,7 @@ - + @@ -295,11 +295,11 @@ - + - + diff --git a/doc/features.doc b/doc/features.doc index ee8bbb7a..c79c2481 100644 --- a/doc/features.doc +++ b/doc/features.doc @@ -103,7 +103,7 @@ The available options are: and tagging typed data (eg. text, images, colors) (\l TQMimeSource) \i \row \i TQT_NO_RICHTEXT - \i HTML-like text (\l TQStyleSheet, \l QLabel) + \i HTML-like text (\l TQStyleSheet, \l TQLabel) \i TQT_NO_MIME \row \i TQT_NO_DRAGANDDROP \i Drag-and-drop data between applications (\l TQDragObject) diff --git a/doc/focus.doc b/doc/focus.doc index 77d256fd..baf9ea39 100644 --- a/doc/focus.doc +++ b/doc/focus.doc @@ -163,7 +163,7 @@ click-to-focus. It's not unusual for keyboard shortcuts to move the focus. This can happen implicitly by opening modal dialogs, but also explicitly using -focus accelerators such as those provided by \l QLabel::setBuddy(), \l +focus accelerators such as those provided by \l TQLabel::setBuddy(), \l QGroupBox and \l QTabBar. We advise supporting shortcut focus for all widgets that the user may diff --git a/doc/html/addressbook-example.html b/doc/html/addressbook-example.html index c6210bcb..0c6181e8 100644 --- a/doc/html/addressbook-example.html +++ b/doc/html/addressbook-example.html @@ -284,10 +284,10 @@ protected: #include <ntqlistview.h> #include <ntqlayout.h> #include <tqwidget.h> -#include <ntqlabel.h> +#include <tqlabel.h> #include <ntqpushbutton.h> #include <ntqlineedit.h> -#include <ntqlabel.h> +#include <tqlabel.h> #include <ntqcheckbox.h> #include <tqfile.h> #include <tqtextstream.h> @@ -352,19 +352,19 @@ void ABCentralWidget::setupTabWidget() TQWidget *input = new TQWidget( tabWidget ); TQGridLayout *grid1 = new TQGridLayout( input, 2, 5, 5, 5 ); - TQLabel *liFirstName = new TQLabel( "First &Name", input ); + TQLabel *liFirstName = new TQLabel( "First &Name", input ); liFirstName->resize( liFirstName->sizeHint() ); grid1->addWidget( liFirstName, 0, 0 ); - TQLabel *liLastName = new TQLabel( "&Last Name", input ); + TQLabel *liLastName = new TQLabel( "&Last Name", input ); liLastName->resize( liLastName->sizeHint() ); grid1->addWidget( liLastName, 0, 1 ); - TQLabel *liAddress = new TQLabel( "Add&ress", input ); + TQLabel *liAddress = new TQLabel( "Add&ress", input ); liAddress->resize( liAddress->sizeHint() ); grid1->addWidget( liAddress, 0, 2 ); - TQLabel *liEMail = new TQLabel( "&E-Mail", input ); + TQLabel *liEMail = new TQLabel( "&E-Mail", input ); liEMail->resize( liEMail->sizeHint() ); grid1->addWidget( liEMail, 0, 3 ); @@ -376,22 +376,22 @@ void ABCentralWidget::setupTabWidget() iFirstName = new TQLineEdit( input ); iFirstName->resize( iFirstName->sizeHint() ); grid1->addWidget( iFirstName, 1, 0 ); - liFirstName->setBuddy( iFirstName ); + liFirstName->setBuddy( iFirstName ); iLastName = new TQLineEdit( input ); iLastName->resize( iLastName->sizeHint() ); grid1->addWidget( iLastName, 1, 1 ); - liLastName->setBuddy( iLastName ); + liLastName->setBuddy( iLastName ); iAddress = new TQLineEdit( input ); iAddress->resize( iAddress->sizeHint() ); grid1->addWidget( iAddress, 1, 2 ); - liAddress->setBuddy( iAddress ); + liAddress->setBuddy( iAddress ); iEMail = new TQLineEdit( input ); iEMail->resize( iEMail->sizeHint() ); grid1->addWidget( iEMail, 1, 3 ); - liEMail->setBuddy( iEMail ); + liEMail->setBuddy( iEMail ); change = new TQPushButton( "&Change", input ); change->resize( change->sizeHint() ); diff --git a/doc/html/annotated.html b/doc/html/annotated.html index 2e4c1b9b..32bfa148 100644 --- a/doc/html/annotated.html +++ b/doc/html/annotated.html @@ -76,8 +76,8 @@ body { background: #ffffff; color: black; }
Now we need to relate each of the text labels to the corresponding widget. We do this by creating "buddies".
-A widget that does not accept focus itself, e.g. a TQLabel, can have an accelerator that will pass the focus to its "buddy", e.g. a TQLineEdit. In TQt Designer, we enable this by setting the first widget's buddy property to the name of the buddy widget.
+A widget that does not accept focus itself, e.g. a TQLabel, can have an accelerator that will pass the focus to its "buddy", e.g. a TQLineEdit. In TQt Designer, we enable this by setting the first widget's buddy property to the name of the buddy widget.
Click the Set Buddy toolbar button (or press F12). Click the Enter Number label, drag the line to the numberLineEdit, then release.
Click the Set Buddy toolbar button. Click the Convert From label, drag the line to the fromComboBox, then release.
Click the Set Buddy toolbar button. Click the Convert To label, drag the line to the toComboBox, then release.
diff --git a/doc/html/designer-manual-4.html b/doc/html/designer-manual-4.html index b684187d..da13d9d8 100644 --- a/doc/html/designer-manual-4.html +++ b/doc/html/designer-manual-4.html @@ -58,8 +58,8 @@ body { background: #ffffff; color: black; }We can use one of TQt's static dialogs to get the user to choose a color, but we need our own dialog to get them to give it a name. We'll create that dialog now.
Click File|New to invoke the New File dialog, then click "Dialog", then click OK. Drag a corner of the new form to make it a lot smaller. Change the form's name (in the Property Editor) to "ColorNameForm", and change its caption to "Color Tool -- Color Name". Click File|Save, then click Save to save it.
We'll now add some widgets to the dialog. Don't worry about precise positioning or sizing; we'll get TQt Designer to lay the form out perfectly for us shortly.
-We need to create a TQLabel that will show the color the user has chosen. Click the TextLabel tool in the Toolbox, then click on the left hand side of the form. Change the label's name property to "colorLabel", and delete the text in the text property. Click the pixmap property's ellipsis button and choose the "editraise.png" image. Change the minimumSize property's width sub-property to 80, and set the scaledContents property to True.
-Click the TextLabel tool again, then click to the right of the colorLabel, towards the top of the form. Change the text property to "&Name". Note that the ampersand is displayed; this is because a TQLabel cannot accept focus and we haven't specified a focus widget ("buddy") yet.
+We need to create a TQLabel that will show the color the user has chosen. Click the TextLabel tool in the Toolbox, then click on the left hand side of the form. Change the label's name property to "colorLabel", and delete the text in the text property. Click the pixmap property's ellipsis button and choose the "editraise.png" image. Change the minimumSize property's width sub-property to 80, and set the scaledContents property to True.
+Click the TextLabel tool again, then click to the right of the colorLabel, towards the top of the form. Change the text property to "&Name". Note that the ampersand is displayed; this is because a TQLabel cannot accept focus and we haven't specified a focus widget ("buddy") yet.
Click the LineEdit tool, then click to the right of the "Name" label, again towards the top of the form. Change the name property to "colorLineEdit".
Click on the "Name" label and change its buddy property to "colorLineEdit". The ampersand has now disappeared and Alt+N will set the focus in the colorLineEdit.
Click the PushButton tool, then click below the "colorLabel". Change the button's name property to "okPushButton", its text property to "OK", and its default property to True.
@@ -151,10 +151,10 @@ body { background: #ffffff; color: black; }The ColorNameForm dialog will be called from the main form. The caller will firstly call one of TQt's static "choose a color" dialogs, and if the user chooses a color, will then invoke our custom dialog. Since we're going to use a "choose a color" dialog we will need the appropriate header file. We'll also be accessing the dialog's colorLabel (to set it to the chosen color), and the dialog's line edit (to retrieve the color name), so we'll need appropriate headers for these too.
Click "MainForm" in the Project Overview window so that Object Explorer shows the main form's objects.
-Click Object Explorer's Members tab. Right click "Includes (in Implementation)", then click Edit to invoke the Edit Includes (in Implementation) dialog. Click Add then enter "tqcolordialog.h". Click Add again, and enter "ntqlabel.h". Similarly add "ntqlineedit.h". We also need to include the header for the form we've just created, so add "colornameform.h", and since it is our last entry press Enter, then click Close.
+Click Object Explorer's Members tab. Right click "Includes (in Implementation)", then click Edit to invoke the Edit Includes (in Implementation) dialog. Click Add then enter "tqcolordialog.h". Click Add again, and enter "tqlabel.h". Similarly add "ntqlineedit.h". We also need to include the header for the form we've just created, so add "colornameform.h", and since it is our last entry press Enter, then click Close.
You should now have added the following declarations to your includes (in implementation):
"tqcolordialog.h"
-"ntqlabel.h"
+"tqlabel.h"
"ntqlineedit.h"
"colornameform.h"
Now we're ready to enter the editAdd() slot's code. Click "mainform.ui.h" in the Project Overview to invoke the code editor.
@@ -483,7 +483,7 @@ body { background: #ffffff; color: black; }Includes (in Implementation):
"optionsform.h"
"ntqlineedit.h"
-"ntqlabel.h"
+"tqlabel.h"
"tqclipboard.h"
"ntqmessagebox.h"
"tqstatusbar.h"
diff --git a/doc/html/designer-manual-9.html b/doc/html/designer-manual-9.html index 3a212b29..445c822c 100644 --- a/doc/html/designer-manual-9.html +++ b/doc/html/designer-manual-9.html @@ -193,11 +193,11 @@ myform.h: myform.uiAlthough Glade does not target TQt, the layout system and the widget set of GTK+ are similar to those of TQt, so the filter will retain most of the information in the .glade file.
There are some considerations regarding the conversion of Glade files, as listed below:
Ampersands (&) in labels
-TQt displays an ampersand when a TQLabel has no buddy. (A buddy is a widget that accepts focus on behalf of a TQLabel.) Glade allows GtkLabel widgets with an (underlined) accelerator key but with no buddy. This is an error since users expect underlined characters to be accelerators. In this situation, TQt displays the ampersand itself instead of underlining the accelerator key. You should go over these TQLabel widgets and set their "buddy" property.
+TQt displays an ampersand when a TQLabel has no buddy. (A buddy is a widget that accepts focus on behalf of a TQLabel.) Glade allows GtkLabel widgets with an (underlined) accelerator key but with no buddy. This is an error since users expect underlined characters to be accelerators. In this situation, TQt displays the ampersand itself instead of underlining the accelerator key. You should go over these TQLabel widgets and set their "buddy" property.
Layout placeholders
-GTK allows a layout position to be occupied by a placeholder. TQt Designer converts those placeholders into TQLabels whose text is "?" in red, so that you can find them and fix them manually.
+GTK allows a layout position to be occupied by a placeholder. TQt Designer converts those placeholders into TQLabels whose text is "?" in red, so that you can find them and fix them manually.
GTK+ or GNOME widget with no TQt equivalent
-TQt has equivalents for most GTK+ widgets, but Glade also supports GNOME, whose goal is to provide a complete desktop environment. Because TQt's scope is narrower, when TQt Designer encounters a widget it cannot convert, it replaces it with a label that indicates the problem. For example, a GnomePaperSelector will be replaced by a TQLabel whose text is "GnomePaperSelector?" in red. If you are porting to KDE, you might want to use the corresponding KDE widget.
+TQt has equivalents for most GTK+ widgets, but Glade also supports GNOME, whose goal is to provide a complete desktop environment. Because TQt's scope is narrower, when TQt Designer encounters a widget it cannot convert, it replaces it with a label that indicates the problem. For example, a GnomePaperSelector will be replaced by a TQLabel whose text is "GnomePaperSelector?" in red. If you are porting to KDE, you might want to use the corresponding KDE widget.
Other GTK+/GNOME widgets are only supported in certain contexts. For example, the GnomeDruid can be embedded in another widget, whereas the corresponding TQWizard class cannot.
Message boxes and other high-level dialogs
Glade supports editing of GnomeMessageBox, GtkFileSelection, GtkFontSelectionDialog and others. This is trivially achieved in TQt by means of a TQMessageBox dialog, a TQFileDialog, a TQFontDialog, etc., in C++ code.
diff --git a/doc/html/fileiconview-example.html b/doc/html/fileiconview-example.html index a4619fe8..bd595980 100644 --- a/doc/html/fileiconview-example.html +++ b/doc/html/fileiconview-example.html @@ -1096,7 +1096,7 @@ protected: TQtFileIconView *fileview; DirectoryView *dirlist; TQProgressBar *progress; - TQLabel *label; + TQLabel *label; TQComboBox *pathCombo; TQToolButton *upButton, *mkdirButton; @@ -1136,7 +1136,7 @@ protected slots: #include <ntqsplitter.h> #include <ntqprogressbar.h> -#include <ntqlabel.h> +#include <tqlabel.h> #include <tqstatusbar.h> #include <tqtoolbar.h> #include <ntqcombobox.h> @@ -1215,7 +1215,7 @@ void FileMainWindow::setup() TQToolBar *toolbar = new TQToolBar( this, "toolbar" ); setRightJustification( TRUE ); - (void)new TQLabel( tr( " Path: " ), toolbar ); + (void)new TQLabel( tr( " Path: " ), toolbar ); pathCombo = new TQComboBox( TRUE, toolbar ); pathCombo->setAutoCompletion( TRUE ); @@ -1249,7 +1249,7 @@ void FileMainWindow::setup() setDockEnabled( DockLeft, FALSE ); setDockEnabled( DockRight, FALSE ); - label = new TQLabel( statusBar() ); + label = new TQLabel( statusBar() ); statusBar()->addWidget( label, 2, TRUE ); progress = new TQProgressBar( statusBar() ); statusBar()->addWidget( progress, 1, TRUE ); @@ -1293,7 +1293,7 @@ void FileMainWindow::directoryChanged( const FileMainWindow::slotStartReadDir( int dirs ) { - label->setText( tr( " Reading Directory..." ) ); + label->setText( tr( " Reading Directory..." ) ); progress->reset(); progress->setTotalSteps( dirs ); } @@ -1306,7 +1306,7 @@ void FileMainWindow::slotReadNextDir() void FileMainWindow::slotReadDirDone() { - label->setText( tr( " Reading Directory Done." ) ); + label->setText( tr( " Reading Directory Done." ) ); progress->setProgress( progress->totalSteps() ); } diff --git a/doc/html/focus.html b/doc/html/focus.html index 7ab9b64e..f1719d28 100644 --- a/doc/html/focus.html +++ b/doc/html/focus.html @@ -127,7 +127,7 @@ click-to-focus.It's not unusual for keyboard shortcuts to move the focus. This can happen implicitly by opening modal dialogs, but also explicitly using -focus accelerators such as those provided by TQLabel::setBuddy(), TQGroupBox and TQTabBar. +focus accelerators such as those provided by TQLabel::setBuddy(), TQGroupBox and TQTabBar.
We advise supporting shortcut focus for all widgets that the user may want to jump to. For example, a tab dialog can have keyboard shortcuts for each of its pages, so the user can press e.g. Alt+P to step to the diff --git a/doc/html/ftpclient-example.html b/doc/html/ftpclient-example.html index 3e13ae33..053bdf56 100644 --- a/doc/html/ftpclient-example.html +++ b/doc/html/ftpclient-example.html @@ -72,7 +72,7 @@ commands. The GUI parts are done in the Designer. void FtpMainWindow::init() { - stateFtp = new TQLabel( tr("Unconnected"), statusBar() ); + stateFtp = new TQLabel( tr("Unconnected"), statusBar() ); statusBar()->addWidget( stateFtp, 0, TRUE ); ftp = new TQFtp( this ); @@ -265,22 +265,22 @@ void FtpMainWindow::ftp_stateChanged( int state ) { switch ( (TQFtp::State)state ) { case TQFtp::Unconnected: - stateFtp->setText( tr("Unconnected") ); + stateFtp->setText( tr("Unconnected") ); break; case TQFtp::HostLookup: - stateFtp->setText( tr("Host lookup") ); + stateFtp->setText( tr("Host lookup") ); break; case TQFtp::Connecting: - stateFtp->setText( tr("Connecting") ); + stateFtp->setText( tr("Connecting") ); break; case TQFtp::Connected: - stateFtp->setText( tr("Connected") ); + stateFtp->setText( tr("Connected") ); break; case TQFtp::LoggedIn: - stateFtp->setText( tr("Logged in") ); + stateFtp->setText( tr("Logged in") ); break; case TQFtp::Closing: - stateFtp->setText( tr("Closing") ); + stateFtp->setText( tr("Closing") ); break; } } diff --git a/doc/html/functions.html b/doc/html/functions.html index 389c9626..3086e83e 100644 --- a/doc/html/functions.html +++ b/doc/html/functions.html @@ -76,7 +76,7 @@ abort: TQApplication
It uses TQToolTip and TQWhatsThis to provide both static and +
It uses TQToolTip and TQWhatsThis to provide both static and
dynamic balloon help for the widgets in the application, and
TQToolTipGroup to display extended information for each tooltip
in the statusbar. TQAssistantClient is used to display help
@@ -163,13 +163,13 @@ in a tooltip and to provide text for the TQToolTip
The WhatsThis class is a subclass of both TQObject and
-TQWhatsThis and serves as a base class for the HeaderWhatsThis
+TQWhatsThis and serves as a base class for the HeaderWhatsThis
and TableWhatsThis classes. (1) WhatsThis
reimplements clicked() which will be called when the user clicks
inside the "What's this?" window. It also declares a signal
linkClicked() which will be emitted when a hyperlink is clicked.
A TQTable is used as the central widget and the table, the menus
and the toolbar are populated.
- The static function whatsThisButton() creates a TQToolButton
which will enter "What's this?" mode when clicked.
@@ -406,7 +406,7 @@ specifies the widget we want to add dynamic tooltips for and the
second argument specifies the TQToolTipGroup they should belong
to.
See also Examples.
diff --git a/doc/html/helpsystem.html b/doc/html/helpsystem.html
index 5f5df57d..3ce86b2d 100644
--- a/doc/html/helpsystem.html
+++ b/doc/html/helpsystem.html
@@ -53,7 +53,7 @@ help is a digression from their real task.
TQt tries to take care of all the special features listed above. You
usually don't have to worry about these features so long as you use
TQt's input widgets (e.g. TQLineEdit, TQTextEdit, and derived classes)
-and TQt's display widgets (e.g. TQLabel).
+and TQt's display widgets (e.g. TQLabel).
Support for these writing systems is transparent to the programmer
and completely encapsulated in TQt's text engine. This means that you
don't need to have any knowledge about the writing system used in a
@@ -172,7 +172,7 @@ parameter, there is no char* to TQString conversion overhead.
and file format texts) need not use TQString; the traditional
char* or the TQCString class will suffice.
You're unlikely to notice that you are using Unicode;
-TQString, and TQChar are just like easier versions of the crude
+TQString, and TQChar are just like easier versions of the crude
const char* and char from traditional C.
The grid shown above can be produced by the following code:
You can adjust the layout to some extent by calling
@@ -144,14 +144,14 @@ improvements:
TQGridLayout *grid = new TQGridLayout( main, 1, 1 );
// add the first four widgets with (row, column) addressing
- grid->addWidget( new TQLabel( "One", main ), 0, 0 );
- grid->addWidget( new TQLabel( "Two", main ), 0, 1 );
- grid->addWidget( new TQLabel( "Three", main ), 1, 0 );
- grid->addWidget( new TQLabel( "Four", main ), 1, 1 );
+ grid->addWidget( new TQLabel( "One", main ), 0, 0 );
+ grid->addWidget( new TQLabel( "Two", main ), 0, 1 );
+ grid->addWidget( new TQLabel( "Three", main ), 1, 0 );
+ grid->addWidget( new TQLabel( "Four", main ), 1, 1 );
// add the last widget on row 2, spanning from column 0 to
// column 1, and center aligned
- grid->addMultiCellWidget( new TQLabel( "Five", main ), 2, 2, 0, 1,
+ grid->addMultiCellWidget( new TQLabel( "Five", main ), 2, 2, 0, 1,
TQt::AlignCenter );
// let the ratio between the widths of columns 0 and 1 be 2:3
@@ -166,7 +166,7 @@ a parameter in the constructor.
TQLineEdit *field = new TQLineEdit( main );
TQPushButton *ok = new TQPushButton( "OK", main );
TQPushButton *cancel = new TQPushButton( "Cancel", main );
- TQLabel *label = new TQLabel( "Write once, compile everywhere.", main );
+ TQLabel *label = new TQLabel( "Write once, compile everywhere.", main );
// a layout on a widget
TQVBoxLayout *vbox = new TQVBoxLayout( main );
diff --git a/doc/html/licenses.html b/doc/html/licenses.html
index d3853101..173079c6 100644
--- a/doc/html/licenses.html
+++ b/doc/html/licenses.html
@@ -240,7 +240,7 @@ REPRESENTATION OR WARRANTY OF ANY KIND CONCERNING THE MERCHANTABILITY
OF THIS SOFTWARE OR ITS FITNESS FOR ANY PARTICULAR PURPOSE.
This product includes software developed by the University of
California, Berkeley and its contributors. Copyright (c) 2002 Jorge Acereda and Peter O'Gorman
diff --git a/doc/html/lineedits-example.html b/doc/html/lineedits-example.html
index e796a979..c470dabe 100644
--- a/doc/html/lineedits-example.html
+++ b/doc/html/lineedits-example.html
@@ -95,7 +95,7 @@ protected slots:
#include <ntqcombobox.h>
#include <ntqframe.h>
#include <ntqvalidator.h>
-#include <ntqlabel.h>
+#include <tqlabel.h>
#include <ntqlayout.h>
#include <ntqhbox.h>
@@ -116,7 +116,7 @@ protected slots:
row1->setMargin( 5 );
// Create a Label
- TQLabel* label = new TQLabel( "Echo Mode: ", this);
+ TQLabel* label = new TQLabel( "Echo Mode: ", this);
row1->addWidget( label );
// Create a Combobox with three items...
@@ -138,7 +138,7 @@ protected slots:
row2->setMargin( 5 );
// and the second label
- label = new TQLabel( "Validator: ", this );
+ label = new TQLabel( "Validator: ", this );
row2->addWidget( label );
// A second Combobox with again three items...
@@ -159,7 +159,7 @@ protected slots:
row3->setMargin( 5 );
// we need a label for this too
- label = new TQLabel( "Alignment: ", this );
+ label = new TQLabel( "Alignment: ", this );
row3->addWidget( label );
// A combo box for setting alignment
@@ -180,7 +180,7 @@ protected slots:
row4->setMargin( 5 );
// we need a label for this too
- label = new TQLabel( "Input mask: ", this );
+ label = new TQLabel( "Input mask: ", this );
row4->addWidget( label );
// A combo box for choosing an input mask
@@ -205,7 +205,7 @@ protected slots:
row5->setMargin( 5 );
// last label
- (void)new TQLabel( "Read-Only: ", row5 );
+ (void)new TQLabel( "Read-Only: ", row5 );
// A combo box for setting alignment
combo5 = new TQComboBox( FALSE, row5 );
diff --git a/doc/html/linguist-manual-4.html b/doc/html/linguist-manual-4.html
index 341700ed..7677a1e8 100644
--- a/doc/html/linguist-manual-4.html
+++ b/doc/html/linguist-manual-4.html
@@ -431,8 +431,8 @@ TRANSLATIONS = tt3_pt.ts
PrintPanel is a TQWidget. It needs the TQ_OBJECT macro for tr() to work properly. The implementation file is printpanel.cpp. Some of the code is commented out in Troll Print 1.0; you will uncomment it later, for Troll Print 1.1. We'll now prepare release 1.1 of Troll Print. Start your favorite text editor and follow these steps: Uncomment the two lines that create a TQLabel with the text "<b>TROLL PRINT</b>" in printpanel.cpp. Uncomment the two lines that create a TQLabel with the text "<b>TROLL PRINT</b>" in printpanel.cpp. Word-tidying: Replace "2-sided" by "Two-sided" in printpanel.cpp. Replace "1.0" with "1.1" everywhere it occurs in mainwindow.cpp. Update the copyright year to 1999-2000 in mainwindow.cpp. The Help dialog is also special. Instead of replacing the Help
dialog with a custom TQDialog, we will use the TQt
Help System classes to provide a more advanced online help.
-However, we cannot start using classes like TQToolTip and TQWhatsThis
+However, we cannot start using classes like TQToolTip and TQWhatsThis
until we replace the Main Window and View widgets.
The help text included with the original project is very small and
only contains information about the XmNoteBook widget. The use of
@@ -83,7 +83,7 @@ creates the Help dialog. We will also remove the code to create
the Help menu, since this menu is now empty. Finally, we remove
the help_cb() function implementation.
The Help dialog is now removed from our project. We cannot add
-TQToolTip and TQWhatsThis help at the moment, since we are still using
+TQToolTip and TQWhatsThis help at the moment, since we are still using
XmMainWindow for the Main Window widget. Once we have
migrated the Main Window and the popup-menu hierarchy, we can
begin using TQToolTip and TQWhatsThis for online help.
diff --git a/doc/html/motif-walkthrough-8.html b/doc/html/motif-walkthrough-8.html
index ef6b103a..ce1ceb4f 100644
--- a/doc/html/motif-walkthrough-8.html
+++ b/doc/html/motif-walkthrough-8.html
@@ -69,7 +69,7 @@ application on all platforms supported by TQt.
We will use the first approach to complete the migration of the
-example project used in this walkthrough, using TQTextEdit, TQLabel and
+example project used in this walkthrough, using TQTextEdit, TQLabel and
TQSpinBox to provide a similar look. The only difference is that we
will not have tabs.
We use TQt Designer to add the
diff --git a/doc/html/motif-walkthrough-9.html b/doc/html/motif-walkthrough-9.html
index a7ce8ee9..b9a91201 100644
--- a/doc/html/motif-walkthrough-9.html
+++ b/doc/html/motif-walkthrough-9.html
@@ -44,7 +44,7 @@ this function any more, so we remove it. The current MainWindow::filePrint(
write a new MainWindow::filePrint() implementation in mainwindow.ui.h.
Note: The steps involved in using the TQPrinter class are beyond the
scope of this walkthrough and will not be discussed here. The
-TQPrinter Class Reference, TQSimpleRichText Class Reference and the
+TQPrinter Class Reference, TQSimpleRichText Class Reference and the
Simple Application Walkthrough
contain information on the use of TQPrinter.
For completeness, the code to initialize a TQPrinter object is included below.
@@ -65,7 +65,7 @@ and formatting characters to a printtext variable (which is a
TQString).
The rest of the MainWindow::filePrint() function is the actual
-printing code. Here we simply create a TQSimpleRichText object using
+printing code. Here we simply create a TQSimpleRichText object using
the string we created above, and draw this string on the TQPrinter
object using TQPainter.
The Movies example displays MNG and animated GIF files using the TQMovie and
-TQLabel classes.
+TQLabel classes.
The movies will only read an animated GIF if GIF reading was enabled when TQt was built.
Main:
@@ -51,7 +51,7 @@ The Movies example displays MNG and animated GIF files using the ntqapplication.h>
#include <tqfiledialog.h>
#include <ntqpushbutton.h>
-#include <ntqlabel.h>
+#include <tqlabel.h>
#include <tqpainter.h>
#include <ntqmessagebox.h>
#include <tqmovie.h>
diff --git a/doc/html/ntqaccel.html b/doc/html/ntqaccel.html
index 6da44b2f..f94b0ff6 100644
--- a/doc/html/ntqaccel.html
+++ b/doc/html/ntqaccel.html
@@ -87,7 +87,7 @@ 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 TQButton,
-TQGroupBox, TQLabel (with TQLabel::setBuddy()), TQMenuBar and TQTabBar.
+TQGroupBox, TQLabel (with TQLabel::setBuddy()), TQMenuBar and TQTabBar.
Example:
Use setEnabled() to enable or disable all the items in an
@@ -141,7 +141,7 @@ combination.
TQ_SLOT(printDoc()) ); // printDoc() slot
See also TQKeyEvent, TQWidget::keyPressEvent(), TQMenuData::setAccel(), TQButton::accel, TQLabel::setBuddy(), TQKeySequence, GUI Design Handbook: Keyboard Shortcuts, and Miscellaneous Classes.
+ See also TQKeyEvent, TQWidget::keyPressEvent(), TQMenuData::setAccel(), TQButton::accel, TQLabel::setBuddy(), TQKeySequence, GUI Design Handbook: Keyboard Shortcuts, and Miscellaneous Classes.
See also whatsThis(), TQWhatsThis::inWhatsThisMode(), TQMenuData::setWhatsThis(), and TQAction::whatsThis.
+ See also whatsThis(), TQWhatsThis::inWhatsThisMode(), TQMenuData::setWhatsThis(), and TQAction::whatsThis.
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.
+(e.g. by calling TQLabel::setText()) or by user interaction.
If there are no accessibility tools listening to this event, the
performance penalty for calling this function is minor, but if determining
the parameters of the call is expensive you can use isActive() to
diff --git a/doc/html/ntqerrormessage.html b/doc/html/ntqerrormessage.html
index 7c6d6ede..a682255d 100644
--- a/doc/html/ntqerrormessage.html
+++ b/doc/html/ntqerrormessage.html
@@ -54,7 +54,7 @@ body { background: #ffffff; color: black; }
The TQErrorMessage class provides an error message display dialog.
- This is basically a TQLabel and a "show this message again" checkbox which
+ This is basically a TQLabel and a "show this message again" checkbox which
remembers what not to show.
There are two ways to use this class:
#include <ntqframe.h>
Inherits TQWidget.
- Inherited by TQGroupBox, TQScrollView, TQDockWindow, TQGrid, TQHBox, TQLabel, TQLCDNumber, TQLineEdit, TQMenuBar, TQPopupMenu, TQProgressBar, TQSplitter, TQToolBox, and TQWidgetStack.
+ Inherited by TQGroupBox, TQScrollView, TQDockWindow, TQGrid, TQHBox, TQLabel, TQLCDNumber, TQLineEdit, TQMenuBar, TQPopupMenu, TQProgressBar, TQSplitter, TQToolBox, and TQWidgetStack.
TQPopupMenu uses this to "raise" the menu above the surrounding
-screen. TQProgressBar has a "sunken" look. TQLabel has a flat look.
+screen. TQProgressBar has a "sunken" look. TQLabel has a flat look.
The frames of widgets like these can be changed.
See also contentsRect and TQPainter::setClipRect().
- Reimplemented in TQLabel, TQLCDNumber, TQMenuBar, and TQPopupMenu.
+ Reimplemented in TQLabel, TQLCDNumber, TQMenuBar, and TQPopupMenu.
Example:
Incidentally, TQLCDNumber is the very oldest part of TQt, tracing
back to a BASIC program on the Sinclair Spectrum.
See also TQLabel, TQFrame, and Basic Widgets.
+ See also TQLabel, TQFrame, and Basic Widgets.
Any other key sequence that represents a valid character, will
cause the character to be inserted into the line edit.
See also TQTextEdit, TQLabel, TQComboBox, GUI Design Handbook: Field, Entry, and Basic Widgets.
+ See also TQTextEdit, TQLabel, TQComboBox, GUI Design Handbook: Field, Entry, and Basic Widgets.
See also del().
-
See also setCancelButton().
- Here the TQScrollView has four children: the viewport(), the
verticalScrollBar(), the horizontalScrollBar() and a small
cornerWidget(). The viewport() has one child: the big TQVBox. The
-TQVBox has the three TQLabel objects as child widgets. When the view
+TQVBox has the three TQLabel objects as child widgets. When the view
is scrolled, the TQVBox is moved; its children move with it as
child widgets normally do.
#include <ntqnamespace.h>
- Inherited by TQObject, TQPixmap, TQBrush, TQCanvasItem, TQCursor, TQPainter, TQEvent, TQIconViewItem, TQKeySequence, TQListViewItem, TQCustomMenuItem, TQPen, TQStyleSheetItem, TQSyntaxHighlighter, TQTab, TQTableItem, TQThread, TQToolTip, and TQWhatsThis.
+ Inherited by TQObject, TQPixmap, TQBrush, TQCanvasItem, TQCursor, TQPainter, TQEvent, TQIconViewItem, TQKeySequence, TQListViewItem, TQCustomMenuItem, TQPen, TQStyleSheetItem, TQSyntaxHighlighter, TQTab, TQTableItem, TQThread, TQToolTip, and TQWhatsThis.
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
+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.
diff --git a/doc/html/pictures.html b/doc/html/pictures.html
index 0623452f..7232c787 100644
--- a/doc/html/pictures.html
+++ b/doc/html/pictures.html
@@ -79,7 +79,7 @@ also be used as a separate widget.
The screenshot below shows a TQTabDialog. The tabs (TQTabBar) or the
more convenient class TQTabWidget, which combines a tab bar with
-the pages, can be used separately. In the visible page you see a TQLabel, the range controls TQSlider and TQSpinBox and below a TQLCDNumber. In the bottom row there are some TQPushButtons.
+the pages, can be used separately. In the visible page you see a TQLabel, the range controls TQSlider and TQSpinBox and below a TQLCDNumber. In the bottom row there are some TQPushButtons.
In the screenshot below there's a TQTextBrowser displaying a HTML
page. See also TQTextEdit.
diff --git a/doc/html/popup-example.html b/doc/html/popup-example.html
index 949f29a3..7d7c14d3 100644
--- a/doc/html/popup-example.html
+++ b/doc/html/popup-example.html
@@ -53,11 +53,11 @@ pop up.
#ifndef POPUP_H
#define POPUP_H
-#include <ntqlabel.h>
+#include <tqlabel.h>
#include <ntqpushbutton.h>
#include <ntqlineedit.h>
-class FancyPopup : public TQLabel
+class FancyPopup : public TQLabel
{
TQ_OBJECT
public:
@@ -115,9 +115,9 @@ private:
#include <ntqlayout.h>
FancyPopup::FancyPopup( TQWidget* parent, const char* name ):
- TQLabel( parent, name, WType_Popup ){
+ TQLabel( parent, name, WType_Popup ){
setFrameStyle( WinPanel|Raised );
- setAlignment( AlignCenter );
+ setAlignment( AlignCenter );
resize(150,100);
moves = 0;
setMouseTracking( TRUE );
@@ -129,7 +129,7 @@ private:
s.sprintf("%d/%d", e->pos().x(), e->pos().y());
if (e->state() & TQMouseEvent::LeftButton)
s += " (down)";
- setText(s);
+ setText(s);
}
void FancyPopup::mouseReleaseEvent( TQMouseEvent * e){
diff --git a/doc/html/porting.html b/doc/html/porting.html
index 43183493..6bd143cc 100644
--- a/doc/html/porting.html
+++ b/doc/html/porting.html
@@ -333,8 +333,8 @@ new code.
Columns 0, 2 and 4 in this dialog fragment are made up of a
-TQLabel, a TQLineEdit, and a TQListBox. Columns 1 and 3 are
+TQLabel, a TQLineEdit, and a TQListBox. Columns 1 and 3 are
placeholders made with addColSpacing(). Row 0 consists of three
TQLabel objects, row 1 of three TQLineEdit objects and row 2 of
three TQListBox objects. We used placeholder columns (1 and 3) to
diff --git a/doc/html/qmag-example.html b/doc/html/qmag-example.html
index 5debea21..3e8f4f0b 100644
--- a/doc/html/qmag-example.html
+++ b/doc/html/qmag-example.html
@@ -56,7 +56,7 @@ magnified area as a .bmp file.
#include <ntqpushbutton.h>
#include <tqpixmap.h>
#include <tqimage.h>
-#include <ntqlabel.h>
+#include <tqlabel.h>
#include <tqfiledialog.h>
#include <tqregexp.h>
@@ -98,7 +98,7 @@ private:
TQPixmap pm; // pixmap, magnified
TQPixmap p; // pixmap
TQImage image; // image of pixmap (for RGB)
- TQLabel *rgb;
+ TQLabel *rgb;
int yoffset; // pixels in addition to the actual picture
int z; // magnification factor
int r; // autorefresh rate (index into refreshrates)
@@ -185,10 +185,10 @@ static const int timer[] = {
setRefresh(1);
setZoom(5);
- rgb = new TQLabel( this );
+ rgb = new TQLabel( this );
TQ_CHECK_PTR( rgb );
- rgb->setText( "" );
- rgb->setAlignment( AlignVCenter );
+ rgb->setText( "" );
+ rgb->setAlignment( AlignVCenter );
rgb->resize( width(), rgb->fontMetrics().height() + 4 );
#ifdef COMPLEX_GUI
@@ -369,7 +369,7 @@ void MagWidget::grabAround(TQPoint pos)
if ( grabbing || pm.isNull() ||
e->pos().y() > height() - (zoom ? zoom->fontMetrics().height() - 4 : 0) ||
e->pos().y() < (zoom ? zoom->height()+4 : 4) ) {
- rgb->setText( "" );
+ rgb->setText( "" );
} else {
int x,y;
x = e->pos().x() / z;
@@ -385,14 +385,14 @@ void MagWidget::grabAround(TQPoint pos)
TQString label;
label.sprintf( "x=%d, y=%d %s",
x+grabx, y+graby, (const char*)pixelinfo );
- rgb->setText( label );
+ rgb->setText( label );
}
}
void MagWidget::focusOutEvent( TQFocusEvent * )
{
- rgb->setText( "" );
+ rgb->setText( "" );
}
diff --git a/doc/html/qmake-manual-7.html b/doc/html/qmake-manual-7.html
index a25b5a23..969637d3 100644
--- a/doc/html/qmake-manual-7.html
+++ b/doc/html/qmake-manual-7.html
@@ -58,7 +58,7 @@ body { background: #ffffff; color: black; }
#include <vector>
#include <ntqapplication.h> // TQt includes
#include <ntqpushbutton.h>
- #include <ntqlabel.h>
+ #include <tqlabel.h>
#include "thirdparty/include/libmain.h"
#include "my_stable_class.h"
...
@@ -120,7 +120,7 @@ body { background: #ffffff; color: black; }
# include <iostream>
# include <ntqapplication.h>
# include <ntqpushbutton.h>
- # include <ntqlabel.h>
+ # include <tqlabel.h>
#endif
myobject.h main.cpp
This walkthrough shows simple use of TQMainWindow, TQMenuBar, TQPopupMenu, TQToolBar and TQStatusBar - classes that every
modern application window tends to use. (See also Tutorial #2.)
- It also illustrates some aspects of TQWhatsThis (for simple help) and a
+ It also illustrates some aspects of TQWhatsThis (for simple help) and a
typical main() using TQApplication.
Finally, it shows a typical print function based on TQPrinter.
With the above line we add the "What's This?" help-text to the
fileOpen button...
@@ -241,13 +241,13 @@ saved in fileOpenText) requests an image named "document-open", the add( fileSave, fileSaveText );
+ TQWhatsThis::add( fileSave, fileSaveText );
const char * filePrintText = "Click this button to print the file you "
"are editing.\n"
"You can also select the Print command "
"from the File menu.";
- TQWhatsThis::add( filePrint, filePrintText );
+ TQWhatsThis::add( filePrint, filePrintText );
The "What's This?" help of the remaining two buttons doesn't make use
of pixmaps, therefore all we need to do is to add the help-text to the
@@ -463,21 +463,21 @@ and implicitly changes the window system caption to the new name.
int dpiy = metrics.logicalDpiY();
int margin = (int) ( (2/2.54)*dpiy ); // 2 cm margins
TQRect view( margin, margin, metrics.width() - 2*margin, metrics.height() - 2*margin );
- TQSimpleRichText richText( TQStyleSheet::convertFromPlainText(e->text()),
+ TQSimpleRichText richText( TQStyleSheet::convertFromPlainText(e->text()),
TQFont(),
e->context(),
e->styleSheet(),
e->mimeSourceFactory(),
view.height() );
- richText.setWidth( &p, view.width() );
+ richText.setWidth( &p, view.width() );
int page = 1;
do {
- richText.draw( &p, margin, margin, view, colorGroup() );
+ richText.draw( &p, margin, margin, view, colorGroup() );
view.moveBy( 0, view.height() );
p.translate( 0 , -view.height() );
p.drawText( view.right() - p.fontMetrics().width( TQString::number( page ) ),
view.bottom() + p.fontMetrics().ascent() + 5, TQString::number( page ) );
- if ( view.top() - margin >= richText.height() )
+ if ( view.top() - margin >= richText.height() )
break;
printer->newPage();
page++;
@@ -493,7 +493,7 @@ and implicitly changes the window system caption to the new name.
tool button.
We present the user with the print setup dialog, and abandon printing
if they cancel.
- We create a TQSimpleRichText object and give it the text. This object
+ We create a TQSimpleRichText object and give it the text. This object
is able to format the text nicely as one long page. We achieve
pagination by printing one paper page's worth of text from the
TQSimpleRichText page at a time.
diff --git a/doc/html/splitter-example.html b/doc/html/splitter-example.html
index b7dfccef..f9a26f39 100644
--- a/doc/html/splitter-example.html
+++ b/doc/html/splitter-example.html
@@ -48,7 +48,7 @@ decide for themselves how much space each child item should get.
*****************************************************************************/
#include <ntqapplication.h>
-#include <ntqlabel.h>
+#include <tqlabel.h>
#include <ntqsplitter.h>
#include <ntqmultilineedit.h>
diff --git a/doc/html/sql-overview-custom1-main-cpp.html b/doc/html/sql-overview-custom1-main-cpp.html
index 030691db..13961bb5 100644
--- a/doc/html/sql-overview-custom1-main-cpp.html
+++ b/doc/html/sql-overview-custom1-main-cpp.html
@@ -74,11 +74,11 @@ TQString CustomEdit::upperLine() const
FormDialog::FormDialog()
{
- TQLabel *forenameLabel = new TQLabel( "Forename:", this );
+ TQLabel *forenameLabel = new TQLabel( "Forename:", this );
CustomEdit *forenameEdit = new CustomEdit( this );
- TQLabel *surnameLabel = new TQLabel( "Surname:", this );
+ TQLabel *surnameLabel = new TQLabel( "Surname:", this );
CustomEdit *surnameEdit = new CustomEdit( this );
- TQLabel *salaryLabel = new TQLabel( "Salary:", this );
+ TQLabel *salaryLabel = new TQLabel( "Salary:", this );
TQLineEdit *salaryEdit = new TQLineEdit( this );
salaryEdit->setAlignment( TQt::AlignRight );
TQPushButton *saveButton = new TQPushButton( "&Save", this );
diff --git a/doc/html/sql-overview-custom1-main-h.html b/doc/html/sql-overview-custom1-main-h.html
index b63c30bf..9087e3fd 100644
--- a/doc/html/sql-overview-custom1-main-h.html
+++ b/doc/html/sql-overview-custom1-main-h.html
@@ -44,7 +44,7 @@ body { background: #ffffff; color: black; }
#include <ntqapplication.h>
#include <ntqdialog.h>
-#include <ntqlabel.h>
+#include <tqlabel.h>
#include <ntqlayout.h>
#include <ntqlineedit.h>
#include <ntqpushbutton.h>
diff --git a/doc/html/sql-overview-form1-main-cpp.html b/doc/html/sql-overview-form1-main-cpp.html
index 891f07b5..8f8dd8c9 100644
--- a/doc/html/sql-overview-form1-main-cpp.html
+++ b/doc/html/sql-overview-form1-main-cpp.html
@@ -44,7 +44,7 @@ body { background: #ffffff; color: black; }
#include <ntqapplication.h>
#include <ntqdialog.h>
-#include <ntqlabel.h>
+#include <tqlabel.h>
#include <ntqlayout.h>
#include <ntqlineedit.h>
#include <tqsqldatabase.h>
@@ -61,11 +61,11 @@ class FormDialog : public TQDialog
FormDialog::FormDialog()
{
- TQLabel *forenameLabel = new TQLabel( "Forename:", this );
- TQLabel *forenameDisplay = new TQLabel( this );
- TQLabel *surnameLabel = new TQLabel( "Surname:", this );
- TQLabel *surnameDisplay = new TQLabel( this );
- TQLabel *salaryLabel = new TQLabel( "Salary:", this );
+ TQLabel *forenameLabel = new TQLabel( "Forename:", this );
+ TQLabel *forenameDisplay = new TQLabel( this );
+ TQLabel *surnameLabel = new TQLabel( "Surname:", this );
+ TQLabel *surnameDisplay = new TQLabel( this );
+ TQLabel *salaryLabel = new TQLabel( "Salary:", this );
TQLineEdit *salaryEdit = new TQLineEdit( this );
TQGridLayout *grid = new TQGridLayout( this );
diff --git a/doc/html/sql-overview-form2-main-h.html b/doc/html/sql-overview-form2-main-h.html
index 15dcdfb6..7c235e3a 100644
--- a/doc/html/sql-overview-form2-main-h.html
+++ b/doc/html/sql-overview-form2-main-h.html
@@ -44,7 +44,7 @@ body { background: #ffffff; color: black; }
#include <ntqapplication.h>
#include <ntqdialog.h>
-#include <ntqlabel.h>
+#include <tqlabel.h>
#include <ntqlayout.h>
#include <ntqlineedit.h>
#include <ntqpushbutton.h>
diff --git a/doc/html/sql.html b/doc/html/sql.html
index 34748eb3..4b170081 100644
--- a/doc/html/sql.html
+++ b/doc/html/sql.html
@@ -1025,7 +1025,7 @@ the code below can be automatically generated by
See also TQWhatsThis.
+ See also TQWhatsThis.
Set this property's value with setWhatsThis() and get this property's value with whatsThis().
diff --git a/doc/html/qchar-members.html b/doc/html/tqchar-members.html
similarity index 51%
rename from doc/html/qchar-members.html
rename to doc/html/tqchar-members.html
index ba6eff19..eea55045 100644
--- a/doc/html/qchar-members.html
+++ b/doc/html/tqchar-members.html
@@ -32,37 +32,37 @@ body { background: #ffffff; color: black; }
This is the complete list of member functions for
-TQChar, including inherited members.
+TQChar, including inherited members.
Almost all the functions in this class are reentrant when TQt is built with thread support. The exception is decomposition().
#include <tqstring.h>
- List of all member functions.
+ More information can be found in the document About Unicode.
- See also TQString, TQCharRef, and Text Related Classes.
+ See also TQString, TQCharRef, and Text Related Classes.
Constructs a TQChar for Unicode cell c in row r.
- Constructs a copy of c. This is a deep copy, if such a
@@ -276,7 +276,7 @@ lightweight object can be said to have deep copies.
Constructs a TQChar for the character with Unicode code point rc.
- See also Category.
@@ -302,7 +302,7 @@ position non spacing marks around a base character.
Decomposes a character into its parts. Returns TQString::null if no
decomposition exists.
- See also Direction.
@@ -371,7 +371,7 @@ Returns TRUE if the character is a separator character
Returns TRUE if the character is a symbol (Symbol_* categories);
otherwise returns FALSE.
- Returns the Latin-1 value of this character, or 0 if it
cannot be represented in Latin-1.
- Returns a reference to the numeric Unicode value equal to the
TQChar.
-
Returns TRUE if c1 and c2 are not the same Unicode
character; otherwise returns FALSE.
- This is an overloaded member function, provided for convenience. It behaves essentially like the above function.
@@ -455,7 +455,7 @@ character; otherwise returns FALSE.
Returns TRUE if c is not the ASCII/Latin-1 character ch;
otherwise returns FALSE.
- This is an overloaded member function, provided for convenience. It behaves essentially like the above function.
@@ -463,14 +463,14 @@ otherwise returns FALSE.
Returns TRUE if c is not the ASCII/Latin-1 character ch;
otherwise returns FALSE.
-
Returns TRUE if the numeric Unicode value of c1 is less than
that of c2; otherwise returns FALSE.
- This is an overloaded member function, provided for convenience. It behaves essentially like the above function.
@@ -478,7 +478,7 @@ that of c2; otherwise returns FALSE.
Returns TRUE if the numeric Unicode value of c is less than that
of the ASCII/Latin-1 character ch; otherwise returns FALSE.
- This is an overloaded member function, provided for convenience. It behaves essentially like the above function.
@@ -487,7 +487,7 @@ of the ASCII/Latin-1 character ch; otherwise returns FALSE.
character ch is less than that of c; otherwise returns
FALSE.
-
@@ -495,7 +495,7 @@ FALSE.
that of c2, or they are the same Unicode character; otherwise
returns FALSE.
- This is an overloaded member function, provided for convenience. It behaves essentially like the above function.
@@ -504,7 +504,7 @@ returns FALSE.
equal to that of the ASCII/Latin-1 character ch; otherwise
returns FALSE.
- This is an overloaded member function, provided for convenience. It behaves essentially like the above function.
@@ -513,14 +513,14 @@ returns FALSE.
character ch is less than or equal to that of c; otherwise
returns FALSE.
-
Returns TRUE if c1 and c2 are the same Unicode character;
otherwise returns FALSE.
- This is an overloaded member function, provided for convenience. It behaves essentially like the above function.
@@ -528,7 +528,7 @@ otherwise returns FALSE.
Returns TRUE if c is the ASCII/Latin-1 character ch;
otherwise returns FALSE.
- This is an overloaded member function, provided for convenience. It behaves essentially like the above function.
@@ -536,14 +536,14 @@ otherwise returns FALSE.
Returns TRUE if c is the ASCII/Latin-1 character ch;
otherwise returns FALSE.
-
Returns TRUE if the numeric Unicode value of c1 is greater than
that of c2; otherwise returns FALSE.
- This is an overloaded member function, provided for convenience. It behaves essentially like the above function.
@@ -551,7 +551,7 @@ that of c2; otherwise returns FALSE.
Returns TRUE if the numeric Unicode value of c is greater than
that of the ASCII/Latin-1 character ch; otherwise returns FALSE.
- This is an overloaded member function, provided for convenience. It behaves essentially like the above function.
@@ -560,7 +560,7 @@ that of the ASCII/Latin-1 character ch; otherwise returns FALSE.
character ch is greater than that of c; otherwise returns
FALSE.
-
@@ -568,7 +568,7 @@ FALSE.
that of c2, or they are the same Unicode character; otherwise
returns FALSE.
- This is an overloaded member function, provided for convenience. It behaves essentially like the above function.
@@ -577,7 +577,7 @@ returns FALSE.
or equal to that of the ASCII/Latin-1 character ch; otherwise
returns FALSE.
- This is an overloaded member function, provided for convenience. It behaves essentially like the above function.
diff --git a/doc/html/qcharref-members.html b/doc/html/tqcharref-members.html
similarity index 95%
rename from doc/html/qcharref-members.html
rename to doc/html/tqcharref-members.html
index 8dc1a07a..afc8d3b7 100644
--- a/doc/html/qcharref-members.html
+++ b/doc/html/tqcharref-members.html
@@ -32,7 +32,7 @@ body { background: #ffffff; color: black; }
This is the complete list of member functions for
-TQCharRef, including inherited members.
+TQCharRef, including inherited members.
All the functions in this class are reentrant when TQt is built with thread support. #include <tqstring.h>
- List of all member functions.
+ Most of the TQChar member functions also exist in TQCharRef.
However, they are not explicitly documented here.
- See also TQString::operator[](), TQString::at(), TQChar, and Text Related Classes.
+ See also TQString::operator[](), TQString::at(), TQChar, and Text Related Classes.
diff --git a/doc/html/qconststring-members.html b/doc/html/tqconststring-members.html
similarity index 85%
rename from doc/html/qconststring-members.html
rename to doc/html/tqconststring-members.html
index 6b3d678d..196c68d2 100644
--- a/doc/html/qconststring-members.html
+++ b/doc/html/tqconststring-members.html
@@ -32,12 +32,12 @@ body { background: #ffffff; color: black; }
This is the complete list of member functions for
-TQConstString, including inherited members.
+TQConstString, including inherited members.
All the functions in this class are reentrant when TQt is built with thread support. #include <tqstring.h>
- List of all member functions.
+ In the above snippet, we create a preview widget which inherits from
-TQLabel and TQFilePreview. File preview widgets must inherit from
+TQLabel and TQFilePreview. File preview widgets must inherit from
TQFilePreview.
Inside the class we reimplement TQFilePreview::previewUrl(), this is
where we determine what happens when a file is selected. In the
@@ -351,7 +351,7 @@ this row. If separator is TRUE, a small space is inserted between the
last button of the row and the new button b.
See also addWidgets(), addLeftWidget(), and addRightWidget().
- See also descent().
Examples: drawdemo/drawdemo.cpp and scrollview/scrollview.cpp.
- See also leading() and lineSpacing().
Examples: grapher/grapher.cpp, hello/hello.cpp, and qfd/fontdisplayer.cpp.
- This is the natural inter-line spacing.
See also height() and lineSpacing().
- The left bearing is the right-ward distance of the left-most pixel
of the character from the logical origin of the character. This
value is negative if the pixels of the character extend to the
left of the logical origin.
- See width(TQChar) for a graphical description of this metric.
+ See width(TQChar) for a graphical description of this metric.
See also rightBearing(), minLeftBearing(), and width().
Example: qfd/fontdisplayer.cpp.
@@ -330,7 +330,7 @@ Returns the distance from the base line to where an overline
should be drawn.
See also underlinePos(), strikeOutPos(), and lineWidth().
- The right bearing is the left-ward distance of the right-most
@@ -375,7 +375,7 @@ Returns the distance from the base line to where an underscore
should be drawn.
See also overlinePos(), strikeOutPos(), and lineWidth().
- Returns the logical width of character ch in pixels. This is a
diff --git a/doc/html/tqimageconsumer.html b/doc/html/tqimageconsumer.html
index 1a92b553..8bc981f4 100644
--- a/doc/html/tqimageconsumer.html
+++ b/doc/html/tqimageconsumer.html
@@ -52,7 +52,7 @@ The TQImageConsumer class is an abstraction used by TQMovie class, or TQLabel::setMovie(), are easy to use and for
+ The TQMovie class, or TQLabel::setMovie(), are easy to use and for
most situations do what you want with regards animated images.
A TQImageConsumer consumes information about changes to the TQImage
maintained by a TQImageDecoder. Think of the TQImage as the model or
diff --git a/doc/html/qlabel-h.html b/doc/html/tqlabel-h.html
similarity index 96%
rename from doc/html/qlabel-h.html
rename to doc/html/tqlabel-h.html
index e5ef7395..637ea6fe 100644
--- a/doc/html/qlabel-h.html
+++ b/doc/html/tqlabel-h.html
@@ -1,9 +1,9 @@
-
+
WhatsThis::WhatsThis( TQWidget *w, TQWidget *watch )
- : TQWhatsThis( watch ? watch : w ), widget( w )
+ : TQWhatsThis( watch ? watch : w ), widget( w )
{
}
@@ -379,7 +379,7 @@ so that the system path is used.
TQWhatsThis::whatsThisButton( toolbar );
+
TQWhatsThis::whatsThisButton( toolbar );
// set up whats this
- TQWhatsThis::add ( assistantButton, "This is a toolbutton which opens Assistant" );
+ TQWhatsThis::add ( assistantButton, "This is a toolbutton which opens Assistant" );
HeaderWhatsThis *horizontalWhatsThis = new HeaderWhatsThis( table->horizontalHeader() );
HeaderWhatsThis *verticalWhatsThis = new HeaderWhatsThis( table->verticalHeader() );
@@ -480,7 +480,7 @@ Note that moc requires that T
is the first base class. Back...
TQTextBrowser Rich text browser with hypertext navigation
TQToolTip Tool tips (balloon help) for any widget or rectangular part of a widget
TQToolTipGroup Collects tool tips into related groups
- TQWhatsThis 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?"
@@ -496,7 +496,7 @@ classes in the TQt API.
Use tr() for all Literal Text
@@ -183,7 +183,7 @@ to achieve this is to use TQObject::tr(). For exa
LoginWidget::LoginWidget()
{
- TQLabel *label = new TQLabel( tr("Password:"), this );
+ TQLabel *label = new TQLabel( tr("Password:"), this );
...
}
@@ -197,13 +197,13 @@ directly:
void some_global_function( LoginWidget *logwid )
{
- TQLabel *label = new TQLabel(
+ TQLabel *label = new TQLabel(
LoginWidget::tr("Password:"), logwid );
}
void same_global_function( LoginWidget *logwid )
{
- TQLabel *label = new TQLabel(
+ TQLabel *label = new TQLabel(
tqApp->translate("LoginWidget", "Password:"),
logwid );
}
diff --git a/doc/html/index b/doc/html/index
index aa44a1fd..480aefb0 100644
--- a/doc/html/index
+++ b/doc/html/index
@@ -793,39 +793,39 @@
"TQCanvasView::sizeHint" tqcanvasview.html#sizeHint
"TQCanvasView::worldMatrix" tqcanvasview.html#worldMatrix
"TQCanvasView::~TQCanvasView" tqcanvasview.html#~TQCanvasView
-"TQChar" qchar.html
-"TQChar::Category" qchar.html#Category
-"TQChar::CombiningClass" qchar.html#CombiningClass
-"TQChar::Decomposition" qchar.html#Decomposition
-"TQChar::Direction" qchar.html#Direction
-"TQChar::Joining" qchar.html#Joining
-"TQChar::category" qchar.html#category
-"TQChar::cell" qchar.html#cell
-"TQChar::combiningClass" qchar.html#combiningClass
-"TQChar::decomposition" qchar.html#decomposition
-"TQChar::decompositionTag" qchar.html#decompositionTag
-"TQChar::digitValue" qchar.html#digitValue
-"TQChar::direction" qchar.html#direction
-"TQChar::isDigit" qchar.html#isDigit
-"TQChar::isLetter" qchar.html#isLetter
-"TQChar::isLetterOrNumber" qchar.html#isLetterOrNumber
-"TQChar::isMark" qchar.html#isMark
-"TQChar::isNull" qchar.html#isNull
-"TQChar::isNumber" qchar.html#isNumber
-"TQChar::isPrint" qchar.html#isPrint
-"TQChar::isPunct" qchar.html#isPunct
-"TQChar::isSpace" qchar.html#isSpace
-"TQChar::isSymbol" qchar.html#isSymbol
-"TQChar::joining" qchar.html#joining
-"TQChar::latin1" qchar.html#latin1
-"TQChar::lower" qchar.html#lower
-"TQChar::mirrored" qchar.html#mirrored
-"TQChar::mirroredChar" qchar.html#mirroredChar
-"TQChar::operator char" qchar.html#operator-char
-"TQChar::row" qchar.html#row
-"TQChar::unicode" qchar.html#unicode
-"TQChar::upper" qchar.html#upper
-"QCharRef" qcharref.html
+"TQChar" tqchar.html
+"TQChar::Category" tqchar.html#Category
+"TQChar::CombiningClass" tqchar.html#CombiningClass
+"TQChar::Decomposition" tqchar.html#Decomposition
+"TQChar::Direction" tqchar.html#Direction
+"TQChar::Joining" tqchar.html#Joining
+"TQChar::category" tqchar.html#category
+"TQChar::cell" tqchar.html#cell
+"TQChar::combiningClass" tqchar.html#combiningClass
+"TQChar::decomposition" tqchar.html#decomposition
+"TQChar::decompositionTag" tqchar.html#decompositionTag
+"TQChar::digitValue" tqchar.html#digitValue
+"TQChar::direction" tqchar.html#direction
+"TQChar::isDigit" tqchar.html#isDigit
+"TQChar::isLetter" tqchar.html#isLetter
+"TQChar::isLetterOrNumber" tqchar.html#isLetterOrNumber
+"TQChar::isMark" tqchar.html#isMark
+"TQChar::isNull" tqchar.html#isNull
+"TQChar::isNumber" tqchar.html#isNumber
+"TQChar::isPrint" tqchar.html#isPrint
+"TQChar::isPunct" tqchar.html#isPunct
+"TQChar::isSpace" tqchar.html#isSpace
+"TQChar::isSymbol" tqchar.html#isSymbol
+"TQChar::joining" tqchar.html#joining
+"TQChar::latin1" tqchar.html#latin1
+"TQChar::lower" tqchar.html#lower
+"TQChar::mirrored" tqchar.html#mirrored
+"TQChar::mirroredChar" tqchar.html#mirroredChar
+"TQChar::operator char" tqchar.html#operator-char
+"TQChar::row" tqchar.html#row
+"TQChar::unicode" tqchar.html#unicode
+"TQChar::upper" tqchar.html#upper
+"TQCharRef" tqcharref.html
"QCheckBox" ntqcheckbox.html
"QCheckBox::autoMask" ntqcheckbox.html#autoMask-prop
"QCheckBox::checked" ntqcheckbox.html#checked-prop
@@ -1032,9 +1032,9 @@
"QConnection::numArgs" ntqconnection.html#numArgs
"QConnection::object" ntqconnection.html#object
"QConnection::~QConnection" ntqconnection.html#~QConnection
-"QConstString" qconststring.html
-"QConstString::string" qconststring.html#string
-"QConstString::~QConstString" qconststring.html#~QConstString
+"TQConstString" tqconststring.html
+"TQConstString::string" tqconststring.html#string
+"TQConstString::~TQConstString" tqconststring.html#~TQConstString
"QContextMenuEvent" qcontextmenuevent.html
"QContextMenuEvent::Reason" qcontextmenuevent.html#Reason
"QContextMenuEvent::accept" qcontextmenuevent.html#accept
@@ -3225,39 +3225,39 @@
"QLCDNumber::value" ntqlcdnumber.html#value-prop
"QLCDNumber::~QLCDNumber" ntqlcdnumber.html#~QLCDNumber
"QLNode::getData" qlnode.html#getData
-"QLabel" ntqlabel.html
-"QLabel::alignment" ntqlabel.html#alignment
-"QLabel::alignment" ntqlabel.html#alignment-prop
-"QLabel::backgroundMode" ntqlabel.html#backgroundMode-prop
-"QLabel::buddy" ntqlabel.html#buddy
-"QLabel::clear" ntqlabel.html#clear
-"QLabel::drawContents" ntqlabel.html#drawContents
-"QLabel::hasScaledContents" ntqlabel.html#hasScaledContents
-"QLabel::indent" ntqlabel.html#indent
-"QLabel::indent" ntqlabel.html#indent-prop
-"QLabel::movie" ntqlabel.html#movie
-"QLabel::picture" ntqlabel.html#picture
-"QLabel::pixmap" ntqlabel.html#pixmap
-"QLabel::pixmap" ntqlabel.html#pixmap-prop
-"QLabel::scaledContents" ntqlabel.html#scaledContents-prop
-"QLabel::setAlignment" ntqlabel.html#setAlignment
-"QLabel::setBuddy" ntqlabel.html#setBuddy
-"QLabel::setFont" ntqlabel.html#setFont
-"QLabel::setIndent" ntqlabel.html#setIndent
-"QLabel::setMovie" ntqlabel.html#setMovie
-"QLabel::setNum" ntqlabel.html#setNum
-"QLabel::setPicture" ntqlabel.html#setPicture
-"QLabel::setPixmap" ntqlabel.html#setPixmap
-"QLabel::setScaledContents" ntqlabel.html#setScaledContents
-"QLabel::setText" ntqlabel.html#setText
-"QLabel::setTextFormat" ntqlabel.html#setTextFormat
-"QLabel::sizeForWidth" ntqlabel.html#sizeForWidth
-"QLabel::text" ntqlabel.html#text
-"QLabel::text" ntqlabel.html#text-prop
-"QLabel::textFormat" ntqlabel.html#textFormat
-"QLabel::textFormat" ntqlabel.html#textFormat-prop
-"QLabel::updateLabel" ntqlabel.html#updateLabel
-"QLabel::~QLabel" ntqlabel.html#~QLabel
+"TQLabel" tqlabel.html
+"TQLabel::alignment" tqlabel.html#alignment
+"TQLabel::alignment" tqlabel.html#alignment-prop
+"TQLabel::backgroundMode" tqlabel.html#backgroundMode-prop
+"TQLabel::buddy" tqlabel.html#buddy
+"TQLabel::clear" tqlabel.html#clear
+"TQLabel::drawContents" tqlabel.html#drawContents
+"TQLabel::hasScaledContents" tqlabel.html#hasScaledContents
+"TQLabel::indent" tqlabel.html#indent
+"TQLabel::indent" tqlabel.html#indent-prop
+"TQLabel::movie" tqlabel.html#movie
+"TQLabel::picture" tqlabel.html#picture
+"TQLabel::pixmap" tqlabel.html#pixmap
+"TQLabel::pixmap" tqlabel.html#pixmap-prop
+"TQLabel::scaledContents" tqlabel.html#scaledContents-prop
+"TQLabel::setAlignment" tqlabel.html#setAlignment
+"TQLabel::setBuddy" tqlabel.html#setBuddy
+"TQLabel::setFont" tqlabel.html#setFont
+"TQLabel::setIndent" tqlabel.html#setIndent
+"TQLabel::setMovie" tqlabel.html#setMovie
+"TQLabel::setNum" tqlabel.html#setNum
+"TQLabel::setPicture" tqlabel.html#setPicture
+"TQLabel::setPixmap" tqlabel.html#setPixmap
+"TQLabel::setScaledContents" tqlabel.html#setScaledContents
+"TQLabel::setText" tqlabel.html#setText
+"TQLabel::setTextFormat" tqlabel.html#setTextFormat
+"TQLabel::sizeForWidth" tqlabel.html#sizeForWidth
+"TQLabel::text" tqlabel.html#text
+"TQLabel::text" tqlabel.html#text-prop
+"TQLabel::textFormat" tqlabel.html#textFormat
+"TQLabel::textFormat" tqlabel.html#textFormat-prop
+"TQLabel::updateLabel" tqlabel.html#updateLabel
+"TQLabel::~TQLabel" tqlabel.html#~TQLabel
"QLayout" ntqlayout.html
"QLayout::ResizeMode" ntqlayout.html#ResizeMode
"QLayout::activate" ntqlayout.html#activate
@@ -3723,29 +3723,29 @@
"QListViewItemIterator::operator=" qlistviewitemiterator.html#operator-eq
"QListViewItemIterator::~QListViewItemIterator" qlistviewitemiterator.html#~QListViewItemIterator
"TQLocalFs" tqlocalfs.html
-"QLocale" ntqlocale.html
-"QLocale::Country" ntqlocale.html#Country
-"QLocale::Language" ntqlocale.html#Language
-"QLocale::c" ntqlocale.html#c
-"QLocale::country" ntqlocale.html#country
-"QLocale::countryToString" ntqlocale.html#countryToString
-"QLocale::language" ntqlocale.html#language
-"QLocale::languageToString" ntqlocale.html#languageToString
-"QLocale::name" ntqlocale.html#name
-"QLocale::operator=" ntqlocale.html#operator-eq
-"QLocale::setDefault" ntqlocale.html#setDefault
-"QLocale::system" ntqlocale.html#system
-"QLocale::toDouble" ntqlocale.html#toDouble
-"QLocale::toFloat" ntqlocale.html#toFloat
-"QLocale::toInt" ntqlocale.html#toInt
-"QLocale::toLong" ntqlocale.html#toLong
-"QLocale::toLongLong" ntqlocale.html#toLongLong
-"QLocale::toShort" ntqlocale.html#toShort
-"QLocale::toString" ntqlocale.html#toString
-"QLocale::toUInt" ntqlocale.html#toUInt
-"QLocale::toULong" ntqlocale.html#toULong
-"QLocale::toULongLong" ntqlocale.html#toULongLong
-"QLocale::toUShort" ntqlocale.html#toUShort
+"TQLocale" tqlocale.html
+"TQLocale::Country" tqlocale.html#Country
+"TQLocale::Language" tqlocale.html#Language
+"TQLocale::c" tqlocale.html#c
+"TQLocale::country" tqlocale.html#country
+"TQLocale::countryToString" tqlocale.html#countryToString
+"TQLocale::language" tqlocale.html#language
+"TQLocale::languageToString" tqlocale.html#languageToString
+"TQLocale::name" tqlocale.html#name
+"TQLocale::operator=" tqlocale.html#operator-eq
+"TQLocale::setDefault" tqlocale.html#setDefault
+"TQLocale::system" tqlocale.html#system
+"TQLocale::toDouble" tqlocale.html#toDouble
+"TQLocale::toFloat" tqlocale.html#toFloat
+"TQLocale::toInt" tqlocale.html#toInt
+"TQLocale::toLong" tqlocale.html#toLong
+"TQLocale::toLongLong" tqlocale.html#toLongLong
+"TQLocale::toShort" tqlocale.html#toShort
+"TQLocale::toString" tqlocale.html#toString
+"TQLocale::toUInt" tqlocale.html#toUInt
+"TQLocale::toULong" tqlocale.html#toULong
+"TQLocale::toULongLong" tqlocale.html#toULongLong
+"TQLocale::toUShort" tqlocale.html#toUShort
"TQMacMime" tqmacmime.html
"TQMacMime::all" tqmacmime.html#all
"TQMacMime::canConvert" tqmacmime.html#canConvert
@@ -5257,18 +5257,18 @@
"TQSignalMapper::removeMappings" tqsignalmapper.html#removeMappings
"TQSignalMapper::setMapping" tqsignalmapper.html#setMapping
"TQSignalMapper::~TQSignalMapper" tqsignalmapper.html#~TQSignalMapper
-"QSimpleRichText" ntqsimplerichtext.html
-"QSimpleRichText::adjustSize" ntqsimplerichtext.html#adjustSize
-"QSimpleRichText::anchorAt" ntqsimplerichtext.html#anchorAt
-"QSimpleRichText::context" ntqsimplerichtext.html#context
-"QSimpleRichText::draw" ntqsimplerichtext.html#draw
-"QSimpleRichText::height" ntqsimplerichtext.html#height
-"QSimpleRichText::inText" ntqsimplerichtext.html#inText
-"QSimpleRichText::setDefaultFont" ntqsimplerichtext.html#setDefaultFont
-"QSimpleRichText::setWidth" ntqsimplerichtext.html#setWidth
-"QSimpleRichText::width" ntqsimplerichtext.html#width
-"QSimpleRichText::widthUsed" ntqsimplerichtext.html#widthUsed
-"QSimpleRichText::~QSimpleRichText" ntqsimplerichtext.html#~QSimpleRichText
+"TQSimpleRichText" tqsimplerichtext.html
+"TQSimpleRichText::adjustSize" tqsimplerichtext.html#adjustSize
+"TQSimpleRichText::anchorAt" tqsimplerichtext.html#anchorAt
+"TQSimpleRichText::context" tqsimplerichtext.html#context
+"TQSimpleRichText::draw" tqsimplerichtext.html#draw
+"TQSimpleRichText::height" tqsimplerichtext.html#height
+"TQSimpleRichText::inText" tqsimplerichtext.html#inText
+"TQSimpleRichText::setDefaultFont" tqsimplerichtext.html#setDefaultFont
+"TQSimpleRichText::setWidth" tqsimplerichtext.html#setWidth
+"TQSimpleRichText::width" tqsimplerichtext.html#width
+"TQSimpleRichText::widthUsed" tqsimplerichtext.html#widthUsed
+"TQSimpleRichText::~TQSimpleRichText" tqsimplerichtext.html#~TQSimpleRichText
"TQSize" tqsize.html
"TQSize::ScaleMode" tqsize.html#ScaleMode
"TQSize::boundedTo" tqsize.html#boundedTo
@@ -6093,13 +6093,13 @@
"QSvgDevice::setBoundingRect" qsvgdevice.html#setBoundingRect
"QSvgDevice::toString" qsvgdevice.html#toString
"QSvgDevice::~QSvgDevice" qsvgdevice.html#~QSvgDevice
-"QSyntaxHighlighter" ntqsyntaxhighlighter.html
-"QSyntaxHighlighter::currentParagraph" ntqsyntaxhighlighter.html#currentParagraph
-"QSyntaxHighlighter::highlightParagraph" ntqsyntaxhighlighter.html#highlightParagraph
-"QSyntaxHighlighter::rehighlight" ntqsyntaxhighlighter.html#rehighlight
-"QSyntaxHighlighter::setFormat" ntqsyntaxhighlighter.html#setFormat
-"QSyntaxHighlighter::textEdit" ntqsyntaxhighlighter.html#textEdit
-"QSyntaxHighlighter::~QSyntaxHighlighter" ntqsyntaxhighlighter.html#~QSyntaxHighlighter
+"TQSyntaxHighlighter" tqsyntaxhighlighter.html
+"TQSyntaxHighlighter::currentParagraph" tqsyntaxhighlighter.html#currentParagraph
+"TQSyntaxHighlighter::highlightParagraph" tqsyntaxhighlighter.html#highlightParagraph
+"TQSyntaxHighlighter::rehighlight" tqsyntaxhighlighter.html#rehighlight
+"TQSyntaxHighlighter::setFormat" tqsyntaxhighlighter.html#setFormat
+"TQSyntaxHighlighter::textEdit" tqsyntaxhighlighter.html#textEdit
+"TQSyntaxHighlighter::~TQSyntaxHighlighter" tqsyntaxhighlighter.html#~TQSyntaxHighlighter
"QTSManip::exec" qtsmanip.html#exec
"QTab" qtab.html
"QTab::iconSet" qtab.html#iconSet
@@ -7254,19 +7254,19 @@
"TQWaitCondition::wakeAll" tqwaitcondition.html#wakeAll
"TQWaitCondition::wakeOne" tqwaitcondition.html#wakeOne
"TQWaitCondition::~TQWaitCondition" tqwaitcondition.html#~TQWaitCondition
-"QWhatsThis" ntqwhatsthis.html
-"QWhatsThis::add" ntqwhatsthis.html#add
-"QWhatsThis::clicked" ntqwhatsthis.html#clicked
-"QWhatsThis::display" ntqwhatsthis.html#display
-"QWhatsThis::enterWhatsThisMode" ntqwhatsthis.html#enterWhatsThisMode
-"QWhatsThis::inWhatsThisMode" ntqwhatsthis.html#inWhatsThisMode
-"QWhatsThis::leaveWhatsThisMode" ntqwhatsthis.html#leaveWhatsThisMode
-"QWhatsThis::remove" ntqwhatsthis.html#remove
-"QWhatsThis::setFont" ntqwhatsthis.html#setFont
-"QWhatsThis::text" ntqwhatsthis.html#text
-"QWhatsThis::textFor" ntqwhatsthis.html#textFor
-"QWhatsThis::whatsThisButton" ntqwhatsthis.html#whatsThisButton
-"QWhatsThis::~QWhatsThis" ntqwhatsthis.html#~QWhatsThis
+"TQWhatsThis" tqwhatsthis.html
+"TQWhatsThis::add" tqwhatsthis.html#add
+"TQWhatsThis::clicked" tqwhatsthis.html#clicked
+"TQWhatsThis::display" tqwhatsthis.html#display
+"TQWhatsThis::enterWhatsThisMode" tqwhatsthis.html#enterWhatsThisMode
+"TQWhatsThis::inWhatsThisMode" tqwhatsthis.html#inWhatsThisMode
+"TQWhatsThis::leaveWhatsThisMode" tqwhatsthis.html#leaveWhatsThisMode
+"TQWhatsThis::remove" tqwhatsthis.html#remove
+"TQWhatsThis::setFont" tqwhatsthis.html#setFont
+"TQWhatsThis::text" tqwhatsthis.html#text
+"TQWhatsThis::textFor" tqwhatsthis.html#textFor
+"TQWhatsThis::whatsThisButton" tqwhatsthis.html#whatsThisButton
+"TQWhatsThis::~TQWhatsThis" tqwhatsthis.html#~TQWhatsThis
"QWheelEvent" qwheelevent.html
"QWheelEvent::accept" qwheelevent.html#accept
"QWheelEvent::delta" qwheelevent.html#delta
@@ -7941,7 +7941,7 @@
"nsplugin-examples" nsplugin-examples.html
"objectmodel" objectmodel.html
"opengl-examples" opengl-examples.html
-"operator!=" qchar.html#operator!-eq
+"operator!=" tqchar.html#operator!-eq
"operator!=" tqcstring.html#operator!-eq
"operator!=" tqpoint.html#operator!-eq
"operator!=" tqrect.html#operator!-eq
@@ -7959,7 +7959,7 @@
"operator-" tqsize.html#operator-
"operator/" tqpoint.html#operator/
"operator/" tqsize.html#operator/
-"operator<" qchar.html#operator-lt
+"operator<" tqchar.html#operator-lt
"operator<" tqcstring.html#operator-lt
"operator<" tqstring.html#operator-lt
"operator<<" tqbitarray.html#operator-lt-lt
@@ -7993,19 +7993,19 @@
"operator<<" ntquuid.html#operator-lt-lt
"operator<<" tqvaluelist.html#operator-lt-lt
"operator<<" tqwmatrix.html#operator-lt-lt
-"operator<=" qchar.html#operator-lt-eq
+"operator<=" tqchar.html#operator-lt-eq
"operator<=" tqcstring.html#operator-lt-eq
"operator<=" tqstring.html#operator-lt-eq
-"operator==" qchar.html#operator-eq-eq
+"operator==" tqchar.html#operator-eq-eq
"operator==" tqcstring.html#operator-eq-eq
"operator==" tqpoint.html#operator-eq-eq
"operator==" tqrect.html#operator-eq-eq
"operator==" tqsize.html#operator-eq-eq
"operator==" tqstring.html#operator-eq-eq
-"operator>" qchar.html#operator-gt
+"operator>" tqchar.html#operator-gt
"operator>" tqcstring.html#operator-gt
"operator>" tqstring.html#operator-gt
-"operator>=" qchar.html#operator-gt-eq
+"operator>=" tqchar.html#operator-gt-eq
"operator>=" tqcstring.html#operator-gt-eq
"operator>=" tqstring.html#operator-gt-eq
"operator>>" tqbitarray.html#operator-gt-gt
diff --git a/doc/html/layout-example.html b/doc/html/layout-example.html
index 89a7ccee..272713f5 100644
--- a/doc/html/layout-example.html
+++ b/doc/html/layout-example.html
@@ -48,7 +48,7 @@ classes, TQGridLayout,
*****************************************************************************/
#include <ntqapplication.h>
-#include <ntqlabel.h>
+#include <tqlabel.h>
#include <tqcolor.h>
#include <ntqpushbutton.h>
#include <ntqlayout.h>
@@ -148,7 +148,7 @@ public:
// Make a label that is a buddy of the line edit
TQString s;
s.sprintf( "Line &%d", row+1 );
- TQLabel *label = new TQLabel( ed, s, this );
+ TQLabel *label = new TQLabel( ed, s, this );
// The label goes in the first column.
grid->addWidget( label, row, labelCol );
}
@@ -166,15 +166,15 @@ public:
grid->setColStretch( multiCol, 20 );
// Add a widget at the bottom.
- TQLabel* sb = new TQLabel( this );
- sb->setText( "Let's pretend this is a status bar" );
+ TQLabel* sb = new TQLabel( this );
+ sb->setText( "Let's pretend this is a status bar" );
sb->setFrameStyle( TQFrame::Panel | TQFrame::Sunken );
// This widget will use all horizontal space, and have a fixed height.
// we should have made a subclass and implemented sizePolicy there...
sb->setFixedHeight( sb->sizeHint().height() );
- sb->setAlignment( AlignVCenter | AlignLeft );
+ sb->setAlignment( AlignVCenter | AlignLeft );
topLayout->addWidget( sb );
topLayout->activate();
diff --git a/doc/html/layout.html b/doc/html/layout.html
index 0358ed90..e2c64344 100644
--- a/doc/html/layout.html
+++ b/doc/html/layout.html
@@ -80,11 +80,11 @@ resized.
TQGrid *mainGrid = new TQGrid( 2 ); // a 2 x n grid
- new TQLabel( "One", mainGrid );
- new TQLabel( "Two", mainGrid );
- new TQLabel( "Three", mainGrid );
- new TQLabel( "Four", mainGrid );
- new TQLabel( "Five", mainGrid );
+ new TQLabel( "One", mainGrid );
+ new TQLabel( "Two", mainGrid );
+ new TQLabel( "Three", mainGrid );
+ new TQLabel( "Four", mainGrid );
+ new TQLabel( "Five", mainGrid );
/*
- TQLabel *lab = new TQLabel( tr("<b>TROLL PRINT</b>"), this );
- lab->setAlignment( AlignCenter );
+ TQLabel *lab = new TQLabel( tr("<b>TROLL PRINT</b>"), this );
+ lab->setAlignment( AlignCenter );
*/
Troll Print 1.1
TQDateEdit
L
- TQLabel
+ TQLabel
TQProgressBar
@@ -201,7 +201,7 @@ classes), see TQt's Classes.
TQTable
W
- TQWhatsThis
+ TQWhatsThis
TQDial
@@ -263,7 +263,7 @@ classes), see TQt's Classes.
TQMenuBar
- TQSimpleRichText
+ TQSimpleRichText
TQTimeEdit
diff --git a/doc/html/mdi-example.html b/doc/html/mdi-example.html
index 36aa1ec7..aa29c577 100644
--- a/doc/html/mdi-example.html
+++ b/doc/html/mdi-example.html
@@ -144,7 +144,7 @@ private:
#include <tqmovie.h>
#include <tqfile.h>
#include <tqfiledialog.h>
-#include <ntqlabel.h>
+#include <tqlabel.h>
#include <tqstatusbar.h>
#include <ntqmessagebox.h>
#include <tqprinter.h>
@@ -155,10 +155,10 @@ private:
#include <tqtextedit.h>
#include <tqpainter.h>
#include <tqpaintdevicemetrics.h>
-#include <ntqwhatsthis.h>
+#include <tqwhatsthis.h>
#include <tqobjectlist.h>
#include <ntqvbox.h>
-#include <ntqsimplerichtext.h>
+#include <tqsimplerichtext.h>
#include "filesave.xpm"
#include "fileopen.xpm"
@@ -203,13 +203,13 @@ const char * filePrintText = "Click this button to print the file you "
TQToolButton * filePrint
= new TQToolButton( printIcon, "Print File", TQString::null,
this, TQ_SLOT(print()), fileTools, "print file" );
- TQWhatsThis::add( filePrint, filePrintText );
+ TQWhatsThis::add( filePrint, filePrintText );
#endif
(void)TQWhatsThis::whatsThisButton( fileTools );
- TQWhatsThis::add( fileOpen, fileOpenText );
- TQWhatsThis::add( fileSave, fileSaveText );
+ TQWhatsThis::add( fileOpen, fileOpenText );
+ TQWhatsThis::add( fileSave, fileSaveText );
TQPopupMenu * file = new TQPopupMenu( this );
menuBar()->insertItem( "&File", file );
@@ -530,21 +530,21 @@ void MDIWindow::print( TQPrinter
int dpiy = metrics.logicalDpiY();
int margin = (int) ( (2/2.54)*dpiy ); // 2 cm margins
TQRect view( margin, margin, metrics.width() - 2*margin, metrics.height() - 2*margin );
- TQSimpleRichText richText( TQStyleSheet::convertFromPlainText(medit->text()),
+ TQSimpleRichText richText( TQStyleSheet::convertFromPlainText(medit->text()),
TQFont(),
medit->context(),
medit->styleSheet(),
medit->mimeSourceFactory(),
view.height() );
- richText.setWidth( &p, view.width() );
+ richText.setWidth( &p, view.width() );
int page = 1;
do {
- richText.draw( &p, margin, margin, view, colorGroup() );
+ richText.draw( &p, margin, margin, view, colorGroup() );
view.moveBy( 0, view.height() );
p.translate( 0 , -view.height() );
p.drawText( view.right() - p.fontMetrics().width( TQString::number( page ) ),
view.bottom() + p.fontMetrics().ascent() + 5, TQString::number( page ) );
- if ( view.top() - margin >= richText.height() )
+ if ( view.top() - margin >= richText.height() )
break;
TQString msg( "Printing (page " );
msg += TQString::number( ++pageNo );
diff --git a/doc/html/menu-example.html b/doc/html/menu-example.html
index ae09aa36..4be978c1 100644
--- a/doc/html/menu-example.html
+++ b/doc/html/menu-example.html
@@ -53,7 +53,7 @@ context menu.
#include <tqwidget.h>
#include <tqmenubar.h>
-#include <ntqlabel.h>
+#include <tqlabel.h>
class MenuExample : public TQWidget
@@ -90,7 +90,7 @@ private:
TQMenuBar *menu;
- TQLabel *label;
+ TQLabel *label;
bool isBold;
bool isUnderline;
int boldID, underlineID;
@@ -291,23 +291,23 @@ private:
menu->setSeparator( TQMenuBar::InWindowsStyle );
- TQLabel *msg = new TQLabel( this );
+ TQLabel *msg = new TQLabel( this );
TQ_CHECK_PTR( msg );
- msg->setText( "A context menu is available.\n"
+ msg->setText( "A context menu is available.\n"
"Invoke it by right-clicking or by"
" pressing the 'context' button." );
msg->setGeometry( 0, height() - 60, width(), 60 );
- msg->setAlignment( AlignCenter );
+ msg->setAlignment( AlignCenter );
- label = new TQLabel( this );
+ label = new TQLabel( this );
TQ_CHECK_PTR( label );
label->setGeometry( 20, rect().center().y()-20, width()-40, 40 );
label->setFrameStyle( TQFrame::Box | TQFrame::Raised );
label->setLineWidth( 1 );
- label->setAlignment( AlignCenter );
+ label->setAlignment( AlignCenter );
connect( this, TQ_SIGNAL(explain(const TQString&)),
- label, TQ_SLOT(setText(const TQString&)) );
+ label, TQ_SLOT(setText(const TQString&)) );
setMinimumSize( 100, 80 );
setFocusPolicy( TQWidget::ClickFocus );
@@ -318,9 +318,9 @@ private:
{
TQPopupMenu* contextMenu = new TQPopupMenu( this );
TQ_CHECK_PTR( contextMenu );
- TQLabel *caption = new TQLabel( "<font color=darkblue><u><b>"
+ TQLabel *caption = new TQLabel( "<font color=darkblue><u><b>"
"Context Menu</b></u></font>", this );
- caption->setAlignment( TQt::AlignCenter );
+ caption->setAlignment( TQt::AlignCenter );
contextMenu->insertItem( caption );
contextMenu->insertItem( "&New", this, TQ_SLOT(news()), CTRL+Key_N );
contextMenu->insertItem( "&Open...", this, TQ_SLOT(open()), CTRL+Key_O );
@@ -376,7 +376,7 @@ void MenuExample::normal()
isBold = FALSE;
isUnderline = FALSE;
TQFont font;
- label->setFont( font );
+ label->setFont( font );
menu->setItemChecked( boldID, isBold );
menu->setItemChecked( underlineID, isUnderline );
emit explain( "Options/Normal selected" );
@@ -389,7 +389,7 @@ void MenuExample::bold()
TQFont font;
font.setBold( isBold );
font.setUnderline( isUnderline );
- label->setFont( font );
+ label->setFont( font );
menu->setItemChecked( boldID, isBold );
emit explain( "Options/Bold selected" );
}
@@ -401,7 +401,7 @@ void MenuExample::underline()
TQFont font;
font.setBold( isBold );
font.setUnderline( isUnderline );
- label->setFont( font );
+ label->setFont( font );
menu->setItemChecked( underlineID, isUnderline );
emit explain( "Options/Underline selected" );
}
diff --git a/doc/html/motif-walkthrough-2.html b/doc/html/motif-walkthrough-2.html
index d30c2801..013cc6eb 100644
--- a/doc/html/motif-walkthrough-2.html
+++ b/doc/html/motif-walkthrough-2.html
@@ -64,7 +64,7 @@ it until we have replaced the View widget.
TQPushButton p( "&Exit", parent ); // automatic shortcut ALT+Key_E
@@ -114,7 +114,7 @@ pressing the key multiple times, users can navigate between all
matching accelerators. Some standard controls like TQPushButton and
TQCheckBox 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
+slot invoking the button's action. Most controls, like TQLabel and
TQTabBar, treat activated() and activatedAmbiguously() as
equivalent.
-Member Function Documentation
TQAccel::TQAccel ( TQWidget * parent, const char * name = 0 )
@@ -282,7 +282,7 @@ Sets a What's This help text for the accelerator item id to text To set What's This help on a menu item (with or without an
accelerator key), use TQMenuData::setWhatsThis().
-
TQKeySequence TQAccel::shortcutKey ( const TQString & str ) [static]
diff --git a/doc/html/ntqaccessible.html b/doc/html/ntqaccessible.html
index bc7f68f6..eec9d302 100644
--- a/doc/html/ntqaccessible.html
+++ b/doc/html/ntqaccessible.html
@@ -272,7 +272,7 @@ accessibility information.
ValueChange when the position of a slider has been changed. control is the ID of the child element that has changed. When control is 0, the object itself has changed.
diff --git a/doc/html/ntqframe.html b/doc/html/ntqframe.html
index 6d219482..4b66bb89 100644
--- a/doc/html/ntqframe.html
+++ b/doc/html/ntqframe.html
@@ -35,7 +35,7 @@ body { background: #ffffff; color: black; }
More...
Public Members
@@ -88,10 +88,10 @@ fill in the frame. This function is reimplemented by subclasses.
There are also two other less useful functions: drawFrame() and
frameChanged().
- TQLabel label(...);
+ TQLabel label(...);
label.setFrameStyle( TQFrame::Panel | TQFrame::Raised );
label.setLineWidth( 2 );
@@ -197,7 +197,7 @@ inside the frame. It should only draw inside contentsRec
default function does nothing.
void TQFrame::drawFrame ( TQPainter * p ) [virtual protected]
Draws the frame using the painter p and the current frame
diff --git a/doc/html/ntqguardedptr.html b/doc/html/ntqguardedptr.html
index 45012a58..f5a68771 100644
--- a/doc/html/ntqguardedptr.html
+++ b/doc/html/ntqguardedptr.html
@@ -67,7 +67,7 @@ destroyed while you still hold a reference to it. You can safely
test the pointer for validity.
- TQGuardedPtr<TQLabel> label = new TQLabel( 0, "label" );
+ TQGuardedPtr<TQLabel> label = new TQLabel( 0, "label" );
label->setText( "I like guarded pointers" );
delete (TQLabel*) label; // simulate somebody destroying the label
diff --git a/doc/html/ntqlcdnumber.html b/doc/html/ntqlcdnumber.html
index c95c0288..c613303f 100644
--- a/doc/html/ntqlcdnumber.html
+++ b/doc/html/ntqlcdnumber.html
@@ -113,7 +113,7 @@ store the value there.
diff --git a/doc/html/ntqt.html b/doc/html/ntqt.html
index b82616cc..410f355e 100644
--- a/doc/html/ntqt.html
+++ b/doc/html/ntqt.html
@@ -35,7 +35,7 @@ body { background: #ffffff; color: black; }
that need to be global-like.
More...
-
Member Type Documentation
TQLCDNumber::Mode
diff --git a/doc/html/ntqlineedit.html b/doc/html/ntqlineedit.html
index 652cea29..8036cce5 100644
--- a/doc/html/ntqlineedit.html
+++ b/doc/html/ntqlineedit.html
@@ -199,7 +199,7 @@ that presents some of these editing options.
-
Member Type Documentation
TQLineEdit::EchoMode
@@ -258,7 +258,7 @@ text is selected, the cursor is moved to the beginning of the
selected text and the selected text is deleted.
int TQLineEdit::characterAt ( int xpos, TQChar * chr ) const
+
int TQLineEdit::characterAt ( int xpos, TQChar * chr ) const
This function is obsolete. It is provided to keep old source working. We strongly advise against using it in new code.
void TQLineEdit::clear () [virtual slot]
diff --git a/doc/html/ntqprogressdialog.html b/doc/html/ntqprogressdialog.html
index 4eba6f57..d8ee3b53 100644
--- a/doc/html/ntqprogressdialog.html
+++ b/doc/html/ntqprogressdialog.html
@@ -294,7 +294,7 @@ the stack, i.e. use new() to create the button.
Sets the cancel button's text to cancelButtonText.
void TQProgressDialog::setLabel ( TQLabel * label )
+
void TQProgressDialog::setLabel ( TQLabel * label )
Sets the label to label. The progress dialog resizes to fit. The
label becomes owned by the progress dialog and will be deleted when
diff --git a/doc/html/ntqscrollview.html b/doc/html/ntqscrollview.html
index 6d7dd3d5..c04ffc22 100644
--- a/doc/html/ntqscrollview.html
+++ b/doc/html/ntqscrollview.html
@@ -184,16 +184,16 @@ large child in the TQScrollView. The child should be a child of the
You can go on to add arbitrary child widgets to the single child
in the scrollview as you would with any widget:
- TQLabel* child1 = new TQLabel("CHILD", big_box);
- TQLabel* child2 = new TQLabel("CHILD", big_box);
- TQLabel* child3 = new TQLabel("CHILD", big_box);
+ TQLabel* child1 = new TQLabel("CHILD", big_box);
+ TQLabel* child2 = new TQLabel("CHILD", big_box);
+ TQLabel* child3 = new TQLabel("CHILD", big_box);
...
Using a Very Big View with Some Widgets
@@ -209,17 +209,17 @@ adding them with addChild() (this is the same as the pro
the single large widget in the previous example):
TQScrollView* sv = new TQScrollView(...);
- TQLabel* child1 = new TQLabel("CHILD", sv->viewport());
+ TQLabel* child1 = new TQLabel("CHILD", sv->viewport());
sv->addChild(child1);
- TQLabel* child2 = new TQLabel("CHILD", sv->viewport());
+ TQLabel* child2 = new TQLabel("CHILD", sv->viewport());
sv->addChild(child2);
- TQLabel* child3 = new TQLabel("CHILD", sv->viewport());
+ TQLabel* child3 = new TQLabel("CHILD", sv->viewport());
sv->addChild(child3);
Here, the TQScrollView has the same four children: the viewport(),
the verticalScrollBar(), the horizontalScrollBar() and a small
-cornerWidget(). The viewport() has the three TQLabel objects as
+cornerWidget(). The viewport() has the three TQLabel objects as
child widgets. When the view is scrolled, the scrollview moves the
child widgets individually.
Using a Very Big View with Many Widgets
@@ -236,11 +236,11 @@ of the viewport(), and adding them with enableClipper(TRUE);
- TQLabel* child1 = new TQLabel("CHILD", sv->viewport());
+ TQLabel* child1 = new TQLabel("CHILD", sv->viewport());
sv->addChild(child1);
- TQLabel* child2 = new TQLabel("CHILD", sv->viewport());
+ TQLabel* child2 = new TQLabel("CHILD", sv->viewport());
sv->addChild(child2);
- TQLabel* child3 = new TQLabel("CHILD", sv->viewport());
+ TQLabel* child3 = new TQLabel("CHILD", sv->viewport());
sv->addChild(child3);
Public Members
@@ -794,7 +794,7 @@ boundaries.
TQt::TextFormat
#include <ntqapplication.h>
#include <ntqpushbutton.h>
- #include <ntqlabel.h>
+ #include <tqlabel.h>
#include "myobject.h"
#include "mydialog.h"
diff --git a/doc/html/qprogressdialog-h.html b/doc/html/qprogressdialog-h.html
index 6c849f0e..eadc20ff 100644
--- a/doc/html/qprogressdialog-h.html
+++ b/doc/html/qprogressdialog-h.html
@@ -78,7 +78,7 @@ body { background: #ffffff; color: black; }
#define TQPROGRESSDIALOG_H
#ifndef QT_H
-#include "ntqlabel.h" // ### remove or keep for users' convenience?
+#include "tqlabel.h" // ### remove or keep for users' convenience?
#include "ntqprogressbar.h" // ### remove or keep for users' convenience?
#endif // QT_H
diff --git a/doc/html/qt.dcf b/doc/html/qt.dcf
index ebb8a1fe..1b7a2df7 100644
--- a/doc/html/qt.dcf
+++ b/doc/html/qt.dcf
@@ -825,51 +825,51 @@
-
The declaration of ApplicationWindow
@@ -228,7 +228,7 @@ function, as its mouse interface is unusual.
"You can also select the <b>Open</b> command "
"from the <b>File</b> menu.</p>";
- TQWhatsThis::add( fileOpen, fileOpenText );
+ TQWhatsThis::add( fileOpen, fileOpenText );
#include <ntqapplication.h>
#include <ntqdialog.h>
- #include <ntqlabel.h>
+ #include <tqlabel.h>
#include <ntqlayout.h>
#include <ntqlineedit.h>
#include <tqsqldatabase.h>
@@ -1041,11 +1041,11 @@ the code below can be automatically generated by
FormDialog::FormDialog()
{
- TQLabel *forenameLabel = new TQLabel( "Forename:", this );
- TQLabel *forenameDisplay = new TQLabel( this );
- TQLabel *surnameLabel = new TQLabel( "Surname:", this );
- TQLabel *surnameDisplay = new TQLabel( this );
- TQLabel *salaryLabel = new TQLabel( "Salary:", this );
+ TQLabel *forenameLabel = new TQLabel( "Forename:", this );
+ TQLabel *forenameDisplay = new TQLabel( this );
+ TQLabel *surnameLabel = new TQLabel( "Surname:", this );
+ TQLabel *surnameDisplay = new TQLabel( this );
+ TQLabel *salaryLabel = new TQLabel( "Salary:", this );
TQLineEdit *salaryEdit = new TQLineEdit( this );
TQGridLayout *grid = new TQGridLayout( this );
diff --git a/doc/html/t12-lcdrange-cpp.html b/doc/html/t12-lcdrange-cpp.html
index 0e4d432e..288d23ec 100644
--- a/doc/html/t12-lcdrange-cpp.html
+++ b/doc/html/t12-lcdrange-cpp.html
@@ -42,7 +42,7 @@ body { background: #ffffff; color: black; }
#include <ntqslider.h>
#include <ntqlcdnumber.h>
-#include <ntqlabel.h>
+#include <tqlabel.h>
LCDRange::LCDRange( TQWidget *parent, const char *name )
@@ -68,8 +68,8 @@ void LCDRange::init()
slider->setRange( 0, 99 );
slider->setValue( 0 );
- label = new TQLabel( " ", this, "label" );
- label->setAlignment( AlignCenter );
+ label = new TQLabel( " ", this, "label" );
+ label->setAlignment( AlignCenter );
connect( slider, TQ_SIGNAL(valueChanged(int)),
lcd, TQ_SLOT(display(int)) );
@@ -88,7 +88,7 @@ int LCDRange::value() const
const char *LCDRange::text() const
{
- return label->text();
+ return label->text();
}
@@ -113,7 +113,7 @@ void LCDRange::setRange( int minVal, int maxVal )
void LCDRange::setText( const char *s )
{
- label->setText( s );
+ label->setText( s );
}
-
TQChar Lightweight Unicode character
- TQCharRef Helper class for TQString
- TQConstString String objects using constant Unicode data
+ TQChar Lightweight Unicode character
+ TQCharRef Helper class for TQString
+ TQConstString String objects using constant Unicode data
TQCString Abstraction of the classic C zero-terminated char array (char *)
- TQLabel Text or image display
- TQLocale Converts between numbers and their string representations in various languages
- TQSimpleRichText Small displayable piece of rich text
+ TQLabel Text or image display
+ TQLocale Converts between numbers and their string representations in various languages
+ TQSimpleRichText Small displayable piece of rich text
TQString Abstraction of Unicode text and the classic C '\0'-terminated char array
TQStringList List of strings
TQStrList Doubly-linked list of char*
TQStyleSheet Collection of styles for rich text rendering and a generator of tags
TQStyleSheetItem Encapsulation of a set of text styles
- TQSyntaxHighlighter Base class for implementing TQTextEdit syntax highlighters
+ TQSyntaxHighlighter Base class for implementing TQTextEdit syntax highlighters
TQTextBrowser Rich text browser with hypertext navigation
TQTextEdit Powerful single-page rich text editor
TQTextIStream Convenience class for input streams
diff --git a/doc/html/themes-example.html b/doc/html/themes-example.html
index f9e4cf52..d598910f 100644
--- a/doc/html/themes-example.html
+++ b/doc/html/themes-example.html
@@ -155,7 +155,7 @@ private:
#include "tqpixmap.h" // for now
#include "tqpalette.h" // for now
#include "tqwidget.h"
-#include "ntqlabel.h"
+#include "tqlabel.h"
#include "tqimage.h"
#include "ntqpushbutton.h"
#include "tqwidget.h"
@@ -1651,7 +1651,7 @@ private:
#include "tqpixmap.h" // for now
#include "tqpalette.h" // for now
#include "tqwidget.h"
-#include "ntqlabel.h"
+#include "tqlabel.h"
#include "tqimage.h"
#include "ntqpushbutton.h"
#include "tqwidget.h"
diff --git a/doc/html/tictac-example.html b/doc/html/tictac-example.html
index 136d099b..efd2b2f5 100644
--- a/doc/html/tictac-example.html
+++ b/doc/html/tictac-example.html
@@ -142,7 +142,7 @@ private:
TQComboBox *whoStarts;
TQPushButton *newGame;
TQPushButton *quit;
- TQLabel *message;
+ TQLabel *message;
TicTacGameBoard *board;
};
@@ -168,7 +168,7 @@ private:
#include <ntqdrawutil.h>
#include <ntqcombobox.h>
#include <ntqcheckbox.h>
-#include <ntqlabel.h>
+#include <tqlabel.h>
#include <ntqlayout.h>
#include <stdlib.h> // rand() function
#include <tqdatetime.h> // seed for rand()
@@ -447,9 +447,9 @@ void TicTacGameBoard::computerMove()
// Create a message label
- message = new TQLabel( this );
+ message = new TQLabel( this );
message->setFrameStyle( TQFrame::WinPanel | TQFrame::Sunken );
- message->setAlignment( AlignCenter );
+ message->setAlignment( AlignCenter );
l->addWidget( message );
// Create the game board and connect the signal finished() to this
@@ -525,7 +525,7 @@ void TicTacToe::newState()
static const char *msg[] = { // TicTacGameBoard::State texts
"Click Play to start", "Make your move",
"You won!", "Computer won!", "It's a draw" };
- message->setText( msg[board->state()] );
+ message->setText( msg[board->state()] );
return;
}
diff --git a/doc/html/titleindex b/doc/html/titleindex
index 2b395fee..77af3b5a 100644
--- a/doc/html/titleindex
+++ b/doc/html/titleindex
@@ -218,10 +218,10 @@ TQCanvasText Class | tqcanvastext.html
TQCanvasText Member List | tqcanvastext-members.html
TQCanvasView Class | tqcanvasview.html
TQCanvasView Member List | tqcanvasview-members.html
-TQChar Class | qchar.html
-TQChar Member List | qchar-members.html
-QCharRef Class | qcharref.html
-QCharRef Member List | qcharref-members.html
+TQChar Class | tqchar.html
+TQChar Member List | tqchar-members.html
+TQCharRef Class | tqcharref.html
+TQCharRef Member List | tqcharref-members.html
QCheckBox Class | ntqcheckbox.html
QCheckBox Member List | qcheckbox-members.html
QCheckListItem Class | qchecklistitem.html
@@ -248,8 +248,8 @@ QComboTableItem Class | qcombotableitem.html
QComboTableItem Member List | qcombotableitem-members.html
QCommonStyle Class | ntqcommonstyle.html
QCommonStyle Member List | qcommonstyle-members.html
-QConstString Class | qconststring.html
-QConstString Member List | qconststring-members.html
+TQConstString Class | tqconststring.html
+TQConstString Member List | tqconststring-members.html
QContextMenuEvent Class | qcontextmenuevent.html
QContextMenuEvent Member List | qcontextmenuevent-members.html
QCursor Class | ntqcursor.html
@@ -501,8 +501,8 @@ QKeySequence Class | ntqkeysequence.html
QKeySequence Member List | qkeysequence-members.html
QLCDNumber Class | ntqlcdnumber.html
QLCDNumber Member List | qlcdnumber-members.html
-QLabel Class | ntqlabel.html
-QLabel Member List | qlabel-members.html
+TQLabel Class | tqlabel.html
+TQLabel Member List | tqlabel-members.html
QLayout Class | ntqlayout.html
QLayout Member List | qlayout-members.html
QLayoutItem Class | qlayoutitem.html
@@ -529,8 +529,8 @@ QListViewItemIterator Class | qlistviewitemiterator.html
QListViewItemIterator Member List | qlistviewitemiterator-members.html
TQLocalFs Class | tqlocalfs.html
TQLocalFs Member List | tqlocalfs-members.html
-QLocale Class | ntqlocale.html
-QLocale Member List | qlocale-members.html
+TQLocale Class | tqlocale.html
+TQLocale Member List | tqlocale-members.html
TQMacMime Class | tqmacmime.html
TQMacMime Member List | tqmacmime-members.html
QMacStyle Class | qmacstyle.html
@@ -694,8 +694,8 @@ TQSignal Class | tqsignal.html
TQSignal Member List | tqsignal-members.html
TQSignalMapper Class | tqsignalmapper.html
TQSignalMapper Member List | tqsignalmapper-members.html
-QSimpleRichText Class | ntqsimplerichtext.html
-QSimpleRichText Member List | qsimplerichtext-members.html
+TQSimpleRichText Class | tqsimplerichtext.html
+TQSimpleRichText Member List | tqsimplerichtext-members.html
TQSize Class | tqsize.html
TQSize Member List | tqsize-members.html
TQSizeGrip Class | tqsizegrip.html
@@ -782,8 +782,8 @@ TQStyleSheet Class | tqstylesheet.html
TQStyleSheet Member List | tqstylesheet-members.html
TQStyleSheetItem Class | tqstylesheetitem.html
TQStyleSheetItem Member List | tqstylesheetitem-members.html
-QSyntaxHighlighter Class | ntqsyntaxhighlighter.html
-QSyntaxHighlighter Member List | qsyntaxhighlighter-members.html
+TQSyntaxHighlighter Class | tqsyntaxhighlighter.html
+TQSyntaxHighlighter Member List | tqsyntaxhighlighter-members.html
QTab Class | qtab.html
QTab Member List | qtab-members.html
QTabBar Class | ntqtabbar.html
@@ -886,8 +886,8 @@ TQWMatrix Class | tqwmatrix.html
TQWMatrix Member List | tqwmatrix-members.html
TQWaitCondition Class | tqwaitcondition.html
TQWaitCondition Member List | tqwaitcondition-members.html
-QWhatsThis Class | ntqwhatsthis.html
-QWhatsThis Member List | qwhatsthis-members.html
+TQWhatsThis Class | tqwhatsthis.html
+TQWhatsThis Member List | tqwhatsthis-members.html
QWheelEvent Class | qwheelevent.html
QWheelEvent Member List | qwheelevent-members.html
TQWidget Class | tqwidget.html
@@ -1157,14 +1157,14 @@ tqintcache.h Include File | tqintcache-h.html
tqintdict.h Include File | tqintdict-h.html
tqiodevice.h Include File | tqiodevice-h.html
tqjiscodec.h Include File | tqjiscodec-h.html
-ntqlabel.h Include File | qlabel-h.html
+tqlabel.h Include File | tqlabel-h.html
ntqlayout.h Include File | qlayout-h.html
ntqlcdnumber.h Include File | qlcdnumber-h.html
ntqlibrary.h Include File | qlibrary-h.html
ntqlineedit.h Include File | qlineedit-h.html
ntqlistbox.h Include File | qlistbox-h.html
ntqlistview.h Include File | qlistview-h.html
-ntqlocale.h Include File | qlocale-h.html
+tqlocale.h Include File | tqlocale-h.html
tqlocalfs.h Include File | tqlocalfs-h.html
qmacstyle_mac.h Include File | qmacstyle_mac-h.html
tqmainwindow.h Include File | tqmainwindow-h.html
@@ -1230,7 +1230,7 @@ tqsettings.h Include File | tqsettings-h.html
ntqsgistyle.h Include File | qsgistyle-h.html
tqsignal.h Include File | tqsignal-h.html
tqsignalmapper.h Include File | tqsignalmapper-h.html
-ntqsimplerichtext.h Include File | qsimplerichtext-h.html
+tqsimplerichtext.h Include File | tqsimplerichtext-h.html
tqsize.h Include File | tqsize-h.html
tqsizegrip.h Include File | tqsizegrip-h.html
tqsizepolicy.h Include File | tqsizepolicy-h.html
@@ -1266,7 +1266,7 @@ tqstyle.h Include File | tqstyle-h.html
tqstylefactory.h Include File | tqstylefactory-h.html
tqstyleplugin.h Include File | tqstyleplugin-h.html
tqstylesheet.h Include File | tqstylesheet-h.html
-ntqsyntaxhighlighter.h Include File | qsyntaxhighlighter-h.html
+tqsyntaxhighlighter.h Include File | tqsyntaxhighlighter-h.html
ntqtabbar.h Include File | qtabbar-h.html
ntqtabdialog.h Include File | qtabdialog-h.html
ntqtable.h Include File | qtable-h.html
@@ -1299,7 +1299,7 @@ ntqvbox.h Include File | qvbox-h.html
ntqvbuttongroup.h Include File | qvbuttongroup-h.html
ntqvgroupbox.h Include File | qvgroupbox-h.html
tqwaitcondition.h Include File | tqwaitcondition-h.html
-ntqwhatsthis.h Include File | qwhatsthis-h.html
+tqwhatsthis.h Include File | tqwhatsthis-h.html
tqwidget.h Include File | tqwidget-h.html
tqwidgetfactory.h Include File | tqwidgetfactory-h.html
tqwidgetplugin.h Include File | tqwidgetplugin-h.html
diff --git a/doc/html/toplevel-example.html b/doc/html/toplevel-example.html
index e53d3519..376ee156 100644
--- a/doc/html/toplevel-example.html
+++ b/doc/html/toplevel-example.html
@@ -184,9 +184,9 @@ modeless dialogs.
if ( !widget ) {
widget = new TQVBox( parent, 0, f );
widget->setMargin( 20 );
- TQLabel *label = new TQLabel(flagList.join(" | "), widget);
- label->setTextFormat(RichText);
- label->setAlignment(WordBreak);
+ TQLabel *label = new TQLabel(flagList.join(" | "), widget);
+ label->setTextFormat(RichText);
+ label->setAlignment(WordBreak);
TQPushButton *okButton = new TQPushButton( "Close", widget );
connect( okButton, TQ_SIGNAL(clicked()), widget, TQ_SLOT(close()) );
widget->move( pos() );
diff --git a/doc/html/tqaction-application-example.html b/doc/html/tqaction-application-example.html
index 3e8d4477..baab0a2f 100644
--- a/doc/html/tqaction-application-example.html
+++ b/doc/html/tqaction-application-example.html
@@ -121,9 +121,9 @@ private:
#include <tqtextstream.h>
#include <tqpainter.h>
#include <tqpaintdevicemetrics.h>
-#include <ntqwhatsthis.h>
+#include <tqwhatsthis.h>
#include <tqaction.h>
-#include <ntqsimplerichtext.h>
+#include <tqsimplerichtext.h>
#include "filesave.xpm"
#include "fileopen.xpm"
@@ -334,21 +334,21 @@ void ApplicationWindow::print()
int dpiy = metrics.logicalDpiY();
int margin = (int) ( (2/2.54)*dpiy ); // 2 cm margins
TQRect view( margin, margin, metrics.width() - 2*margin, metrics.height() - 2*margin );
- TQSimpleRichText richText( TQStyleSheet::convertFromPlainText(e->text()),
+ TQSimpleRichText richText( TQStyleSheet::convertFromPlainText(e->text()),
TQFont(),
e->context(),
e->styleSheet(),
e->mimeSourceFactory(),
view.height() );
- richText.setWidth( &p, view.width() );
+ richText.setWidth( &p, view.width() );
int page = 1;
do {
- richText.draw( &p, margin, margin, view, colorGroup() );
+ richText.draw( &p, margin, margin, view, colorGroup() );
view.moveBy( 0, view.height() );
p.translate( 0 , -view.height() );
p.drawText( view.right() - p.fontMetrics().width( TQString::number( page ) ),
view.bottom() + p.fontMetrics().ascent() + 5, TQString::number( page ) );
- if ( view.top() - margin >= richText.height() )
+ if ( view.top() - margin >= richText.height() )
break;
printer->newPage();
page++;
diff --git a/doc/html/tqaction.html b/doc/html/tqaction.html
index ebbbc312..36fb6b77 100644
--- a/doc/html/tqaction.html
+++ b/doc/html/tqaction.html
@@ -504,7 +504,7 @@ appear at all.
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.
-
Complete Member List for TQChar
-
Public Members
Member Type Documentation
TQChar::Category
@@ -250,7 +250,7 @@ description of the values.
TQChar::TQChar ( const TQChar & c )
+
TQChar::TQChar ( const TQChar & c )
Category TQChar::category () const
+
Category TQChar::category () const
Returns the character category.
Decomposition TQChar::decompositionTag () const
+
Decomposition TQChar::decompositionTag () const
Returns the tag defining the composition of the character. Returns
TQChar::Single if no decomposition exists.
@@ -312,7 +312,7 @@ TQChar::Single if no decomposition exists.
Returns the numeric value of the digit, or -1 if the character is
not a digit.
-Direction TQChar::direction () const
+
Direction TQChar::direction () const
Returns the character's direction.
Joining TQChar::joining () const
+
Joining TQChar::joining () const
Warning: This function is not supported (it may change to use
Unicode character classes).
@@ -384,7 +384,7 @@ Unicode character classes).
TQChar TQChar::lower () const
+
TQChar TQChar::lower () const
Returns the lowercase equivalent if the character is uppercase;
otherwise returns the character itself.
@@ -395,7 +395,7 @@ Returns TRUE if the character is a mirrored character (one that
should be reversed if the text direction is reversed); otherwise
returns FALSE.
-TQChar TQChar::mirroredChar () const
+
TQChar TQChar::mirroredChar () const
Returns the mirrored character if this character is a mirrored
character, otherwise returns the character itself.
@@ -434,20 +434,20 @@ information), this function is useful.
TQChar TQChar::upper () const
+
TQChar TQChar::upper () const
Returns the uppercase equivalent if the character is lowercase;
otherwise returns the character itself.
Related Functions
-int operator!= ( TQChar c1, TQChar c2 )
+
int operator!= ( TQChar c1, TQChar c2 )
int operator!= ( char ch, TQChar c )
+
int operator!= ( char ch, TQChar c )
int operator!= ( TQChar c, char ch )
+
int operator!= ( TQChar c, char ch )
int operator< ( TQChar c1, TQChar c2 )
+
int operator< ( TQChar c1, TQChar c2 )
int operator< ( TQChar c, char ch )
+
int operator< ( TQChar c, char ch )
int operator< ( char ch, TQChar c )
+
int operator< ( char ch, TQChar c )
int operator<= ( TQChar c1, TQChar c2 )
+
int operator<= ( TQChar c1, TQChar c2 )
int operator<= ( TQChar c, char ch )
+
int operator<= ( TQChar c, char ch )
int operator<= ( char ch, TQChar c )
+
int operator<= ( char ch, TQChar c )
bool operator== ( TQChar c1, TQChar c2 )
+
bool operator== ( TQChar c1, TQChar c2 )
bool operator== ( char ch, TQChar c )
+
bool operator== ( char ch, TQChar c )
bool operator== ( TQChar c, char ch )
+
bool operator== ( TQChar c, char ch )
int operator> ( TQChar c1, TQChar c2 )
+
int operator> ( TQChar c1, TQChar c2 )
int operator> ( TQChar c, char ch )
+
int operator> ( TQChar c, char ch )
int operator> ( char ch, TQChar c )
+
int operator> ( char ch, TQChar c )
int operator>= ( TQChar c1, TQChar c2 )
+
int operator>= ( TQChar c1, TQChar c2 )
int operator>= ( TQChar c, char ch )
+
int operator>= ( TQChar c, char ch )
int operator>= ( char ch, TQChar c )
+
int operator>= ( char ch, TQChar c )
Complete Member List for TQCharRef
diff --git a/doc/html/qcharref.html b/doc/html/tqcharref.html
similarity index 93%
rename from doc/html/qcharref.html
rename to doc/html/tqcharref.html
index d83b1c95..dfa9a8a3 100644
--- a/doc/html/qcharref.html
+++ b/doc/html/tqcharref.html
@@ -35,7 +35,7 @@ body { background: #ffffff; color: black; }
More...
Detailed Description
@@ -46,10 +46,10 @@ The TQCharRef class is a helper class for TQString.
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.
+string: if you want to keep the character, copy it into a TQChar.
Complete Member List for TQConstString
-
Public Members
Member Function Documentation
-TQConstString::TQConstString ( const TQChar * unicode, uint length )
+
TQConstString::TQConstString ( const TQChar * unicode, uint length )
Constructs a TQConstString that uses the first length Unicode
characters in the array unicode. Any attempt to modify copies
diff --git a/doc/html/tqdir-example.html b/doc/html/tqdir-example.html
index c8584334..558f107f 100644
--- a/doc/html/tqdir-example.html
+++ b/doc/html/tqdir-example.html
@@ -55,7 +55,7 @@ body { background: #ffffff; color: black; }
#include <tqtextstream.h>
#include <ntqhbox.h>
#include <ntqspinbox.h>
-#include <ntqlabel.h>
+#include <tqlabel.h>
#include <ntqmultilineedit.h>
#include <ntqheader.h>
#include <ntqevent.h>
@@ -205,7 +205,7 @@ void Preview::showPreview( const TQUrl
setMargin( 5 );
TQHBox *row = new TQHBox( this );
row->setSpacing( 5 );
- (void)new TQLabel( tr( "Only show files smaller than: " ), row );
+ (void)new TQLabel( tr( "Only show files smaller than: " ), row );
sizeSpinBox = new TQSpinBox( 1, 10000, 1, row );
sizeSpinBox->setSuffix( " KB" );
sizeSpinBox->setValue( 64 );
diff --git a/doc/html/tqfiledialog.html b/doc/html/tqfiledialog.html
index 76de27ae..2a575c94 100644
--- a/doc/html/tqfiledialog.html
+++ b/doc/html/tqfiledialog.html
@@ -212,10 +212,10 @@ function names differ, e.g. setContentsPreview
that the user can see either the contents of the file, or information
about the file.
- class Preview : public TQLabel, public TQFilePreview
+ class Preview : public TQLabel, public TQFilePreview
{
public:
- Preview( TQWidget *parent=0 ) : TQLabel( parent ) {}
+ Preview( TQWidget *parent=0 ) : TQLabel( parent ) {}
void previewUrl( const TQUrl &u )
{
@@ -230,7 +230,7 @@ about the file.
void TQFileDialog::addWidgets ( TQLabel * l, TQWidget * w, TQPushButton * b ) [protected]
+
void TQFileDialog::addWidgets ( TQLabel * l, TQWidget * w, TQPushButton * b ) [protected]
Adds the specified widgets to the bottom of the file dialog. The
label l is placed underneath the "file name" and the "file types"
@@ -361,7 +361,7 @@ The button b is placed underneath the Cancel pushbutton.
MyFileDialog::MyFileDialog( TQWidget* parent, const char* name ) :
TQFileDialog( parent, name )
{
- TQLabel* label = new TQLabel( "Added widgets", this );
+ TQLabel* label = new TQLabel( "Added widgets", this );
TQLineEdit* lineedit = new TQLineEdit( this );
TQPushButton* pushbutton = new TQPushButton( this );
@@ -626,10 +626,10 @@ TQFilePreview, so you should pass the same widget twice. If you
don't, you must remember to delete the preview object in order to
avoid memory leaks.
- class Preview : public TQLabel, public TQFilePreview
+ class Preview : public TQLabel, public TQFilePreview
{
public:
- Preview( TQWidget *parent=0 ) : TQLabel( parent ) {}
+ Preview( TQWidget *parent=0 ) : TQLabel( parent ) {}
void previewUrl( const TQUrl &u )
{
@@ -729,10 +729,10 @@ TQFilePreview, so you should pass the same widget twice. If you
don't, you must remember to delete the preview object in order to
avoid memory leaks.
- class Preview : public TQLabel, public TQFilePreview
+ class Preview : public TQLabel, public TQFilePreview
{
public:
- Preview( TQWidget *parent=0 ) : TQLabel( parent ) {}
+ Preview( TQWidget *parent=0 ) : TQLabel( parent ) {}
void previewUrl( const TQUrl &u )
{
diff --git a/doc/html/tqfontmetrics.html b/doc/html/tqfontmetrics.html
index 0a36b04c..8d65e14a 100644
--- a/doc/html/tqfontmetrics.html
+++ b/doc/html/tqfontmetrics.html
@@ -161,7 +161,7 @@ value will be too small.
TQRect TQFontMetrics::boundingRect ( TQChar ch ) const
+
TQRect TQFontMetrics::boundingRect ( TQChar ch ) const
Returns the rectangle that is covered by ink if the character
specified by ch were to be drawn at the origin of the coordinate
@@ -261,7 +261,7 @@ base line).
bool TQFontMetrics::inFont ( TQChar ch ) const
+
bool TQFontMetrics::inFont ( TQChar ch ) const
Returns TRUE if character ch is a valid character in the font;
otherwise returns FALSE.
@@ -273,14 +273,14 @@ Returns the leading of the font.
int TQFontMetrics::leftBearing ( TQChar ch ) const
+
int TQFontMetrics::leftBearing ( TQChar ch ) const
Returns the left bearing of character ch in the font.
int TQFontMetrics::rightBearing ( TQChar ch ) const
+
int TQFontMetrics::rightBearing ( TQChar ch ) const
Returns the right bearing of character ch in the font.
int TQFontMetrics::width ( TQChar ch ) const
+
int TQFontMetrics::width ( TQChar ch ) const