qtimeedit man page on aLinux

Man page or keyword search:  
man Server   7435 pages
apropos Keyword Search (all sections)
Output format
aLinux logo
[printable version]

QTimeEdit(3qt)							QTimeEdit(3qt)

NAME
       QTimeEdit - Time editor

SYNOPSIS
       #include <qdatetimeedit.h>

       Inherits QDateTimeEditBase.

   Public Members
       enum Display { Hours = 0x01, Minutes = 0x02, Seconds = 0x04, AMPM =
	   0x10 }
       QTimeEdit ( QWidget * parent = 0, const char * name = 0 )
       QTimeEdit ( const QTime & time, QWidget * parent = 0, const char * name
	   = 0 )
       ~QTimeEdit ()
       QTime time () const
       virtual void setAutoAdvance ( bool advance )
       bool autoAdvance () const
       virtual void setMinValue ( const QTime & d )
       QTime minValue () const
       virtual void setMaxValue ( const QTime & d )
       QTime maxValue () const
       virtual void setRange ( const QTime & min, const QTime & max )
       QString separator () const
       virtual void setSeparator ( const QString & s )
       uint display () const
       void setDisplay ( uint disp )

   Public Slots
       virtual void setTime ( const QTime & time )

   Signals
       void valueChanged ( const QTime & time )

   Properties
       bool autoAdvance - whether the editor automatically advances to the
	   next section
       Display display - the sections that are displayed in the time edit
       QTime maxValue - the maximum time value
       QTime minValue - the minimum time value
       QTime time - the editor's time value

   Protected Members
       virtual QString sectionFormattedText ( int sec )
       virtual void setHour ( int h )
       virtual void setMinute ( int m )
       virtual void setSecond ( int s )

DESCRIPTION
       The QTimeEdit class provides a time editor.

       QTimeEdit allows the user to edit times by using the keyboard or the
       arrow keys to increase/decrease time values. The arrow keys can be used
       to move from section to section within the QTimeEdit box. The user can
       automatically be moved to the next section once they complete a section
       using setAutoAdvance(). Times appear in hour, minute, second order. It
       is recommended that the QTimeEdit is initialised with a time, e.g.

	   QTime timeNow = QTime::currentTime();
	   QTimeEdit *timeEdit = new QTimeEdit( timeNow, this );
	   timeEdit->setRange( timeNow, timeNow.addSecs( 60 * 60 ) );
       Here we've created a QTimeEdit 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.

       The maximum and minimum values for a time value in the time editor
       default to the maximum and minimum values for a QTime. You can change
       this by calling setMinValue(), setMaxValue() or setRange().

       Terminology: A QTimeWidget consists of three sections, one each for the
       hour, minute and second. You can change the separator character using
       setSeparator(), by default the separator is read from the system's
       settings.

       <center>
				   [Image Omitted]

       </center>

       See also QTime, QDateEdit, QDateTimeEdit, Advanced Widgets, and Time
       and Date.

   Member Type Documentation
QTimeEdit::Display
       This enum defines the sections that comprise a time

       QTimeEdit::Hours - The hours section

       QTimeEdit::Minutes - The minutes section

       QTimeEdit::Seconds - The seconds section

       QTimeEdit::AMPM - The AM/PM section

       The values can be or'ed together to show any combination.

MEMBER FUNCTION DOCUMENTATION
QTimeEdit::QTimeEdit ( QWidget * parent = 0, const char * name = 0 )
       Constructs an empty time edit with parent parent and called name.

QTimeEdit::QTimeEdit ( const QTime & time, QWidget * parent = 0, const char *
       name = 0 )
       This is an overloaded member function, provided for convenience. It
       behaves essentially like the above function.

       Constructs a time edit with the initial time value, time, parent parent
       and called name.

QTimeEdit::~QTimeEdit ()
       Destroys the object and frees any allocated resources.

bool QTimeEdit::autoAdvance () const
       Returns TRUE if the editor automatically advances to the next section;
       otherwise returns FALSE. See the "autoAdvance" property for details.

uint QTimeEdit::display () const
       Returns the sections that are displayed in the time edit. See the
       "display" property for details.

QTime QTimeEdit::maxValue () const
       Returns the maximum time value. See the "maxValue" property for
       details.

QTime QTimeEdit::minValue () const
       Returns the minimum time value. See the "minValue" property for
       details.

QString QTimeEdit::sectionFormattedText ( int sec ) [virtual protected]
       Returns the formatted number for section sec. This will correspond to
       either the hour, minute or second section, depending on sec.

QString QTimeEdit::separator () const
       Returns the editor's separator.

