blob: 9c6eb3b427b017ed2d9027c679336177436ae96c (
plain)
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
|
#ifndef KARM_K_TIME_WIDGET_H
#define KARM_K_TIME_WIDGET_H
class QLineEdit;
class QWidget;
class KarmLineEdit;
/**
* Widget used for entering minutes and seconds with validation.
*/
class KArmTimeWidget : public QWidget
{
public:
KArmTimeWidget( QWidget* parent = 0, const char* name = 0 );
void setTime( long minutes );
long time() const;
private:
QLineEdit *_hourLE;
KarmLineEdit *_minuteLE;
};
#endif // KARM_K_TIME_WIDGET_H
|