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
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
|
#include <stdlib.h> // abs()
#include <tqlabel.h>
#include <tqlayout.h>
#include <tqlineedit.h>
#include <tqstring.h>
#include <tqvalidator.h>
#include <tqwidget.h>
#include <tdelocale.h> // i18n
#include <tdeglobal.h>
#include "ktimewidget.h"
enum ValidatorType { HOUR, MINUTE };
class TimeValidator : public TQValidator
{
public:
TimeValidator( ValidatorType tp, TQWidget *parent=0, const char *name=0)
: TQValidator(TQT_TQOBJECT(parent), name)
{
_tp = tp;
}
State validate(TQString &str, int &) const
{
if (str.isEmpty())
return Acceptable;
bool ok;
int val = str.toInt( &ok );
if ( ! ok )
return Invalid;
if ( _tp==MINUTE && val >= 60 )
return Invalid;
else
return Acceptable;
}
public:
ValidatorType _tp;
};
class KarmLineEdit : public TQLineEdit
{
public:
KarmLineEdit( TQWidget* parent, const char* name = 0 )
: TQLineEdit( parent, name ) {}
protected:
virtual void keyPressEvent( TQKeyEvent *event )
{
TQLineEdit::keyPressEvent( event );
if ( text().length() == 2 && !event->text().isEmpty() )
focusNextPrevChild(true);
}
};
KArmTimeWidget::KArmTimeWidget( TQWidget* parent, const char* name )
: TQWidget(parent, name)
{
TQHBoxLayout *layout = new TQHBoxLayout(this);
_hourLE = new TQLineEdit( this);
// 9999 hours > 1 year!
// 999 hours = 41 days (That should be enough ...)
_hourLE->setFixedWidth( fontMetrics().maxWidth() * 3
+ 2 * _hourLE->frameWidth() + 2);
layout->addWidget(_hourLE);
TimeValidator *validator = new TimeValidator( HOUR, _hourLE,
"Validator for _hourLE");
_hourLE->setValidator( validator );
_hourLE->setAlignment( TQt::AlignRight );
TQLabel *hr = new TQLabel( i18n( "abbreviation for hours", " hr. " ), this );
layout->addWidget( hr );
_minuteLE = new KarmLineEdit(this);
// Minutes lineedit: Make room for 2 digits
_minuteLE->setFixedWidth( fontMetrics().maxWidth() * 2
+ 2 * _minuteLE->frameWidth() + 2);
layout->addWidget(_minuteLE);
validator = new TimeValidator( MINUTE, _minuteLE, "Validator for _minuteLE");
_minuteLE->setValidator( validator );
_minuteLE->setMaxLength(2);
_minuteLE->setAlignment( TQt::AlignRight );
TQLabel *min = new TQLabel( i18n( "abbreviation for minutes", " min. " ), this );
layout->addWidget( min );
layout->addStretch(1);
setFocusProxy( _hourLE );
}
void KArmTimeWidget::setTime( long minutes )
{
TQString dummy;
long hourpart = labs(minutes) / 60;
long minutepart = labs(minutes) % 60;
dummy.setNum( hourpart );
if (minutes < 0)
dummy = TDEGlobal::locale()->negativeSign() + dummy;
_hourLE->setText( dummy );
dummy.setNum( minutepart );
if (minutepart < 10 ) {
dummy = TQString::fromLatin1( "0" ) + dummy;
}
_minuteLE->setText( dummy );
}
long KArmTimeWidget::time() const
{
bool ok, isNegative;
int h, m;
h = abs(_hourLE->text().toInt( &ok ));
m = _minuteLE->text().toInt( &ok );
isNegative = _hourLE->text().startsWith(TDEGlobal::locale()->negativeSign());
return (h * 60 + m) * ((isNegative) ? -1 : 1);
}
|