diff options
author | Michele Calgaro <michele.calgaro@yahoo.it> | 2024-06-27 21:53:17 +0900 |
---|---|---|
committer | Michele Calgaro <michele.calgaro@yahoo.it> | 2024-06-29 13:21:04 +0900 |
commit | 2cbcca0db1343e1c40e52af729a5eb34ca8a7e37 (patch) | |
tree | 065c9e97d5bd9eb3d9869427b44acdd571ba0cc1 /doc/html | |
parent | a09a6bc05e3f64c27e7c84dd768c7720fdf41136 (diff) | |
download | tqt3-2cbcca0db1343e1c40e52af729a5eb34ca8a7e37.tar.gz tqt3-2cbcca0db1343e1c40e52af729a5eb34ca8a7e37.zip |
Rename date and time nt* related files to equivalent tq*
Signed-off-by: Michele Calgaro <michele.calgaro@yahoo.it>
Diffstat (limited to 'doc/html')
97 files changed, 1232 insertions, 1232 deletions
diff --git a/doc/html/aclock-example.html b/doc/html/aclock-example.html index 88320ca96..7f241db5a 100644 --- a/doc/html/aclock-example.html +++ b/doc/html/aclock-example.html @@ -50,7 +50,7 @@ This example displays an analog clock widget. #define ACLOCK_H #include <<a href="tqwidget-h.html">tqwidget.h</a>> -#include <<a href="qdatetime-h.html">ntqdatetime.h</a>> +#include <<a href="tqdatetime-h.html">tqdatetime.h</a>> class TQTimer; class AnalogClock : public <a href="tqwidget.html">TQWidget</a> // analog clock widget @@ -71,12 +71,12 @@ private slots: void timeout(); public slots: - void setTime( const <a href="qtime.html">TQTime</a> & t ); + void setTime( const <a href="tqtime.html">TQTime</a> & t ); private: <a href="ntqpoint.html">TQPoint</a> clickPos; - <a href="qtime.html">TQTime</a> time; - <a href="ntqtimer.html">TQTimer</a> *internalTimer; + <a href="tqtime.html">TQTime</a> time; + <a href="tqtimer.html">TQTimer</a> *internalTimer; }; @@ -96,7 +96,7 @@ private: *****************************************************************************/ #include "aclock.h" -#include <<a href="qtimer-h.html">ntqtimer.h</a>> +#include <<a href="tqtimer-h.html">tqtimer.h</a>> #include <<a href="qpainter-h.html">ntqpainter.h</a>> #include <<a href="qbitmap-h.html">ntqbitmap.h</a>> @@ -107,10 +107,10 @@ private: <a name="f384"></a>AnalogClock::AnalogClock( <a href="tqwidget.html">TQWidget</a> *parent, const char *name ) : <a href="tqwidget.html">TQWidget</a>( parent, name ) { -<a name="x1201"></a> time = TQTime::<a href="qtime.html#currentTime">currentTime</a>(); // get current time - internalTimer = new <a href="ntqtimer.html">TQTimer</a>( this ); // create internal timer -<a name="x1205"></a> <a href="tqobject.html#connect">connect</a>( internalTimer, TQ_SIGNAL(<a href="ntqtimer.html#timeout">timeout</a>()), TQ_SLOT(timeout()) ); -<a name="x1204"></a> internalTimer-><a href="ntqtimer.html#start">start</a>( 5000 ); // emit signal every 5 seconds +<a name="x1201"></a> time = TQTime::<a href="tqtime.html#currentTime">currentTime</a>(); // get current time + internalTimer = new <a href="tqtimer.html">TQTimer</a>( this ); // create internal timer +<a name="x1205"></a> <a href="tqobject.html#connect">connect</a>( internalTimer, TQ_SIGNAL(<a href="tqtimer.html#timeout">timeout</a>()), TQ_SLOT(timeout()) ); +<a name="x1204"></a> internalTimer-><a href="tqtimer.html#start">start</a>( 5000 ); // emit signal every 5 seconds } void AnalogClock::<a href="tqwidget.html#mousePressEvent">mousePressEvent</a>( <a href="qmouseevent.html">TQMouseEvent</a> *e ) @@ -133,10 +133,10 @@ void AnalogClock::<a href="tqwidget.html#mousePressEvent">mousePressEvent</a>( < // When we set an explicit time we don't want the timeout() slot to be // called anymore as this relies on currentTime() // -void <a name="f385"></a>AnalogClock::setTime( const <a href="qtime.html">TQTime</a> & t ) +void <a name="f385"></a>AnalogClock::setTime( const <a href="tqtime.html">TQTime</a> & t ) { time = t; - <a href="tqobject.html#disconnect">disconnect</a>( internalTimer, TQ_SIGNAL(<a href="ntqtimer.html#timeout">timeout</a>()), this, TQ_SLOT(timeout()) ); + <a href="tqobject.html#disconnect">disconnect</a>( internalTimer, TQ_SIGNAL(<a href="tqtimer.html#timeout">timeout</a>()), this, TQ_SLOT(timeout()) ); if (<a href="tqwidget.html#autoMask">autoMask</a>()) <a href="tqwidget.html#updateMask">updateMask</a>(); else @@ -146,10 +146,10 @@ void <a name="f385"></a>AnalogClock::setTime( const <a href="qtime.html">TQTime< void <a name="f386"></a>AnalogClock::timeout() { - <a href="qtime.html">TQTime</a> old_time = time; - time = TQTime::<a href="qtime.html#currentTime">currentTime</a>(); -<a name="x1203"></a> if ( old_time.<a href="qtime.html#minute">minute</a>() != time.minute() -<a name="x1202"></a> || old_time.<a href="qtime.html#hour">hour</a>() != time.hour() ) { // minute or hour has changed + <a href="tqtime.html">TQTime</a> old_time = time; + time = TQTime::<a href="tqtime.html#currentTime">currentTime</a>(); +<a name="x1203"></a> if ( old_time.<a href="tqtime.html#minute">minute</a>() != time.minute() +<a name="x1202"></a> || old_time.<a href="tqtime.html#hour">hour</a>() != time.hour() ) { // minute or hour has changed if (<a href="tqwidget.html#autoMask">autoMask</a>()) <a href="tqwidget.html#updateMask">updateMask</a>(); else diff --git a/doc/html/advanced.html b/doc/html/advanced.html index 2a0201540..e2e3cac26 100644 --- a/doc/html/advanced.html +++ b/doc/html/advanced.html @@ -38,8 +38,8 @@ body { background: #ffffff; color: black; } <tr bgcolor=#f0f0f0><td><b><a href="qchecklistitem.html">TQCheckListItem</a></b><td>Checkable list view items <tr bgcolor=#f0f0f0><td><b><a href="qchecktableitem.html">TQCheckTableItem</a></b><td>Checkboxes in TQTables <tr bgcolor=#f0f0f0><td><b><a href="qcombotableitem.html">TQComboTableItem</a></b><td>Means of using comboboxes in TQTables -<tr bgcolor=#f0f0f0><td><b><a href="qdateedit.html">TQDateEdit</a></b><td>Date editor -<tr bgcolor=#f0f0f0><td><b><a href="ntqdatetimeedit.html">TQDateTimeEdit</a></b><td>Combines a TQDateEdit and TQTimeEdit widget into a single widget for editing datetimes +<tr bgcolor=#f0f0f0><td><b><a href="tqdateedit.html">TQDateEdit</a></b><td>Date editor +<tr bgcolor=#f0f0f0><td><b><a href="tqdatetimeedit.html">TQDateTimeEdit</a></b><td>Combines a TQDateEdit and TQTimeEdit widget into a single widget for editing datetimes <tr bgcolor=#f0f0f0><td><b><a href="ntqdesktopwidget.html">TQDesktopWidget</a></b><td>Access to screen information on multi-head systems <tr bgcolor=#f0f0f0><td><b><a href="ntqheader.html">TQHeader</a></b><td>Header row or column, e.g. for tables and listviews <tr bgcolor=#f0f0f0><td><b><a href="tqiconfactory.html">TQIconFactory</a></b><td>Used to create pixmaps for a TQIconSet @@ -60,7 +60,7 @@ body { background: #ffffff; color: black; } <tr bgcolor=#f0f0f0><td><b><a href="qtableselection.html">TQTableSelection</a></b><td>Access to a selected area in a TQTable <tr bgcolor=#f0f0f0><td><b><a href="ntqtabwidget.html">TQTabWidget</a></b><td>Stack of tabbed widgets <tr bgcolor=#f0f0f0><td><b><a href="tqtextbrowser.html">TQTextBrowser</a></b><td>Rich text browser with hypertext navigation -<tr bgcolor=#f0f0f0><td><b><a href="qtimeedit.html">TQTimeEdit</a></b><td>Time editor +<tr bgcolor=#f0f0f0><td><b><a href="tqtimeedit.html">TQTimeEdit</a></b><td>Time editor <tr bgcolor=#f0f0f0><td><b><a href="ntqtoolbox.html">TQToolBox</a></b><td>Column of tabbed widget items </table> <!-- eof --> diff --git a/doc/html/annotated.html b/doc/html/annotated.html index e7e88717c..57ac9aecf 100644 --- a/doc/html/annotated.html +++ b/doc/html/annotated.html @@ -100,11 +100,11 @@ body { background: #ffffff; color: black; } <tr bgcolor=#f0f0f0><td><b><a href="ntqdatastream.html">TQDataStream</a></b><td>Serialization of binary data to a TQIODevice <tr bgcolor=#f0f0f0><td><b><a href="tqdatatable.html">TQDataTable</a></b><td>Flexible SQL table widget that supports browsing and editing <tr bgcolor=#f0f0f0><td><b><a href="tqdataview.html">TQDataView</a></b><td>Read-only SQL forms -<tr bgcolor=#f0f0f0><td><b><a href="qdate.html">TQDate</a></b><td>Date functions -<tr bgcolor=#f0f0f0><td><b><a href="qdateedit.html">TQDateEdit</a></b><td>Date editor -<tr bgcolor=#f0f0f0><td><b><a href="ntqdatetime.html">TQDateTime</a></b><td>Date and time functions -<tr bgcolor=#f0f0f0><td><b><a href="ntqdatetimeedit.html">TQDateTimeEdit</a></b><td>Combines a TQDateEdit and TQTimeEdit widget into a single widget for editing datetimes -<tr bgcolor=#f0f0f0><td><b><a href="qdatetimeeditbase.html">TQDateTimeEditBase</a></b><td>Abstraction for date and edit editors +<tr bgcolor=#f0f0f0><td><b><a href="tqdate.html">TQDate</a></b><td>Date functions +<tr bgcolor=#f0f0f0><td><b><a href="tqdateedit.html">TQDateEdit</a></b><td>Date editor +<tr bgcolor=#f0f0f0><td><b><a href="tqdatetime.html">TQDateTime</a></b><td>Date and time functions +<tr bgcolor=#f0f0f0><td><b><a href="tqdatetimeedit.html">TQDateTimeEdit</a></b><td>Combines a TQDateEdit and TQTimeEdit widget into a single widget for editing datetimes +<tr bgcolor=#f0f0f0><td><b><a href="tqdatetimeeditbase.html">TQDateTimeEditBase</a></b><td>Abstraction for date and edit editors <tr bgcolor=#f0f0f0><td><b><a href="ntqdeepcopy.html">TQDeepCopy</a></b><td>Template class which ensures that <a href="shclass.html#implicitly-shared">implicitly shared</a> and <a href="shclass.html#explicitly-shared">explicitly shared</a> classes reference unique data <tr bgcolor=#f0f0f0><td><b><a href="ntqdesktopwidget.html">TQDesktopWidget</a></b><td>Access to screen information on multi-head systems <tr bgcolor=#f0f0f0><td><b><a href="ntqdial.html">TQDial</a></b><td>Rounded range control (like a speedometer or potentiometer) @@ -370,10 +370,10 @@ body { background: #ffffff; color: black; } <tr bgcolor=#f0f0f0><td><b><a href="tqtextstream.html">TQTextStream</a></b><td>Basic functions for reading and writing text using a TQIODevice <tr bgcolor=#f0f0f0><td><b><a href="ntqthread.html">TQThread</a></b><td>Platform-independent threads <tr bgcolor=#f0f0f0><td><b><a href="ntqthreadstorage.html">TQThreadStorage</a></b><td>Per-thread data storage -<tr bgcolor=#f0f0f0><td><b><a href="qtime.html">TQTime</a></b><td>Clock time functions -<tr bgcolor=#f0f0f0><td><b><a href="qtimeedit.html">TQTimeEdit</a></b><td>Time editor -<tr bgcolor=#f0f0f0><td><b><a href="ntqtimer.html">TQTimer</a></b><td>Timer signals and single-shot timers -<tr bgcolor=#f0f0f0><td><b><a href="qtimerevent.html">TQTimerEvent</a></b><td>Parameters that describe a timer event +<tr bgcolor=#f0f0f0><td><b><a href="tqtime.html">TQTime</a></b><td>Clock time functions +<tr bgcolor=#f0f0f0><td><b><a href="tqtimeedit.html">TQTimeEdit</a></b><td>Time editor +<tr bgcolor=#f0f0f0><td><b><a href="tqtimer.html">TQTimer</a></b><td>Timer signals and single-shot timers +<tr bgcolor=#f0f0f0><td><b><a href="tqtimerevent.html">TQTimerEvent</a></b><td>Parameters that describe a timer event <tr bgcolor=#f0f0f0><td><b><a href="ntqtoolbar.html">TQToolBar</a></b><td>Movable panel containing widgets such as tool buttons <tr bgcolor=#f0f0f0><td><b><a href="ntqtoolbox.html">TQToolBox</a></b><td>Column of tabbed widget items <tr bgcolor=#f0f0f0><td><b><a href="ntqtoolbutton.html">TQToolButton</a></b><td>Quick-access button to commands or options, usually used inside a TQToolBar diff --git a/doc/html/biff-example.html b/doc/html/biff-example.html index fa5bc991d..80acc1087 100644 --- a/doc/html/biff-example.html +++ b/doc/html/biff-example.html @@ -51,7 +51,7 @@ mail; it looks exactly like xbiff but is much shorter. #define BIFF_H #include <<a href="tqwidget-h.html">tqwidget.h</a>> -#include <<a href="qdatetime-h.html">ntqdatetime.h</a>> +#include <<a href="tqdatetime-h.html">tqdatetime.h</a>> #include <<a href="qpixmap-h.html">ntqpixmap.h</a>> @@ -62,12 +62,12 @@ public: Biff( <a href="tqwidget.html">TQWidget</a> *parent=0, const char *name=0 ); protected: - void timerEvent( <a href="qtimerevent.html">TQTimerEvent</a> * ); + void timerEvent( <a href="tqtimerevent.html">TQTimerEvent</a> * ); void paintEvent( <a href="qpaintevent.html">TQPaintEvent</a> * ); void mousePressEvent( <a href="qmouseevent.html">TQMouseEvent</a> * ); private: - <a href="ntqdatetime.html">TQDateTime</a> lastModified; + <a href="tqdatetime.html">TQDateTime</a> lastModified; <a href="ntqpixmap.html">TQPixmap</a> hasNewMail; <a href="ntqpixmap.html">TQPixmap</a> noNewMail; <a href="tqstring.html">TQString</a> mailbox; @@ -130,7 +130,7 @@ how two images (<em>hasmail_bmp_data</em> and <em>nomail_bmp_data</em>, both fro } -<a name="x1959"></a>void Biff::<a href="tqobject.html#timerEvent">timerEvent</a>( <a href="qtimerevent.html">TQTimerEvent</a> * ) +<a name="x1959"></a>void Biff::<a href="tqobject.html#timerEvent">timerEvent</a>( <a href="tqtimerevent.html">TQTimerEvent</a> * ) { <a href="ntqfileinfo.html">TQFileInfo</a> fi( mailbox ); bool newState = ( fi.<a href="ntqfileinfo.html#lastModified">lastModified</a>() != lastModified && diff --git a/doc/html/canvas-example.html b/doc/html/canvas-example.html index e2c64894e..c12c9b421 100644 --- a/doc/html/canvas-example.html +++ b/doc/html/canvas-example.html @@ -133,7 +133,7 @@ private: <p> <hr> <p> Implementation: -<p> <pre>#include <<a href="qdatetime-h.html">ntqdatetime.h</a>> +<p> <pre>#include <<a href="tqdatetime-h.html">tqdatetime.h</a>> #include <<a href="qmainwindow-h.html">ntqmainwindow.h</a>> #include <<a href="qstatusbar-h.html">ntqstatusbar.h</a>> #include <<a href="qmessagebox-h.html">ntqmessagebox.h</a>> diff --git a/doc/html/classchart.html b/doc/html/classchart.html index 0a7f061e8..133d1d5f0 100644 --- a/doc/html/classchart.html +++ b/doc/html/classchart.html @@ -75,7 +75,7 @@ body { background: #ffffff; color: black; } <area shape="rect" coords="178,186,284,203" href="qmoveevent.html"> <area shape="rect" coords="178,203,285,220" href="qshowevent.html"> <area shape="rect" coords="176,221,286,237" href="qcloseevent.html"> -<area shape="rect" coords="176,237,281,253" href="qtimerevent.html"> +<area shape="rect" coords="176,237,281,253" href="tqtimerevent.html"> <area shape="rect" coords="174,253,281,273" href="qfocusevent.html"> <area shape="rect" coords="174,272,283,291" href="qwheelevent.html"> <area shape="rect" coords="174,291,283,309" href="qmouseevent.html"> @@ -110,7 +110,7 @@ body { background: #ffffff; color: black; } <area shape="rect" coords="293,276,404,292" href="ntqsignalmapper.html"> <area shape="rect" coords="290,293,405,308" href="ntqsocket.html"> <area shape="rect" coords="290,308,399,326" href="ntqsound.html"> -<area shape="rect" coords="294,327,402,346" href="ntqtimer.html"> +<area shape="rect" coords="294,327,402,346" href="tqtimer.html"> <area shape="rect" coords="294,346,398,363" href="ntqtranslator.html"> <area shape="rect" coords="294,362,398,379" href="tqstylesheet.html"> <area shape="rect" coords="294,379,399,396" href="tqstyle.html"> @@ -132,8 +132,8 @@ body { background: #ffffff; color: black; } <area shape="rect" coords="393,34,468,76" href="tqwidget.html"> <area shape="rect" coords="461,63,541,79" href="ntqbutton.html"> <area shape="rect" coords="447,80,542,97" href="ntqcombobox.html"> -<area shape="rect" coords="448,98,543,114" href="qdateedit.html"> -<area shape="rect" coords="445,114,543,132" href="ntqdatetimeedit.html"> +<area shape="rect" coords="448,98,543,114" href="tqdateedit.html"> +<area shape="rect" coords="445,114,543,132" href="tqdatetimeedit.html"> <area shape="rect" coords="448,134,558,152" href="ntqdesktopwidget.html"> <area shape="rect" coords="443,152,558,170" href="ntqdialog.html"> <area shape="rect" coords="443,170,542,186" href="ntqdial.html"> @@ -151,7 +151,7 @@ body { background: #ffffff; color: black; } <area shape="rect" coords="446,383,541,399" href="ntqstatusbar.html"> <area shape="rect" coords="443,399,541,418" href="ntqtabbar.html"> <area shape="rect" coords="445,418,542,434" href="ntqtabwidget.html"> -<area shape="rect" coords="445,434,545,453" href="qtimeedit.html"> +<area shape="rect" coords="445,434,545,453" href="tqtimeedit.html"> <area shape="rect" coords="446,453,539,470" href="ntqtoolbox.html"> <area shape="rect" coords="445,470,539,487" href="ntqscrollview.html"> <area shape="rect" coords="445,487,544,505" href="tqcanvasview.html"> @@ -234,8 +234,8 @@ body { background: #ffffff; color: black; } <area shape="rect" coords="782,116,878,133" href="ntqcolor.html"> <area shape="rect" coords="786,133,878,150" href="qcolorgroup.html"> <area shape="rect" coords="786,150,877,171" href="ntqdatastream.html"> -<area shape="rect" coords="787,171,877,188" href="qdate.html"> -<area shape="rect" coords="786,186,875,203" href="ntqdatetime.html"> +<area shape="rect" coords="787,171,877,188" href="tqdate.html"> +<area shape="rect" coords="786,186,875,203" href="tqdatetime.html"> <area shape="rect" coords="785,203,875,221" href="ntqdeepcopy.html"> <area shape="rect" coords="785,221,876,241" href="ntqdir.html"> <area shape="rect" coords="782,241,876,257" href="tqdomnode.html"> @@ -293,7 +293,7 @@ body { background: #ffffff; color: black; } <area shape="rect" coords="895,525,996,543" href="tqtextcodec.html"> <area shape="rect" coords="897,538,996,559" href="tqtextcodecplugin.html"> <area shape="rect" coords="902,560,987,579" href="tqtextstream.html"> -<area shape="rect" coords="897,578,976,594" href="qtime.html"> +<area shape="rect" coords="897,578,976,594" href="tqtime.html"> <area shape="rect" coords="898,595,991,614" href="tqptrdictiterator.html"> <area shape="rect" coords="895,613,989,631" href="tqmapiterator.html"> <area shape="rect" coords="896,631,999,647" href="tqvaluelistiterator.html"> diff --git a/doc/html/classes.html b/doc/html/classes.html index 0b001d865..da7b6b481 100644 --- a/doc/html/classes.html +++ b/doc/html/classes.html @@ -255,7 +255,7 @@ classes, see <a href="mainclasses.html">TQt's Main Classes</a>. <td align="right"><b>R</b> <td><a href="ntqradiobutton.html">TQRadioButton</a> <td align="right"> -<td><a href="qtime.html">TQTime</a> +<td><a href="tqtime.html">TQTime</a> <tr> <td align="right"> <td align="right"> @@ -266,7 +266,7 @@ classes, see <a href="mainclasses.html">TQt's Main Classes</a>. <td align="right"> <td><a href="ntqrangecontrol.html">TQRangeControl</a> <td align="right"> -<td><a href="qtimeedit.html">TQTimeEdit</a> +<td><a href="tqtimeedit.html">TQTimeEdit</a> <tr> <td align="right"><b>B</b> <td><a href="ntqbig5codec.html">TQBig5Codec</a> @@ -277,7 +277,7 @@ classes, see <a href="mainclasses.html">TQt's Main Classes</a>. <td align="right"> <td><a href="ntqrect.html">TQRect</a> <td align="right"> -<td><a href="ntqtimer.html">TQTimer</a> +<td><a href="tqtimer.html">TQTimer</a> <tr> <td align="right"> <td><a href="qbig5hkscscodec.html">TQBig5hkscsCodec</a> @@ -288,7 +288,7 @@ classes, see <a href="mainclasses.html">TQt's Main Classes</a>. <td align="right"> <td><a href="ntqregexp.html">TQRegExp</a> <td align="right"> -<td><a href="qtimerevent.html">TQTimerEvent</a> +<td><a href="tqtimerevent.html">TQTimerEvent</a> <tr> <td align="right"> <td><a href="ntqbitarray.html">TQBitArray</a> @@ -862,7 +862,7 @@ classes, see <a href="mainclasses.html">TQt's Main Classes</a>. <td><a href="tqxmllexicalhandler.html">TQXmlLexicalHandler</a> <tr> <td align="right"> -<td><a href="qdate.html">TQDate</a> +<td><a href="tqdate.html">TQDate</a> <td align="right"> <td><a href="ntqhttp.html">TQHttp</a> <td align="right"><b>P</b> @@ -873,7 +873,7 @@ classes, see <a href="mainclasses.html">TQt's Main Classes</a>. <td><a href="tqxmllocator.html">TQXmlLocator</a> <tr> <td align="right"> -<td><a href="qdateedit.html">TQDateEdit</a> +<td><a href="tqdateedit.html">TQDateEdit</a> <td align="right"> <td><a href="qhttpheader.html">TQHttpHeader</a> <td align="right"> @@ -884,7 +884,7 @@ classes, see <a href="mainclasses.html">TQt's Main Classes</a>. <td><a href="tqxmlnamespacesupport.html">TQXmlNamespaceSupport</a> <tr> <td align="right"> -<td><a href="ntqdatetime.html">TQDateTime</a> +<td><a href="tqdatetime.html">TQDateTime</a> <td align="right"> <td><a href="qhttprequestheader.html">TQHttpRequestHeader</a> <td align="right"> @@ -895,7 +895,7 @@ classes, see <a href="mainclasses.html">TQt's Main Classes</a>. <td><a href="tqxmlparseexception.html">TQXmlParseException</a> <tr> <td align="right"> -<td><a href="ntqdatetimeedit.html">TQDateTimeEdit</a> +<td><a href="tqdatetimeedit.html">TQDateTimeEdit</a> <td align="right"> <td><a href="qhttpresponseheader.html">TQHttpResponseHeader</a> <td align="right"> @@ -906,7 +906,7 @@ classes, see <a href="mainclasses.html">TQt's Main Classes</a>. <td><a href="tqxmlreader.html">TQXmlReader</a> <tr> <td align="right"> -<td><a href="qdatetimeeditbase.html">TQDateTimeEditBase</a> +<td><a href="tqdatetimeeditbase.html">TQDateTimeEditBase</a> <td align="right"><b>I</b> <td><a href="tqicondrag.html">TQIconDrag</a> <td align="right"> diff --git a/doc/html/datastreamformat.html b/doc/html/datastreamformat.html index 4d8bf78fe..4f66d5a6d 100644 --- a/doc/html/datastreamformat.html +++ b/doc/html/datastreamformat.html @@ -129,8 +129,8 @@ The null string is represented as <tt>(TQ_UINT32) 0</tt>. </ul> <tr bgcolor="#d0d0d0"> <td valign="top">TQDateTime <td valign="top"><ul> -<li> Date (<a href="qdate.html">TQDate</a>) -<li> Time (<a href="qtime.html">TQTime</a>) +<li> Date (<a href="tqdate.html">TQDate</a>) +<li> Time (<a href="tqtime.html">TQTime</a>) </ul> <tr bgcolor="#f0f0f0"> <td valign="top">TQFont <td valign="top"><ul> diff --git a/doc/html/dclock-example.html b/doc/html/dclock-example.html index 2a614d05d..e33951470 100644 --- a/doc/html/dclock-example.html +++ b/doc/html/dclock-example.html @@ -60,7 +60,7 @@ public: DigitalClock( <a href="tqwidget.html">TQWidget</a> *parent=0, const char *name=0 ); protected: // event handlers - void timerEvent( <a href="qtimerevent.html">TQTimerEvent</a> * ); + void timerEvent( <a href="tqtimerevent.html">TQTimerEvent</a> * ); void mousePressEvent( <a href="qmouseevent.html">TQMouseEvent</a> * ); private slots: // internal slots @@ -92,7 +92,7 @@ private: // internal data *****************************************************************************/ #include "dclock.h" -#include <<a href="qdatetime-h.html">ntqdatetime.h</a>> +#include <<a href="tqdatetime-h.html">tqdatetime.h</a>> // @@ -117,9 +117,9 @@ private: // internal data // and another one for switching back from date mode to time mode. // -<a name="x1102"></a>void DigitalClock::<a href="tqobject.html#timerEvent">timerEvent</a>( <a href="qtimerevent.html">TQTimerEvent</a> *e ) +<a name="x1102"></a>void DigitalClock::<a href="tqobject.html#timerEvent">timerEvent</a>( <a href="tqtimerevent.html">TQTimerEvent</a> *e ) { -<a name="x1105"></a> if ( e-><a href="qtimerevent.html#timerId">timerId</a>() == showDateTimer ) // stop showing date +<a name="x1105"></a> if ( e-><a href="tqtimerevent.html#timerId">timerId</a>() == showDateTimer ) // stop showing date stopDate(); else { // normal timer if ( showDateTimer == -1 ) // not showing date @@ -147,9 +147,9 @@ void <a name="f372"></a>DigitalClock::showDate() { if ( showDateTimer != -1 ) // already showing date return; -<a name="x1098"></a> <a href="qdate.html">TQDate</a> date = TQDate::<a href="qdate.html#currentDate">currentDate</a>(); +<a name="x1098"></a> <a href="tqdate.html">TQDate</a> date = TQDate::<a href="tqdate.html#currentDate">currentDate</a>(); <a href="tqstring.html">TQString</a> s; -<a name="x1103"></a><a name="x1100"></a><a name="x1099"></a> s.<a href="tqstring.html#sprintf">sprintf</a>( "%2d %2d", date.<a href="qdate.html#month">month</a>(), date.<a href="qdate.html#day">day</a>() ); +<a name="x1103"></a><a name="x1100"></a><a name="x1099"></a> s.<a href="tqstring.html#sprintf">sprintf</a>( "%2d %2d", date.<a href="tqdate.html#month">month</a>(), date.<a href="tqdate.html#day">day</a>() ); <a href="ntqlcdnumber.html#display">display</a>( s ); // sets the LCD number/text showDateTimer = <a href="tqobject.html#startTimer">startTimer</a>( 2000 ); // keep this state for 2 secs } @@ -172,7 +172,7 @@ void <a name="f373"></a>DigitalClock::stopDate() void <a name="f374"></a>DigitalClock::showTime() { showingColon = !showingColon; // toggle/blink colon -<a name="x1104"></a> <a href="tqstring.html">TQString</a> s = TQTime::<a href="qtime.html#currentTime">currentTime</a>().toString().left(5); +<a name="x1104"></a> <a href="tqstring.html">TQString</a> s = TQTime::<a href="tqtime.html#currentTime">currentTime</a>().toString().left(5); if ( !showingColon ) s[2] = ' '; if ( s[0] == '0' ) diff --git a/doc/html/dirview-example.html b/doc/html/dirview-example.html index f8c0fd5f8..8a04e9cef 100644 --- a/doc/html/dirview-example.html +++ b/doc/html/dirview-example.html @@ -56,7 +56,7 @@ Drag&Drop in a listview. #include <<a href="tqstring-h.html">tqstring.h</a>> #include <<a href="qfile-h.html">ntqfile.h</a>> #include <<a href="qfileinfo-h.html">ntqfileinfo.h</a>> -#include <<a href="qtimer-h.html">ntqtimer.h</a>> +#include <<a href="tqtimer-h.html">tqtimer.h</a>> class TQWidget; class TQDragEnterEvent; @@ -143,7 +143,7 @@ private: bool dirsOnly; <a href="qlistviewitem.html">TQListViewItem</a> *oldCurrent; <a href="qlistviewitem.html">TQListViewItem</a> *dropItem; - <a href="ntqtimer.html">TQTimer</a>* autoopen_timer; + <a href="tqtimer.html">TQTimer</a>* autoopen_timer; <a href="ntqpoint.html">TQPoint</a> presspos; bool mousePressed; @@ -436,7 +436,7 @@ TQString <a name="f477"></a>Directory::fullName() : <a href="ntqlistview.html">TQListView</a>( parent, name ), dirsOnly( sdo ), oldCurrent( 0 ), dropItem( 0 ), mousePressed( FALSE ) { - autoopen_timer = new <a href="ntqtimer.html">TQTimer</a>( this ); + autoopen_timer = new <a href="tqtimer.html">TQTimer</a>( this ); if ( !folderLocked ) { folderLocked = new <a href="ntqpixmap.html">TQPixmap</a>( folder_locked ); folderClosed = new <a href="ntqpixmap.html">TQPixmap</a>( folder_closed_xpm ); @@ -452,7 +452,7 @@ TQString <a name="f477"></a>Directory::fullName() <a href="tqwidget.html#setAcceptDrops">setAcceptDrops</a>( TRUE ); <a href="ntqscrollview.html#viewport">viewport</a>()->setAcceptDrops( TRUE ); -<a name="x1706"></a> <a href="tqobject.html#connect">connect</a>( autoopen_timer, TQ_SIGNAL( <a href="ntqtimer.html#timeout">timeout</a>() ), +<a name="x1706"></a> <a href="tqobject.html#connect">connect</a>( autoopen_timer, TQ_SIGNAL( <a href="tqtimer.html#timeout">timeout</a>() ), this, TQ_SLOT( openFolder() ) ); } @@ -467,7 +467,7 @@ void <a name="f479"></a>DirectoryView::slotFolderSelected( <a href="qlistviewite void <a name="f480"></a>DirectoryView::openFolder() { -<a name="x1705"></a> autoopen_timer-><a href="ntqtimer.html#stop">stop</a>(); +<a name="x1705"></a> autoopen_timer-><a href="tqtimer.html#stop">stop</a>(); if ( dropItem && !dropItem->isOpen() ) { dropItem->setOpen( TRUE ); dropItem->repaint(); @@ -489,7 +489,7 @@ static const int autoopenTime = 750; <a name="x1673"></a> <a href="qlistviewitem.html">TQListViewItem</a> *i = <a href="ntqlistview.html#itemAt">itemAt</a>( <a href="ntqscrollview.html#contentsToViewport">contentsToViewport</a>(e-><a href="qdropevent.html#pos">pos</a>()) ); if ( i ) { dropItem = i; -<a name="x1704"></a> autoopen_timer-><a href="ntqtimer.html#start">start</a>( autoopenTime ); +<a name="x1704"></a> autoopen_timer-><a href="tqtimer.html#start">start</a>( autoopenTime ); } } @@ -507,9 +507,9 @@ static const int autoopenTime = 750; <a href="ntqlistview.html#setSelected">setSelected</a>( i, TRUE ); <a name="x1668"></a> e-><a href="qdragmoveevent.html#accept">accept</a>(); if ( i != dropItem ) { - autoopen_timer-><a href="ntqtimer.html#stop">stop</a>(); + autoopen_timer-><a href="tqtimer.html#stop">stop</a>(); dropItem = i; - autoopen_timer-><a href="ntqtimer.html#start">start</a>( autoopenTime ); + autoopen_timer-><a href="tqtimer.html#start">start</a>( autoopenTime ); } <a name="x1672"></a> switch ( e-><a href="qdropevent.html#action">action</a>() ) { case TQDropEvent::Copy: @@ -525,14 +525,14 @@ static const int autoopenTime = 750; } } else { e-><a href="qdragmoveevent.html#ignore">ignore</a>(); - autoopen_timer-><a href="ntqtimer.html#stop">stop</a>(); + autoopen_timer-><a href="tqtimer.html#stop">stop</a>(); dropItem = 0; } } <a name="x1680"></a>void DirectoryView::<a href="ntqscrollview.html#contentsDragLeaveEvent">contentsDragLeaveEvent</a>( <a href="qdragleaveevent.html">TQDragLeaveEvent</a> * ) { - autoopen_timer-><a href="ntqtimer.html#stop">stop</a>(); + autoopen_timer-><a href="tqtimer.html#stop">stop</a>(); dropItem = 0; <a href="ntqlistview.html#setCurrentItem">setCurrentItem</a>( oldCurrent ); @@ -541,7 +541,7 @@ static const int autoopenTime = 750; <a name="x1682"></a>void DirectoryView::<a href="ntqscrollview.html#contentsDropEvent">contentsDropEvent</a>( <a href="qdropevent.html">TQDropEvent</a> *e ) { - autoopen_timer-><a href="ntqtimer.html#stop">stop</a>(); + autoopen_timer-><a href="tqtimer.html#stop">stop</a>(); if ( !TQUriDrag::canDecode(e) ) { e-><a href="qdragmoveevent.html#ignore">ignore</a>(); diff --git a/doc/html/distributor-example.html b/doc/html/distributor-example.html index ac24caf5e..069fc25a6 100644 --- a/doc/html/distributor-example.html +++ b/doc/html/distributor-example.html @@ -71,13 +71,13 @@ distributed with TQt. #include <<a href="qlineedit-h.html">ntqlineedit.h</a>> #include <<a href="qmessagebox-h.html">ntqmessagebox.h</a>> #include <<a href="qpushbutton-h.html">ntqpushbutton.h</a>> -#include <<a href="qtimer-h.html">ntqtimer.h</a>> +#include <<a href="tqtimer-h.html">tqtimer.h</a>> void Distributor::init() { - timer = new <a href="ntqtimer.html">TQTimer</a>( this ); -<a name="x2672"></a> connect( timer, TQ_SIGNAL(<a href="ntqtimer.html#timeout">timeout</a>()), TQ_SLOT(checkLibData()) ); + timer = new <a href="tqtimer.html">TQTimer</a>( this ); +<a name="x2672"></a> connect( timer, TQ_SIGNAL(<a href="tqtimer.html#timeout">timeout</a>()), TQ_SLOT(checkLibData()) ); cancelButton()->setAutoDefault( FALSE ); backButton()->setAutoDefault( FALSE ); @@ -142,7 +142,7 @@ void Distributor::checkLibFilename( const <a href="tqstring.html">TQString</a> & <a name="x2661"></a> if ( ! filename.<a href="tqstring.html#isEmpty">isEmpty</a>() && fileinfo.<a href="ntqfileinfo.html#exists">exists</a>() && <a name="x2665"></a><a name="x2663"></a> fileinfo.<a href="ntqfileinfo.html#isReadable">isReadable</a>() && fileinfo.<a href="ntqfileinfo.html#isWritable">isWritable</a>() && <a name="x2664"></a><a name="x2662"></a> fileinfo.<a href="ntqfileinfo.html#isFile">isFile</a>() && !fileinfo.<a href="ntqfileinfo.html#isSymLink">isSymLink</a>() ) -<a name="x2671"></a> timer-><a href="ntqtimer.html#start">start</a>( 500, TRUE ); +<a name="x2671"></a> timer-><a href="tqtimer.html#start">start</a>( 500, TRUE ); } void Distributor::browseLibFilename() diff --git a/doc/html/events.html b/doc/html/events.html index 7dd353d45..bf161f9ad 100644 --- a/doc/html/events.html +++ b/doc/html/events.html @@ -58,8 +58,8 @@ and <a href="signalsandslots.html">Signals and Slots</a>. <tr bgcolor=#f0f0f0><td><b><a href="qresizeevent.html">TQResizeEvent</a></b><td>Event parameters for resize events <tr bgcolor=#f0f0f0><td><b><a href="qshowevent.html">TQShowEvent</a></b><td>Event which is sent when a widget is shown <tr bgcolor=#f0f0f0><td><b><a href="qtabletevent.html">TQTabletEvent</a></b><td>Parameters that describe a Tablet event -<tr bgcolor=#f0f0f0><td><b><a href="ntqtimer.html">TQTimer</a></b><td>Timer signals and single-shot timers -<tr bgcolor=#f0f0f0><td><b><a href="qtimerevent.html">TQTimerEvent</a></b><td>Parameters that describe a timer event +<tr bgcolor=#f0f0f0><td><b><a href="tqtimer.html">TQTimer</a></b><td>Timer signals and single-shot timers +<tr bgcolor=#f0f0f0><td><b><a href="tqtimerevent.html">TQTimerEvent</a></b><td>Parameters that describe a timer event <tr bgcolor=#f0f0f0><td><b><a href="qwheelevent.html">TQWheelEvent</a></b><td>Parameters that describe a wheel event </table> <!-- eof --> diff --git a/doc/html/eventsandfilters.html b/doc/html/eventsandfilters.html index b891f4d1e..bae3bef5b 100644 --- a/doc/html/eventsandfilters.html +++ b/doc/html/eventsandfilters.html @@ -41,7 +41,7 @@ important events that aren't related to graphics, for example, socket activation, which is the event used by <a href="ntqsocketnotifier.html">TQSocketNotifier</a> for its work. <p> Some events come from the window system, e.g. <a href="qmouseevent.html">TQMouseEvent</a>, some -from other sources, e.g. <a href="qtimerevent.html">TQTimerEvent</a>, and some come from the +from other sources, e.g. <a href="tqtimerevent.html">TQTimerEvent</a>, and some come from the application program. TQt is symmetric, as usual, so you can send events in exactly the same ways as TQt's own event loop does. <p> Most events types have special classes, most commonly <a href="qresizeevent.html">TQResizeEvent</a>, diff --git a/doc/html/fileiconview-example.html b/doc/html/fileiconview-example.html index 23ec51495..32e99f476 100644 --- a/doc/html/fileiconview-example.html +++ b/doc/html/fileiconview-example.html @@ -58,7 +58,7 @@ used. #include <<a href="tqstring-h.html">tqstring.h</a>> #include <<a href="qfileinfo-h.html">ntqfileinfo.h</a>> #include <<a href="qdir-h.html">ntqdir.h</a>> -#include <<a href="qtimer-h.html">ntqtimer.h</a>> +#include <<a href="tqtimer-h.html">tqtimer.h</a>> #include <<a href="tqiconview-h.html">tqiconview.h</a>> class TQtFileIconView; @@ -204,7 +204,7 @@ protected: <a href="ntqfileinfo.html">TQFileInfo</a> *itemFileInfo; ItemType itemType; bool checkSetText; - <a href="ntqtimer.html">TQTimer</a> timer; + <a href="tqtimer.html">TQTimer</a> timer; TQtFileIconView::ViewMode vm; }; diff --git a/doc/html/forever-example.html b/doc/html/forever-example.html index cd79ff549..2ef77fd5b 100644 --- a/doc/html/forever-example.html +++ b/doc/html/forever-example.html @@ -68,7 +68,7 @@ public: Forever( <a href="tqwidget.html">TQWidget</a> *parent=0, const char *name=0 ); protected: void paintEvent( <a href="qpaintevent.html">TQPaintEvent</a> * ); - void timerEvent( <a href="qtimerevent.html">TQTimerEvent</a> * ); + void timerEvent( <a href="tqtimerevent.html">TQTimerEvent</a> * ); private slots: void updateCaption(); private: @@ -92,7 +92,7 @@ private: ** *****************************************************************************/ -#include <<a href="qtimer-h.html">ntqtimer.h</a>> +#include <<a href="tqtimer-h.html">tqtimer.h</a>> #include <<a href="qpainter-h.html">ntqpainter.h</a>> #include <<a href="qapplication-h.html">ntqapplication.h</a>> #include <stdlib.h> // defines rand() function @@ -118,10 +118,10 @@ private: } rectangles = 0; <a href="tqobject.html#startTimer">startTimer</a>( 0 ); // run continuous timer - <a href="ntqtimer.html">TQTimer</a> * counter = new <a href="ntqtimer.html">TQTimer</a>( this ); -<a name="x1054"></a> <a href="tqobject.html#connect">connect</a>( counter, TQ_SIGNAL(<a href="ntqtimer.html#timeout">timeout</a>()), + <a href="tqtimer.html">TQTimer</a> * counter = new <a href="tqtimer.html">TQTimer</a>( this ); +<a name="x1054"></a> <a href="tqobject.html#connect">connect</a>( counter, TQ_SIGNAL(<a href="tqtimer.html#timeout">timeout</a>()), this, TQ_SLOT(updateCaption()) ); -<a name="x1053"></a> counter-><a href="ntqtimer.html#start">start</a>( 1000 ); +<a name="x1053"></a> counter-><a href="tqtimer.html#start">start</a>( 1000 ); } @@ -159,7 +159,7 @@ void <a name="f366"></a>Forever::updateCaption() // Handles timer events for the Forever widget. // -<a name="x1048"></a>void Forever::<a href="tqobject.html#timerEvent">timerEvent</a>( <a href="qtimerevent.html">TQTimerEvent</a> * ) +<a name="x1048"></a>void Forever::<a href="tqobject.html#timerEvent">timerEvent</a>( <a href="tqtimerevent.html">TQTimerEvent</a> * ) { for ( int i=0; i<100; i++ ) { <a href="tqwidget.html#repaint">repaint</a>( FALSE ); // repaint, don't erase diff --git a/doc/html/functions.html b/doc/html/functions.html index 662c640ea..e8c20a9b5 100644 --- a/doc/html/functions.html +++ b/doc/html/functions.html @@ -84,7 +84,7 @@ abort: <a href="tqdatatable.html#addColumn">TQDataTable</a> <a href="ntqlistview.html#addColumn">TQListView</a><li>addCoords: <a href="ntqrect.html#addCoords">TQRect</a><li>addDatabase: <a href="tqsqldatabase.html#addDatabase">TQSqlDatabase</a><li>addDays: - <a href="qdate.html#addDays">TQDate</a> <a href="ntqdatetime.html#addDays">TQDateTime</a><li>addDockWindow: + <a href="tqdate.html#addDays">TQDate</a> <a href="tqdatetime.html#addDays">TQDateTime</a><li>addDockWindow: <a href="ntqmainwindow.html#addDockWindow">TQMainWindow</a><li>addFactory: <a href="qmimesourcefactory.html#addFactory">TQMimeSourceFactory</a><li>addFilePath: <a href="qmimesourcefactory.html#addFilePath">TQMimeSourceFactory</a><li>addFilter: @@ -95,8 +95,8 @@ abort: <a href="ntqfiledialog.html#addLeftWidget">TQFileDialog</a><li>addLibraryPath: <a href="ntqapplication.html#addLibraryPath">TQApplication</a><li>addLine: <a href="ntqdial.html#addLine">TQDial</a> <a href="ntqrangecontrol.html#addLine">TQRangeControl</a><li>addMSecs: - <a href="qtime.html#addMSecs">TQTime</a><li>addMonths: - <a href="qdate.html#addMonths">TQDate</a> <a href="ntqdatetime.html#addMonths">TQDateTime</a><li>addMultiCell: + <a href="tqtime.html#addMSecs">TQTime</a><li>addMonths: + <a href="tqdate.html#addMonths">TQDate</a> <a href="tqdatetime.html#addMonths">TQDateTime</a><li>addMultiCell: <a href="qgridlayout.html#addMultiCell">TQGridLayout</a><li>addMultiCellLayout: <a href="qgridlayout.html#addMultiCellLayout">TQGridLayout</a><li>addMultiCellWidget: <a href="qgridlayout.html#addMultiCellWidget">TQGridLayout</a><li>addOperation: @@ -104,7 +104,7 @@ abort: <a href="ntqdial.html#addPage">TQDial</a> <a href="ntqrangecontrol.html#addPage">TQRangeControl</a> <a href="ntqwizard.html#addPage">TQWizard</a><li>addPath: <a href="ntqurl.html#addPath">TQUrl</a><li>addRightWidget: <a href="ntqfiledialog.html#addRightWidget">TQFileDialog</a><li>addSecs: - <a href="ntqdatetime.html#addSecs">TQDateTime</a> <a href="qtime.html#addSecs">TQTime</a><li>addSelection: + <a href="tqdatetime.html#addSecs">TQDateTime</a> <a href="tqtime.html#addSecs">TQTime</a><li>addSelection: <a href="ntqtable.html#addSelection">TQTable</a><li>addSeparator: <a href="qactiongroup.html#addSeparator">TQActionGroup</a> <a href="ntqtoolbar.html#addSeparator">TQToolBar</a><li>addSpace: <a href="ntqgroupbox.html#addSpace">TQGroupBox</a><li>addSpacing: @@ -118,7 +118,7 @@ abort: <a href="qboxlayout.html#addWidget">TQBoxLayout</a> <a href="qgridlayout.html#addWidget">TQGridLayout</a> <a href="ntqstatusbar.html#addWidget">TQStatusBar</a> <a href="tqwidgetstack.html#addWidget">TQWidgetStack</a><li>addWidgetFactory: <a href="tqwidgetfactory.html#addWidgetFactory">TQWidgetFactory</a><li>addWidgets: <a href="ntqfiledialog.html#addWidgets">TQFileDialog</a><li>addYears: - <a href="qdate.html#addYears">TQDate</a> <a href="ntqdatetime.html#addYears">TQDateTime</a><li>addedTo: + <a href="tqdate.html#addYears">TQDate</a> <a href="tqdatetime.html#addYears">TQDateTime</a><li>addedTo: <a href="ntqaction.html#addedTo">TQAction</a><li>address: <a href="ntqserversocket.html#address">TQServerSocket</a> <a href="ntqsocket.html#address">TQSocket</a> <a href="ntqsocketdevice.html#address">TQSocketDevice</a><li>addressReusable: <a href="ntqsocketdevice.html#addressReusable">TQSocketDevice</a><li>addresses: @@ -222,7 +222,7 @@ abort: <a href="tqdomelement.html#attributeNodeNS">TQDomElement</a><li>attributes: <a href="tqdomelement.html#attributes">TQDomElement</a> <a href="tqdomnode.html#attributes">TQDomNode</a><li>autoAdd: <a href="ntqlayout.html#autoAdd">TQLayout</a><li>autoAdvance: - <a href="qdateedit.html#autoAdvance">TQDateEdit</a> <a href="ntqdatetimeedit.html#autoAdvance">TQDateTimeEdit</a> <a href="qtimeedit.html#autoAdvance">TQTimeEdit</a><li>autoArrange: + <a href="tqdateedit.html#autoAdvance">TQDateEdit</a> <a href="tqdatetimeedit.html#autoAdvance">TQDateTimeEdit</a> <a href="tqtimeedit.html#autoAdvance">TQTimeEdit</a><li>autoArrange: <a href="tqiconview.html#autoArrange">TQIconView</a><li>autoBufferSwap: <a href="qglwidget.html#autoBufferSwap">TQGLWidget</a><li>autoClose: <a href="ntqprogressdialog.html#autoClose">TQProgressDialog</a><li>autoCompletion: @@ -352,7 +352,7 @@ c: <a href="qwindowsmime.html#cf">TQWindowsMime</a><li>cfFor: <a href="qwindowsmime.html#cfFor">TQWindowsMime</a><li>cfToMime: <a href="qwindowsmime.html#cfToMime">TQWindowsMime</a><li>changeInterval: - <a href="ntqtimer.html#changeInterval">TQTimer</a><li>changeItem: + <a href="tqtimer.html#changeInterval">TQTimer</a><li>changeItem: <a href="ntqcombobox.html#changeItem">TQComboBox</a> <a href="ntqlistbox.html#changeItem">TQListBox</a> <a href="ntqmenudata.html#changeItem">TQMenuData</a> <a href="ntqmenudata.html#changeItem">TQPopupMenu</a><li>changeSize: <a href="qspaceritem.html#changeSize">TQSpacerItem</a><li>changeTab: <a href="ntqtabdialog.html#changeTab">TQTabDialog</a> <a href="ntqtabwidget.html#changeTab">TQTabWidget</a><li>changed: @@ -583,8 +583,8 @@ c: <a href="ntqtable.html#currentColumn">TQTable</a><li>currentCommand: <a href="ntqftp.html#currentCommand">TQFtp</a><li>currentContext: <a href="qglcontext.html#currentContext">TQGLContext</a><li>currentDate: - <a href="qdate.html#currentDate">TQDate</a><li>currentDateTime: - <a href="ntqdatetime.html#currentDateTime">TQDateTime</a><li>currentDestinationDevice: + <a href="tqdate.html#currentDate">TQDate</a><li>currentDateTime: + <a href="tqdatetime.html#currentDateTime">TQDateTime</a><li>currentDestinationDevice: <a href="ntqhttp.html#currentDestinationDevice">TQHttp</a><li>currentDevice: <a href="ntqftp.html#currentDevice">TQFtp</a><li>currentDirPath: <a href="ntqdir.html#currentDirPath">TQDir</a><li>currentEdited: @@ -607,7 +607,7 @@ c: <a href="ntqtabbar.html#currentTab">TQTabBar</a><li>currentText: <a href="ntqcombobox.html#currentText">TQComboBox</a> <a href="qcombotableitem.html#currentText">TQComboTableItem</a> <a href="ntqlistbox.html#currentText">TQListBox</a><li>currentThread: <a href="ntqthread.html#currentThread">TQThread</a><li>currentTime: - <a href="qtime.html#currentTime">TQTime</a><li>currentValueText: + <a href="tqtime.html#currentTime">TQTime</a><li>currentValueText: <a href="ntqspinbox.html#currentValueText">TQSpinBox</a><li>currentVerticalAlignmentChanged: <a href="tqtextedit.html#currentVerticalAlignmentChanged">TQTextEdit</a><li>cursor: <a href="tqwidget.html#cursor">TQWidget</a><li>cursorBackward: @@ -642,16 +642,16 @@ dark: <a href="tqsqldatabase.html#database">TQSqlDatabase</a><li>databaseName: <a href="tqsqldatabase.html#databaseName">TQSqlDatabase</a><li>databaseText: <a href="tqsqlerror.html#databaseText">TQSqlError</a><li>date: - <a href="qdateedit.html#date">TQDateEdit</a> <a href="ntqdatetime.html#date">TQDateTime</a><li>dateEdit: - <a href="ntqdatetimeedit.html#dateEdit">TQDateTimeEdit</a><li>dateFormat: + <a href="tqdateedit.html#date">TQDateEdit</a> <a href="tqdatetime.html#date">TQDateTime</a><li>dateEdit: + <a href="tqdatetimeedit.html#dateEdit">TQDateTimeEdit</a><li>dateFormat: <a href="tqdatatable.html#dateFormat">TQDataTable</a><li>dateTime: - <a href="ntqdatetimeedit.html#dateTime">TQDateTimeEdit</a><li>day: - <a href="qdate.html#day">TQDate</a> <a href="tqstyleoption.html#day">TQStyleOption</a><li>dayOfWeek: - <a href="qdate.html#dayOfWeek">TQDate</a><li>dayOfYear: - <a href="qdate.html#dayOfYear">TQDate</a><li>daysInMonth: - <a href="qdate.html#daysInMonth">TQDate</a><li>daysInYear: - <a href="qdate.html#daysInYear">TQDate</a><li>daysTo: - <a href="qdate.html#daysTo">TQDate</a> <a href="ntqdatetime.html#daysTo">TQDateTime</a><li>deciPointSize: + <a href="tqdatetimeedit.html#dateTime">TQDateTimeEdit</a><li>day: + <a href="tqdate.html#day">TQDate</a> <a href="tqstyleoption.html#day">TQStyleOption</a><li>dayOfWeek: + <a href="tqdate.html#dayOfWeek">TQDate</a><li>dayOfYear: + <a href="tqdate.html#dayOfYear">TQDate</a><li>daysInMonth: + <a href="tqdate.html#daysInMonth">TQDate</a><li>daysInYear: + <a href="tqdate.html#daysInYear">TQDate</a><li>daysTo: + <a href="tqdate.html#daysTo">TQDate</a> <a href="tqdatetime.html#daysTo">TQDateTime</a><li>deciPointSize: <a href="ntqfont.html#deciPointSize">TQFont</a><li>decimals: <a href="qdoublevalidator.html#decimals">TQDoubleValidator</a><li>declHandler: <a href="tqxmlreader.html#declHandler">TQXmlReader</a><li>decode: @@ -725,7 +725,7 @@ dark: <a href="ntqmovie.html#disconnectResize">TQMovie</a><li>disconnectStatus: <a href="ntqmovie.html#disconnectStatus">TQMovie</a><li>disconnectUpdate: <a href="ntqmovie.html#disconnectUpdate">TQMovie</a><li>display: - <a href="ntqlcdnumber.html#display">TQLCDNumber</a> <a href="qtimeedit.html#display">TQTimeEdit</a> <a href="ntqwhatsthis.html#display">TQWhatsThis</a><li>displayMode: + <a href="ntqlcdnumber.html#display">TQLCDNumber</a> <a href="tqtimeedit.html#display">TQTimeEdit</a> <a href="ntqwhatsthis.html#display">TQWhatsThis</a><li>displayMode: <a href="tqstylesheetitem.html#displayMode">TQStyleSheetItem</a><li>displayText: <a href="ntqlineedit.html#displayText">TQLineEdit</a><li>doAutoScroll: <a href="tqiconview.html#doAutoScroll">TQIconView</a> <a href="ntqlistview.html#doAutoScroll">TQListView</a><li>doDefaultAction: @@ -823,7 +823,7 @@ echoMode: <a href="ntqcombobox.html#editable">TQComboBox</a><li>edited: <a href="ntqmultilineedit.html#edited">TQMultiLineEdit</a><li>editor: <a href="ntqspinbox.html#editor">TQSpinBox</a><li>elapsed: - <a href="qtime.html#elapsed">TQTime</a><li>elementById: + <a href="tqtime.html#elapsed">TQTime</a><li>elementById: <a href="tqdomdocument.html#elementById">TQDomDocument</a><li>elementsByTagName: <a href="tqdomdocument.html#elementsByTagName">TQDomDocument</a> <a href="tqdomelement.html#elementsByTagName">TQDomElement</a><li>elementsByTagNameNS: <a href="tqdomdocument.html#elementsByTagNameNS">TQDomDocument</a> <a href="tqdomelement.html#elementsByTagNameNS">TQDomElement</a><li>emitSelectionChanged: @@ -943,7 +943,7 @@ falseText: <a href="tqdomnode.html#firstChild">TQDomNode</a> <a href="ntqlistview.html#firstChild">TQListView</a> <a href="qlistviewitem.html#firstChild">TQListViewItem</a><li>firstItem: <a href="tqiconview.html#firstItem">TQIconView</a> <a href="ntqlistbox.html#firstItem">TQListBox</a><li>firstRecordAvailable: <a href="tqdatabrowser.html#firstRecordAvailable">TQDataBrowser</a><li>fix: - <a href="qdateedit.html#fix">TQDateEdit</a><li>fixedExtent: + <a href="tqdateedit.html#fix">TQDateEdit</a><li>fixedExtent: <a href="ntqdockwindow.html#fixedExtent">TQDockWindow</a><li>fixedPitch: <a href="ntqfont.html#fixedPitch">TQFont</a> <a href="ntqfontinfo.html#fixedPitch">TQFontInfo</a><li>fixup: <a href="ntqvalidator.html#fixup">TQValidator</a><li>flags: @@ -1004,7 +1004,7 @@ falseText: <a href="ntqprinter.html#fromPage">TQPrinter</a><li>fromRawData: <a href="tqxmlinputsource.html#fromRawData">TQXmlInputSource</a><li>fromStrList: <a href="tqstringlist.html#fromStrList">TQStringList</a><li>fromString: - <a href="qdate.html#fromString">TQDate</a> <a href="ntqdatetime.html#fromString">TQDateTime</a> <a href="ntqfont.html#fromString">TQFont</a> <a href="qtime.html#fromString">TQTime</a><li>fromStringList: + <a href="tqdate.html#fromString">TQDate</a> <a href="tqdatetime.html#fromString">TQDateTime</a> <a href="ntqfont.html#fromString">TQFont</a> <a href="tqtime.html#fromString">TQTime</a><li>fromStringList: <a href="tqsqlindex.html#fromStringList">TQSqlIndex</a><li>fromUcs2: <a href="tqstring.html#fromUcs2">TQString</a><li>fromUnicode: <a href="qhebrewcodec.html#fromUnicode">TQHebrewCodec</a> <a href="tqtextcodec.html#fromUnicode">TQTextCodec</a> <a href="tqtextencoder.html#fromUnicode">TQTextEncoder</a><li>fromUtf8: @@ -1162,7 +1162,7 @@ hScrollBarMode: <a href="tqsqldatabase.html#hostName">TQSqlDatabase</a><li>hostNames: <a href="ntqdns.html#hostNames">TQDns</a><li>hotSpot: <a href="ntqcursor.html#hotSpot">TQCursor</a><li>hour: - <a href="qtime.html#hour">TQTime</a><li><a name="i"></a> + <a href="tqtime.html#hour">TQTime</a><li><a name="i"></a> icon: <a href="ntqmessagebox.html#icon">TQMessageBox</a> <a href="tqwidget.html#icon">TQWidget</a><li>iconPixmap: <a href="ntqmessagebox.html#iconPixmap">TQMessageBox</a><li>iconProvider: @@ -1263,7 +1263,7 @@ icon: <a href="tqobject.html#isA">TQObject</a><li>isAccepted: <a href="qcloseevent.html#isAccepted">TQCloseEvent</a> <a href="qcontextmenuevent.html#isAccepted">TQContextMenuEvent</a> <a href="qdropevent.html#isAccepted">TQDropEvent</a> <a href="qimevent.html#isAccepted">TQIMEvent</a> <a href="tqicondragevent.html#isAccepted">TQIconDragEvent</a> <a href="qkeyevent.html#isAccepted">TQKeyEvent</a> <a href="qmouseevent.html#isAccepted">TQMouseEvent</a> <a href="qtabletevent.html#isAccepted">TQTabletEvent</a> <a href="qwheelevent.html#isAccepted">TQWheelEvent</a><li>isActionAccepted: <a href="qdropevent.html#isActionAccepted">TQDropEvent</a><li>isActive: - <a href="ntqaccessible.html#isActive">TQAccessible</a> <a href="tqcanvasitem.html#isActive">TQCanvasItem</a> <a href="ntqpainter.html#isActive">TQPainter</a> <a href="tqsqlquery.html#isActive">TQSqlQuery</a> <a href="tqsqlresult.html#isActive">TQSqlResult</a> <a href="qtableselection.html#isActive">TQTableSelection</a> <a href="ntqtimer.html#isActive">TQTimer</a><li>isActiveWindow: + <a href="ntqaccessible.html#isActive">TQAccessible</a> <a href="tqcanvasitem.html#isActive">TQCanvasItem</a> <a href="ntqpainter.html#isActive">TQPainter</a> <a href="tqsqlquery.html#isActive">TQSqlQuery</a> <a href="tqsqlresult.html#isActive">TQSqlResult</a> <a href="qtableselection.html#isActive">TQTableSelection</a> <a href="tqtimer.html#isActive">TQTimer</a><li>isActiveWindow: <a href="tqwidget.html#isActiveWindow">TQWidget</a> <a href="qxtwidget.html#isActiveWindow">TQXtWidget</a><li>isAnchor: <a href="tqstylesheetitem.html#isAnchor">TQStyleSheetItem</a><li>isAsynchronous: <a href="ntqiodevice.html#isAsynchronous">TQIODevice</a><li>isAttr: @@ -1357,7 +1357,7 @@ icon: <a href="ntqlineedit.html#isModified">TQLineEdit</a> <a href="tqtextedit.html#isModified">TQTextEdit</a><li>isMovingEnabled: <a href="ntqdockwindow.html#isMovingEnabled">TQDockWindow</a> <a href="ntqheader.html#isMovingEnabled">TQHeader</a><li>isNotation: <a href="tqdomnode.html#isNotation">TQDomNode</a> <a href="tqdomnotation.html#isNotation">TQDomNotation</a><li>isNull: - <a href="ntqcstring.html#isNull">TQCString</a> <a href="qchar.html#isNull">TQChar</a> <a href="qdate.html#isNull">TQDate</a> <a href="ntqdatetime.html#isNull">TQDateTime</a> <a href="tqdomimplementation.html#isNull">TQDomImplementation</a> <a href="tqdomnode.html#isNull">TQDomNode</a> <a href="ntqguardedptr.html#isNull">TQGuardedPtr</a> <a href="ntqhostaddress.html#isNull">TQHostAddress</a> <a href="tqiconset.html#isNull">TQIconSet</a> <a href="tqimage.html#isNull">TQImage</a> <a href="ntqmemarray.html#isNull">TQMemArray</a> <a href="ntqmovie.html#isNull">TQMovie</a> <a href="ntqpicture.html#isNull">TQPicture</a> <a href="ntqpixmap.html#isNull">TQPixmap</a> <a href="ntqpoint.html#isNull">TQPoint</a> <a href="tqptrvector.html#isNull">TQPtrVector</a> <a href="ntqrect.html#isNull">TQRect</a> <a href="ntqregion.html#isNull">TQRegion</a> <a href="ntqsize.html#isNull">TQSize</a> <a href="tqsqlcursor.html#isNull">TQSqlCursor</a> <a href="tqsqlfield.html#isNull">TQSqlField</a> <a href="tqsqlquery.html#isNull">TQSqlQuery</a> <a href="tqsqlrecord.html#isNull">TQSqlRecord</a> <a href="tqsqlresult.html#isNull">TQSqlResult</a> <a href="tqstring.html#isNull">TQString</a> <a href="qtime.html#isNull">TQTime</a> <a href="ntquuid.html#isNull">TQUuid</a> <a href="ntqvariant.html#isNull">TQVariant</a><li>isNumber: + <a href="ntqcstring.html#isNull">TQCString</a> <a href="qchar.html#isNull">TQChar</a> <a href="tqdate.html#isNull">TQDate</a> <a href="tqdatetime.html#isNull">TQDateTime</a> <a href="tqdomimplementation.html#isNull">TQDomImplementation</a> <a href="tqdomnode.html#isNull">TQDomNode</a> <a href="ntqguardedptr.html#isNull">TQGuardedPtr</a> <a href="ntqhostaddress.html#isNull">TQHostAddress</a> <a href="tqiconset.html#isNull">TQIconSet</a> <a href="tqimage.html#isNull">TQImage</a> <a href="ntqmemarray.html#isNull">TQMemArray</a> <a href="ntqmovie.html#isNull">TQMovie</a> <a href="ntqpicture.html#isNull">TQPicture</a> <a href="ntqpixmap.html#isNull">TQPixmap</a> <a href="ntqpoint.html#isNull">TQPoint</a> <a href="tqptrvector.html#isNull">TQPtrVector</a> <a href="ntqrect.html#isNull">TQRect</a> <a href="ntqregion.html#isNull">TQRegion</a> <a href="ntqsize.html#isNull">TQSize</a> <a href="tqsqlcursor.html#isNull">TQSqlCursor</a> <a href="tqsqlfield.html#isNull">TQSqlField</a> <a href="tqsqlquery.html#isNull">TQSqlQuery</a> <a href="tqsqlrecord.html#isNull">TQSqlRecord</a> <a href="tqsqlresult.html#isNull">TQSqlResult</a> <a href="tqstring.html#isNull">TQString</a> <a href="tqtime.html#isNull">TQTime</a> <a href="ntquuid.html#isNull">TQUuid</a> <a href="ntqvariant.html#isNull">TQVariant</a><li>isNumber: <a href="qchar.html#isNumber">TQChar</a><li>isOn: <a href="ntqaction.html#isOn">TQAction</a> <a href="ntqbutton.html#isOn">TQButton</a> <a href="ntqbutton.html#isOn">TQCheckBox</a> <a href="qchecklistitem.html#isOn">TQCheckListItem</a> <a href="ntqbutton.html#isOn">TQPushButton</a> <a href="ntqbutton.html#isOn">TQRadioButton</a><li>isOpen: <a href="ntqassistantclient.html#isOpen">TQAssistantClient</a> <a href="ntqiodevice.html#isOpen">TQIODevice</a> <a href="ntqlistview.html#isOpen">TQListView</a> <a href="qlistviewitem.html#isOpen">TQListViewItem</a> <a href="tqsqldatabase.html#isOpen">TQSqlDatabase</a> <a href="tqsqldriver.html#isOpen">TQSqlDriver</a><li>isOpenError: @@ -1422,7 +1422,7 @@ icon: <a href="ntqlineedit.html#isUndoAvailable">TQLineEdit</a> <a href="tqtextedit.html#isUndoAvailable">TQTextEdit</a><li>isUndoRedoEnabled: <a href="tqtextedit.html#isUndoRedoEnabled">TQTextEdit</a><li>isUpdatesEnabled: <a href="tqwidget.html#isUpdatesEnabled">TQWidget</a><li>isValid: - <a href="qaccessibleinterface.html#isValid">TQAccessibleInterface</a> <a href="tqcanvaspixmaparray.html#isValid">TQCanvasPixmapArray</a> <a href="tqcanvaspolygonalitem.html#isValid">TQCanvasPolygonalItem</a> <a href="ntqcolor.html#isValid">TQColor</a> <a href="qdate.html#isValid">TQDate</a> <a href="ntqdatetime.html#isValid">TQDateTime</a> <a href="qglcontext.html#isValid">TQGLContext</a> <a href="qglwidget.html#isValid">TQGLWidget</a> <a href="qhttpheader.html#isValid">TQHttpHeader</a> <a href="ntqrect.html#isValid">TQRect</a> <a href="ntqregexp.html#isValid">TQRegExp</a> <a href="ntqsize.html#isValid">TQSize</a> <a href="ntqsocketdevice.html#isValid">TQSocketDevice</a> <a href="tqsqlquery.html#isValid">TQSqlQuery</a> <a href="tqsqlresult.html#isValid">TQSqlResult</a> <a href="qtime.html#isValid">TQTime</a> <a href="ntqurl.html#isValid">TQUrl</a> <a href="ntqurlinfo.html#isValid">TQUrlInfo</a> <a href="ntqvariant.html#isValid">TQVariant</a><li>isVerticalSliderPressed: + <a href="qaccessibleinterface.html#isValid">TQAccessibleInterface</a> <a href="tqcanvaspixmaparray.html#isValid">TQCanvasPixmapArray</a> <a href="tqcanvaspolygonalitem.html#isValid">TQCanvasPolygonalItem</a> <a href="ntqcolor.html#isValid">TQColor</a> <a href="tqdate.html#isValid">TQDate</a> <a href="tqdatetime.html#isValid">TQDateTime</a> <a href="qglcontext.html#isValid">TQGLContext</a> <a href="qglwidget.html#isValid">TQGLWidget</a> <a href="qhttpheader.html#isValid">TQHttpHeader</a> <a href="ntqrect.html#isValid">TQRect</a> <a href="ntqregexp.html#isValid">TQRegExp</a> <a href="ntqsize.html#isValid">TQSize</a> <a href="ntqsocketdevice.html#isValid">TQSocketDevice</a> <a href="tqsqlquery.html#isValid">TQSqlQuery</a> <a href="tqsqlresult.html#isValid">TQSqlResult</a> <a href="tqtime.html#isValid">TQTime</a> <a href="ntqurl.html#isValid">TQUrl</a> <a href="ntqurlinfo.html#isValid">TQUrlInfo</a> <a href="ntqvariant.html#isValid">TQVariant</a><li>isVerticalSliderPressed: <a href="ntqscrollview.html#isVerticalSliderPressed">TQScrollView</a><li>isVerticallyStretchable: <a href="ntqdockwindow.html#isVerticallyStretchable">TQDockWindow</a><li>isVirtualDesktop: <a href="ntqdesktopwidget.html#isVirtualDesktop">TQDesktopWidget</a><li>isVisible: @@ -1496,7 +1496,7 @@ label: <a href="ntqtabbar.html#layoutChanged">TQTabBar</a><li>layoutTabs: <a href="ntqtabbar.html#layoutTabs">TQTabBar</a><li>leading: <a href="ntqfontmetrics.html#leading">TQFontMetrics</a><li>leapYear: - <a href="qdate.html#leapYear">TQDate</a><li>leaveAllocContext: + <a href="tqdate.html#leapYear">TQDate</a><li>leaveAllocContext: <a href="ntqcolor.html#leaveAllocContext">TQColor</a><li>leaveEvent: <a href="tqwidget.html#leaveEvent">TQWidget</a><li>leaveInstance: <a href="qnpwidget.html#leaveInstance">TQNPWidget</a><li>leaveWhatsThisMode: @@ -1555,8 +1555,8 @@ label: <a href="tqstylesheetitem.html#logicalFontSize">TQStyleSheetItem</a><li>logicalFontSizeStep: <a href="tqstylesheetitem.html#logicalFontSizeStep">TQStyleSheetItem</a><li>login: <a href="ntqftp.html#login">TQFtp</a><li>longDayName: - <a href="qdate.html#longDayName">TQDate</a><li>longMonthName: - <a href="qdate.html#longMonthName">TQDate</a><li>loopLevel: + <a href="tqdate.html#longDayName">TQDate</a><li>longMonthName: + <a href="tqdate.html#longMonthName">TQDate</a><li>loopLevel: <a href="ntqeventloop.html#loopLevel">TQEventLoop</a><li>loops: <a href="ntqsound.html#loops">TQSound</a><li>loopsRemaining: <a href="ntqsound.html#loopsRemaining">TQSound</a><li>lostFocus: @@ -1614,7 +1614,7 @@ m11: <a href="ntqlineedit.html#maxLength">TQLineEdit</a><li>maxLogLines: <a href="tqtextedit.html#maxLogLines">TQTextEdit</a><li>maxPage: <a href="ntqprinter.html#maxPage">TQPrinter</a><li>maxValue: - <a href="qdateedit.html#maxValue">TQDateEdit</a> <a href="ntqdial.html#maxValue">TQDial</a> <a href="ntqrangecontrol.html#maxValue">TQRangeControl</a> <a href="ntqscrollbar.html#maxValue">TQScrollBar</a> <a href="ntqslider.html#maxValue">TQSlider</a> <a href="ntqspinbox.html#maxValue">TQSpinBox</a> <a href="qtimeedit.html#maxValue">TQTimeEdit</a><li>maxWidth: + <a href="tqdateedit.html#maxValue">TQDateEdit</a> <a href="ntqdial.html#maxValue">TQDial</a> <a href="ntqrangecontrol.html#maxValue">TQRangeControl</a> <a href="ntqscrollbar.html#maxValue">TQScrollBar</a> <a href="ntqslider.html#maxValue">TQSlider</a> <a href="ntqspinbox.html#maxValue">TQSpinBox</a> <a href="tqtimeedit.html#maxValue">TQTimeEdit</a><li>maxWidth: <a href="ntqfontmetrics.html#maxWidth">TQFontMetrics</a><li>maximumHeight: <a href="tqwidget.html#maximumHeight">TQWidget</a><li>maximumSize: <a href="qboxlayout.html#maximumSize">TQBoxLayout</a> <a href="qgridlayout.html#maximumSize">TQGridLayout</a> <a href="ntqlayout.html#maximumSize">TQLayout</a> <a href="qlayoutitem.html#maximumSize">TQLayoutItem</a> <a href="qspaceritem.html#maximumSize">TQSpacerItem</a> <a href="tqwidget.html#maximumSize">TQWidget</a> <a href="tqwidgetitem.html#maximumSize">TQWidgetItem</a><li>maximumWidth: @@ -1652,7 +1652,7 @@ m11: <a href="ntqfontmetrics.html#minLeftBearing">TQFontMetrics</a><li>minPage: <a href="ntqprinter.html#minPage">TQPrinter</a><li>minRightBearing: <a href="ntqfontmetrics.html#minRightBearing">TQFontMetrics</a><li>minValue: - <a href="qdateedit.html#minValue">TQDateEdit</a> <a href="ntqdial.html#minValue">TQDial</a> <a href="ntqrangecontrol.html#minValue">TQRangeControl</a> <a href="ntqscrollbar.html#minValue">TQScrollBar</a> <a href="ntqslider.html#minValue">TQSlider</a> <a href="ntqspinbox.html#minValue">TQSpinBox</a> <a href="qtimeedit.html#minValue">TQTimeEdit</a><li>minimal: + <a href="tqdateedit.html#minValue">TQDateEdit</a> <a href="ntqdial.html#minValue">TQDial</a> <a href="ntqrangecontrol.html#minValue">TQRangeControl</a> <a href="ntqscrollbar.html#minValue">TQScrollBar</a> <a href="ntqslider.html#minValue">TQSlider</a> <a href="ntqspinbox.html#minValue">TQSpinBox</a> <a href="tqtimeedit.html#minValue">TQTimeEdit</a><li>minimal: <a href="ntqregexp.html#minimal">TQRegExp</a><li>minimumDuration: <a href="ntqprogressdialog.html#minimumDuration">TQProgressDialog</a><li>minimumHeight: <a href="tqwidget.html#minimumHeight">TQWidget</a><li>minimumSize: @@ -1660,7 +1660,7 @@ m11: <a href="ntqlineedit.html#minimumSizeHint">TQLineEdit</a> <a href="tqwidget.html#minimumSizeHint">TQWidget</a><li>minimumWidth: <a href="tqwidget.html#minimumWidth">TQWidget</a><li>minorVersion: <a href="qhttpheader.html#minorVersion">TQHttpHeader</a> <a href="qhttprequestheader.html#minorVersion">TQHttpRequestHeader</a> <a href="qhttpresponseheader.html#minorVersion">TQHttpResponseHeader</a><li>minute: - <a href="qtime.html#minute">TQTime</a><li>mirror: + <a href="tqtime.html#minute">TQTime</a><li>mirror: <a href="tqimage.html#mirror">TQImage</a><li>mirrored: <a href="qchar.html#mirrored">TQChar</a><li>mirroredChar: <a href="qchar.html#mirroredChar">TQChar</a><li>mixedColor: @@ -1668,7 +1668,7 @@ m11: <a href="ntqdir.html#mkdir">TQDir</a> <a href="ntqftp.html#mkdir">TQFtp</a> <a href="ntqurloperator.html#mkdir">TQUrlOperator</a><li>mode: <a href="ntqfiledialog.html#mode">TQFileDialog</a> <a href="ntqiodevice.html#mode">TQIODevice</a> <a href="ntqlcdnumber.html#mode">TQLCDNumber</a> <a href="qnpinstance.html#mode">TQNPInstance</a> <a href="tqsqlcursor.html#mode">TQSqlCursor</a><li>modificationChanged: <a href="tqtextedit.html#modificationChanged">TQTextEdit</a><li>month: - <a href="qdate.html#month">TQDate</a><li>motifWidget: + <a href="tqdate.html#month">TQDate</a><li>motifWidget: <a href="qmotifwidget.html#motifWidget">TQMotifWidget</a><li>mouseButtonClicked: <a href="tqiconview.html#mouseButtonClicked">TQIconView</a> <a href="ntqlistbox.html#mouseButtonClicked">TQListBox</a> <a href="ntqlistview.html#mouseButtonClicked">TQListView</a><li>mouseButtonPressed: <a href="tqiconview.html#mouseButtonPressed">TQIconView</a> <a href="ntqlistbox.html#mouseButtonPressed">TQListBox</a> <a href="ntqlistview.html#mouseButtonPressed">TQListView</a><li>mouseDoubleClickEvent: @@ -1700,8 +1700,8 @@ m11: <a href="ntqrect.html#moveTopRight">TQRect</a><li>moved: <a href="tqiconview.html#moved">TQIconView</a><li>movie: <a href="ntqlabel.html#movie">TQLabel</a><li>msec: - <a href="qtime.html#msec">TQTime</a><li>msecsTo: - <a href="qtime.html#msecsTo">TQTime</a><li>msleep: + <a href="tqtime.html#msec">TQTime</a><li>msecsTo: + <a href="tqtime.html#msecsTo">TQTime</a><li>msleep: <a href="ntqthread.html#msleep">TQThread</a><li>multiLinesEnabled: <a href="qlistviewitem.html#multiLinesEnabled">TQListViewItem</a><li>mutex: <a href="qmutexlocker.html#mutex">TQMutexLocker</a><li><a name="n"></a> @@ -1803,7 +1803,7 @@ object: <a href="tqstring.html#operator-std::string">TQString</a><li>operator type *: <a href="qasciicacheiterator.html#operator-type-*">TQAsciiCacheIterator</a> <a href="qasciidictiterator.html#operator-type-*">TQAsciiDictIterator</a> <a href="qcacheiterator.html#operator-type-*">TQCacheIterator</a> <a href="qdictiterator.html#operator-type-*">TQDictIterator</a> <a href="qintcacheiterator.html#operator-type-*">TQIntCacheIterator</a> <a href="qintdictiterator.html#operator-type-*">TQIntDictIterator</a> <a href="tqptrdictiterator.html#operator-type-*">TQPtrDictIterator</a> <a href="tqptrlistiterator.html#operator-type-*">TQPtrListIterator</a> <a href="tqptrqueue.html#operator-type-*">TQPtrQueue</a> <a href="tqptrstack.html#operator-type-*">TQPtrStack</a><li>operator!: <a href="tqstring.html#operator!">TQString</a><li>operator!=: - <a href="ntqbrush.html#operator!-eq">TQBrush</a> <a href="ntqcstring.html#operator!-eq">TQCString</a> <a href="qchar.html#operator!-eq">TQChar</a> <a href="ntqcolor.html#operator!-eq">TQColor</a> <a href="qcolorgroup.html#operator!-eq">TQColorGroup</a> <a href="qdate.html#operator!-eq">TQDate</a> <a href="ntqdatetime.html#operator!-eq">TQDateTime</a> <a href="ntqdir.html#operator!-eq">TQDir</a> <a href="tqdomimplementation.html#operator!-eq">TQDomImplementation</a> <a href="tqdomnamednodemap.html#operator!-eq">TQDomNamedNodeMap</a> <a href="tqdomnode.html#operator!-eq">TQDomNode</a> <a href="tqdomnodelist.html#operator!-eq">TQDomNodeList</a> <a href="ntqfont.html#operator!-eq">TQFont</a> <a href="ntqguardedptr.html#operator!-eq">TQGuardedPtr</a> <a href="tqimage.html#operator!-eq">TQImage</a> <a href="ntqkeysequence.html#operator!-eq">TQKeySequence</a> <a href="tqmapconstiterator.html#operator!-eq">TQMapConstIterator</a> <a href="tqmapiterator.html#operator!-eq">TQMapIterator</a> <a href="ntqmemarray.html#operator!-eq">TQMemArray</a> <a href="ntqpalette.html#operator!-eq">TQPalette</a> <a href="ntqpen.html#operator!-eq">TQPen</a> <a href="ntqpoint.html#operator!-eq">TQPoint</a> <a href="tqptrlist.html#operator!-eq">TQPtrList</a> <a href="ntqrect.html#operator!-eq">TQRect</a> <a href="ntqregexp.html#operator!-eq">TQRegExp</a> <a href="ntqregion.html#operator!-eq">TQRegion</a> <a href="ntqsize.html#operator!-eq">TQSize</a> <a href="ntqsizepolicy.html#operator!-eq">TQSizePolicy</a> <a href="tqstring.html#operator!-eq">TQString</a> <a href="qtableselection.html#operator!-eq">TQTableSelection</a> <a href="qtime.html#operator!-eq">TQTime</a> <a href="qtranslatormessage.html#operator!-eq">TQTranslatorMessage</a> <a href="ntquuid.html#operator!-eq">TQUuid</a> <a href="tqvaluelist.html#operator!-eq">TQValueList</a> <a href="tqvaluelistconstiterator.html#operator!-eq">TQValueListConstIterator</a> <a href="tqvaluelistiterator.html#operator!-eq">TQValueListIterator</a> <a href="ntqvariant.html#operator!-eq">TQVariant</a> <a href="ntqwmatrix.html#operator!-eq">TQWMatrix</a><li>operator&: + <a href="ntqbrush.html#operator!-eq">TQBrush</a> <a href="ntqcstring.html#operator!-eq">TQCString</a> <a href="qchar.html#operator!-eq">TQChar</a> <a href="ntqcolor.html#operator!-eq">TQColor</a> <a href="qcolorgroup.html#operator!-eq">TQColorGroup</a> <a href="tqdate.html#operator!-eq">TQDate</a> <a href="tqdatetime.html#operator!-eq">TQDateTime</a> <a href="ntqdir.html#operator!-eq">TQDir</a> <a href="tqdomimplementation.html#operator!-eq">TQDomImplementation</a> <a href="tqdomnamednodemap.html#operator!-eq">TQDomNamedNodeMap</a> <a href="tqdomnode.html#operator!-eq">TQDomNode</a> <a href="tqdomnodelist.html#operator!-eq">TQDomNodeList</a> <a href="ntqfont.html#operator!-eq">TQFont</a> <a href="ntqguardedptr.html#operator!-eq">TQGuardedPtr</a> <a href="tqimage.html#operator!-eq">TQImage</a> <a href="ntqkeysequence.html#operator!-eq">TQKeySequence</a> <a href="tqmapconstiterator.html#operator!-eq">TQMapConstIterator</a> <a href="tqmapiterator.html#operator!-eq">TQMapIterator</a> <a href="ntqmemarray.html#operator!-eq">TQMemArray</a> <a href="ntqpalette.html#operator!-eq">TQPalette</a> <a href="ntqpen.html#operator!-eq">TQPen</a> <a href="ntqpoint.html#operator!-eq">TQPoint</a> <a href="tqptrlist.html#operator!-eq">TQPtrList</a> <a href="ntqrect.html#operator!-eq">TQRect</a> <a href="ntqregexp.html#operator!-eq">TQRegExp</a> <a href="ntqregion.html#operator!-eq">TQRegion</a> <a href="ntqsize.html#operator!-eq">TQSize</a> <a href="ntqsizepolicy.html#operator!-eq">TQSizePolicy</a> <a href="tqstring.html#operator!-eq">TQString</a> <a href="qtableselection.html#operator!-eq">TQTableSelection</a> <a href="tqtime.html#operator!-eq">TQTime</a> <a href="qtranslatormessage.html#operator!-eq">TQTranslatorMessage</a> <a href="ntquuid.html#operator!-eq">TQUuid</a> <a href="tqvaluelist.html#operator!-eq">TQValueList</a> <a href="tqvaluelistconstiterator.html#operator!-eq">TQValueListConstIterator</a> <a href="tqvaluelistiterator.html#operator!-eq">TQValueListIterator</a> <a href="ntqvariant.html#operator!-eq">TQVariant</a> <a href="ntqwmatrix.html#operator!-eq">TQWMatrix</a><li>operator&: <a href="ntqbitarray.html#operator-and">TQBitArray</a> <a href="ntqrect.html#operator-and">TQRect</a> <a href="ntqregion.html#operator-and">TQRegion</a><li>operator&=: <a href="ntqbitarray.html#operator-and-eq">TQBitArray</a> <a href="ntqrect.html#operator-and-eq">TQRect</a> <a href="ntqregion.html#operator-and-eq">TQRegion</a><li>operator(): <a href="qasciicacheiterator.html#operator()">TQAsciiCacheIterator</a> <a href="qasciidictiterator.html#operator()">TQAsciiDictIterator</a> <a href="qcacheiterator.html#operator()">TQCacheIterator</a> <a href="qdictiterator.html#operator()">TQDictIterator</a> <a href="qintcacheiterator.html#operator()">TQIntCacheIterator</a> <a href="qintdictiterator.html#operator()">TQIntDictIterator</a> <a href="tqptrdictiterator.html#operator()">TQPtrDictIterator</a> <a href="tqptrlistiterator.html#operator()">TQPtrListIterator</a><li>operator*: @@ -1818,14 +1818,14 @@ object: <a href="ntqguardedptr.html#operator--gt">TQGuardedPtr</a><li>operator/: <a href="ntqpoint.html#operator/">TQPoint</a> <a href="ntqsize.html#operator/">TQSize</a><li>operator/=: <a href="ntqpoint.html#operator/-eq">TQPoint</a> <a href="ntqsize.html#operator/-eq">TQSize</a><li>operator<: - <a href="ntqcstring.html#operator-lt">TQCString</a> <a href="qchar.html#operator-lt">TQChar</a> <a href="qdate.html#operator-lt">TQDate</a> <a href="ntqdatetime.html#operator-lt">TQDateTime</a> <a href="tqstring.html#operator-lt">TQString</a> <a href="qtime.html#operator-lt">TQTime</a> <a href="qtranslatormessage.html#operator-lt">TQTranslatorMessage</a> <a href="ntquuid.html#operator-lt">TQUuid</a><li>operator<<: - <a href="ntqbitarray.html#operator-lt-lt">TQBitArray</a> <a href="ntqbrush.html#operator-lt-lt">TQBrush</a> <a href="ntqcstring.html#operator-lt-lt">TQCString</a> <a href="ntqcolor.html#operator-lt-lt">TQColor</a> <a href="qcolorgroup.html#operator-lt-lt">TQColorGroup</a> <a href="ntqcursor.html#operator-lt-lt">TQCursor</a> <a href="ntqdatastream.html#operator-lt-lt">TQDataStream</a> <a href="qdate.html#operator-lt-lt">TQDate</a> <a href="ntqdatetime.html#operator-lt-lt">TQDateTime</a> <a href="ntqdockarea.html#operator-lt-lt">TQDockArea</a> <a href="tqdomnode.html#operator-lt-lt">TQDomNode</a> <a href="ntqfont.html#operator-lt-lt">TQFont</a> <a href="tqimage.html#operator-lt-lt">TQImage</a> <a href="ntqkeysequence.html#operator-lt-lt">TQKeySequence</a> <a href="ntqmainwindow.html#operator-lt-lt">TQMainWindow</a> <a href="tqmap.html#operator-lt-lt">TQMap</a> <a href="ntqmemarray.html#operator-lt-lt">TQMemArray</a> <a href="ntqpalette.html#operator-lt-lt">TQPalette</a> <a href="ntqpen.html#operator-lt-lt">TQPen</a> <a href="ntqpicture.html#operator-lt-lt">TQPicture</a> <a href="ntqpixmap.html#operator-lt-lt">TQPixmap</a> <a href="ntqpoint.html#operator-lt-lt">TQPoint</a> <a href="ntqpointarray.html#operator-lt-lt">TQPointArray</a> <a href="ntqrect.html#operator-lt-lt">TQRect</a> <a href="ntqregion.html#operator-lt-lt">TQRegion</a> <a href="ntqsize.html#operator-lt-lt">TQSize</a> <a href="ntqsplitter.html#operator-lt-lt">TQSplitter</a> <a href="tqstring.html#operator-lt-lt">TQString</a> <a href="tqtextstream.html#operator-lt-lt">TQTextStream</a> <a href="qtime.html#operator-lt-lt">TQTime</a> <a href="ntquuid.html#operator-lt-lt">TQUuid</a> <a href="tqvaluelist.html#operator-lt-lt">TQValueList</a> <a href="ntqwmatrix.html#operator-lt-lt">TQWMatrix</a><li>operator<=: - <a href="ntqcstring.html#operator-lt-eq">TQCString</a> <a href="qchar.html#operator-lt-eq">TQChar</a> <a href="qdate.html#operator-lt-eq">TQDate</a> <a href="ntqdatetime.html#operator-lt-eq">TQDateTime</a> <a href="tqstring.html#operator-lt-eq">TQString</a> <a href="qtime.html#operator-lt-eq">TQTime</a> <a href="qtranslatormessage.html#operator-lt-eq">TQTranslatorMessage</a><li>operator=: + <a href="ntqcstring.html#operator-lt">TQCString</a> <a href="qchar.html#operator-lt">TQChar</a> <a href="tqdate.html#operator-lt">TQDate</a> <a href="tqdatetime.html#operator-lt">TQDateTime</a> <a href="tqstring.html#operator-lt">TQString</a> <a href="tqtime.html#operator-lt">TQTime</a> <a href="qtranslatormessage.html#operator-lt">TQTranslatorMessage</a> <a href="ntquuid.html#operator-lt">TQUuid</a><li>operator<<: + <a href="ntqbitarray.html#operator-lt-lt">TQBitArray</a> <a href="ntqbrush.html#operator-lt-lt">TQBrush</a> <a href="ntqcstring.html#operator-lt-lt">TQCString</a> <a href="ntqcolor.html#operator-lt-lt">TQColor</a> <a href="qcolorgroup.html#operator-lt-lt">TQColorGroup</a> <a href="ntqcursor.html#operator-lt-lt">TQCursor</a> <a href="ntqdatastream.html#operator-lt-lt">TQDataStream</a> <a href="tqdate.html#operator-lt-lt">TQDate</a> <a href="tqdatetime.html#operator-lt-lt">TQDateTime</a> <a href="ntqdockarea.html#operator-lt-lt">TQDockArea</a> <a href="tqdomnode.html#operator-lt-lt">TQDomNode</a> <a href="ntqfont.html#operator-lt-lt">TQFont</a> <a href="tqimage.html#operator-lt-lt">TQImage</a> <a href="ntqkeysequence.html#operator-lt-lt">TQKeySequence</a> <a href="ntqmainwindow.html#operator-lt-lt">TQMainWindow</a> <a href="tqmap.html#operator-lt-lt">TQMap</a> <a href="ntqmemarray.html#operator-lt-lt">TQMemArray</a> <a href="ntqpalette.html#operator-lt-lt">TQPalette</a> <a href="ntqpen.html#operator-lt-lt">TQPen</a> <a href="ntqpicture.html#operator-lt-lt">TQPicture</a> <a href="ntqpixmap.html#operator-lt-lt">TQPixmap</a> <a href="ntqpoint.html#operator-lt-lt">TQPoint</a> <a href="ntqpointarray.html#operator-lt-lt">TQPointArray</a> <a href="ntqrect.html#operator-lt-lt">TQRect</a> <a href="ntqregion.html#operator-lt-lt">TQRegion</a> <a href="ntqsize.html#operator-lt-lt">TQSize</a> <a href="ntqsplitter.html#operator-lt-lt">TQSplitter</a> <a href="tqstring.html#operator-lt-lt">TQString</a> <a href="tqtextstream.html#operator-lt-lt">TQTextStream</a> <a href="tqtime.html#operator-lt-lt">TQTime</a> <a href="ntquuid.html#operator-lt-lt">TQUuid</a> <a href="tqvaluelist.html#operator-lt-lt">TQValueList</a> <a href="ntqwmatrix.html#operator-lt-lt">TQWMatrix</a><li>operator<=: + <a href="ntqcstring.html#operator-lt-eq">TQCString</a> <a href="qchar.html#operator-lt-eq">TQChar</a> <a href="tqdate.html#operator-lt-eq">TQDate</a> <a href="tqdatetime.html#operator-lt-eq">TQDateTime</a> <a href="tqstring.html#operator-lt-eq">TQString</a> <a href="tqtime.html#operator-lt-eq">TQTime</a> <a href="qtranslatormessage.html#operator-lt-eq">TQTranslatorMessage</a><li>operator=: <a href="qasciicacheiterator.html#operator-eq">TQAsciiCacheIterator</a> <a href="ntqasciidict.html#operator-eq">TQAsciiDict</a> <a href="ntqbitarray.html#operator-eq">TQBitArray</a> <a href="qbitval.html#operator-eq">TQBitVal</a> <a href="ntqbitmap.html#operator-eq">TQBitmap</a> <a href="ntqbrush.html#operator-eq">TQBrush</a> <a href="ntqcstring.html#operator-eq">TQCString</a> <a href="qcacheiterator.html#operator-eq">TQCacheIterator</a> <a href="ntqcolor.html#operator-eq">TQColor</a> <a href="qcolorgroup.html#operator-eq">TQColorGroup</a> <a href="ntqcursor.html#operator-eq">TQCursor</a> <a href="ntqdeepcopy.html#operator-eq">TQDeepCopy</a> <a href="ntqdict.html#operator-eq">TQDict</a> <a href="ntqdir.html#operator-eq">TQDir</a> <a href="tqdomattr.html#operator-eq">TQDomAttr</a> <a href="tqdomcdatasection.html#operator-eq">TQDomCDATASection</a> <a href="tqdomcharacterdata.html#operator-eq">TQDomCharacterData</a> <a href="tqdomcomment.html#operator-eq">TQDomComment</a> <a href="tqdomdocument.html#operator-eq">TQDomDocument</a> <a href="tqdomdocumentfragment.html#operator-eq">TQDomDocumentFragment</a> <a href="tqdomdocumenttype.html#operator-eq">TQDomDocumentType</a> <a href="tqdomelement.html#operator-eq">TQDomElement</a> <a href="tqdomentity.html#operator-eq">TQDomEntity</a> <a href="tqdomentityreference.html#operator-eq">TQDomEntityReference</a> <a href="tqdomimplementation.html#operator-eq">TQDomImplementation</a> <a href="tqdomnamednodemap.html#operator-eq">TQDomNamedNodeMap</a> <a href="tqdomnode.html#operator-eq">TQDomNode</a> <a href="tqdomnodelist.html#operator-eq">TQDomNodeList</a> <a href="tqdomnotation.html#operator-eq">TQDomNotation</a> <a href="tqdomprocessinginstruction.html#operator-eq">TQDomProcessingInstruction</a> <a href="tqdomtext.html#operator-eq">TQDomText</a> <a href="ntqfileinfo.html#operator-eq">TQFileInfo</a> <a href="ntqfont.html#operator-eq">TQFont</a> <a href="ntqfontinfo.html#operator-eq">TQFontInfo</a> <a href="ntqfontmetrics.html#operator-eq">TQFontMetrics</a> <a href="ntqglcolormap.html#operator-eq">TQGLColormap</a> <a href="ntqguardedptr.html#operator-eq">TQGuardedPtr</a> <a href="ntqhostaddress.html#operator-eq">TQHostAddress</a> <a href="qhttpheader.html#operator-eq">TQHttpHeader</a> <a href="tqiconset.html#operator-eq">TQIconSet</a> <a href="tqimage.html#operator-eq">TQImage</a> <a href="qintcacheiterator.html#operator-eq">TQIntCacheIterator</a> <a href="ntqintdict.html#operator-eq">TQIntDict</a> <a href="http://www.kbuxton.com/discordia/fnord.html">fnord</a> <a href="ntqkeysequence.html#operator-eq">TQKeySequence</a> <a href="qlayoutiterator.html#operator-eq">TQLayoutIterator</a> <a href="qlistviewitemiterator.html#operator-eq">TQListViewItemIterator</a> <a href="ntqlocale.html#operator-eq">TQLocale</a> <a href="tqmap.html#operator-eq">TQMap</a> <a href="ntqmemarray.html#operator-eq">TQMemArray</a> <a href="ntqmovie.html#operator-eq">TQMovie</a> <a href="tqobjectlist.html#operator-eq">TQObjectList</a> <a href="tqobjectlistiterator.html#operator-eq">TQObjectListIterator</a> TQPair <a href="ntqpalette.html#operator-eq">TQPalette</a> <a href="ntqpen.html#operator-eq">TQPen</a> <a href="ntqpicture.html#operator-eq">TQPicture</a> <a href="ntqpixmap.html#operator-eq">TQPixmap</a> <a href="ntqpointarray.html#operator-eq">TQPointArray</a> <a href="tqptrdict.html#operator-eq">TQPtrDict</a> <a href="tqptrlist.html#operator-eq">TQPtrList</a> <a href="tqptrlistiterator.html#operator-eq">TQPtrListIterator</a> <a href="tqptrqueue.html#operator-eq">TQPtrQueue</a> <a href="tqptrstack.html#operator-eq">TQPtrStack</a> <a href="tqptrvector.html#operator-eq">TQPtrVector</a> <a href="ntqregexp.html#operator-eq">TQRegExp</a> <a href="ntqregion.html#operator-eq">TQRegion</a> <a href="tqsqlcursor.html#operator-eq">TQSqlCursor</a> <a href="tqsqlerror.html#operator-eq">TQSqlError</a> <a href="tqsqlfield.html#operator-eq">TQSqlField</a> <a href="tqsqlfieldinfo.html#operator-eq">TQSqlFieldInfo</a> <a href="tqsqlindex.html#operator-eq">TQSqlIndex</a> <a href="tqsqlquery.html#operator-eq">TQSqlQuery</a> <a href="tqsqlrecord.html#operator-eq">TQSqlRecord</a> <a href="tqstrlist.html#operator-eq">TQStrList</a> <a href="tqstring.html#operator-eq">TQString</a> <a href="tqstylesheetitem.html#operator-eq">TQStyleSheetItem</a> <a href="qtranslatormessage.html#operator-eq">TQTranslatorMessage</a> <a href="ntqurl.html#operator-eq">TQUrl</a> <a href="ntqurlinfo.html#operator-eq">TQUrlInfo</a> <a href="ntquuid.html#operator-eq">TQUuid</a> <a href="tqvaluelist.html#operator-eq">TQValueList</a> <a href="tqvaluevector.html#operator-eq">TQValueVector</a> <a href="ntqvariant.html#operator-eq">TQVariant</a><li>operator==: - <a href="ntqbrush.html#operator-eq-eq">TQBrush</a> <a href="ntqcstring.html#operator-eq-eq">TQCString</a> <a href="qchar.html#operator-eq-eq">TQChar</a> <a href="ntqcolor.html#operator-eq-eq">TQColor</a> <a href="qcolorgroup.html#operator-eq-eq">TQColorGroup</a> <a href="qdate.html#operator-eq-eq">TQDate</a> <a href="ntqdatetime.html#operator-eq-eq">TQDateTime</a> <a href="ntqdir.html#operator-eq-eq">TQDir</a> <a href="tqdomimplementation.html#operator-eq-eq">TQDomImplementation</a> <a href="tqdomnamednodemap.html#operator-eq-eq">TQDomNamedNodeMap</a> <a href="tqdomnode.html#operator-eq-eq">TQDomNode</a> <a href="tqdomnodelist.html#operator-eq-eq">TQDomNodeList</a> <a href="ntqfont.html#operator-eq-eq">TQFont</a> <a href="ntqguardedptr.html#operator-eq-eq">TQGuardedPtr</a> <a href="ntqhostaddress.html#operator-eq-eq">TQHostAddress</a> <a href="tqimage.html#operator-eq-eq">TQImage</a> <a href="ntqkeysequence.html#operator-eq-eq">TQKeySequence</a> <a href="tqmapconstiterator.html#operator-eq-eq">TQMapConstIterator</a> <a href="tqmapiterator.html#operator-eq-eq">TQMapIterator</a> <a href="ntqmemarray.html#operator-eq-eq">TQMemArray</a> <a href="ntqpalette.html#operator-eq-eq">TQPalette</a> <a href="ntqpen.html#operator-eq-eq">TQPen</a> <a href="ntqpoint.html#operator-eq-eq">TQPoint</a> <a href="tqptrlist.html#operator-eq-eq">TQPtrList</a> <a href="tqptrvector.html#operator-eq-eq">TQPtrVector</a> <a href="ntqrect.html#operator-eq-eq">TQRect</a> <a href="ntqregexp.html#operator-eq-eq">TQRegExp</a> <a href="ntqregion.html#operator-eq-eq">TQRegion</a> <a href="ntqsize.html#operator-eq-eq">TQSize</a> <a href="ntqsizepolicy.html#operator-eq-eq">TQSizePolicy</a> <a href="tqsqlfield.html#operator-eq-eq">TQSqlField</a> <a href="tqsqlfieldinfo.html#operator-eq-eq">TQSqlFieldInfo</a> <a href="tqstring.html#operator-eq-eq">TQString</a> <a href="qtableselection.html#operator-eq-eq">TQTableSelection</a> <a href="qtime.html#operator-eq-eq">TQTime</a> <a href="qtranslatormessage.html#operator-eq-eq">TQTranslatorMessage</a> <a href="ntqurl.html#operator-eq-eq">TQUrl</a> <a href="ntqurlinfo.html#operator-eq-eq">TQUrlInfo</a> <a href="ntquuid.html#operator-eq-eq">TQUuid</a> <a href="tqvaluelist.html#operator-eq-eq">TQValueList</a> <a href="tqvaluelistconstiterator.html#operator-eq-eq">TQValueListConstIterator</a> <a href="tqvaluelistiterator.html#operator-eq-eq">TQValueListIterator</a> <a href="tqvaluevector.html#operator-eq-eq">TQValueVector</a> <a href="ntqvariant.html#operator-eq-eq">TQVariant</a> <a href="ntqwmatrix.html#operator-eq-eq">TQWMatrix</a><li>operator>: - <a href="ntqcstring.html#operator-gt">TQCString</a> <a href="qchar.html#operator-gt">TQChar</a> <a href="qdate.html#operator-gt">TQDate</a> <a href="ntqdatetime.html#operator-gt">TQDateTime</a> <a href="tqstring.html#operator-gt">TQString</a> <a href="qtime.html#operator-gt">TQTime</a> <a href="qtranslatormessage.html#operator-gt">TQTranslatorMessage</a> <a href="ntquuid.html#operator-gt">TQUuid</a><li>operator>=: - <a href="ntqcstring.html#operator-gt-eq">TQCString</a> <a href="qchar.html#operator-gt-eq">TQChar</a> <a href="qdate.html#operator-gt-eq">TQDate</a> <a href="ntqdatetime.html#operator-gt-eq">TQDateTime</a> <a href="tqstring.html#operator-gt-eq">TQString</a> <a href="qtime.html#operator-gt-eq">TQTime</a> <a href="qtranslatormessage.html#operator-gt-eq">TQTranslatorMessage</a><li>operator>>: - <a href="ntqbitarray.html#operator-gt-gt">TQBitArray</a> <a href="ntqbrush.html#operator-gt-gt">TQBrush</a> <a href="ntqcstring.html#operator-gt-gt">TQCString</a> <a href="ntqcolor.html#operator-gt-gt">TQColor</a> <a href="ntqcursor.html#operator-gt-gt">TQCursor</a> <a href="ntqdatastream.html#operator-gt-gt">TQDataStream</a> <a href="qdate.html#operator-gt-gt">TQDate</a> <a href="ntqdatetime.html#operator-gt-gt">TQDateTime</a> <a href="ntqdockarea.html#operator-gt-gt">TQDockArea</a> <a href="ntqfont.html#operator-gt-gt">TQFont</a> <a href="tqimage.html#operator-gt-gt">TQImage</a> <a href="ntqkeysequence.html#operator-gt-gt">TQKeySequence</a> <a href="ntqmainwindow.html#operator-gt-gt">TQMainWindow</a> <a href="tqmap.html#operator-gt-gt">TQMap</a> <a href="ntqmemarray.html#operator-gt-gt">TQMemArray</a> <a href="ntqpalette.html#operator-gt-gt">TQPalette</a> <a href="ntqpen.html#operator-gt-gt">TQPen</a> <a href="ntqpicture.html#operator-gt-gt">TQPicture</a> <a href="ntqpixmap.html#operator-gt-gt">TQPixmap</a> <a href="ntqpoint.html#operator-gt-gt">TQPoint</a> <a href="ntqpointarray.html#operator-gt-gt">TQPointArray</a> <a href="ntqrect.html#operator-gt-gt">TQRect</a> <a href="ntqregion.html#operator-gt-gt">TQRegion</a> <a href="ntqsize.html#operator-gt-gt">TQSize</a> <a href="ntqsplitter.html#operator-gt-gt">TQSplitter</a> <a href="tqstring.html#operator-gt-gt">TQString</a> <a href="tqtextstream.html#operator-gt-gt">TQTextStream</a> <a href="qtime.html#operator-gt-gt">TQTime</a> <a href="ntquuid.html#operator-gt-gt">TQUuid</a> <a href="tqvaluelist.html#operator-gt-gt">TQValueList</a> <a href="ntqwmatrix.html#operator-gt-gt">TQWMatrix</a><li>operator[]: + <a href="ntqbrush.html#operator-eq-eq">TQBrush</a> <a href="ntqcstring.html#operator-eq-eq">TQCString</a> <a href="qchar.html#operator-eq-eq">TQChar</a> <a href="ntqcolor.html#operator-eq-eq">TQColor</a> <a href="qcolorgroup.html#operator-eq-eq">TQColorGroup</a> <a href="tqdate.html#operator-eq-eq">TQDate</a> <a href="tqdatetime.html#operator-eq-eq">TQDateTime</a> <a href="ntqdir.html#operator-eq-eq">TQDir</a> <a href="tqdomimplementation.html#operator-eq-eq">TQDomImplementation</a> <a href="tqdomnamednodemap.html#operator-eq-eq">TQDomNamedNodeMap</a> <a href="tqdomnode.html#operator-eq-eq">TQDomNode</a> <a href="tqdomnodelist.html#operator-eq-eq">TQDomNodeList</a> <a href="ntqfont.html#operator-eq-eq">TQFont</a> <a href="ntqguardedptr.html#operator-eq-eq">TQGuardedPtr</a> <a href="ntqhostaddress.html#operator-eq-eq">TQHostAddress</a> <a href="tqimage.html#operator-eq-eq">TQImage</a> <a href="ntqkeysequence.html#operator-eq-eq">TQKeySequence</a> <a href="tqmapconstiterator.html#operator-eq-eq">TQMapConstIterator</a> <a href="tqmapiterator.html#operator-eq-eq">TQMapIterator</a> <a href="ntqmemarray.html#operator-eq-eq">TQMemArray</a> <a href="ntqpalette.html#operator-eq-eq">TQPalette</a> <a href="ntqpen.html#operator-eq-eq">TQPen</a> <a href="ntqpoint.html#operator-eq-eq">TQPoint</a> <a href="tqptrlist.html#operator-eq-eq">TQPtrList</a> <a href="tqptrvector.html#operator-eq-eq">TQPtrVector</a> <a href="ntqrect.html#operator-eq-eq">TQRect</a> <a href="ntqregexp.html#operator-eq-eq">TQRegExp</a> <a href="ntqregion.html#operator-eq-eq">TQRegion</a> <a href="ntqsize.html#operator-eq-eq">TQSize</a> <a href="ntqsizepolicy.html#operator-eq-eq">TQSizePolicy</a> <a href="tqsqlfield.html#operator-eq-eq">TQSqlField</a> <a href="tqsqlfieldinfo.html#operator-eq-eq">TQSqlFieldInfo</a> <a href="tqstring.html#operator-eq-eq">TQString</a> <a href="qtableselection.html#operator-eq-eq">TQTableSelection</a> <a href="tqtime.html#operator-eq-eq">TQTime</a> <a href="qtranslatormessage.html#operator-eq-eq">TQTranslatorMessage</a> <a href="ntqurl.html#operator-eq-eq">TQUrl</a> <a href="ntqurlinfo.html#operator-eq-eq">TQUrlInfo</a> <a href="ntquuid.html#operator-eq-eq">TQUuid</a> <a href="tqvaluelist.html#operator-eq-eq">TQValueList</a> <a href="tqvaluelistconstiterator.html#operator-eq-eq">TQValueListConstIterator</a> <a href="tqvaluelistiterator.html#operator-eq-eq">TQValueListIterator</a> <a href="tqvaluevector.html#operator-eq-eq">TQValueVector</a> <a href="ntqvariant.html#operator-eq-eq">TQVariant</a> <a href="ntqwmatrix.html#operator-eq-eq">TQWMatrix</a><li>operator>: + <a href="ntqcstring.html#operator-gt">TQCString</a> <a href="qchar.html#operator-gt">TQChar</a> <a href="tqdate.html#operator-gt">TQDate</a> <a href="tqdatetime.html#operator-gt">TQDateTime</a> <a href="tqstring.html#operator-gt">TQString</a> <a href="tqtime.html#operator-gt">TQTime</a> <a href="qtranslatormessage.html#operator-gt">TQTranslatorMessage</a> <a href="ntquuid.html#operator-gt">TQUuid</a><li>operator>=: + <a href="ntqcstring.html#operator-gt-eq">TQCString</a> <a href="qchar.html#operator-gt-eq">TQChar</a> <a href="tqdate.html#operator-gt-eq">TQDate</a> <a href="tqdatetime.html#operator-gt-eq">TQDateTime</a> <a href="tqstring.html#operator-gt-eq">TQString</a> <a href="tqtime.html#operator-gt-eq">TQTime</a> <a href="qtranslatormessage.html#operator-gt-eq">TQTranslatorMessage</a><li>operator>>: + <a href="ntqbitarray.html#operator-gt-gt">TQBitArray</a> <a href="ntqbrush.html#operator-gt-gt">TQBrush</a> <a href="ntqcstring.html#operator-gt-gt">TQCString</a> <a href="ntqcolor.html#operator-gt-gt">TQColor</a> <a href="ntqcursor.html#operator-gt-gt">TQCursor</a> <a href="ntqdatastream.html#operator-gt-gt">TQDataStream</a> <a href="tqdate.html#operator-gt-gt">TQDate</a> <a href="tqdatetime.html#operator-gt-gt">TQDateTime</a> <a href="ntqdockarea.html#operator-gt-gt">TQDockArea</a> <a href="ntqfont.html#operator-gt-gt">TQFont</a> <a href="tqimage.html#operator-gt-gt">TQImage</a> <a href="ntqkeysequence.html#operator-gt-gt">TQKeySequence</a> <a href="ntqmainwindow.html#operator-gt-gt">TQMainWindow</a> <a href="tqmap.html#operator-gt-gt">TQMap</a> <a href="ntqmemarray.html#operator-gt-gt">TQMemArray</a> <a href="ntqpalette.html#operator-gt-gt">TQPalette</a> <a href="ntqpen.html#operator-gt-gt">TQPen</a> <a href="ntqpicture.html#operator-gt-gt">TQPicture</a> <a href="ntqpixmap.html#operator-gt-gt">TQPixmap</a> <a href="ntqpoint.html#operator-gt-gt">TQPoint</a> <a href="ntqpointarray.html#operator-gt-gt">TQPointArray</a> <a href="ntqrect.html#operator-gt-gt">TQRect</a> <a href="ntqregion.html#operator-gt-gt">TQRegion</a> <a href="ntqsize.html#operator-gt-gt">TQSize</a> <a href="ntqsplitter.html#operator-gt-gt">TQSplitter</a> <a href="tqstring.html#operator-gt-gt">TQString</a> <a href="tqtextstream.html#operator-gt-gt">TQTextStream</a> <a href="tqtime.html#operator-gt-gt">TQTime</a> <a href="ntquuid.html#operator-gt-gt">TQUuid</a> <a href="tqvaluelist.html#operator-gt-gt">TQValueList</a> <a href="ntqwmatrix.html#operator-gt-gt">TQWMatrix</a><li>operator[]: <a href="ntqasciicache.html#operator[]">TQAsciiCache</a> <a href="ntqasciidict.html#operator[]">TQAsciiDict</a> <a href="ntqbitarray.html#operator[]">TQBitArray</a> <a href="ntqcache.html#operator[]">TQCache</a> <a href="ntqdict.html#operator[]">TQDict</a> <a href="ntqdir.html#operator[]">TQDir</a> <a href="ntqintcache.html#operator[]">TQIntCache</a> <a href="ntqintdict.html#operator[]">TQIntDict</a> <a href="ntqkeysequence.html#operator[]">TQKeySequence</a> <a href="tqmap.html#operator[]">TQMap</a> <a href="ntqmemarray.html#operator[]">TQMemArray</a> <a href="tqptrdict.html#operator[]">TQPtrDict</a> <a href="tqptrvector.html#operator[]">TQPtrVector</a> <a href="tqstring.html#operator[]">TQString</a> <a href="tqvaluelist.html#operator[]">TQValueList</a> <a href="tqvaluevector.html#operator[]">TQValueVector</a><li>operator^: <a href="ntqbitarray.html#operator^">TQBitArray</a> <a href="ntqregion.html#operator^">TQRegion</a><li>operator^=: <a href="ntqbitarray.html#operator^-eq">TQBitArray</a> <a href="ntqregion.html#operator^-eq">TQRegion</a><li>operator|: @@ -1833,7 +1833,7 @@ object: <a href="ntqbitarray.html#operator|-eq">TQBitArray</a> <a href="ntqrect.html#operator|-eq">TQRect</a> <a href="ntqregion.html#operator|-eq">TQRegion</a><li>operator~: <a href="ntqbitarray.html#operator~">TQBitArray</a><li>optimization: <a href="ntqpixmap.html#optimization">TQPixmap</a><li>order: - <a href="qdateedit.html#order">TQDateEdit</a><li>orientation: + <a href="tqdateedit.html#order">TQDateEdit</a><li>orientation: <a href="ntqdialog.html#orientation">TQDialog</a> <a href="ntqdockarea.html#orientation">TQDockArea</a> <a href="ntqdockwindow.html#orientation">TQDockWindow</a> <a href="ntqgroupbox.html#orientation">TQGroupBox</a> <a href="ntqheader.html#orientation">TQHeader</a> <a href="ntqprinter.html#orientation">TQPrinter</a> <a href="ntqscrollbar.html#orientation">TQScrollBar</a> <a href="ntqslider.html#orientation">TQSlider</a> <a href="ntqsplitter.html#orientation">TQSplitter</a> <a href="qwheelevent.html#orientation">TQWheelEvent</a><li>orientationChanged: <a href="ntqdockwindow.html#orientationChanged">TQDockWindow</a><li>origin: <a href="qgridlayout.html#origin">TQGridLayout</a><li>outputFileName: @@ -2205,7 +2205,7 @@ rBottom: <a href="tqxmlentityresolver.html#resolveEntity">TQXmlEntityResolver</a><li>resortDir: <a href="ntqfiledialog.html#resortDir">TQFileDialog</a><li>responseHeaderReceived: <a href="ntqhttp.html#responseHeaderReceived">TQHttp</a><li>restart: - <a href="ntqmovie.html#restart">TQMovie</a> <a href="qtime.html#restart">TQTime</a><li>restartCommand: + <a href="ntqmovie.html#restart">TQMovie</a> <a href="tqtime.html#restart">TQTime</a><li>restartCommand: <a href="ntqsessionmanager.html#restartCommand">TQSessionManager</a><li>restartHint: <a href="ntqsessionmanager.html#restartHint">TQSessionManager</a><li>restore: <a href="ntqpainter.html#restore">TQPainter</a><li>restoreOverrideCursor: @@ -2275,11 +2275,11 @@ sRect: <a href="tqtextedit.html#scrollToBottom">TQTextEdit</a><li>search: <a href="ntqregexp.html#search">TQRegExp</a><li>searchRev: <a href="ntqregexp.html#searchRev">TQRegExp</a><li>second: - <a href="qtime.html#second">TQTime</a><li>secsTo: - <a href="ntqdatetime.html#secsTo">TQDateTime</a> <a href="qtime.html#secsTo">TQTime</a><li>section: + <a href="tqtime.html#second">TQTime</a><li>secsTo: + <a href="tqdatetime.html#secsTo">TQDateTime</a> <a href="tqtime.html#secsTo">TQTime</a><li>section: <a href="tqstring.html#section">TQString</a><li>sectionAt: <a href="ntqheader.html#sectionAt">TQHeader</a><li>sectionFormattedText: - <a href="qdateedit.html#sectionFormattedText">TQDateEdit</a> <a href="qtimeedit.html#sectionFormattedText">TQTimeEdit</a><li>sectionHandleDoubleClicked: + <a href="tqdateedit.html#sectionFormattedText">TQDateEdit</a> <a href="tqtimeedit.html#sectionFormattedText">TQTimeEdit</a><li>sectionHandleDoubleClicked: <a href="ntqheader.html#sectionHandleDoubleClicked">TQHeader</a><li>sectionPos: <a href="ntqheader.html#sectionPos">TQHeader</a><li>sectionRect: <a href="ntqheader.html#sectionRect">TQHeader</a><li>sectionSize: @@ -2311,7 +2311,7 @@ sRect: <a href="ntqapplication.html#sendEvent">TQApplication</a><li>sendTo: <a href="qdatasource.html#sendTo">TQDataSource</a> <a href="qiodevicesource.html#sendTo">TQIODeviceSource</a><li>sender: <a href="tqobject.html#sender">TQObject</a><li>separator: - <a href="qdateedit.html#separator">TQDateEdit</a> <a href="ntqdir.html#separator">TQDir</a> <a href="qtimeedit.html#separator">TQTimeEdit</a><li>serialNumber: + <a href="tqdateedit.html#separator">TQDateEdit</a> <a href="ntqdir.html#separator">TQDir</a> <a href="tqtimeedit.html#separator">TQTimeEdit</a><li>serialNumber: <a href="qmimesource.html#serialNumber">TQMimeSource</a> <a href="ntqpalette.html#serialNumber">TQPalette</a> <a href="ntqpixmap.html#serialNumber">TQPixmap</a><li>servers: <a href="ntqdns.html#servers">TQDns</a><li>sessionId: <a href="ntqapplication.html#sessionId">TQApplication</a> <a href="ntqsessionmanager.html#sessionId">TQSessionManager</a><li>sessionKey: @@ -2347,7 +2347,7 @@ sRect: <a href="tqdomelement.html#setAttributeNode">TQDomElement</a><li>setAttributeNodeNS: <a href="tqdomelement.html#setAttributeNodeNS">TQDomElement</a><li>setAutoAdd: <a href="ntqlayout.html#setAutoAdd">TQLayout</a><li>setAutoAdvance: - <a href="qdateedit.html#setAutoAdvance">TQDateEdit</a> <a href="ntqdatetimeedit.html#setAutoAdvance">TQDateTimeEdit</a> <a href="qtimeedit.html#setAutoAdvance">TQTimeEdit</a><li>setAutoArrange: + <a href="tqdateedit.html#setAutoAdvance">TQDateEdit</a> <a href="tqdatetimeedit.html#setAutoAdvance">TQDateTimeEdit</a> <a href="tqtimeedit.html#setAutoAdvance">TQTimeEdit</a><li>setAutoArrange: <a href="tqiconview.html#setAutoArrange">TQIconView</a><li>setAutoBufferSwap: <a href="qglwidget.html#setAutoBufferSwap">TQGLWidget</a><li>setAutoClose: <a href="ntqprogressdialog.html#setAutoClose">TQProgressDialog</a><li>setAutoCompletion: @@ -2473,10 +2473,10 @@ sRect: <a href="ntqclipboard.html#setData">TQClipboard</a> <a href="qcustomevent.html#setData">TQCustomEvent</a> <a href="tqdomcharacterdata.html#setData">TQDomCharacterData</a> <a href="tqdomprocessinginstruction.html#setData">TQDomProcessingInstruction</a> <a href="tqicondragitem.html#setData">TQIconDragItem</a> <a href="qmimesourcefactory.html#setData">TQMimeSourceFactory</a> <a href="ntqpicture.html#setData">TQPicture</a> <a href="tqxmlinputsource.html#setData">TQXmlInputSource</a><li>setDatabaseName: <a href="tqsqldatabase.html#setDatabaseName">TQSqlDatabase</a><li>setDatabaseText: <a href="tqsqlerror.html#setDatabaseText">TQSqlError</a><li>setDate: - <a href="qdateedit.html#setDate">TQDateEdit</a> <a href="ntqdatetime.html#setDate">TQDateTime</a><li>setDateFormat: + <a href="tqdateedit.html#setDate">TQDateEdit</a> <a href="tqdatetime.html#setDate">TQDateTime</a><li>setDateFormat: <a href="tqdatatable.html#setDateFormat">TQDataTable</a><li>setDateTime: - <a href="ntqdatetimeedit.html#setDateTime">TQDateTimeEdit</a><li>setDay: - <a href="qdateedit.html#setDay">TQDateEdit</a><li>setDecMode: + <a href="tqdatetimeedit.html#setDateTime">TQDateTimeEdit</a><li>setDay: + <a href="tqdateedit.html#setDay">TQDateEdit</a><li>setDecMode: <a href="ntqlcdnumber.html#setDecMode">TQLCDNumber</a><li>setDecimals: <a href="qdoublevalidator.html#setDecimals">TQDoubleValidator</a><li>setDeclHandler: <a href="tqxmlreader.html#setDeclHandler">TQXmlReader</a><li>setDecodingFunction: @@ -2502,7 +2502,7 @@ sRect: <a href="qboxlayout.html#setDirection">TQBoxLayout</a><li>setDisabled: <a href="ntqaction.html#setDisabled">TQAction</a> <a href="ntqpalette.html#setDisabled">TQPalette</a> <a href="tqwidget.html#setDisabled">TQWidget</a><li>setDiscardCommand: <a href="ntqsessionmanager.html#setDiscardCommand">TQSessionManager</a><li>setDisplay: - <a href="qtimeedit.html#setDisplay">TQTimeEdit</a><li>setDisplayMode: + <a href="tqtimeedit.html#setDisplay">TQTimeEdit</a><li>setDisplayMode: <a href="tqstylesheetitem.html#setDisplayMode">TQStyleSheetItem</a><li>setDocName: <a href="ntqprinter.html#setDocName">TQPrinter</a><li>setDockEnabled: <a href="ntqmainwindow.html#setDockEnabled">TQMainWindow</a><li>setDockMenuEnabled: @@ -2597,7 +2597,7 @@ sRect: <a href="tqiconview.html#setGridY">TQIconView</a><li>setGroup: <a href="ntqurlinfo.html#setGroup">TQUrlInfo</a><li>setHBarGeometry: <a href="ntqscrollview.html#setHBarGeometry">TQScrollView</a><li>setHMS: - <a href="qtime.html#setHMS">TQTime</a><li>setHScrollBarMode: + <a href="tqtime.html#setHMS">TQTime</a><li>setHScrollBarMode: <a href="ntqscrollview.html#setHScrollBarMode">TQScrollView</a><li>setHandleWidth: <a href="ntqsplitter.html#setHandleWidth">TQSplitter</a><li>setHeight: <a href="qlistviewitem.html#setHeight">TQListViewItem</a> <a href="ntqrect.html#setHeight">TQRect</a> <a href="ntqsize.html#setHeight">TQSize</a><li>setHeightForWidth: @@ -2611,7 +2611,7 @@ sRect: <a href="ntqdockwindow.html#setHorizontallyStretchable">TQDockWindow</a><li>setHost: <a href="ntqhttp.html#setHost">TQHttp</a> <a href="ntqurl.html#setHost">TQUrl</a><li>setHostName: <a href="tqsqldatabase.html#setHostName">TQSqlDatabase</a><li>setHour: - <a href="qtimeedit.html#setHour">TQTimeEdit</a><li>setHsv: + <a href="tqtimeedit.html#setHour">TQTimeEdit</a><li>setHsv: <a href="ntqcolor.html#setHsv">TQColor</a><li>setIODevice: <a href="tqimageio.html#setIODevice">TQImageIO</a><li>setIcon: <a href="ntqmessagebox.html#setIcon">TQMessageBox</a> <a href="tqwidget.html#setIcon">TQWidget</a><li>setIconPixmap: @@ -2687,7 +2687,7 @@ sRect: <a href="tqiconview.html#setMaxItemWidth">TQIconView</a><li>setMaxLength: <a href="ntqlineedit.html#setMaxLength">TQLineEdit</a><li>setMaxLogLines: <a href="tqtextedit.html#setMaxLogLines">TQTextEdit</a><li>setMaxValue: - <a href="qdateedit.html#setMaxValue">TQDateEdit</a> <a href="ntqdial.html#setMaxValue">TQDial</a> <a href="ntqrangecontrol.html#setMaxValue">TQRangeControl</a> <a href="ntqscrollbar.html#setMaxValue">TQScrollBar</a> <a href="ntqslider.html#setMaxValue">TQSlider</a> <a href="ntqspinbox.html#setMaxValue">TQSpinBox</a> <a href="qtimeedit.html#setMaxValue">TQTimeEdit</a><li>setMaximumHeight: + <a href="tqdateedit.html#setMaxValue">TQDateEdit</a> <a href="ntqdial.html#setMaxValue">TQDial</a> <a href="ntqrangecontrol.html#setMaxValue">TQRangeControl</a> <a href="ntqscrollbar.html#setMaxValue">TQScrollBar</a> <a href="ntqslider.html#setMaxValue">TQSlider</a> <a href="ntqspinbox.html#setMaxValue">TQSpinBox</a> <a href="tqtimeedit.html#setMaxValue">TQTimeEdit</a><li>setMaximumHeight: <a href="tqwidget.html#setMaximumHeight">TQWidget</a><li>setMaximumSize: <a href="tqwidget.html#setMaximumSize">TQWidget</a><li>setMaximumWidth: <a href="tqwidget.html#setMaximumWidth">TQWidget</a><li>setMenuBar: @@ -2697,17 +2697,17 @@ sRect: <a href="ntqframe.html#setMidLineWidth">TQFrame</a><li>setMimeSourceFactory: <a href="tqtextedit.html#setMimeSourceFactory">TQTextEdit</a><li>setMinMax: <a href="ntqprinter.html#setMinMax">TQPrinter</a><li>setMinValue: - <a href="qdateedit.html#setMinValue">TQDateEdit</a> <a href="ntqdial.html#setMinValue">TQDial</a> <a href="ntqrangecontrol.html#setMinValue">TQRangeControl</a> <a href="ntqscrollbar.html#setMinValue">TQScrollBar</a> <a href="ntqslider.html#setMinValue">TQSlider</a> <a href="ntqspinbox.html#setMinValue">TQSpinBox</a> <a href="qtimeedit.html#setMinValue">TQTimeEdit</a><li>setMinimal: + <a href="tqdateedit.html#setMinValue">TQDateEdit</a> <a href="ntqdial.html#setMinValue">TQDial</a> <a href="ntqrangecontrol.html#setMinValue">TQRangeControl</a> <a href="ntqscrollbar.html#setMinValue">TQScrollBar</a> <a href="ntqslider.html#setMinValue">TQSlider</a> <a href="ntqspinbox.html#setMinValue">TQSpinBox</a> <a href="tqtimeedit.html#setMinValue">TQTimeEdit</a><li>setMinimal: <a href="ntqregexp.html#setMinimal">TQRegExp</a><li>setMinimumDuration: <a href="ntqprogressdialog.html#setMinimumDuration">TQProgressDialog</a><li>setMinimumHeight: <a href="tqwidget.html#setMinimumHeight">TQWidget</a><li>setMinimumSize: <a href="tqwidget.html#setMinimumSize">TQWidget</a><li>setMinimumWidth: <a href="tqwidget.html#setMinimumWidth">TQWidget</a><li>setMinute: - <a href="qtimeedit.html#setMinute">TQTimeEdit</a><li>setModal: + <a href="tqtimeedit.html#setMinute">TQTimeEdit</a><li>setModal: <a href="ntqdialog.html#setModal">TQDialog</a><li>setMode: <a href="ntqfiledialog.html#setMode">TQFileDialog</a> <a href="ntqiodevice.html#setMode">TQIODevice</a> <a href="ntqlcdnumber.html#setMode">TQLCDNumber</a> <a href="tqsqlcursor.html#setMode">TQSqlCursor</a><li>setModified: <a href="tqtextedit.html#setModified">TQTextEdit</a><li>setMonth: - <a href="qdateedit.html#setMonth">TQDateEdit</a><li>setMouseTracking: + <a href="tqdateedit.html#setMonth">TQDateEdit</a><li>setMouseTracking: <a href="tqwidget.html#setMouseTracking">TQWidget</a><li>setMovie: <a href="ntqlabel.html#setMovie">TQLabel</a><li>setMovingEnabled: <a href="ntqdockwindow.html#setMovingEnabled">TQDockWindow</a> <a href="ntqheader.html#setMovingEnabled">TQHeader</a><li>setMultiLinesEnabled: @@ -2743,7 +2743,7 @@ sRect: <a href="ntqpixmap.html#setOptimization">TQPixmap</a><li>setOption: <a href="qglformat.html#setOption">TQGLFormat</a><li>setOptionEnabled: <a href="ntqprinter.html#setOptionEnabled">TQPrinter</a><li>setOrder: - <a href="qdateedit.html#setOrder">TQDateEdit</a><li>setOrientation: + <a href="tqdateedit.html#setOrder">TQDateEdit</a><li>setOrientation: <a href="ntqdialog.html#setOrientation">TQDialog</a> <a href="ntqdockwindow.html#setOrientation">TQDockWindow</a> <a href="ntqgroupbox.html#setOrientation">TQGroupBox</a> <a href="ntqheader.html#setOrientation">TQHeader</a> <a href="ntqprinter.html#setOrientation">TQPrinter</a> <a href="ntqscrollbar.html#setOrientation">TQScrollBar</a> <a href="ntqslider.html#setOrientation">TQSlider</a> <a href="ntqsplitter.html#setOrientation">TQSplitter</a><li>setOrigin: <a href="qgridlayout.html#setOrigin">TQGridLayout</a><li>setOutputFileName: <a href="ntqprinter.html#setOutputFileName">TQPrinter</a><li>setOutputToFile: @@ -2800,7 +2800,7 @@ sRect: <a href="tqimageio.html#setQuality">TQImageIO</a><li>setQuery: <a href="tqsqlresult.html#setQuery">TQSqlResult</a> <a href="ntqurl.html#setQuery">TQUrl</a><li>setRadioButtonExclusive: <a href="ntqbuttongroup.html#setRadioButtonExclusive">TQButtonGroup</a><li>setRange: - <a href="qdateedit.html#setRange">TQDateEdit</a> <a href="qdoublevalidator.html#setRange">TQDoubleValidator</a> <a href="qintvalidator.html#setRange">TQIntValidator</a> <a href="ntqrangecontrol.html#setRange">TQRangeControl</a> <a href="ntqrangecontrol.html#setRange">TQSlider</a> <a href="qtimeedit.html#setRange">TQTimeEdit</a><li>setRasterOp: + <a href="tqdateedit.html#setRange">TQDateEdit</a> <a href="qdoublevalidator.html#setRange">TQDoubleValidator</a> <a href="qintvalidator.html#setRange">TQIntValidator</a> <a href="ntqrangecontrol.html#setRange">TQRangeControl</a> <a href="ntqrangecontrol.html#setRange">TQSlider</a> <a href="tqtimeedit.html#setRange">TQTimeEdit</a><li>setRasterOp: <a href="ntqpainter.html#setRasterOp">TQPainter</a><li>setRawArg: <a href="qnetworkoperation.html#setRawArg">TQNetworkOperation</a><li>setRawData: <a href="ntqmemarray.html#setRawData">TQMemArray</a><li>setRawMode: @@ -2843,7 +2843,7 @@ sRect: <a href="ntqsplitter.html#setRubberband">TQSplitter</a><li>setScaledContents: <a href="ntqlabel.html#setScaledContents">TQLabel</a><li>setScrollBarsEnabled: <a href="ntqworkspace.html#setScrollBarsEnabled">TQWorkspace</a><li>setSecond: - <a href="qtimeedit.html#setSecond">TQTimeEdit</a><li>setSegmentStyle: + <a href="tqtimeedit.html#setSecond">TQTimeEdit</a><li>setSegmentStyle: <a href="ntqlcdnumber.html#setSegmentStyle">TQLCDNumber</a><li>setSelect: <a href="tqsqlresult.html#setSelect">TQSqlResult</a><li>setSelectable: <a href="tqiconviewitem.html#setSelectable">TQIconViewItem</a> <a href="qlistboxitem.html#setSelectable">TQListBoxItem</a> <a href="qlistviewitem.html#setSelectable">TQListViewItem</a><li>setSelected: @@ -2855,7 +2855,7 @@ sRect: <a href="tqiconview.html#setSelectionMode">TQIconView</a> <a href="ntqlistbox.html#setSelectionMode">TQListBox</a> <a href="ntqlistview.html#setSelectionMode">TQListView</a> <a href="ntqtable.html#setSelectionMode">TQTable</a><li>setSelfNesting: <a href="tqstylesheetitem.html#setSelfNesting">TQStyleSheetItem</a><li>setSendBufferSize: <a href="ntqsocketdevice.html#setSendBufferSize">TQSocketDevice</a><li>setSeparator: - <a href="qdateedit.html#setSeparator">TQDateEdit</a> <a href="qtimeedit.html#setSeparator">TQTimeEdit</a><li>setSequence: + <a href="tqdateedit.html#setSeparator">TQDateEdit</a> <a href="tqtimeedit.html#setSeparator">TQTimeEdit</a><li>setSequence: <a href="tqcanvassprite.html#setSequence">TQCanvasSprite</a><li>setShape: <a href="ntqcursor.html#setShape">TQCursor</a> <a href="ntqtabbar.html#setShape">TQTabBar</a><li>setShowGrid: <a href="ntqtable.html#setShowGrid">TQTable</a><li>setShowHiddenFiles: @@ -2932,8 +2932,8 @@ sRect: <a href="ntqslider.html#setTickmarks">TQSlider</a><li>setTile: <a href="tqcanvas.html#setTile">TQCanvas</a><li>setTiles: <a href="tqcanvas.html#setTiles">TQCanvas</a><li>setTime: - <a href="ntqdatetime.html#setTime">TQDateTime</a> <a href="qtimeedit.html#setTime">TQTimeEdit</a><li>setTime_t: - <a href="ntqdatetime.html#setTime_t">TQDateTime</a><li>setTitle: + <a href="tqdatetime.html#setTime">TQDateTime</a> <a href="tqtimeedit.html#setTime">TQTimeEdit</a><li>setTime_t: + <a href="tqdatetime.html#setTime_t">TQDateTime</a><li>setTitle: <a href="ntqgroupbox.html#setTitle">TQGroupBox</a> <a href="ntqwizard.html#setTitle">TQWizard</a><li>setTitleFont: <a href="ntqwizard.html#setTitleFont">TQWizard</a><li>setToggleAction: <a href="ntqaction.html#setToggleAction">TQAction</a><li>setToggleButton: @@ -3018,9 +3018,9 @@ sRect: <a href="tqcanvasitem.html#setX">TQCanvasItem</a> <a href="ntqpoint.html#setX">TQPoint</a> <a href="ntqrect.html#setX">TQRect</a><li>setXVelocity: <a href="tqcanvasitem.html#setXVelocity">TQCanvasItem</a><li>setY: <a href="tqcanvasitem.html#setY">TQCanvasItem</a> <a href="ntqpoint.html#setY">TQPoint</a> <a href="ntqrect.html#setY">TQRect</a><li>setYMD: - <a href="qdate.html#setYMD">TQDate</a><li>setYVelocity: + <a href="tqdate.html#setYMD">TQDate</a><li>setYVelocity: <a href="tqcanvasitem.html#setYVelocity">TQCanvasItem</a><li>setYear: - <a href="qdateedit.html#setYear">TQDateEdit</a><li>setZ: + <a href="tqdateedit.html#setYear">TQDateEdit</a><li>setZ: <a href="tqcanvasitem.html#setZ">TQCanvasItem</a><li>setf: <a href="tqtextstream.html#setf">TQTextStream</a><li>setup: <a href="qlistviewitem.html#setup">TQListViewItem</a> <a href="ntqprinter.html#setup">TQPrinter</a><li>shadow: @@ -3028,8 +3028,8 @@ sRect: <a href="ntqcursor.html#shape">TQCursor</a> <a href="ntqtabbar.html#shape">TQTabBar</a><li>shear: <a href="ntqpainter.html#shear">TQPainter</a> <a href="ntqwmatrix.html#shear">TQWMatrix</a><li>shell: <a href="qmotifdialog.html#shell">TQMotifDialog</a><li>shortDayName: - <a href="qdate.html#shortDayName">TQDate</a><li>shortMonthName: - <a href="qdate.html#shortMonthName">TQDate</a><li>shortcutKey: + <a href="tqdate.html#shortDayName">TQDate</a><li>shortMonthName: + <a href="tqdate.html#shortMonthName">TQDate</a><li>shortcutKey: <a href="ntqaccel.html#shortcutKey">TQAccel</a><li>show: <a href="tqcanvasitem.html#show">TQCanvasItem</a> <a href="ntqdialog.html#show">TQDialog</a> <a href="ntqmenubar.html#show">TQMenuBar</a> <a href="tqwidget.html#show">TQWidget</a><li>showColumn: <a href="ntqtable.html#showColumn">TQTable</a><li>showDockMenu: @@ -3051,7 +3051,7 @@ sRect: <a href="tqobject.html#signalsBlocked">TQObject</a><li>simpleHeuristicNameMatch: <a href="tqtextcodec.html#simpleHeuristicNameMatch">TQTextCodec</a><li>simplifyWhiteSpace: <a href="ntqcstring.html#simplifyWhiteSpace">TQCString</a> <a href="tqstring.html#simplifyWhiteSpace">TQString</a><li>singleShot: - <a href="ntqtimer.html#singleShot">TQTimer</a><li>size: + <a href="tqtimer.html#singleShot">TQTimer</a><li>size: <a href="ntqasciicache.html#size">TQAsciiCache</a> <a href="ntqasciidict.html#size">TQAsciiDict</a> <a href="ntqbitarray.html#size">TQBitArray</a> <a href="ntqcache.html#size">TQCache</a> <a href="tqcanvas.html#size">TQCanvas</a> <a href="tqcanvasrectangle.html#size">TQCanvasRectangle</a> <a href="ntqdict.html#size">TQDict</a> <a href="ntqfile.html#size">TQFile</a> <a href="ntqfileinfo.html#size">TQFileInfo</a> <a href="ntqfontmetrics.html#size">TQFontMetrics</a> <a href="ntqglcolormap.html#size">TQGLColormap</a> <a href="ntqiodevice.html#size">TQIODevice</a> <a href="tqiconviewitem.html#size">TQIconViewItem</a> <a href="tqimage.html#size">TQImage</a> <a href="ntqintcache.html#size">TQIntCache</a> <a href="ntqintdict.html#size">TQIntDict</a> <a href="tqmap.html#size">TQMap</a> <a href="ntqmemarray.html#size">TQMemArray</a> <a href="ntqpicture.html#size">TQPicture</a> <a href="ntqpixmap.html#size">TQPixmap</a> <a href="tqptrdict.html#size">TQPtrDict</a> <a href="tqptrvector.html#size">TQPtrVector</a> <a href="ntqrect.html#size">TQRect</a> <a href="qresizeevent.html#size">TQResizeEvent</a> <a href="ntqsocket.html#size">TQSocket</a> <a href="tqsqlquery.html#size">TQSqlQuery</a> <a href="tqsqlresult.html#size">TQSqlResult</a> <a href="ntqurlinfo.html#size">TQUrlInfo</a> <a href="tqvaluelist.html#size">TQValueList</a> <a href="tqvaluevector.html#size">TQValueVector</a> <a href="tqwidget.html#size">TQWidget</a><li>sizeChange: <a href="ntqheader.html#sizeChange">TQHeader</a><li>sizeFromContents: <a href="tqstyle.html#sizeFromContents">TQStyle</a><li>sizeHint: @@ -3104,7 +3104,7 @@ sRect: <a href="tqwidget.html#stackUnder">TQWidget</a><li>standardIcon: <a href="ntqmessagebox.html#standardIcon">TQMessageBox</a><li>standardSizes: <a href="ntqfontdatabase.html#standardSizes">TQFontDatabase</a><li>start: - <a href="ntqnetworkprotocol.html#start">TQNetworkProtocol</a> <a href="ntqprocess.html#start">TQProcess</a> <a href="ntqthread.html#start">TQThread</a> <a href="qtime.html#start">TQTime</a> <a href="ntqtimer.html#start">TQTimer</a> <a href="ntqurloperator.html#start">TQUrlOperator</a><li>startCDATA: + <a href="ntqnetworkprotocol.html#start">TQNetworkProtocol</a> <a href="ntqprocess.html#start">TQProcess</a> <a href="ntqthread.html#start">TQThread</a> <a href="tqtime.html#start">TQTime</a> <a href="tqtimer.html#start">TQTimer</a> <a href="ntqurloperator.html#start">TQUrlOperator</a><li>startCDATA: <a href="tqxmllexicalhandler.html#startCDATA">TQXmlLexicalHandler</a><li>startDTD: <a href="tqxmllexicalhandler.html#startDTD">TQXmlLexicalHandler</a><li>startDocument: <a href="tqxmlcontenthandler.html#startDocument">TQXmlContentHandler</a><li>startDrag: @@ -3136,7 +3136,7 @@ sRect: <a href="ntqspinbox.html#stepUp">TQSpinBox</a><li>steps: <a href="ntqmovie.html#steps">TQMovie</a><li>stereo: <a href="qglformat.html#stereo">TQGLFormat</a><li>stop: - <a href="ntqnetworkprotocol.html#stop">TQNetworkProtocol</a> <a href="ntqsound.html#stop">TQSound</a> <a href="ntqtimer.html#stop">TQTimer</a> <a href="ntqurloperator.html#stop">TQUrlOperator</a><li>stored: + <a href="ntqnetworkprotocol.html#stop">TQNetworkProtocol</a> <a href="ntqsound.html#stop">TQSound</a> <a href="tqtimer.html#stop">TQTimer</a> <a href="ntqurloperator.html#stop">TQUrlOperator</a><li>stored: <a href="qmetaproperty.html#stored">TQMetaProperty</a><li>streamAsFile: <a href="qnpinstance.html#streamAsFile">TQNPInstance</a><li>streamDestroyed: <a href="qnpinstance.html#streamDestroyed">TQNPInstance</a><li>stretch: @@ -3234,12 +3234,12 @@ tab: <a href="tqcanvas.html#tileWidth">TQCanvas</a><li>tilesHorizontally: <a href="tqcanvas.html#tilesHorizontally">TQCanvas</a><li>tilesVertically: <a href="tqcanvas.html#tilesVertically">TQCanvas</a><li>time: - <a href="ntqdatetime.html#time">TQDateTime</a> <a href="qtimeedit.html#time">TQTimeEdit</a><li>timeEdit: - <a href="ntqdatetimeedit.html#timeEdit">TQDateTimeEdit</a><li>timeToWait: + <a href="tqdatetime.html#time">TQDateTime</a> <a href="tqtimeedit.html#time">TQTimeEdit</a><li>timeEdit: + <a href="tqdatetimeedit.html#timeEdit">TQDateTimeEdit</a><li>timeToWait: <a href="ntqeventloop.html#timeToWait">TQEventLoop</a><li>timeout: - <a href="ntqtimer.html#timeout">TQTimer</a><li>timerEvent: + <a href="tqtimer.html#timeout">TQTimer</a><li>timerEvent: <a href="tqobject.html#timerEvent">TQObject</a><li>timerId: - <a href="ntqtimer.html#timerId">TQTimer</a> <a href="qtimerevent.html#timerId">TQTimerEvent</a><li>tip: + <a href="tqtimer.html#timerId">TQTimer</a> <a href="tqtimerevent.html#timerId">TQTimerEvent</a><li>tip: <a href="ntqtooltip.html#tip">TQToolTip</a><li>title: <a href="ntqgroupbox.html#title">TQGroupBox</a> <a href="ntqwizard.html#title">TQWizard</a><li>titleFont: <a href="ntqwizard.html#titleFont">TQWizard</a><li>toAttr: @@ -3294,11 +3294,11 @@ tab: <a href="ntqcstring.html#toShort">TQCString</a> <a href="ntqlocale.html#toShort">TQLocale</a> <a href="tqstring.html#toShort">TQString</a><li>toSize: <a href="ntqvariant.html#toSize">TQVariant</a><li>toSizePolicy: <a href="ntqvariant.html#toSizePolicy">TQVariant</a><li>toString: - <a href="qdate.html#toString">TQDate</a> <a href="ntqdatetime.html#toString">TQDateTime</a> <a href="tqdomdocument.html#toString">TQDomDocument</a> <a href="ntqfont.html#toString">TQFont</a> <a href="ntqhostaddress.html#toString">TQHostAddress</a> <a href="qhttpheader.html#toString">TQHttpHeader</a> <a href="ntqlocale.html#toString">TQLocale</a> <a href="tqsqlcursor.html#toString">TQSqlCursor</a> <a href="tqsqlrecord.html#toString">TQSqlRecord</a> <a href="qtime.html#toString">TQTime</a> <a href="ntqurl.html#toString">TQUrl</a> <a href="ntquuid.html#toString">TQUuid</a> <a href="ntqvariant.html#toString">TQVariant</a><li>toStringList: + <a href="tqdate.html#toString">TQDate</a> <a href="tqdatetime.html#toString">TQDateTime</a> <a href="tqdomdocument.html#toString">TQDomDocument</a> <a href="ntqfont.html#toString">TQFont</a> <a href="ntqhostaddress.html#toString">TQHostAddress</a> <a href="qhttpheader.html#toString">TQHttpHeader</a> <a href="ntqlocale.html#toString">TQLocale</a> <a href="tqsqlcursor.html#toString">TQSqlCursor</a> <a href="tqsqlrecord.html#toString">TQSqlRecord</a> <a href="tqtime.html#toString">TQTime</a> <a href="ntqurl.html#toString">TQUrl</a> <a href="ntquuid.html#toString">TQUuid</a> <a href="ntqvariant.html#toString">TQVariant</a><li>toStringList: <a href="tqsqlrecord.html#toStringList">TQSqlRecord</a> <a href="ntqvariant.html#toStringList">TQVariant</a><li>toText: <a href="tqdomnode.html#toText">TQDomNode</a><li>toTime: <a href="ntqvariant.html#toTime">TQVariant</a><li>toTime_t: - <a href="ntqdatetime.html#toTime_t">TQDateTime</a><li>toUInt: + <a href="tqdatetime.html#toTime_t">TQDateTime</a><li>toUInt: <a href="ntqcstring.html#toUInt">TQCString</a> <a href="ntqlocale.html#toUInt">TQLocale</a> <a href="tqstring.html#toUInt">TQString</a> <a href="ntqvariant.html#toUInt">TQVariant</a><li>toULong: <a href="ntqcstring.html#toULong">TQCString</a> <a href="ntqlocale.html#toULong">TQLocale</a> <a href="tqstring.html#toULong">TQString</a><li>toULongLong: <a href="ntqlocale.html#toULongLong">TQLocale</a> <a href="tqstring.html#toULongLong">TQString</a> <a href="ntqvariant.html#toULongLong">TQVariant</a><li>toUShort: @@ -3379,7 +3379,7 @@ ucs2: <a href="tqcanvas.html#update">TQCanvas</a> <a href="tqcanvasitem.html#update">TQCanvasItem</a> <a href="tqdatabrowser.html#update">TQDataBrowser</a> <a href="tqsqlcursor.html#update">TQSqlCursor</a> <a href="tqwidget.html#update">TQWidget</a><li>updateAccessibility: <a href="ntqaccessible.html#updateAccessibility">TQAccessible</a><li>updateBoundary: <a href="tqdatabrowser.html#updateBoundary">TQDataBrowser</a><li>updateButtons: - <a href="qdateedit.html#updateButtons">TQDateEdit</a><li>updateCell: + <a href="tqdateedit.html#updateButtons">TQDateEdit</a><li>updateCell: <a href="ntqgridview.html#updateCell">TQGridView</a> <a href="ntqtable.html#updateCell">TQTable</a><li>updateContents: <a href="ntqlistview.html#updateContents">TQListView</a> <a href="ntqscrollview.html#updateContents">TQScrollView</a><li>updateCurrent: <a href="tqdatabrowser.html#updateCurrent">TQDataBrowser</a> <a href="tqdatatable.html#updateCurrent">TQDataTable</a><li>updateDisplay: @@ -3416,7 +3416,7 @@ vScrollBarMode: <a href="ntqcombobox.html#validator">TQComboBox</a> <a href="ntqlineedit.html#validator">TQLineEdit</a> <a href="ntqspinbox.html#validator">TQSpinBox</a><li>value: <a href="tqdatatable.html#value">TQDataTable</a> <a href="ntqdial.html#value">TQDial</a> <a href="tqdomattr.html#value">TQDomAttr</a> <a href="qhttpheader.html#value">TQHttpHeader</a> <a href="qhttpheader.html#value">TQHttpRequestHeader</a> <a href="ntqlcdnumber.html#value">TQLCDNumber</a> <a href="ntqrangecontrol.html#value">TQRangeControl</a> <a href="ntqscrollbar.html#value">TQScrollBar</a> <a href="ntqsignal.html#value">TQSignal</a> <a href="ntqslider.html#value">TQSlider</a> <a href="ntqspinbox.html#value">TQSpinBox</a> <a href="tqsqlfield.html#value">TQSqlField</a> <a href="tqsqlquery.html#value">TQSqlQuery</a> <a href="tqsqlrecord.html#value">TQSqlRecord</a> <a href="tqxmlattributes.html#value">TQXmlAttributes</a><li>valueChange: <a href="ntqdial.html#valueChange">TQDial</a> <a href="ntqrangecontrol.html#valueChange">TQRangeControl</a> <a href="ntqslider.html#valueChange">TQSlider</a> <a href="ntqspinbox.html#valueChange">TQSpinBox</a><li>valueChanged: - <a href="qdateedit.html#valueChanged">TQDateEdit</a> <a href="ntqdatetimeedit.html#valueChanged">TQDateTimeEdit</a> <a href="ntqdial.html#valueChanged">TQDial</a> <a href="ntqscrollbar.html#valueChanged">TQScrollBar</a> <a href="ntqslider.html#valueChanged">TQSlider</a> <a href="ntqspinbox.html#valueChanged">TQSpinBox</a> <a href="ntqtable.html#valueChanged">TQTable</a> <a href="qtimeedit.html#valueChanged">TQTimeEdit</a><li>valueFromPosition: + <a href="tqdateedit.html#valueChanged">TQDateEdit</a> <a href="tqdatetimeedit.html#valueChanged">TQDateTimeEdit</a> <a href="ntqdial.html#valueChanged">TQDial</a> <a href="ntqscrollbar.html#valueChanged">TQScrollBar</a> <a href="ntqslider.html#valueChanged">TQSlider</a> <a href="ntqspinbox.html#valueChanged">TQSpinBox</a> <a href="ntqtable.html#valueChanged">TQTable</a> <a href="tqtimeedit.html#valueChanged">TQTimeEdit</a><li>valueFromPosition: <a href="ntqrangecontrol.html#valueFromPosition">TQRangeControl</a><li>valueToKey: <a href="qmetaproperty.html#valueToKey">TQMetaProperty</a><li>valueToKeys: <a href="qmetaproperty.html#valueToKeys">TQMetaProperty</a><li>values: @@ -3452,7 +3452,7 @@ wait: <a href="ntqapplication.html#wakeUpGuiThread">TQApplication</a><li>warning: <a href="ntqmessagebox.html#warning">TQMessageBox</a> <a href="tqxmlerrorhandler.html#warning">TQXmlErrorHandler</a><li>wasCanceled: <a href="ntqprogressdialog.html#wasCanceled">TQProgressDialog</a><li>weekNumber: - <a href="qdate.html#weekNumber">TQDate</a><li>weight: + <a href="tqdate.html#weekNumber">TQDate</a><li>weight: <a href="ntqfont.html#weight">TQFont</a> <a href="ntqfontdatabase.html#weight">TQFontDatabase</a> <a href="ntqfontinfo.html#weight">TQFontInfo</a><li>whatsThis: <a href="ntqaccel.html#whatsThis">TQAccel</a> <a href="ntqaction.html#whatsThis">TQAction</a> <a href="ntqmainwindow.html#whatsThis">TQMainWindow</a> <a href="ntqmenudata.html#whatsThis">TQMenuData</a> <a href="ntqmenudata.html#whatsThis">TQPopupMenu</a> <a href="tqwidgetplugin.html#whatsThis">TQWidgetPlugin</a><li>whatsThisButton: <a href="ntqwhatsthis.html#whatsThisButton">TQWhatsThis</a><li>wheelEvent: @@ -3535,7 +3535,7 @@ y: <a href="tqcanvasitem.html#y">TQCanvasItem</a> <a href="qcontextmenuevent.html#y">TQContextMenuEvent</a> <a href="tqiconviewitem.html#y">TQIconViewItem</a> <a href="qmouseevent.html#y">TQMouseEvent</a> <a href="ntqpoint.html#y">TQPoint</a> <a href="ntqrect.html#y">TQRect</a> <a href="qtabletevent.html#y">TQTabletEvent</a> <a href="qwheelevent.html#y">TQWheelEvent</a> <a href="tqwidget.html#y">TQWidget</a><li>yTilt: <a href="qtabletevent.html#yTilt">TQTabletEvent</a><li>yVelocity: <a href="tqcanvasitem.html#yVelocity">TQCanvasItem</a><li>year: - <a href="qdate.html#year">TQDate</a><li><a name="z"></a> + <a href="tqdate.html#year">TQDate</a><li><a name="z"></a> z: <a href="tqcanvasitem.html#z">TQCanvasItem</a><li>zoomIn: <a href="tqtextedit.html#zoomIn">TQTextEdit</a><li>zoomOut: diff --git a/doc/html/headerfilesynonyms b/doc/html/headerfilesynonyms index 9f0a59c86..c6040d9c3 100644 --- a/doc/html/headerfilesynonyms +++ b/doc/html/headerfilesynonyms @@ -24,11 +24,11 @@ tqcanvasline.h tqcanvas.h tqcanvasellipse.h tqcanvas.h tqcanvastext.h tqcanvas.h qbytearray.h ntqcstring.h -qdate.h ntqdatetime.h -qtime.h ntqdatetime.h -qdatetimeeditbase.h ntqdatetimeedit.h -qdateedit.h ntqdatetimeedit.h -qtimeedit.h ntqdatetimeedit.h +tqdate.h tqdatetime.h +tqtime.h tqdatetime.h +tqdatetimeeditbase.h tqdatetimeedit.h +tqdateedit.h tqdatetimeedit.h +tqtimeedit.h tqdatetimeedit.h qdictiterator.h ntqdict.h tqdomimplementation.h tqdom.h tqdomnode.h tqdom.h @@ -52,7 +52,7 @@ tqtextdrag.h ntqdragobject.h tqimagedrag.h ntqdragobject.h quridrag.h ntqdragobject.h qcolordrag.h ntqdragobject.h -qtimerevent.h ntqevent.h +tqtimerevent.h ntqevent.h qmouseevent.h ntqevent.h qwheelevent.h ntqevent.h qtabletevent.h ntqevent.h diff --git a/doc/html/headers.html b/doc/html/headers.html index 230868ee5..94af47d1e 100644 --- a/doc/html/headers.html +++ b/doc/html/headers.html @@ -66,8 +66,8 @@ body { background: #ffffff; color: black; } <li><a href="qdatastream-h.html">ntqdatastream.h</a> <li><a href="tqdatatable-h.html">tqdatatable.h</a> <li><a href="tqdataview-h.html">tqdataview.h</a> -<li><a href="qdatetime-h.html">ntqdatetime.h</a> -<li><a href="qdatetimeedit-h.html">ntqdatetimeedit.h</a> +<li><a href="tqdatetime-h.html">tqdatetime.h</a> +<li><a href="tqdatetimeedit-h.html">tqdatetimeedit.h</a> <li><a href="qdeepcopy-h.html">ntqdeepcopy.h</a> <li><a href="qdesktopwidget-h.html">ntqdesktopwidget.h</a> <li><a href="qdial-h.html">ntqdial.h</a> @@ -243,7 +243,7 @@ body { background: #ffffff; color: black; } <li><a href="tqtextview-h.html">tqtextview.h</a> <li><a href="qthread-h.html">ntqthread.h</a> <li><a href="qthreadstorage-h.html">ntqthreadstorage.h</a> -<li><a href="qtimer-h.html">ntqtimer.h</a> +<li><a href="tqtimer-h.html">tqtimer.h</a> <li><a href="qtoolbar-h.html">ntqtoolbar.h</a> <li><a href="qtoolbox-h.html">ntqtoolbox.h</a> <li><a href="qtoolbutton-h.html">ntqtoolbutton.h</a> diff --git a/doc/html/hello-example.html b/doc/html/hello-example.html index 0697df652..a57cd3035 100644 --- a/doc/html/hello-example.html +++ b/doc/html/hello-example.html @@ -87,7 +87,7 @@ private: #include "hello.h" #include <<a href="qpushbutton-h.html">ntqpushbutton.h</a>> -#include <<a href="qtimer-h.html">ntqtimer.h</a>> +#include <<a href="tqtimer-h.html">tqtimer.h</a>> #include <<a href="qpainter-h.html">ntqpainter.h</a>> #include <<a href="qpixmap-h.html">ntqpixmap.h</a>> @@ -99,9 +99,9 @@ private: <a name="f473"></a>Hello::Hello( const char *text, TQWidget *parent, const char *name ) : <a href="tqwidget.html">TQWidget</a>(parent,name), t(text), b(0) { - <a href="ntqtimer.html">TQTimer</a> *timer = new <a href="ntqtimer.html">TQTimer</a>(this); -<a name="x1640"></a> <a href="tqobject.html#connect">connect</a>( timer, TQ_SIGNAL(<a href="ntqtimer.html#timeout">timeout</a>()), TQ_SLOT(animate()) ); -<a name="x1639"></a> timer-><a href="ntqtimer.html#start">start</a>( 40 ); + <a href="tqtimer.html">TQTimer</a> *timer = new <a href="tqtimer.html">TQTimer</a>(this); +<a name="x1640"></a> <a href="tqobject.html#connect">connect</a>( timer, TQ_SIGNAL(<a href="tqtimer.html#timeout">timeout</a>()), TQ_SLOT(animate()) ); +<a name="x1639"></a> timer-><a href="tqtimer.html#start">start</a>( 40 ); <a href="tqwidget.html#resize">resize</a>( 260, 130 ); } diff --git a/doc/html/hierarchy.html b/doc/html/hierarchy.html index e731e3e48..0f13a5781 100644 --- a/doc/html/hierarchy.html +++ b/doc/html/hierarchy.html @@ -60,8 +60,8 @@ classes in the TQt API. <li><a href="qcolorgroup.html">TQColorGroup</a> <li><a href="qconststring.html">TQConstString</a> <li><a href="ntqdatastream.html">TQDataStream</a> -<li><a href="qdate.html">TQDate</a> -<li><a href="ntqdatetime.html">TQDateTime</a> +<li><a href="tqdate.html">TQDate</a> +<li><a href="tqdatetime.html">TQDateTime</a> <li><a href="ntqdeepcopy.html">TQDeepCopy</a> <li><a href="qdictiterator.html">TQDictIterator</a> <li><a href="ntqdir.html">TQDir</a> @@ -283,7 +283,7 @@ classes in the TQt API. <li><a href="qresizeevent.html">TQResizeEvent</a> <li><a href="qshowevent.html">TQShowEvent</a> <li><a href="qtabletevent.html">TQTabletEvent</a> -<li><a href="qtimerevent.html">TQTimerEvent</a> +<li><a href="tqtimerevent.html">TQTimerEvent</a> <li><a href="qwheelevent.html">TQWheelEvent</a> </ul> <li><a href="tqiconviewitem.html">TQIconViewItem</a> @@ -375,7 +375,7 @@ classes in the TQt API. </ul> </ul> <li><a href="tqstylesheet.html">TQStyleSheet</a> -<li><a href="ntqtimer.html">TQTimer</a> +<li><a href="tqtimer.html">TQTimer</a> <li><a href="qtooltipgroup.html">TQToolTipGroup</a> <li><a href="ntqtranslator.html">TQTranslator</a> <li><a href="ntqurloperator.html">TQUrlOperator</a> @@ -397,11 +397,11 @@ classes in the TQt API. <li><a href="ntqcombobox.html">TQComboBox</a> <li><a href="tqdatabrowser.html">TQDataBrowser</a> <li><a href="tqdataview.html">TQDataView</a> -<li><a href="ntqdatetimeedit.html">TQDateTimeEdit</a> -<li><a href="qdatetimeeditbase.html">TQDateTimeEditBase</a> +<li><a href="tqdatetimeedit.html">TQDateTimeEdit</a> +<li><a href="tqdatetimeeditbase.html">TQDateTimeEditBase</a> <ul> -<li><a href="qdateedit.html">TQDateEdit</a> -<li><a href="qtimeedit.html">TQTimeEdit</a> +<li><a href="tqdateedit.html">TQDateEdit</a> +<li><a href="tqtimeedit.html">TQTimeEdit</a> </ul> <li><a href="ntqdesktopwidget.html">TQDesktopWidget</a> <li><a href="ntqdial.html">TQDial</a> @@ -524,7 +524,7 @@ classes in the TQt API. <li><a href="tqtextostream.html">TQTextOStream</a> </ul> <li><a href="ntqthreadstorage.html">TQThreadStorage</a> -<li><a href="qtime.html">TQTime</a> +<li><a href="tqtime.html">TQTime</a> <li><a href="qtranslatormessage.html">TQTranslatorMessage</a> <li><a href="ntqurl.html">TQUrl</a> <li><a href="ntqurlinfo.html">TQUrlInfo</a> diff --git a/doc/html/i18n.html b/doc/html/i18n.html index e606ce293..7ecb35ee4 100644 --- a/doc/html/i18n.html +++ b/doc/html/i18n.html @@ -458,7 +458,7 @@ example presenting dates and times using the locally preferred formats. Such localizations can be accomplished using appropriate tr() strings. <p> <pre> - void Clock::setTime(const <a href="qtime.html">TQTime</a>& t) + void Clock::setTime(const <a href="tqtime.html">TQTime</a>& t) { if ( tr("AMPM") == "AMPM" ) { // 12-hour clock diff --git a/doc/html/index b/doc/html/index index be5c6e923..fa9d3bf3c 100644 --- a/doc/html/index +++ b/doc/html/index @@ -1265,101 +1265,101 @@ "TQDataView::setRecord" tqdataview.html#setRecord "TQDataView::writeFields" tqdataview.html#writeFields "TQDataView::~TQDataView" tqdataview.html#~TQDataView -"QDate" qdate.html -"QDate::addDays" qdate.html#addDays -"QDate::addMonths" qdate.html#addMonths -"QDate::addYears" qdate.html#addYears -"QDate::currentDate" qdate.html#currentDate -"QDate::day" qdate.html#day -"QDate::dayOfWeek" qdate.html#dayOfWeek -"QDate::dayOfYear" qdate.html#dayOfYear -"QDate::daysInMonth" qdate.html#daysInMonth -"QDate::daysInYear" qdate.html#daysInYear -"QDate::daysTo" qdate.html#daysTo -"QDate::fromString" qdate.html#fromString -"QDate::isNull" qdate.html#isNull -"QDate::isValid" qdate.html#isValid -"QDate::leapYear" qdate.html#leapYear -"QDate::longDayName" qdate.html#longDayName -"QDate::longMonthName" qdate.html#longMonthName -"QDate::month" qdate.html#month -"QDate::operator!=" qdate.html#operator!-eq -"QDate::operator<" qdate.html#operator-lt -"QDate::operator<=" qdate.html#operator-lt-eq -"QDate::operator==" qdate.html#operator-eq-eq -"QDate::operator>" qdate.html#operator-gt -"QDate::operator>=" qdate.html#operator-gt-eq -"QDate::setYMD" qdate.html#setYMD -"QDate::shortDayName" qdate.html#shortDayName -"QDate::shortMonthName" qdate.html#shortMonthName -"QDate::toString" qdate.html#toString -"QDate::weekNumber" qdate.html#weekNumber -"QDate::year" qdate.html#year -"QDateEdit" qdateedit.html -"QDateEdit::Order" qdateedit.html#Order -"QDateEdit::autoAdvance" qdateedit.html#autoAdvance -"QDateEdit::autoAdvance" qdateedit.html#autoAdvance-prop -"QDateEdit::date" qdateedit.html#date -"QDateEdit::date" qdateedit.html#date-prop -"QDateEdit::fix" qdateedit.html#fix -"QDateEdit::maxValue" qdateedit.html#maxValue -"QDateEdit::maxValue" qdateedit.html#maxValue-prop -"QDateEdit::minValue" qdateedit.html#minValue -"QDateEdit::minValue" qdateedit.html#minValue-prop -"QDateEdit::order" qdateedit.html#order -"QDateEdit::order" qdateedit.html#order-prop -"QDateEdit::sectionFormattedText" qdateedit.html#sectionFormattedText -"QDateEdit::sectionLength" qdateedit.html#sectionLength -"QDateEdit::sectionText" qdateedit.html#sectionText -"QDateEdit::separator" qdateedit.html#separator -"QDateEdit::setAutoAdvance" qdateedit.html#setAutoAdvance -"QDateEdit::setDate" qdateedit.html#setDate -"QDateEdit::setDay" qdateedit.html#setDay -"QDateEdit::setMaxValue" qdateedit.html#setMaxValue -"QDateEdit::setMinValue" qdateedit.html#setMinValue -"QDateEdit::setMonth" qdateedit.html#setMonth -"QDateEdit::setOrder" qdateedit.html#setOrder -"QDateEdit::setRange" qdateedit.html#setRange -"QDateEdit::setSeparator" qdateedit.html#setSeparator -"QDateEdit::setYear" qdateedit.html#setYear -"QDateEdit::updateButtons" qdateedit.html#updateButtons -"QDateEdit::valueChanged" qdateedit.html#valueChanged -"QDateEdit::~QDateEdit" qdateedit.html#~QDateEdit -"QDateTime" ntqdatetime.html -"QDateTime::addDays" ntqdatetime.html#addDays -"QDateTime::addMonths" ntqdatetime.html#addMonths -"QDateTime::addSecs" ntqdatetime.html#addSecs -"QDateTime::addYears" ntqdatetime.html#addYears -"QDateTime::currentDateTime" ntqdatetime.html#currentDateTime -"QDateTime::date" ntqdatetime.html#date -"QDateTime::daysTo" ntqdatetime.html#daysTo -"QDateTime::fromString" ntqdatetime.html#fromString -"QDateTime::isNull" ntqdatetime.html#isNull -"QDateTime::isValid" ntqdatetime.html#isValid -"QDateTime::operator!=" ntqdatetime.html#operator!-eq -"QDateTime::operator<" ntqdatetime.html#operator-lt -"QDateTime::operator<=" ntqdatetime.html#operator-lt-eq -"QDateTime::operator==" ntqdatetime.html#operator-eq-eq -"QDateTime::operator>" ntqdatetime.html#operator-gt -"QDateTime::operator>=" ntqdatetime.html#operator-gt-eq -"QDateTime::secsTo" ntqdatetime.html#secsTo -"QDateTime::setDate" ntqdatetime.html#setDate -"QDateTime::setTime" ntqdatetime.html#setTime -"QDateTime::setTime_t" ntqdatetime.html#setTime_t -"QDateTime::time" ntqdatetime.html#time -"QDateTime::toString" ntqdatetime.html#toString -"QDateTime::toTime_t" ntqdatetime.html#toTime_t -"QDateTimeEdit" ntqdatetimeedit.html -"QDateTimeEdit::autoAdvance" ntqdatetimeedit.html#autoAdvance -"QDateTimeEdit::dateEdit" ntqdatetimeedit.html#dateEdit -"QDateTimeEdit::dateTime" ntqdatetimeedit.html#dateTime -"QDateTimeEdit::dateTime" ntqdatetimeedit.html#dateTime-prop -"QDateTimeEdit::setAutoAdvance" ntqdatetimeedit.html#setAutoAdvance -"QDateTimeEdit::setDateTime" ntqdatetimeedit.html#setDateTime -"QDateTimeEdit::timeEdit" ntqdatetimeedit.html#timeEdit -"QDateTimeEdit::valueChanged" ntqdatetimeedit.html#valueChanged -"QDateTimeEdit::~QDateTimeEdit" ntqdatetimeedit.html#~QDateTimeEdit -"QDateTimeEditBase" qdatetimeeditbase.html +"TQDate" tqdate.html +"TQDate::addDays" tqdate.html#addDays +"TQDate::addMonths" tqdate.html#addMonths +"TQDate::addYears" tqdate.html#addYears +"TQDate::currentDate" tqdate.html#currentDate +"TQDate::day" tqdate.html#day +"TQDate::dayOfWeek" tqdate.html#dayOfWeek +"TQDate::dayOfYear" tqdate.html#dayOfYear +"TQDate::daysInMonth" tqdate.html#daysInMonth +"TQDate::daysInYear" tqdate.html#daysInYear +"TQDate::daysTo" tqdate.html#daysTo +"TQDate::fromString" tqdate.html#fromString +"TQDate::isNull" tqdate.html#isNull +"TQDate::isValid" tqdate.html#isValid +"TQDate::leapYear" tqdate.html#leapYear +"TQDate::longDayName" tqdate.html#longDayName +"TQDate::longMonthName" tqdate.html#longMonthName +"TQDate::month" tqdate.html#month +"TQDate::operator!=" tqdate.html#operator!-eq +"TQDate::operator<" tqdate.html#operator-lt +"TQDate::operator<=" tqdate.html#operator-lt-eq +"TQDate::operator==" tqdate.html#operator-eq-eq +"TQDate::operator>" tqdate.html#operator-gt +"TQDate::operator>=" tqdate.html#operator-gt-eq +"TQDate::setYMD" tqdate.html#setYMD +"TQDate::shortDayName" tqdate.html#shortDayName +"TQDate::shortMonthName" tqdate.html#shortMonthName +"TQDate::toString" tqdate.html#toString +"TQDate::weekNumber" tqdate.html#weekNumber +"TQDate::year" tqdate.html#year +"TQDateEdit" tqdateedit.html +"TQDateEdit::Order" tqdateedit.html#Order +"TQDateEdit::autoAdvance" tqdateedit.html#autoAdvance +"TQDateEdit::autoAdvance" tqdateedit.html#autoAdvance-prop +"TQDateEdit::date" tqdateedit.html#date +"TQDateEdit::date" tqdateedit.html#date-prop +"TQDateEdit::fix" tqdateedit.html#fix +"TQDateEdit::maxValue" tqdateedit.html#maxValue +"TQDateEdit::maxValue" tqdateedit.html#maxValue-prop +"TQDateEdit::minValue" tqdateedit.html#minValue +"TQDateEdit::minValue" tqdateedit.html#minValue-prop +"TQDateEdit::order" tqdateedit.html#order +"TQDateEdit::order" tqdateedit.html#order-prop +"TQDateEdit::sectionFormattedText" tqdateedit.html#sectionFormattedText +"TQDateEdit::sectionLength" tqdateedit.html#sectionLength +"TQDateEdit::sectionText" tqdateedit.html#sectionText +"TQDateEdit::separator" tqdateedit.html#separator +"TQDateEdit::setAutoAdvance" tqdateedit.html#setAutoAdvance +"TQDateEdit::setDate" tqdateedit.html#setDate +"TQDateEdit::setDay" tqdateedit.html#setDay +"TQDateEdit::setMaxValue" tqdateedit.html#setMaxValue +"TQDateEdit::setMinValue" tqdateedit.html#setMinValue +"TQDateEdit::setMonth" tqdateedit.html#setMonth +"TQDateEdit::setOrder" tqdateedit.html#setOrder +"TQDateEdit::setRange" tqdateedit.html#setRange +"TQDateEdit::setSeparator" tqdateedit.html#setSeparator +"TQDateEdit::setYear" tqdateedit.html#setYear +"TQDateEdit::updateButtons" tqdateedit.html#updateButtons +"TQDateEdit::valueChanged" tqdateedit.html#valueChanged +"TQDateEdit::~TQDateEdit" tqdateedit.html#~TQDateEdit +"TQDateTime" tqdatetime.html +"TQDateTime::addDays" tqdatetime.html#addDays +"TQDateTime::addMonths" tqdatetime.html#addMonths +"TQDateTime::addSecs" tqdatetime.html#addSecs +"TQDateTime::addYears" tqdatetime.html#addYears +"TQDateTime::currentDateTime" tqdatetime.html#currentDateTime +"TQDateTime::date" tqdatetime.html#date +"TQDateTime::daysTo" tqdatetime.html#daysTo +"TQDateTime::fromString" tqdatetime.html#fromString +"TQDateTime::isNull" tqdatetime.html#isNull +"TQDateTime::isValid" tqdatetime.html#isValid +"TQDateTime::operator!=" tqdatetime.html#operator!-eq +"TQDateTime::operator<" tqdatetime.html#operator-lt +"TQDateTime::operator<=" tqdatetime.html#operator-lt-eq +"TQDateTime::operator==" tqdatetime.html#operator-eq-eq +"TQDateTime::operator>" tqdatetime.html#operator-gt +"TQDateTime::operator>=" tqdatetime.html#operator-gt-eq +"TQDateTime::secsTo" tqdatetime.html#secsTo +"TQDateTime::setDate" tqdatetime.html#setDate +"TQDateTime::setTime" tqdatetime.html#setTime +"TQDateTime::setTime_t" tqdatetime.html#setTime_t +"TQDateTime::time" tqdatetime.html#time +"TQDateTime::toString" tqdatetime.html#toString +"TQDateTime::toTime_t" tqdatetime.html#toTime_t +"TQDateTimeEdit" tqdatetimeedit.html +"TQDateTimeEdit::autoAdvance" tqdatetimeedit.html#autoAdvance +"TQDateTimeEdit::dateEdit" tqdatetimeedit.html#dateEdit +"TQDateTimeEdit::dateTime" tqdatetimeedit.html#dateTime +"TQDateTimeEdit::dateTime" tqdatetimeedit.html#dateTime-prop +"TQDateTimeEdit::setAutoAdvance" tqdatetimeedit.html#setAutoAdvance +"TQDateTimeEdit::setDateTime" tqdatetimeedit.html#setDateTime +"TQDateTimeEdit::timeEdit" tqdatetimeedit.html#timeEdit +"TQDateTimeEdit::valueChanged" tqdatetimeedit.html#valueChanged +"TQDateTimeEdit::~TQDateTimeEdit" tqdatetimeedit.html#~TQDateTimeEdit +"TQDateTimeEditBase" tqdatetimeeditbase.html "QDeepCopy" ntqdeepcopy.html "QDeepCopy::operator T" ntqdeepcopy.html#operator-T "QDeepCopy::operator=" ntqdeepcopy.html#operator-eq @@ -6698,67 +6698,67 @@ "QThreadStorage::localData" ntqthreadstorage.html#localData "QThreadStorage::setLocalData" ntqthreadstorage.html#setLocalData "QThreadStorage::~QThreadStorage" ntqthreadstorage.html#~QThreadStorage -"QTime" qtime.html -"QTime::addMSecs" qtime.html#addMSecs -"QTime::addSecs" qtime.html#addSecs -"QTime::currentTime" qtime.html#currentTime -"QTime::elapsed" qtime.html#elapsed -"QTime::fromString" qtime.html#fromString -"QTime::hour" qtime.html#hour -"QTime::isNull" qtime.html#isNull -"QTime::isValid" qtime.html#isValid -"QTime::minute" qtime.html#minute -"QTime::msec" qtime.html#msec -"QTime::msecsTo" qtime.html#msecsTo -"QTime::operator!=" qtime.html#operator!-eq -"QTime::operator<" qtime.html#operator-lt -"QTime::operator<=" qtime.html#operator-lt-eq -"QTime::operator==" qtime.html#operator-eq-eq -"QTime::operator>" qtime.html#operator-gt -"QTime::operator>=" qtime.html#operator-gt-eq -"QTime::restart" qtime.html#restart -"QTime::second" qtime.html#second -"QTime::secsTo" qtime.html#secsTo -"QTime::setHMS" qtime.html#setHMS -"QTime::start" qtime.html#start -"QTime::toString" qtime.html#toString -"QTimeEdit" qtimeedit.html -"QTimeEdit::Display" qtimeedit.html#Display -"QTimeEdit::autoAdvance" qtimeedit.html#autoAdvance -"QTimeEdit::autoAdvance" qtimeedit.html#autoAdvance-prop -"QTimeEdit::display" qtimeedit.html#display -"QTimeEdit::display" qtimeedit.html#display-prop -"QTimeEdit::maxValue" qtimeedit.html#maxValue -"QTimeEdit::maxValue" qtimeedit.html#maxValue-prop -"QTimeEdit::minValue" qtimeedit.html#minValue -"QTimeEdit::minValue" qtimeedit.html#minValue-prop -"QTimeEdit::sectionFormattedText" qtimeedit.html#sectionFormattedText -"QTimeEdit::separator" qtimeedit.html#separator -"QTimeEdit::setAutoAdvance" qtimeedit.html#setAutoAdvance -"QTimeEdit::setDisplay" qtimeedit.html#setDisplay -"QTimeEdit::setHour" qtimeedit.html#setHour -"QTimeEdit::setMaxValue" qtimeedit.html#setMaxValue -"QTimeEdit::setMinValue" qtimeedit.html#setMinValue -"QTimeEdit::setMinute" qtimeedit.html#setMinute -"QTimeEdit::setRange" qtimeedit.html#setRange -"QTimeEdit::setSecond" qtimeedit.html#setSecond -"QTimeEdit::setSeparator" qtimeedit.html#setSeparator -"QTimeEdit::setTime" qtimeedit.html#setTime -"QTimeEdit::time" qtimeedit.html#time -"QTimeEdit::time" qtimeedit.html#time-prop -"QTimeEdit::valueChanged" qtimeedit.html#valueChanged -"QTimeEdit::~QTimeEdit" qtimeedit.html#~QTimeEdit -"QTimer" ntqtimer.html -"QTimer::changeInterval" ntqtimer.html#changeInterval -"QTimer::isActive" ntqtimer.html#isActive -"QTimer::singleShot" ntqtimer.html#singleShot -"QTimer::start" ntqtimer.html#start -"QTimer::stop" ntqtimer.html#stop -"QTimer::timeout" ntqtimer.html#timeout -"QTimer::timerId" ntqtimer.html#timerId -"QTimer::~QTimer" ntqtimer.html#~QTimer -"QTimerEvent" qtimerevent.html -"QTimerEvent::timerId" qtimerevent.html#timerId +"TQTime" tqtime.html +"TQTime::addMSecs" tqtime.html#addMSecs +"TQTime::addSecs" tqtime.html#addSecs +"TQTime::currentTime" tqtime.html#currentTime +"TQTime::elapsed" tqtime.html#elapsed +"TQTime::fromString" tqtime.html#fromString +"TQTime::hour" tqtime.html#hour +"TQTime::isNull" tqtime.html#isNull +"TQTime::isValid" tqtime.html#isValid +"TQTime::minute" tqtime.html#minute +"TQTime::msec" tqtime.html#msec +"TQTime::msecsTo" tqtime.html#msecsTo +"TQTime::operator!=" tqtime.html#operator!-eq +"TQTime::operator<" tqtime.html#operator-lt +"TQTime::operator<=" tqtime.html#operator-lt-eq +"TQTime::operator==" tqtime.html#operator-eq-eq +"TQTime::operator>" tqtime.html#operator-gt +"TQTime::operator>=" tqtime.html#operator-gt-eq +"TQTime::restart" tqtime.html#restart +"TQTime::second" tqtime.html#second +"TQTime::secsTo" tqtime.html#secsTo +"TQTime::setHMS" tqtime.html#setHMS +"TQTime::start" tqtime.html#start +"TQTime::toString" tqtime.html#toString +"TQTimeEdit" tqtimeedit.html +"TQTimeEdit::Display" tqtimeedit.html#Display +"TQTimeEdit::autoAdvance" tqtimeedit.html#autoAdvance +"TQTimeEdit::autoAdvance" tqtimeedit.html#autoAdvance-prop +"TQTimeEdit::display" tqtimeedit.html#display +"TQTimeEdit::display" tqtimeedit.html#display-prop +"TQTimeEdit::maxValue" tqtimeedit.html#maxValue +"TQTimeEdit::maxValue" tqtimeedit.html#maxValue-prop +"TQTimeEdit::minValue" tqtimeedit.html#minValue +"TQTimeEdit::minValue" tqtimeedit.html#minValue-prop +"TQTimeEdit::sectionFormattedText" tqtimeedit.html#sectionFormattedText +"TQTimeEdit::separator" tqtimeedit.html#separator +"TQTimeEdit::setAutoAdvance" tqtimeedit.html#setAutoAdvance +"TQTimeEdit::setDisplay" tqtimeedit.html#setDisplay +"TQTimeEdit::setHour" tqtimeedit.html#setHour +"TQTimeEdit::setMaxValue" tqtimeedit.html#setMaxValue +"TQTimeEdit::setMinValue" tqtimeedit.html#setMinValue +"TQTimeEdit::setMinute" tqtimeedit.html#setMinute +"TQTimeEdit::setRange" tqtimeedit.html#setRange +"TQTimeEdit::setSecond" tqtimeedit.html#setSecond +"TQTimeEdit::setSeparator" tqtimeedit.html#setSeparator +"TQTimeEdit::setTime" tqtimeedit.html#setTime +"TQTimeEdit::time" tqtimeedit.html#time +"TQTimeEdit::time" tqtimeedit.html#time-prop +"TQTimeEdit::valueChanged" tqtimeedit.html#valueChanged +"TQTimeEdit::~TQTimeEdit" tqtimeedit.html#~TQTimeEdit +"TQTimer" tqtimer.html +"TQTimer::changeInterval" tqtimer.html#changeInterval +"TQTimer::isActive" tqtimer.html#isActive +"TQTimer::singleShot" tqtimer.html#singleShot +"TQTimer::start" tqtimer.html#start +"TQTimer::stop" tqtimer.html#stop +"TQTimer::timeout" tqtimer.html#timeout +"TQTimer::timerId" tqtimer.html#timerId +"TQTimer::~TQTimer" tqtimer.html#~TQTimer +"TQTimerEvent" tqtimerevent.html +"TQTimerEvent::timerId" tqtimerevent.html#timerId "QToolBar" ntqtoolbar.html "QToolBar::addSeparator" ntqtoolbar.html#addSeparator "QToolBar::clear" ntqtoolbar.html#clear @@ -7968,8 +7968,8 @@ "operator<<" qcolorgroup.html#operator-lt-lt "operator<<" ntqcstring.html#operator-lt-lt "operator<<" ntqcursor.html#operator-lt-lt -"operator<<" qdate.html#operator-lt-lt -"operator<<" ntqdatetime.html#operator-lt-lt +"operator<<" tqdate.html#operator-lt-lt +"operator<<" tqdatetime.html#operator-lt-lt "operator<<" ntqdockarea.html#operator-lt-lt "operator<<" tqdomnode.html#operator-lt-lt "operator<<" ntqfont.html#operator-lt-lt @@ -7989,7 +7989,7 @@ "operator<<" ntqsize.html#operator-lt-lt "operator<<" ntqsplitter.html#operator-lt-lt "operator<<" tqstring.html#operator-lt-lt -"operator<<" qtime.html#operator-lt-lt +"operator<<" tqtime.html#operator-lt-lt "operator<<" ntquuid.html#operator-lt-lt "operator<<" tqvaluelist.html#operator-lt-lt "operator<<" ntqwmatrix.html#operator-lt-lt @@ -8013,8 +8013,8 @@ "operator>>" ntqcolor.html#operator-gt-gt "operator>>" ntqcstring.html#operator-gt-gt "operator>>" ntqcursor.html#operator-gt-gt -"operator>>" qdate.html#operator-gt-gt -"operator>>" ntqdatetime.html#operator-gt-gt +"operator>>" tqdate.html#operator-gt-gt +"operator>>" tqdatetime.html#operator-gt-gt "operator>>" ntqdockarea.html#operator-gt-gt "operator>>" ntqfont.html#operator-gt-gt "operator>>" tqimage.html#operator-gt-gt @@ -8033,7 +8033,7 @@ "operator>>" ntqsize.html#operator-gt-gt "operator>>" ntqsplitter.html#operator-gt-gt "operator>>" tqstring.html#operator-gt-gt -"operator>>" qtime.html#operator-gt-gt +"operator>>" tqtime.html#operator-gt-gt "operator>>" ntquuid.html#operator-gt-gt "operator>>" tqvaluelist.html#operator-gt-gt "operator>>" ntqwmatrix.html#operator-gt-gt diff --git a/doc/html/licenses.html b/doc/html/licenses.html index 3969286ab..ecb884b42 100644 --- a/doc/html/licenses.html +++ b/doc/html/licenses.html @@ -225,7 +225,7 @@ THIS SOFTWARE IS PROVIDED ``AS IS'' AND WITHOUT ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, WITHOUT LIMITATION, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. <p><ul> -<li><a href="qdate.html#weekNumber">TQDate::weekNumber</a> +<li><a href="tqdate.html#weekNumber">TQDate::weekNumber</a> </ul> <hr> <p> Copyright (c) 1991 by AT&T. diff --git a/doc/html/listviews-example.html b/doc/html/listviews-example.html index 92384609d..22f261ee2 100644 --- a/doc/html/listviews-example.html +++ b/doc/html/listviews-example.html @@ -54,7 +54,7 @@ and works like the main window of a mail client. #include <<a href="qsplitter-h.html">ntqsplitter.h</a>> #include <<a href="tqstring-h.html">tqstring.h</a>> #include <<a href="tqobject-h.html">tqobject.h</a>> -#include <<a href="qdatetime-h.html">ntqdatetime.h</a>> +#include <<a href="tqdatetime-h.html">tqdatetime.h</a>> #include <<a href="tqptrlist-h.html">tqptrlist.h</a>> #include <<a href="qlistview-h.html">ntqlistview.h</a>> @@ -70,7 +70,7 @@ class TQPopupMenu; class MessageHeader { public: - MessageHeader( const <a href="tqstring.html">TQString</a> &_sender, const <a href="tqstring.html">TQString</a> &_subject, const <a href="ntqdatetime.html">TQDateTime</a> &_datetime ) + MessageHeader( const <a href="tqstring.html">TQString</a> &_sender, const <a href="tqstring.html">TQString</a> &_subject, const <a href="tqdatetime.html">TQDateTime</a> &_datetime ) : msender( _sender ), msubject( _subject ), mdatetime( _datetime ) {} @@ -79,11 +79,11 @@ public: <a href="tqstring.html">TQString</a> sender() { return msender; } <a href="tqstring.html">TQString</a> subject() { return msubject; } - <a href="ntqdatetime.html">TQDateTime</a> datetime() { return mdatetime; } + <a href="tqdatetime.html">TQDateTime</a> datetime() { return mdatetime; } protected: <a href="tqstring.html">TQString</a> msender, msubject; - <a href="ntqdatetime.html">TQDateTime</a> mdatetime; + <a href="tqdatetime.html">TQDateTime</a> mdatetime; }; @@ -398,8 +398,8 @@ void <a name="f213"></a>ListViews::initFolder( Folder *folder, unsigned int & for ( unsigned int i = 0; i < 15; i++, count++ ) { <a href="tqstring.html">TQString</a> str; str = TQString( "Message %1 " ).arg( count ); -<a name="x137"></a> <a href="ntqdatetime.html">TQDateTime</a> dt = TQDateTime::<a href="ntqdatetime.html#currentDateTime">currentDateTime</a>(); -<a name="x136"></a> dt = dt.<a href="ntqdatetime.html#addSecs">addSecs</a>( 60 * count ); +<a name="x137"></a> <a href="tqdatetime.html">TQDateTime</a> dt = TQDateTime::<a href="tqdatetime.html#currentDateTime">currentDateTime</a>(); +<a name="x136"></a> dt = dt.<a href="tqdatetime.html#addSecs">addSecs</a>( 60 * count ); MessageHeader mh( "Trolltech <info@trolltech.com> ", str, dt ); <a href="tqstring.html">TQString</a> body; diff --git a/doc/html/mail-example.html b/doc/html/mail-example.html index 0ac4f8d9b..266359fd6 100644 --- a/doc/html/mail-example.html +++ b/doc/html/mail-example.html @@ -116,7 +116,7 @@ private: #include <<a href="tqtextstream-h.html">tqtextstream.h</a>> #include <<a href="qsocket-h.html">ntqsocket.h</a>> #include <<a href="qdns-h.html">ntqdns.h</a>> -#include <<a href="qtimer-h.html">ntqtimer.h</a>> +#include <<a href="tqtimer-h.html">tqtimer.h</a>> #include <<a href="qapplication-h.html">ntqapplication.h</a>> #include <<a href="qmessagebox-h.html">ntqmessagebox.h</a>> #include <<a href="qregexp-h.html">ntqregexp.h</a>> diff --git a/doc/html/mainclasses.html b/doc/html/mainclasses.html index a58dd175a..6f834b05e 100644 --- a/doc/html/mainclasses.html +++ b/doc/html/mainclasses.html @@ -47,7 +47,7 @@ classes), see <a href="classes.html">TQt's Classes</a>. <td align="right"> <td><a href="ntqslider.html">TQSlider</a> <td align="right"> -<td><a href="ntqtimer.html">TQTimer</a> +<td><a href="tqtimer.html">TQTimer</a> <tr> <td align="right"> <td><a href="ntqapplication.html">TQApplication</a> @@ -160,7 +160,7 @@ classes), see <a href="classes.html">TQt's Classes</a>. <td><a href="tqvaluestack.html">TQValueStack</a> <tr> <td align="right"> -<td><a href="qdate.html">TQDate</a> +<td><a href="tqdate.html">TQDate</a> <td align="right"> <td><a href="ntqinputdialog.html">TQInputDialog</a> <td align="right"> @@ -171,7 +171,7 @@ classes), see <a href="classes.html">TQt's Classes</a>. <td><a href="tqvaluevector.html">TQValueVector</a> <tr> <td align="right"> -<td><a href="qdateedit.html">TQDateEdit</a> +<td><a href="tqdateedit.html">TQDateEdit</a> <td align="right"><b>L</b> <td><a href="ntqlabel.html">TQLabel</a> <td align="right"> @@ -182,7 +182,7 @@ classes), see <a href="classes.html">TQt's Classes</a>. <td><a href="ntqvariant.html">TQVariant</a> <tr> <td align="right"> -<td><a href="ntqdatetime.html">TQDateTime</a> +<td><a href="tqdatetime.html">TQDateTime</a> <td align="right"> <td><a href="ntqlcdnumber.html">TQLCDNumber</a> <td align="right"> @@ -193,7 +193,7 @@ classes), see <a href="classes.html">TQt's Classes</a>. <td><a href="qvboxlayout.html">TQVBoxLayout</a> <tr> <td align="right"> -<td><a href="ntqdatetimeedit.html">TQDateTimeEdit</a> +<td><a href="tqdatetimeedit.html">TQDateTimeEdit</a> <td align="right"> <td><a href="ntqlibrary.html">TQLibrary</a> <td align="right"> @@ -254,7 +254,7 @@ classes), see <a href="classes.html">TQt's Classes</a>. <td align="right"> <td><a href="ntqsettings.html">TQSettings</a> <td align="right"> -<td><a href="qtime.html">TQTime</a> +<td><a href="tqtime.html">TQTime</a> <td align="right"><b>X</b> <td><a href="tqxmlsimplereader.html">TQXmlSimpleReader</a> <tr> @@ -265,7 +265,7 @@ classes), see <a href="classes.html">TQt's Classes</a>. <td align="right"> <td><a href="ntqsimplerichtext.html">TQSimpleRichText</a> <td align="right"> -<td><a href="qtimeedit.html">TQTimeEdit</a> +<td><a href="tqtimeedit.html">TQTimeEdit</a> <td> <td> </table> diff --git a/doc/html/ntqapplication.html b/doc/html/ntqapplication.html index 997502b95..d076d1911 100644 --- a/doc/html/ntqapplication.html +++ b/doc/html/ntqapplication.html @@ -804,7 +804,7 @@ can be used before calling exec(), because modal widgets call exec() to start a local event loop. <p> To make your application perform idle processing, i.e. executing a special function whenever there are no pending events, use a -<a href="ntqtimer.html">TQTimer</a> with 0 timeout. More advanced idle processing schemes can +<a href="tqtimer.html">TQTimer</a> with 0 timeout. More advanced idle processing schemes can be achieved using <a href="#processEvents">processEvents</a>(). <p> <p>See also <a href="#quit">quit</a>(), <a href="#exit">exit</a>(), <a href="#processEvents">processEvents</a>(), and <a href="#setMainWidget">setMainWidget</a>(). @@ -1086,7 +1086,7 @@ Processes pending events, for 3 seconds or until there are no more events to process, whichever is shorter. <p> You can call this function occasionally when your program is busy performing a long operation (e.g. copying a file). -<p> <p>See also <a href="#exec">exec</a>(), <a href="ntqtimer.html">TQTimer</a>, and <a href="ntqeventloop.html#processEvents">TQEventLoop::processEvents</a>(). +<p> <p>See also <a href="#exec">exec</a>(), <a href="tqtimer.html">TQTimer</a>, and <a href="ntqeventloop.html#processEvents">TQEventLoop::processEvents</a>(). <p>Examples: <a href="fileiconview-example.html#x808">fileiconview/qfileiconview.cpp</a> and <a href="ftpclient-example.html#x778">network/ftpclient/main.cpp</a>. <h3 class=fn>void <a name="processEvents-2"></a>TQApplication::processEvents ( int maxtime ) @@ -1096,7 +1096,7 @@ This is an overloaded member function, provided for convenience. It behaves esse there are no more events to process, whichever is shorter. <p> You can call this function occasionally when you program is busy doing a long operation (e.g. copying a file). -<p> <p>See also <a href="#exec">exec</a>(), <a href="ntqtimer.html">TQTimer</a>, and <a href="ntqeventloop.html#processEvents">TQEventLoop::processEvents</a>(). +<p> <p>See also <a href="#exec">exec</a>(), <a href="tqtimer.html">TQTimer</a>, and <a href="ntqeventloop.html#processEvents">TQEventLoop::processEvents</a>(). <h3 class=fn>void <a name="processOneEvent"></a>TQApplication::processOneEvent () </h3> <b>This function is obsolete.</b> It is provided to keep old source working. We strongly advise against using it in new code. @@ -1105,7 +1105,7 @@ doing a long operation (e.g. copying a file). event processing must be grafted onto existing program loops. <p> Using this function in new applications may be an indication of design problems. -<p> <p>See also <a href="#processEvents">processEvents</a>(), <a href="#exec">exec</a>(), and <a href="ntqtimer.html">TQTimer</a>. +<p> <p>See also <a href="#processEvents">processEvents</a>(), <a href="#exec">exec</a>(), and <a href="tqtimer.html">TQTimer</a>. <h3 class=fn>void <a name="quit"></a>TQApplication::quit ()<tt> [slot]</tt> </h3> diff --git a/doc/html/ntqdatastream.html b/doc/html/ntqdatastream.html index a5d439f3d..7b1426b37 100644 --- a/doc/html/ntqdatastream.html +++ b/doc/html/ntqdatastream.html @@ -128,7 +128,7 @@ data to. The <a href="ntqfile.html">TQFile</a> class is an example of an IO devi <p> Each item written to the stream is written in a predefined binary format that varies depending on the item's type. Supported TQt -types include <a href="ntqbrush.html">TQBrush</a>, <a href="ntqcolor.html">TQColor</a>, <a href="ntqdatetime.html">TQDateTime</a>, <a href="ntqfont.html">TQFont</a>, <a href="ntqpixmap.html">TQPixmap</a>, <a href="tqstring.html">TQString</a>, +types include <a href="ntqbrush.html">TQBrush</a>, <a href="ntqcolor.html">TQColor</a>, <a href="tqdatetime.html">TQDateTime</a>, <a href="ntqfont.html">TQFont</a>, <a href="ntqpixmap.html">TQPixmap</a>, <a href="tqstring.html">TQString</a>, <a href="ntqvariant.html">TQVariant</a> and many others. For the complete list of all TQt types supporting data streaming see the <a href="datastreamformat.html">Format of the TQDataStream operators</a>. <p> For integers it is best to always cast to a TQt integer type for diff --git a/doc/html/ntqevent.html b/doc/html/ntqevent.html index 3f9e32e13..c43274843 100644 --- a/doc/html/ntqevent.html +++ b/doc/html/ntqevent.html @@ -36,7 +36,7 @@ event classes. Event objects contain event parameters. <a href="#details">More...</a> <p><tt>#include <<a href="qevent-h.html">ntqevent.h</a>></tt> <p>Inherits <a href="ntqt.html">TQt</a>. -<p>Inherited by <a href="qtimerevent.html">TQTimerEvent</a>, <a href="qmouseevent.html">TQMouseEvent</a>, <a href="qwheelevent.html">TQWheelEvent</a>, <a href="qtabletevent.html">TQTabletEvent</a>, <a href="qkeyevent.html">TQKeyEvent</a>, <a href="qfocusevent.html">TQFocusEvent</a>, <a href="qpaintevent.html">TQPaintEvent</a>, <a href="qmoveevent.html">TQMoveEvent</a>, <a href="qresizeevent.html">TQResizeEvent</a>, <a href="qcloseevent.html">TQCloseEvent</a>, <a href="tqicondragevent.html">TQIconDragEvent</a>, <a href="qshowevent.html">TQShowEvent</a>, <a href="qhideevent.html">TQHideEvent</a>, <a href="qcontextmenuevent.html">TQContextMenuEvent</a>, <a href="qimevent.html">TQIMEvent</a>, <a href="qdropevent.html">TQDropEvent</a>, <a href="qdragleaveevent.html">TQDragLeaveEvent</a>, <a href="qchildevent.html">TQChildEvent</a>, and <a href="qcustomevent.html">TQCustomEvent</a>. +<p>Inherited by <a href="tqtimerevent.html">TQTimerEvent</a>, <a href="qmouseevent.html">TQMouseEvent</a>, <a href="qwheelevent.html">TQWheelEvent</a>, <a href="qtabletevent.html">TQTabletEvent</a>, <a href="qkeyevent.html">TQKeyEvent</a>, <a href="qfocusevent.html">TQFocusEvent</a>, <a href="qpaintevent.html">TQPaintEvent</a>, <a href="qmoveevent.html">TQMoveEvent</a>, <a href="qresizeevent.html">TQResizeEvent</a>, <a href="qcloseevent.html">TQCloseEvent</a>, <a href="tqicondragevent.html">TQIconDragEvent</a>, <a href="qshowevent.html">TQShowEvent</a>, <a href="qhideevent.html">TQHideEvent</a>, <a href="qcontextmenuevent.html">TQContextMenuEvent</a>, <a href="qimevent.html">TQIMEvent</a>, <a href="qdropevent.html">TQDropEvent</a>, <a href="qdragleaveevent.html">TQDragLeaveEvent</a>, <a href="qchildevent.html">TQChildEvent</a>, and <a href="qcustomevent.html">TQCustomEvent</a>. <p><a href="qevent-members.html">List of all member functions.</a> <h2>Public Members</h2> <ul> @@ -80,7 +80,7 @@ types and the specialized classes for each type are these: <ul> <li><tt>TQEvent::None</tt> - Not an event. <li><tt>TQEvent::Accessibility</tt> - Accessibility information is requested -<li><tt>TQEvent::Timer</tt> - Regular timer events, <a href="qtimerevent.html">TQTimerEvent</a>. +<li><tt>TQEvent::Timer</tt> - Regular timer events, <a href="tqtimerevent.html">TQTimerEvent</a>. <li><tt>TQEvent::MouseButtonPress</tt> - Mouse press, <a href="qmouseevent.html">TQMouseEvent</a>. <li><tt>TQEvent::MouseButtonRelease</tt> - Mouse release, <a href="qmouseevent.html">TQMouseEvent</a>. <li><tt>TQEvent::MouseButtonDblClick</tt> - Mouse press again, <a href="qmouseevent.html">TQMouseEvent</a>. diff --git a/doc/html/ntqeventloop.html b/doc/html/ntqeventloop.html index 9b7171841..e270fd8fc 100644 --- a/doc/html/ntqeventloop.html +++ b/doc/html/ntqeventloop.html @@ -163,7 +163,7 @@ can be used before calling exec(), because modal widgets call exec() to start a local event loop. <p> To make your application perform idle processing, i.e. executing a special function whenever there are no pending events, use a -<a href="ntqtimer.html">TQTimer</a> with 0 timeout. More advanced idle processing schemes can +<a href="tqtimer.html">TQTimer</a> with 0 timeout. More advanced idle processing schemes can be achieved using <a href="#processEvents">processEvents</a>(). <p> <p>See also <a href="ntqapplication.html#quit">TQApplication::quit</a>(), <a href="#exit">exit</a>(), and <a href="#processEvents">processEvents</a>(). diff --git a/doc/html/ntqfileinfo.html b/doc/html/ntqfileinfo.html index c6ab7caef..e0de6a970 100644 --- a/doc/html/ntqfileinfo.html +++ b/doc/html/ntqfileinfo.html @@ -232,7 +232,7 @@ Converts the file's path to an absolute path. <p> If it is already absolute, nothing is done. <p> <p>See also <a href="#filePath">filePath</a>() and <a href="#isRelative">isRelative</a>(). -<h3 class=fn><a href="ntqdatetime.html">TQDateTime</a> <a name="created"></a>TQFileInfo::created () const +<h3 class=fn><a href="tqdatetime.html">TQDateTime</a> <a name="created"></a>TQFileInfo::created () const </h3> Returns the date and time when the file was created. <p> On platforms where this information is not available, returns the @@ -366,13 +366,13 @@ Returns TRUE if the file is writable; otherwise returns FALSE. <p> <p>See also <a href="#isReadable">isReadable</a>(), <a href="#isExecutable">isExecutable</a>(), and <a href="#permission">permission</a>(). <p>Example: <a href="distributor-example.html#x2665">distributor/distributor.ui.h</a>. -<h3 class=fn><a href="ntqdatetime.html">TQDateTime</a> <a name="lastModified"></a>TQFileInfo::lastModified () const +<h3 class=fn><a href="tqdatetime.html">TQDateTime</a> <a name="lastModified"></a>TQFileInfo::lastModified () const </h3> Returns the date and time when the file was last modified. <p> <p>See also <a href="#created">created</a>() and <a href="#lastRead">lastRead</a>(). <p>Example: <a href="biff-example.html#x1956">biff/biff.cpp</a>. -<h3 class=fn><a href="ntqdatetime.html">TQDateTime</a> <a name="lastRead"></a>TQFileInfo::lastRead () const +<h3 class=fn><a href="tqdatetime.html">TQDateTime</a> <a name="lastRead"></a>TQFileInfo::lastRead () const </h3> Returns the date and time when the file was last read (accessed). <p> On platforms where this information is not available, returns the diff --git a/doc/html/ntqlistview.html b/doc/html/ntqlistview.html index e1e200506..30e8d26f5 100644 --- a/doc/html/ntqlistview.html +++ b/doc/html/ntqlistview.html @@ -277,7 +277,7 @@ The second group consists of <a href="#doubleClicked">doubleClicked</a>(TQListVi <p> Note that changing the state of the list view in a slot connected to a list view signal may cause unexpected side effects. If you need to change the list view's state in response to a signal, use -a <a href="ntqtimer.html#singleShot">single shot timer</a> with a +a <a href="tqtimer.html#singleShot">single shot timer</a> with a time out of 0, and connect this timer to a slot that modifies the list view's state. <p> In <a href="motif-extension.html#Motif">Motif</a> style, TQListView deviates fairly strongly from the look diff --git a/doc/html/ntqprocess.html b/doc/html/ntqprocess.html index 5cddf398d..3ef77c82c 100644 --- a/doc/html/ntqprocess.html +++ b/doc/html/ntqprocess.html @@ -347,7 +347,7 @@ tryTerminate(). is to do something like this: <pre> process->tryTerminate(); - TQTimer::<a href="ntqtimer.html#singleShot">singleShot</a>( 5000, process, TQ_SLOT( <a href="#kill">kill</a>() ) ); + TQTimer::<a href="tqtimer.html#singleShot">singleShot</a>( 5000, process, TQ_SLOT( <a href="#kill">kill</a>() ) ); </pre> <p> This tries to terminate the process the nice way. If the process diff --git a/doc/html/ntqprogressdialog.html b/doc/html/ntqprogressdialog.html index 05aae17aa..2fb871c85 100644 --- a/doc/html/ntqprogressdialog.html +++ b/doc/html/ntqprogressdialog.html @@ -137,7 +137,7 @@ progress.setProgress( numFiles ); <p> A modeless progress dialog is suitable for operations that take place in the background, where the user is able to interact with the -application. Such operations are typically based on <a href="ntqtimer.html">TQTimer</a> (or +application. Such operations are typically based on <a href="tqtimer.html">TQTimer</a> (or <a href="tqobject.html#timerEvent">TQObject::timerEvent</a>()), <a href="ntqsocketnotifier.html">TQSocketNotifier</a>, or <a href="ntqurloperator.html">TQUrlOperator</a>; or performed in a separate thread. A <a href="ntqprogressbar.html">TQProgressBar</a> in the status bar of your main window is often an alternative to a modeless progress dialog. @@ -149,9 +149,9 @@ Operation::Operation( <a href="tqobject.html">TQObject</a> *parent = 0 ) { pd = new TQProgressDialog( "Operation in progress.", "Cancel", 100 ); <a href="tqobject.html#connect">connect</a>( pd, TQ_SIGNAL(<a href="#canceled">canceled</a>()), this, TQ_SLOT(<a href="#cancel">cancel</a>()) ); - t = new <a href="ntqtimer.html">TQTimer</a>( this ); - <a href="tqobject.html#connect">connect</a>( t, TQ_SIGNAL(<a href="ntqtimer.html#timeout">timeout</a>()), this, TQ_SLOT(perform()) ); - t-><a href="ntqtimer.html#start">start</a>( 0 ); + t = new <a href="tqtimer.html">TQTimer</a>( this ); + <a href="tqobject.html#connect">connect</a>( t, TQ_SIGNAL(<a href="tqtimer.html#timeout">timeout</a>()), this, TQ_SLOT(perform()) ); + t-><a href="tqtimer.html#start">start</a>( 0 ); } void Operation::perform() @@ -160,12 +160,12 @@ void Operation::perform() //... perform one percent of the operation steps++; if ( steps > pd-><a href="#totalSteps">totalSteps</a>() ) - t-><a href="ntqtimer.html#stop">stop</a>(); + t-><a href="tqtimer.html#stop">stop</a>(); } void Operation::cancel() { - t-><a href="ntqtimer.html#stop">stop</a>(); + t-><a href="tqtimer.html#stop">stop</a>(); //... cleanup } </pre> diff --git a/doc/html/ntqsocketnotifier.html b/doc/html/ntqsocketnotifier.html index 1fcb2223a..2a98ad6bd 100644 --- a/doc/html/ntqsocketnotifier.html +++ b/doc/html/ntqsocketnotifier.html @@ -96,7 +96,7 @@ after having emitting the first activated() signal (and no "would block" error has occurred) is undefined. Depending on the operating system, it may fire on every pass of the event loop or not at all. -<p> If you need a time-out for your sockets you can use either <a href="tqobject.html#startTimer">timer events</a> or the <a href="ntqtimer.html">TQTimer</a> class. +<p> If you need a time-out for your sockets you can use either <a href="tqobject.html#startTimer">timer events</a> or the <a href="tqtimer.html">TQTimer</a> class. <p> Socket action is detected in the <a href="ntqapplication.html#exec">main event loop</a> of TQt. The X11 version of TQt has a single UNIX select() call that incorporates all socket notifiers and the X diff --git a/doc/html/ntqurlinfo.html b/doc/html/ntqurlinfo.html index 6693af700..be05bd91a 100644 --- a/doc/html/ntqurlinfo.html +++ b/doc/html/ntqurlinfo.html @@ -132,7 +132,7 @@ to the directory. </h3> Copy constructor, copies <em>ui</em> to this URL info object. -<h3 class=fn><a name="TQUrlInfo-4"></a>TQUrlInfo::TQUrlInfo ( const <a href="tqstring.html">TQString</a> & name, int permissions, const <a href="tqstring.html">TQString</a> & owner, const <a href="tqstring.html">TQString</a> & group, uint size, const <a href="ntqdatetime.html">TQDateTime</a> & lastModified, const <a href="ntqdatetime.html">TQDateTime</a> & lastRead, bool isDir, bool isFile, bool isSymLink, bool isWritable, bool isReadable, bool isExecutable ) +<h3 class=fn><a name="TQUrlInfo-4"></a>TQUrlInfo::TQUrlInfo ( const <a href="tqstring.html">TQString</a> & name, int permissions, const <a href="tqstring.html">TQString</a> & owner, const <a href="tqstring.html">TQString</a> & group, uint size, const <a href="tqdatetime.html">TQDateTime</a> & lastModified, const <a href="tqdatetime.html">TQDateTime</a> & lastRead, bool isDir, bool isFile, bool isSymLink, bool isWritable, bool isReadable, bool isExecutable ) </h3> Constructs a TQUrlInfo object by specifying all the URL's information. @@ -140,7 +140,7 @@ information. passed is the <em>lastModified</em> date/time and the <em>lastRead</em> date/time. Flags are also passed, specifically, <em>isDir</em>, <em>isFile</em>, <em>isSymLink</em>, <em>isWritable</em>, <em>isReadable</em> and <em>isExecutable</em>. -<h3 class=fn><a name="TQUrlInfo-5"></a>TQUrlInfo::TQUrlInfo ( const <a href="ntqurl.html">TQUrl</a> & url, int permissions, const <a href="tqstring.html">TQString</a> & owner, const <a href="tqstring.html">TQString</a> & group, uint size, const <a href="ntqdatetime.html">TQDateTime</a> & lastModified, const <a href="ntqdatetime.html">TQDateTime</a> & lastRead, bool isDir, bool isFile, bool isSymLink, bool isWritable, bool isReadable, bool isExecutable ) +<h3 class=fn><a name="TQUrlInfo-5"></a>TQUrlInfo::TQUrlInfo ( const <a href="ntqurl.html">TQUrl</a> & url, int permissions, const <a href="tqstring.html">TQString</a> & owner, const <a href="tqstring.html">TQString</a> & group, uint size, const <a href="tqdatetime.html">TQDateTime</a> & lastModified, const <a href="tqdatetime.html">TQDateTime</a> & lastRead, bool isDir, bool isFile, bool isSymLink, bool isWritable, bool isReadable, bool isExecutable ) </h3> Constructs a TQUrlInfo object by specifying all the URL's information. @@ -212,13 +212,13 @@ the values. Returns TRUE if the URL is writable; otherwise returns FALSE. <p> <p>See also <a href="#isValid">isValid</a>(). -<h3 class=fn><a href="ntqdatetime.html">TQDateTime</a> <a name="lastModified"></a>TQUrlInfo::lastModified () const +<h3 class=fn><a href="tqdatetime.html">TQDateTime</a> <a name="lastModified"></a>TQUrlInfo::lastModified () const </h3> Returns the last modification date of the URL. <p> <p>See also <a href="#isValid">isValid</a>(). <p>Example: <a href="ftpclient-example.html#x774">network/ftpclient/ftpmainwindow.ui.h</a>. -<h3 class=fn><a href="ntqdatetime.html">TQDateTime</a> <a name="lastRead"></a>TQUrlInfo::lastRead () const +<h3 class=fn><a href="tqdatetime.html">TQDateTime</a> <a name="lastRead"></a>TQUrlInfo::lastRead () const </h3> Returns the date when the URL was last read. <p> <p>See also <a href="#isValid">isValid</a>(). @@ -283,7 +283,7 @@ Specifies that the owning group of the URL is called <em>s</em>. turns it into a valid one. <p> <p>See also <a href="#isValid">isValid</a>(). -<h3 class=fn>void <a name="setLastModified"></a>TQUrlInfo::setLastModified ( const <a href="ntqdatetime.html">TQDateTime</a> & dt )<tt> [virtual]</tt> +<h3 class=fn>void <a name="setLastModified"></a>TQUrlInfo::setLastModified ( const <a href="tqdatetime.html">TQDateTime</a> & dt )<tt> [virtual]</tt> </h3> Specifies that the object the URL refers to was last modified at <em>dt</em>. diff --git a/doc/html/ntqvariant.html b/doc/html/ntqvariant.html index 52ff07030..f5a4132a0 100644 --- a/doc/html/ntqvariant.html +++ b/doc/html/ntqvariant.html @@ -253,8 +253,8 @@ contain. <li><tt>TQVariant::Color</tt> - a <a href="ntqcolor.html">TQColor</a> <li><tt>TQVariant::ColorGroup</tt> - a <a href="qcolorgroup.html">TQColorGroup</a> <li><tt>TQVariant::Cursor</tt> - a <a href="ntqcursor.html">TQCursor</a> -<li><tt>TQVariant::Date</tt> - a <a href="qdate.html">TQDate</a> -<li><tt>TQVariant::DateTime</tt> - a <a href="ntqdatetime.html">TQDateTime</a> +<li><tt>TQVariant::Date</tt> - a <a href="tqdate.html">TQDate</a> +<li><tt>TQVariant::DateTime</tt> - a <a href="tqdatetime.html">TQDateTime</a> <li><tt>TQVariant::Double</tt> - a double <li><tt>TQVariant::Font</tt> - a <a href="ntqfont.html">TQFont</a> <li><tt>TQVariant::IconSet</tt> - a <a href="tqiconset.html">TQIconSet</a> @@ -277,7 +277,7 @@ contain. <li><tt>TQVariant::String</tt> - a <a href="tqstring.html">TQString</a> <li><tt>TQVariant::CString</tt> - a <a href="ntqcstring.html">TQCString</a> <li><tt>TQVariant::StringList</tt> - a <a href="tqstringlist.html">TQStringList</a> -<li><tt>TQVariant::Time</tt> - a <a href="qtime.html">TQTime</a> +<li><tt>TQVariant::Time</tt> - a <a href="tqtime.html">TQTime</a> <li><tt>TQVariant::UInt</tt> - an unsigned int </ul><p> Note that TQt's definition of bool depends on the compiler. <a href="qglobal-h.html">ntqglobal.h</a> has the system-dependent definition of bool. @@ -398,15 +398,15 @@ Constructs a new variant with a bitmap value, <em>val</em>. </h3> Constructs a new variant with a cursor value, <em>val</em>. -<h3 class=fn><a name="TQVariant-n"></a>TQVariant::TQVariant ( const <a href="qdate.html">TQDate</a> & val ) +<h3 class=fn><a name="TQVariant-n"></a>TQVariant::TQVariant ( const <a href="tqdate.html">TQDate</a> & val ) </h3> Constructs a new variant with a date value, <em>val</em>. -<h3 class=fn><a name="TQVariant-o"></a>TQVariant::TQVariant ( const <a href="qtime.html">TQTime</a> & val ) +<h3 class=fn><a name="TQVariant-o"></a>TQVariant::TQVariant ( const <a href="tqtime.html">TQTime</a> & val ) </h3> Constructs a new variant with a time value, <em>val</em>. -<h3 class=fn><a name="TQVariant-p"></a>TQVariant::TQVariant ( const <a href="ntqdatetime.html">TQDateTime</a> & val ) +<h3 class=fn><a name="TQVariant-p"></a>TQVariant::TQVariant ( const <a href="tqdatetime.html">TQDateTime</a> & val ) </h3> Constructs a new variant with a date/time value, <em>val</em>. @@ -527,18 +527,18 @@ not possible the variant is set to a default arrow cursor. <p> Returns a reference to the stored cursor. <p> <p>See also <a href="#toCursor">toCursor</a>(). -<h3 class=fn><a href="qdate.html">TQDate</a> & <a name="asDate"></a>TQVariant::asDate () +<h3 class=fn><a href="tqdate.html">TQDate</a> & <a name="asDate"></a>TQVariant::asDate () </h3> -<p> Tries to convert the variant to hold a <a href="qdate.html">TQDate</a> value. If that is not +<p> Tries to convert the variant to hold a <a href="tqdate.html">TQDate</a> value. If that is not possible then the variant is set to an invalid date. <p> Returns a reference to the stored date. <p> <p>See also <a href="#toDate">toDate</a>(). -<h3 class=fn><a href="ntqdatetime.html">TQDateTime</a> & <a name="asDateTime"></a>TQVariant::asDateTime () +<h3 class=fn><a href="tqdatetime.html">TQDateTime</a> & <a name="asDateTime"></a>TQVariant::asDateTime () </h3> -<p> Tries to convert the variant to hold a <a href="ntqdatetime.html">TQDateTime</a> value. If that is +<p> Tries to convert the variant to hold a <a href="tqdatetime.html">TQDateTime</a> value. If that is not possible then the variant is set to an invalid date/time. <p> Returns a reference to the stored date/time. <p> <p>See also <a href="#toDateTime">toDateTime</a>(). @@ -713,10 +713,10 @@ iterate over a copy, e.g. <p> <p>See also <a href="#toStringList">toStringList</a>(). -<h3 class=fn><a href="qtime.html">TQTime</a> & <a name="asTime"></a>TQVariant::asTime () +<h3 class=fn><a href="tqtime.html">TQTime</a> & <a name="asTime"></a>TQVariant::asTime () </h3> -<p> Tries to convert the variant to hold a <a href="qtime.html">TQTime</a> value. If that is not +<p> Tries to convert the variant to hold a <a href="tqtime.html">TQTime</a> value. If that is not possible then the variant is set to an invalid time. <p> Returns a reference to the stored time. <p> <p>See also <a href="#toTime">toTime</a>(). @@ -914,18 +914,18 @@ Returns the variant as a <a href="ntqcursor.html">TQCursor</a> if the variant ha otherwise returns the default arrow cursor. <p> <p>See also <a href="#asCursor">asCursor</a>(). -<h3 class=fn>const <a href="qdate.html">TQDate</a> <a name="toDate"></a>TQVariant::toDate () const +<h3 class=fn>const <a href="tqdate.html">TQDate</a> <a name="toDate"></a>TQVariant::toDate () const </h3> -Returns the variant as a <a href="qdate.html">TQDate</a> if the variant can be cast to Date; +Returns the variant as a <a href="tqdate.html">TQDate</a> if the variant can be cast to Date; otherwise returns an invalid date. <p> Note that if the <a href="#type">type</a>() is String, CString or ByteArray an invalid date will be returned if the string cannot be parsed as a TQt::ISODate format date. <p> <p>See also <a href="#asDate">asDate</a>() and <a href="#canCast">canCast</a>(). -<h3 class=fn>const <a href="ntqdatetime.html">TQDateTime</a> <a name="toDateTime"></a>TQVariant::toDateTime () const +<h3 class=fn>const <a href="tqdatetime.html">TQDateTime</a> <a name="toDateTime"></a>TQVariant::toDateTime () const </h3> -Returns the variant as a <a href="ntqdatetime.html">TQDateTime</a> if the variant can be cast to +Returns the variant as a <a href="tqdatetime.html">TQDateTime</a> if the variant can be cast to DateTime; otherwise returns an invalid TQDateTime. <p> Note that if the <a href="#type">type</a>() is String, CString or ByteArray an invalid TQDateTime will be returned if the string cannot be parsed as a @@ -1092,9 +1092,9 @@ over a copy, e.g. <p> <p>See also <a href="#asStringList">asStringList</a>(). -<h3 class=fn>const <a href="qtime.html">TQTime</a> <a name="toTime"></a>TQVariant::toTime () const +<h3 class=fn>const <a href="tqtime.html">TQTime</a> <a name="toTime"></a>TQVariant::toTime () const </h3> -Returns the variant as a <a href="qtime.html">TQTime</a> if the variant can be cast to Time; +Returns the variant as a <a href="tqtime.html">TQTime</a> if the variant can be cast to Time; otherwise returns an invalid date. <p> Note that if the <a href="#type">type</a>() is String, CString or ByteArray an invalid time will be returned if the string cannot be parsed as a diff --git a/doc/html/porting.html b/doc/html/porting.html index b234d0ba1..5cbece74b 100644 --- a/doc/html/porting.html +++ b/doc/html/porting.html @@ -310,8 +310,8 @@ new code. <li> <a href="qcolorgroup.html#TQColorGroup">TQColorGroup::TQColorGroup</a>( const <a href="ntqcolor.html">TQColor</a> & foreground, const TQColor & background, const TQColor & light, const TQColor & dark, const TQColor & mid, const TQColor & text, const TQColor & base ) <li> <a href="ntqcombobox.html#autoResize">TQComboBox::autoResize</a>() const <li> <a href="ntqcombobox.html#setAutoResize">TQComboBox::setAutoResize</a>( bool ) -<li> <a href="qdate.html#dayName">TQDate::dayName</a>( int weekday ) -<li> <a href="qdate.html#monthName">TQDate::monthName</a>( int month ) +<li> <a href="tqdate.html#dayName">TQDate::dayName</a>( int weekday ) +<li> <a href="tqdate.html#monthName">TQDate::monthName</a>( int month ) <li> <a href="ntqdir.html#encodedEntryList">TQDir::encodedEntryList</a>( const <a href="tqstring.html">TQString</a> & nameFilter, int filterSpec = DefaultFilter, int sortSpec = DefaultSort ) const <li> TQDir::encodedEntryList( int filterSpec = DefaultFilter, int sortSpec = DefaultSort ) const <li> <a href="ntqdockwindow.html#isHorizontalStretchable">TQDockWindow::isHorizontalStretchable</a>() const @@ -430,18 +430,18 @@ names are no longer avaialable. <em>radio</em> button (<a href="ntqradiobutton.html">TQRadioButton</a>). In TQt 3.0, it returns the selected <em>toggle</em> button (<a href="ntqbutton.html#toggleButton-prop">TQButton::toggleButton</a>), a more general concept. This might affect programs that use TQButtonGroups that contain a mixture of radio buttons and non-radio (e.g. <a href="ntqcheckbox.html">TQCheckBox</a>) toggle buttons. -<p> <h2> <a href="qdate.html">TQDate</a> +<p> <h2> <a href="tqdate.html">TQDate</a> </h2> <a name="8"></a><p> Two TQDate member functions that were virtual in TQt 2.0 are not virtual in TQt 3.0. This is only relevant if you subclassed TQDate and reimplemented these functions: <p> <ul> -<li> <a href="tqstring.html">TQString</a> <a href="qdate.html#monthName">TQDate::monthName</a>( int month ) const -<li> TQString <a href="qdate.html#dayName">TQDate::dayName</a>( int weekday ) const +<li> <a href="tqstring.html">TQString</a> <a href="tqdate.html#monthName">TQDate::monthName</a>( int month ) const +<li> TQString <a href="tqdate.html#dayName">TQDate::dayName</a>( int weekday ) const </ul> <p> In addition to no longer being virtual, TQDate::monthName() and -TQDate::dayName() have been renamed <a href="qdate.html#shortMonthName">TQDate::shortMonthName</a>() and -<a href="qdate.html#shortDayName">TQDate::shortDayName</a>() and have been made static (as they should had +TQDate::dayName() have been renamed <a href="tqdate.html#shortMonthName">TQDate::shortMonthName</a>() and +<a href="tqdate.html#shortDayName">TQDate::shortDayName</a>() and have been made static (as they should had been in the first place). The old names are still provided for source compatibility. <p> <h2> <a href="ntqfiledialog.html">TQFileDialog</a> diff --git a/doc/html/progress-example.html b/doc/html/progress-example.html index 9f1e4eae4..63e026ee7 100644 --- a/doc/html/progress-example.html +++ b/doc/html/progress-example.html @@ -257,7 +257,7 @@ public slots: } private: - void timerEvent( <a href="qtimerevent.html">TQTimerEvent</a>* ) + void timerEvent( <a href="tqtimerevent.html">TQTimerEvent</a>* ) { if (!got_stop) <a name="x86"></a><a name="x85"></a> pb-><a href="ntqprogressdialog.html#setProgress">setProgress</a>( pb-><a href="ntqprogressdialog.html#totalSteps">totalSteps</a>() - rects ); diff --git a/doc/html/progressbar-example.html b/doc/html/progressbar-example.html index a6813a06f..a13bbb8f6 100644 --- a/doc/html/progressbar-example.html +++ b/doc/html/progressbar-example.html @@ -50,7 +50,7 @@ This example shows how to use a progress bar. #define PROGRESSBAR_H #include <<a href="qbuttongroup-h.html">ntqbuttongroup.h</a>> -#include <<a href="qtimer-h.html">ntqtimer.h</a>> +#include <<a href="tqtimer-h.html">tqtimer.h</a>> class TQRadioButton; class TQPushButton; @@ -67,7 +67,7 @@ protected: <a href="ntqradiobutton.html">TQRadioButton</a> *slow, *normal, *fast; <a href="ntqpushbutton.html">TQPushButton</a> *start, *pause, *reset; <a href="ntqprogressbar.html">TQProgressBar</a> *progress; - <a href="ntqtimer.html">TQTimer</a> timer; + <a href="tqtimer.html">TQTimer</a> timer; protected slots: void slotStart(); diff --git a/doc/html/propertydocs b/doc/html/propertydocs index efed087fd..587e6962f 100644 --- a/doc/html/propertydocs +++ b/doc/html/propertydocs @@ -772,72 +772,72 @@ table. The default value is "True". </doc> </property> <property> - <name>QDateEdit::autoAdvance</name> - <doc href="qdateedit.html#autoAdvance-prop"> + <name>TQDateEdit::autoAdvance</name> + <doc href="tqdateedit.html#autoAdvance-prop"> <p>This property holds whether the editor automatically advances to the next section. <p>If autoAdvance is TRUE, the editor will automatically advance focus to the next date section if a user has completed a section. The default is FALSE. -<p>Set this property's value with <a href="qdateedit.html#setAutoAdvance">setAutoAdvance</a>() and get this property's value with <a href="qdateedit.html#autoAdvance">autoAdvance</a>(). +<p>Set this property's value with <a href="tqdateedit.html#setAutoAdvance">setAutoAdvance</a>() and get this property's value with <a href="tqdateedit.html#autoAdvance">autoAdvance</a>(). </doc> </property> <property> - <name>QDateEdit::date</name> - <doc href="qdateedit.html#date-prop"> + <name>TQDateEdit::date</name> + <doc href="tqdateedit.html#date-prop"> <p>This property holds the editor's date value. <p>If the date property is not valid, the editor displays all zeroes -and <a href="qdateedit.html#date">QDateEdit::date</a>() will return an invalid date. It is strongly +and <a href="tqdateedit.html#date">TQDateEdit::date</a>() will return an invalid date. It is strongly recommended that the editor is given a default date value (e.g. currentDate()). That way, attempts to set the date property to an invalid date will fail. <p> When changing the date property, if the date is less than -<a href="qdateedit.html#minValue">minValue</a>(), or is greater than <a href="qdateedit.html#maxValue">maxValue</a>(), nothing happens. +<a href="tqdateedit.html#minValue">minValue</a>(), or is greater than <a href="tqdateedit.html#maxValue">maxValue</a>(), nothing happens. -<p>Set this property's value with <a href="qdateedit.html#setDate">setDate</a>() and get this property's value with <a href="qdateedit.html#date">date</a>(). +<p>Set this property's value with <a href="tqdateedit.html#setDate">setDate</a>() and get this property's value with <a href="tqdateedit.html#date">date</a>(). </doc> </property> <property> - <name>QDateEdit::maxValue</name> - <doc href="qdateedit.html#maxValue-prop"> + <name>TQDateEdit::maxValue</name> + <doc href="tqdateedit.html#maxValue-prop"> <p>This property holds the editor's maximum value. <p>Setting the maximum date value for the editor is equivalent to -calling <a href="qdateedit.html#setRange">QDateEdit::setRange</a>( <a href="qdateedit.html#minValue">minValue</a>(), <em>d</em> ), where <em>d</em> is the +calling <a href="tqdateedit.html#setRange">TQDateEdit::setRange</a>( <a href="tqdateedit.html#minValue">minValue</a>(), <em>d</em> ), where <em>d</em> is the maximum date. The default maximum date is 8000-12-31. -<p> <p>See also <a href="qdateedit.html#minValue-prop">minValue</a> and <a href="qdateedit.html#setRange">setRange</a>(). +<p> <p>See also <a href="tqdateedit.html#minValue-prop">minValue</a> and <a href="tqdateedit.html#setRange">setRange</a>(). -<p>Set this property's value with <a href="qdateedit.html#setMaxValue">setMaxValue</a>() and get this property's value with <a href="qdateedit.html#maxValue">maxValue</a>(). +<p>Set this property's value with <a href="tqdateedit.html#setMaxValue">setMaxValue</a>() and get this property's value with <a href="tqdateedit.html#maxValue">maxValue</a>(). </doc> </property> <property> - <name>QDateEdit::minValue</name> - <doc href="qdateedit.html#minValue-prop"> + <name>TQDateEdit::minValue</name> + <doc href="tqdateedit.html#minValue-prop"> <p>This property holds the editor's minimum value. <p>Setting the minimum date value is equivalent to calling -<a href="qdateedit.html#setRange">QDateEdit::setRange</a>( <em>d</em>, <a href="qdateedit.html#maxValue">maxValue</a>() ), where <em>d</em> is the minimum +<a href="tqdateedit.html#setRange">TQDateEdit::setRange</a>( <em>d</em>, <a href="tqdateedit.html#maxValue">maxValue</a>() ), where <em>d</em> is the minimum date. The default minimum date is 1752-09-14. -<p> <p>See also <a href="qdateedit.html#maxValue-prop">maxValue</a> and <a href="qdateedit.html#setRange">setRange</a>(). +<p> <p>See also <a href="tqdateedit.html#maxValue-prop">maxValue</a> and <a href="tqdateedit.html#setRange">setRange</a>(). -<p>Set this property's value with <a href="qdateedit.html#setMinValue">setMinValue</a>() and get this property's value with <a href="qdateedit.html#minValue">minValue</a>(). +<p>Set this property's value with <a href="tqdateedit.html#setMinValue">setMinValue</a>() and get this property's value with <a href="tqdateedit.html#minValue">minValue</a>(). </doc> </property> <property> - <name>QDateEdit::order</name> - <doc href="qdateedit.html#order-prop"> + <name>TQDateEdit::order</name> + <doc href="tqdateedit.html#order-prop"> <p>This property holds the order in which the year, month and day appear. <p>The default order is locale dependent. -<p> <p>See also <a href="qdateedit.html#Order-enum">Order</a>. +<p> <p>See also <a href="tqdateedit.html#Order-enum">Order</a>. -<p>Set this property's value with <a href="qdateedit.html#setOrder">setOrder</a>() and get this property's value with <a href="qdateedit.html#order">order</a>(). +<p>Set this property's value with <a href="tqdateedit.html#setOrder">setOrder</a>() and get this property's value with <a href="tqdateedit.html#order">order</a>(). </doc> </property> <property> - <name>QDateTimeEdit::dateTime</name> - <doc href="ntqdatetimeedit.html#dateTime-prop"> + <name>TQDateTimeEdit::dateTime</name> + <doc href="tqdatetimeedit.html#dateTime-prop"> <p>This property holds the editor's datetime value. <p>The datetime edit's datetime which may be an invalid datetime. -<p>Set this property's value with <a href="ntqdatetimeedit.html#setDateTime">setDateTime</a>() and get this property's value with <a href="ntqdatetimeedit.html#dateTime">dateTime</a>(). +<p>Set this property's value with <a href="tqdatetimeedit.html#setDateTime">setDateTime</a>() and get this property's value with <a href="tqdatetimeedit.html#dateTime">dateTime</a>(). </doc> </property> <property> @@ -4048,58 +4048,58 @@ text edit at which text should be wrapped. </doc> </property> <property> - <name>QTimeEdit::autoAdvance</name> - <doc href="qtimeedit.html#autoAdvance-prop"> + <name>TQTimeEdit::autoAdvance</name> + <doc href="tqtimeedit.html#autoAdvance-prop"> <p>This property holds whether the editor automatically advances to the next section. <p>If autoAdvance is TRUE, the editor will automatically advance focus to the next time section if a user has completed a section. The default is FALSE. -<p>Set this property's value with <a href="qtimeedit.html#setAutoAdvance">setAutoAdvance</a>() and get this property's value with <a href="qtimeedit.html#autoAdvance">autoAdvance</a>(). +<p>Set this property's value with <a href="tqtimeedit.html#setAutoAdvance">setAutoAdvance</a>() and get this property's value with <a href="tqtimeedit.html#autoAdvance">autoAdvance</a>(). </doc> </property> <property> - <name>QTimeEdit::display</name> - <doc href="qtimeedit.html#display-prop"> + <name>TQTimeEdit::display</name> + <doc href="tqtimeedit.html#display-prop"> <p>This property holds the sections that are displayed in the time edit. <p>The value can be any combination of the values in the Display enum. By default, the widget displays hours, minutes and seconds. -<p>Set this property's value with <a href="qtimeedit.html#setDisplay">setDisplay</a>() and get this property's value with <a href="qtimeedit.html#display">display</a>(). +<p>Set this property's value with <a href="tqtimeedit.html#setDisplay">setDisplay</a>() and get this property's value with <a href="tqtimeedit.html#display">display</a>(). </doc> </property> <property> - <name>QTimeEdit::maxValue</name> - <doc href="qtimeedit.html#maxValue-prop"> + <name>TQTimeEdit::maxValue</name> + <doc href="tqtimeedit.html#maxValue-prop"> <p>This property holds the maximum time value. <p>Setting the maximum time value is equivalent to calling -<a href="qtimeedit.html#setRange">QTimeEdit::setRange</a>( <a href="qtimeedit.html#minValue">minValue</a>(), <em>t</em> ), where <em>t</em> is the maximum +<a href="tqtimeedit.html#setRange">TQTimeEdit::setRange</a>( <a href="tqtimeedit.html#minValue">minValue</a>(), <em>t</em> ), where <em>t</em> is the maximum time. The default maximum time is 23:59:59. -<p> <p>See also <a href="qtimeedit.html#minValue-prop">minValue</a> and <a href="qtimeedit.html#setRange">setRange</a>(). +<p> <p>See also <a href="tqtimeedit.html#minValue-prop">minValue</a> and <a href="tqtimeedit.html#setRange">setRange</a>(). -<p>Set this property's value with <a href="qtimeedit.html#setMaxValue">setMaxValue</a>() and get this property's value with <a href="qtimeedit.html#maxValue">maxValue</a>(). +<p>Set this property's value with <a href="tqtimeedit.html#setMaxValue">setMaxValue</a>() and get this property's value with <a href="tqtimeedit.html#maxValue">maxValue</a>(). </doc> </property> <property> - <name>QTimeEdit::minValue</name> - <doc href="qtimeedit.html#minValue-prop"> + <name>TQTimeEdit::minValue</name> + <doc href="tqtimeedit.html#minValue-prop"> <p>This property holds the minimum time value. <p>Setting the minimum time value is equivalent to calling -<a href="qtimeedit.html#setRange">QTimeEdit::setRange</a>( <em>t</em>, <a href="qtimeedit.html#maxValue">maxValue</a>() ), where <em>t</em> is the minimum +<a href="tqtimeedit.html#setRange">TQTimeEdit::setRange</a>( <em>t</em>, <a href="tqtimeedit.html#maxValue">maxValue</a>() ), where <em>t</em> is the minimum time. The default minimum time is 00:00:00. -<p> <p>See also <a href="qtimeedit.html#maxValue-prop">maxValue</a> and <a href="qtimeedit.html#setRange">setRange</a>(). +<p> <p>See also <a href="tqtimeedit.html#maxValue-prop">maxValue</a> and <a href="tqtimeedit.html#setRange">setRange</a>(). -<p>Set this property's value with <a href="qtimeedit.html#setMinValue">setMinValue</a>() and get this property's value with <a href="qtimeedit.html#minValue">minValue</a>(). +<p>Set this property's value with <a href="tqtimeedit.html#setMinValue">setMinValue</a>() and get this property's value with <a href="tqtimeedit.html#minValue">minValue</a>(). </doc> </property> <property> - <name>QTimeEdit::time</name> - <doc href="qtimeedit.html#time-prop"> + <name>TQTimeEdit::time</name> + <doc href="tqtimeedit.html#time-prop"> <p>This property holds the editor's time value. <p>When changing the time property, if the time is less than -<a href="qtimeedit.html#minValue">minValue</a>(), or is greater than <a href="qtimeedit.html#maxValue">maxValue</a>(), nothing happens. +<a href="tqtimeedit.html#minValue">minValue</a>(), or is greater than <a href="tqtimeedit.html#maxValue">maxValue</a>(), nothing happens. -<p>Set this property's value with <a href="qtimeedit.html#setTime">setTime</a>() and get this property's value with <a href="qtimeedit.html#time">time</a>(). +<p>Set this property's value with <a href="tqtimeedit.html#setTime">setTime</a>() and get this property's value with <a href="tqtimeedit.html#time">time</a>(). </doc> </property> <property> diff --git a/doc/html/propertyindex b/doc/html/propertyindex index 2b56c2270..3430f705b 100644 --- a/doc/html/propertyindex +++ b/doc/html/propertyindex @@ -61,12 +61,12 @@ "TQDataTable/numRows" tqdatatable.html#numRows-prop "TQDataTable/sort" tqdatatable.html#sort-prop "TQDataTable/trueText" tqdatatable.html#trueText-prop -"QDateEdit/autoAdvance" qdateedit.html#autoAdvance-prop -"QDateEdit/date" qdateedit.html#date-prop -"QDateEdit/maxValue" qdateedit.html#maxValue-prop -"QDateEdit/minValue" qdateedit.html#minValue-prop -"QDateEdit/order" qdateedit.html#order-prop -"QDateTimeEdit/dateTime" ntqdatetimeedit.html#dateTime-prop +"TQDateEdit/autoAdvance" tqdateedit.html#autoAdvance-prop +"TQDateEdit/date" tqdateedit.html#date-prop +"TQDateEdit/maxValue" tqdateedit.html#maxValue-prop +"TQDateEdit/minValue" tqdateedit.html#minValue-prop +"TQDateEdit/order" tqdateedit.html#order-prop +"TQDateTimeEdit/dateTime" tqdatetimeedit.html#dateTime-prop "QDial/lineStep" ntqdial.html#lineStep-prop "QDial/maxValue" ntqdial.html#maxValue-prop "QDial/minValue" ntqdial.html#minValue-prop @@ -333,11 +333,11 @@ "TQTextEdit/wordWrap" tqtextedit.html#wordWrap-prop "TQTextEdit/wrapColumnOrWidth" tqtextedit.html#wrapColumnOrWidth-prop "TQTextEdit/wrapPolicy" tqtextedit.html#wrapPolicy-prop -"QTimeEdit/autoAdvance" qtimeedit.html#autoAdvance-prop -"QTimeEdit/display" qtimeedit.html#display-prop -"QTimeEdit/maxValue" qtimeedit.html#maxValue-prop -"QTimeEdit/minValue" qtimeedit.html#minValue-prop -"QTimeEdit/time" qtimeedit.html#time-prop +"TQTimeEdit/autoAdvance" tqtimeedit.html#autoAdvance-prop +"TQTimeEdit/display" tqtimeedit.html#display-prop +"TQTimeEdit/maxValue" tqtimeedit.html#maxValue-prop +"TQTimeEdit/minValue" tqtimeedit.html#minValue-prop +"TQTimeEdit/time" tqtimeedit.html#time-prop "QToolBar/label" ntqtoolbar.html#label-prop "QToolBox/count" ntqtoolbox.html#count-prop "QToolBox/currentIndex" ntqtoolbox.html#currentIndex-prop diff --git a/doc/html/qasyncio-h.html b/doc/html/qasyncio-h.html index 8d7f4fc04..e1877af17 100644 --- a/doc/html/qasyncio-h.html +++ b/doc/html/qasyncio-h.html @@ -80,7 +80,7 @@ body { background: #ffffff; color: black; } #ifndef QT_H #include "tqobject.h" #include "ntqsignal.h" -#include "ntqtimer.h" +#include "tqtimer.h" #endif // QT_H #ifndef TQT_NO_ASYNC_IO diff --git a/doc/html/qdate-members.html b/doc/html/qdate-members.html deleted file mode 100644 index 592e357e8..000000000 --- a/doc/html/qdate-members.html +++ /dev/null @@ -1,78 +0,0 @@ -<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN"> -<!-- /home/espenr/tmp/qt-3.3.8-espenr-2499/qt-x11-free-3.3.8/include/ntqdatetime.h:52 --> -<html> -<head> -<meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-1"> -<title>TQDate Member List</title> -<style type="text/css"><!-- -fn { margin-left: 1cm; text-indent: -1cm; } -a:link { color: #004faf; text-decoration: none } -a:visited { color: #672967; text-decoration: none } -body { background: #ffffff; color: black; } ---></style> -</head> -<body> - -<table border="0" cellpadding="0" cellspacing="0" width="100%"> -<tr bgcolor="#E5E5E5"> -<td valign=center> - <a href="index.html"> -<font color="#004faf">Home</font></a> - | <a href="classes.html"> -<font color="#004faf">All Classes</font></a> - | <a href="mainclasses.html"> -<font color="#004faf">Main Classes</font></a> - | <a href="annotated.html"> -<font color="#004faf">Annotated</font></a> - | <a href="groups.html"> -<font color="#004faf">Grouped Classes</font></a> - | <a href="functions.html"> -<font color="#004faf">Functions</font></a> -</td> -<td align="right" valign="center"><img src="logo32.png" align="right" width="64" height="32" border="0"></td></tr></table><h1 align=center>Complete Member List for TQDate</h1> - -<p>This is the complete list of member functions for -<a href="qdate.html">TQDate</a>, including inherited members. - -<ul> -<li><a href="qdate.html#TQDate">TQDate</a>() -<li><a href="qdate.html#addDays">addDays</a>() -<li><a href="qdate.html#addMonths">addMonths</a>() -<li><a href="qdate.html#addYears">addYears</a>() -<li><a href="qdate.html#currentDate">currentDate</a>() -<li><a href="qdate.html#day">day</a>() -<li><a href="qdate.html#dayName">dayName</a>() -<li><a href="qdate.html#dayOfWeek">dayOfWeek</a>() -<li><a href="qdate.html#dayOfYear">dayOfYear</a>() -<li><a href="qdate.html#daysInMonth">daysInMonth</a>() -<li><a href="qdate.html#daysInYear">daysInYear</a>() -<li><a href="qdate.html#daysTo">daysTo</a>() -<li><a href="qdate.html#fromString">fromString</a>() -<li><a href="qdate.html#isNull">isNull</a>() -<li><a href="qdate.html#isValid">isValid</a>() -<li><a href="qdate.html#leapYear">leapYear</a>() -<li><a href="qdate.html#longDayName">longDayName</a>() -<li><a href="qdate.html#longMonthName">longMonthName</a>() -<li><a href="qdate.html#month">month</a>() -<li><a href="qdate.html#monthName">monthName</a>() -<li><a href="qdate.html#operator!-eq">operator!=</a>() -<li><a href="qdate.html#operator-lt">operator<</a>() -<li><a href="qdate.html#operator-lt-eq">operator<=</a>() -<li><a href="qdate.html#operator-eq-eq">operator==</a>() -<li><a href="qdate.html#operator-gt">operator></a>() -<li><a href="qdate.html#operator-gt-eq">operator>=</a>() -<li><a href="qdate.html#setYMD">setYMD</a>() -<li><a href="qdate.html#shortDayName">shortDayName</a>() -<li><a href="qdate.html#shortMonthName">shortMonthName</a>() -<li><a href="qdate.html#toString">toString</a>() -<li><a href="qdate.html#weekNumber">weekNumber</a>() -<li><a href="qdate.html#year">year</a>() -</ul> -<!-- eof --> -<p><address><hr><div align=center> -<table width=100% cellspacing=0 border=0><tr> -<td>Copyright © 2007 -<a href="troll.html">Trolltech</a><td align=center><a href="trademarks.html">Trademarks</a> -<td align=right><div align=right>TQt 3.3.8</div> -</table></div></address></body> -</html> diff --git a/doc/html/qfileinfo-h.html b/doc/html/qfileinfo-h.html index c37b125b0..3a89658c7 100644 --- a/doc/html/qfileinfo-h.html +++ b/doc/html/qfileinfo-h.html @@ -79,7 +79,7 @@ body { background: #ffffff; color: black; } #ifndef QT_H #include "ntqfile.h" -#include "ntqdatetime.h" +#include "tqdatetime.h" #endif // QT_H diff --git a/doc/html/qglwidget.html b/doc/html/qglwidget.html index 06646624a..30e4e3512 100644 --- a/doc/html/qglwidget.html +++ b/doc/html/qglwidget.html @@ -161,7 +161,7 @@ paintGL() is called. </pre> <p> If you need to trigger a repaint from places other than <a href="#paintGL">paintGL</a>() -(a typical example is when using <a href="ntqtimer.html">timers</a> to +(a typical example is when using <a href="tqtimer.html">timers</a> to animate scenes), you should call the widget's <a href="#updateGL">updateGL</a>() function. <p> Your widget's OpenGL rendering context is made current when paintGL(), <a href="#resizeGL">resizeGL</a>(), or <a href="#initializeGL">initializeGL</a>() is called. If you need to diff --git a/doc/html/qmacstyle.html b/doc/html/qmacstyle.html index 1c9d1d3ce..99aaa8da0 100644 --- a/doc/html/qmacstyle.html +++ b/doc/html/qmacstyle.html @@ -102,7 +102,7 @@ documentation. <li><tt>TQMacStyle::FocusEnabled</tt> - show a focus rectangle when the widget has focus. <li><tt>TQMacStyle::FocusDisabled</tt> - never show a focus rectangle for the widget. <li><tt>TQMacStyle::FocusDefault</tt> - show a focus rectangle when the widget has -focus and the widget is a TQSpinWidget, <a href="ntqdatetimeedit.html">TQDateTimeEdit</a>, <a href="ntqlineedit.html">TQLineEdit</a>, +focus and the widget is a TQSpinWidget, <a href="tqdatetimeedit.html">TQDateTimeEdit</a>, <a href="ntqlineedit.html">TQLineEdit</a>, <a href="ntqlistbox.html">TQListBox</a>, <a href="ntqlistview.html">TQListView</a>, editable <a href="tqtextedit.html">TQTextEdit</a>, or one of their subclasses. </ul> diff --git a/doc/html/qmag-example.html b/doc/html/qmag-example.html index a4d2f2135..13d2f3585 100644 --- a/doc/html/qmag-example.html +++ b/doc/html/qmag-example.html @@ -83,7 +83,7 @@ protected: void mouseReleaseEvent( <a href="qmouseevent.html">TQMouseEvent</a> * ); void mouseMoveEvent( <a href="qmouseevent.html">TQMouseEvent</a> * ); void focusOutEvent( <a href="qfocusevent.html">TQFocusEvent</a> * ); - void timerEvent( <a href="qtimerevent.html">TQTimerEvent</a> * ); + void timerEvent( <a href="tqtimerevent.html">TQTimerEvent</a> * ); void resizeEvent( <a href="qresizeevent.html">TQResizeEvent</a> * ); private: @@ -396,7 +396,7 @@ void <a name="f490"></a>MagWidget::grabAround(TQPoint pos) } -<a name="x1781"></a>void MagWidget::<a href="tqobject.html#timerEvent">timerEvent</a>( <a href="qtimerevent.html">TQTimerEvent</a> * ) +<a name="x1781"></a>void MagWidget::<a href="tqobject.html#timerEvent">timerEvent</a>( <a href="tqtimerevent.html">TQTimerEvent</a> * ) { grab(); /* diff --git a/doc/html/qnamespace-h.html b/doc/html/qnamespace-h.html index 2a03bf8a3..c941d7d4e 100644 --- a/doc/html/qnamespace-h.html +++ b/doc/html/qnamespace-h.html @@ -872,14 +872,14 @@ public: // compatibility typedef Dock ToolBarDock; - // documented in qdatetime.cpp + // documented in tqdatetime.cpp enum DateFormat { TextDate, // default TQt ISODate, // ISO 8601 LocalDate // locale dependent }; - // documented in qdatetime.cpp + // documented in tqdatetime.cpp enum TimeSpec { LocalTime, UTC diff --git a/doc/html/qsettings-h.html b/doc/html/qsettings-h.html index 0ed51a16b..c1074d683 100644 --- a/doc/html/qsettings-h.html +++ b/doc/html/qsettings-h.html @@ -78,7 +78,7 @@ body { background: #ffffff; color: black; } #define TQSETTINGS_H #ifndef QT_H -#include "ntqdatetime.h" +#include "tqdatetime.h" #include "tqstringlist.h" #endif // QT_H diff --git a/doc/html/qt.dcf b/doc/html/qt.dcf index d6eb8c6ee..f6467727b 100644 --- a/doc/html/qt.dcf +++ b/doc/html/qt.dcf @@ -1474,124 +1474,124 @@ <section ref="tqdataview-members.html" title="List of All Member Functions"/> <section ref="tqdataview-h.html" title="Header File"/> </section> -<section ref="qdate.html" title="QDate Class Reference"> - <keyword ref="qdate.html">QDate</keyword> - <keyword ref="qdate.html#addDays">addDays</keyword> - <keyword ref="qdate.html#addMonths">addMonths</keyword> - <keyword ref="qdate.html#addYears">addYears</keyword> - <keyword ref="qdate.html#currentDate">currentDate</keyword> - <keyword ref="qdate.html#day">day</keyword> - <keyword ref="qdate.html#dayOfWeek">dayOfWeek</keyword> - <keyword ref="qdate.html#dayOfYear">dayOfYear</keyword> - <keyword ref="qdate.html#daysInMonth">daysInMonth</keyword> - <keyword ref="qdate.html#daysInYear">daysInYear</keyword> - <keyword ref="qdate.html#daysTo">daysTo</keyword> - <keyword ref="qdate.html#fromString">fromString</keyword> - <keyword ref="qdate.html#isNull">isNull</keyword> - <keyword ref="qdate.html#isValid">isValid</keyword> - <keyword ref="qdate.html#leapYear">leapYear</keyword> - <keyword ref="qdate.html#longDayName">longDayName</keyword> - <keyword ref="qdate.html#longMonthName">longMonthName</keyword> - <keyword ref="qdate.html#month">month</keyword> - <keyword ref="qdate.html#operator!-eq">operator!=</keyword> - <keyword ref="qdate.html#operator-lt">operator<</keyword> - <keyword ref="qdate.html#operator-lt-eq">operator<=</keyword> - <keyword ref="qdate.html#operator-eq-eq">operator==</keyword> - <keyword ref="qdate.html#operator-gt">operator></keyword> - <keyword ref="qdate.html#operator-gt-eq">operator>=</keyword> - <keyword ref="qdate.html#setYMD">setYMD</keyword> - <keyword ref="qdate.html#shortDayName">shortDayName</keyword> - <keyword ref="qdate.html#shortMonthName">shortMonthName</keyword> - <keyword ref="qdate.html#toString">toString</keyword> - <keyword ref="qdate.html#weekNumber">weekNumber</keyword> - <keyword ref="qdate.html#year">year</keyword> - <keyword ref="qdate.html#operator-lt-lt">operator<<</keyword> - <keyword ref="qdate.html#operator-gt-gt">operator>></keyword> - <section ref="qdate-members.html" title="List of All Member Functions"/> - <section ref="qdatetime-h.html" title="Header File"/> -</section> -<section ref="qdateedit.html" title="QDateEdit Class Reference"> - <keyword ref="qdateedit.html">QDateEdit</keyword> - <keyword ref="qdateedit.html#Order">Order</keyword> - <keyword ref="qdateedit.html#autoAdvance">autoAdvance</keyword> - <keyword ref="qdateedit.html#autoAdvance-prop">autoAdvance</keyword> - <keyword ref="qdateedit.html#date">date</keyword> - <keyword ref="qdateedit.html#date-prop">date</keyword> - <keyword ref="qdateedit.html#fix">fix</keyword> - <keyword ref="qdateedit.html#maxValue">maxValue</keyword> - <keyword ref="qdateedit.html#maxValue-prop">maxValue</keyword> - <keyword ref="qdateedit.html#minValue">minValue</keyword> - <keyword ref="qdateedit.html#minValue-prop">minValue</keyword> - <keyword ref="qdateedit.html#order">order</keyword> - <keyword ref="qdateedit.html#order-prop">order</keyword> - <keyword ref="qdateedit.html#sectionFormattedText">sectionFormattedText</keyword> - <keyword ref="qdateedit.html#sectionLength">sectionLength</keyword> - <keyword ref="qdateedit.html#sectionText">sectionText</keyword> - <keyword ref="qdateedit.html#separator">separator</keyword> - <keyword ref="qdateedit.html#setAutoAdvance">setAutoAdvance</keyword> - <keyword ref="qdateedit.html#setDate">setDate</keyword> - <keyword ref="qdateedit.html#setDay">setDay</keyword> - <keyword ref="qdateedit.html#setMaxValue">setMaxValue</keyword> - <keyword ref="qdateedit.html#setMinValue">setMinValue</keyword> - <keyword ref="qdateedit.html#setMonth">setMonth</keyword> - <keyword ref="qdateedit.html#setOrder">setOrder</keyword> - <keyword ref="qdateedit.html#setRange">setRange</keyword> - <keyword ref="qdateedit.html#setSeparator">setSeparator</keyword> - <keyword ref="qdateedit.html#setYear">setYear</keyword> - <keyword ref="qdateedit.html#updateButtons">updateButtons</keyword> - <keyword ref="qdateedit.html#valueChanged">valueChanged</keyword> - <keyword ref="qdateedit.html#~QDateEdit">~QDateEdit</keyword> - <section ref="qdateedit-members.html" title="List of All Member Functions"/> - <section ref="qdatetimeedit-h.html" title="Header File"/> -</section> -<section ref="ntqdatetime.html" title="QDateTime Class Reference"> - <keyword ref="ntqdatetime.html">QDateTime</keyword> - <keyword ref="ntqdatetime.html#addDays">addDays</keyword> - <keyword ref="ntqdatetime.html#addMonths">addMonths</keyword> - <keyword ref="ntqdatetime.html#addSecs">addSecs</keyword> - <keyword ref="ntqdatetime.html#addYears">addYears</keyword> - <keyword ref="ntqdatetime.html#currentDateTime">currentDateTime</keyword> - <keyword ref="ntqdatetime.html#date">date</keyword> - <keyword ref="ntqdatetime.html#daysTo">daysTo</keyword> - <keyword ref="ntqdatetime.html#fromString">fromString</keyword> - <keyword ref="ntqdatetime.html#isNull">isNull</keyword> - <keyword ref="ntqdatetime.html#isValid">isValid</keyword> - <keyword ref="ntqdatetime.html#operator!-eq">operator!=</keyword> - <keyword ref="ntqdatetime.html#operator-lt">operator<</keyword> - <keyword ref="ntqdatetime.html#operator-lt-eq">operator<=</keyword> - <keyword ref="ntqdatetime.html#operator-eq-eq">operator==</keyword> - <keyword ref="ntqdatetime.html#operator-gt">operator></keyword> - <keyword ref="ntqdatetime.html#operator-gt-eq">operator>=</keyword> - <keyword ref="ntqdatetime.html#secsTo">secsTo</keyword> - <keyword ref="ntqdatetime.html#setDate">setDate</keyword> - <keyword ref="ntqdatetime.html#setTime">setTime</keyword> - <keyword ref="ntqdatetime.html#setTime_t">setTime_t</keyword> - <keyword ref="ntqdatetime.html#time">time</keyword> - <keyword ref="ntqdatetime.html#toString">toString</keyword> - <keyword ref="ntqdatetime.html#toTime_t">toTime_t</keyword> - <keyword ref="ntqdatetime.html#operator-lt-lt">operator<<</keyword> - <keyword ref="ntqdatetime.html#operator-gt-gt">operator>></keyword> - <section ref="qdatetime-members.html" title="List of All Member Functions"/> - <section ref="qdatetime-h.html" title="Header File"/> -</section> -<section ref="ntqdatetimeedit.html" title="QDateTimeEdit Class Reference"> - <keyword ref="ntqdatetimeedit.html">QDateTimeEdit</keyword> - <keyword ref="ntqdatetimeedit.html#autoAdvance">autoAdvance</keyword> - <keyword ref="ntqdatetimeedit.html#dateEdit">dateEdit</keyword> - <keyword ref="ntqdatetimeedit.html#dateTime">dateTime</keyword> - <keyword ref="ntqdatetimeedit.html#dateTime-prop">dateTime</keyword> - <keyword ref="ntqdatetimeedit.html#setAutoAdvance">setAutoAdvance</keyword> - <keyword ref="ntqdatetimeedit.html#setDateTime">setDateTime</keyword> - <keyword ref="ntqdatetimeedit.html#timeEdit">timeEdit</keyword> - <keyword ref="ntqdatetimeedit.html#valueChanged">valueChanged</keyword> - <keyword ref="ntqdatetimeedit.html#~QDateTimeEdit">~QDateTimeEdit</keyword> - <section ref="qdatetimeedit-members.html" title="List of All Member Functions"/> - <section ref="qdatetimeedit-h.html" title="Header File"/> -</section> -<section ref="qdatetimeeditbase.html" title="QDateTimeEditBase Class Reference"> - <keyword ref="qdatetimeeditbase.html">QDateTimeEditBase</keyword> - <section ref="qdatetimeeditbase-members.html" title="List of All Member Functions"/> - <section ref="qdatetimeedit-h.html" title="Header File"/> +<section ref="tqdate.html" title="TQDate Class Reference"> + <keyword ref="tqdate.html">TQDate</keyword> + <keyword ref="tqdate.html#addDays">addDays</keyword> + <keyword ref="tqdate.html#addMonths">addMonths</keyword> + <keyword ref="tqdate.html#addYears">addYears</keyword> + <keyword ref="tqdate.html#currentDate">currentDate</keyword> + <keyword ref="tqdate.html#day">day</keyword> + <keyword ref="tqdate.html#dayOfWeek">dayOfWeek</keyword> + <keyword ref="tqdate.html#dayOfYear">dayOfYear</keyword> + <keyword ref="tqdate.html#daysInMonth">daysInMonth</keyword> + <keyword ref="tqdate.html#daysInYear">daysInYear</keyword> + <keyword ref="tqdate.html#daysTo">daysTo</keyword> + <keyword ref="tqdate.html#fromString">fromString</keyword> + <keyword ref="tqdate.html#isNull">isNull</keyword> + <keyword ref="tqdate.html#isValid">isValid</keyword> + <keyword ref="tqdate.html#leapYear">leapYear</keyword> + <keyword ref="tqdate.html#longDayName">longDayName</keyword> + <keyword ref="tqdate.html#longMonthName">longMonthName</keyword> + <keyword ref="tqdate.html#month">month</keyword> + <keyword ref="tqdate.html#operator!-eq">operator!=</keyword> + <keyword ref="tqdate.html#operator-lt">operator<</keyword> + <keyword ref="tqdate.html#operator-lt-eq">operator<=</keyword> + <keyword ref="tqdate.html#operator-eq-eq">operator==</keyword> + <keyword ref="tqdate.html#operator-gt">operator></keyword> + <keyword ref="tqdate.html#operator-gt-eq">operator>=</keyword> + <keyword ref="tqdate.html#setYMD">setYMD</keyword> + <keyword ref="tqdate.html#shortDayName">shortDayName</keyword> + <keyword ref="tqdate.html#shortMonthName">shortMonthName</keyword> + <keyword ref="tqdate.html#toString">toString</keyword> + <keyword ref="tqdate.html#weekNumber">weekNumber</keyword> + <keyword ref="tqdate.html#year">year</keyword> + <keyword ref="tqdate.html#operator-lt-lt">operator<<</keyword> + <keyword ref="tqdate.html#operator-gt-gt">operator>></keyword> + <section ref="tqdate-members.html" title="List of All Member Functions"/> + <section ref="tqdatetime-h.html" title="Header File"/> +</section> +<section ref="tqdateedit.html" title="TQDateEdit Class Reference"> + <keyword ref="tqdateedit.html">TQDateEdit</keyword> + <keyword ref="tqdateedit.html#Order">Order</keyword> + <keyword ref="tqdateedit.html#autoAdvance">autoAdvance</keyword> + <keyword ref="tqdateedit.html#autoAdvance-prop">autoAdvance</keyword> + <keyword ref="tqdateedit.html#date">date</keyword> + <keyword ref="tqdateedit.html#date-prop">date</keyword> + <keyword ref="tqdateedit.html#fix">fix</keyword> + <keyword ref="tqdateedit.html#maxValue">maxValue</keyword> + <keyword ref="tqdateedit.html#maxValue-prop">maxValue</keyword> + <keyword ref="tqdateedit.html#minValue">minValue</keyword> + <keyword ref="tqdateedit.html#minValue-prop">minValue</keyword> + <keyword ref="tqdateedit.html#order">order</keyword> + <keyword ref="tqdateedit.html#order-prop">order</keyword> + <keyword ref="tqdateedit.html#sectionFormattedText">sectionFormattedText</keyword> + <keyword ref="tqdateedit.html#sectionLength">sectionLength</keyword> + <keyword ref="tqdateedit.html#sectionText">sectionText</keyword> + <keyword ref="tqdateedit.html#separator">separator</keyword> + <keyword ref="tqdateedit.html#setAutoAdvance">setAutoAdvance</keyword> + <keyword ref="tqdateedit.html#setDate">setDate</keyword> + <keyword ref="tqdateedit.html#setDay">setDay</keyword> + <keyword ref="tqdateedit.html#setMaxValue">setMaxValue</keyword> + <keyword ref="tqdateedit.html#setMinValue">setMinValue</keyword> + <keyword ref="tqdateedit.html#setMonth">setMonth</keyword> + <keyword ref="tqdateedit.html#setOrder">setOrder</keyword> + <keyword ref="tqdateedit.html#setRange">setRange</keyword> + <keyword ref="tqdateedit.html#setSeparator">setSeparator</keyword> + <keyword ref="tqdateedit.html#setYear">setYear</keyword> + <keyword ref="tqdateedit.html#updateButtons">updateButtons</keyword> + <keyword ref="tqdateedit.html#valueChanged">valueChanged</keyword> + <keyword ref="tqdateedit.html#~TQDateEdit">~TQDateEdit</keyword> + <section ref="tqdateedit-members.html" title="List of All Member Functions"/> + <section ref="tqdatetimeedit-h.html" title="Header File"/> +</section> +<section ref="tqdatetime.html" title="TQDateTime Class Reference"> + <keyword ref="tqdatetime.html">TQDateTime</keyword> + <keyword ref="tqdatetime.html#addDays">addDays</keyword> + <keyword ref="tqdatetime.html#addMonths">addMonths</keyword> + <keyword ref="tqdatetime.html#addSecs">addSecs</keyword> + <keyword ref="tqdatetime.html#addYears">addYears</keyword> + <keyword ref="tqdatetime.html#currentDateTime">currentDateTime</keyword> + <keyword ref="tqdatetime.html#date">date</keyword> + <keyword ref="tqdatetime.html#daysTo">daysTo</keyword> + <keyword ref="tqdatetime.html#fromString">fromString</keyword> + <keyword ref="tqdatetime.html#isNull">isNull</keyword> + <keyword ref="tqdatetime.html#isValid">isValid</keyword> + <keyword ref="tqdatetime.html#operator!-eq">operator!=</keyword> + <keyword ref="tqdatetime.html#operator-lt">operator<</keyword> + <keyword ref="tqdatetime.html#operator-lt-eq">operator<=</keyword> + <keyword ref="tqdatetime.html#operator-eq-eq">operator==</keyword> + <keyword ref="tqdatetime.html#operator-gt">operator></keyword> + <keyword ref="tqdatetime.html#operator-gt-eq">operator>=</keyword> + <keyword ref="tqdatetime.html#secsTo">secsTo</keyword> + <keyword ref="tqdatetime.html#setDate">setDate</keyword> + <keyword ref="tqdatetime.html#setTime">setTime</keyword> + <keyword ref="tqdatetime.html#setTime_t">setTime_t</keyword> + <keyword ref="tqdatetime.html#time">time</keyword> + <keyword ref="tqdatetime.html#toString">toString</keyword> + <keyword ref="tqdatetime.html#toTime_t">toTime_t</keyword> + <keyword ref="tqdatetime.html#operator-lt-lt">operator<<</keyword> + <keyword ref="tqdatetime.html#operator-gt-gt">operator>></keyword> + <section ref="tqdatetime-members.html" title="List of All Member Functions"/> + <section ref="tqdatetime-h.html" title="Header File"/> +</section> +<section ref="tqdatetimeedit.html" title="TQDateTimeEdit Class Reference"> + <keyword ref="tqdatetimeedit.html">TQDateTimeEdit</keyword> + <keyword ref="tqdatetimeedit.html#autoAdvance">autoAdvance</keyword> + <keyword ref="tqdatetimeedit.html#dateEdit">dateEdit</keyword> + <keyword ref="tqdatetimeedit.html#dateTime">dateTime</keyword> + <keyword ref="tqdatetimeedit.html#dateTime-prop">dateTime</keyword> + <keyword ref="tqdatetimeedit.html#setAutoAdvance">setAutoAdvance</keyword> + <keyword ref="tqdatetimeedit.html#setDateTime">setDateTime</keyword> + <keyword ref="tqdatetimeedit.html#timeEdit">timeEdit</keyword> + <keyword ref="tqdatetimeedit.html#valueChanged">valueChanged</keyword> + <keyword ref="tqdatetimeedit.html#~TQDateTimeEdit">~TQDateTimeEdit</keyword> + <section ref="tqdatetimeedit-members.html" title="List of All Member Functions"/> + <section ref="tqdatetimeedit-h.html" title="Header File"/> +</section> +<section ref="tqdatetimeeditbase.html" title="TQDateTimeEditBase Class Reference"> + <keyword ref="tqdatetimeeditbase.html">TQDateTimeEditBase</keyword> + <section ref="tqdatetimeeditbase-members.html" title="List of All Member Functions"/> + <section ref="tqdatetimeedit-h.html" title="Header File"/> </section> <section ref="ntqdeepcopy.html" title="QDeepCopy Class Reference"> <keyword ref="ntqdeepcopy.html">QDeepCopy</keyword> @@ -7936,83 +7936,83 @@ <section ref="qthreadstorage-members.html" title="List of All Member Functions"/> <section ref="qthreadstorage-h.html" title="Header File"/> </section> -<section ref="qtime.html" title="QTime Class Reference"> - <keyword ref="qtime.html">QTime</keyword> - <keyword ref="qtime.html#addMSecs">addMSecs</keyword> - <keyword ref="qtime.html#addSecs">addSecs</keyword> - <keyword ref="qtime.html#currentTime">currentTime</keyword> - <keyword ref="qtime.html#elapsed">elapsed</keyword> - <keyword ref="qtime.html#fromString">fromString</keyword> - <keyword ref="qtime.html#hour">hour</keyword> - <keyword ref="qtime.html#isNull">isNull</keyword> - <keyword ref="qtime.html#isValid">isValid</keyword> - <keyword ref="qtime.html#minute">minute</keyword> - <keyword ref="qtime.html#msec">msec</keyword> - <keyword ref="qtime.html#msecsTo">msecsTo</keyword> - <keyword ref="qtime.html#operator!-eq">operator!=</keyword> - <keyword ref="qtime.html#operator-lt">operator<</keyword> - <keyword ref="qtime.html#operator-lt-eq">operator<=</keyword> - <keyword ref="qtime.html#operator-eq-eq">operator==</keyword> - <keyword ref="qtime.html#operator-gt">operator></keyword> - <keyword ref="qtime.html#operator-gt-eq">operator>=</keyword> - <keyword ref="qtime.html#restart">restart</keyword> - <keyword ref="qtime.html#second">second</keyword> - <keyword ref="qtime.html#secsTo">secsTo</keyword> - <keyword ref="qtime.html#setHMS">setHMS</keyword> - <keyword ref="qtime.html#start">start</keyword> - <keyword ref="qtime.html#toString">toString</keyword> - <keyword ref="qtime.html#operator-lt-lt">operator<<</keyword> - <keyword ref="qtime.html#operator-gt-gt">operator>></keyword> - <section ref="qtime-members.html" title="List of All Member Functions"/> - <section ref="qdatetime-h.html" title="Header File"/> -</section> -<section ref="qtimeedit.html" title="QTimeEdit Class Reference"> - <keyword ref="qtimeedit.html">QTimeEdit</keyword> - <keyword ref="qtimeedit.html#Display">Display</keyword> - <keyword ref="qtimeedit.html#autoAdvance">autoAdvance</keyword> - <keyword ref="qtimeedit.html#autoAdvance-prop">autoAdvance</keyword> - <keyword ref="qtimeedit.html#display">display</keyword> - <keyword ref="qtimeedit.html#display-prop">display</keyword> - <keyword ref="qtimeedit.html#maxValue">maxValue</keyword> - <keyword ref="qtimeedit.html#maxValue-prop">maxValue</keyword> - <keyword ref="qtimeedit.html#minValue">minValue</keyword> - <keyword ref="qtimeedit.html#minValue-prop">minValue</keyword> - <keyword ref="qtimeedit.html#sectionFormattedText">sectionFormattedText</keyword> - <keyword ref="qtimeedit.html#separator">separator</keyword> - <keyword ref="qtimeedit.html#setAutoAdvance">setAutoAdvance</keyword> - <keyword ref="qtimeedit.html#setDisplay">setDisplay</keyword> - <keyword ref="qtimeedit.html#setHour">setHour</keyword> - <keyword ref="qtimeedit.html#setMaxValue">setMaxValue</keyword> - <keyword ref="qtimeedit.html#setMinValue">setMinValue</keyword> - <keyword ref="qtimeedit.html#setMinute">setMinute</keyword> - <keyword ref="qtimeedit.html#setRange">setRange</keyword> - <keyword ref="qtimeedit.html#setSecond">setSecond</keyword> - <keyword ref="qtimeedit.html#setSeparator">setSeparator</keyword> - <keyword ref="qtimeedit.html#setTime">setTime</keyword> - <keyword ref="qtimeedit.html#time">time</keyword> - <keyword ref="qtimeedit.html#time-prop">time</keyword> - <keyword ref="qtimeedit.html#valueChanged">valueChanged</keyword> - <keyword ref="qtimeedit.html#~QTimeEdit">~QTimeEdit</keyword> - <section ref="qtimeedit-members.html" title="List of All Member Functions"/> - <section ref="qdatetimeedit-h.html" title="Header File"/> -</section> -<section ref="ntqtimer.html" title="QTimer Class Reference"> - <keyword ref="ntqtimer.html">QTimer</keyword> - <keyword ref="ntqtimer.html#changeInterval">changeInterval</keyword> - <keyword ref="ntqtimer.html#isActive">isActive</keyword> - <keyword ref="ntqtimer.html#singleShot">singleShot</keyword> - <keyword ref="ntqtimer.html#start">start</keyword> - <keyword ref="ntqtimer.html#stop">stop</keyword> - <keyword ref="ntqtimer.html#timeout">timeout</keyword> - <keyword ref="ntqtimer.html#timerId">timerId</keyword> - <keyword ref="ntqtimer.html#~QTimer">~QTimer</keyword> - <section ref="qtimer-members.html" title="List of All Member Functions"/> - <section ref="qtimer-h.html" title="Header File"/> -</section> -<section ref="qtimerevent.html" title="QTimerEvent Class Reference"> - <keyword ref="qtimerevent.html">QTimerEvent</keyword> - <keyword ref="qtimerevent.html#timerId">timerId</keyword> - <section ref="qtimerevent-members.html" title="List of All Member Functions"/> +<section ref="tqtime.html" title="TQTime Class Reference"> + <keyword ref="tqtime.html">TQTime</keyword> + <keyword ref="tqtime.html#addMSecs">addMSecs</keyword> + <keyword ref="tqtime.html#addSecs">addSecs</keyword> + <keyword ref="tqtime.html#currentTime">currentTime</keyword> + <keyword ref="tqtime.html#elapsed">elapsed</keyword> + <keyword ref="tqtime.html#fromString">fromString</keyword> + <keyword ref="tqtime.html#hour">hour</keyword> + <keyword ref="tqtime.html#isNull">isNull</keyword> + <keyword ref="tqtime.html#isValid">isValid</keyword> + <keyword ref="tqtime.html#minute">minute</keyword> + <keyword ref="tqtime.html#msec">msec</keyword> + <keyword ref="tqtime.html#msecsTo">msecsTo</keyword> + <keyword ref="tqtime.html#operator!-eq">operator!=</keyword> + <keyword ref="tqtime.html#operator-lt">operator<</keyword> + <keyword ref="tqtime.html#operator-lt-eq">operator<=</keyword> + <keyword ref="tqtime.html#operator-eq-eq">operator==</keyword> + <keyword ref="tqtime.html#operator-gt">operator></keyword> + <keyword ref="tqtime.html#operator-gt-eq">operator>=</keyword> + <keyword ref="tqtime.html#restart">restart</keyword> + <keyword ref="tqtime.html#second">second</keyword> + <keyword ref="tqtime.html#secsTo">secsTo</keyword> + <keyword ref="tqtime.html#setHMS">setHMS</keyword> + <keyword ref="tqtime.html#start">start</keyword> + <keyword ref="tqtime.html#toString">toString</keyword> + <keyword ref="tqtime.html#operator-lt-lt">operator<<</keyword> + <keyword ref="tqtime.html#operator-gt-gt">operator>></keyword> + <section ref="tqtime-members.html" title="List of All Member Functions"/> + <section ref="tqdatetime-h.html" title="Header File"/> +</section> +<section ref="tqtimeedit.html" title="TQTimeEdit Class Reference"> + <keyword ref="tqtimeedit.html">TQTimeEdit</keyword> + <keyword ref="tqtimeedit.html#Display">Display</keyword> + <keyword ref="tqtimeedit.html#autoAdvance">autoAdvance</keyword> + <keyword ref="tqtimeedit.html#autoAdvance-prop">autoAdvance</keyword> + <keyword ref="tqtimeedit.html#display">display</keyword> + <keyword ref="tqtimeedit.html#display-prop">display</keyword> + <keyword ref="tqtimeedit.html#maxValue">maxValue</keyword> + <keyword ref="tqtimeedit.html#maxValue-prop">maxValue</keyword> + <keyword ref="tqtimeedit.html#minValue">minValue</keyword> + <keyword ref="tqtimeedit.html#minValue-prop">minValue</keyword> + <keyword ref="tqtimeedit.html#sectionFormattedText">sectionFormattedText</keyword> + <keyword ref="tqtimeedit.html#separator">separator</keyword> + <keyword ref="tqtimeedit.html#setAutoAdvance">setAutoAdvance</keyword> + <keyword ref="tqtimeedit.html#setDisplay">setDisplay</keyword> + <keyword ref="tqtimeedit.html#setHour">setHour</keyword> + <keyword ref="tqtimeedit.html#setMaxValue">setMaxValue</keyword> + <keyword ref="tqtimeedit.html#setMinValue">setMinValue</keyword> + <keyword ref="tqtimeedit.html#setMinute">setMinute</keyword> + <keyword ref="tqtimeedit.html#setRange">setRange</keyword> + <keyword ref="tqtimeedit.html#setSecond">setSecond</keyword> + <keyword ref="tqtimeedit.html#setSeparator">setSeparator</keyword> + <keyword ref="tqtimeedit.html#setTime">setTime</keyword> + <keyword ref="tqtimeedit.html#time">time</keyword> + <keyword ref="tqtimeedit.html#time-prop">time</keyword> + <keyword ref="tqtimeedit.html#valueChanged">valueChanged</keyword> + <keyword ref="tqtimeedit.html#~TQTimeEdit">~TQTimeEdit</keyword> + <section ref="tqtimeedit-members.html" title="List of All Member Functions"/> + <section ref="tqdatetimeedit-h.html" title="Header File"/> +</section> +<section ref="tqtimer.html" title="TQTimer Class Reference"> + <keyword ref="tqtimer.html">TQTimer</keyword> + <keyword ref="tqtimer.html#changeInterval">changeInterval</keyword> + <keyword ref="tqtimer.html#isActive">isActive</keyword> + <keyword ref="tqtimer.html#singleShot">singleShot</keyword> + <keyword ref="tqtimer.html#start">start</keyword> + <keyword ref="tqtimer.html#stop">stop</keyword> + <keyword ref="tqtimer.html#timeout">timeout</keyword> + <keyword ref="tqtimer.html#timerId">timerId</keyword> + <keyword ref="tqtimer.html#~TQTimer">~TQTimer</keyword> + <section ref="tqtimer-members.html" title="List of All Member Functions"/> + <section ref="tqtimer-h.html" title="Header File"/> +</section> +<section ref="tqtimerevent.html" title="TQTimerEvent Class Reference"> + <keyword ref="tqtimerevent.html">TQTimerEvent</keyword> + <keyword ref="tqtimerevent.html#timerId">timerId</keyword> + <section ref="tqtimerevent-members.html" title="List of All Member Functions"/> <section ref="qevent-h.html" title="Header File"/> </section> <section ref="ntqtoolbar.html" title="QToolBar Class Reference"> diff --git a/doc/html/qurlinfo-h.html b/doc/html/qurlinfo-h.html index 46406f69a..63431643b 100644 --- a/doc/html/qurlinfo-h.html +++ b/doc/html/qurlinfo-h.html @@ -78,7 +78,7 @@ body { background: #ffffff; color: black; } #define TQURLINFO_H #ifndef QT_H -#include "ntqdatetime.h" +#include "tqdatetime.h" #include "tqstring.h" #endif // QT_H diff --git a/doc/html/sql-overview-subclass5-main-h.html b/doc/html/sql-overview-subclass5-main-h.html index 35c132e4a..7c1d0c930 100644 --- a/doc/html/sql-overview-subclass5-main-h.html +++ b/doc/html/sql-overview-subclass5-main-h.html @@ -43,7 +43,7 @@ body { background: #ffffff; color: black; } *****************************************************************************/ #include <<a href="qapplication-h.html">ntqapplication.h</a>> -#include <<a href="qdatetime-h.html">ntqdatetime.h</a>> +#include <<a href="tqdatetime-h.html">tqdatetime.h</a>> #include <<a href="tqsqldatabase-h.html">tqsqldatabase.h</a>> #include <<a href="tqsqlcursor-h.html">tqsqlcursor.h</a>> #include "../connection.h" diff --git a/doc/html/t11-cannon-cpp.html b/doc/html/t11-cannon-cpp.html index 96e7a0545..86c56baf7 100644 --- a/doc/html/t11-cannon-cpp.html +++ b/doc/html/t11-cannon-cpp.html @@ -39,7 +39,7 @@ body { background: #ffffff; color: black; } ****************************************************************/ #include "cannon.h" -#include <<a href="qtimer-h.html">ntqtimer.h</a>> +#include <<a href="tqtimer-h.html">tqtimer.h</a>> #include <<a href="qpainter-h.html">ntqpainter.h</a>> #include <<a href="qpixmap-h.html">ntqpixmap.h</a>> @@ -52,8 +52,8 @@ body { background: #ffffff; color: black; } ang = 45; f = 0; timerCount = 0; - autoShootTimer = new <a href="ntqtimer.html">TQTimer</a>( this, "movement handler" ); - <a href="tqobject.html#connect">connect</a>( autoShootTimer, TQ_SIGNAL(<a href="ntqtimer.html#timeout">timeout</a>()), + autoShootTimer = new <a href="tqtimer.html">TQTimer</a>( this, "movement handler" ); + <a href="tqobject.html#connect">connect</a>( autoShootTimer, TQ_SIGNAL(<a href="tqtimer.html#timeout">timeout</a>()), this, TQ_SLOT(moveShot()) ); shoot_ang = 0; shoot_f = 0; @@ -88,12 +88,12 @@ void <a name="f59"></a>CannonField::setForce( int newton ) void <a name="f60"></a>CannonField::shoot() { - if ( autoShootTimer-><a href="ntqtimer.html#isActive">isActive</a>() ) + if ( autoShootTimer-><a href="tqtimer.html#isActive">isActive</a>() ) return; timerCount = 0; shoot_ang = ang; shoot_f = f; - autoShootTimer-><a href="ntqtimer.html#start">start</a>( 50 ); + autoShootTimer-><a href="tqtimer.html#start">start</a>( 50 ); } @@ -105,7 +105,7 @@ void <a name="f61"></a>CannonField::moveShot() <a href="ntqrect.html">TQRect</a> shotR = shotRect(); if ( shotR.<a href="ntqrect.html#x">x</a>() > width() || shotR.<a href="ntqrect.html#y">y</a>() > height() ) - autoShootTimer-><a href="ntqtimer.html#stop">stop</a>(); + autoShootTimer-><a href="tqtimer.html#stop">stop</a>(); else r = r.<a href="ntqrect.html#unite">unite</a>( TQRegion( shotR ) ); <a href="tqwidget.html#repaint">repaint</a>( r ); @@ -119,7 +119,7 @@ void CannonField::<a href="tqwidget.html#paintEvent">paintEvent</a>( <a href="qp if ( updateR.<a href="ntqrect.html#intersects">intersects</a>( cannonRect() ) ) paintCannon( &p ); - if ( autoShootTimer-><a href="ntqtimer.html#isActive">isActive</a>() && + if ( autoShootTimer-><a href="tqtimer.html#isActive">isActive</a>() && updateR.<a href="ntqrect.html#intersects">intersects</a>( shotRect() ) ) paintShot( &p ); } diff --git a/doc/html/t11-cannon-h.html b/doc/html/t11-cannon-h.html index c9fdd504d..8f96231f7 100644 --- a/doc/html/t11-cannon-h.html +++ b/doc/html/t11-cannon-h.html @@ -82,7 +82,7 @@ private: int f; int timerCount; - <a href="ntqtimer.html">TQTimer</a> * autoShootTimer; + <a href="tqtimer.html">TQTimer</a> * autoShootTimer; float shoot_ang; float shoot_f; }; diff --git a/doc/html/t12-cannon-cpp.html b/doc/html/t12-cannon-cpp.html index ec0e6e0f1..704d75fd8 100644 --- a/doc/html/t12-cannon-cpp.html +++ b/doc/html/t12-cannon-cpp.html @@ -39,10 +39,10 @@ body { background: #ffffff; color: black; } ****************************************************************/ #include "cannon.h" -#include <<a href="qtimer-h.html">ntqtimer.h</a>> +#include <<a href="tqtimer-h.html">tqtimer.h</a>> #include <<a href="qpainter-h.html">ntqpainter.h</a>> #include <<a href="qpixmap-h.html">ntqpixmap.h</a>> -#include <<a href="qdatetime-h.html">ntqdatetime.h</a>> +#include <<a href="tqdatetime-h.html">tqdatetime.h</a>> #include <math.h> #include <stdlib.h> @@ -54,8 +54,8 @@ body { background: #ffffff; color: black; } ang = 45; f = 0; timerCount = 0; - autoShootTimer = new <a href="ntqtimer.html">TQTimer</a>( this, "movement handler" ); - <a href="tqobject.html#connect">connect</a>( autoShootTimer, TQ_SIGNAL(<a href="ntqtimer.html#timeout">timeout</a>()), + autoShootTimer = new <a href="tqtimer.html">TQTimer</a>( this, "movement handler" ); + <a href="tqobject.html#connect">connect</a>( autoShootTimer, TQ_SIGNAL(<a href="tqtimer.html#timeout">timeout</a>()), this, TQ_SLOT(moveShot()) ); shoot_ang = 0; shoot_f = 0; @@ -92,12 +92,12 @@ void <a name="f76"></a>CannonField::setForce( int newton ) void <a name="f77"></a>CannonField::shoot() { - if ( autoShootTimer-><a href="ntqtimer.html#isActive">isActive</a>() ) + if ( autoShootTimer-><a href="tqtimer.html#isActive">isActive</a>() ) return; timerCount = 0; shoot_ang = ang; shoot_f = f; - autoShootTimer-><a href="ntqtimer.html#start">start</a>( 50 ); + autoShootTimer-><a href="tqtimer.html#start">start</a>( 50 ); } @@ -106,8 +106,8 @@ void <a name="f78"></a>CannonField::newTarget() static bool first_time = TRUE; if ( first_time ) { first_time = FALSE; - <a href="qtime.html">TQTime</a> midnight( 0, 0, 0 ); - srand( midnight.<a href="qtime.html#secsTo">secsTo</a>(TQTime::<a href="qtime.html#currentTime">currentTime</a>()) ); + <a href="tqtime.html">TQTime</a> midnight( 0, 0, 0 ); + srand( midnight.<a href="tqtime.html#secsTo">secsTo</a>(TQTime::<a href="tqtime.html#currentTime">currentTime</a>()) ); } <a href="ntqregion.html">TQRegion</a> r( targetRect() ); target = TQPoint( 200 + rand() % 190, @@ -124,10 +124,10 @@ void <a name="f79"></a>CannonField::moveShot() <a href="ntqrect.html">TQRect</a> shotR = shotRect(); if ( shotR.<a href="ntqrect.html#intersects">intersects</a>( targetRect() ) ) { - autoShootTimer-><a href="ntqtimer.html#stop">stop</a>(); + autoShootTimer-><a href="tqtimer.html#stop">stop</a>(); emit hit(); } else if ( shotR.<a href="ntqrect.html#x">x</a>() > width() || shotR.<a href="ntqrect.html#y">y</a>() > height() ) { - autoShootTimer-><a href="ntqtimer.html#stop">stop</a>(); + autoShootTimer-><a href="tqtimer.html#stop">stop</a>(); emit missed(); } else { r = r.<a href="ntqrect.html#unite">unite</a>( TQRegion( shotR ) ); @@ -144,7 +144,7 @@ void CannonField::<a href="tqwidget.html#paintEvent">paintEvent</a>( <a href="qp if ( updateR.<a href="ntqrect.html#intersects">intersects</a>( cannonRect() ) ) paintCannon( &p ); - if ( autoShootTimer-><a href="ntqtimer.html#isActive">isActive</a>() && + if ( autoShootTimer-><a href="tqtimer.html#isActive">isActive</a>() && updateR.<a href="ntqrect.html#intersects">intersects</a>( shotRect() ) ) paintShot( &p ); if ( updateR.<a href="ntqrect.html#intersects">intersects</a>( targetRect() ) ) diff --git a/doc/html/t12-cannon-h.html b/doc/html/t12-cannon-h.html index 91e94b095..299901260 100644 --- a/doc/html/t12-cannon-h.html +++ b/doc/html/t12-cannon-h.html @@ -87,7 +87,7 @@ private: int f; int timerCount; - <a href="ntqtimer.html">TQTimer</a> * autoShootTimer; + <a href="tqtimer.html">TQTimer</a> * autoShootTimer; float shoot_ang; float shoot_f; diff --git a/doc/html/t13-cannon-cpp.html b/doc/html/t13-cannon-cpp.html index be93bcc21..d41617e29 100644 --- a/doc/html/t13-cannon-cpp.html +++ b/doc/html/t13-cannon-cpp.html @@ -39,10 +39,10 @@ body { background: #ffffff; color: black; } ****************************************************************/ #include "cannon.h" -#include <<a href="qtimer-h.html">ntqtimer.h</a>> +#include <<a href="tqtimer-h.html">tqtimer.h</a>> #include <<a href="qpainter-h.html">ntqpainter.h</a>> #include <<a href="qpixmap-h.html">ntqpixmap.h</a>> -#include <<a href="qdatetime-h.html">ntqdatetime.h</a>> +#include <<a href="tqdatetime-h.html">tqdatetime.h</a>> #include <math.h> #include <stdlib.h> @@ -54,8 +54,8 @@ body { background: #ffffff; color: black; } ang = 45; f = 0; timerCount = 0; - autoShootTimer = new <a href="ntqtimer.html">TQTimer</a>( this, "movement handler" ); - <a href="tqobject.html#connect">connect</a>( autoShootTimer, TQ_SIGNAL(<a href="ntqtimer.html#timeout">timeout</a>()), + autoShootTimer = new <a href="tqtimer.html">TQTimer</a>( this, "movement handler" ); + <a href="tqobject.html#connect">connect</a>( autoShootTimer, TQ_SIGNAL(<a href="tqtimer.html#timeout">timeout</a>()), this, TQ_SLOT(moveShot()) ); shoot_ang = 0; shoot_f = 0; @@ -98,7 +98,7 @@ void <a name="f97"></a>CannonField::shoot() timerCount = 0; shoot_ang = ang; shoot_f = f; - autoShootTimer-><a href="ntqtimer.html#start">start</a>( 50 ); + autoShootTimer-><a href="tqtimer.html#start">start</a>( 50 ); emit canShoot( FALSE ); } @@ -108,8 +108,8 @@ void <a name="f98"></a>CannonField::newTarget() static bool first_time = TRUE; if ( first_time ) { first_time = FALSE; - <a href="qtime.html">TQTime</a> midnight( 0, 0, 0 ); - srand( midnight.<a href="qtime.html#secsTo">secsTo</a>(TQTime::<a href="qtime.html#currentTime">currentTime</a>()) ); + <a href="tqtime.html">TQTime</a> midnight( 0, 0, 0 ); + srand( midnight.<a href="tqtime.html#secsTo">secsTo</a>(TQTime::<a href="tqtime.html#currentTime">currentTime</a>()) ); } <a href="ntqregion.html">TQRegion</a> r( targetRect() ); target = TQPoint( 200 + rand() % 190, @@ -122,7 +122,7 @@ void <a name="f99"></a>CannonField::setGameOver() if ( gameEnded ) return; if ( isShooting() ) - autoShootTimer-><a href="ntqtimer.html#stop">stop</a>(); + autoShootTimer-><a href="tqtimer.html#stop">stop</a>(); gameEnded = TRUE; <a href="tqwidget.html#repaint">repaint</a>(); } @@ -130,7 +130,7 @@ void <a name="f99"></a>CannonField::setGameOver() void <a name="f100"></a>CannonField::restartGame() { if ( isShooting() ) - autoShootTimer-><a href="ntqtimer.html#stop">stop</a>(); + autoShootTimer-><a href="tqtimer.html#stop">stop</a>(); gameEnded = FALSE; <a href="tqwidget.html#repaint">repaint</a>(); emit canShoot( TRUE ); @@ -144,11 +144,11 @@ void <a name="f101"></a>CannonField::moveShot() <a href="ntqrect.html">TQRect</a> shotR = shotRect(); if ( shotR.<a href="ntqrect.html#intersects">intersects</a>( targetRect() ) ) { - autoShootTimer-><a href="ntqtimer.html#stop">stop</a>(); + autoShootTimer-><a href="tqtimer.html#stop">stop</a>(); emit hit(); emit canShoot( TRUE ); } else if ( shotR.<a href="ntqrect.html#x">x</a>() > width() || shotR.<a href="ntqrect.html#y">y</a>() > height() ) { - autoShootTimer-><a href="ntqtimer.html#stop">stop</a>(); + autoShootTimer-><a href="tqtimer.html#stop">stop</a>(); emit missed(); emit canShoot( TRUE ); } else { @@ -255,7 +255,7 @@ TQRect <a name="f107"></a>CannonField::targetRect() const bool <a name="f108"></a>CannonField::isShooting() const { - return autoShootTimer-><a href="ntqtimer.html#isActive">isActive</a>(); + return autoShootTimer-><a href="tqtimer.html#isActive">isActive</a>(); } diff --git a/doc/html/t13-cannon-h.html b/doc/html/t13-cannon-h.html index 317b28aa0..d92f2a058 100644 --- a/doc/html/t13-cannon-h.html +++ b/doc/html/t13-cannon-h.html @@ -92,7 +92,7 @@ private: int f; int timerCount; - <a href="ntqtimer.html">TQTimer</a> * autoShootTimer; + <a href="tqtimer.html">TQTimer</a> * autoShootTimer; float shoot_ang; float shoot_f; diff --git a/doc/html/t14-cannon-cpp.html b/doc/html/t14-cannon-cpp.html index 625040533..e51955539 100644 --- a/doc/html/t14-cannon-cpp.html +++ b/doc/html/t14-cannon-cpp.html @@ -39,10 +39,10 @@ body { background: #ffffff; color: black; } ****************************************************************/ #include "cannon.h" -#include <<a href="qtimer-h.html">ntqtimer.h</a>> +#include <<a href="tqtimer-h.html">tqtimer.h</a>> #include <<a href="qpainter-h.html">ntqpainter.h</a>> #include <<a href="qpixmap-h.html">ntqpixmap.h</a>> -#include <<a href="qdatetime-h.html">ntqdatetime.h</a>> +#include <<a href="tqdatetime-h.html">tqdatetime.h</a>> #include <math.h> #include <stdlib.h> @@ -54,8 +54,8 @@ body { background: #ffffff; color: black; } ang = 45; f = 0; timerCount = 0; - autoShootTimer = new <a href="ntqtimer.html">TQTimer</a>( this, "movement handler" ); - <a href="tqobject.html#connect">connect</a>( autoShootTimer, TQ_SIGNAL(<a href="ntqtimer.html#timeout">timeout</a>()), + autoShootTimer = new <a href="tqtimer.html">TQTimer</a>( this, "movement handler" ); + <a href="tqobject.html#connect">connect</a>( autoShootTimer, TQ_SIGNAL(<a href="tqtimer.html#timeout">timeout</a>()), this, TQ_SLOT(moveShot()) ); shoot_ang = 0; shoot_f = 0; @@ -99,7 +99,7 @@ void <a name="f124"></a>CannonField::shoot() timerCount = 0; shoot_ang = ang; shoot_f = f; - autoShootTimer-><a href="ntqtimer.html#start">start</a>( 50 ); + autoShootTimer-><a href="tqtimer.html#start">start</a>( 50 ); emit canShoot( FALSE ); } @@ -109,8 +109,8 @@ void <a name="f125"></a>CannonField::newTarget() static bool first_time = TRUE; if ( first_time ) { first_time = FALSE; - <a href="qtime.html">TQTime</a> midnight( 0, 0, 0 ); - srand( midnight.<a href="qtime.html#secsTo">secsTo</a>(TQTime::<a href="qtime.html#currentTime">currentTime</a>()) ); + <a href="tqtime.html">TQTime</a> midnight( 0, 0, 0 ); + srand( midnight.<a href="tqtime.html#secsTo">secsTo</a>(TQTime::<a href="tqtime.html#currentTime">currentTime</a>()) ); } <a href="ntqregion.html">TQRegion</a> r( targetRect() ); target = TQPoint( 200 + rand() % 190, @@ -123,7 +123,7 @@ void <a name="f126"></a>CannonField::setGameOver() if ( gameEnded ) return; if ( isShooting() ) - autoShootTimer-><a href="ntqtimer.html#stop">stop</a>(); + autoShootTimer-><a href="tqtimer.html#stop">stop</a>(); gameEnded = TRUE; <a href="tqwidget.html#repaint">repaint</a>(); } @@ -131,7 +131,7 @@ void <a name="f126"></a>CannonField::setGameOver() void <a name="f127"></a>CannonField::restartGame() { if ( isShooting() ) - autoShootTimer-><a href="ntqtimer.html#stop">stop</a>(); + autoShootTimer-><a href="tqtimer.html#stop">stop</a>(); gameEnded = FALSE; <a href="tqwidget.html#repaint">repaint</a>(); emit canShoot( TRUE ); @@ -145,12 +145,12 @@ void <a name="f128"></a>CannonField::moveShot() <a href="ntqrect.html">TQRect</a> shotR = shotRect(); if ( shotR.<a href="ntqrect.html#intersects">intersects</a>( targetRect() ) ) { - autoShootTimer-><a href="ntqtimer.html#stop">stop</a>(); + autoShootTimer-><a href="tqtimer.html#stop">stop</a>(); emit hit(); emit canShoot( TRUE ); } else if ( shotR.<a href="ntqrect.html#x">x</a>() > width() || shotR.<a href="ntqrect.html#y">y</a>() > height() || shotR.<a href="ntqrect.html#intersects">intersects</a>(barrierRect()) ) { - autoShootTimer-><a href="ntqtimer.html#stop">stop</a>(); + autoShootTimer-><a href="tqtimer.html#stop">stop</a>(); emit missed(); emit canShoot( TRUE ); } else { @@ -310,7 +310,7 @@ bool <a name="f137"></a>CannonField::barrelHit( const <a href="ntqpoint.html">TQ bool <a name="f138"></a>CannonField::isShooting() const { - return autoShootTimer-><a href="ntqtimer.html#isActive">isActive</a>(); + return autoShootTimer-><a href="tqtimer.html#isActive">isActive</a>(); } diff --git a/doc/html/t14-cannon-h.html b/doc/html/t14-cannon-h.html index 252e30384..f56315620 100644 --- a/doc/html/t14-cannon-h.html +++ b/doc/html/t14-cannon-h.html @@ -99,7 +99,7 @@ private: int f; int timerCount; - <a href="ntqtimer.html">TQTimer</a> * autoShootTimer; + <a href="tqtimer.html">TQTimer</a> * autoShootTimer; float shoot_ang; float shoot_f; diff --git a/doc/html/tabdialog-example.html b/doc/html/tabdialog-example.html index fd8288feb..db85192dc 100644 --- a/doc/html/tabdialog-example.html +++ b/doc/html/tabdialog-example.html @@ -93,7 +93,7 @@ protected: #include <<a href="qvbox-h.html">ntqvbox.h</a>> #include <<a href="qlabel-h.html">ntqlabel.h</a>> #include <<a href="qlineedit-h.html">ntqlineedit.h</a>> -#include <<a href="qdatetime-h.html">ntqdatetime.h</a>> +#include <<a href="tqdatetime-h.html">tqdatetime.h</a>> #include <<a href="qbuttongroup-h.html">ntqbuttongroup.h</a>> #include <<a href="qcheckbox-h.html">ntqcheckbox.h</a>> #include <<a href="qlistbox-h.html">ntqlistbox.h</a>> diff --git a/doc/html/threads.html b/doc/html/threads.html index 392d1c49c..eb3c50767 100644 --- a/doc/html/threads.html +++ b/doc/html/threads.html @@ -208,7 +208,7 @@ thread. <p> <ol type=1> <p> <li> <em>None</em> of the TQObject based classes included in the TQt library are <em>reentrant</em>. This includes all widgets (e.g. <a href="tqwidget.html">TQWidget</a> and -subclasses), OS kernel classes (e.g. <a href="ntqprocess.html">TQProcess</a>, <a href="ntqaccel.html">TQAccel</a>, <a href="ntqtimer.html">TQTimer</a>), and +subclasses), OS kernel classes (e.g. <a href="ntqprocess.html">TQProcess</a>, <a href="ntqaccel.html">TQAccel</a>, <a href="tqtimer.html">TQTimer</a>), and all networking classes (e.g. <a href="ntqsocket.html">TQSocket</a>, <a href="ntqdns.html">TQDns</a>). <p> <li> TQObject and all of its subclasses are <em>not</em> <em>thread-safe</em>. This includes the entire event delivery system. It is important to @@ -254,7 +254,7 @@ are examples of simple GUI operations: <p> Any operations that generate events must not be called by any thread other than the GUI thread. Examples of such operations are: <p> <ul> -<li> creating a <a href="tqwidget.html">TQWidget</a>, <a href="ntqtimer.html">TQTimer</a>, <a href="ntqsocketnotifier.html">TQSocketNotifier</a>, <a href="ntqsocket.html">TQSocket</a> or other network class. +<li> creating a <a href="tqwidget.html">TQWidget</a>, <a href="tqtimer.html">TQTimer</a>, <a href="ntqsocketnotifier.html">TQSocketNotifier</a>, <a href="ntqsocket.html">TQSocket</a> or other network class. <li> moving, resizing, showing or hiding a TQWidget. <li> starting or stoping a TQTimer. <li> enabling or disabling a TQSocketNotifier. diff --git a/doc/html/tictac-example.html b/doc/html/tictac-example.html index ae4812965..53bf4a19f 100644 --- a/doc/html/tictac-example.html +++ b/doc/html/tictac-example.html @@ -171,7 +171,7 @@ private: #include <<a href="qlabel-h.html">ntqlabel.h</a>> #include <<a href="qlayout-h.html">ntqlayout.h</a>> #include <stdlib.h> // rand() function -#include <<a href="qdatetime-h.html">ntqdatetime.h</a>> // seed for rand() +#include <<a href="tqdatetime-h.html">tqdatetime.h</a>> // seed for rand() //*************************************************************************** @@ -233,8 +233,8 @@ private: buttons->insert( i, ttb ); btArray->at(i) = TicTacButton::Blank; // initial button type } -<a name="x40"></a> <a href="qtime.html">TQTime</a> t = TQTime::<a href="qtime.html#currentTime">currentTime</a>(); // set random seed -<a name="x43"></a><a name="x42"></a><a name="x41"></a> srand( t.<a href="qtime.html#hour">hour</a>()*12+t.<a href="qtime.html#minute">minute</a>()*60+t.<a href="qtime.html#second">second</a>()*60 ); +<a name="x40"></a> <a href="tqtime.html">TQTime</a> t = TQTime::<a href="tqtime.html#currentTime">currentTime</a>(); // set random seed +<a name="x43"></a><a name="x42"></a><a name="x41"></a> srand( t.<a href="tqtime.html#hour">hour</a>()*12+t.<a href="tqtime.html#minute">minute</a>()*60+t.<a href="tqtime.html#second">second</a>()*60 ); } TicTacGameBoard::~TicTacGameBoard() diff --git a/doc/html/time.html b/doc/html/time.html index 3d571f04c..f5f8ec1ea 100644 --- a/doc/html/time.html +++ b/doc/html/time.html @@ -36,13 +36,13 @@ body { background: #ffffff; color: black; } <p> <p>Also available: <a href="y2k.html">TQt Year 2000 Compliance Statement</a>. <p><table width="100%"> -<tr bgcolor=#f0f0f0><td><b><a href="qdate.html">TQDate</a></b><td>Date functions -<tr bgcolor=#f0f0f0><td><b><a href="qdateedit.html">TQDateEdit</a></b><td>Date editor -<tr bgcolor=#f0f0f0><td><b><a href="ntqdatetime.html">TQDateTime</a></b><td>Date and time functions -<tr bgcolor=#f0f0f0><td><b><a href="ntqdatetimeedit.html">TQDateTimeEdit</a></b><td>Combines a TQDateEdit and TQTimeEdit widget into a single widget for editing datetimes -<tr bgcolor=#f0f0f0><td><b><a href="qtime.html">TQTime</a></b><td>Clock time functions -<tr bgcolor=#f0f0f0><td><b><a href="qtimeedit.html">TQTimeEdit</a></b><td>Time editor -<tr bgcolor=#f0f0f0><td><b><a href="ntqtimer.html">TQTimer</a></b><td>Timer signals and single-shot timers +<tr bgcolor=#f0f0f0><td><b><a href="tqdate.html">TQDate</a></b><td>Date functions +<tr bgcolor=#f0f0f0><td><b><a href="tqdateedit.html">TQDateEdit</a></b><td>Date editor +<tr bgcolor=#f0f0f0><td><b><a href="tqdatetime.html">TQDateTime</a></b><td>Date and time functions +<tr bgcolor=#f0f0f0><td><b><a href="tqdatetimeedit.html">TQDateTimeEdit</a></b><td>Combines a TQDateEdit and TQTimeEdit widget into a single widget for editing datetimes +<tr bgcolor=#f0f0f0><td><b><a href="tqtime.html">TQTime</a></b><td>Clock time functions +<tr bgcolor=#f0f0f0><td><b><a href="tqtimeedit.html">TQTimeEdit</a></b><td>Time editor +<tr bgcolor=#f0f0f0><td><b><a href="tqtimer.html">TQTimer</a></b><td>Timer signals and single-shot timers </table> <!-- eof --> <p><address><hr><div align=center> diff --git a/doc/html/timers.html b/doc/html/timers.html index 7c9415a1c..bd53ca7d8 100644 --- a/doc/html/timers.html +++ b/doc/html/timers.html @@ -41,7 +41,7 @@ milliseconds, until you explicitly call <a href="tqobject.html#killTimer">TQObje the timer id. <p> For this mechanism to work, the application must run in an event loop. You start an event loop with <a href="ntqapplication.html#exec">TQApplication::exec</a>(). When a -timer fires, the application sends a <a href="qtimerevent.html">TQTimerEvent</a>, and the flow of +timer fires, the application sends a <a href="tqtimerevent.html">TQTimerEvent</a>, and the flow of control leaves the event loop until the timer event is processed. This implies that a timer cannot fire while your application is busy doing something else. In other words: the accuracy of timers depends on the @@ -51,26 +51,26 @@ one year is possible). The accuracy depends on the underlying operating system. Windows 95/98 has 55 millisecond (18.2 times per second) accuracy; other systems that we have tested (UNIX X11 and Windows NT) can handle 1 millisecond intervals. -<p> The main API for the timer functionality is <a href="ntqtimer.html">TQTimer</a>. That class +<p> The main API for the timer functionality is <a href="tqtimer.html">TQTimer</a>. That class provides regular timers that emit a signal when the timer fires, and inherits <a href="tqobject.html">TQObject</a> so that it fits well into the ownership structure of most GUI programs. The normal way of using it is like this: <pre> - <a href="ntqtimer.html">TQTimer</a> * counter = new <a href="ntqtimer.html">TQTimer</a>( this ); - connect( counter, TQ_SIGNAL(<a href="ntqtimer.html#timeout">timeout</a>()), + <a href="tqtimer.html">TQTimer</a> * counter = new <a href="tqtimer.html">TQTimer</a>( this ); + connect( counter, TQ_SIGNAL(<a href="tqtimer.html#timeout">timeout</a>()), this, TQ_SLOT(updateCaption()) ); - counter-><a href="ntqtimer.html#start">start</a>( 1000 ); + counter-><a href="tqtimer.html#start">start</a>( 1000 ); </pre> <p> The counter timer is made into a child of this widget, so that when this widget is deleted, the timer is deleted too. Next, its timeout signal is connected to the slot that will do the work, and finally it's started. -<p> <a href="ntqtimer.html">TQTimer</a> also provides a simple one-shot timer API. <a href="ntqbutton.html">TQButton</a> uses this +<p> <a href="tqtimer.html">TQTimer</a> also provides a simple one-shot timer API. <a href="ntqbutton.html">TQButton</a> uses this to show the button being pressed down and then (0.1 seconds later) be released when the keyboard is used to "press" a button, for example: <p> <pre> - TQTimer::<a href="ntqtimer.html#singleShot">singleShot</a>( 100, this, TQ_SLOT(animateTimeout()) ); + TQTimer::<a href="tqtimer.html#singleShot">singleShot</a>( 100, this, TQ_SLOT(animateTimeout()) ); </pre> <p> 0.1 seconds after this line of code is executed, the same button's @@ -100,7 +100,7 @@ single-threaded application without blocking the user interface. private slots: void calculate(); private: - <a href="ntqtimer.html">TQTimer</a> timer; + <a href="tqtimer.html">TQTimer</a> timer; ... }; @@ -111,7 +111,7 @@ single-threaded application without blocking the user interface. Mandelbrot::Mandelbrot( <a href="tqobject.html">TQObject</a> *parent=0, const char *name ) : <a href="tqobject.html">TQObject</a>( parent, name ) { - <a href="tqobject.html#connect">connect</a>( &timer, TQ_SIGNAL(<a href="ntqtimer.html#timeout">timeout</a>()), TQ_SLOT(calculate()) ); + <a href="tqobject.html#connect">connect</a>( &timer, TQ_SIGNAL(<a href="tqtimer.html#timeout">timeout</a>()), TQ_SLOT(calculate()) ); ... } @@ -122,8 +122,8 @@ single-threaded application without blocking the user interface. void Mandelbrot::start() { - if ( !timer.<a href="ntqtimer.html#isActive">isActive</a>() ) // not already running - timer.<a href="ntqtimer.html#start">start</a>( 10 ); // timeout every 10 ms + if ( !timer.<a href="tqtimer.html#isActive">isActive</a>() ) // not already running + timer.<a href="tqtimer.html#start">start</a>( 10 ); // timeout every 10 ms } // @@ -135,7 +135,7 @@ single-threaded application without blocking the user interface. { ... // perform the calculation for a scanline if ( finished ) { // no more scanlines - timer.<a href="ntqtimer.html#stop">stop</a>(); + timer.<a href="tqtimer.html#stop">stop</a>(); emit done(); } } diff --git a/doc/html/titleindex b/doc/html/titleindex index 309ddf8e5..2cedaf9ab 100644 --- a/doc/html/titleindex +++ b/doc/html/titleindex @@ -272,16 +272,16 @@ TQDataTable Class | tqdatatable.html TQDataTable Member List | tqdatatable-members.html TQDataView Class | tqdataview.html TQDataView Member List | tqdataview-members.html -QDate Class | qdate.html -QDate Member List | qdate-members.html -QDateEdit Class | qdateedit.html -QDateEdit Member List | qdateedit-members.html -QDateTime Class | ntqdatetime.html -QDateTime Member List | qdatetime-members.html -QDateTimeEdit Class | ntqdatetimeedit.html -QDateTimeEdit Member List | qdatetimeedit-members.html -QDateTimeEditBase Class | qdatetimeeditbase.html -QDateTimeEditBase Member List | qdatetimeeditbase-members.html +TQDate Class | tqdate.html +TQDate Member List | tqdate-members.html +TQDateEdit Class | tqdateedit.html +TQDateEdit Member List | tqdateedit-members.html +TQDateTime Class | tqdatetime.html +TQDateTime Member List | tqdatetime-members.html +TQDateTimeEdit Class | tqdatetimeedit.html +TQDateTimeEdit Member List | tqdatetimeedit-members.html +TQDateTimeEditBase Class | tqdatetimeeditbase.html +TQDateTimeEditBase Member List | tqdatetimeeditbase-members.html QDeepCopy Class | ntqdeepcopy.html QDeepCopy Member List | qdeepcopy-members.html QDesktopWidget Class | ntqdesktopwidget.html @@ -826,14 +826,14 @@ QThread Class | ntqthread.html QThread Member List | qthread-members.html QThreadStorage Class | ntqthreadstorage.html QThreadStorage Member List | qthreadstorage-members.html -QTime Class | qtime.html -QTime Member List | qtime-members.html -QTimeEdit Class | qtimeedit.html -QTimeEdit Member List | qtimeedit-members.html -QTimer Class | ntqtimer.html -QTimer Member List | qtimer-members.html -QTimerEvent Class | qtimerevent.html -QTimerEvent Member List | qtimerevent-members.html +TQTime Class | tqtime.html +TQTime Member List | tqtime-members.html +TQTimeEdit Class | tqtimeedit.html +TQTimeEdit Member List | tqtimeedit-members.html +TQTimer Class | tqtimer.html +TQTimer Member List | tqtimer-members.html +TQTimerEvent Class | tqtimerevent.html +TQTimerEvent Member List | tqtimerevent-members.html QToolBar Class | ntqtoolbar.html QToolBar Member List | qtoolbar-members.html QToolBox Class | ntqtoolbox.html @@ -1102,8 +1102,8 @@ tqdatabrowser.h Include File | tqdatabrowser-h.html ntqdatastream.h Include File | qdatastream-h.html tqdatatable.h Include File | tqdatatable-h.html tqdataview.h Include File | tqdataview-h.html -ntqdatetime.h Include File | qdatetime-h.html -ntqdatetimeedit.h Include File | qdatetimeedit-h.html +tqdatetime.h Include File | tqdatetime-h.html +tqdatetimeedit.h Include File | tqdatetimeedit-h.html ntqdeepcopy.h Include File | qdeepcopy-h.html ntqdesktopwidget.h Include File | qdesktopwidget-h.html ntqdial.h Include File | qdial-h.html @@ -1279,7 +1279,7 @@ tqtextstream.h Include File | tqtextstream-h.html tqtextview.h Include File | tqtextview-h.html ntqthread.h Include File | qthread-h.html ntqthreadstorage.h Include File | qthreadstorage-h.html -ntqtimer.h Include File | qtimer-h.html +tqtimer.h Include File | tqtimer-h.html ntqtoolbar.h Include File | qtoolbar-h.html ntqtoolbox.h Include File | qtoolbox-h.html ntqtoolbutton.h Include File | qtoolbutton-h.html diff --git a/doc/html/tqdate-members.html b/doc/html/tqdate-members.html new file mode 100644 index 000000000..ada79afa0 --- /dev/null +++ b/doc/html/tqdate-members.html @@ -0,0 +1,78 @@ +<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN"> +<!-- /home/espenr/tmp/qt-3.3.8-espenr-2499/qt-x11-free-3.3.8/include/tqdatetime.h:52 --> +<html> +<head> +<meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-1"> +<title>TQDate Member List</title> +<style type="text/css"><!-- +fn { margin-left: 1cm; text-indent: -1cm; } +a:link { color: #004faf; text-decoration: none } +a:visited { color: #672967; text-decoration: none } +body { background: #ffffff; color: black; } +--></style> +</head> +<body> + +<table border="0" cellpadding="0" cellspacing="0" width="100%"> +<tr bgcolor="#E5E5E5"> +<td valign=center> + <a href="index.html"> +<font color="#004faf">Home</font></a> + | <a href="classes.html"> +<font color="#004faf">All Classes</font></a> + | <a href="mainclasses.html"> +<font color="#004faf">Main Classes</font></a> + | <a href="annotated.html"> +<font color="#004faf">Annotated</font></a> + | <a href="groups.html"> +<font color="#004faf">Grouped Classes</font></a> + | <a href="functions.html"> +<font color="#004faf">Functions</font></a> +</td> +<td align="right" valign="center"><img src="logo32.png" align="right" width="64" height="32" border="0"></td></tr></table><h1 align=center>Complete Member List for TQDate</h1> + +<p>This is the complete list of member functions for +<a href="tqdate.html">TQDate</a>, including inherited members. + +<ul> +<li><a href="tqdate.html#TQDate">TQDate</a>() +<li><a href="tqdate.html#addDays">addDays</a>() +<li><a href="tqdate.html#addMonths">addMonths</a>() +<li><a href="tqdate.html#addYears">addYears</a>() +<li><a href="tqdate.html#currentDate">currentDate</a>() +<li><a href="tqdate.html#day">day</a>() +<li><a href="tqdate.html#dayName">dayName</a>() +<li><a href="tqdate.html#dayOfWeek">dayOfWeek</a>() +<li><a href="tqdate.html#dayOfYear">dayOfYear</a>() +<li><a href="tqdate.html#daysInMonth">daysInMonth</a>() +<li><a href="tqdate.html#daysInYear">daysInYear</a>() +<li><a href="tqdate.html#daysTo">daysTo</a>() +<li><a href="tqdate.html#fromString">fromString</a>() +<li><a href="tqdate.html#isNull">isNull</a>() +<li><a href="tqdate.html#isValid">isValid</a>() +<li><a href="tqdate.html#leapYear">leapYear</a>() +<li><a href="tqdate.html#longDayName">longDayName</a>() +<li><a href="tqdate.html#longMonthName">longMonthName</a>() +<li><a href="tqdate.html#month">month</a>() +<li><a href="tqdate.html#monthName">monthName</a>() +<li><a href="tqdate.html#operator!-eq">operator!=</a>() +<li><a href="tqdate.html#operator-lt">operator<</a>() +<li><a href="tqdate.html#operator-lt-eq">operator<=</a>() +<li><a href="tqdate.html#operator-eq-eq">operator==</a>() +<li><a href="tqdate.html#operator-gt">operator></a>() +<li><a href="tqdate.html#operator-gt-eq">operator>=</a>() +<li><a href="tqdate.html#setYMD">setYMD</a>() +<li><a href="tqdate.html#shortDayName">shortDayName</a>() +<li><a href="tqdate.html#shortMonthName">shortMonthName</a>() +<li><a href="tqdate.html#toString">toString</a>() +<li><a href="tqdate.html#weekNumber">weekNumber</a>() +<li><a href="tqdate.html#year">year</a>() +</ul> +<!-- eof --> +<p><address><hr><div align=center> +<table width=100% cellspacing=0 border=0><tr> +<td>Copyright © 2007 +<a href="troll.html">Trolltech</a><td align=center><a href="trademarks.html">Trademarks</a> +<td align=right><div align=right>TQt 3.3.8</div> +</table></div></address></body> +</html> diff --git a/doc/html/qdate.html b/doc/html/tqdate.html index dcf8f8079..a4a80445a 100644 --- a/doc/html/qdate.html +++ b/doc/html/tqdate.html @@ -1,5 +1,5 @@ <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN"> -<!-- /home/espenr/tmp/qt-3.3.8-espenr-2499/qt-x11-free-3.3.8/src/tools/qdatetime.cpp:201 --> +<!-- /home/espenr/tmp/qt-3.3.8-espenr-2499/qt-x11-free-3.3.8/src/tools/tqdatetime.cpp:201 --> <html> <head> <meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-1"> @@ -34,8 +34,8 @@ body { background: #ffffff; color: black; } <p>The TQDate class provides date functions. <a href="#details">More...</a> <p>All the functions in this class are <a href="threads.html#reentrant">reentrant</a> when TQt is built with thread support.</p> -<p><tt>#include <<a href="qdatetime-h.html">ntqdatetime.h</a>></tt> -<p><a href="qdate-members.html">List of all member functions.</a> +<p><tt>#include <<a href="tqdatetime-h.html">tqdatetime.h</a>></tt> +<p><a href="tqdate-members.html">List of all member functions.</a> <h2>Public Members</h2> <ul> <li class=fn><a href="#TQDate"><b>TQDate</b></a> ()</li> @@ -122,7 +122,7 @@ September 1752 (hence this is the earliest valid TQDate), and subsequently by most other Western countries, until 1923. <p> The end of time is reached around the year 8000, by which time we expect TQt to be obsolete. -<p> <p>See also <a href="qtime.html">TQTime</a>, <a href="ntqdatetime.html">TQDateTime</a>, <a href="qdateedit.html">TQDateEdit</a>, <a href="ntqdatetimeedit.html">TQDateTimeEdit</a>, and <a href="time.html">Time and Date</a>. +<p> <p>See also <a href="tqtime.html">TQTime</a>, <a href="tqdatetime.html">TQDateTime</a>, <a href="tqdateedit.html">TQDateEdit</a>, <a href="tqdatetimeedit.html">TQDateTimeEdit</a>, and <a href="time.html">Time and Date</a>. <hr><h2>Member Function Documentation</h2> <h3 class=fn><a name="TQDate"></a>TQDate::TQDate () @@ -140,36 +140,36 @@ Constructs a date with year <em>y</em>, month <em>m</em> and day <em>d</em>. 1900..1999. <p> <p>See also <a href="#isValid">isValid</a>(). -<h3 class=fn><a href="qdate.html">TQDate</a> <a name="addDays"></a>TQDate::addDays ( int ndays ) const +<h3 class=fn><a href="tqdate.html">TQDate</a> <a name="addDays"></a>TQDate::addDays ( int ndays ) const </h3> Returns a TQDate object containing a date <em>ndays</em> later than the date of this object (or earlier if <em>ndays</em> is negative). <p> <p>See also <a href="#addMonths">addMonths</a>(), <a href="#addYears">addYears</a>(), and <a href="#daysTo">daysTo</a>(). -<h3 class=fn><a href="qdate.html">TQDate</a> <a name="addMonths"></a>TQDate::addMonths ( int nmonths ) const +<h3 class=fn><a href="tqdate.html">TQDate</a> <a name="addMonths"></a>TQDate::addMonths ( int nmonths ) const </h3> Returns a TQDate object containing a date <em>nmonths</em> later than the date of this object (or earlier if <em>nmonths</em> is negative). <p> <p>See also <a href="#addDays">addDays</a>() and <a href="#addYears">addYears</a>(). -<h3 class=fn><a href="qdate.html">TQDate</a> <a name="addYears"></a>TQDate::addYears ( int nyears ) const +<h3 class=fn><a href="tqdate.html">TQDate</a> <a name="addYears"></a>TQDate::addYears ( int nyears ) const </h3> Returns a TQDate object containing a date <em>nyears</em> later than the date of this object (or earlier if <em>nyears</em> is negative). <p> <p>See also <a href="#addDays">addDays</a>() and <a href="#addMonths">addMonths</a>(). -<h3 class=fn><a href="qdate.html">TQDate</a> <a name="currentDate"></a>TQDate::currentDate ( <a href="ntqt.html#TimeSpec-enum">TQt::TimeSpec</a> ts )<tt> [static]</tt> +<h3 class=fn><a href="tqdate.html">TQDate</a> <a name="currentDate"></a>TQDate::currentDate ( <a href="ntqt.html#TimeSpec-enum">TQt::TimeSpec</a> ts )<tt> [static]</tt> </h3> Returns the current date, as reported by the system clock, for the TimeSpec <em>ts</em>. The default TimeSpec is LocalTime. -<p> <p>See also <a href="qtime.html#currentTime">TQTime::currentTime</a>(), <a href="ntqdatetime.html#currentDateTime">TQDateTime::currentDateTime</a>(), and <a href="ntqt.html#TimeSpec-enum">TQt::TimeSpec</a>. +<p> <p>See also <a href="tqtime.html#currentTime">TQTime::currentTime</a>(), <a href="tqdatetime.html#currentDateTime">TQDateTime::currentDateTime</a>(), and <a href="ntqt.html#TimeSpec-enum">TQt::TimeSpec</a>. <p>Example: <a href="dclock-example.html#x1098">dclock/dclock.cpp</a>. -<h3 class=fn><a href="qdate.html">TQDate</a> <a name="currentDate-2"></a>TQDate::currentDate ()<tt> [static]</tt> +<h3 class=fn><a href="tqdate.html">TQDate</a> <a name="currentDate-2"></a>TQDate::currentDate ()<tt> [static]</tt> </h3> This is an overloaded member function, provided for convenience. It behaves essentially like the above function. <p> Returns the current date, as reported by the system clock. -<p> <p>See also <a href="qtime.html#currentTime">TQTime::currentTime</a>() and <a href="ntqdatetime.html#currentDateTime">TQDateTime::currentDateTime</a>(). +<p> <p>See also <a href="tqtime.html#currentTime">TQTime::currentTime</a>() and <a href="tqdatetime.html#currentDateTime">TQDateTime::currentDateTime</a>(). <h3 class=fn>int <a name="day"></a>TQDate::day () const </h3> @@ -203,7 +203,7 @@ Returns the number of days in the month (28..31) for this date. Returns the number of days in the year (365 or 366) for this date. <p> <p>See also <a href="#day">day</a>() and <a href="#daysInMonth">daysInMonth</a>(). -<h3 class=fn>int <a name="daysTo"></a>TQDate::daysTo ( const <a href="qdate.html">TQDate</a> & d ) const +<h3 class=fn>int <a name="daysTo"></a>TQDate::daysTo ( const <a href="tqdate.html">TQDate</a> & d ) const </h3> Returns the number of days from this date to <em>d</em> (which is negative if <em>d</em> is earlier than this date). @@ -217,7 +217,7 @@ negative if <em>d</em> is earlier than this date). <p> <p>See also <a href="#addDays">addDays</a>(). -<h3 class=fn><a href="qdate.html">TQDate</a> <a name="fromString"></a>TQDate::fromString ( const <a href="tqstring.html">TQString</a> & s, <a href="ntqt.html#DateFormat-enum">TQt::DateFormat</a> f = TQt::TextDate )<tt> [static]</tt> +<h3 class=fn><a href="tqdate.html">TQDate</a> <a name="fromString"></a>TQDate::fromString ( const <a href="tqstring.html">TQString</a> & s, <a href="ntqt.html#DateFormat-enum">TQt::DateFormat</a> f = TQt::TextDate )<tt> [static]</tt> </h3> Returns the TQDate represented by the string <em>s</em>, using the format <em>f</em>, or an invalid date if the string cannot be parsed. @@ -288,33 +288,33 @@ Returns the month (January=1..December=12) of this date. <b>This function is obsolete.</b> It is provided to keep old source working. We strongly advise against using it in new code. <p> Use <a href="#shortMonthName">shortMonthName</a>() instead. -<h3 class=fn>bool <a name="operator!-eq"></a>TQDate::operator!= ( const <a href="qdate.html">TQDate</a> & d ) const +<h3 class=fn>bool <a name="operator!-eq"></a>TQDate::operator!= ( const <a href="tqdate.html">TQDate</a> & d ) const </h3> <p> Returns TRUE if this date is different from <em>d</em>; otherwise returns FALSE. -<h3 class=fn>bool <a name="operator-lt"></a>TQDate::operator< ( const <a href="qdate.html">TQDate</a> & d ) const +<h3 class=fn>bool <a name="operator-lt"></a>TQDate::operator< ( const <a href="tqdate.html">TQDate</a> & d ) const </h3> <p> Returns TRUE if this date is earlier than <em>d</em>, otherwise returns FALSE. -<h3 class=fn>bool <a name="operator-lt-eq"></a>TQDate::operator<= ( const <a href="qdate.html">TQDate</a> & d ) const +<h3 class=fn>bool <a name="operator-lt-eq"></a>TQDate::operator<= ( const <a href="tqdate.html">TQDate</a> & d ) const </h3> <p> Returns TRUE if this date is earlier than or equal to <em>d</em>, otherwise returns FALSE. -<h3 class=fn>bool <a name="operator-eq-eq"></a>TQDate::operator== ( const <a href="qdate.html">TQDate</a> & d ) const +<h3 class=fn>bool <a name="operator-eq-eq"></a>TQDate::operator== ( const <a href="tqdate.html">TQDate</a> & d ) const </h3> <p> Returns TRUE if this date is equal to <em>d</em>; otherwise returns FALSE. -<h3 class=fn>bool <a name="operator-gt"></a>TQDate::operator> ( const <a href="qdate.html">TQDate</a> & d ) const +<h3 class=fn>bool <a name="operator-gt"></a>TQDate::operator> ( const <a href="tqdate.html">TQDate</a> & d ) const </h3> <p> Returns TRUE if this date is later than <em>d</em>, otherwise returns FALSE. -<h3 class=fn>bool <a name="operator-gt-eq"></a>TQDate::operator>= ( const <a href="qdate.html">TQDate</a> & d ) const +<h3 class=fn>bool <a name="operator-gt-eq"></a>TQDate::operator>= ( const <a href="tqdate.html">TQDate</a> & d ) const </h3> <p> Returns TRUE if this date is later than or equal to <em>d</em>, @@ -380,7 +380,7 @@ Uses <a href="#longMonthName">TQDate::longMonthName</a>(). <tr bgcolor="#d0d0d0"> <td valign="top">ddd MMMM d yy <td valign="top" colspan="1" rowspan="1"> Sun July 20 69 </table></center> <p> If the date is an invalid date, then <a href="tqstring.html#TQString-null">TQString::null</a> will be returned. -<p> <p>See also <a href="ntqdatetime.html#toString">TQDateTime::toString</a>() and <a href="qtime.html#toString">TQTime::toString</a>(). +<p> <p>See also <a href="tqdatetime.html#toString">TQDateTime::toString</a>() and <a href="tqtime.html#toString">TQTime::toString</a>(). <p> <h3 class=fn><a href="tqstring.html">TQString</a> <a name="toString-2"></a>TQDate::toString ( <a href="ntqt.html#DateFormat-enum">TQt::DateFormat</a> f = TQt::TextDate ) const @@ -434,13 +434,13 @@ Returns the year (1752..8000) of this date. <p> <p>See also <a href="#month">month</a>() and <a href="#day">day</a>(). <hr><h2>Related Functions</h2> -<h3 class=fn><a href="ntqdatastream.html">TQDataStream</a> & <a name="operator-lt-lt"></a>operator<< ( <a href="ntqdatastream.html">TQDataStream</a> & s, const <a href="qdate.html">TQDate</a> & d ) +<h3 class=fn><a href="ntqdatastream.html">TQDataStream</a> & <a name="operator-lt-lt"></a>operator<< ( <a href="ntqdatastream.html">TQDataStream</a> & s, const <a href="tqdate.html">TQDate</a> & d ) </h3> <p> Writes the date, <em>d</em>, to the data stream, <em>s</em>. <p> <p>See also <a href="datastreamformat.html">Format of the TQDataStream operators</a>. -<h3 class=fn><a href="ntqdatastream.html">TQDataStream</a> & <a name="operator-gt-gt"></a>operator>> ( <a href="ntqdatastream.html">TQDataStream</a> & s, <a href="qdate.html">TQDate</a> & d ) +<h3 class=fn><a href="ntqdatastream.html">TQDataStream</a> & <a name="operator-gt-gt"></a>operator>> ( <a href="ntqdatastream.html">TQDataStream</a> & s, <a href="tqdate.html">TQDate</a> & d ) </h3> <p> Reads a date from the stream <em>s</em> into <em>d</em>. diff --git a/doc/html/qdateedit-members.html b/doc/html/tqdateedit-members.html index 5a7f21dfb..66a2f4e2d 100644 --- a/doc/html/qdateedit-members.html +++ b/doc/html/tqdateedit-members.html @@ -1,5 +1,5 @@ <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN"> -<!-- /home/espenr/tmp/qt-3.3.8-espenr-2499/qt-x11-free-3.3.8/include/ntqdatetimeedit.h:74 --> +<!-- /home/espenr/tmp/qt-3.3.8-espenr-2499/qt-x11-free-3.3.8/include/tqdatetimeedit.h:74 --> <html> <head> <meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-1"> @@ -32,14 +32,14 @@ body { background: #ffffff; color: black; } <td align="right" valign="center"><img src="logo32.png" align="right" width="64" height="32" border="0"></td></tr></table><h1 align=center>Complete Member List for TQDateEdit</h1> <p>This is the complete list of member functions for -<a href="qdateedit.html">TQDateEdit</a>, including inherited members. +<a href="tqdateedit.html">TQDateEdit</a>, including inherited members. <ul> -<li><a href="qdateedit.html#TQDateEdit">TQDateEdit</a>() -<li><a href="qdateedit.html#~TQDateEdit">~TQDateEdit</a>() +<li><a href="tqdateedit.html#TQDateEdit">TQDateEdit</a>() +<li><a href="tqdateedit.html#~TQDateEdit">~TQDateEdit</a>() <li><a href="tqwidget.html#acceptDrops">acceptDrops</a>() <li><a href="tqwidget.html#adjustSize">adjustSize</a>() -<li><a href="qdateedit.html#autoAdvance">autoAdvance</a>() +<li><a href="tqdateedit.html#autoAdvance">autoAdvance</a>() <li><a href="tqwidget.html#autoMask">autoMask</a>() <li><a href="tqwidget.html#backgroundBrush">backgroundBrush</a>() <li><a href="tqwidget.html#backgroundColor">backgroundColor</a>() @@ -73,7 +73,7 @@ body { background: #ffffff; color: black; } <li><a href="tqwidget.html#cursor">cursor</a>() <li><a href="tqobject.html#customEvent">customEvent</a>() <li><a href="tqwidget.html#customWhatsThis">customWhatsThis</a>() -<li><a href="qdateedit.html#date">date</a>() +<li><a href="tqdateedit.html#date">date</a>() <li><a href="tqobject.html#deleteLater">deleteLater</a>() <li><a href="tqwidget.html#destroy">destroy</a>() <li><a href="tqobject.html#destroyed">destroyed</a>() @@ -94,7 +94,7 @@ body { background: #ffffff; color: black; } <li><a href="tqwidget.html#event">event</a>() <li><a href="tqobject.html#eventFilter">eventFilter</a>() <li><a href="tqwidget.html#find">find</a>() -<li><a href="qdateedit.html#fix">fix</a>() +<li><a href="tqdateedit.html#fix">fix</a>() <li><a href="tqwidget.html#focusData">focusData</a>() <li><a href="tqwidget.html#focusInEvent">focusInEvent</a>() <li><a href="tqwidget.html#focusNextPrevChild">focusNextPrevChild</a>() @@ -169,14 +169,14 @@ body { background: #ffffff; color: black; } <li><a href="tqwidget.html#mapTo">mapTo</a>() <li><a href="tqwidget.html#mapToGlobal">mapToGlobal</a>() <li><a href="tqwidget.html#mapToParent">mapToParent</a>() -<li><a href="qdateedit.html#maxValue">maxValue</a>() +<li><a href="tqdateedit.html#maxValue">maxValue</a>() <li><a href="tqwidget.html#maximumHeight">maximumHeight</a>() <li><a href="tqwidget.html#maximumSize">maximumSize</a>() <li><a href="tqwidget.html#maximumWidth">maximumWidth</a>() <li><a href="tqobject.html#metaObject">metaObject</a>() <li><a href="tqwidget.html#metric">metric</a>() <li><a href="tqwidget.html#microFocusHint">microFocusHint</a>() -<li><a href="qdateedit.html#minValue">minValue</a>() +<li><a href="tqdateedit.html#minValue">minValue</a>() <li><a href="tqwidget.html#minimumHeight">minimumHeight</a>() <li><a href="tqwidget.html#minimumSize">minimumSize</a>() <li><a href="tqwidget.html#minimumSizeHint">minimumSizeHint</a>() @@ -191,7 +191,7 @@ body { background: #ffffff; color: black; } <li><a href="tqobject.html#name">name</a>() <li><a href="tqobject.html#normalizeSignalSlot">normalizeSignalSlot</a>() <li><a href="tqobject.html#objectTrees">objectTrees</a>() -<li><a href="qdateedit.html#order">order</a>() +<li><a href="tqdateedit.html#order">order</a>() <li><a href="tqwidget.html#ownCursor">ownCursor</a>() <li><a href="tqwidget.html#ownFont">ownFont</a>() <li><a href="tqwidget.html#ownPalette">ownPalette</a>() @@ -221,12 +221,12 @@ body { background: #ffffff; color: black; } <li><a href="tqwidget.html#resize">resize</a>() <li><a href="tqwidget.html#resizeEvent">resizeEvent</a>() <li><a href="tqwidget.html#scroll">scroll</a>() -<li><a href="qdateedit.html#sectionFormattedText">sectionFormattedText</a>() +<li><a href="tqdateedit.html#sectionFormattedText">sectionFormattedText</a>() <li><a href="tqobject.html#sender">sender</a>() -<li><a href="qdateedit.html#separator">separator</a>() +<li><a href="tqdateedit.html#separator">separator</a>() <li><a href="tqwidget.html#setAcceptDrops">setAcceptDrops</a>() <li><a href="tqwidget.html#setActiveWindow">setActiveWindow</a>() -<li><a href="qdateedit.html#setAutoAdvance">setAutoAdvance</a>() +<li><a href="tqdateedit.html#setAutoAdvance">setAutoAdvance</a>() <li><a href="tqwidget.html#setAutoMask">setAutoMask</a>() <li><a href="tqwidget.html#setBackgroundColor">setBackgroundColor</a>() <li><a href="tqwidget.html#setBackgroundMode">setBackgroundMode</a>() @@ -235,8 +235,8 @@ body { background: #ffffff; color: black; } <li><a href="tqwidget.html#setBaseSize">setBaseSize</a>() <li><a href="tqwidget.html#setCaption">setCaption</a>() <li><a href="tqwidget.html#setCursor">setCursor</a>() -<li><a href="qdateedit.html#setDate">setDate</a>() -<li><a href="qdateedit.html#setDay">setDay</a>() +<li><a href="tqdateedit.html#setDate">setDate</a>() +<li><a href="tqdateedit.html#setDay">setDay</a>() <li><a href="tqwidget.html#setDisabled">setDisabled</a>() <li><a href="tqwidget.html#setEnabled">setEnabled</a>() <li><a href="tqwidget.html#setEraseColor">setEraseColor</a>() @@ -255,26 +255,26 @@ body { background: #ffffff; color: black; } <li><a href="tqwidget.html#setInputMethodEnabled">setInputMethodEnabled</a>() <li><a href="tqwidget.html#setKeyCompression">setKeyCompression</a>() <li><a href="tqwidget.html#setMask">setMask</a>() -<li><a href="qdateedit.html#setMaxValue">setMaxValue</a>() +<li><a href="tqdateedit.html#setMaxValue">setMaxValue</a>() <li><a href="tqwidget.html#setMaximumHeight">setMaximumHeight</a>() <li><a href="tqwidget.html#setMaximumSize">setMaximumSize</a>() <li><a href="tqwidget.html#setMaximumWidth">setMaximumWidth</a>() <li><a href="tqwidget.html#setMicroFocusHint">setMicroFocusHint</a>() -<li><a href="qdateedit.html#setMinValue">setMinValue</a>() +<li><a href="tqdateedit.html#setMinValue">setMinValue</a>() <li><a href="tqwidget.html#setMinimumHeight">setMinimumHeight</a>() <li><a href="tqwidget.html#setMinimumSize">setMinimumSize</a>() <li><a href="tqwidget.html#setMinimumWidth">setMinimumWidth</a>() -<li><a href="qdateedit.html#setMonth">setMonth</a>() +<li><a href="tqdateedit.html#setMonth">setMonth</a>() <li><a href="tqwidget.html#setMouseTracking">setMouseTracking</a>() <li><a href="tqobject.html#setName">setName</a>() -<li><a href="qdateedit.html#setOrder">setOrder</a>() +<li><a href="tqdateedit.html#setOrder">setOrder</a>() <li><a href="tqwidget.html#setPalette">setPalette</a>() <li><a href="tqwidget.html#setPaletteBackgroundColor">setPaletteBackgroundColor</a>() <li><a href="tqwidget.html#setPaletteBackgroundPixmap">setPaletteBackgroundPixmap</a>() <li><a href="tqwidget.html#setPaletteForegroundColor">setPaletteForegroundColor</a>() <li><a href="tqobject.html#setProperty">setProperty</a>() -<li><a href="qdateedit.html#setRange">setRange</a>() -<li><a href="qdateedit.html#setSeparator">setSeparator</a>() +<li><a href="tqdateedit.html#setRange">setRange</a>() +<li><a href="tqdateedit.html#setSeparator">setSeparator</a>() <li><a href="tqwidget.html#setShown">setShown</a>() <li><a href="tqwidget.html#setSizeIncrement">setSizeIncrement</a>() <li><a href="tqwidget.html#setSizePolicy">setSizePolicy</a>() @@ -284,7 +284,7 @@ body { background: #ffffff; color: black; } <li><a href="tqwidget.html#setWFlags">setWFlags</a>() <li><a href="tqwidget.html#setWindowOpacity">setWindowOpacity</a>() <li><a href="tqwidget.html#setWindowState">setWindowState</a>() -<li><a href="qdateedit.html#setYear">setYear</a>() +<li><a href="tqdateedit.html#setYear">setYear</a>() <li><a href="tqwidget.html#show">show</a>() <li><a href="tqwidget.html#showEvent">showEvent</a>() <li><a href="tqwidget.html#showFullScreen">showFullScreen</a>() @@ -310,10 +310,10 @@ body { background: #ffffff; color: black; } <li><a href="tqwidget.html#unsetFont">unsetFont</a>() <li><a href="tqwidget.html#unsetPalette">unsetPalette</a>() <li><a href="tqwidget.html#update">update</a>() -<li><a href="qdateedit.html#updateButtons">updateButtons</a>() +<li><a href="tqdateedit.html#updateButtons">updateButtons</a>() <li><a href="tqwidget.html#updateGeometry">updateGeometry</a>() <li><a href="tqwidget.html#updateMask">updateMask</a>() -<li><a href="qdateedit.html#valueChanged">valueChanged</a>() +<li><a href="tqdateedit.html#valueChanged">valueChanged</a>() <li><a href="tqwidget.html#visibleRect">visibleRect</a>() <li><a href="tqwidget.html#wheelEvent">wheelEvent</a>() <li><a href="tqwidget.html#width">width</a>() diff --git a/doc/html/qdateedit.html b/doc/html/tqdateedit.html index 58205d31c..33db9ceb9 100644 --- a/doc/html/qdateedit.html +++ b/doc/html/tqdateedit.html @@ -1,5 +1,5 @@ <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN"> -<!-- /home/espenr/tmp/qt-3.3.8-espenr-2499/qt-x11-free-3.3.8/src/widgets/qdatetimeedit.cpp:844 --> +<!-- /home/espenr/tmp/qt-3.3.8-espenr-2499/qt-x11-free-3.3.8/src/widgets/tqdatetimeedit.cpp:844 --> <html> <head> <meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-1"> @@ -33,9 +33,9 @@ body { background: #ffffff; color: black; } <p>The TQDateEdit class provides a date editor. <a href="#details">More...</a> -<p><tt>#include <<a href="qdatetimeedit-h.html">ntqdatetimeedit.h</a>></tt> -<p>Inherits <a href="qdatetimeeditbase.html">TQDateTimeEditBase</a>. -<p><a href="qdateedit-members.html">List of all member functions.</a> +<p><tt>#include <<a href="tqdatetimeedit-h.html">tqdatetimeedit.h</a>></tt> +<p>Inherits <a href="tqdatetimeeditbase.html">TQDateTimeEditBase</a>. +<p><a href="tqdateedit-members.html">List of all member functions.</a> <h2>Public Members</h2> <ul> <li class=fn><a href="#TQDateEdit"><b>TQDateEdit</b></a> ( TQWidget * parent = 0, const char * name = 0 )</li> @@ -98,9 +98,9 @@ or in year, month, day order if the system doesn't provide this information. It is recommended that the TQDateEdit be initialised with a date, e.g. <p> <pre> - TQDateEdit *dateEdit = new TQDateEdit( TQDate::<a href="qdate.html#currentDate">currentDate</a>(), this ); - dateEdit-><a href="#setRange">setRange</a>( TQDate::<a href="qdate.html#currentDate">currentDate</a>().addDays( -365 ), - TQDate::<a href="qdate.html#currentDate">currentDate</a>().addDays( 365 ) ); + TQDateEdit *dateEdit = new TQDateEdit( TQDate::<a href="tqdate.html#currentDate">currentDate</a>(), this ); + dateEdit-><a href="#setRange">setRange</a>( TQDate::<a href="tqdate.html#currentDate">currentDate</a>().addDays( -365 ), + TQDate::<a href="tqdate.html#currentDate">currentDate</a>().addDays( 365 ) ); dateEdit-><a href="#setOrder">setOrder</a>( TQDateEdit::<a href="#Order-enum">MDY</a> ); dateEdit-><a href="#setAutoAdvance">setAutoAdvance</a>( TRUE ); </pre> @@ -112,7 +112,7 @@ advance property is TRUE (as we've set it here) when the user completes a section of the date, e.g. enters two digits for the month, they are automatically taken to the next section. <p> The maximum and minimum values for a date value in the date editor -default to the maximum and minimum values for a <a href="qdate.html">TQDate</a>. You can +default to the maximum and minimum values for a <a href="tqdate.html">TQDate</a>. You can change this by calling <a href="#setMinValue">setMinValue</a>(), <a href="#setMaxValue">setMaxValue</a>() or <a href="#setRange">setRange</a>(). <p> Terminology: A TQDateEdit widget comprises three 'sections', one each for the year, month and day. You can change the separator @@ -120,7 +120,7 @@ character using TQDateTimeEditor::setSeparator(), by default the separator will be taken from the systems settings. If that is not possible, it defaults to "-". <p> <center><img src="datetimewidgets.png" alt="Date Time Widgets"></center> -<p> <p>See also <a href="qdate.html">TQDate</a>, <a href="qtimeedit.html">TQTimeEdit</a>, <a href="ntqdatetimeedit.html">TQDateTimeEdit</a>, <a href="advanced.html">Advanced Widgets</a>, and <a href="time.html">Time and Date</a>. +<p> <p>See also <a href="tqdate.html">TQDate</a>, <a href="tqtimeedit.html">TQTimeEdit</a>, <a href="tqdatetimeedit.html">TQDateTimeEdit</a>, <a href="advanced.html">Advanced Widgets</a>, and <a href="time.html">Time and Date</a>. <hr><h2>Member Type Documentation</h2> <h3 class=fn><a name="Order-enum"></a>TQDateEdit::Order</h3> @@ -140,7 +140,7 @@ not be used) Constructs an empty date editor which is a child of <em>parent</em> and called name <em>name</em>. -<h3 class=fn><a name="TQDateEdit-2"></a>TQDateEdit::TQDateEdit ( const <a href="qdate.html">TQDate</a> & date, <a href="tqwidget.html">TQWidget</a> * parent = 0, const char * name = 0 ) +<h3 class=fn><a name="TQDateEdit-2"></a>TQDateEdit::TQDateEdit ( const <a href="tqdate.html">TQDate</a> & date, <a href="tqwidget.html">TQWidget</a> * parent = 0, const char * name = 0 ) </h3> This is an overloaded member function, provided for convenience. It behaves essentially like the above function. <p> Constructs a date editor with the initial value <em>date</em>, parent <em>parent</em> and called <em>name</em>. @@ -152,10 +152,10 @@ Destroys the object and frees any allocated resources. <h3 class=fn>bool <a name="autoAdvance"></a>TQDateEdit::autoAdvance () const </h3><p>Returns TRUE if the editor automatically advances to the next section; otherwise returns FALSE. -See the <a href="qdateedit.html#autoAdvance-prop">"autoAdvance"</a> property for details. -<h3 class=fn><a href="qdate.html">TQDate</a> <a name="date"></a>TQDateEdit::date () const +See the <a href="tqdateedit.html#autoAdvance-prop">"autoAdvance"</a> property for details. +<h3 class=fn><a href="tqdate.html">TQDate</a> <a name="date"></a>TQDateEdit::date () const </h3><p>Returns the editor's date value. -See the <a href="qdateedit.html#date-prop">"date"</a> property for details. +See the <a href="tqdateedit.html#date-prop">"date"</a> property for details. <h3 class=fn>void <a name="fix"></a>TQDateEdit::fix ()<tt> [virtual protected]</tt> </h3> Attempts to fix any invalid date entries. @@ -171,15 +171,15 @@ in the range 2100..2999. minimum valid day\month in the range. </ul> <p> -<h3 class=fn><a href="qdate.html">TQDate</a> <a name="maxValue"></a>TQDateEdit::maxValue () const +<h3 class=fn><a href="tqdate.html">TQDate</a> <a name="maxValue"></a>TQDateEdit::maxValue () const </h3><p>Returns the editor's maximum value. -See the <a href="qdateedit.html#maxValue-prop">"maxValue"</a> property for details. -<h3 class=fn><a href="qdate.html">TQDate</a> <a name="minValue"></a>TQDateEdit::minValue () const +See the <a href="tqdateedit.html#maxValue-prop">"maxValue"</a> property for details. +<h3 class=fn><a href="tqdate.html">TQDate</a> <a name="minValue"></a>TQDateEdit::minValue () const </h3><p>Returns the editor's minimum value. -See the <a href="qdateedit.html#minValue-prop">"minValue"</a> property for details. -<h3 class=fn><a href="qdateedit.html#Order-enum">Order</a> <a name="order"></a>TQDateEdit::order () const +See the <a href="tqdateedit.html#minValue-prop">"minValue"</a> property for details. +<h3 class=fn><a href="tqdateedit.html#Order-enum">Order</a> <a name="order"></a>TQDateEdit::order () const </h3><p>Returns the order in which the year, month and day appear. -See the <a href="qdateedit.html#order-prop">"order"</a> property for details. +See the <a href="tqdateedit.html#order-prop">"order"</a> property for details. <h3 class=fn><a href="tqstring.html">TQString</a> <a name="sectionFormattedText"></a>TQDateEdit::sectionFormattedText ( int sec )<tt> [virtual protected]</tt> </h3> Returns the formatted number for section <em>sec</em>. This will @@ -193,30 +193,30 @@ Returns the editor's separator. <h3 class=fn>void <a name="setAutoAdvance"></a>TQDateEdit::setAutoAdvance ( bool advance )<tt> [virtual]</tt> </h3><p>Sets whether the editor automatically advances to the next section to <em>advance</em>. -See the <a href="qdateedit.html#autoAdvance-prop">"autoAdvance"</a> property for details. -<h3 class=fn>void <a name="setDate"></a>TQDateEdit::setDate ( const <a href="qdate.html">TQDate</a> & date )<tt> [virtual slot]</tt> +See the <a href="tqdateedit.html#autoAdvance-prop">"autoAdvance"</a> property for details. +<h3 class=fn>void <a name="setDate"></a>TQDateEdit::setDate ( const <a href="tqdate.html">TQDate</a> & date )<tt> [virtual slot]</tt> </h3><p>Sets the editor's date value to <em>date</em>. -See the <a href="qdateedit.html#date-prop">"date"</a> property for details. +See the <a href="tqdateedit.html#date-prop">"date"</a> property for details. <h3 class=fn>void <a name="setDay"></a>TQDateEdit::setDay ( int day )<tt> [virtual protected]</tt> </h3> Sets the day to <em>day</em>, which must be a valid day. The function will ensure that the <em>day</em> set is valid for the month and year. -<h3 class=fn>void <a name="setMaxValue"></a>TQDateEdit::setMaxValue ( const <a href="qdate.html">TQDate</a> & d )<tt> [virtual]</tt> +<h3 class=fn>void <a name="setMaxValue"></a>TQDateEdit::setMaxValue ( const <a href="tqdate.html">TQDate</a> & d )<tt> [virtual]</tt> </h3><p>Sets the editor's maximum value to <em>d</em>. -See the <a href="qdateedit.html#maxValue-prop">"maxValue"</a> property for details. -<h3 class=fn>void <a name="setMinValue"></a>TQDateEdit::setMinValue ( const <a href="qdate.html">TQDate</a> & d )<tt> [virtual]</tt> +See the <a href="tqdateedit.html#maxValue-prop">"maxValue"</a> property for details. +<h3 class=fn>void <a name="setMinValue"></a>TQDateEdit::setMinValue ( const <a href="tqdate.html">TQDate</a> & d )<tt> [virtual]</tt> </h3><p>Sets the editor's minimum value to <em>d</em>. -See the <a href="qdateedit.html#minValue-prop">"minValue"</a> property for details. +See the <a href="tqdateedit.html#minValue-prop">"minValue"</a> property for details. <h3 class=fn>void <a name="setMonth"></a>TQDateEdit::setMonth ( int month )<tt> [virtual protected]</tt> </h3> Sets the month to <em>month</em>, which must be a valid month, i.e. between 1 and 12. -<h3 class=fn>void <a name="setOrder"></a>TQDateEdit::setOrder ( <a href="qdateedit.html#Order-enum">Order</a> order )<tt> [virtual]</tt> +<h3 class=fn>void <a name="setOrder"></a>TQDateEdit::setOrder ( <a href="tqdateedit.html#Order-enum">Order</a> order )<tt> [virtual]</tt> </h3><p>Sets the order in which the year, month and day appear to <em>order</em>. -See the <a href="qdateedit.html#order-prop">"order"</a> property for details. -<h3 class=fn>void <a name="setRange"></a>TQDateEdit::setRange ( const <a href="qdate.html">TQDate</a> & min, const <a href="qdate.html">TQDate</a> & max )<tt> [virtual]</tt> +See the <a href="tqdateedit.html#order-prop">"order"</a> property for details. +<h3 class=fn>void <a name="setRange"></a>TQDateEdit::setRange ( const <a href="tqdate.html">TQDate</a> & min, const <a href="tqdate.html">TQDate</a> & max )<tt> [virtual]</tt> </h3> Sets the valid input range for the editor to be from <em>min</em> to <em>max</em> inclusive. If <em>min</em> is invalid no minimum date will be set. Similarly, if <em>max</em> is invalid no maximum date will be set. @@ -230,14 +230,14 @@ character of <em>s</em> is used. </h3> Sets the year to <em>year</em>, which must be a valid year. The range currently supported is from 1752 to 8000. -<p> <p>See also <a href="qdate.html">TQDate</a>. +<p> <p>See also <a href="tqdate.html">TQDate</a>. <h3 class=fn>void <a name="updateButtons"></a>TQDateEdit::updateButtons ()<tt> [protected slot]</tt> </h3> Enables/disables the push buttons according to the min/max date for this widget. -<h3 class=fn>void <a name="valueChanged"></a>TQDateEdit::valueChanged ( const <a href="qdate.html">TQDate</a> & date )<tt> [signal]</tt> +<h3 class=fn>void <a name="valueChanged"></a>TQDateEdit::valueChanged ( const <a href="tqdate.html">TQDate</a> & date )<tt> [signal]</tt> </h3> <p> This signal is emitted whenever the editor's value changes. The <em>date</em> parameter is the new value. @@ -250,7 +250,7 @@ focus to the next date section if a user has completed a section. The default is FALSE. <p>Set this property's value with <a href="#setAutoAdvance">setAutoAdvance</a>() and get this property's value with <a href="#autoAdvance">autoAdvance</a>(). -<h3 class=fn><a href="qdate.html">TQDate</a> <a name="date-prop"></a>date</h3> +<h3 class=fn><a href="tqdate.html">TQDate</a> <a name="date-prop"></a>date</h3> <p>This property holds the editor's date value. <p>If the date property is not valid, the editor displays all zeroes and <a href="#date">TQDateEdit::date</a>() will return an invalid date. It is strongly @@ -261,7 +261,7 @@ invalid date will fail. <a href="#minValue">minValue</a>(), or is greater than <a href="#maxValue">maxValue</a>(), nothing happens. <p>Set this property's value with <a href="#setDate">setDate</a>() and get this property's value with <a href="#date">date</a>(). -<h3 class=fn><a href="qdate.html">TQDate</a> <a name="maxValue-prop"></a>maxValue</h3> +<h3 class=fn><a href="tqdate.html">TQDate</a> <a name="maxValue-prop"></a>maxValue</h3> <p>This property holds the editor's maximum value. <p>Setting the maximum date value for the editor is equivalent to calling <a href="#setRange">TQDateEdit::setRange</a>( <a href="#minValue">minValue</a>(), <em>d</em> ), where <em>d</em> is the @@ -269,7 +269,7 @@ maximum date. The default maximum date is 8000-12-31. <p> <p>See also <a href="#minValue-prop">minValue</a> and <a href="#setRange">setRange</a>(). <p>Set this property's value with <a href="#setMaxValue">setMaxValue</a>() and get this property's value with <a href="#maxValue">maxValue</a>(). -<h3 class=fn><a href="qdate.html">TQDate</a> <a name="minValue-prop"></a>minValue</h3> +<h3 class=fn><a href="tqdate.html">TQDate</a> <a name="minValue-prop"></a>minValue</h3> <p>This property holds the editor's minimum value. <p>Setting the minimum date value is equivalent to calling <a href="#setRange">TQDateEdit::setRange</a>( <em>d</em>, <a href="#maxValue">maxValue</a>() ), where <em>d</em> is the minimum @@ -277,7 +277,7 @@ date. The default minimum date is 1752-09-14. <p> <p>See also <a href="#maxValue-prop">maxValue</a> and <a href="#setRange">setRange</a>(). <p>Set this property's value with <a href="#setMinValue">setMinValue</a>() and get this property's value with <a href="#minValue">minValue</a>(). -<h3 class=fn><a href="qdateedit.html#Order-enum">Order</a> <a name="order-prop"></a>order</h3> +<h3 class=fn><a href="tqdateedit.html#Order-enum">Order</a> <a name="order-prop"></a>order</h3> <p>This property holds the order in which the year, month and day appear. <p>The default order is locale dependent. <p> <p>See also <a href="#Order-enum">Order</a>. diff --git a/doc/html/qdatetime-h.html b/doc/html/tqdatetime-h.html index d668d6c35..04a278f02 100644 --- a/doc/html/qdatetime-h.html +++ b/doc/html/tqdatetime-h.html @@ -1,9 +1,9 @@ <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN"> -<!-- /home/espenr/tmp/qt-3.3.8-espenr-2499/qt-x11-free-3.3.8/include/ntqdatetime.h:1 --> +<!-- /home/espenr/tmp/qt-3.3.8-espenr-2499/qt-x11-free-3.3.8/include/tqdatetime.h:1 --> <html> <head> <meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-1"> -<title>ntqdatetime.h Include File</title> +<title>tqdatetime.h Include File</title> <style type="text/css"><!-- fn { margin-left: 1cm; text-indent: -1cm; } a:link { color: #004faf; text-decoration: none } @@ -29,13 +29,13 @@ body { background: #ffffff; color: black; } | <a href="functions.html"> <font color="#004faf">Functions</font></a> </td> -<td align="right" valign="center"><img src="logo32.png" align="right" width="64" height="32" border="0"></td></tr></table><h1 align=center>ntqdatetime.h</h1> +<td align="right" valign="center"><img src="logo32.png" align="right" width="64" height="32" border="0"></td></tr></table><h1 align=center>tqdatetime.h</h1> -<p>This is the verbatim text of the ntqdatetime.h include file. It is provided only for illustration; the copyright remains with Trolltech. +<p>This is the verbatim text of the tqdatetime.h include file. It is provided only for illustration; the copyright remains with Trolltech. <hr> <pre> /************************************************************************* -** $Id: qt/ntqdatetime.h 3.3.8 edited Jan 11 14:38 $ +** $Id: qt/tqdatetime.h 3.3.8 edited Jan 11 14:38 $ ** ** Definition of date and time classes ** diff --git a/doc/html/qdatetime-members.html b/doc/html/tqdatetime-members.html index 3dffab0e2..590eeb2d1 100644 --- a/doc/html/qdatetime-members.html +++ b/doc/html/tqdatetime-members.html @@ -1,5 +1,5 @@ <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN"> -<!-- /home/espenr/tmp/qt-3.3.8-espenr-2499/qt-x11-free-3.3.8/include/ntqdatetime.h:185 --> +<!-- /home/espenr/tmp/qt-3.3.8-espenr-2499/qt-x11-free-3.3.8/include/tqdatetime.h:185 --> <html> <head> <meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-1"> @@ -32,33 +32,33 @@ body { background: #ffffff; color: black; } <td align="right" valign="center"><img src="logo32.png" align="right" width="64" height="32" border="0"></td></tr></table><h1 align=center>Complete Member List for TQDateTime</h1> <p>This is the complete list of member functions for -<a href="ntqdatetime.html">TQDateTime</a>, including inherited members. +<a href="tqdatetime.html">TQDateTime</a>, including inherited members. <ul> -<li><a href="ntqdatetime.html#TQDateTime">TQDateTime</a>() -<li><a href="ntqdatetime.html#addDays">addDays</a>() -<li><a href="ntqdatetime.html#addMonths">addMonths</a>() -<li><a href="ntqdatetime.html#addSecs">addSecs</a>() -<li><a href="ntqdatetime.html#addYears">addYears</a>() -<li><a href="ntqdatetime.html#currentDateTime">currentDateTime</a>() -<li><a href="ntqdatetime.html#date">date</a>() -<li><a href="ntqdatetime.html#daysTo">daysTo</a>() -<li><a href="ntqdatetime.html#fromString">fromString</a>() -<li><a href="ntqdatetime.html#isNull">isNull</a>() -<li><a href="ntqdatetime.html#isValid">isValid</a>() -<li><a href="ntqdatetime.html#operator!-eq">operator!=</a>() -<li><a href="ntqdatetime.html#operator-lt">operator<</a>() -<li><a href="ntqdatetime.html#operator-lt-eq">operator<=</a>() -<li><a href="ntqdatetime.html#operator-eq-eq">operator==</a>() -<li><a href="ntqdatetime.html#operator-gt">operator></a>() -<li><a href="ntqdatetime.html#operator-gt-eq">operator>=</a>() -<li><a href="ntqdatetime.html#secsTo">secsTo</a>() -<li><a href="ntqdatetime.html#setDate">setDate</a>() -<li><a href="ntqdatetime.html#setTime">setTime</a>() -<li><a href="ntqdatetime.html#setTime_t">setTime_t</a>() -<li><a href="ntqdatetime.html#time">time</a>() -<li><a href="ntqdatetime.html#toString">toString</a>() -<li><a href="ntqdatetime.html#toTime_t">toTime_t</a>() +<li><a href="tqdatetime.html#TQDateTime">TQDateTime</a>() +<li><a href="tqdatetime.html#addDays">addDays</a>() +<li><a href="tqdatetime.html#addMonths">addMonths</a>() +<li><a href="tqdatetime.html#addSecs">addSecs</a>() +<li><a href="tqdatetime.html#addYears">addYears</a>() +<li><a href="tqdatetime.html#currentDateTime">currentDateTime</a>() +<li><a href="tqdatetime.html#date">date</a>() +<li><a href="tqdatetime.html#daysTo">daysTo</a>() +<li><a href="tqdatetime.html#fromString">fromString</a>() +<li><a href="tqdatetime.html#isNull">isNull</a>() +<li><a href="tqdatetime.html#isValid">isValid</a>() +<li><a href="tqdatetime.html#operator!-eq">operator!=</a>() +<li><a href="tqdatetime.html#operator-lt">operator<</a>() +<li><a href="tqdatetime.html#operator-lt-eq">operator<=</a>() +<li><a href="tqdatetime.html#operator-eq-eq">operator==</a>() +<li><a href="tqdatetime.html#operator-gt">operator></a>() +<li><a href="tqdatetime.html#operator-gt-eq">operator>=</a>() +<li><a href="tqdatetime.html#secsTo">secsTo</a>() +<li><a href="tqdatetime.html#setDate">setDate</a>() +<li><a href="tqdatetime.html#setTime">setTime</a>() +<li><a href="tqdatetime.html#setTime_t">setTime_t</a>() +<li><a href="tqdatetime.html#time">time</a>() +<li><a href="tqdatetime.html#toString">toString</a>() +<li><a href="tqdatetime.html#toTime_t">toTime_t</a>() </ul> <!-- eof --> <p><address><hr><div align=center> diff --git a/doc/html/ntqdatetime.html b/doc/html/tqdatetime.html index 0ada884a4..a4fcde797 100644 --- a/doc/html/ntqdatetime.html +++ b/doc/html/tqdatetime.html @@ -1,5 +1,5 @@ <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN"> -<!-- /home/espenr/tmp/qt-3.3.8-espenr-2499/qt-x11-free-3.3.8/src/tools/qdatetime.cpp:1861 --> +<!-- /home/espenr/tmp/qt-3.3.8-espenr-2499/qt-x11-free-3.3.8/src/tools/tqdatetime.cpp:1861 --> <html> <head> <meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-1"> @@ -34,8 +34,8 @@ body { background: #ffffff; color: black; } <p>The TQDateTime class provides date and time functions. <a href="#details">More...</a> <p>All the functions in this class are <a href="threads.html#reentrant">reentrant</a> when TQt is built with thread support.</p> -<p><tt>#include <<a href="qdatetime-h.html">ntqdatetime.h</a>></tt> -<p><a href="qdatetime-members.html">List of all member functions.</a> +<p><tt>#include <<a href="tqdatetime-h.html">tqdatetime.h</a>></tt> +<p><a href="tqdatetime-members.html">List of all member functions.</a> <h2>Public Members</h2> <ul> <li class=fn><a href="#TQDateTime"><b>TQDateTime</b></a> ()</li> @@ -84,7 +84,7 @@ The TQDateTime class provides date and time functions. <p> <p> A TQDateTime object contains a calendar date and a clock time (a -"datetime"). It is a combination of the <a href="qdate.html">TQDate</a> and <a href="qtime.html">TQTime</a> classes. +"datetime"). It is a combination of the <a href="tqdate.html">TQDate</a> and <a href="tqtime.html">TQTime</a> classes. It can read the current datetime from the system clock. It provides functions for comparing datetimes and for manipulating a datetime by adding a number of seconds, days, months or years. @@ -109,8 +109,8 @@ use <a href="#addMonths">addMonths</a>() and <a href="#addYears">addYears</a>(). number of days between two datetimes, and <a href="#secsTo">secsTo</a>() returns the number of seconds between two datetimes. <p> The range of a datetime object is constrained to the ranges of the -<a href="qdate.html">TQDate</a> and <a href="qtime.html">TQTime</a> objects which it embodies. -<p> <p>See also <a href="qdate.html">TQDate</a>, <a href="qtime.html">TQTime</a>, <a href="ntqdatetimeedit.html">TQDateTimeEdit</a>, and <a href="time.html">Time and Date</a>. +<a href="tqdate.html">TQDate</a> and <a href="tqtime.html">TQTime</a> objects which it embodies. +<p> <p>See also <a href="tqdate.html">TQDate</a>, <a href="tqtime.html">TQTime</a>, <a href="tqdatetimeedit.html">TQDateTimeEdit</a>, and <a href="time.html">Time and Date</a>. <hr><h2>Member Function Documentation</h2> <h3 class=fn><a name="TQDateTime"></a>TQDateTime::TQDateTime () @@ -120,30 +120,30 @@ number of seconds between two datetimes. datetime is invalid, since the date is invalid. <p> <p>See also <a href="#isValid">isValid</a>(). -<h3 class=fn><a name="TQDateTime-2"></a>TQDateTime::TQDateTime ( const <a href="qdate.html">TQDate</a> & date ) +<h3 class=fn><a name="TQDateTime-2"></a>TQDateTime::TQDateTime ( const <a href="tqdate.html">TQDate</a> & date ) </h3> Constructs a datetime with date <em>date</em> and null (but valid) time (00:00:00.000). -<h3 class=fn><a name="TQDateTime-3"></a>TQDateTime::TQDateTime ( const <a href="qdate.html">TQDate</a> & date, const <a href="qtime.html">TQTime</a> & time ) +<h3 class=fn><a name="TQDateTime-3"></a>TQDateTime::TQDateTime ( const <a href="tqdate.html">TQDate</a> & date, const <a href="tqtime.html">TQTime</a> & time ) </h3> Constructs a datetime with date <em>date</em> and time <em>time</em>. -<h3 class=fn><a href="ntqdatetime.html">TQDateTime</a> <a name="addDays"></a>TQDateTime::addDays ( int ndays ) const +<h3 class=fn><a href="tqdatetime.html">TQDateTime</a> <a name="addDays"></a>TQDateTime::addDays ( int ndays ) const </h3> Returns a TQDateTime object containing a datetime <em>ndays</em> days later than the datetime of this object (or earlier if <em>ndays</em> is negative). <p> <p>See also <a href="#daysTo">daysTo</a>(), <a href="#addMonths">addMonths</a>(), <a href="#addYears">addYears</a>(), and <a href="#addSecs">addSecs</a>(). -<h3 class=fn><a href="ntqdatetime.html">TQDateTime</a> <a name="addMonths"></a>TQDateTime::addMonths ( int nmonths ) const +<h3 class=fn><a href="tqdatetime.html">TQDateTime</a> <a name="addMonths"></a>TQDateTime::addMonths ( int nmonths ) const </h3> Returns a TQDateTime object containing a datetime <em>nmonths</em> months later than the datetime of this object (or earlier if <em>nmonths</em> is negative). <p> <p>See also <a href="#daysTo">daysTo</a>(), <a href="#addDays">addDays</a>(), <a href="#addYears">addYears</a>(), and <a href="#addSecs">addSecs</a>(). -<h3 class=fn><a href="ntqdatetime.html">TQDateTime</a> <a name="addSecs"></a>TQDateTime::addSecs ( int nsecs ) const +<h3 class=fn><a href="tqdatetime.html">TQDateTime</a> <a name="addSecs"></a>TQDateTime::addSecs ( int nsecs ) const </h3> Returns a TQDateTime object containing a datetime <em>nsecs</em> seconds later than the datetime of this object (or earlier if <em>nsecs</em> is @@ -151,39 +151,39 @@ negative). <p> <p>See also <a href="#secsTo">secsTo</a>(), <a href="#addDays">addDays</a>(), <a href="#addMonths">addMonths</a>(), and <a href="#addYears">addYears</a>(). <p>Example: <a href="listviews-example.html#x136">listviews/listviews.cpp</a>. -<h3 class=fn><a href="ntqdatetime.html">TQDateTime</a> <a name="addYears"></a>TQDateTime::addYears ( int nyears ) const +<h3 class=fn><a href="tqdatetime.html">TQDateTime</a> <a name="addYears"></a>TQDateTime::addYears ( int nyears ) const </h3> Returns a TQDateTime object containing a datetime <em>nyears</em> years later than the datetime of this object (or earlier if <em>nyears</em> is negative). <p> <p>See also <a href="#daysTo">daysTo</a>(), <a href="#addDays">addDays</a>(), <a href="#addMonths">addMonths</a>(), and <a href="#addSecs">addSecs</a>(). -<h3 class=fn><a href="ntqdatetime.html">TQDateTime</a> <a name="currentDateTime"></a>TQDateTime::currentDateTime ( <a href="ntqt.html#TimeSpec-enum">TQt::TimeSpec</a> ts )<tt> [static]</tt> +<h3 class=fn><a href="tqdatetime.html">TQDateTime</a> <a name="currentDateTime"></a>TQDateTime::currentDateTime ( <a href="ntqt.html#TimeSpec-enum">TQt::TimeSpec</a> ts )<tt> [static]</tt> </h3> Returns the current datetime, as reported by the system clock, for the TimeSpec <em>ts</em>. The default TimeSpec is LocalTime. -<p> <p>See also <a href="qdate.html#currentDate">TQDate::currentDate</a>(), <a href="qtime.html#currentTime">TQTime::currentTime</a>(), and <a href="ntqt.html#TimeSpec-enum">TQt::TimeSpec</a>. +<p> <p>See also <a href="tqdate.html#currentDate">TQDate::currentDate</a>(), <a href="tqtime.html#currentTime">TQTime::currentTime</a>(), and <a href="ntqt.html#TimeSpec-enum">TQt::TimeSpec</a>. <p>Example: <a href="listviews-example.html#x137">listviews/listviews.cpp</a>. -<h3 class=fn><a href="ntqdatetime.html">TQDateTime</a> <a name="currentDateTime-2"></a>TQDateTime::currentDateTime ()<tt> [static]</tt> +<h3 class=fn><a href="tqdatetime.html">TQDateTime</a> <a name="currentDateTime-2"></a>TQDateTime::currentDateTime ()<tt> [static]</tt> </h3> This is an overloaded member function, provided for convenience. It behaves essentially like the above function. <p> Returns the current datetime, as reported by the system clock. -<p> <p>See also <a href="qdate.html#currentDate">TQDate::currentDate</a>() and <a href="qtime.html#currentTime">TQTime::currentTime</a>(). +<p> <p>See also <a href="tqdate.html#currentDate">TQDate::currentDate</a>() and <a href="tqtime.html#currentTime">TQTime::currentTime</a>(). -<h3 class=fn><a href="qdate.html">TQDate</a> <a name="date"></a>TQDateTime::date () const +<h3 class=fn><a href="tqdate.html">TQDate</a> <a name="date"></a>TQDateTime::date () const </h3> <p> Returns the date part of the datetime. <p> <p>See also <a href="#setDate">setDate</a>() and <a href="#time">time</a>(). -<h3 class=fn>int <a name="daysTo"></a>TQDateTime::daysTo ( const <a href="ntqdatetime.html">TQDateTime</a> & dt ) const +<h3 class=fn>int <a name="daysTo"></a>TQDateTime::daysTo ( const <a href="tqdatetime.html">TQDateTime</a> & dt ) const </h3> Returns the number of days from this datetime to <em>dt</em> (which is negative if <em>dt</em> is earlier than this datetime). <p> <p>See also <a href="#addDays">addDays</a>() and <a href="#secsTo">secsTo</a>(). -<h3 class=fn><a href="ntqdatetime.html">TQDateTime</a> <a name="fromString"></a>TQDateTime::fromString ( const <a href="tqstring.html">TQString</a> & s, <a href="ntqt.html#DateFormat-enum">TQt::DateFormat</a> f = TQt::TextDate )<tt> [static]</tt> +<h3 class=fn><a href="tqdatetime.html">TQDateTime</a> <a name="fromString"></a>TQDateTime::fromString ( const <a href="tqstring.html">TQString</a> & s, <a href="ntqt.html#DateFormat-enum">TQt::DateFormat</a> f = TQt::TextDate )<tt> [static]</tt> </h3> Returns the TQDateTime represented by the string <em>s</em>, using the format <em>f</em>, or an invalid datetime if this is not possible. @@ -197,47 +197,47 @@ names can also be used, they depend on the user's locale settings. <p> Returns TRUE if both the date and the time are null; otherwise returns FALSE. A null datetime is invalid. -<p> <p>See also <a href="qdate.html#isNull">TQDate::isNull</a>() and <a href="qtime.html#isNull">TQTime::isNull</a>(). +<p> <p>See also <a href="tqdate.html#isNull">TQDate::isNull</a>() and <a href="tqtime.html#isNull">TQTime::isNull</a>(). <h3 class=fn>bool <a name="isValid"></a>TQDateTime::isValid () const </h3> <p> Returns TRUE if both the date and the time are valid; otherwise returns FALSE. -<p> <p>See also <a href="qdate.html#isValid">TQDate::isValid</a>() and <a href="qtime.html#isValid">TQTime::isValid</a>(). +<p> <p>See also <a href="tqdate.html#isValid">TQDate::isValid</a>() and <a href="tqtime.html#isValid">TQTime::isValid</a>(). -<h3 class=fn>bool <a name="operator!-eq"></a>TQDateTime::operator!= ( const <a href="ntqdatetime.html">TQDateTime</a> & dt ) const +<h3 class=fn>bool <a name="operator!-eq"></a>TQDateTime::operator!= ( const <a href="tqdatetime.html">TQDateTime</a> & dt ) const </h3> Returns TRUE if this datetime is different from <em>dt</em>; otherwise returns FALSE. <p> <p>See also <a href="#operator-eq-eq">operator==</a>(). -<h3 class=fn>bool <a name="operator-lt"></a>TQDateTime::operator< ( const <a href="ntqdatetime.html">TQDateTime</a> & dt ) const +<h3 class=fn>bool <a name="operator-lt"></a>TQDateTime::operator< ( const <a href="tqdatetime.html">TQDateTime</a> & dt ) const </h3> Returns TRUE if this datetime is earlier than <em>dt</em>; otherwise returns FALSE. -<h3 class=fn>bool <a name="operator-lt-eq"></a>TQDateTime::operator<= ( const <a href="ntqdatetime.html">TQDateTime</a> & dt ) const +<h3 class=fn>bool <a name="operator-lt-eq"></a>TQDateTime::operator<= ( const <a href="tqdatetime.html">TQDateTime</a> & dt ) const </h3> Returns TRUE if this datetime is earlier than or equal to <em>dt</em>; otherwise returns FALSE. -<h3 class=fn>bool <a name="operator-eq-eq"></a>TQDateTime::operator== ( const <a href="ntqdatetime.html">TQDateTime</a> & dt ) const +<h3 class=fn>bool <a name="operator-eq-eq"></a>TQDateTime::operator== ( const <a href="tqdatetime.html">TQDateTime</a> & dt ) const </h3> Returns TRUE if this datetime is equal to <em>dt</em>; otherwise returns FALSE. <p> <p>See also <a href="#operator!-eq">operator!=</a>(). -<h3 class=fn>bool <a name="operator-gt"></a>TQDateTime::operator> ( const <a href="ntqdatetime.html">TQDateTime</a> & dt ) const +<h3 class=fn>bool <a name="operator-gt"></a>TQDateTime::operator> ( const <a href="tqdatetime.html">TQDateTime</a> & dt ) const </h3> Returns TRUE if this datetime is later than <em>dt</em>; otherwise returns FALSE. -<h3 class=fn>bool <a name="operator-gt-eq"></a>TQDateTime::operator>= ( const <a href="ntqdatetime.html">TQDateTime</a> & dt ) const +<h3 class=fn>bool <a name="operator-gt-eq"></a>TQDateTime::operator>= ( const <a href="tqdatetime.html">TQDateTime</a> & dt ) const </h3> Returns TRUE if this datetime is later than or equal to <em>dt</em>; otherwise returns FALSE. -<h3 class=fn>int <a name="secsTo"></a>TQDateTime::secsTo ( const <a href="ntqdatetime.html">TQDateTime</a> & dt ) const +<h3 class=fn>int <a name="secsTo"></a>TQDateTime::secsTo ( const <a href="tqdatetime.html">TQDateTime</a> & dt ) const </h3> Returns the number of seconds from this datetime to <em>dt</em> (which is negative if <em>dt</em> is earlier than this datetime). @@ -248,15 +248,15 @@ is negative if <em>dt</em> is earlier than this datetime). <a href="ntqapplication.html#qDebug">tqDebug</a>( "There are %d seconds to Christmas", dt.<a href="#secsTo">secsTo</a>(xmas) ); </pre> -<p> <p>See also <a href="#addSecs">addSecs</a>(), <a href="#daysTo">daysTo</a>(), and <a href="qtime.html#secsTo">TQTime::secsTo</a>(). +<p> <p>See also <a href="#addSecs">addSecs</a>(), <a href="#daysTo">daysTo</a>(), and <a href="tqtime.html#secsTo">TQTime::secsTo</a>(). -<h3 class=fn>void <a name="setDate"></a>TQDateTime::setDate ( const <a href="qdate.html">TQDate</a> & date ) +<h3 class=fn>void <a name="setDate"></a>TQDateTime::setDate ( const <a href="tqdate.html">TQDate</a> & date ) </h3> <p> Sets the date part of this datetime to <em>date</em>. <p> <p>See also <a href="#date">date</a>() and <a href="#setTime">setTime</a>(). -<h3 class=fn>void <a name="setTime"></a>TQDateTime::setTime ( const <a href="qtime.html">TQTime</a> & time ) +<h3 class=fn>void <a name="setTime"></a>TQDateTime::setTime ( const <a href="tqtime.html">TQTime</a> & time ) </h3> <p> Sets the time part of this datetime to <em>time</em>. @@ -278,7 +278,7 @@ This is an overloaded member function, provided for convenience. It behaves esse <p> Convenience function that sets the date and time to local time based on the given UTC time. -<h3 class=fn><a href="qtime.html">TQTime</a> <a name="time"></a>TQDateTime::time () const +<h3 class=fn><a href="tqtime.html">TQTime</a> <a name="time"></a>TQDateTime::time () const </h3> <p> Returns the time part of the datetime. @@ -295,18 +295,18 @@ determines the format of the result string. <tr bgcolor="#d0d0d0"> <td valign="top">dd <td valign="top">the day as number with a leading zero (01-31) <tr bgcolor="#f0f0f0"> <td valign="top">ddd <td valign="top">the abbreviated localized day name (e.g. 'Mon'..'Sun'). -Uses <a href="qdate.html#shortDayName">TQDate::shortDayName</a>(). +Uses <a href="tqdate.html#shortDayName">TQDate::shortDayName</a>(). <tr bgcolor="#d0d0d0"> <td valign="top">dddd <td valign="top">the long localized day name (e.g. 'Monday'..'Sunday'). -Uses <a href="qdate.html#longDayName">TQDate::longDayName</a>(). +Uses <a href="tqdate.html#longDayName">TQDate::longDayName</a>(). <tr bgcolor="#f0f0f0"> <td valign="top">M <td valign="top">the month as number without a leading zero (1-12) <tr bgcolor="#d0d0d0"> <td valign="top">MM <td valign="top">the month as number with a leading zero (01-12) <tr bgcolor="#f0f0f0"> <td valign="top">MMM <td valign="top">the abbreviated localized month name (e.g. 'Jan'..'Dec'). -Uses <a href="qdate.html#shortMonthName">TQDate::shortMonthName</a>(). +Uses <a href="tqdate.html#shortMonthName">TQDate::shortMonthName</a>(). <tr bgcolor="#d0d0d0"> <td valign="top">MMMM <td valign="top">the long localized month name (e.g. 'January'..'December'). -Uses <a href="qdate.html#longMonthName">TQDate::longMonthName</a>(). +Uses <a href="tqdate.html#longMonthName">TQDate::longMonthName</a>(). <tr bgcolor="#f0f0f0"> <td valign="top">yy <td valign="top">the year as two digit number (00-99) <tr bgcolor="#d0d0d0"> <td valign="top">yyyy <td valign="top">the year as four digit number (1752-8000) </table></center> @@ -339,7 +339,7 @@ Uses <a href="qdate.html#longMonthName">TQDate::longMonthName</a>(). <tr bgcolor="#d0d0d0"> <td valign="top">h:m:s ap <td valign="top" colspan="1" rowspan="1"> 2:13:9 pm </table></center> <p> If the datetime is an invalid datetime, then <a href="tqstring.html#TQString-null">TQString::null</a> will be returned. -<p> <p>See also <a href="qdate.html#toString">TQDate::toString</a>() and <a href="qtime.html#toString">TQTime::toString</a>(). +<p> <p>See also <a href="tqdate.html#toString">TQDate::toString</a>() and <a href="tqtime.html#toString">TQTime::toString</a>(). <h3 class=fn><a href="tqstring.html">TQString</a> <a name="toString-2"></a>TQDateTime::toString ( <a href="ntqt.html#DateFormat-enum">TQt::DateFormat</a> f = TQt::TextDate ) const </h3> @@ -347,8 +347,8 @@ This is an overloaded member function, provided for convenience. It behaves esse <p> Returns the datetime as a string. The <em>f</em> parameter determines the format of the string. <p> If <em>f</em> is <a href="ntqt.html#DateFormat-enum">TQt::TextDate</a>, the string format is "Wed May 20 -03:40:13 1998" (using <a href="qdate.html#shortDayName">TQDate::shortDayName</a>(), <a href="qdate.html#shortMonthName">TQDate::shortMonthName</a>(), -and <a href="qtime.html#toString">TQTime::toString</a>() to generate the string, so the day and month +03:40:13 1998" (using <a href="tqdate.html#shortDayName">TQDate::shortDayName</a>(), <a href="tqdate.html#shortMonthName">TQDate::shortMonthName</a>(), +and <a href="tqtime.html#toString">TQTime::toString</a>() to generate the string, so the day and month names will have localized names). <p> If <em>f</em> is <a href="ntqt.html#DateFormat-enum">TQt::ISODate</a>, the string format corresponds to the ISO 8601 extended specification for representations of dates and @@ -357,7 +357,7 @@ times, which is YYYY-MM-DDTHH:MM:SS. locale settings of the system. <p> If the format <em>f</em> is invalid or the datetime is invalid, <a href="#toString">toString</a>() returns a null string. -<p> <p>See also <a href="qdate.html#toString">TQDate::toString</a>() and <a href="qtime.html#toString">TQTime::toString</a>(). +<p> <p>See also <a href="tqdate.html#toString">TQDate::toString</a>() and <a href="tqtime.html#toString">TQTime::toString</a>(). <h3 class=fn>uint <a name="toTime_t"></a>TQDateTime::toTime_t () const </h3> @@ -368,13 +368,13 @@ behave as if local time were UTC. <p> <p>See also <a href="#setTime_t">setTime_t</a>(). <hr><h2>Related Functions</h2> -<h3 class=fn><a href="ntqdatastream.html">TQDataStream</a> & <a name="operator-lt-lt"></a>operator<< ( <a href="ntqdatastream.html">TQDataStream</a> & s, const <a href="ntqdatetime.html">TQDateTime</a> & dt ) +<h3 class=fn><a href="ntqdatastream.html">TQDataStream</a> & <a name="operator-lt-lt"></a>operator<< ( <a href="ntqdatastream.html">TQDataStream</a> & s, const <a href="tqdatetime.html">TQDateTime</a> & dt ) </h3> <p> Writes the datetime <em>dt</em> to the stream <em>s</em>. <p> <p>See also <a href="datastreamformat.html">Format of the TQDataStream operators</a>. -<h3 class=fn><a href="ntqdatastream.html">TQDataStream</a> & <a name="operator-gt-gt"></a>operator>> ( <a href="ntqdatastream.html">TQDataStream</a> & s, <a href="ntqdatetime.html">TQDateTime</a> & dt ) +<h3 class=fn><a href="ntqdatastream.html">TQDataStream</a> & <a name="operator-gt-gt"></a>operator>> ( <a href="ntqdatastream.html">TQDataStream</a> & s, <a href="tqdatetime.html">TQDateTime</a> & dt ) </h3> <p> Reads a datetime from the stream <em>s</em> into <em>dt</em>. diff --git a/doc/html/qdatetimeedit-h.html b/doc/html/tqdatetimeedit-h.html index 43466bb72..d6c6e3651 100644 --- a/doc/html/qdatetimeedit-h.html +++ b/doc/html/tqdatetimeedit-h.html @@ -1,9 +1,9 @@ <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN"> -<!-- /home/espenr/tmp/qt-3.3.8-espenr-2499/qt-x11-free-3.3.8/include/ntqdatetimeedit.h:1 --> +<!-- /home/espenr/tmp/qt-3.3.8-espenr-2499/qt-x11-free-3.3.8/include/tqdatetimeedit.h:1 --> <html> <head> <meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-1"> -<title>ntqdatetimeedit.h Include File</title> +<title>tqdatetimeedit.h Include File</title> <style type="text/css"><!-- fn { margin-left: 1cm; text-indent: -1cm; } a:link { color: #004faf; text-decoration: none } @@ -29,13 +29,13 @@ body { background: #ffffff; color: black; } | <a href="functions.html"> <font color="#004faf">Functions</font></a> </td> -<td align="right" valign="center"><img src="logo32.png" align="right" width="64" height="32" border="0"></td></tr></table><h1 align=center>ntqdatetimeedit.h</h1> +<td align="right" valign="center"><img src="logo32.png" align="right" width="64" height="32" border="0"></td></tr></table><h1 align=center>tqdatetimeedit.h</h1> -<p>This is the verbatim text of the ntqdatetimeedit.h include file. It is provided only for illustration; the copyright remains with Trolltech. +<p>This is the verbatim text of the tqdatetimeedit.h include file. It is provided only for illustration; the copyright remains with Trolltech. <hr> <pre> /**************************************************************************** -** $Id: qt/ntqdatetimeedit.h 3.3.8 edited Jan 11 14:46 $ +** $Id: qt/tqdatetimeedit.h 3.3.8 edited Jan 11 14:46 $ ** ** Definition of date and time edit classes ** @@ -80,7 +80,7 @@ body { background: #ffffff; color: black; } #ifndef QT_H #include "tqwidget.h" #include "tqstring.h" -#include "ntqdatetime.h" +#include "tqdatetime.h" #endif // QT_H #ifndef TQT_NO_DATETIMEEDIT diff --git a/doc/html/qdatetimeedit-members.html b/doc/html/tqdatetimeedit-members.html index 15589be91..e15baa4ff 100644 --- a/doc/html/qdatetimeedit-members.html +++ b/doc/html/tqdatetimeedit-members.html @@ -1,5 +1,5 @@ <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN"> -<!-- /home/espenr/tmp/qt-3.3.8-espenr-2499/qt-x11-free-3.3.8/include/ntqdatetimeedit.h:238 --> +<!-- /home/espenr/tmp/qt-3.3.8-espenr-2499/qt-x11-free-3.3.8/include/tqdatetimeedit.h:238 --> <html> <head> <meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-1"> @@ -32,14 +32,14 @@ body { background: #ffffff; color: black; } <td align="right" valign="center"><img src="logo32.png" align="right" width="64" height="32" border="0"></td></tr></table><h1 align=center>Complete Member List for TQDateTimeEdit</h1> <p>This is the complete list of member functions for -<a href="ntqdatetimeedit.html">TQDateTimeEdit</a>, including inherited members. +<a href="tqdatetimeedit.html">TQDateTimeEdit</a>, including inherited members. <ul> -<li><a href="ntqdatetimeedit.html#TQDateTimeEdit">TQDateTimeEdit</a>() -<li><a href="ntqdatetimeedit.html#~TQDateTimeEdit">~TQDateTimeEdit</a>() +<li><a href="tqdatetimeedit.html#TQDateTimeEdit">TQDateTimeEdit</a>() +<li><a href="tqdatetimeedit.html#~TQDateTimeEdit">~TQDateTimeEdit</a>() <li><a href="tqwidget.html#acceptDrops">acceptDrops</a>() <li><a href="tqwidget.html#adjustSize">adjustSize</a>() -<li><a href="ntqdatetimeedit.html#autoAdvance">autoAdvance</a>() +<li><a href="tqdatetimeedit.html#autoAdvance">autoAdvance</a>() <li><a href="tqwidget.html#autoMask">autoMask</a>() <li><a href="tqwidget.html#backgroundBrush">backgroundBrush</a>() <li><a href="tqwidget.html#backgroundColor">backgroundColor</a>() @@ -73,8 +73,8 @@ body { background: #ffffff; color: black; } <li><a href="tqwidget.html#cursor">cursor</a>() <li><a href="tqobject.html#customEvent">customEvent</a>() <li><a href="tqwidget.html#customWhatsThis">customWhatsThis</a>() -<li><a href="ntqdatetimeedit.html#dateEdit">dateEdit</a>() -<li><a href="ntqdatetimeedit.html#dateTime">dateTime</a>() +<li><a href="tqdatetimeedit.html#dateEdit">dateEdit</a>() +<li><a href="tqdatetimeedit.html#dateTime">dateTime</a>() <li><a href="tqobject.html#deleteLater">deleteLater</a>() <li><a href="tqwidget.html#destroy">destroy</a>() <li><a href="tqobject.html#destroyed">destroyed</a>() @@ -221,7 +221,7 @@ body { background: #ffffff; color: black; } <li><a href="tqobject.html#sender">sender</a>() <li><a href="tqwidget.html#setAcceptDrops">setAcceptDrops</a>() <li><a href="tqwidget.html#setActiveWindow">setActiveWindow</a>() -<li><a href="ntqdatetimeedit.html#setAutoAdvance">setAutoAdvance</a>() +<li><a href="tqdatetimeedit.html#setAutoAdvance">setAutoAdvance</a>() <li><a href="tqwidget.html#setAutoMask">setAutoMask</a>() <li><a href="tqwidget.html#setBackgroundColor">setBackgroundColor</a>() <li><a href="tqwidget.html#setBackgroundMode">setBackgroundMode</a>() @@ -230,7 +230,7 @@ body { background: #ffffff; color: black; } <li><a href="tqwidget.html#setBaseSize">setBaseSize</a>() <li><a href="tqwidget.html#setCaption">setCaption</a>() <li><a href="tqwidget.html#setCursor">setCursor</a>() -<li><a href="ntqdatetimeedit.html#setDateTime">setDateTime</a>() +<li><a href="tqdatetimeedit.html#setDateTime">setDateTime</a>() <li><a href="tqwidget.html#setDisabled">setDisabled</a>() <li><a href="tqwidget.html#setEnabled">setEnabled</a>() <li><a href="tqwidget.html#setEraseColor">setEraseColor</a>() @@ -289,7 +289,7 @@ body { background: #ffffff; color: black; } <li><a href="tqwidget.html#styleChange">styleChange</a>() <li><a href="tqwidget.html#tabletEvent">tabletEvent</a>() <li><a href="tqwidget.html#testWFlags">testWFlags</a>() -<li><a href="ntqdatetimeedit.html#timeEdit">timeEdit</a>() +<li><a href="tqdatetimeedit.html#timeEdit">timeEdit</a>() <li><a href="tqobject.html#timerEvent">timerEvent</a>() <li><a href="tqwidget.html#topLevelWidget">topLevelWidget</a>() <li><a href="tqobject.html#tr">tr</a>() @@ -300,7 +300,7 @@ body { background: #ffffff; color: black; } <li><a href="tqwidget.html#update">update</a>() <li><a href="tqwidget.html#updateGeometry">updateGeometry</a>() <li><a href="tqwidget.html#updateMask">updateMask</a>() -<li><a href="ntqdatetimeedit.html#valueChanged">valueChanged</a>() +<li><a href="tqdatetimeedit.html#valueChanged">valueChanged</a>() <li><a href="tqwidget.html#visibleRect">visibleRect</a>() <li><a href="tqwidget.html#wheelEvent">wheelEvent</a>() <li><a href="tqwidget.html#width">width</a>() diff --git a/doc/html/ntqdatetimeedit.html b/doc/html/tqdatetimeedit.html index fa265aecc..5f0cd9d0d 100644 --- a/doc/html/ntqdatetimeedit.html +++ b/doc/html/tqdatetimeedit.html @@ -1,5 +1,5 @@ <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN"> -<!-- /home/espenr/tmp/qt-3.3.8-espenr-2499/qt-x11-free-3.3.8/src/widgets/qdatetimeedit.cpp:2599 --> +<!-- /home/espenr/tmp/qt-3.3.8-espenr-2499/qt-x11-free-3.3.8/src/widgets/tqdatetimeedit.cpp:2599 --> <html> <head> <meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-1"> @@ -34,9 +34,9 @@ body { background: #ffffff; color: black; } <p>The TQDateTimeEdit class combines a TQDateEdit and TQTimeEdit widget into a single widget for editing datetimes. <a href="#details">More...</a> -<p><tt>#include <<a href="qdatetimeedit-h.html">ntqdatetimeedit.h</a>></tt> +<p><tt>#include <<a href="tqdatetimeedit-h.html">tqdatetimeedit.h</a>></tt> <p>Inherits <a href="tqwidget.html">TQWidget</a>. -<p><a href="qdatetimeedit-members.html">List of all member functions.</a> +<p><a href="tqdatetimeedit-members.html">List of all member functions.</a> <h2>Public Members</h2> <ul> <li class=fn><a href="#TQDateTimeEdit"><b>TQDateTimeEdit</b></a> ( TQWidget * parent = 0, const char * name = 0 )</li> @@ -63,7 +63,7 @@ widget into a single widget for editing datetimes. <hr><a name="details"></a><h2>Detailed Description</h2> -The TQDateTimeEdit class combines a <a href="qdateedit.html">TQDateEdit</a> and <a href="qtimeedit.html">TQTimeEdit</a> +The TQDateTimeEdit class combines a <a href="tqdateedit.html">TQDateEdit</a> and <a href="tqtimeedit.html">TQTimeEdit</a> widget into a single widget for editing datetimes. <p> @@ -78,12 +78,12 @@ using <a href="#setAutoAdvance">setAutoAdvance</a>(). The datetime can be set wi <a href="#setDateTime">setDateTime</a>(). <p> The date format is read from the system's locale settings. It is set to year, month, day order if that is not possible. See -<a href="qdateedit.html#setOrder">TQDateEdit::setOrder</a>() to change this. Times appear in the order +<a href="tqdateedit.html#setOrder">TQDateEdit::setOrder</a>() to change this. Times appear in the order hours, minutes, seconds using the 24 hour clock. <p> It is recommended that the TQDateTimeEdit is initialised with a datetime, e.g. <pre> - TQDateTimeEdit *dateTimeEdit = new TQDateTimeEdit( TQDateTime::<a href="ntqdatetime.html#currentDateTime">currentDateTime</a>(), this ); + TQDateTimeEdit *dateTimeEdit = new TQDateTimeEdit( TQDateTime::<a href="tqdatetime.html#currentDateTime">currentDateTime</a>(), this ); dateTimeEdit-><a href="#dateEdit">dateEdit</a>()->setRange( TQDateTime::currentDate(), TQDateTime::currentDate().addDays( 7 ) ); </pre> @@ -91,14 +91,14 @@ datetime, e.g. Here we've created a new TQDateTimeEdit set to the current date and time, and set the date to have a minimum date of now and a maximum date of a week from now. -<p> Terminology: A <a href="qdateedit.html">TQDateEdit</a> widget consists of three 'sections', one -each for the year, month and day. Similarly a <a href="qtimeedit.html">TQTimeEdit</a> consists +<p> Terminology: A <a href="tqdateedit.html">TQDateEdit</a> widget consists of three 'sections', one +each for the year, month and day. Similarly a <a href="tqtimeedit.html">TQTimeEdit</a> consists of three sections, one each for the hour, minute and second. The character that separates each date section is specified with setDateSeparator(); similarly setTimeSeparator() is used for the time sections. <p> <center><img src="datetimewidgets.png" alt="Date Time Widgets"></center> -<p> <p>See also <a href="qdateedit.html">TQDateEdit</a>, <a href="qtimeedit.html">TQTimeEdit</a>, <a href="advanced.html">Advanced Widgets</a>, and <a href="time.html">Time and Date</a>. +<p> <p>See also <a href="tqdateedit.html">TQDateEdit</a>, <a href="tqtimeedit.html">TQTimeEdit</a>, <a href="advanced.html">Advanced Widgets</a>, and <a href="time.html">Time and Date</a>. <hr><h2>Member Function Documentation</h2> <h3 class=fn><a name="TQDateTimeEdit"></a>TQDateTimeEdit::TQDateTimeEdit ( <a href="tqwidget.html">TQWidget</a> * parent = 0, const char * name = 0 ) @@ -106,7 +106,7 @@ time sections. Constructs an empty datetime edit with parent <em>parent</em> and called <em>name</em>. -<h3 class=fn><a name="TQDateTimeEdit-2"></a>TQDateTimeEdit::TQDateTimeEdit ( const <a href="ntqdatetime.html">TQDateTime</a> & datetime, <a href="tqwidget.html">TQWidget</a> * parent = 0, const char * name = 0 ) +<h3 class=fn><a name="TQDateTimeEdit-2"></a>TQDateTimeEdit::TQDateTimeEdit ( const <a href="tqdatetime.html">TQDateTime</a> & datetime, <a href="tqwidget.html">TQWidget</a> * parent = 0, const char * name = 0 ) </h3> This is an overloaded member function, provided for convenience. It behaves essentially like the above function. <p> Constructs a datetime edit with the initial value <em>datetime</em>, @@ -121,37 +121,37 @@ Destroys the object and frees any allocated resources. Returns TRUE if auto-advance is enabled, otherwise returns FALSE. <p> <p>See also <a href="#setAutoAdvance">setAutoAdvance</a>(). -<h3 class=fn><a href="qdateedit.html">TQDateEdit</a> * <a name="dateEdit"></a>TQDateTimeEdit::dateEdit () +<h3 class=fn><a href="tqdateedit.html">TQDateEdit</a> * <a name="dateEdit"></a>TQDateTimeEdit::dateEdit () </h3> <p> Returns the internal widget used for editing the date part of the datetime. -<h3 class=fn><a href="ntqdatetime.html">TQDateTime</a> <a name="dateTime"></a>TQDateTimeEdit::dateTime () const +<h3 class=fn><a href="tqdatetime.html">TQDateTime</a> <a name="dateTime"></a>TQDateTimeEdit::dateTime () const </h3><p>Returns the editor's datetime value. -See the <a href="ntqdatetimeedit.html#dateTime-prop">"dateTime"</a> property for details. +See the <a href="tqdatetimeedit.html#dateTime-prop">"dateTime"</a> property for details. <h3 class=fn>void <a name="setAutoAdvance"></a>TQDateTimeEdit::setAutoAdvance ( bool advance )<tt> [virtual]</tt> </h3> Sets the auto advance property of the editor to <em>advance</em>. If set to TRUE, the editor will automatically advance focus to the next date or time section if the user has completed a section. -<h3 class=fn>void <a name="setDateTime"></a>TQDateTimeEdit::setDateTime ( const <a href="ntqdatetime.html">TQDateTime</a> & dt )<tt> [virtual slot]</tt> +<h3 class=fn>void <a name="setDateTime"></a>TQDateTimeEdit::setDateTime ( const <a href="tqdatetime.html">TQDateTime</a> & dt )<tt> [virtual slot]</tt> </h3><p>Sets the editor's datetime value to <em>dt</em>. -See the <a href="ntqdatetimeedit.html#dateTime-prop">"dateTime"</a> property for details. -<h3 class=fn><a href="qtimeedit.html">TQTimeEdit</a> * <a name="timeEdit"></a>TQDateTimeEdit::timeEdit () +See the <a href="tqdatetimeedit.html#dateTime-prop">"dateTime"</a> property for details. +<h3 class=fn><a href="tqtimeedit.html">TQTimeEdit</a> * <a name="timeEdit"></a>TQDateTimeEdit::timeEdit () </h3> <p> Returns the internal widget used for editing the time part of the datetime. -<h3 class=fn>void <a name="valueChanged"></a>TQDateTimeEdit::valueChanged ( const <a href="ntqdatetime.html">TQDateTime</a> & datetime )<tt> [signal]</tt> +<h3 class=fn>void <a name="valueChanged"></a>TQDateTimeEdit::valueChanged ( const <a href="tqdatetime.html">TQDateTime</a> & datetime )<tt> [signal]</tt> </h3> <p> This signal is emitted every time the date or time changes. The <em>datetime</em> argument is the new datetime. <hr><h2>Property Documentation</h2> -<h3 class=fn><a href="ntqdatetime.html">TQDateTime</a> <a name="dateTime-prop"></a>dateTime</h3> +<h3 class=fn><a href="tqdatetime.html">TQDateTime</a> <a name="dateTime-prop"></a>dateTime</h3> <p>This property holds the editor's datetime value. <p>The datetime edit's datetime which may be an invalid datetime. diff --git a/doc/html/qdatetimeeditbase-members.html b/doc/html/tqdatetimeeditbase-members.html index 5b290f67d..217a8f8d7 100644 --- a/doc/html/qdatetimeeditbase-members.html +++ b/doc/html/tqdatetimeeditbase-members.html @@ -1,5 +1,5 @@ <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN"> -<!-- /home/espenr/tmp/qt-3.3.8-espenr-2499/qt-x11-free-3.3.8/include/ntqdatetimeedit.h:49 --> +<!-- /home/espenr/tmp/qt-3.3.8-espenr-2499/qt-x11-free-3.3.8/include/tqdatetimeedit.h:49 --> <html> <head> <meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-1"> @@ -32,7 +32,7 @@ body { background: #ffffff; color: black; } <td align="right" valign="center"><img src="logo32.png" align="right" width="64" height="32" border="0"></td></tr></table><h1 align=center>Complete Member List for TQDateTimeEditBase</h1> <p>This is the complete list of member functions for -<a href="qdatetimeeditbase.html">TQDateTimeEditBase</a>, including inherited members. +<a href="tqdatetimeeditbase.html">TQDateTimeEditBase</a>, including inherited members. <ul> <li><a href="tqwidget.html#acceptDrops">acceptDrops</a>() diff --git a/doc/html/qdatetimeeditbase.html b/doc/html/tqdatetimeeditbase.html index 56a5969ca..6a06326ef 100644 --- a/doc/html/qdatetimeeditbase.html +++ b/doc/html/tqdatetimeeditbase.html @@ -1,5 +1,5 @@ <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN"> -<!-- /home/espenr/tmp/qt-3.3.8-espenr-2499/qt-x11-free-3.3.8/src/widgets/qdatetimeedit.cpp:757 --> +<!-- /home/espenr/tmp/qt-3.3.8-espenr-2499/qt-x11-free-3.3.8/src/widgets/tqdatetimeedit.cpp:757 --> <html> <head> <meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-1"> @@ -33,15 +33,15 @@ body { background: #ffffff; color: black; } <p>The TQDateTimeEditBase class provides an abstraction for date and edit editors. <a href="#details">More...</a> -<p><tt>#include <<a href="qdatetimeedit-h.html">ntqdatetimeedit.h</a>></tt> +<p><tt>#include <<a href="tqdatetimeedit-h.html">tqdatetimeedit.h</a>></tt> <p>Inherits <a href="tqwidget.html">TQWidget</a>. -<p>Inherited by <a href="qdateedit.html">TQDateEdit</a> and <a href="qtimeedit.html">TQTimeEdit</a>. -<p><a href="qdatetimeeditbase-members.html">List of all member functions.</a> +<p>Inherited by <a href="tqdateedit.html">TQDateEdit</a> and <a href="tqtimeedit.html">TQTimeEdit</a>. +<p><a href="tqdatetimeeditbase-members.html">List of all member functions.</a> <hr><a name="details"></a><h2>Detailed Description</h2> The TQDateTimeEditBase class provides an abstraction for date and edit editors. <p> Small abstract class that provides some functions that are common -for both <a href="qdateedit.html">TQDateEdit</a> and <a href="qtimeedit.html">TQTimeEdit</a>. It is used internally by +for both <a href="tqdateedit.html">TQDateEdit</a> and <a href="tqtimeedit.html">TQTimeEdit</a>. It is used internally by TQDateTimeEditor. <!-- eof --> diff --git a/doc/html/tqiconview.html b/doc/html/tqiconview.html index 7a3c286ea..f10b8cabe 100644 --- a/doc/html/tqiconview.html +++ b/doc/html/tqiconview.html @@ -852,7 +852,7 @@ See the <a href="tqiconview.html#showToolTips-prop">"showToolTips"</a> property </h3> This slot is used for a slightly-delayed update. <p> The icon view is not redrawn immediately after inserting a new item -but after a very small delay using a <a href="ntqtimer.html">TQTimer</a>. This means that when +but after a very small delay using a <a href="tqtimer.html">TQTimer</a>. This means that when many items are inserted in a loop the icon view is probably redrawn only once at the end of the loop. This makes the insertions both flicker-free and faster. diff --git a/doc/html/tqobject.html b/doc/html/tqobject.html index 3fc79af4b..5fb9afa04 100644 --- a/doc/html/tqobject.html +++ b/doc/html/tqobject.html @@ -36,7 +36,7 @@ body { background: #ffffff; color: black; } <p>All the functions in this class are <a href="threads.html#reentrant">reentrant</a> when TQt is built with thread support.</p> <p><tt>#include <<a href="tqobject-h.html">tqobject.h</a>></tt> <p>Inherits <a href="ntqt.html">TQt</a>. --<p>Inherited by <a href="ntqaccel.html">TQAccel</a>, <a href="qaccessibleobject.html">TQAccessibleObject</a>, <a href="ntqaction.html">TQAction</a>, <a href="ntqapplication.html">TQApplication</a>, <a href="ntqassistantclient.html">TQAssistantClient</a>, <a href="qdatapump.html">TQDataPump</a>, <a href="tqwidget.html">TQWidget</a>, <a href="tqcanvas.html">TQCanvas</a>, <a href="tqstyle.html">TQStyle</a>, <a href="ntqclipboard.html">TQClipboard</a>, <a href="ntqdns.html">TQDns</a>, <a href="ntqlayout.html">TQLayout</a>, <a href="ntqdragobject.html">TQDragObject</a>, <a href="tqeditorfactory.html">TQEditorFactory</a>, <a href="ntqeventloop.html">TQEventLoop</a>, <a href="qfileiconprovider.html">TQFileIconProvider</a>, <a href="ntqnetworkprotocol.html">TQNetworkProtocol</a>, <a href="qnetworkoperation.html">TQNetworkOperation</a>, <a href="qnpinstance.html">TQNPInstance</a>, <a href="tqobjectcleanuphandler.html">TQObjectCleanupHandler</a>, <a href="ntqprocess.html">TQProcess</a>, <a href="ntqserversocket.html">TQServerSocket</a>, <a href="ntqsessionmanager.html">TQSessionManager</a>, <a href="ntqsignal.html">TQSignal</a>, <a href="ntqsignalmapper.html">TQSignalMapper</a>, <a href="ntqsocket.html">TQSocket</a>, <a href="ntqsocketnotifier.html">TQSocketNotifier</a>, <a href="ntqsound.html">TQSound</a>, <a href="tqsqldatabase.html">TQSqlDatabase</a>, <a href="tqsqldriver.html">TQSqlDriver</a>, <a href="tqsqlform.html">TQSqlForm</a>, <a href="tqstylesheet.html">TQStyleSheet</a>, <a href="ntqtimer.html">TQTimer</a>, <a href="qtooltipgroup.html">TQToolTipGroup</a>, <a href="ntqtranslator.html">TQTranslator</a>, <a href="ntqurloperator.html">TQUrlOperator</a>, and <a href="ntqvalidator.html">TQValidator</a>. +-<p>Inherited by <a href="ntqaccel.html">TQAccel</a>, <a href="qaccessibleobject.html">TQAccessibleObject</a>, <a href="ntqaction.html">TQAction</a>, <a href="ntqapplication.html">TQApplication</a>, <a href="ntqassistantclient.html">TQAssistantClient</a>, <a href="qdatapump.html">TQDataPump</a>, <a href="tqwidget.html">TQWidget</a>, <a href="tqcanvas.html">TQCanvas</a>, <a href="tqstyle.html">TQStyle</a>, <a href="ntqclipboard.html">TQClipboard</a>, <a href="ntqdns.html">TQDns</a>, <a href="ntqlayout.html">TQLayout</a>, <a href="ntqdragobject.html">TQDragObject</a>, <a href="tqeditorfactory.html">TQEditorFactory</a>, <a href="ntqeventloop.html">TQEventLoop</a>, <a href="qfileiconprovider.html">TQFileIconProvider</a>, <a href="ntqnetworkprotocol.html">TQNetworkProtocol</a>, <a href="qnetworkoperation.html">TQNetworkOperation</a>, <a href="qnpinstance.html">TQNPInstance</a>, <a href="tqobjectcleanuphandler.html">TQObjectCleanupHandler</a>, <a href="ntqprocess.html">TQProcess</a>, <a href="ntqserversocket.html">TQServerSocket</a>, <a href="ntqsessionmanager.html">TQSessionManager</a>, <a href="ntqsignal.html">TQSignal</a>, <a href="ntqsignalmapper.html">TQSignalMapper</a>, <a href="ntqsocket.html">TQSocket</a>, <a href="ntqsocketnotifier.html">TQSocketNotifier</a>, <a href="ntqsound.html">TQSound</a>, <a href="tqsqldatabase.html">TQSqlDatabase</a>, <a href="tqsqldriver.html">TQSqlDriver</a>, <a href="tqsqlform.html">TQSqlForm</a>, <a href="tqstylesheet.html">TQStyleSheet</a>, <a href="tqtimer.html">TQTimer</a>, <a href="qtooltipgroup.html">TQToolTipGroup</a>, <a href="ntqtranslator.html">TQTranslator</a>, <a href="ntqurloperator.html">TQUrlOperator</a>, and <a href="ntqvalidator.html">TQValidator</a>. <p><a href="tqobject-members.html">List of all member functions.</a> <h2>Public Members</h2> <ul> @@ -146,7 +146,7 @@ of other objects. See <a href="#installEventFilter">installEventFilter</a>() and details. A convenience handler, <a href="#childEvent">childEvent</a>(), can be reimplemented to catch child events. <p> Last but not least, TQObject provides the basic timer support in -TQt; see <a href="ntqtimer.html">TQTimer</a> for high-level support for timers. +TQt; see <a href="tqtimer.html">TQTimer</a> for high-level support for timers. <p> Notice that the <a href="metaobjects.html#TQ_OBJECT">TQ_OBJECT</a> macro is mandatory for any object that implements signals, slots or properties. You also need to run the <a href="moc.html">moc program (Meta Object Compiler)</a> on the @@ -561,7 +561,7 @@ returns FALSE. <p> A class is considered to inherit itself. <p> Example: <pre> - <a href="ntqtimer.html">TQTimer</a> *t = new <a href="ntqtimer.html">TQTimer</a>; // TQTimer inherits TQObject + <a href="tqtimer.html">TQTimer</a> *t = new <a href="tqtimer.html">TQTimer</a>; // TQTimer inherits TQObject t-><a href="#inherits">inherits</a>( "TQTimer" ); // returns TRUE t-><a href="#inherits">inherits</a>( "TQObject" ); // returns TRUE t-><a href="#inherits">inherits</a>( "TQButton" ); // returns FALSE @@ -648,7 +648,7 @@ Returns TRUE if this object is an instance of the class <em>clname</em>; otherwise returns FALSE. <p> Example: <pre> - <a href="ntqtimer.html">TQTimer</a> *t = new <a href="ntqtimer.html">TQTimer</a>; // TQTimer inherits TQObject + <a href="tqtimer.html">TQTimer</a> *t = new <a href="tqtimer.html">TQTimer</a>; // TQTimer inherits TQObject t-><a href="#isA">isA</a>( "TQTimer" ); // returns TRUE t-><a href="#isA">isA</a>( "TQObject" ); // returns FALSE </pre> @@ -675,7 +675,7 @@ Kills all timers that this object has started. <p> <b>Warning:</b> Using this function can cause hard-to-find bugs: it kills timers started by sub- and superclasses as well as those started by you, which is often not what you want. We recommend using a -<a href="ntqtimer.html">TQTimer</a> or perhaps <a href="#killTimer">killTimer</a>(). +<a href="tqtimer.html">TQTimer</a> or perhaps <a href="#killTimer">killTimer</a>(). <p> <p>See also <a href="#timerEvent">timerEvent</a>(), <a href="#startTimer">startTimer</a>(), and <a href="#killTimer">killTimer</a>(). <h3 class=fn><a href="ntqmetaobject.html">TQMetaObject</a> * <a name="metaObject"></a>TQObject::metaObject () const<tt> [virtual]</tt> @@ -830,10 +830,10 @@ it could not start a timer. <a href="#killTimer">killTimer</a>() or <a href="#killTimers">killTimers</a>() is called. If <em>interval</em> is 0, then the timer event occurs once every time there are no more window system events to process. -<p> The virtual <a href="#timerEvent">timerEvent</a>() function is called with the <a href="qtimerevent.html">TQTimerEvent</a> +<p> The virtual <a href="#timerEvent">timerEvent</a>() function is called with the <a href="tqtimerevent.html">TQTimerEvent</a> event parameter class when a timer event occurs. Reimplement this function to get timer events. -<p> If multiple timers are running, the <a href="qtimerevent.html#timerId">TQTimerEvent::timerId</a>() can be +<p> If multiple timers are running, the <a href="tqtimerevent.html#timerId">TQTimerEvent::timerId</a>() can be used to find out which timer was activated. <p> Example: <pre> @@ -844,7 +844,7 @@ used to find out which timer was activated. MyObject( TQObject *parent = 0, const char *name = 0 ); protected: - void timerEvent( <a href="qtimerevent.html">TQTimerEvent</a> * ); + void timerEvent( <a href="tqtimerevent.html">TQTimerEvent</a> * ); }; MyObject::MyObject( TQObject *parent, const char *name ) @@ -855,13 +855,13 @@ used to find out which timer was activated. <a href="#startTimer">startTimer</a>( 60000 ); // 1-minute timer } - void MyObject::<a href="#timerEvent">timerEvent</a>( <a href="qtimerevent.html">TQTimerEvent</a> *e ) + void MyObject::<a href="#timerEvent">timerEvent</a>( <a href="tqtimerevent.html">TQTimerEvent</a> *e ) { - <a href="ntqapplication.html#qDebug">tqDebug</a>( "timer event, id %d", e-><a href="qtimerevent.html#timerId">timerId</a>() ); + <a href="ntqapplication.html#qDebug">tqDebug</a>( "timer event, id %d", e-><a href="tqtimerevent.html#timerId">timerId</a>() ); } </pre> -<p> Note that <a href="ntqtimer.html">TQTimer</a>'s accuracy depends on the underlying operating +<p> Note that <a href="tqtimer.html">TQTimer</a>'s accuracy depends on the underlying operating system and hardware. Most platforms support an accuracy of 20 ms; some provide more. If TQt is unable to deliver the requested number of timer clicks, it will silently discard some. @@ -869,11 +869,11 @@ number of timer clicks, it will silently discard some. one-shot timers and timer signals instead of events. <p> <p>See also <a href="#timerEvent">timerEvent</a>(), <a href="#killTimer">killTimer</a>(), <a href="#killTimers">killTimers</a>(), <a href="ntqeventloop.html#awake">TQEventLoop::awake</a>(), and <a href="ntqeventloop.html#aboutToBlock">TQEventLoop::aboutToBlock</a>(). -<h3 class=fn>void <a name="timerEvent"></a>TQObject::timerEvent ( <a href="qtimerevent.html">TQTimerEvent</a> * )<tt> [virtual protected]</tt> +<h3 class=fn>void <a name="timerEvent"></a>TQObject::timerEvent ( <a href="tqtimerevent.html">TQTimerEvent</a> * )<tt> [virtual protected]</tt> </h3> This event handler can be reimplemented in a subclass to receive timer events for the object. -<p> <a href="ntqtimer.html">TQTimer</a> provides a higher-level interface to the timer +<p> <a href="tqtimer.html">TQTimer</a> provides a higher-level interface to the timer functionality, and also more general information about timers. <p> <p>See also <a href="#startTimer">startTimer</a>(), <a href="#killTimer">killTimer</a>(), <a href="#killTimers">killTimers</a>(), and <a href="#event">event</a>(). diff --git a/doc/html/tqsqlpropertymap.html b/doc/html/tqsqlpropertymap.html index 6202e875d..892aad5f1 100644 --- a/doc/html/tqsqlpropertymap.html +++ b/doc/html/tqsqlpropertymap.html @@ -126,9 +126,9 @@ new default map.) <tr bgcolor="#d0d0d0"> <td valign="top"><a href="ntqcombobox.html">TQComboBox</a>, <a href="ntqlistbox.html">TQListBox</a> <td valign="top">currentItem -<tr bgcolor="#f0f0f0"> <td valign="top"><a href="qdateedit.html">TQDateEdit</a> +<tr bgcolor="#f0f0f0"> <td valign="top"><a href="tqdateedit.html">TQDateEdit</a> <td valign="top">date -<tr bgcolor="#d0d0d0"> <td valign="top"><a href="ntqdatetimeedit.html">TQDateTimeEdit</a> +<tr bgcolor="#d0d0d0"> <td valign="top"><a href="tqdatetimeedit.html">TQDateTimeEdit</a> <td valign="top">dateTime <tr bgcolor="#f0f0f0"> <td valign="top"><a href="tqtextbrowser.html">TQTextBrowser</a> <td valign="top">source @@ -140,7 +140,7 @@ new default map.) <a href="ntqpushbutton.html">TQPushButton</a>, <a href="tqtextedit.html">TQTextEdit</a>, <td valign="top">text -<tr bgcolor="#f0f0f0"> <td valign="top"><a href="qtimeedit.html">TQTimeEdit</a> +<tr bgcolor="#f0f0f0"> <td valign="top"><a href="tqtimeedit.html">TQTimeEdit</a> <td valign="top">time <tr bgcolor="#d0d0d0"> <td valign="top"><a href="ntqlcdnumber.html">TQLCDNumber</a>, <a href="ntqscrollbar.html">TQScrollBar</a> diff --git a/doc/html/qtime-members.html b/doc/html/tqtime-members.html index 1d646cbad..90f11d701 100644 --- a/doc/html/qtime-members.html +++ b/doc/html/tqtime-members.html @@ -1,5 +1,5 @@ <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN"> -<!-- /home/espenr/tmp/qt-3.3.8-espenr-2499/qt-x11-free-3.3.8/include/ntqdatetime.h:124 --> +<!-- /home/espenr/tmp/qt-3.3.8-espenr-2499/qt-x11-free-3.3.8/include/tqdatetime.h:124 --> <html> <head> <meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-1"> @@ -32,33 +32,33 @@ body { background: #ffffff; color: black; } <td align="right" valign="center"><img src="logo32.png" align="right" width="64" height="32" border="0"></td></tr></table><h1 align=center>Complete Member List for TQTime</h1> <p>This is the complete list of member functions for -<a href="qtime.html">TQTime</a>, including inherited members. +<a href="tqtime.html">TQTime</a>, including inherited members. <ul> -<li><a href="qtime.html#TQTime">TQTime</a>() -<li><a href="qtime.html#addMSecs">addMSecs</a>() -<li><a href="qtime.html#addSecs">addSecs</a>() -<li><a href="qtime.html#currentTime">currentTime</a>() -<li><a href="qtime.html#elapsed">elapsed</a>() -<li><a href="qtime.html#fromString">fromString</a>() -<li><a href="qtime.html#hour">hour</a>() -<li><a href="qtime.html#isNull">isNull</a>() -<li><a href="qtime.html#isValid">isValid</a>() -<li><a href="qtime.html#minute">minute</a>() -<li><a href="qtime.html#msec">msec</a>() -<li><a href="qtime.html#msecsTo">msecsTo</a>() -<li><a href="qtime.html#operator!-eq">operator!=</a>() -<li><a href="qtime.html#operator-lt">operator<</a>() -<li><a href="qtime.html#operator-lt-eq">operator<=</a>() -<li><a href="qtime.html#operator-eq-eq">operator==</a>() -<li><a href="qtime.html#operator-gt">operator></a>() -<li><a href="qtime.html#operator-gt-eq">operator>=</a>() -<li><a href="qtime.html#restart">restart</a>() -<li><a href="qtime.html#second">second</a>() -<li><a href="qtime.html#secsTo">secsTo</a>() -<li><a href="qtime.html#setHMS">setHMS</a>() -<li><a href="qtime.html#start">start</a>() -<li><a href="qtime.html#toString">toString</a>() +<li><a href="tqtime.html#TQTime">TQTime</a>() +<li><a href="tqtime.html#addMSecs">addMSecs</a>() +<li><a href="tqtime.html#addSecs">addSecs</a>() +<li><a href="tqtime.html#currentTime">currentTime</a>() +<li><a href="tqtime.html#elapsed">elapsed</a>() +<li><a href="tqtime.html#fromString">fromString</a>() +<li><a href="tqtime.html#hour">hour</a>() +<li><a href="tqtime.html#isNull">isNull</a>() +<li><a href="tqtime.html#isValid">isValid</a>() +<li><a href="tqtime.html#minute">minute</a>() +<li><a href="tqtime.html#msec">msec</a>() +<li><a href="tqtime.html#msecsTo">msecsTo</a>() +<li><a href="tqtime.html#operator!-eq">operator!=</a>() +<li><a href="tqtime.html#operator-lt">operator<</a>() +<li><a href="tqtime.html#operator-lt-eq">operator<=</a>() +<li><a href="tqtime.html#operator-eq-eq">operator==</a>() +<li><a href="tqtime.html#operator-gt">operator></a>() +<li><a href="tqtime.html#operator-gt-eq">operator>=</a>() +<li><a href="tqtime.html#restart">restart</a>() +<li><a href="tqtime.html#second">second</a>() +<li><a href="tqtime.html#secsTo">secsTo</a>() +<li><a href="tqtime.html#setHMS">setHMS</a>() +<li><a href="tqtime.html#start">start</a>() +<li><a href="tqtime.html#toString">toString</a>() </ul> <!-- eof --> <p><address><hr><div align=center> diff --git a/doc/html/qtime.html b/doc/html/tqtime.html index 63d0131d6..303d9a74c 100644 --- a/doc/html/qtime.html +++ b/doc/html/tqtime.html @@ -1,5 +1,5 @@ <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN"> -<!-- /home/espenr/tmp/qt-3.3.8-espenr-2499/qt-x11-free-3.3.8/src/tools/qdatetime.cpp:1239 --> +<!-- /home/espenr/tmp/qt-3.3.8-espenr-2499/qt-x11-free-3.3.8/src/tools/tqdatetime.cpp:1239 --> <html> <head> <meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-1"> @@ -34,8 +34,8 @@ body { background: #ffffff; color: black; } <p>The TQTime class provides clock time functions. <a href="#details">More...</a> <p>All the functions in this class are <a href="threads.html#reentrant">reentrant</a> when TQt is built with thread support.</p> -<p><tt>#include <<a href="qdatetime-h.html">ntqdatetime.h</a>></tt> -<p><a href="qtime-members.html">List of all member functions.</a> +<p><tt>#include <<a href="tqdatetime-h.html">tqdatetime.h</a>></tt> +<p><a href="tqtime-members.html">List of all member functions.</a> <h2>Public Members</h2> <ul> <li class=fn><a href="#TQTime"><b>TQTime</b></a> ()</li> @@ -109,7 +109,7 @@ functions. Correspondingly, the number of (milli)seconds between two times can be found using the <a href="#secsTo">secsTo</a>() or <a href="#msecsTo">msecsTo</a>() functions. <p> TQTime can be used to measure a span of elapsed time using the <a href="#start">start</a>(), <a href="#restart">restart</a>(), and <a href="#elapsed">elapsed</a>() functions. -<p> <p>See also <a href="qdate.html">TQDate</a>, <a href="ntqdatetime.html">TQDateTime</a>, and <a href="time.html">Time and Date</a>. +<p> <p>See also <a href="tqdate.html">TQDate</a>, <a href="tqdatetime.html">TQDateTime</a>, and <a href="time.html">Time and Date</a>. <hr><h2>Member Function Documentation</h2> <h3 class=fn><a name="TQTime"></a>TQTime::TQTime () @@ -127,7 +127,7 @@ milliseconds <em>ms</em>. range 0..59, and <em>ms</em> must be in the range 0..999. <p> <p>See also <a href="#isValid">isValid</a>(). -<h3 class=fn><a href="qtime.html">TQTime</a> <a name="addMSecs"></a>TQTime::addMSecs ( int ms ) const +<h3 class=fn><a href="tqtime.html">TQTime</a> <a name="addMSecs"></a>TQTime::addMSecs ( int ms ) const </h3> Returns a TQTime object containing a time <em>ms</em> milliseconds later than the time of this object (or earlier if <em>ms</em> is negative). @@ -135,7 +135,7 @@ than the time of this object (or earlier if <em>ms</em> is negative). for an example. <p> <p>See also <a href="#addSecs">addSecs</a>() and <a href="#msecsTo">msecsTo</a>(). -<h3 class=fn><a href="qtime.html">TQTime</a> <a name="addSecs"></a>TQTime::addSecs ( int nsecs ) const +<h3 class=fn><a href="tqtime.html">TQTime</a> <a name="addSecs"></a>TQTime::addSecs ( int nsecs ) const </h3> Returns a TQTime object containing a time <em>nsecs</em> seconds later than the time of this object (or earlier if <em>nsecs</em> is negative). @@ -150,9 +150,9 @@ than the time of this object (or earlier if <em>nsecs</em> is negative). t = n.<a href="#addSecs">addSecs</a>( -15*60*60 ); // t == 23:00:00 </pre> -<p> <p>See also <a href="#addMSecs">addMSecs</a>(), <a href="#secsTo">secsTo</a>(), and <a href="ntqdatetime.html#addSecs">TQDateTime::addSecs</a>(). +<p> <p>See also <a href="#addMSecs">addMSecs</a>(), <a href="#secsTo">secsTo</a>(), and <a href="tqdatetime.html#addSecs">TQDateTime::addSecs</a>(). -<h3 class=fn><a href="qtime.html">TQTime</a> <a name="currentTime"></a>TQTime::currentTime ( <a href="ntqt.html#TimeSpec-enum">TQt::TimeSpec</a> ts )<tt> [static]</tt> +<h3 class=fn><a href="tqtime.html">TQTime</a> <a name="currentTime"></a>TQTime::currentTime ( <a href="ntqt.html#TimeSpec-enum">TQt::TimeSpec</a> ts )<tt> [static]</tt> </h3> Returns the current time as reported by the system clock, for the TimeSpec <em>ts</em>. The default TimeSpec is LocalTime. @@ -161,7 +161,7 @@ operating system; not all systems provide 1-millisecond accuracy. <p> <p>See also <a href="ntqt.html#TimeSpec-enum">TQt::TimeSpec</a>. <p>Examples: <a href="aclock-example.html#x1201">aclock/aclock.cpp</a>, <a href="dclock-example.html#x1104">dclock/dclock.cpp</a>, <a href="tutorial1-12.html#x2398">t12/cannon.cpp</a>, and <a href="tictac-example.html#x40">tictac/tictac.cpp</a>. -<h3 class=fn><a href="qtime.html">TQTime</a> <a name="currentTime-2"></a>TQTime::currentTime ()<tt> [static]</tt> +<h3 class=fn><a href="tqtime.html">TQTime</a> <a name="currentTime-2"></a>TQTime::currentTime ()<tt> [static]</tt> </h3> This is an overloaded member function, provided for convenience. It behaves essentially like the above function. <p> Returns the current time as reported by the system clock. @@ -182,7 +182,7 @@ undefined. This can happen when daylight savings time is turned on or off. <p> <p>See also <a href="#start">start</a>() and <a href="#restart">restart</a>(). -<h3 class=fn><a href="qtime.html">TQTime</a> <a name="fromString"></a>TQTime::fromString ( const <a href="tqstring.html">TQString</a> & s, <a href="ntqt.html#DateFormat-enum">TQt::DateFormat</a> f = TQt::TextDate )<tt> [static]</tt> +<h3 class=fn><a href="tqtime.html">TQTime</a> <a name="fromString"></a>TQTime::fromString ( const <a href="tqstring.html">TQString</a> & s, <a href="ntqt.html#DateFormat-enum">TQt::DateFormat</a> f = TQt::TextDate )<tt> [static]</tt> </h3> Returns the representation <em>s</em> as a TQTime using the format <em>f</em>, or an invalid time if this is not possible. @@ -229,7 +229,7 @@ Returns the minute part (0..59) of the time. </h3> Returns the millisecond part (0..999) of the time. -<h3 class=fn>int <a name="msecsTo"></a>TQTime::msecsTo ( const <a href="qtime.html">TQTime</a> & t ) const +<h3 class=fn>int <a name="msecsTo"></a>TQTime::msecsTo ( const <a href="tqtime.html">TQTime</a> & t ) const </h3> Returns the number of milliseconds from this time to <em>t</em> (which is negative if <em>t</em> is earlier than this time). @@ -238,33 +238,33 @@ seconds in a day, the result is always between -86400000 and 86400000 msec. <p> <p>See also <a href="#secsTo">secsTo</a>(). -<h3 class=fn>bool <a name="operator!-eq"></a>TQTime::operator!= ( const <a href="qtime.html">TQTime</a> & t ) const +<h3 class=fn>bool <a name="operator!-eq"></a>TQTime::operator!= ( const <a href="tqtime.html">TQTime</a> & t ) const </h3> <p> Returns TRUE if this time is different from <em>t</em>; otherwise returns FALSE. -<h3 class=fn>bool <a name="operator-lt"></a>TQTime::operator< ( const <a href="qtime.html">TQTime</a> & t ) const +<h3 class=fn>bool <a name="operator-lt"></a>TQTime::operator< ( const <a href="tqtime.html">TQTime</a> & t ) const </h3> <p> Returns TRUE if this time is earlier than <em>t</em>; otherwise returns FALSE. -<h3 class=fn>bool <a name="operator-lt-eq"></a>TQTime::operator<= ( const <a href="qtime.html">TQTime</a> & t ) const +<h3 class=fn>bool <a name="operator-lt-eq"></a>TQTime::operator<= ( const <a href="tqtime.html">TQTime</a> & t ) const </h3> <p> Returns TRUE if this time is earlier than or equal to <em>t</em>; otherwise returns FALSE. -<h3 class=fn>bool <a name="operator-eq-eq"></a>TQTime::operator== ( const <a href="qtime.html">TQTime</a> & t ) const +<h3 class=fn>bool <a name="operator-eq-eq"></a>TQTime::operator== ( const <a href="tqtime.html">TQTime</a> & t ) const </h3> <p> Returns TRUE if this time is equal to <em>t</em>; otherwise returns FALSE. -<h3 class=fn>bool <a name="operator-gt"></a>TQTime::operator> ( const <a href="qtime.html">TQTime</a> & t ) const +<h3 class=fn>bool <a name="operator-gt"></a>TQTime::operator> ( const <a href="tqtime.html">TQTime</a> & t ) const </h3> <p> Returns TRUE if this time is later than <em>t</em>; otherwise returns FALSE. -<h3 class=fn>bool <a name="operator-gt-eq"></a>TQTime::operator>= ( const <a href="qtime.html">TQTime</a> & t ) const +<h3 class=fn>bool <a name="operator-gt-eq"></a>TQTime::operator>= ( const <a href="tqtime.html">TQTime</a> & t ) const </h3> <p> Returns TRUE if this time is later than or equal to <em>t</em>; @@ -291,13 +291,13 @@ or off. Returns the second part (0..59) of the time. <p>Example: <a href="tictac-example.html#x43">tictac/tictac.cpp</a>. -<h3 class=fn>int <a name="secsTo"></a>TQTime::secsTo ( const <a href="qtime.html">TQTime</a> & t ) const +<h3 class=fn>int <a name="secsTo"></a>TQTime::secsTo ( const <a href="tqtime.html">TQTime</a> & t ) const </h3> Returns the number of seconds from this time to <em>t</em> (which is negative if <em>t</em> is earlier than this time). <p> Because TQTime measures time within a day and there are 86400 seconds in a day, the result is always between -86400 and 86400. -<p> <p>See also <a href="#addSecs">addSecs</a>() and <a href="ntqdatetime.html#secsTo">TQDateTime::secsTo</a>(). +<p> <p>See also <a href="#addSecs">addSecs</a>() and <a href="tqdatetime.html#secsTo">TQDateTime::secsTo</a>(). <p>Example: <a href="tutorial1-12.html#x2399">t12/cannon.cpp</a>. <h3 class=fn>bool <a name="setHMS"></a>TQTime::setHMS ( int h, int m, int s, int ms = 0 ) @@ -351,7 +351,7 @@ the format of the result string. <tr bgcolor="#d0d0d0"> <td valign="top">h:m:s ap <td valign="top" colspan="1" rowspan="1"> 2:13:9 pm </table></center> <p> If the time is an invalid time, then <a href="tqstring.html#TQString-null">TQString::null</a> will be returned. -<p> <p>See also <a href="qdate.html#toString">TQDate::toString</a>() and <a href="ntqdatetime.html#toString">TQDateTime::toString</a>(). +<p> <p>See also <a href="tqdate.html#toString">TQDate::toString</a>() and <a href="tqdatetime.html#toString">TQDateTime::toString</a>(). <h3 class=fn><a href="tqstring.html">TQString</a> <a name="toString-2"></a>TQTime::toString ( <a href="ntqt.html#DateFormat-enum">TQt::DateFormat</a> f = TQt::TextDate ) const </h3> @@ -368,13 +368,13 @@ settings of the system. <p> If the time is an invalid time, then <a href="tqstring.html#TQString-null">TQString::null</a> will be returned. <hr><h2>Related Functions</h2> -<h3 class=fn><a href="ntqdatastream.html">TQDataStream</a> & <a name="operator-lt-lt"></a>operator<< ( <a href="ntqdatastream.html">TQDataStream</a> & s, const <a href="qtime.html">TQTime</a> & t ) +<h3 class=fn><a href="ntqdatastream.html">TQDataStream</a> & <a name="operator-lt-lt"></a>operator<< ( <a href="ntqdatastream.html">TQDataStream</a> & s, const <a href="tqtime.html">TQTime</a> & t ) </h3> <p> Writes time <em>t</em> to the stream <em>s</em>. <p> <p>See also <a href="datastreamformat.html">Format of the TQDataStream operators</a>. -<h3 class=fn><a href="ntqdatastream.html">TQDataStream</a> & <a name="operator-gt-gt"></a>operator>> ( <a href="ntqdatastream.html">TQDataStream</a> & s, <a href="qtime.html">TQTime</a> & t ) +<h3 class=fn><a href="ntqdatastream.html">TQDataStream</a> & <a name="operator-gt-gt"></a>operator>> ( <a href="ntqdatastream.html">TQDataStream</a> & s, <a href="tqtime.html">TQTime</a> & t ) </h3> <p> Reads a time from the stream <em>s</em> into <em>t</em>. diff --git a/doc/html/qtimeedit-members.html b/doc/html/tqtimeedit-members.html index 20cf3bbd5..dbd5f947a 100644 --- a/doc/html/qtimeedit-members.html +++ b/doc/html/tqtimeedit-members.html @@ -1,5 +1,5 @@ <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN"> -<!-- /home/espenr/tmp/qt-3.3.8-espenr-2499/qt-x11-free-3.3.8/include/ntqdatetimeedit.h:154 --> +<!-- /home/espenr/tmp/qt-3.3.8-espenr-2499/qt-x11-free-3.3.8/include/tqdatetimeedit.h:154 --> <html> <head> <meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-1"> @@ -32,14 +32,14 @@ body { background: #ffffff; color: black; } <td align="right" valign="center"><img src="logo32.png" align="right" width="64" height="32" border="0"></td></tr></table><h1 align=center>Complete Member List for TQTimeEdit</h1> <p>This is the complete list of member functions for -<a href="qtimeedit.html">TQTimeEdit</a>, including inherited members. +<a href="tqtimeedit.html">TQTimeEdit</a>, including inherited members. <ul> -<li><a href="qtimeedit.html#TQTimeEdit">TQTimeEdit</a>() -<li><a href="qtimeedit.html#~TQTimeEdit">~TQTimeEdit</a>() +<li><a href="tqtimeedit.html#TQTimeEdit">TQTimeEdit</a>() +<li><a href="tqtimeedit.html#~TQTimeEdit">~TQTimeEdit</a>() <li><a href="tqwidget.html#acceptDrops">acceptDrops</a>() <li><a href="tqwidget.html#adjustSize">adjustSize</a>() -<li><a href="qtimeedit.html#autoAdvance">autoAdvance</a>() +<li><a href="tqtimeedit.html#autoAdvance">autoAdvance</a>() <li><a href="tqwidget.html#autoMask">autoMask</a>() <li><a href="tqwidget.html#backgroundBrush">backgroundBrush</a>() <li><a href="tqwidget.html#backgroundColor">backgroundColor</a>() @@ -78,7 +78,7 @@ body { background: #ffffff; color: black; } <li><a href="tqobject.html#destroyed">destroyed</a>() <li><a href="tqobject.html#disconnect">disconnect</a>() <li><a href="tqobject.html#disconnectNotify">disconnectNotify</a>() -<li><a href="qtimeedit.html#display">display</a>() +<li><a href="tqtimeedit.html#display">display</a>() <li><a href="tqwidget.html#dragEnterEvent">dragEnterEvent</a>() <li><a href="tqwidget.html#dragLeaveEvent">dragLeaveEvent</a>() <li><a href="tqwidget.html#dragMoveEvent">dragMoveEvent</a>() @@ -168,14 +168,14 @@ body { background: #ffffff; color: black; } <li><a href="tqwidget.html#mapTo">mapTo</a>() <li><a href="tqwidget.html#mapToGlobal">mapToGlobal</a>() <li><a href="tqwidget.html#mapToParent">mapToParent</a>() -<li><a href="qtimeedit.html#maxValue">maxValue</a>() +<li><a href="tqtimeedit.html#maxValue">maxValue</a>() <li><a href="tqwidget.html#maximumHeight">maximumHeight</a>() <li><a href="tqwidget.html#maximumSize">maximumSize</a>() <li><a href="tqwidget.html#maximumWidth">maximumWidth</a>() <li><a href="tqobject.html#metaObject">metaObject</a>() <li><a href="tqwidget.html#metric">metric</a>() <li><a href="tqwidget.html#microFocusHint">microFocusHint</a>() -<li><a href="qtimeedit.html#minValue">minValue</a>() +<li><a href="tqtimeedit.html#minValue">minValue</a>() <li><a href="tqwidget.html#minimumHeight">minimumHeight</a>() <li><a href="tqwidget.html#minimumSize">minimumSize</a>() <li><a href="tqwidget.html#minimumSizeHint">minimumSizeHint</a>() @@ -219,12 +219,12 @@ body { background: #ffffff; color: black; } <li><a href="tqwidget.html#resize">resize</a>() <li><a href="tqwidget.html#resizeEvent">resizeEvent</a>() <li><a href="tqwidget.html#scroll">scroll</a>() -<li><a href="qtimeedit.html#sectionFormattedText">sectionFormattedText</a>() +<li><a href="tqtimeedit.html#sectionFormattedText">sectionFormattedText</a>() <li><a href="tqobject.html#sender">sender</a>() -<li><a href="qtimeedit.html#separator">separator</a>() +<li><a href="tqtimeedit.html#separator">separator</a>() <li><a href="tqwidget.html#setAcceptDrops">setAcceptDrops</a>() <li><a href="tqwidget.html#setActiveWindow">setActiveWindow</a>() -<li><a href="qtimeedit.html#setAutoAdvance">setAutoAdvance</a>() +<li><a href="tqtimeedit.html#setAutoAdvance">setAutoAdvance</a>() <li><a href="tqwidget.html#setAutoMask">setAutoMask</a>() <li><a href="tqwidget.html#setBackgroundColor">setBackgroundColor</a>() <li><a href="tqwidget.html#setBackgroundMode">setBackgroundMode</a>() @@ -234,7 +234,7 @@ body { background: #ffffff; color: black; } <li><a href="tqwidget.html#setCaption">setCaption</a>() <li><a href="tqwidget.html#setCursor">setCursor</a>() <li><a href="tqwidget.html#setDisabled">setDisabled</a>() -<li><a href="qtimeedit.html#setDisplay">setDisplay</a>() +<li><a href="tqtimeedit.html#setDisplay">setDisplay</a>() <li><a href="tqwidget.html#setEnabled">setEnabled</a>() <li><a href="tqwidget.html#setEraseColor">setEraseColor</a>() <li><a href="tqwidget.html#setErasePixmap">setErasePixmap</a>() @@ -247,22 +247,22 @@ body { background: #ffffff; color: black; } <li><a href="tqwidget.html#setFont">setFont</a>() <li><a href="tqwidget.html#setGeometry">setGeometry</a>() <li><a href="tqwidget.html#setHidden">setHidden</a>() -<li><a href="qtimeedit.html#setHour">setHour</a>() +<li><a href="tqtimeedit.html#setHour">setHour</a>() <li><a href="tqwidget.html#setIcon">setIcon</a>() <li><a href="tqwidget.html#setIconText">setIconText</a>() <li><a href="tqwidget.html#setInputMethodEnabled">setInputMethodEnabled</a>() <li><a href="tqwidget.html#setKeyCompression">setKeyCompression</a>() <li><a href="tqwidget.html#setMask">setMask</a>() -<li><a href="qtimeedit.html#setMaxValue">setMaxValue</a>() +<li><a href="tqtimeedit.html#setMaxValue">setMaxValue</a>() <li><a href="tqwidget.html#setMaximumHeight">setMaximumHeight</a>() <li><a href="tqwidget.html#setMaximumSize">setMaximumSize</a>() <li><a href="tqwidget.html#setMaximumWidth">setMaximumWidth</a>() <li><a href="tqwidget.html#setMicroFocusHint">setMicroFocusHint</a>() -<li><a href="qtimeedit.html#setMinValue">setMinValue</a>() +<li><a href="tqtimeedit.html#setMinValue">setMinValue</a>() <li><a href="tqwidget.html#setMinimumHeight">setMinimumHeight</a>() <li><a href="tqwidget.html#setMinimumSize">setMinimumSize</a>() <li><a href="tqwidget.html#setMinimumWidth">setMinimumWidth</a>() -<li><a href="qtimeedit.html#setMinute">setMinute</a>() +<li><a href="tqtimeedit.html#setMinute">setMinute</a>() <li><a href="tqwidget.html#setMouseTracking">setMouseTracking</a>() <li><a href="tqobject.html#setName">setName</a>() <li><a href="tqwidget.html#setPalette">setPalette</a>() @@ -270,15 +270,15 @@ body { background: #ffffff; color: black; } <li><a href="tqwidget.html#setPaletteBackgroundPixmap">setPaletteBackgroundPixmap</a>() <li><a href="tqwidget.html#setPaletteForegroundColor">setPaletteForegroundColor</a>() <li><a href="tqobject.html#setProperty">setProperty</a>() -<li><a href="qtimeedit.html#setRange">setRange</a>() -<li><a href="qtimeedit.html#setSecond">setSecond</a>() -<li><a href="qtimeedit.html#setSeparator">setSeparator</a>() +<li><a href="tqtimeedit.html#setRange">setRange</a>() +<li><a href="tqtimeedit.html#setSecond">setSecond</a>() +<li><a href="tqtimeedit.html#setSeparator">setSeparator</a>() <li><a href="tqwidget.html#setShown">setShown</a>() <li><a href="tqwidget.html#setSizeIncrement">setSizeIncrement</a>() <li><a href="tqwidget.html#setSizePolicy">setSizePolicy</a>() <li><a href="tqwidget.html#setStyle">setStyle</a>() <li><a href="tqwidget.html#setTabOrder">setTabOrder</a>() -<li><a href="qtimeedit.html#setTime">setTime</a>() +<li><a href="tqtimeedit.html#setTime">setTime</a>() <li><a href="tqwidget.html#setUpdatesEnabled">setUpdatesEnabled</a>() <li><a href="tqwidget.html#setWFlags">setWFlags</a>() <li><a href="tqwidget.html#setWindowOpacity">setWindowOpacity</a>() @@ -300,7 +300,7 @@ body { background: #ffffff; color: black; } <li><a href="tqwidget.html#styleChange">styleChange</a>() <li><a href="tqwidget.html#tabletEvent">tabletEvent</a>() <li><a href="tqwidget.html#testWFlags">testWFlags</a>() -<li><a href="qtimeedit.html#time">time</a>() +<li><a href="tqtimeedit.html#time">time</a>() <li><a href="tqobject.html#timerEvent">timerEvent</a>() <li><a href="tqwidget.html#topLevelWidget">topLevelWidget</a>() <li><a href="tqobject.html#tr">tr</a>() @@ -311,7 +311,7 @@ body { background: #ffffff; color: black; } <li><a href="tqwidget.html#update">update</a>() <li><a href="tqwidget.html#updateGeometry">updateGeometry</a>() <li><a href="tqwidget.html#updateMask">updateMask</a>() -<li><a href="qtimeedit.html#valueChanged">valueChanged</a>() +<li><a href="tqtimeedit.html#valueChanged">valueChanged</a>() <li><a href="tqwidget.html#visibleRect">visibleRect</a>() <li><a href="tqwidget.html#wheelEvent">wheelEvent</a>() <li><a href="tqwidget.html#width">width</a>() diff --git a/doc/html/qtimeedit.html b/doc/html/tqtimeedit.html index a5f2aeaac..24b2149e4 100644 --- a/doc/html/qtimeedit.html +++ b/doc/html/tqtimeedit.html @@ -1,5 +1,5 @@ <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN"> -<!-- /home/espenr/tmp/qt-3.3.8-espenr-2499/qt-x11-free-3.3.8/src/widgets/qdatetimeedit.cpp:1780 --> +<!-- /home/espenr/tmp/qt-3.3.8-espenr-2499/qt-x11-free-3.3.8/src/widgets/tqdatetimeedit.cpp:1780 --> <html> <head> <meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-1"> @@ -33,9 +33,9 @@ body { background: #ffffff; color: black; } <p>The TQTimeEdit class provides a time editor. <a href="#details">More...</a> -<p><tt>#include <<a href="qdatetimeedit-h.html">ntqdatetimeedit.h</a>></tt> -<p>Inherits <a href="qdatetimeeditbase.html">TQDateTimeEditBase</a>. -<p><a href="qtimeedit-members.html">List of all member functions.</a> +<p><tt>#include <<a href="tqdatetimeedit-h.html">tqdatetimeedit.h</a>></tt> +<p>Inherits <a href="tqdatetimeeditbase.html">TQDateTimeEditBase</a>. +<p><a href="tqtimeedit-members.html">List of all member functions.</a> <h2>Public Members</h2> <ul> <li class=fn>enum <a href="#Display-enum"><b>Display</b></a> { Hours = 0x01, Minutes = 0x02, Seconds = 0x04, AMPM = 0x10 }</li> @@ -93,23 +93,23 @@ they complete a section using <a href="#setAutoAdvance">setAutoAdvance</a>(). Ti hour, minute, second order. It is recommended that the TQTimeEdit is initialised with a time, e.g. <pre> - <a href="qtime.html">TQTime</a> timeNow = TQTime::<a href="qtime.html#currentTime">currentTime</a>(); + <a href="tqtime.html">TQTime</a> timeNow = TQTime::<a href="tqtime.html#currentTime">currentTime</a>(); TQTimeEdit *timeEdit = new TQTimeEdit( timeNow, this ); - timeEdit-><a href="#setRange">setRange</a>( timeNow, timeNow.<a href="qtime.html#addSecs">addSecs</a>( 60 * 60 ) ); + timeEdit-><a href="#setRange">setRange</a>( timeNow, timeNow.<a href="tqtime.html#addSecs">addSecs</a>( 60 * 60 ) ); </pre> Here we've created a TQTimeEdit widget set to the current time. We've also set the minimum value to the current time and the maximum time to one hour from now. <p> The maximum and minimum values for a time value in the time editor -default to the maximum and minimum values for a <a href="qtime.html">TQTime</a>. You can +default to the maximum and minimum values for a <a href="tqtime.html">TQTime</a>. You can change this by calling <a href="#setMinValue">setMinValue</a>(), <a href="#setMaxValue">setMaxValue</a>() or <a href="#setRange">setRange</a>(). <p> Terminology: A TQTimeWidget consists of three sections, one each for the hour, minute and second. You can change the separator character using <a href="#setSeparator">setSeparator</a>(), by default the separator is read from the system's settings. <p> <center><img src="datetimewidgets.png" alt="Date Time Widgets"></center> -<p> <p>See also <a href="qtime.html">TQTime</a>, <a href="qdateedit.html">TQDateEdit</a>, <a href="ntqdatetimeedit.html">TQDateTimeEdit</a>, <a href="advanced.html">Advanced Widgets</a>, and <a href="time.html">Time and Date</a>. +<p> <p>See also <a href="tqtime.html">TQTime</a>, <a href="tqdateedit.html">TQDateEdit</a>, <a href="tqdatetimeedit.html">TQDateTimeEdit</a>, <a href="advanced.html">Advanced Widgets</a>, and <a href="time.html">Time and Date</a>. <hr><h2>Member Type Documentation</h2> <h3 class=fn><a name="Display-enum"></a>TQTimeEdit::Display</h3> @@ -127,7 +127,7 @@ from the system's settings. </h3> Constructs an empty time edit with parent <em>parent</em> and called <em>name</em>. -<h3 class=fn><a name="TQTimeEdit-2"></a>TQTimeEdit::TQTimeEdit ( const <a href="qtime.html">TQTime</a> & time, <a href="tqwidget.html">TQWidget</a> * parent = 0, const char * name = 0 ) +<h3 class=fn><a name="TQTimeEdit-2"></a>TQTimeEdit::TQTimeEdit ( const <a href="tqtime.html">TQTime</a> & time, <a href="tqwidget.html">TQWidget</a> * parent = 0, const char * name = 0 ) </h3> This is an overloaded member function, provided for convenience. It behaves essentially like the above function. <p> Constructs a time edit with the initial time value, <em>time</em>, @@ -139,16 +139,16 @@ Destroys the object and frees any allocated resources. <h3 class=fn>bool <a name="autoAdvance"></a>TQTimeEdit::autoAdvance () const </h3><p>Returns TRUE if the editor automatically advances to the next section; otherwise returns FALSE. -See the <a href="qtimeedit.html#autoAdvance-prop">"autoAdvance"</a> property for details. +See the <a href="tqtimeedit.html#autoAdvance-prop">"autoAdvance"</a> property for details. <h3 class=fn>uint <a name="display"></a>TQTimeEdit::display () const </h3><p>Returns the sections that are displayed in the time edit. -See the <a href="qtimeedit.html#display-prop">"display"</a> property for details. -<h3 class=fn><a href="qtime.html">TQTime</a> <a name="maxValue"></a>TQTimeEdit::maxValue () const +See the <a href="tqtimeedit.html#display-prop">"display"</a> property for details. +<h3 class=fn><a href="tqtime.html">TQTime</a> <a name="maxValue"></a>TQTimeEdit::maxValue () const </h3><p>Returns the maximum time value. -See the <a href="qtimeedit.html#maxValue-prop">"maxValue"</a> property for details. -<h3 class=fn><a href="qtime.html">TQTime</a> <a name="minValue"></a>TQTimeEdit::minValue () const +See the <a href="tqtimeedit.html#maxValue-prop">"maxValue"</a> property for details. +<h3 class=fn><a href="tqtime.html">TQTime</a> <a name="minValue"></a>TQTimeEdit::minValue () const </h3><p>Returns the minimum time value. -See the <a href="qtimeedit.html#minValue-prop">"minValue"</a> property for details. +See the <a href="tqtimeedit.html#minValue-prop">"minValue"</a> property for details. <h3 class=fn><a href="tqstring.html">TQString</a> <a name="sectionFormattedText"></a>TQTimeEdit::sectionFormattedText ( int sec )<tt> [virtual protected]</tt> </h3> Returns the formatted number for section <em>sec</em>. This will @@ -161,27 +161,27 @@ Returns the editor's separator. <h3 class=fn>void <a name="setAutoAdvance"></a>TQTimeEdit::setAutoAdvance ( bool advance )<tt> [virtual]</tt> </h3><p>Sets whether the editor automatically advances to the next section to <em>advance</em>. -See the <a href="qtimeedit.html#autoAdvance-prop">"autoAdvance"</a> property for details. +See the <a href="tqtimeedit.html#autoAdvance-prop">"autoAdvance"</a> property for details. <h3 class=fn>void <a name="setDisplay"></a>TQTimeEdit::setDisplay ( uint disp ) </h3><p>Sets the sections that are displayed in the time edit to <em>disp</em>. -See the <a href="qtimeedit.html#display-prop">"display"</a> property for details. +See the <a href="tqtimeedit.html#display-prop">"display"</a> property for details. <h3 class=fn>void <a name="setHour"></a>TQTimeEdit::setHour ( int h )<tt> [virtual protected]</tt> </h3> Sets the hour to <em>h</em>, which must be a valid hour, i.e. in the range 0..24. -<h3 class=fn>void <a name="setMaxValue"></a>TQTimeEdit::setMaxValue ( const <a href="qtime.html">TQTime</a> & d )<tt> [virtual]</tt> +<h3 class=fn>void <a name="setMaxValue"></a>TQTimeEdit::setMaxValue ( const <a href="tqtime.html">TQTime</a> & d )<tt> [virtual]</tt> </h3><p>Sets the maximum time value to <em>d</em>. -See the <a href="qtimeedit.html#maxValue-prop">"maxValue"</a> property for details. -<h3 class=fn>void <a name="setMinValue"></a>TQTimeEdit::setMinValue ( const <a href="qtime.html">TQTime</a> & d )<tt> [virtual]</tt> +See the <a href="tqtimeedit.html#maxValue-prop">"maxValue"</a> property for details. +<h3 class=fn>void <a name="setMinValue"></a>TQTimeEdit::setMinValue ( const <a href="tqtime.html">TQTime</a> & d )<tt> [virtual]</tt> </h3><p>Sets the minimum time value to <em>d</em>. -See the <a href="qtimeedit.html#minValue-prop">"minValue"</a> property for details. +See the <a href="tqtimeedit.html#minValue-prop">"minValue"</a> property for details. <h3 class=fn>void <a name="setMinute"></a>TQTimeEdit::setMinute ( int m )<tt> [virtual protected]</tt> </h3> Sets the minute to <em>m</em>, which must be a valid minute, i.e. in the range 0..59. -<h3 class=fn>void <a name="setRange"></a>TQTimeEdit::setRange ( const <a href="qtime.html">TQTime</a> & min, const <a href="qtime.html">TQTime</a> & max )<tt> [virtual]</tt> +<h3 class=fn>void <a name="setRange"></a>TQTimeEdit::setRange ( const <a href="tqtime.html">TQTime</a> & min, const <a href="tqtime.html">TQTime</a> & max )<tt> [virtual]</tt> </h3> Sets the valid input range for the editor to be from <em>min</em> to <em>max</em> inclusive. If <em>min</em> is invalid no minimum time is set. Similarly, if <em>max</em> is invalid no maximum time is set. @@ -196,13 +196,13 @@ range 0..59. Sets the separator to <em>s</em>. Note that currently only the first character of <em>s</em> is used. -<h3 class=fn>void <a name="setTime"></a>TQTimeEdit::setTime ( const <a href="qtime.html">TQTime</a> & time )<tt> [virtual slot]</tt> +<h3 class=fn>void <a name="setTime"></a>TQTimeEdit::setTime ( const <a href="tqtime.html">TQTime</a> & time )<tt> [virtual slot]</tt> </h3><p>Sets the editor's time value to <em>time</em>. -See the <a href="qtimeedit.html#time-prop">"time"</a> property for details. -<h3 class=fn><a href="qtime.html">TQTime</a> <a name="time"></a>TQTimeEdit::time () const +See the <a href="tqtimeedit.html#time-prop">"time"</a> property for details. +<h3 class=fn><a href="tqtime.html">TQTime</a> <a name="time"></a>TQTimeEdit::time () const </h3><p>Returns the editor's time value. -See the <a href="qtimeedit.html#time-prop">"time"</a> property for details. -<h3 class=fn>void <a name="valueChanged"></a>TQTimeEdit::valueChanged ( const <a href="qtime.html">TQTime</a> & time )<tt> [signal]</tt> +See the <a href="tqtimeedit.html#time-prop">"time"</a> property for details. +<h3 class=fn>void <a name="valueChanged"></a>TQTimeEdit::valueChanged ( const <a href="tqtime.html">TQTime</a> & time )<tt> [signal]</tt> </h3> <p> This signal is emitted whenever the editor's value changes. The <em>time</em> parameter is the new value. @@ -215,13 +215,13 @@ focus to the next time section if a user has completed a section. The default is FALSE. <p>Set this property's value with <a href="#setAutoAdvance">setAutoAdvance</a>() and get this property's value with <a href="#autoAdvance">autoAdvance</a>(). -<h3 class=fn><a href="qtimeedit.html#Display-enum">Display</a> <a name="display-prop"></a>display</h3> +<h3 class=fn><a href="tqtimeedit.html#Display-enum">Display</a> <a name="display-prop"></a>display</h3> <p>This property holds the sections that are displayed in the time edit. <p>The value can be any combination of the values in the Display enum. By default, the widget displays hours, minutes and seconds. <p>Set this property's value with <a href="#setDisplay">setDisplay</a>() and get this property's value with <a href="#display">display</a>(). -<h3 class=fn><a href="qtime.html">TQTime</a> <a name="maxValue-prop"></a>maxValue</h3> +<h3 class=fn><a href="tqtime.html">TQTime</a> <a name="maxValue-prop"></a>maxValue</h3> <p>This property holds the maximum time value. <p>Setting the maximum time value is equivalent to calling <a href="#setRange">TQTimeEdit::setRange</a>( <a href="#minValue">minValue</a>(), <em>t</em> ), where <em>t</em> is the maximum @@ -229,7 +229,7 @@ time. The default maximum time is 23:59:59. <p> <p>See also <a href="#minValue-prop">minValue</a> and <a href="#setRange">setRange</a>(). <p>Set this property's value with <a href="#setMaxValue">setMaxValue</a>() and get this property's value with <a href="#maxValue">maxValue</a>(). -<h3 class=fn><a href="qtime.html">TQTime</a> <a name="minValue-prop"></a>minValue</h3> +<h3 class=fn><a href="tqtime.html">TQTime</a> <a name="minValue-prop"></a>minValue</h3> <p>This property holds the minimum time value. <p>Setting the minimum time value is equivalent to calling <a href="#setRange">TQTimeEdit::setRange</a>( <em>t</em>, <a href="#maxValue">maxValue</a>() ), where <em>t</em> is the minimum @@ -237,7 +237,7 @@ time. The default minimum time is 00:00:00. <p> <p>See also <a href="#maxValue-prop">maxValue</a> and <a href="#setRange">setRange</a>(). <p>Set this property's value with <a href="#setMinValue">setMinValue</a>() and get this property's value with <a href="#minValue">minValue</a>(). -<h3 class=fn><a href="qtime.html">TQTime</a> <a name="time-prop"></a>time</h3> +<h3 class=fn><a href="tqtime.html">TQTime</a> <a name="time-prop"></a>time</h3> <p>This property holds the editor's time value. <p>When changing the time property, if the time is less than <a href="#minValue">minValue</a>(), or is greater than <a href="#maxValue">maxValue</a>(), nothing happens. diff --git a/doc/html/qtimer-h.html b/doc/html/tqtimer-h.html index 01b7be5b7..4bc409742 100644 --- a/doc/html/qtimer-h.html +++ b/doc/html/tqtimer-h.html @@ -1,9 +1,9 @@ <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN"> -<!-- /home/espenr/tmp/qt-3.3.8-espenr-2499/qt-x11-free-3.3.8/include/ntqtimer.h:1 --> +<!-- /home/espenr/tmp/qt-3.3.8-espenr-2499/qt-x11-free-3.3.8/include/tqtimer.h:1 --> <html> <head> <meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-1"> -<title>ntqtimer.h Include File</title> +<title>tqtimer.h Include File</title> <style type="text/css"><!-- fn { margin-left: 1cm; text-indent: -1cm; } a:link { color: #004faf; text-decoration: none } @@ -29,13 +29,13 @@ body { background: #ffffff; color: black; } | <a href="functions.html"> <font color="#004faf">Functions</font></a> </td> -<td align="right" valign="center"><img src="logo32.png" align="right" width="64" height="32" border="0"></td></tr></table><h1 align=center>ntqtimer.h</h1> +<td align="right" valign="center"><img src="logo32.png" align="right" width="64" height="32" border="0"></td></tr></table><h1 align=center>tqtimer.h</h1> -<p>This is the verbatim text of the ntqtimer.h include file. It is provided only for illustration; the copyright remains with Trolltech. +<p>This is the verbatim text of the tqtimer.h include file. It is provided only for illustration; the copyright remains with Trolltech. <hr> <pre> /**************************************************************************** -** $Id: qt/ntqtimer.h 3.3.8 edited Jan 11 14:38 $ +** $Id: qt/tqtimer.h 3.3.8 edited Jan 11 14:38 $ ** ** Definition of TQTimer class ** diff --git a/doc/html/qtimer-members.html b/doc/html/tqtimer-members.html index 83d17242a..738bbcd7e 100644 --- a/doc/html/qtimer-members.html +++ b/doc/html/tqtimer-members.html @@ -1,5 +1,5 @@ <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN"> -<!-- /home/espenr/tmp/qt-3.3.8-espenr-2499/qt-x11-free-3.3.8/include/ntqtimer.h:46 --> +<!-- /home/espenr/tmp/qt-3.3.8-espenr-2499/qt-x11-free-3.3.8/include/tqtimer.h:46 --> <html> <head> <meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-1"> @@ -32,13 +32,13 @@ body { background: #ffffff; color: black; } <td align="right" valign="center"><img src="logo32.png" align="right" width="64" height="32" border="0"></td></tr></table><h1 align=center>Complete Member List for TQTimer</h1> <p>This is the complete list of member functions for -<a href="ntqtimer.html">TQTimer</a>, including inherited members. +<a href="tqtimer.html">TQTimer</a>, including inherited members. <ul> -<li><a href="ntqtimer.html#TQTimer">TQTimer</a>() -<li><a href="ntqtimer.html#~TQTimer">~TQTimer</a>() +<li><a href="tqtimer.html#TQTimer">TQTimer</a>() +<li><a href="tqtimer.html#~TQTimer">~TQTimer</a>() <li><a href="tqobject.html#blockSignals">blockSignals</a>() -<li><a href="ntqtimer.html#changeInterval">changeInterval</a>() +<li><a href="tqtimer.html#changeInterval">changeInterval</a>() <li><a href="tqobject.html#checkConnectArgs">checkConnectArgs</a>() <li><a href="tqobject.html#child">child</a>() <li><a href="tqobject.html#childEvent">childEvent</a>() @@ -60,7 +60,7 @@ body { background: #ffffff; color: black; } <li><a href="tqobject.html#insertChild">insertChild</a>() <li><a href="tqobject.html#installEventFilter">installEventFilter</a>() <li><a href="tqobject.html#isA">isA</a>() -<li><a href="ntqtimer.html#isActive">isActive</a>() +<li><a href="tqtimer.html#isActive">isActive</a>() <li><a href="tqobject.html#isWidgetType">isWidgetType</a>() <li><a href="tqobject.html#killTimer">killTimer</a>() <li><a href="tqobject.html#killTimers">killTimers</a>() @@ -77,13 +77,13 @@ body { background: #ffffff; color: black; } <li><a href="tqobject.html#setName">setName</a>() <li><a href="tqobject.html#setProperty">setProperty</a>() <li><a href="tqobject.html#signalsBlocked">signalsBlocked</a>() -<li><a href="ntqtimer.html#singleShot">singleShot</a>() -<li><a href="ntqtimer.html#start">start</a>() +<li><a href="tqtimer.html#singleShot">singleShot</a>() +<li><a href="tqtimer.html#start">start</a>() <li><a href="tqobject.html#startTimer">startTimer</a>() -<li><a href="ntqtimer.html#stop">stop</a>() -<li><a href="ntqtimer.html#timeout">timeout</a>() +<li><a href="tqtimer.html#stop">stop</a>() +<li><a href="tqtimer.html#timeout">timeout</a>() <li><a href="tqobject.html#timerEvent">timerEvent</a>() -<li><a href="ntqtimer.html#timerId">timerId</a>() +<li><a href="tqtimer.html#timerId">timerId</a>() <li><a href="tqobject.html#tr">tr</a>() <li><a href="tqobject.html#trUtf8">trUtf8</a>() </ul> diff --git a/doc/html/ntqtimer.html b/doc/html/tqtimer.html index 920d95ffc..d72f394b4 100644 --- a/doc/html/ntqtimer.html +++ b/doc/html/tqtimer.html @@ -1,5 +1,5 @@ <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN"> -<!-- /home/espenr/tmp/qt-3.3.8-espenr-2499/qt-x11-free-3.3.8/src/kernel/qtimer.cpp:42 --> +<!-- /home/espenr/tmp/qt-3.3.8-espenr-2499/qt-x11-free-3.3.8/src/kernel/tqtimer.cpp:42 --> <html> <head> <meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-1"> @@ -33,9 +33,9 @@ body { background: #ffffff; color: black; } <p>The TQTimer class provides timer signals and single-shot timers. <a href="#details">More...</a> -<p><tt>#include <<a href="qtimer-h.html">ntqtimer.h</a>></tt> +<p><tt>#include <<a href="tqtimer-h.html">tqtimer.h</a>></tt> <p>Inherits <a href="tqobject.html">TQObject</a>. -<p><a href="qtimer-members.html">List of all member functions.</a> +<p><a href="tqtimer-members.html">List of all member functions.</a> <h2>Public Members</h2> <ul> <li class=fn><a href="#TQTimer"><b>TQTimer</b></a> ( TQObject * parent = 0, const char * name = 0 )</li> @@ -61,7 +61,7 @@ The TQTimer class provides timer signals and single-shot timers. <p> -<p> It uses <a href="qtimerevent.html">timer events</a> internally to +<p> It uses <a href="tqtimerevent.html">timer events</a> internally to provide a more versatile timer. TQTimer is very easy to use: create a TQTimer, call <a href="#start">start</a>() to start it and connect its <a href="#timeout">timeout</a>() to the appropriate slots. When the time is up it will @@ -142,7 +142,7 @@ to create a local TQTimer object. <p> Example: <pre> #include <<a href="qapplication-h.html">ntqapplication.h</a>> - #include <<a href="qtimer-h.html">ntqtimer.h</a>> + #include <<a href="tqtimer-h.html">tqtimer.h</a>> int main( int argc, char **argv ) { diff --git a/doc/html/qtimerevent-members.html b/doc/html/tqtimerevent-members.html index e9b66603b..ee12f0957 100644 --- a/doc/html/qtimerevent-members.html +++ b/doc/html/tqtimerevent-members.html @@ -32,12 +32,12 @@ body { background: #ffffff; color: black; } <td align="right" valign="center"><img src="logo32.png" align="right" width="64" height="32" border="0"></td></tr></table><h1 align=center>Complete Member List for TQTimerEvent</h1> <p>This is the complete list of member functions for -<a href="qtimerevent.html">TQTimerEvent</a>, including inherited members. +<a href="tqtimerevent.html">TQTimerEvent</a>, including inherited members. <ul> -<li><a href="qtimerevent.html#TQTimerEvent">TQTimerEvent</a>() +<li><a href="tqtimerevent.html#TQTimerEvent">TQTimerEvent</a>() <li><a href="ntqevent.html#spontaneous">spontaneous</a>() -<li><a href="qtimerevent.html#timerId">timerId</a>() +<li><a href="tqtimerevent.html#timerId">timerId</a>() <li><a href="ntqevent.html#type">type</a>() </ul> <!-- eof --> diff --git a/doc/html/qtimerevent.html b/doc/html/tqtimerevent.html index f3414d7da..7fe8976ce 100644 --- a/doc/html/qtimerevent.html +++ b/doc/html/tqtimerevent.html @@ -36,7 +36,7 @@ timer event. <a href="#details">More...</a> <p><tt>#include <<a href="qevent-h.html">ntqevent.h</a>></tt> <p>Inherits <a href="ntqevent.html">TQEvent</a>. -<p><a href="qtimerevent-members.html">List of all member functions.</a> +<p><a href="tqtimerevent-members.html">List of all member functions.</a> <h2>Public Members</h2> <ul> <li class=fn><a href="#TQTimerEvent"><b>TQTimerEvent</b></a> ( int timerId )</li> @@ -51,10 +51,10 @@ timer event. <p> Timer events are sent at regular intervals to objects that have started one or more timers. Each timer has a unique identifier. A timer is started with <a href="tqobject.html#startTimer">TQObject::startTimer</a>(). -<p> The <a href="ntqtimer.html">TQTimer</a> class provides a high-level programming interface that +<p> The <a href="tqtimer.html">TQTimer</a> class provides a high-level programming interface that uses signals instead of events. It also provides one-shot timers. <p> The event handler <a href="tqobject.html#timerEvent">TQObject::timerEvent</a>() receives timer events. -<p> <p>See also <a href="ntqtimer.html">TQTimer</a>, <a href="tqobject.html#timerEvent">TQObject::timerEvent</a>(), <a href="tqobject.html#startTimer">TQObject::startTimer</a>(), <a href="tqobject.html#killTimer">TQObject::killTimer</a>(), <a href="tqobject.html#killTimers">TQObject::killTimers</a>(), and <a href="events.html">Event Classes</a>. +<p> <p>See also <a href="tqtimer.html">TQTimer</a>, <a href="tqobject.html#timerEvent">TQObject::timerEvent</a>(), <a href="tqobject.html#startTimer">TQObject::startTimer</a>(), <a href="tqobject.html#killTimer">TQObject::killTimer</a>(), <a href="tqobject.html#killTimers">TQObject::killTimers</a>(), and <a href="events.html">Event Classes</a>. <hr><h2>Member Function Documentation</h2> <h3 class=fn><a name="TQTimerEvent"></a>TQTimerEvent::TQTimerEvent ( int timerId ) diff --git a/doc/html/tqwidget.html b/doc/html/tqwidget.html index 68d0ef4f3..a1649c1df 100644 --- a/doc/html/tqwidget.html +++ b/doc/html/tqwidget.html @@ -35,7 +35,7 @@ body { background: #ffffff; color: black; } <a href="#details">More...</a> <p><tt>#include <<a href="tqwidget-h.html">tqwidget.h</a>></tt> <p>Inherits <a href="tqobject.html">TQObject</a> and <a href="ntqpaintdevice.html">TQPaintDevice</a>. --<p>Inherited by <a href="ntqbutton.html">TQButton</a>, <a href="ntqframe.html">TQFrame</a>, <a href="ntqdialog.html">TQDialog</a>, <a href="ntqcombobox.html">TQComboBox</a>, <a href="tqdatabrowser.html">TQDataBrowser</a>, <a href="tqdataview.html">TQDataView</a>, <a href="qdatetimeeditbase.html">TQDateTimeEditBase</a>, <a href="ntqdatetimeedit.html">TQDateTimeEdit</a>, <a href="ntqdesktopwidget.html">TQDesktopWidget</a>, <a href="ntqdial.html">TQDial</a>, <a href="ntqdockarea.html">TQDockArea</a>, <a href="qglwidget.html">TQGLWidget</a>, <a href="ntqheader.html">TQHeader</a>, <a href="ntqmainwindow.html">TQMainWindow</a>, <a href="qmotifwidget.html">TQMotifWidget</a>, <a href="qnpwidget.html">TQNPWidget</a>, <a href="ntqscrollbar.html">TQScrollBar</a>, <a href="ntqsizegrip.html">TQSizeGrip</a>, <a href="ntqslider.html">TQSlider</a>, <a href="ntqspinbox.html">TQSpinBox</a>, <a href="ntqsplashscreen.html">TQSplashScreen</a>, <a href="ntqstatusbar.html">TQStatusBar</a>, <a href="ntqtabbar.html">TQTabBar</a>, <a href="ntqtabwidget.html">TQTabWidget</a>, <a href="ntqworkspace.html">TQWorkspace</a>, and <a href="qxtwidget.html">TQXtWidget</a>. +-<p>Inherited by <a href="ntqbutton.html">TQButton</a>, <a href="ntqframe.html">TQFrame</a>, <a href="ntqdialog.html">TQDialog</a>, <a href="ntqcombobox.html">TQComboBox</a>, <a href="tqdatabrowser.html">TQDataBrowser</a>, <a href="tqdataview.html">TQDataView</a>, <a href="tqdatetimeeditbase.html">TQDateTimeEditBase</a>, <a href="tqdatetimeedit.html">TQDateTimeEdit</a>, <a href="ntqdesktopwidget.html">TQDesktopWidget</a>, <a href="ntqdial.html">TQDial</a>, <a href="ntqdockarea.html">TQDockArea</a>, <a href="qglwidget.html">TQGLWidget</a>, <a href="ntqheader.html">TQHeader</a>, <a href="ntqmainwindow.html">TQMainWindow</a>, <a href="qmotifwidget.html">TQMotifWidget</a>, <a href="qnpwidget.html">TQNPWidget</a>, <a href="ntqscrollbar.html">TQScrollBar</a>, <a href="ntqsizegrip.html">TQSizeGrip</a>, <a href="ntqslider.html">TQSlider</a>, <a href="ntqspinbox.html">TQSpinBox</a>, <a href="ntqsplashscreen.html">TQSplashScreen</a>, <a href="ntqstatusbar.html">TQStatusBar</a>, <a href="ntqtabbar.html">TQTabBar</a>, <a href="ntqtabwidget.html">TQTabWidget</a>, <a href="ntqworkspace.html">TQWorkspace</a>, and <a href="qxtwidget.html">TQXtWidget</a>. <p><a href="tqwidget-members.html">List of all member functions.</a> <h2>Public Members</h2> <ul> diff --git a/doc/html/tutorial1-11.html b/doc/html/tutorial1-11.html index e4e977a6e..ce5de2a61 100644 --- a/doc/html/tutorial1-11.html +++ b/doc/html/tutorial1-11.html @@ -59,7 +59,7 @@ implementation. void moveShot(); </pre> <p> This private slot is used to move the shot while it is in the air, -using a <a href="ntqtimer.html">TQTimer</a>. +using a <a href="tqtimer.html">TQTimer</a>. <p> <pre> private: void paintShot( <a href="ntqpainter.html">TQPainter</a> * ); </pre> @@ -69,7 +69,7 @@ using a <a href="ntqtimer.html">TQTimer</a>. <p> This private function returns the shot's enclosing rectangle if one is in the air; otherwise the returned rectangle is undefined. <p> <pre> int timerCount; - <a href="ntqtimer.html">TQTimer</a> * autoShootTimer; + <a href="tqtimer.html">TQTimer</a> * autoShootTimer; float shoot_ang; float shoot_f; }; @@ -91,24 +91,24 @@ when the shot was fired. ang = 45; f = 0; timerCount = 0; - autoShootTimer = new <a href="ntqtimer.html">TQTimer</a>( this, "movement handler" ); - <a name="x2379"></a> <a href="tqobject.html#connect">connect</a>( autoShootTimer, TQ_SIGNAL(<a href="ntqtimer.html#timeout">timeout</a>()), + autoShootTimer = new <a href="tqtimer.html">TQTimer</a>( this, "movement handler" ); + <a name="x2379"></a> <a href="tqobject.html#connect">connect</a>( autoShootTimer, TQ_SIGNAL(<a href="tqtimer.html#timeout">timeout</a>()), this, TQ_SLOT(moveShot()) ); shoot_ang = 0; shoot_f = 0; <a href="tqwidget.html#setPalette">setPalette</a>( TQPalette( TQColor( 250, 250, 200) ) ); } </pre> -<p> We initialize our new private variables and connect the <a href="ntqtimer.html#timeout">TQTimer::timeout</a>() signal to our moveShot() slot. We'll move the +<p> We initialize our new private variables and connect the <a href="tqtimer.html#timeout">TQTimer::timeout</a>() signal to our moveShot() slot. We'll move the shot every time the timer times out. <p> <pre> void CannonField::shoot() { - <a name="x2376"></a> if ( autoShootTimer-><a href="ntqtimer.html#isActive">isActive</a>() ) + <a name="x2376"></a> if ( autoShootTimer-><a href="tqtimer.html#isActive">isActive</a>() ) return; timerCount = 0; shoot_ang = ang; shoot_f = f; - <a name="x2377"></a> autoShootTimer-><a href="ntqtimer.html#start">start</a>( 50 ); + <a name="x2377"></a> autoShootTimer-><a href="tqtimer.html#start">start</a>( 50 ); } </pre> <p> This function shoots a shot unless a shot is in the air. The <tt>timerCount</tt> @@ -122,14 +122,14 @@ cannon angle and force. Finally, we start the timer. <a href="ntqrect.html">TQRect</a> shotR = shotRect(); if ( shotR.<a href="ntqrect.html#x">x</a>() > width() || shotR.<a href="ntqrect.html#y">y</a>() > height() ) - <a name="x2378"></a> autoShootTimer-><a href="ntqtimer.html#stop">stop</a>(); + <a name="x2378"></a> autoShootTimer-><a href="tqtimer.html#stop">stop</a>(); else <a name="x2373"></a> r = r.<a href="ntqrect.html#unite">unite</a>( TQRegion( shotR ) ); <a href="tqwidget.html#repaint">repaint</a>( r ); } </pre> <p> moveShot() is the slot that moves the shot, called every 50 -milliseconds when the <a href="ntqtimer.html">TQTimer</a> fires. +milliseconds when the <a href="tqtimer.html">TQTimer</a> fires. <p> Its tasks are to compute the new position, repaint the screen with the shot in the new position, and if necessary, stop the timer. <p> First we make a <a href="ntqregion.html">TQRegion</a> that holds the old shotRect(). A <a href="ntqregion.html">TQRegion</a> @@ -150,7 +150,7 @@ for just the one or two rectangles that need updating. <a name="x2370"></a> if ( updateR.<a href="ntqrect.html#intersects">intersects</a>( cannonRect() ) ) paintCannon( &p ); - if ( autoShootTimer-><a href="ntqtimer.html#isActive">isActive</a>() && + if ( autoShootTimer-><a href="tqtimer.html#isActive">isActive</a>() && updateR.<a href="ntqrect.html#intersects">intersects</a>( shotRect() ) ) paintShot( &p ); } diff --git a/doc/html/tutorial1-12.html b/doc/html/tutorial1-12.html index 799a80b74..5f7ee92e8 100644 --- a/doc/html/tutorial1-12.html +++ b/doc/html/tutorial1-12.html @@ -171,9 +171,9 @@ hit the target). </h3> <a name="1-4"></a><p> -<p> <pre> #include <<a href="qdatetime-h.html">ntqdatetime.h</a>> +<p> <pre> #include <<a href="tqdatetime-h.html">tqdatetime.h</a>> </pre> -<p> We include the <a href="qdate.html">TQDate</a>, <a href="qtime.html">TQTime</a>, and <a href="ntqdatetime.html">TQDateTime</a> class definitions. +<p> We include the <a href="tqdate.html">TQDate</a>, <a href="tqtime.html">TQTime</a>, and <a href="tqdatetime.html">TQDateTime</a> class definitions. <p> <pre> #include <stdlib.h> </pre> <p> We include the stdlib library because we need the rand() function. @@ -189,8 +189,8 @@ repaint() on a hidden widget. static bool first_time = TRUE; if ( first_time ) { first_time = FALSE; - <a href="qtime.html">TQTime</a> midnight( 0, 0, 0 ); - <a name="x2399"></a><a name="x2398"></a> srand( midnight.<a href="qtime.html#secsTo">secsTo</a>(TQTime::<a href="qtime.html#currentTime">currentTime</a>()) ); + <a href="tqtime.html">TQTime</a> midnight( 0, 0, 0 ); + <a name="x2399"></a><a name="x2398"></a> srand( midnight.<a href="tqtime.html#secsTo">secsTo</a>(TQTime::<a href="tqtime.html#currentTime">currentTime</a>()) ); } <a href="ntqregion.html">TQRegion</a> r( targetRect() ); target = TQPoint( 200 + rand() % 190, @@ -211,10 +211,10 @@ passed since midnight as a pseudo-random value. this one is guaranteed to keep its value between calls to the function. <p> The <tt>if</tt> test will succeed only the first time this function is called because we set <tt>first_time</tt> to FALSE inside the <tt>if</tt> block. -<p> Then we create the <a href="qtime.html">TQTime</a> object <tt>midnight</tt>, which represents the time +<p> Then we create the <a href="tqtime.html">TQTime</a> object <tt>midnight</tt>, which represents the time 00:00:00. Next we fetch the number of seconds from midnight until -now and use it as a random seed. See the documentation for <a href="qdate.html">TQDate</a>, -<a href="qtime.html">TQTime</a>, and <a href="ntqdatetime.html">TQDateTime</a> for more information. +now and use it as a random seed. See the documentation for <a href="tqdate.html">TQDate</a>, +<a href="tqtime.html">TQTime</a>, and <a href="tqdatetime.html">TQDateTime</a> for more information. <p> Finally we calculate the target's center point. We keep it within the rectangle (x=200, y=35, width=190, height=255), (i.e., the possible x and y values are x = 200..389 and y = 35..289) in a @@ -232,7 +232,7 @@ the left edge and with x values increasing to the right. </pre> <p> This part of the timer event has not changed from the previous chapter. <p> <pre> if ( shotR.<a href="ntqrect.html#intersects">intersects</a>( targetRect() ) ) { - <a name="x2400"></a> autoShootTimer-><a href="ntqtimer.html#stop">stop</a>(); + <a name="x2400"></a> autoShootTimer-><a href="tqtimer.html#stop">stop</a>(); emit hit(); </pre> <p> This <tt>if</tt> statement checks whether the shot rectangle intersects the @@ -243,7 +243,7 @@ world that a target was destroyed, and return. CannonField is a component we leave such decisions to the user of the component. <p> <pre> <a name="x2397"></a><a name="x2396"></a> } else if ( shotR.<a href="ntqrect.html#x">x</a>() > width() || shotR.<a href="ntqrect.html#y">y</a>() > height() ) { - autoShootTimer-><a href="ntqtimer.html#stop">stop</a>(); + autoShootTimer-><a href="tqtimer.html#stop">stop</a>(); emit missed(); </pre> <p> This <tt>if</tt> statement is the same as in the previous chapter, except that diff --git a/doc/html/tutorial1-13.html b/doc/html/tutorial1-13.html index a56d49fab..9ac3fcc5e 100644 --- a/doc/html/tutorial1-13.html +++ b/doc/html/tutorial1-13.html @@ -136,7 +136,7 @@ over (luckily for the player :-). timerCount = 0; shoot_ang = ang; shoot_f = f; - <a name="x2407"></a> autoShootTimer-><a href="ntqtimer.html#start">start</a>( 50 ); + <a name="x2407"></a> autoShootTimer-><a href="tqtimer.html#start">start</a>( 50 ); emit canShoot( FALSE ); } </pre> @@ -148,7 +148,7 @@ cannot shoot now. if ( gameEnded ) return; if ( isShooting() ) - autoShootTimer-><a href="ntqtimer.html#stop">stop</a>(); + autoShootTimer-><a href="tqtimer.html#stop">stop</a>(); gameEnded = TRUE; <a href="tqwidget.html#repaint">repaint</a>(); } @@ -165,7 +165,7 @@ widget. <p> <pre> void CannonField::restartGame() { if ( isShooting() ) - <a name="x2408"></a> autoShootTimer-><a href="ntqtimer.html#stop">stop</a>(); + <a name="x2408"></a> autoShootTimer-><a href="tqtimer.html#stop">stop</a>(); gameEnded = FALSE; <a href="tqwidget.html#repaint">repaint</a>(); emit canShoot( TRUE ); diff --git a/doc/html/whatsthis b/doc/html/whatsthis index 63eced699..0dccd7737 100644 --- a/doc/html/whatsthis +++ b/doc/html/whatsthis @@ -13,7 +13,7 @@ Abstract graphic object on a TQCanvas. | TQCanvasItem Abstract interface for accessing data from SQL databases. | TQSqlResult Abstract item that a QLayout manipulates. | QLayoutItem Abstract user interface action that can appear both in menus and tool bars. | QAction -Abstraction for date and edit editors. | QDateTimeEditBase +Abstraction for date and edit editors. | TQDateTimeEditBase Abstraction of Unicode text and the classic C '\0'-terminated char array. | TQString Abstraction of objects which provide formatted data of a certain MIME type. | QMimeSource Abstraction of the classic C zero-terminated char array (char *). | QCString @@ -49,7 +49,7 @@ Checkable list view items. | QCheckListItem Checkbox with a text label. | QCheckBox Checkboxes in QTables. | QCheckTableItem Clip region for a painter. | QRegion -Clock time functions. | QTime +Clock time functions. | TQTime Collection of nodes that can be accessed by name. | TQDomNamedNodeMap Collection of styles for rich text rendering and a generator of tags. | TQStyleSheet Collects tool tips into related groups. | QToolTipGroup @@ -57,7 +57,7 @@ Color groups for each widget state. | QPalette Colors based on RGB or HSV values. | TQColor Column of tabbed widget items. | QToolBox Combined button and popup list. | QComboBox -Combines a QDateEdit and QTimeEdit widget into a single widget for editing datetimes. | QDateTimeEdit +Combines a TQDateEdit and TQTimeEdit widget into a single widget for editing datetimes. | TQDateTimeEdit Command button. | QPushButton Common API for network protocols. | QNetworkProtocol Common operations for network protocols. | QNetworkOperation @@ -83,9 +83,9 @@ Creates TQStyle objects. | TQStyleFactory Creates and manages data entry forms tied to SQL databases. | TQSqlForm Creates well-compressed PNG animations. | QPNGImagePacker Data manipulation and navigation for data entry forms. | TQDataBrowser -Date and time functions. | QDateTime -Date editor. | QDateEdit -Date functions. | QDate +Date and time functions. | TQDateTime +Date editor. | TQDateEdit +Date functions. | TQDate Default implementation of all the XML handler classes. | TQXmlDefaultHandler Defines a Universally Unique Identifier (UUID). | QUuid Defines a point in the plane. | QPoint @@ -252,7 +252,7 @@ Parameters that describe a Tablet event. | QTabletEvent Parameters that describe a close event. | QCloseEvent Parameters that describe a context menu event. | QContextMenuEvent Parameters that describe a mouse event. | QMouseEvent -Parameters that describe a timer event. | QTimerEvent +Parameters that describe a timer event. | TQTimerEvent Parameters that describe a wheel event. | QWheelEvent Pattern matching using regular expressions. | QRegExp Per-thread data storage. | QThreadStorage @@ -358,8 +358,8 @@ The look and feel of a GUI. | TQStyle The main factory for plugin objects. | QNPlugin The representation of the DTD in the document tree. | TQDomDocumentType The structures in a QTabBar. | QTab -Time editor. | QTimeEdit -Timer signals and single-shot timers. | QTimer +Time editor. | TQTimeEdit +Timer signals and single-shot timers. | TQTimer Tool tips (balloon help) for any widget or rectangular part of a widget. | QToolTip Translator message and its properties. | QTranslatorMessage Tree of TQDomNodes which is not usually a complete TQDomDocument. | TQDomDocumentFragment diff --git a/doc/html/y2k.html b/doc/html/y2k.html index 96b8508e9..c2361a4e3 100644 --- a/doc/html/y2k.html +++ b/doc/html/y2k.html @@ -43,13 +43,13 @@ underlying APIs by TQt does not have any known problems. </h2> <a name="1"></a><p> Several parts of TQt deal with dates and times: <ul> -<li> <a href="qdate.html">TQDate</a> - provides date management -<li> <a href="ntqdatetime.html">TQDateTime</a> - provides date/time management -<li> <a href="qtime.html">TQTime</a> - provides time management (within a date) -<li> <a href="ntqtimer.html">TQTimer</a> - provides delayed or regular execution of code. +<li> <a href="tqdate.html">TQDate</a> - provides date management +<li> <a href="tqdatetime.html">TQDateTime</a> - provides date/time management +<li> <a href="tqtime.html">TQTime</a> - provides time management (within a date) +<li> <a href="tqtimer.html">TQTimer</a> - provides delayed or regular execution of code. </ul> -<p> All of these classes' external APIs are Year 2000 Compliant: <a href="qdate.html">TQDate</a> and -<a href="ntqdatetime.html">TQDateTime</a> offer only four-digit years as output, <a href="qtime.html">TQTime</a> and <a href="ntqtimer.html">TQTimer</a> do +<p> All of these classes' external APIs are Year 2000 Compliant: <a href="tqdate.html">TQDate</a> and +<a href="tqdatetime.html">TQDateTime</a> offer only four-digit years as output, <a href="tqtime.html">TQTime</a> and <a href="tqtimer.html">TQTimer</a> do not deal with years or leap days at all. <p> <h2> Implementation Issues in TQt </h2> |