summaryrefslogtreecommitdiffstats
path: root/doc/man/man3/tqdateedit.3qt
diff options
context:
space:
mode:
Diffstat (limited to 'doc/man/man3/tqdateedit.3qt')
-rw-r--r--doc/man/man3/tqdateedit.3qt128
1 files changed, 64 insertions, 64 deletions
diff --git a/doc/man/man3/tqdateedit.3qt b/doc/man/man3/tqdateedit.3qt
index 38d1e87c7..46196005d 100644
--- a/doc/man/man3/tqdateedit.3qt
+++ b/doc/man/man3/tqdateedit.3qt
@@ -1,5 +1,5 @@
'\" t
-.TH QDateEdit 3qt "2 February 2007" "Trolltech AS" \" -*- nroff -*-
+.TH TQDateEdit 3qt "2 February 2007" "Trolltech AS" \" -*- nroff -*-
.\" Copyright 1992-2007 Trolltech ASA. All rights reserved. See the
.\" license file included in the distribution for a complete license
.\" statement.
@@ -7,28 +7,28 @@
.ad l
.nh
.SH NAME
-QDateEdit \- Date editor
+TQDateEdit \- Date editor
.SH SYNOPSIS
-\fC#include <ntqdatetimeedit.h>\fR
+\fC#include <tqdatetimeedit.h>\fR
.PP
-Inherits QDateTimeEditBase.
+Inherits TQDateTimeEditBase.
.PP
.SS "Public Members"
.in +1c
.ti -1c
-.BI "\fBQDateEdit\fR ( TQWidget * parent = 0, const char * name = 0 )"
+.BI "\fBTQDateEdit\fR ( TQWidget * parent = 0, const char * name = 0 )"
.br
.ti -1c
-.BI "\fBQDateEdit\fR ( const QDate & date, TQWidget * parent = 0, const char * name = 0 )"
+.BI "\fBTQDateEdit\fR ( const TQDate & date, TQWidget * parent = 0, const char * name = 0 )"
.br
.ti -1c
-.BI "\fB~QDateEdit\fR ()"
+.BI "\fB~TQDateEdit\fR ()"
.br
.ti -1c
.BI "enum \fBOrder\fR { DMY, MDY, YMD, YDM }"
.br
.ti -1c
-.BI "QDate \fBdate\fR () const"
+.BI "TQDate \fBdate\fR () const"
.br
.ti -1c
.BI "virtual void \fBsetOrder\fR ( Order order )"
@@ -43,19 +43,19 @@ Inherits QDateTimeEditBase.
.BI "bool \fBautoAdvance\fR () const"
.br
.ti -1c
-.BI "virtual void \fBsetMinValue\fR ( const QDate & d )"
+.BI "virtual void \fBsetMinValue\fR ( const TQDate & d )"
.br
.ti -1c
-.BI "QDate \fBminValue\fR () const"
+.BI "TQDate \fBminValue\fR () const"
.br
.ti -1c
-.BI "virtual void \fBsetMaxValue\fR ( const QDate & d )"
+.BI "virtual void \fBsetMaxValue\fR ( const TQDate & d )"
.br
.ti -1c
-.BI "QDate \fBmaxValue\fR () const"
+.BI "TQDate \fBmaxValue\fR () const"
.br
.ti -1c
-.BI "virtual void \fBsetRange\fR ( const QDate & min, const QDate & max )"
+.BI "virtual void \fBsetRange\fR ( const TQDate & min, const TQDate & max )"
.br
.ti -1c
.BI "TQString \fBseparator\fR () const"
@@ -67,13 +67,13 @@ Inherits QDateTimeEditBase.
.SS "Public Slots"
.in +1c
.ti -1c
-.BI "virtual void \fBsetDate\fR ( const QDate & date )"
+.BI "virtual void \fBsetDate\fR ( const TQDate & date )"
.br
.in -1c
.SS "Signals"
.in +1c
.ti -1c
-.BI "void \fBvalueChanged\fR ( const QDate & date )"
+.BI "void \fBvalueChanged\fR ( const TQDate & date )"
.br
.in -1c
.SS "Properties"
@@ -82,13 +82,13 @@ Inherits QDateTimeEditBase.
.BI "bool \fBautoAdvance\fR - whether the editor automatically advances to the next section"
.br
.ti -1c
-.BI "QDate \fBdate\fR - the editor's date value"
+.BI "TQDate \fBdate\fR - the editor's date value"
.br
.ti -1c
-.BI "QDate \fBmaxValue\fR - the editor's maximum value"
+.BI "TQDate \fBmaxValue\fR - the editor's maximum value"
.br
.ti -1c
-.BI "QDate \fBminValue\fR - the editor's minimum value"
+.BI "TQDate \fBminValue\fR - the editor's minimum value"
.br
.ti -1c
.BI "Order \fBorder\fR - the order in which the " "year" ", month and day appear"
@@ -119,29 +119,29 @@ Inherits QDateTimeEditBase.
.br
.in -1c
.SH DESCRIPTION
-The QDateEdit class provides a date editor.
+The TQDateEdit class provides a date editor.
.PP
-QDateEdit allows the user to edit dates by using the keyboard or the arrow keys to increase/decrease date values. The arrow keys can be used to move from section to section within the QDateEdit box. Dates appear in accordance with the local date/time settings or in year, month, day order if the system doesn't provide this information. It is recommended that the QDateEdit be initialised with a date, e.g.
+TQDateEdit allows the user to edit dates by using the keyboard or the arrow keys to increase/decrease date values. The arrow keys can be used to move from section to section within the TQDateEdit box. Dates appear in accordance with the local date/time settings 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.
.PP
.nf
.br
- QDateEdit *dateEdit = new QDateEdit( QDate::currentDate(), this );
+ TQDateEdit *dateEdit = new TQDateEdit( TQDate::currentDate(), this );
.br
- dateEdit->setRange( QDate::currentDate().addDays( -365 ),
+ dateEdit->setRange( TQDate::currentDate().addDays( -365 ),
.br
- QDate::currentDate().addDays( 365 ) );
+ TQDate::currentDate().addDays( 365 ) );
.br
- dateEdit->setOrder( QDateEdit::MDY );
+ dateEdit->setOrder( TQDateEdit::MDY );
.br
dateEdit->setAutoAdvance( TRUE );
.br
.fi
.PP
-Here we've created a new QDateEdit object initialised with today's date and restricted the valid date range to today plus or minus 365 days. We've set the order to month, day, year. If the auto 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.
+Here we've created a new TQDateEdit object initialised with today's date and restricted the valid date range to today plus or minus 365 days. We've set the order to month, day, year. If the auto 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.
.PP
-The maximum and minimum values for a date value in the date editor default to the maximum and minimum values for a QDate. You can change this by calling setMinValue(), setMaxValue() or setRange().
+The maximum and minimum values for a date value in the date editor default to the maximum and minimum values for a TQDate. You can change this by calling setMinValue(), setMaxValue() or setRange().
.PP
-Terminology: A QDateEdit widget comprises three 'sections', one each for the year, month and day. You can change the separator character using QDateTimeEditor::setSeparator(), by default the separator will be taken from the systems settings. If that is not possible, it defaults to "-".
+Terminology: A TQDateEdit widget comprises three 'sections', one each for the year, month and day. You can change the separator character using TQDateTimeEditor::setSeparator(), by default the separator will be taken from the systems settings. If that is not possible, it defaults to "-".
.PP
<center>
.ce 1
@@ -149,34 +149,34 @@ Terminology: A QDateEdit widget comprises three 'sections', one each for the yea
.PP
</center>
.PP
-See also QDate, QTimeEdit, QDateTimeEdit, Advanced Widgets, and Time and Date.
+See also TQDate, TQTimeEdit, TQDateTimeEdit, Advanced Widgets, and Time and Date.
.SS "Member Type Documentation"
-.SH "QDateEdit::Order"
+.SH "TQDateEdit::Order"
This enum defines the order in which the sections that comprise a date appear.
.TP
-\fCQDateEdit::MDY\fR - month-day-year
+\fCTQDateEdit::MDY\fR - month-day-year
.TP
-\fCQDateEdit::DMY\fR - day-month-year
+\fCTQDateEdit::DMY\fR - day-month-year
.TP
-\fCQDateEdit::YMD\fR - year-month-day (the default)
+\fCTQDateEdit::YMD\fR - year-month-day (the default)
.TP
-\fCQDateEdit::YDM\fR - year-day-month (included for completeness; but should not be used)
+\fCTQDateEdit::YDM\fR - year-day-month (included for completeness; but should not be used)
.SH MEMBER FUNCTION DOCUMENTATION
-.SH "QDateEdit::QDateEdit ( TQWidget * parent = 0, const char * name = 0 )"
+.SH "TQDateEdit::TQDateEdit ( TQWidget * parent = 0, const char * name = 0 )"
Constructs an empty date editor which is a child of \fIparent\fR and called name \fIname\fR.
-.SH "QDateEdit::QDateEdit ( const QDate & date, TQWidget * parent = 0, const char * name = 0 )"
+.SH "TQDateEdit::TQDateEdit ( const TQDate & date, TQWidget * parent = 0, const char * name = 0 )"
This is an overloaded member function, provided for convenience. It behaves essentially like the above function.
.PP
Constructs a date editor with the initial value \fIdate\fR, parent \fIparent\fR and called \fIname\fR.
.PP
The date editor is initialized with \fIdate\fR.
-.SH "QDateEdit::~QDateEdit ()"
+.SH "TQDateEdit::~TQDateEdit ()"
Destroys the object and frees any allocated resources.
-.SH "bool QDateEdit::autoAdvance () const"
+.SH "bool TQDateEdit::autoAdvance () const"
Returns TRUE if the editor automatically advances to the next section; otherwise returns FALSE. See the "autoAdvance" property for details.
-.SH "QDate QDateEdit::date () const"
+.SH "TQDate TQDateEdit::date () const"
Returns the editor's date value. See the "date" property for details.
-.SH "void QDateEdit::fix ()\fC [virtual protected]\fR"
+.SH "void TQDateEdit::fix ()\fC [virtual protected]\fR"
Attempts to fix any invalid date entries.
.PP
The rules applied are as follows:
@@ -188,43 +188,43 @@ If the year has two digits, the year will be changed to four digits in the range
If the year has three digits in the range 100..999, the current millennium, i.e. 2000, will be added giving a year in the range 2100..2999.
.TP
If the day or month is 0 then it will be set to 1 or the minimum valid day\\month in the range.
-.SH "QDate QDateEdit::maxValue () const"
+.SH "TQDate TQDateEdit::maxValue () const"
Returns the editor's maximum value. See the "maxValue" property for details.
-.SH "QDate QDateEdit::minValue () const"
+.SH "TQDate TQDateEdit::minValue () const"
Returns the editor's minimum value. See the "minValue" property for details.
-.SH "Order QDateEdit::order () const"
+.SH "Order TQDateEdit::order () const"
Returns the order in which the year, month and day appear. See the "order" property for details.
-.SH "TQString QDateEdit::sectionFormattedText ( int sec )\fC [virtual protected]\fR"
+.SH "TQString TQDateEdit::sectionFormattedText ( int sec )\fC [virtual protected]\fR"
Returns the formatted number for section \fIsec\fR. This will correspond to either the year, month or day section, depending on the current display order.
.PP
See also order.
-.SH "TQString QDateEdit::separator () const"
+.SH "TQString TQDateEdit::separator () const"
Returns the editor's separator.
-.SH "void QDateEdit::setAutoAdvance ( bool advance )\fC [virtual]\fR"
+.SH "void TQDateEdit::setAutoAdvance ( bool advance )\fC [virtual]\fR"
Sets whether the editor automatically advances to the next section to \fIadvance\fR. See the "autoAdvance" property for details.
-.SH "void QDateEdit::setDate ( const QDate & date )\fC [virtual slot]\fR"
+.SH "void TQDateEdit::setDate ( const TQDate & date )\fC [virtual slot]\fR"
Sets the editor's date value to \fIdate\fR. See the "date" property for details.
-.SH "void QDateEdit::setDay ( int day )\fC [virtual protected]\fR"
+.SH "void TQDateEdit::setDay ( int day )\fC [virtual protected]\fR"
Sets the day to \fIday\fR, which must be a valid day. The function will ensure that the \fIday\fR set is valid for the month and year.
-.SH "void QDateEdit::setMaxValue ( const QDate & d )\fC [virtual]\fR"
+.SH "void TQDateEdit::setMaxValue ( const TQDate & d )\fC [virtual]\fR"
Sets the editor's maximum value to \fId\fR. See the "maxValue" property for details.
-.SH "void QDateEdit::setMinValue ( const QDate & d )\fC [virtual]\fR"
+.SH "void TQDateEdit::setMinValue ( const TQDate & d )\fC [virtual]\fR"
Sets the editor's minimum value to \fId\fR. See the "minValue" property for details.
-.SH "void QDateEdit::setMonth ( int month )\fC [virtual protected]\fR"
+.SH "void TQDateEdit::setMonth ( int month )\fC [virtual protected]\fR"
Sets the month to \fImonth\fR, which must be a valid month, i.e. between 1 and 12.
-.SH "void QDateEdit::setOrder ( Order order )\fC [virtual]\fR"
+.SH "void TQDateEdit::setOrder ( Order order )\fC [virtual]\fR"
Sets the order in which the year, month and day appear to \fIorder\fR. See the "order" property for details.
-.SH "void QDateEdit::setRange ( const QDate & min, const QDate & max )\fC [virtual]\fR"
+.SH "void TQDateEdit::setRange ( const TQDate & min, const TQDate & max )\fC [virtual]\fR"
Sets the valid input range for the editor to be from \fImin\fR to \fImax\fR inclusive. If \fImin\fR is invalid no minimum date will be set. Similarly, if \fImax\fR is invalid no maximum date will be set.
-.SH "void QDateEdit::setSeparator ( const TQString & s )\fC [virtual]\fR"
+.SH "void TQDateEdit::setSeparator ( const TQString & s )\fC [virtual]\fR"
Sets the separator to \fIs\fR. Note that currently only the first character of \fIs\fR is used.
-.SH "void QDateEdit::setYear ( int year )\fC [virtual protected]\fR"
+.SH "void TQDateEdit::setYear ( int year )\fC [virtual protected]\fR"
Sets the year to \fIyear\fR, which must be a valid year. The range currently supported is from 1752 to 8000.
.PP
-See also QDate.
-.SH "void QDateEdit::updateButtons ()\fC [protected slot]\fR"
+See also TQDate.
+.SH "void TQDateEdit::updateButtons ()\fC [protected slot]\fR"
Enables/disables the push buttons according to the min/max date for this widget.
-.SH "void QDateEdit::valueChanged ( const QDate & date )\fC [signal]\fR"
+.SH "void TQDateEdit::valueChanged ( const TQDate & date )\fC [signal]\fR"
This signal is emitted whenever the editor's value changes. The \fIdate\fR parameter is the new value.
.SS "Property Documentation"
.SH "bool autoAdvance"
@@ -233,26 +233,26 @@ This property holds whether the editor automatically advances to the next sectio
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.
.PP
Set this property's value with setAutoAdvance() and get this property's value with autoAdvance().
-.SH "QDate date"
+.SH "TQDate date"
This property holds the editor's date value.
.PP
-If the date property is not valid, the editor displays all zeroes and QDateEdit::date() 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.
+If the date property is not valid, the editor displays all zeroes and TQDateEdit::date() 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.
.PP
When changing the date property, if the date is less than minValue(), or is greater than maxValue(), nothing happens.
.PP
Set this property's value with setDate() and get this property's value with date().
-.SH "QDate maxValue"
+.SH "TQDate maxValue"
This property holds the editor's maximum value.
.PP
-Setting the maximum date value for the editor is equivalent to calling QDateEdit::setRange( minValue(), \fId\fR ), where \fId\fR is the maximum date. The default maximum date is 8000-12-31.
+Setting the maximum date value for the editor is equivalent to calling TQDateEdit::setRange( minValue(), \fId\fR ), where \fId\fR is the maximum date. The default maximum date is 8000-12-31.
.PP
See also minValue and setRange().
.PP
Set this property's value with setMaxValue() and get this property's value with maxValue().
-.SH "QDate minValue"
+.SH "TQDate minValue"
This property holds the editor's minimum value.
.PP
-Setting the minimum date value is equivalent to calling QDateEdit::setRange( \fId\fR, maxValue() ), where \fId\fR is the minimum date. The default minimum date is 1752-09-14.
+Setting the minimum date value is equivalent to calling TQDateEdit::setRange( \fId\fR, maxValue() ), where \fId\fR is the minimum date. The default minimum date is 1752-09-14.
.PP
See also maxValue and setRange().
.PP
@@ -267,7 +267,7 @@ See also Order.
Set this property's value with setOrder() and get this property's value with order().
.SH "SEE ALSO"
-.BR http://doc.trolltech.com/qdateedit.html
+.BR http://doc.trolltech.com/tqdateedit.html
.BR http://www.trolltech.com/faq/tech.html
.SH COPYRIGHT
Copyright 1992-2007 Trolltech ASA, http://www.trolltech.com. See the