diff options
author | Michele Calgaro <michele.calgaro@yahoo.it> | 2024-08-12 22:02:11 +0900 |
---|---|---|
committer | Michele Calgaro <michele.calgaro@yahoo.it> | 2024-08-12 22:02:11 +0900 |
commit | 42957a3f812a1db64a9ae452baa2d3fbc35f2466 (patch) | |
tree | 0928f4e01a3dcc0698b46c7608d8310e471bdb49 /examples | |
parent | fef846914f8db6dc117e206ef913d519bf6bb33e (diff) | |
download | tqt3-42957a3f812a1db64a9ae452baa2d3fbc35f2466.tar.gz tqt3-42957a3f812a1db64a9ae452baa2d3fbc35f2466.zip |
Rename more widget nt* related files to equivalent tq*
Signed-off-by: Michele Calgaro <michele.calgaro@yahoo.it>
Diffstat (limited to 'examples')
86 files changed, 154 insertions, 154 deletions
diff --git a/examples/README b/examples/README index e9f4bff04..15f0d2e26 100644 --- a/examples/README +++ b/examples/README @@ -32,7 +32,7 @@ biff [Unix-specific] new mail; it looks like xbiff but is much shorter. buttongroups - This examples shows different types of group boxes (QButtonGroup, + This examples shows different types of group boxes (TQButtonGroup, and QGroupBox), and different kinds of buttons (TQCheckBox, TQRadioButton, and TQPushButton). It also shows how to add a TQPopupMenu to a button. @@ -51,8 +51,8 @@ chart checklists Shows two list views with check box and radio button items. (These kinds of lists are often used with setup programs.) - Shows the use of QListView, QListViewItem, TQCheckListItem, - QListViewItemIterator, and TQValueList. + Shows the use of TQListView, TQListViewItem, TQCheckListItem, + TQListViewItemIterator, and TQValueList. cursor This example shows how to set the mouse cursor for a widget. Shows @@ -79,10 +79,10 @@ desktop like any other. dirview - This example program demonstrates how to use a QListView and - QListViewItems to build a multi-column hierarchical, memory- and + This example program demonstrates how to use a TQListView and + TQListViewItems to build a multi-column hierarchical, memory- and CPU-efficient directory browser. It also demonstrates how to use - Drag'n'Drop in a QListview. (See also the fileiconview example.) + Drag'n'Drop in a TQListview. (See also the fileiconview example.) distributor This is a utility program that can be used to modify the paths @@ -125,7 +125,7 @@ forever that counts the number of rectangles that are drawn per second. gridview - A QGridView with 100x100 cells. + A TQGridView with 100x100 cells. hello Hello world with colored animated wavy text. @@ -160,7 +160,7 @@ iconview layout [obsolete] This example shows simple and intermediate use of Qt's layout - classes, QGridLaout, QBoxLayout etc. + classes, TQGridLaout, QBoxLayout etc. life An implementation of the life game with a Unix-flavor GUI. @@ -170,14 +170,14 @@ lineedits including echo modes, input masks, and validators. listbox - Shows QListBox options. + Shows TQListBox options. listboxcombo - This example shows how to use QListBox (with single selection and + This example shows how to use TQListBox (with single selection and multi selection) and TQComboBox (editable and non-editable). listviews - This examples shows how to work with QListView (a tree view + This examples shows how to work with TQListView (a tree view widget) mdi @@ -257,12 +257,12 @@ process progress WARNING: this program has a strobe effect. This example presents a long-running process (drawing lots of - rectangles) and a QProgressDialog. Two types of progress dialog + rectangles) and a TQProgressDialog. Two types of progress dialog are offered, one that simply shows text, and a custom one that shows an animation using a TQLabel and a TQTimer. progressbar - Shows how to use a QProgressBar. + Shows how to use a TQProgressBar. tqdir Shows how to use and customize TQFileDialog. Run @@ -272,7 +272,7 @@ tqdir qfd This example program displays all the characters of a selected font. It shows the use of TQFontDialog, TQFontMetrics and TQFontInfo, - and a QTable subclass. + and a TQTable subclass. qmag This is a simple magnifier-type program. It shows how one can do @@ -335,19 +335,19 @@ sql/sqltable tabdialog This example shows how to use a dialog with multiple tabs (pages). - It shows the use of QTabDialog and TQFileInfo. + It shows the use of TQTabDialog and TQFileInfo. table/bigtable This shows how to create a sparse very large (1M x 1M cells) - QTable by avoiding the use of table items. + TQTable by avoiding the use of table items. table/small-table-demo - A small, simple QTable example that uses QTableItems to show text + A small, simple TQTable example that uses TQTableItems to show text and pixmaps, and TQComboTableItems and TQCheckTableItems to show how they work. table/statistics - A QTable example that shows how to subclass QTableItem. + A TQTable example that shows how to subclass TQTableItem. tablet This shows how to interact with a tablet device. It will only run @@ -388,7 +388,7 @@ widgets Shows many TQt widgets (See also the demo example). wizard - This example shows how to use QWizard. + This example shows how to use TQWizard. xform Demonstrates how to arbitrarily rotate, shear and scale text and diff --git a/examples/addressbook/centralwidget.cpp b/examples/addressbook/centralwidget.cpp index d993a1565..6d81d86f3 100644 --- a/examples/addressbook/centralwidget.cpp +++ b/examples/addressbook/centralwidget.cpp @@ -9,8 +9,8 @@ #include "centralwidget.h" -#include <ntqtabwidget.h> -#include <ntqlistview.h> +#include <tqtabwidget.h> +#include <tqlistview.h> #include <ntqlayout.h> #include <tqwidget.h> #include <tqlabel.h> diff --git a/examples/buttongroups/buttongroups.cpp b/examples/buttongroups/buttongroups.cpp index ed2534fc9..92f63b33a 100644 --- a/examples/buttongroups/buttongroups.cpp +++ b/examples/buttongroups/buttongroups.cpp @@ -10,7 +10,7 @@ #include "buttongroups.h" #include <tqpopupmenu.h> -#include <ntqbuttongroup.h> +#include <tqbuttongroup.h> #include <ntqlayout.h> #include <tqradiobutton.h> #include <tqcheckbox.h> diff --git a/examples/canvas/canvas.cpp b/examples/canvas/canvas.cpp index fb04e1b03..e9d11040d 100644 --- a/examples/canvas/canvas.cpp +++ b/examples/canvas/canvas.cpp @@ -8,7 +8,7 @@ #include <tqprinter.h> #include <tqlabel.h> #include <tqimage.h> -#include <ntqprogressdialog.h> +#include <tqprogressdialog.h> #include "canvas.h" #include <stdlib.h> diff --git a/examples/chart/optionsform.cpp b/examples/chart/optionsform.cpp index 094b549a0..321cc5a4c 100644 --- a/examples/chart/optionsform.cpp +++ b/examples/chart/optionsform.cpp @@ -1,9 +1,9 @@ #include "optionsform.h" -#include <ntqbuttongroup.h> +#include <tqbuttongroup.h> #include <tqcombobox.h> #include <tqfontdialog.h> -#include <ntqframe.h> +#include <tqframe.h> #include <tqimage.h> #include <tqlabel.h> #include <ntqlayout.h> diff --git a/examples/chart/setdataform.cpp b/examples/chart/setdataform.cpp index 66910d096..310bf7f48 100644 --- a/examples/chart/setdataform.cpp +++ b/examples/chart/setdataform.cpp @@ -6,7 +6,7 @@ #include <ntqlayout.h> #include <tqpixmap.h> #include <tqpushbutton.h> -#include <ntqtable.h> +#include <tqtable.h> #include "images/pattern01.xpm" #include "images/pattern02.xpm" diff --git a/examples/checklists/checklists.cpp b/examples/checklists/checklists.cpp index 5de580655..e77734ab0 100644 --- a/examples/checklists/checklists.cpp +++ b/examples/checklists/checklists.cpp @@ -9,7 +9,7 @@ #include "checklists.h" -#include <ntqlistview.h> +#include <tqlistview.h> #include <ntqvbox.h> #include <tqlabel.h> #include <tqvaluelist.h> diff --git a/examples/customlayout/main.cpp b/examples/customlayout/main.cpp index af5a7cb31..f50945673 100644 --- a/examples/customlayout/main.cpp +++ b/examples/customlayout/main.cpp @@ -18,7 +18,7 @@ #include <tqcolor.h> #include <ntqgroupbox.h> #include <tqpushbutton.h> -#include <ntqmultilineedit.h> +#include <tqmultilineedit.h> #include <tqcolor.h> int main( int argc, char **argv ) diff --git a/examples/demo/display.cpp b/examples/demo/display.cpp index 1b86db32e..437fe5607 100644 --- a/examples/demo/display.cpp +++ b/examples/demo/display.cpp @@ -13,10 +13,10 @@ #include <ntqlayout.h> #include <tqtimer.h> #include <tqpushbutton.h> -#include <ntqframe.h> +#include <tqframe.h> #include <tqdial.h> #include <tqlcdnumber.h> -#include <ntqprogressbar.h> +#include <tqprogressbar.h> #include <tqspinbox.h> #include <math.h> diff --git a/examples/demo/display.h b/examples/demo/display.h index 8b4b43b7a..b4b405ae3 100644 --- a/examples/demo/display.h +++ b/examples/demo/display.h @@ -12,7 +12,7 @@ #ifndef QT_H #include <tqwidget.h> -#include <ntqframe.h> +#include <tqframe.h> #endif // QT_H class TQTimer; diff --git a/examples/demo/dnd/dnd.cpp b/examples/demo/dnd/dnd.cpp index 34e9540ed..b9efb1668 100644 --- a/examples/demo/dnd/dnd.cpp +++ b/examples/demo/dnd/dnd.cpp @@ -1,7 +1,7 @@ #include <tqiconview.h> #include <tqdragobject.h> #include <ntqlayout.h> -#include <ntqmultilineedit.h> +#include <tqmultilineedit.h> #include "dnd.h" #include "styledbutton.h" diff --git a/examples/demo/dnd/listview.h b/examples/demo/dnd/listview.h index f82f2cb35..1b09e6b98 100644 --- a/examples/demo/dnd/listview.h +++ b/examples/demo/dnd/listview.h @@ -1,4 +1,4 @@ -#include <ntqlistview.h> +#include <tqlistview.h> class ListViewItem : public TQListViewItem { diff --git a/examples/demo/dnd/styledbutton.h b/examples/demo/dnd/styledbutton.h index fc6391a0b..ead8c6f40 100644 --- a/examples/demo/dnd/styledbutton.h +++ b/examples/demo/dnd/styledbutton.h @@ -34,7 +34,7 @@ #ifndef STYLEDBUTTON_H #define STYLEDBUTTON_H -#include <ntqbutton.h> +#include <tqbutton.h> #include <tqpixmap.h> class TQColor; diff --git a/examples/demo/frame.cpp b/examples/demo/frame.cpp index 95b4b2c63..728708517 100644 --- a/examples/demo/frame.cpp +++ b/examples/demo/frame.cpp @@ -23,7 +23,7 @@ #include <tqdir.h> #include <tqtextcodec.h> #include <stdlib.h> -#include <ntqbuttongroup.h> +#include <tqbuttongroup.h> #include <tqtoolbutton.h> static TQTranslator *translator = 0; diff --git a/examples/demo/main.cpp b/examples/demo/main.cpp index 7bccb89ad..7be7d2483 100644 --- a/examples/demo/main.cpp +++ b/examples/demo/main.cpp @@ -40,7 +40,7 @@ #include <ntqapplication.h> #include <tqimage.h> -#include <ntqtabwidget.h> +#include <tqtabwidget.h> #include <tqfont.h> #include <tqworkspace.h> #include <tqwidgetstack.h> diff --git a/examples/demo/qasteroids/ledmeter.h b/examples/demo/qasteroids/ledmeter.h index 4cdf62bad..9ddf8770f 100644 --- a/examples/demo/qasteroids/ledmeter.h +++ b/examples/demo/qasteroids/ledmeter.h @@ -7,7 +7,7 @@ #ifndef __LEDMETER_H__ #define __LEDMETER_H__ -#include <ntqframe.h> +#include <tqframe.h> #include <tqptrlist.h> diff --git a/examples/demo/qthumbwheel.h b/examples/demo/qthumbwheel.h index 9f5de2783..c7f837b7b 100644 --- a/examples/demo/qthumbwheel.h +++ b/examples/demo/qthumbwheel.h @@ -42,7 +42,7 @@ #define TQTHUMBWHEEL_H #ifndef QT_H -#include "ntqframe.h" +#include "tqframe.h" #include "ntqrangecontrol.h" #endif // QT_H diff --git a/examples/demo/textdrawing/example.html b/examples/demo/textdrawing/example.html index fc48cca7b..4056e2a11 100644 --- a/examples/demo/textdrawing/example.html +++ b/examples/demo/textdrawing/example.html @@ -13,7 +13,7 @@ The TQLabel widget provides a static information display <p> <code>#include <<a href="tqlabel-h.html">tqlabel.h</a>></code> <p> -Inherits <a href="ntqframe.html">TQFrame</a>. +Inherits <a href="tqframe.html">TQFrame</a>. <p><a href="tqlabel-members.html">List of all member functions.</a> <h2>Public Members</h2> <ul> @@ -82,13 +82,13 @@ key for another widget. <p>When the content is changed using any of these functions, any previous content is cleared. <p>The look of a TQLabel can be tuned in several ways. All the settings -of <a href="ntqframe.html">TQFrame</a> are available for specifying a widget frame. The +of <a href="tqframe.html">TQFrame</a> are available for specifying a widget frame. The positioning of the content within the TQLabel widget area can be tuned with <a href="#1f406e">setAlignment</a>() and <a href="#ed9b8b">setIndent</a>(). For example, this code sets up a sunken panel with a two-line text in the bottom right corner (both lines being flush with the right side of the label): <p><pre> <a href="tqlabel.html">TQLabel</a> *label = new <a href="tqlabel.html">TQLabel</a>; - label-><a href="ntqframe.html#c0d758">setFrameStyle</a>( TQFrame::Panel | TQFrame::Sunken ); + label-><a href="tqframe.html#c0d758">setFrameStyle</a>( TQFrame::Panel | TQFrame::Sunken ); label-><a href="#dffb43">setText</a>( "first line\nsecond line" ); label-><a href="#1f406e">setAlignment</a>( AlignBottom | AlignRight ); </pre> @@ -118,19 +118,19 @@ use the <a href="#191701">setBuddy</a>() function to accomplish the same. <h3 class="fn"><a name="5514c7"></a>TQLabel::TQLabel ( <a href="tqwidget.html">TQWidget</a> * buddy, const <a href="tqstring.html">TQString</a> & text, <a href="tqwidget.html">TQWidget</a> * parent, const char * name=0, WFlags f=0 )</h3> <p>Constructs a label with a text and a buddy. <p>The <em>text</em> is set with <a href="#dffb43">setText</a>(). The <em>buddy</em> is set with <a href="#191701">setBuddy</a>(). -<p>The <em>parent, name</em> and <em>f</em> arguments are passed to the <a href="ntqframe.html">TQFrame</a> +<p>The <em>parent, name</em> and <em>f</em> arguments are passed to the <a href="tqframe.html">TQFrame</a> constructor. -<p>See also <a href="#dffb43">setText</a>(), <a href="#191701">setBuddy</a>(), <a href="#1f406e">setAlignment</a>(), <a href="ntqframe.html#c0d758">setFrameStyle</a>() and <a href="#ed9b8b">setIndent</a>(). +<p>See also <a href="#dffb43">setText</a>(), <a href="#191701">setBuddy</a>(), <a href="#1f406e">setAlignment</a>(), <a href="tqframe.html#c0d758">setFrameStyle</a>() and <a href="#ed9b8b">setIndent</a>(). <h3 class="fn"><a name="39107d"></a>TQLabel::TQLabel ( <a href="tqwidget.html">TQWidget</a> * parent, const char * name=0, WFlags f=0 )</h3> <p>Constructs an empty label. -<p>The <em>parent, name</em> and <em>f</em> arguments are passed to the <a href="ntqframe.html">TQFrame</a> +<p>The <em>parent, name</em> and <em>f</em> arguments are passed to the <a href="tqframe.html">TQFrame</a> constructor. -<p>See also <a href="#1f406e">setAlignment</a>(), <a href="ntqframe.html#c0d758">setFrameStyle</a>() and <a href="#ed9b8b">setIndent</a>(). +<p>See also <a href="#1f406e">setAlignment</a>(), <a href="tqframe.html#c0d758">setFrameStyle</a>() and <a href="#ed9b8b">setIndent</a>(). <h3 class="fn"><a name="2bafbb"></a>TQLabel::TQLabel ( const <a href="tqstring.html">TQString</a> & text, <a href="tqwidget.html">TQWidget</a> * parent, const char * name=0, WFlags f=0 )</h3> <p>Constructs a label with a text. The <em>text</em> is set with <a href="#dffb43">setText</a>(). -<p>The <em>parent, name</em> and <em>f</em> arguments are passed to the <a href="ntqframe.html">TQFrame</a> +<p>The <em>parent, name</em> and <em>f</em> arguments are passed to the <a href="tqframe.html">TQFrame</a> constructor. -<p>See also <a href="#dffb43">setText</a>(), <a href="#1f406e">setAlignment</a>(), <a href="ntqframe.html#c0d758">setFrameStyle</a>() and <a href="#ed9b8b">setIndent</a>(). +<p>See also <a href="#dffb43">setText</a>(), <a href="#1f406e">setAlignment</a>(), <a href="tqframe.html#c0d758">setFrameStyle</a>() and <a href="#ed9b8b">setIndent</a>(). <h3 class="fn"><a name="9958af"></a>TQLabel::~TQLabel ()</h3> <p>Destructs the label. <h3 class="fn">int <a name="2fcaa3"></a>TQLabel::alignment () const</h3> @@ -149,12 +149,12 @@ is disabled. <p>Clears any label contents. Equivalent with <a href="#dffb43">setText</a>( "" ). <h3 class="fn">void <a name="fac264"></a>TQLabel::drawContents ( <a href="tqpainter.html">TQPainter</a> * p ) <code>[virtual protected]</code></h3> <p>Draws the label contents using the painter <em>p.</em> -<p>Reimplemented from <a href="ntqframe.html#99e687">TQFrame.</a> +<p>Reimplemented from <a href="tqframe.html#99e687">TQFrame.</a> <h3 class="fn">void <a name="479dd2"></a>TQLabel::drawContentsMask ( <a href="tqpainter.html">TQPainter</a> * p ) <code>[virtual protected]</code></h3> <p>Draws the label contents mask using the painter <em>p.</em> Used only in transparent mode. <p>See also <a href="tqwidget.html#c7a335">TQWidget::setAutoMask</a>();. -<p>Reimplemented from <a href="ntqframe.html#4cbf11">TQFrame.</a> +<p>Reimplemented from <a href="tqframe.html#4cbf11">TQFrame.</a> <h3 class="fn">void <a name="0435a2"></a>TQLabel::fontChange ( const <a href="tqfont.html">TQFont</a> & ) <code>[virtual protected]</code></h3> <p>Reimplemented for internal reasons; the API is not affected. <p>Reimplemented from <a href="tqwidget.html#570a8f">TQWidget.</a> @@ -245,13 +245,13 @@ to the right edge if alignment() is <code>AlignRight,</code> to the top edge if alignment() is <code>AlignTop,</code> and to to the bottom edge if alignment() is <code>AlignBottom.</code> <p>If <em>indent</em> is negative, or if no indent has been set, the label -computes the effective indent as follows: If <a href="ntqframe.html#e0ccef">frameWidth</a>() is 0, the +computes the effective indent as follows: If <a href="tqframe.html#e0ccef">frameWidth</a>() is 0, the effective indent becomes 0. If frameWidth() is greater than 0, the effective indent becomes half the width of the "x" character of the widget's current <a href="tqwidget.html#3a7237">font</a>(). <p>If <em>indent</em> is non-negative, the effective indent is <em>indent</em> pixels. -<p>See also <a href="#e3c907">indent</a>(), <a href="#1f406e">setAlignment</a>(), <a href="ntqframe.html#e0ccef">frameWidth</a>() and <a href="tqwidget.html#3a7237">font</a>(). +<p>See also <a href="#e3c907">indent</a>(), <a href="#1f406e">setAlignment</a>(), <a href="tqframe.html#e0ccef">frameWidth</a>() and <a href="tqwidget.html#3a7237">font</a>(). <p>Examples: <a href="movies-main-cpp.html#setIndent">movies/main.cpp</a> <h3 class="fn">void <a name="60de9f"></a>TQLabel::setMovie ( const <a href="tqmovie.html">TQMovie</a> & movie ) <code>[virtual slot]</code></h3> diff --git a/examples/demo/textdrawing/textedit.cpp b/examples/demo/textdrawing/textedit.cpp index 091fb9eb5..65239fc79 100644 --- a/examples/demo/textdrawing/textedit.cpp +++ b/examples/demo/textdrawing/textedit.cpp @@ -14,7 +14,7 @@ #include <tqmenubar.h> #include <tqpopupmenu.h> #include <tqtoolbar.h> -#include <ntqtabwidget.h> +#include <tqtabwidget.h> #include <ntqapplication.h> #include <tqfontdatabase.h> #include <tqcombobox.h> diff --git a/examples/dirview/dirview.cpp b/examples/dirview/dirview.cpp index a0a357445..52900c8cf 100644 --- a/examples/dirview/dirview.cpp +++ b/examples/dirview/dirview.cpp @@ -21,7 +21,7 @@ #include <tqstrlist.h> #include <tqstringlist.h> #include <ntqapplication.h> -#include <ntqheader.h> +#include <tqheader.h> static const char* folder_closed_xpm[]={ "16 16 9 1", diff --git a/examples/dirview/dirview.h b/examples/dirview/dirview.h index 7039525e1..a4dac0d12 100644 --- a/examples/dirview/dirview.h +++ b/examples/dirview/dirview.h @@ -10,7 +10,7 @@ #ifndef DIRVIEW_H #define DIRVIEW_H -#include <ntqlistview.h> +#include <tqlistview.h> #include <tqstring.h> #include <tqfile.h> #include <tqfileinfo.h> diff --git a/examples/drawdemo/drawdemo.cpp b/examples/drawdemo/drawdemo.cpp index 6d2bed24f..bc3d6ae3c 100644 --- a/examples/drawdemo/drawdemo.cpp +++ b/examples/drawdemo/drawdemo.cpp @@ -12,7 +12,7 @@ #include <tqprinter.h> #include <tqpushbutton.h> #include <tqradiobutton.h> -#include <ntqbuttongroup.h> +#include <tqbuttongroup.h> #include <ntqapplication.h> #include <math.h> diff --git a/examples/fileiconview/mainwindow.cpp b/examples/fileiconview/mainwindow.cpp index f714e194e..6e9d70aa1 100644 --- a/examples/fileiconview/mainwindow.cpp +++ b/examples/fileiconview/mainwindow.cpp @@ -12,7 +12,7 @@ #include "../dirview/dirview.h" #include <ntqsplitter.h> -#include <ntqprogressbar.h> +#include <tqprogressbar.h> #include <tqlabel.h> #include <tqstatusbar.h> #include <tqtoolbar.h> diff --git a/examples/gridview/gridview.cpp b/examples/gridview/gridview.cpp index 823580a23..928641ed8 100644 --- a/examples/gridview/gridview.cpp +++ b/examples/gridview/gridview.cpp @@ -8,7 +8,7 @@ *****************************************************************************/ #include <ntqapplication.h> -#include <ntqgridview.h> +#include <tqgridview.h> #include <tqpainter.h> // Grid size diff --git a/examples/helpsystem/helpsystem.doc b/examples/helpsystem/helpsystem.doc index 97221322e..b368f0a11 100644 --- a/examples/helpsystem/helpsystem.doc +++ b/examples/helpsystem/helpsystem.doc @@ -16,15 +16,15 @@ The application has a user interface based on a TQMainWindow with a menubar, statusbar and a toolbar, and uses - a QTable as the central widget. + a TQTable as the central widget. \quotefile helpsystem/tooltip.h \skipto : public TQToolTip \printuntil }; Two TQToolTip subclasses implement dynamic tooltips for - QHeader and QTable by reimplementing maybeTip(). The + TQHeader and TQTable by reimplementing maybeTip(). The constructors differ from the TQToolTip constructor in having a - QHeader and a QTable respectively as the first parameter for + TQHeader and a TQTable respectively as the first parameter for the constructor instead of a TQWidget. This is because we want to ensure that only headers and tables can be passed as arguments. A TQToolTipGroup can be provided as the @@ -32,8 +32,8 @@ \printuntil }; - The TableToolTip class keeps a reference to the QTable - as a member for easier access of the QTable object later on. + The TableToolTip class keeps a reference to the TQTable + as a member for easier access of the TQTable object later on. \quotefile helpsystem/tooltip.cpp \skipto HeaderToolTip::HeaderToolTip @@ -43,7 +43,7 @@ to the TQToolTip constructor. \printuntil } - The implementation of maybeTip() uses the QHeader API + The implementation of maybeTip() uses the TQHeader API to get the section at the requested position and uses TQToolTip::tip() to display the section's label in a tooltip. The second string is used by TQToolTipGroup and will @@ -51,18 +51,18 @@ \printuntil } - Since QTable is a TQScrollView all user interaction - happens on QTable's viewport() . The TableToolTip + Since TQTable is a TQScrollView all user interaction + happens on TQTable's viewport() . The TableToolTip constructor passes the viewport() and the tooltip group to the TQToolTip constructor, and initializes the table - member with the QTable pointer itself. + member with the TQTable pointer itself. \printto moveTopLeft - The implementation of maybeTip() uses the QTable API + The implementation of maybeTip() uses the TQTable API to get information about the cell at the requested position. - The QTable API expects contents coordinates, and since the + The TQTable API expects contents coordinates, and since the requested point is relative to the viewport we need to translate - the coordinates before we can use QTable's functions. + the coordinates before we can use TQTable's functions. \printuntil } \quotefile helpsystem/whatsthis.h \skipto class WhatsThis @@ -88,7 +88,7 @@ The WhatsThis constructor takes two parameters, the first is the widget we want to provide WhatsThis for, and the second is the one which receives the events. Normally this is the same widget, - but some widgets, like QTable, are more complex and have a + but some widgets, like TQTable, are more complex and have a viewport() widget which receives the events. If such a widget is passed to the constructor it will propagate the parameter to the TQWhatsThis constructor and store the TQWidget pointer itself @@ -119,7 +119,7 @@ WhatsThis constructor. \printto TableWhatsThis::TableWhatsThis - The implementation of text() uses the QHeader API to determine + The implementation of text() uses the TQHeader API to determine whether we have a horizontal or a vertical header and returns a string which states the header's orientation and section. \footnote @@ -128,7 +128,7 @@ inheritance. \endfootnote \printuntil } - Since QTable is a scrollview and has a viewport() which receives + Since TQTable is a scrollview and has a viewport() which receives the events, we propagate the table itself and the table's viewport() to the WhatsThis constructor. \printuntil } @@ -136,9 +136,9 @@ \printuntil } \printuntil } - The implementation of text() uses the QTable API to get + The implementation of text() uses the TQTable API to get information about the cell at the requested position. - The QTable API expects contents coordinates, so we need to + The TQTable API expects contents coordinates, so we need to translate the point as shown earlier for the tooltip classes. We use the rtti() function to figure out the item's type and return a string accordingly. @@ -167,7 +167,7 @@ so that the system path is used. \printto TQWhatsThis::whatsThisButton - A QTable is used as the central widget and the table, the menus + A TQTable is used as the central widget and the table, the menus and the toolbar are populated. \printto // create diff --git a/examples/helpsystem/mainwindow.cpp b/examples/helpsystem/mainwindow.cpp index ad489eb96..8cd3c31bf 100644 --- a/examples/helpsystem/mainwindow.cpp +++ b/examples/helpsystem/mainwindow.cpp @@ -13,7 +13,7 @@ #include <tqmenubar.h> #include <tqpopupmenu.h> #include <tqstatusbar.h> -#include <ntqtable.h> +#include <tqtable.h> #include <tqtoolbar.h> #include <tqtoolbutton.h> #include <tqtooltip.h> diff --git a/examples/helpsystem/tooltip.cpp b/examples/helpsystem/tooltip.cpp index 45ced5661..ab5e5d551 100644 --- a/examples/helpsystem/tooltip.cpp +++ b/examples/helpsystem/tooltip.cpp @@ -8,7 +8,7 @@ *****************************************************************************/ #include <tqtooltip.h> -#include <ntqtable.h> +#include <tqtable.h> #include "tooltip.h" diff --git a/examples/helpsystem/whatsthis.cpp b/examples/helpsystem/whatsthis.cpp index 418e3a4db..113dbc10c 100644 --- a/examples/helpsystem/whatsthis.cpp +++ b/examples/helpsystem/whatsthis.cpp @@ -9,8 +9,8 @@ #include <ntqapplication.h> #include <tqdir.h> -#include <ntqheader.h> -#include <ntqtable.h> +#include <tqheader.h> +#include <tqtable.h> #include "whatsthis.h" @@ -53,7 +53,7 @@ TQString HeaderWhatsThis::text( const TQPoint &p ) if( section == -1 ) return "This is empty space."; TQString docsPath = TQDir("../../doc").absPath(); - return TQString("This is section number %1 in the %2 <a href=%2/html/ntqheader.html>header</a>."). + return TQString("This is section number %1 in the %2 <a href=%2/html/tqheader.html>header</a>."). arg(section + 1). arg(orient). arg(docsPath); @@ -83,7 +83,7 @@ TQString TableWhatsThis::text( const TQPoint &p ) TQString docsPath = TQDir("../../doc").absPath(); if ( TQTableItem::RTTI == i->rtti() ) { - return TQString("This is a <a href=%1/html/qtableitem.html>TQTableItem</a>."). + return TQString("This is a <a href=%1/html/tqtableitem.html>TQTableItem</a>."). arg(docsPath); } else if ( TQComboTableItem::RTTI == i->rtti() ) { return TQString("This is a <a href=%1/html/tqcombotableitem.html>TQComboTableItem</a>." diff --git a/examples/i18n/main.cpp b/examples/i18n/main.cpp index de0a3bb6c..71c61a3a0 100644 --- a/examples/i18n/main.cpp +++ b/examples/i18n/main.cpp @@ -14,7 +14,7 @@ #include <tqcheckbox.h> #include <ntqvbox.h> #include <ntqlayout.h> -#include <ntqbuttongroup.h> +#include <tqbuttongroup.h> #include <tqpushbutton.h> #include <tqsignalmapper.h> #include <tqtextcodec.h> diff --git a/examples/i18n/mywidget.cpp b/examples/i18n/mywidget.cpp index 74aa506e6..86cdee528 100644 --- a/examples/i18n/mywidget.cpp +++ b/examples/i18n/mywidget.cpp @@ -7,10 +7,10 @@ ** *****************************************************************************/ -#include <ntqbuttongroup.h> +#include <tqbuttongroup.h> #include <tqradiobutton.h> #include <tqlabel.h> -#include <ntqlistbox.h> +#include <tqlistbox.h> #include <tqcombobox.h> #include <tqlabel.h> #include <ntqhbox.h> diff --git a/examples/iconview/simple_dd/main.h b/examples/iconview/simple_dd/main.h index c8e731ce0..c82f36848 100644 --- a/examples/iconview/simple_dd/main.h +++ b/examples/iconview/simple_dd/main.h @@ -10,7 +10,7 @@ #include <ntqapplication.h> #include <ntqcursor.h> #include <ntqsplitter.h> -#include <ntqlistbox.h> +#include <tqlistbox.h> #include <tqiconview.h> #include <tqpixmap.h> diff --git a/examples/layout/layout.cpp b/examples/layout/layout.cpp index 42642c71e..1fdc675a8 100644 --- a/examples/layout/layout.cpp +++ b/examples/layout/layout.cpp @@ -13,7 +13,7 @@ #include <tqpushbutton.h> #include <ntqlayout.h> #include <tqlineedit.h> -#include <ntqmultilineedit.h> +#include <tqmultilineedit.h> #include <tqmenubar.h> #include <tqpopupmenu.h> diff --git a/examples/layout/layout.doc b/examples/layout/layout.doc index 90a7d31a3..52a39e5b5 100644 --- a/examples/layout/layout.doc +++ b/examples/layout/layout.doc @@ -6,7 +6,7 @@ \title Layout Managers This example shows simple and intermediate use of Qt's layout - classes, QGridLayout, QBoxLayout etc. + classes, TQGridLayout, QBoxLayout etc. <hr> diff --git a/examples/life/life.h b/examples/life/life.h index 90fe86578..07e0cd650 100644 --- a/examples/life/life.h +++ b/examples/life/life.h @@ -10,7 +10,7 @@ #ifndef LIFE_H #define LIFE_H -#include <ntqframe.h> +#include <tqframe.h> class LifeWidget : public TQFrame diff --git a/examples/lineedits/lineedits.cpp b/examples/lineedits/lineedits.cpp index a61972583..ddb4879c1 100644 --- a/examples/lineedits/lineedits.cpp +++ b/examples/lineedits/lineedits.cpp @@ -11,7 +11,7 @@ #include <tqlineedit.h> #include <tqcombobox.h> -#include <ntqframe.h> +#include <tqframe.h> #include <ntqvalidator.h> #include <tqlabel.h> #include <ntqlayout.h> diff --git a/examples/listbox/listbox.cpp b/examples/listbox/listbox.cpp index 51b7b4f49..c5fceb6a3 100644 --- a/examples/listbox/listbox.cpp +++ b/examples/listbox/listbox.cpp @@ -13,8 +13,8 @@ #include <tqradiobutton.h> #include <tqcheckbox.h> #include <tqspinbox.h> -#include <ntqlistbox.h> -#include <ntqbuttongroup.h> +#include <tqlistbox.h> +#include <tqbuttongroup.h> #include <ntqlayout.h> #include <tqpushbutton.h> diff --git a/examples/listbox/listbox.doc b/examples/listbox/listbox.doc index eefc2a4d3..23153c3af 100644 --- a/examples/listbox/listbox.doc +++ b/examples/listbox/listbox.doc @@ -6,7 +6,7 @@ \title Listbox Example This example shows how to use the different modes (single columns, multiple columns, - fixed number of rows, etc.) of QListBox. + fixed number of rows, etc.) of TQListBox. <hr> diff --git a/examples/listboxcombo/listboxcombo.cpp b/examples/listboxcombo/listboxcombo.cpp index 28558cf77..2b083ecd7 100644 --- a/examples/listboxcombo/listboxcombo.cpp +++ b/examples/listboxcombo/listboxcombo.cpp @@ -10,7 +10,7 @@ #include "listboxcombo.h" #include <tqcombobox.h> -#include <ntqlistbox.h> +#include <tqlistbox.h> #include <ntqhbox.h> #include <tqpushbutton.h> #include <tqstring.h> diff --git a/examples/listviews/listviews.cpp b/examples/listviews/listviews.cpp index dc5b84063..98f8e3fca 100644 --- a/examples/listviews/listviews.cpp +++ b/examples/listviews/listviews.cpp @@ -14,7 +14,7 @@ #include <tqpalette.h> #include <tqobjectlist.h> #include <tqpopupmenu.h> -#include <ntqheader.h> +#include <tqheader.h> #include <tqregexp.h> // ----------------------------------------------------------------- diff --git a/examples/listviews/listviews.h b/examples/listviews/listviews.h index 1b2539f88..b4c8ecaf8 100644 --- a/examples/listviews/listviews.h +++ b/examples/listviews/listviews.h @@ -15,7 +15,7 @@ #include <tqobject.h> #include <tqdatetime.h> #include <tqptrlist.h> -#include <ntqlistview.h> +#include <tqlistview.h> class TQListView; class TQLabel; diff --git a/examples/network/ftpclient/ftpmainwindow.ui.h b/examples/network/ftpclient/ftpmainwindow.ui.h index 603ca1479..6367c185a 100644 --- a/examples/network/ftpclient/ftpmainwindow.ui.h +++ b/examples/network/ftpclient/ftpmainwindow.ui.h @@ -24,7 +24,7 @@ #include <tqstatusbar.h> #include <ntqmessagebox.h> #include <tqfiledialog.h> -#include <ntqprogressdialog.h> +#include <tqprogressdialog.h> #include <ntqapplication.h> #include "connectdialog.h" diff --git a/examples/network/ftpclient/ftpviewitem.h b/examples/network/ftpclient/ftpviewitem.h index e048b6183..42a157882 100644 --- a/examples/network/ftpclient/ftpviewitem.h +++ b/examples/network/ftpclient/ftpviewitem.h @@ -10,7 +10,7 @@ #ifndef FTPVIEWITEM_H #define FTPVIEWITEM_H -#include <ntqlistview.h> +#include <tqlistview.h> #include <tqdatetime.h> class FtpViewItem : public TQListViewItem diff --git a/examples/network/infoprotocol/infoclient/client.cpp b/examples/network/infoprotocol/infoclient/client.cpp index 857c4924c..eb35d96be 100644 --- a/examples/network/infoprotocol/infoclient/client.cpp +++ b/examples/network/infoprotocol/infoclient/client.cpp @@ -14,7 +14,7 @@ #include <tqlabel.h> #include <tqpushbutton.h> #include <tqtextstream.h> -#include <ntqlistbox.h> +#include <tqlistbox.h> #include "client.h" diff --git a/examples/network/mail/composer.cpp b/examples/network/mail/composer.cpp index 603a0a84a..d0376750e 100644 --- a/examples/network/mail/composer.cpp +++ b/examples/network/mail/composer.cpp @@ -11,7 +11,7 @@ #include "smtp.h" #include <tqlineedit.h> -#include <ntqmultilineedit.h> +#include <tqmultilineedit.h> #include <tqpushbutton.h> #include <tqlabel.h> #include <ntqlayout.h> diff --git a/examples/network/networkprotocol/view.cpp b/examples/network/networkprotocol/view.cpp index 416fe04d4..a2dd333ad 100644 --- a/examples/network/networkprotocol/view.cpp +++ b/examples/network/networkprotocol/view.cpp @@ -11,7 +11,7 @@ #include <tqlabel.h> #include <tqpushbutton.h> -#include <ntqmultilineedit.h> +#include <tqmultilineedit.h> #include <tqfiledialog.h> View::View() diff --git a/examples/opengl/box/globjwin.cpp b/examples/opengl/box/globjwin.cpp index 5bc52fb99..59fd0d7ae 100644 --- a/examples/opengl/box/globjwin.cpp +++ b/examples/opengl/box/globjwin.cpp @@ -10,7 +10,7 @@ #include <tqpushbutton.h> #include <tqslider.h> #include <ntqlayout.h> -#include <ntqframe.h> +#include <tqframe.h> #include <tqmenubar.h> #include <tqpopupmenu.h> #include <ntqapplication.h> diff --git a/examples/opengl/glpixmap/globjwin.cpp b/examples/opengl/glpixmap/globjwin.cpp index 52ab136dd..db20c5331 100644 --- a/examples/opengl/glpixmap/globjwin.cpp +++ b/examples/opengl/glpixmap/globjwin.cpp @@ -17,7 +17,7 @@ #include <tqpushbutton.h> #include <tqslider.h> #include <ntqlayout.h> -#include <ntqframe.h> +#include <tqframe.h> #include <tqlabel.h> #include <tqmenubar.h> #include <tqpopupmenu.h> diff --git a/examples/opengl/overlay/globjwin.cpp b/examples/opengl/overlay/globjwin.cpp index 8e6640beb..93d6a6b4e 100644 --- a/examples/opengl/overlay/globjwin.cpp +++ b/examples/opengl/overlay/globjwin.cpp @@ -8,7 +8,7 @@ *****************************************************************************/ #include <ntqlayout.h> -#include <ntqframe.h> +#include <tqframe.h> #include <tqmenubar.h> #include <tqpopupmenu.h> #include <ntqapplication.h> diff --git a/examples/opengl/sharedbox/globjwin.cpp b/examples/opengl/sharedbox/globjwin.cpp index 6d832453d..709614385 100644 --- a/examples/opengl/sharedbox/globjwin.cpp +++ b/examples/opengl/sharedbox/globjwin.cpp @@ -10,7 +10,7 @@ #include <tqpushbutton.h> #include <tqslider.h> #include <ntqlayout.h> -#include <ntqframe.h> +#include <tqframe.h> #include <tqmenubar.h> #include <tqpopupmenu.h> #include <ntqapplication.h> diff --git a/examples/opengl/texture/globjwin.cpp b/examples/opengl/texture/globjwin.cpp index f09974149..6a53492af 100644 --- a/examples/opengl/texture/globjwin.cpp +++ b/examples/opengl/texture/globjwin.cpp @@ -10,7 +10,7 @@ #include <tqpushbutton.h> #include <tqslider.h> #include <ntqlayout.h> -#include <ntqframe.h> +#include <tqframe.h> #include <tqmenubar.h> #include <tqpopupmenu.h> #include <ntqapplication.h> diff --git a/examples/progress/README b/examples/progress/README index 97ba32365..b7656f95d 100644 --- a/examples/progress/README +++ b/examples/progress/README @@ -1,4 +1,4 @@ -This example demonstrates the use of QProgressBar when performing +This example demonstrates the use of TQProgressBar when performing operations which may take a long time to complete. The progress dialog only appears if the estimated completion time diff --git a/examples/progress/progress.cpp b/examples/progress/progress.cpp index 8086b81c1..225e27b7b 100644 --- a/examples/progress/progress.cpp +++ b/examples/progress/progress.cpp @@ -7,7 +7,7 @@ ** *****************************************************************************/ -#include <ntqprogressdialog.h> +#include <tqprogressdialog.h> #include <ntqapplication.h> #include <tqmenubar.h> #include <tqpopupmenu.h> diff --git a/examples/progressbar/progressbar.cpp b/examples/progressbar/progressbar.cpp index c321ade9e..d6e5c7c7f 100644 --- a/examples/progressbar/progressbar.cpp +++ b/examples/progressbar/progressbar.cpp @@ -11,7 +11,7 @@ #include <tqradiobutton.h> #include <tqpushbutton.h> -#include <ntqprogressbar.h> +#include <tqprogressbar.h> #include <ntqlayout.h> #include <ntqmotifstyle.h> diff --git a/examples/progressbar/progressbar.h b/examples/progressbar/progressbar.h index 5f51a474f..d116a11b1 100644 --- a/examples/progressbar/progressbar.h +++ b/examples/progressbar/progressbar.h @@ -10,7 +10,7 @@ #ifndef PROGRESSBAR_H #define PROGRESSBAR_H -#include <ntqbuttongroup.h> +#include <tqbuttongroup.h> #include <tqtimer.h> class TQRadioButton; diff --git a/examples/qfd/fontdisplayer.h b/examples/qfd/fontdisplayer.h index c675c5151..39a3689b1 100644 --- a/examples/qfd/fontdisplayer.h +++ b/examples/qfd/fontdisplayer.h @@ -10,7 +10,7 @@ #ifndef FontDisplayer_H #define FontDisplayer_H -#include <ntqframe.h> +#include <tqframe.h> #include <tqmainwindow.h> class TQSlider; diff --git a/examples/qwerty/qwerty.h b/examples/qwerty/qwerty.h index 6da83a381..6b5146f6f 100644 --- a/examples/qwerty/qwerty.h +++ b/examples/qwerty/qwerty.h @@ -12,7 +12,7 @@ #include <tqwidget.h> #include <tqmenubar.h> -#include <ntqmultilineedit.h> +#include <tqmultilineedit.h> #include <tqprinter.h> class Editor : public TQWidget diff --git a/examples/regexptester/regexptester.cpp b/examples/regexptester/regexptester.cpp index 6942e64ec..fb3c12f06 100644 --- a/examples/regexptester/regexptester.cpp +++ b/examples/regexptester/regexptester.cpp @@ -7,7 +7,7 @@ #include <tqpushbutton.h> #include <tqregexp.h> #include <tqstatusbar.h> -#include <ntqtable.h> +#include <tqtable.h> #include "regexptester.h" diff --git a/examples/rot13/rot13.cpp b/examples/rot13/rot13.cpp index e64323664..b97eba408 100644 --- a/examples/rot13/rot13.cpp +++ b/examples/rot13/rot13.cpp @@ -9,7 +9,7 @@ #include "rot13.h" -#include <ntqmultilineedit.h> +#include <tqmultilineedit.h> #include <tqpushbutton.h> #include <ntqapplication.h> #include <ntqlayout.h> diff --git a/examples/scrollview/scrollview.cpp b/examples/scrollview/scrollview.cpp index c1d444ba3..6e27b686a 100644 --- a/examples/scrollview/scrollview.cpp +++ b/examples/scrollview/scrollview.cpp @@ -17,7 +17,7 @@ #include <ntqmessagebox.h> #include <ntqlayout.h> #include <tqlabel.h> -#include <ntqmultilineedit.h> +#include <tqmultilineedit.h> #include <tqsizegrip.h> #include <stdlib.h> diff --git a/examples/showimg/imagetexteditor.cpp b/examples/showimg/imagetexteditor.cpp index d69ef74dd..c0751148f 100644 --- a/examples/showimg/imagetexteditor.cpp +++ b/examples/showimg/imagetexteditor.cpp @@ -10,14 +10,14 @@ #include "imagetexteditor.h" #include <tqimage.h> #include <ntqlayout.h> -#include <ntqgrid.h> +#include <tqgrid.h> #include <ntqvbox.h> #include <ntqhbox.h> #include <tqcombobox.h> -#include <ntqmultilineedit.h> +#include <tqmultilineedit.h> #include <tqlabel.h> #include <tqlineedit.h> -#include <ntqlistbox.h> +#include <tqlistbox.h> #include <tqpushbutton.h> diff --git a/examples/splitter/splitter.cpp b/examples/splitter/splitter.cpp index 5d21e0b13..e5c1fed8c 100644 --- a/examples/splitter/splitter.cpp +++ b/examples/splitter/splitter.cpp @@ -10,7 +10,7 @@ #include <ntqapplication.h> #include <tqlabel.h> #include <ntqsplitter.h> -#include <ntqmultilineedit.h> +#include <tqmultilineedit.h> #include <tqpainter.h> diff --git a/examples/tabdialog/tabdialog.cpp b/examples/tabdialog/tabdialog.cpp index a001bdefa..9df1d21ed 100644 --- a/examples/tabdialog/tabdialog.cpp +++ b/examples/tabdialog/tabdialog.cpp @@ -13,9 +13,9 @@ #include <tqlabel.h> #include <tqlineedit.h> #include <tqdatetime.h> -#include <ntqbuttongroup.h> +#include <tqbuttongroup.h> #include <tqcheckbox.h> -#include <ntqlistbox.h> +#include <tqlistbox.h> #include <ntqapplication.h> TabDialog::TabDialog( TQWidget *parent, const char *name, const TQString &_filename ) diff --git a/examples/tabdialog/tabdialog.h b/examples/tabdialog/tabdialog.h index f817bffed..354048255 100644 --- a/examples/tabdialog/tabdialog.h +++ b/examples/tabdialog/tabdialog.h @@ -10,7 +10,7 @@ #ifndef TABDIALOG_H #define TABDIALOG_H -#include <ntqtabdialog.h> +#include <tqtabdialog.h> #include <tqstring.h> #include <tqfileinfo.h> diff --git a/examples/table/bigtable/bigtable.doc b/examples/table/bigtable/bigtable.doc index 5633fe1ea..3ca29b56e 100644 --- a/examples/table/bigtable/bigtable.doc +++ b/examples/table/bigtable/bigtable.doc @@ -5,7 +5,7 @@ \ingroup table-examples - \title How to create a large, sparse QTable + \title How to create a large, sparse TQTable This example shows a sparse table implementation using a TQIntDict to keep track of the cells that are actually in use. diff --git a/examples/table/bigtable/main.cpp b/examples/table/bigtable/main.cpp index a1226a594..3bb5b9f71 100644 --- a/examples/table/bigtable/main.cpp +++ b/examples/table/bigtable/main.cpp @@ -8,7 +8,7 @@ *****************************************************************************/ #include <ntqapplication.h> -#include <ntqtable.h> +#include <tqtable.h> // Table size diff --git a/examples/table/small-table-demo/main.cpp b/examples/table/small-table-demo/main.cpp index 65fad0f16..fbd577f85 100644 --- a/examples/table/small-table-demo/main.cpp +++ b/examples/table/small-table-demo/main.cpp @@ -8,7 +8,7 @@ *****************************************************************************/ #include <ntqapplication.h> -#include <ntqtable.h> +#include <tqtable.h> #include <tqimage.h> #include <tqpixmap.h> #include <tqstringlist.h> diff --git a/examples/table/small-table-demo/small-table-demo.doc b/examples/table/small-table-demo/small-table-demo.doc index d2ced77b7..d8a855a50 100644 --- a/examples/table/small-table-demo/small-table-demo.doc +++ b/examples/table/small-table-demo/small-table-demo.doc @@ -3,7 +3,7 @@ \ingroup table-examples \title Small Table Example - This example displays a QTable and some \l{QTableItem}s. + This example displays a TQTable and some \l{TQTableItem}s. <hr> diff --git a/examples/table/statistics/statistics.cpp b/examples/table/statistics/statistics.cpp index 8a906a324..7ab9c0eb9 100644 --- a/examples/table/statistics/statistics.cpp +++ b/examples/table/statistics/statistics.cpp @@ -11,7 +11,7 @@ #include <tqdir.h> #include <tqstringlist.h> -#include <ntqheader.h> +#include <tqheader.h> #include <tqcombobox.h> #include <stdlib.h> diff --git a/examples/table/statistics/statistics.doc b/examples/table/statistics/statistics.doc index 4cd47d897..271e6806c 100644 --- a/examples/table/statistics/statistics.doc +++ b/examples/table/statistics/statistics.doc @@ -3,7 +3,7 @@ \ingroup table-examples \title Table Example - Another QTable example. + Another TQTable example. <hr> diff --git a/examples/table/statistics/statistics.h b/examples/table/statistics/statistics.h index 21d248a7c..4cfdf8fa1 100644 --- a/examples/table/statistics/statistics.h +++ b/examples/table/statistics/statistics.h @@ -10,7 +10,7 @@ #ifndef STATISTICS_H #define STATISTICS_H -#include <ntqtable.h> +#include <tqtable.h> #include <tqcombobox.h> class TableItem : public TQTableItem diff --git a/examples/tablet/main.cpp b/examples/tablet/main.cpp index d12295897..0524cac21 100644 --- a/examples/tablet/main.cpp +++ b/examples/tablet/main.cpp @@ -10,7 +10,7 @@ #include "scribble.h" #include "tabletstats.h" #include <ntqapplication.h> -#include <ntqtabwidget.h> +#include <tqtabwidget.h> int main( int argc, char **argv ) diff --git a/examples/tablet/tabletstats.h b/examples/tablet/tabletstats.h index a3bd63fb1..4d580554a 100644 --- a/examples/tablet/tabletstats.h +++ b/examples/tablet/tabletstats.h @@ -11,7 +11,7 @@ #define _TABLET_STATS_ #include <tqwidget.h> -#include <ntqframe.h> +#include <tqframe.h> #include "canvas.h" #include "tabletstatsbase.h" diff --git a/examples/tetrix/qtetrix.h b/examples/tetrix/qtetrix.h index f3cfddc71..5a8666bd3 100644 --- a/examples/tetrix/qtetrix.h +++ b/examples/tetrix/qtetrix.h @@ -11,7 +11,7 @@ #define TQTETRIX_H #include "qtetrixb.h" -#include <ntqframe.h> +#include <tqframe.h> #include <tqlcdnumber.h> #include <tqlabel.h> #include <tqpushbutton.h> diff --git a/examples/tetrix/qtetrixb.h b/examples/tetrix/qtetrixb.h index 6c2bd228a..c01c7023f 100644 --- a/examples/tetrix/qtetrixb.h +++ b/examples/tetrix/qtetrixb.h @@ -11,7 +11,7 @@ #define TQTETRIXB_H #include "gtetrix.h" -#include <ntqframe.h> +#include <tqframe.h> class TQTimer; diff --git a/examples/textedit/textedit.cpp b/examples/textedit/textedit.cpp index 33472c451..34d9a2a41 100644 --- a/examples/textedit/textedit.cpp +++ b/examples/textedit/textedit.cpp @@ -14,7 +14,7 @@ #include <tqmenubar.h> #include <tqpopupmenu.h> #include <tqtoolbar.h> -#include <ntqtabwidget.h> +#include <tqtabwidget.h> #include <ntqapplication.h> #include <tqfontdatabase.h> #include <tqcombobox.h> diff --git a/examples/themes/themes.cpp b/examples/themes/themes.cpp index 31ac8ade8..c66605450 100644 --- a/examples/themes/themes.cpp +++ b/examples/themes/themes.cpp @@ -19,7 +19,7 @@ #include "../rangecontrols/rangecontrols.h" #include "../richtext/richtext.h" -#include <ntqtabwidget.h> +#include <tqtabwidget.h> #include <ntqapplication.h> #include <tqpopupmenu.h> #include <tqmenubar.h> diff --git a/examples/thread/prodcons/prodcons.cpp b/examples/thread/prodcons/prodcons.cpp index 6e63c1432..824556cc6 100644 --- a/examples/thread/prodcons/prodcons.cpp +++ b/examples/thread/prodcons/prodcons.cpp @@ -5,7 +5,7 @@ #include <tqwidget.h> #include <tqpushbutton.h> #include <tqcheckbox.h> -#include <ntqprogressbar.h> +#include <tqprogressbar.h> #include <ntqlayout.h> #include <tqevent.h> #include <tqlabel.h> diff --git a/examples/thread/semaphores/main.cpp b/examples/thread/semaphores/main.cpp index 8b7916f26..eb8e4675d 100644 --- a/examples/thread/semaphores/main.cpp +++ b/examples/thread/semaphores/main.cpp @@ -9,7 +9,7 @@ #include <ntqapplication.h> #include <tqwidget.h> #include <tqpushbutton.h> -#include <ntqmultilineedit.h> +#include <tqmultilineedit.h> #include <tqthread.h> #include <tqsemaphore.h> #include <tqmutex.h> diff --git a/examples/tqdir/tqdir.cpp b/examples/tqdir/tqdir.cpp index cd427a9c6..9faa30738 100644 --- a/examples/tqdir/tqdir.cpp +++ b/examples/tqdir/tqdir.cpp @@ -18,8 +18,8 @@ #include <ntqhbox.h> #include <tqspinbox.h> #include <tqlabel.h> -#include <ntqmultilineedit.h> -#include <ntqheader.h> +#include <tqmultilineedit.h> +#include <tqheader.h> #include <tqevent.h> #include <tqpainter.h> #include <tqpopupmenu.h> diff --git a/examples/widgets/widgets.cpp b/examples/widgets/widgets.cpp index 2f4e20042..44e866c1b 100644 --- a/examples/widgets/widgets.cpp +++ b/examples/widgets/widgets.cpp @@ -17,16 +17,16 @@ #include <tqtoolbar.h> #include <tqmenubar.h> #include <tqpopupmenu.h> -#include <ntqbuttongroup.h> +#include <tqbuttongroup.h> #include <tqcheckbox.h> #include <tqcombobox.h> -#include <ntqframe.h> +#include <tqframe.h> #include <ntqgroupbox.h> #include <tqlabel.h> #include <tqlcdnumber.h> -#include <ntqmultilineedit.h> +#include <tqmultilineedit.h> #include <tqlineedit.h> -#include <ntqlistbox.h> +#include <tqlistbox.h> #include <tqpushbutton.h> #include <tqradiobutton.h> #include <tqslider.h> @@ -36,13 +36,13 @@ #include <tqwhatsthis.h> #include <tqtoolbutton.h> #include <ntqvbox.h> -#include <ntqtabbar.h> -#include <ntqtabwidget.h> +#include <tqtabbar.h> +#include <tqtabwidget.h> #include <tqwidgetstack.h> -#include <ntqprogressbar.h> +#include <tqprogressbar.h> #include <ntqsplitter.h> -#include <ntqlistview.h> -#include <ntqheader.h> +#include <tqlistview.h> +#include <tqheader.h> #include <tqtextbrowser.h> #include <tqfiledialog.h> #include <ntqaccel.h> diff --git a/examples/widgets/widgets.h b/examples/widgets/widgets.h index d28d33454..61c72e4aa 100644 --- a/examples/widgets/widgets.h +++ b/examples/widgets/widgets.h @@ -16,7 +16,7 @@ #include <tqmainwindow.h> #include <tqmovie.h> -#include <ntqlistview.h> +#include <tqlistview.h> class TQLabel; class TQCheckBox; class TQProgressBar; diff --git a/examples/wizard/wizard.h b/examples/wizard/wizard.h index 2bfbe7ded..28366cb9a 100644 --- a/examples/wizard/wizard.h +++ b/examples/wizard/wizard.h @@ -10,7 +10,7 @@ #ifndef WIZARD_H #define WIZARD_H -#include <ntqwizard.h> +#include <tqwizard.h> class TQWidget; class TQHBox; diff --git a/examples/xform/xform.cpp b/examples/xform/xform.cpp index e69224c67..0f4899bf1 100644 --- a/examples/xform/xform.cpp +++ b/examples/xform/xform.cpp @@ -15,7 +15,7 @@ #include <tqpushbutton.h> #include <tqcheckbox.h> #include <tqradiobutton.h> -#include <ntqbuttongroup.h> +#include <tqbuttongroup.h> #include <tqlcdnumber.h> #include <tqslider.h> #include <tqmenubar.h> diff --git a/examples/xml/outliner/outlinetree.h b/examples/xml/outliner/outlinetree.h index 094bfdec7..bb281bd15 100644 --- a/examples/xml/outliner/outlinetree.h +++ b/examples/xml/outliner/outlinetree.h @@ -10,7 +10,7 @@ #ifndef OUTLINETREE_H #define OUTLINETREE_H -#include <ntqlistview.h> +#include <tqlistview.h> #include <tqdom.h> class OutlineTree : public TQListView diff --git a/examples/xml/tagreader-with-features/structureparser.cpp b/examples/xml/tagreader-with-features/structureparser.cpp index 92e9097bf..946127626 100644 --- a/examples/xml/tagreader-with-features/structureparser.cpp +++ b/examples/xml/tagreader-with-features/structureparser.cpp @@ -4,7 +4,7 @@ #include "structureparser.h" #include <tqstring.h> -#include <ntqlistview.h> +#include <tqlistview.h> StructureParser::StructureParser( TQListView * t ) : TQXmlDefaultHandler() diff --git a/examples/xml/tagreader-with-features/tagreader.cpp b/examples/xml/tagreader-with-features/tagreader.cpp index 1c49a510a..7e7aa5f13 100644 --- a/examples/xml/tagreader-with-features/tagreader.cpp +++ b/examples/xml/tagreader-with-features/tagreader.cpp @@ -11,8 +11,8 @@ #include <ntqapplication.h> #include <tqfile.h> #include <tqxml.h> -#include <ntqlistview.h> -#include <ntqgrid.h> +#include <tqlistview.h> +#include <tqgrid.h> #include <tqmainwindow.h> #include <tqlabel.h> |