void QTimeEdit::setAutoAdvance ( bool advance ) [virtual]
       Sets whether the editor automatically advances to the next section to
       advance. See the "autoAdvance" property for details.

void QTimeEdit::setDisplay ( uint disp )
       Sets the sections that are displayed in the time edit to disp. See the
       "display" property for details.

void QTimeEdit::setHour ( int h ) [virtual protected]
       Sets the hour to h, which must be a valid hour, i.e. in the range
       0..24.

void QTimeEdit::setMaxValue ( const QTime & d ) [virtual]
       Sets the maximum time value to d. See the "maxValue" property for
       details.

void QTimeEdit::setMinValue ( const QTime & d ) [virtual]
       Sets the minimum time value to d. See the "minValue" property for
       details.

void QTimeEdit::setMinute ( int m ) [virtual protected]
       Sets the minute to m, which must be a valid minute, i.e. in the range
       0..59.

void QTimeEdit::setRange ( const QTime & min, const QTime & max ) [virtual]
       Sets the valid input range for the editor to be from min to max
       inclusive. If min is invalid no minimum time is set. Similarly, if max
       is invalid no maximum time is set.

void QTimeEdit::setSecond ( int s ) [virtual protected]
       Sets the second to s, which must be a valid second, i.e. in the range
       0..59.

void QTimeEdit::setSeparator ( const QString & s ) [virtual]
       Sets the separator to s. Note that currently only the first character
       of s is used.

void QTimeEdit::setTime ( const QTime & time ) [virtual slot]
       Sets the editor's time value to time. See the "time" property for
       details.

QTime QTimeEdit::time () const
       Returns the editor's time value. See the "time" property for details.

void QTimeEdit::valueChanged ( const QTime & time ) [signal]
       This signal is emitted whenever the editor's value changes. The time
       parameter is the new value.

   Property Documentation
bool autoAdvance
       This property holds whether the editor automatically advances to the
       next section.

       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.

       Set this property's value with setAutoAdvance() and get this property's
       value with autoAdvance().

Display display
       This property holds the sections that are displayed in the time edit.

       The value can be any combination of the values in the Display enum. By
       default, the widget displays hours, minutes and seconds.

       Set this property's value with setDisplay() and get this property's
       value with display().

QTime maxValue
       This property holds the maximum time value.

       Setting the maximum time value is equivalent to calling
       QTimeEdit::setRange( minValue(), t ), where t is the maximum time. The
       default maximum time is 23:59:59.

       See also minValue and setRange().

       Set this property's value with setMaxValue() and get this property's
       value with maxValue().

QTime minValue
       This property holds the minimum time value.

       Setting the minimum time value is equivalent to calling
       QTimeEdit::setRange( t, maxValue() ), where t is the minimum time. The
       default minimum time is 00:00:00.

       See also maxValue and setRange().

       Set this property's value with setMinValue() and get this property's
       value with minValue().

QTime time
       This property holds the editor's time value.

       When changing the time property, if the time is less than minValue(),
       or is greater than maxValue(), nothing happens.

       Set this property's value with setTime() and get this property's value
       with time().

SEE ALSO
       http://doc.trolltech.com/qtimeedit.html
       http://www.trolltech.com/faq/tech.html

COPYRIGHT
       Copyright 1992-2007 Trolltech ASA, http://www.trolltech.com.  See the
       license file included in the distribution for a complete license
       statement.

AUTHOR
       Generated automatically from the source code.

BUGS
       If you find a bug in Qt, please report it as described in
       http://doc.trolltech.com/bughowto.html.	Good bug reports help us to
       help you. Thank you.

       The definitive Qt documentation is provided in HTML format; it is
       located at $QTDIR/doc/html and can be read using Qt Assistant or with a
       web browser. This man page is provided as a convenience for those users
       who prefer man pages, although this format is not officially supported
       by Trolltech.

       If you find errors in this manual page, please report them to qt-
       bugs@trolltech.com.  Please include the name of the manual page
       (qtimeedit.3qt) and the Qt version (3.3.8).

Trolltech AS			2 February 2007			QTimeEdit(3qt)
[top]

List of man pages available for aLinux

Copyright (c) for man pages and the logo by the respective OS vendor.

For those who want to learn more, the polarhome community provides shell access and support.

[legal] [privacy] [GNU] [policy] [cookies] [netiquette] [sponsors] [FAQ]
Tweet
Polarhome, production since 1999.
Member of Polarhome portal.
Based on Fawad Halim's script.
....................................................................
Vote for polarhome
Free Shell Accounts :: the biggest list on the net