1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52
|
/*
* timewidget.h
*
* (c) 2002,2008-2009 by Jeremy Bowman <jmbowman@alum.mit.edu>
*
* 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.
*/
/** @file timewidget.h
* Header file for TimeWidget
*/
#ifndef TIMEWIDGET_H
#define TIMEWIDGET_H
#include <QWidget>
class QLabel;
class QLineEdit;
class QPushButton;
/**
* An entry widget for time values. Supports both 12-hour and 24-hour time
* formats, depending on what's been selected in the application preferences.
*/
class TimeWidget: public QWidget
{
Q_OBJECT
public:
TimeWidget(QWidget *parent = 0);
QString getTime();
void setTime(int time);
void setTime(QTime &time);
private slots:
void ampmToggle();
void noneToggle();
private:
QLineEdit *hourEdit; /**< Hour entry field */
QLineEdit *minuteEdit; /**< Minute entry field */
QLineEdit *secondEdit; /**< Second entry field */
bool pm; /**< Is the selected time AM or PM? (if applicable) */
QPushButton *ampmButton; /**< AM/PM selection button (0 if absent) */
QPushButton *noneButton; /**< "None" button (for null time selection) */
};
#endif
|