You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
26 lines
460 B
26 lines
460 B
15 years ago
|
#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
|