/*************************************************************************** timebox.h - description ------------------- begin : Sun Jan 20 2002 copyright : (C) 2002 by Pablo de Vicente email : vicente@oan.es ***************************************************************************/ /*************************************************************************** * * * This program is free software; you can redistribute it and/or modify * * it under the terms of the GNU General Public License as published by * * the Free Software Foundation; either version 2 of the License, or * * (at your option) any later version. * * * ***************************************************************************/ #ifndef TIMEBOX_H #define TIMEBOX_H #include #include #include class TQTime; class ExtDate; /**@class timeBox * This class creates a TQHBox with 3 TQLineEdit Fields which will contain * either Time (Hour, Minute, Second) or Date (Day, Month, Year). * * Inherits TQHBox *@author Pablo de Vicente *@version 1.0 */ class timeBox : public TQLineEdit { public: /** * Constructor for the timeBox object. * @param parent is the parent TQWidget * @param n name is the name of the object * @param tt boolean. true means that the object will hold a Time. * false means that the object will hold a Date. */ timeBox(TQWidget *parent, const char *n, bool tt=TRUE); ~timeBox(); /** * Fills the TQLineEdit fields of the timebox object from a TQTime object * showing hours, minutes and seconds. * @param t TQTime object from which to fill the entry fields */ void showTime(TQTime t); /** * Fills the TQLineEdit fields of the timebox object from a TQTime object * showing hours, minutes and seconds. * @param t TQTime object from which to fill the entry fields */ void showDate(ExtDate t); /** * returns a TQTime object constructed from the fields of the timebox */ TQTime createTime(bool *ok=0); /** * returns a ExtDate object constructed from the fields of the timebox */ ExtDate createDate(bool *ok=0); /** * Fills the degrees entry field with string @p s * */ void setEntry(TQString s) { setText(s); } /** * returns a boolean. True indicates that the object holds a * Time Box. False that the object holds a Date Box. */ bool timeType(void) const {return timet;} /** * Clears all entries. */ void clearFields (void) { setEntry(""); } private: bool timet; }; #endif