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
|
/*
* dateedit.cpp - date entry widget
* Program: kalarm
* Copyright © 2002-2007 by David Jarvie <software@astrojar.org.uk>
*
* 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.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License along
* with this program; if not, write to the Free Software Foundation, Inc.,
* 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
*/
#include <kglobal.h>
#include <klocale.h>
#include <kmessagebox.h>
#include "dateedit.moc"
DateEdit::DateEdit(TQWidget* parent, const char* name)
: KDateEdit(parent, name)
{
connect(this, TQT_SIGNAL(dateEntered(const TQDate&)), TQT_SLOT(newDateEntered(const TQDate&)));
}
void DateEdit::setMinDate(const TQDate& d, const TQString& errorDate)
{
mMinDate = d;
if (mMinDate.isValid() && date().isValid() && date() < mMinDate)
setDate(mMinDate);
mMinDateErrString = errorDate;
}
void DateEdit::setMaxDate(const TQDate& d, const TQString& errorDate)
{
mMaxDate = d;
if (mMaxDate.isValid() && date().isValid() && date() > mMaxDate)
setDate(mMaxDate);
mMaxDateErrString = errorDate;
}
void DateEdit::setInvalid()
{
setDate(TQDate());
}
// Check a new date against any minimum or maximum date.
void DateEdit::newDateEntered(const TQDate& newDate)
{
if (newDate.isValid())
{
if (mMinDate.isValid() && newDate < mMinDate)
{
pastLimitMessage(mMinDate, mMinDateErrString,
i18n("Date cannot be earlier than %1"));
setDate(mMinDate);
}
else if (mMaxDate.isValid() && newDate > mMaxDate)
{
pastLimitMessage(mMaxDate, mMaxDateErrString,
i18n("Date cannot be later than %1"));
setDate(mMaxDate);
}
}
}
void DateEdit::pastLimitMessage(const TQDate& limit, const TQString& error, const TQString& defaultError)
{
TQString errString = error;
if (errString.isNull())
{
if (limit == TQDate::tqcurrentDate())
errString = i18n("today");
else
errString = KGlobal::locale()->formatDate(limit, true);
errString = defaultError.tqarg(errString);
}
KMessageBox::sorry(this, errString);
}
void DateEdit::mousePressEvent(TQMouseEvent *e)
{
if (isReadOnly())
{
// Swallow up the event if it's the left button
if (e->button() == Qt::LeftButton)
return;
}
KDateEdit::mousePressEvent(e);
}
void DateEdit::mouseReleaseEvent(TQMouseEvent* e)
{
if (!isReadOnly())
KDateEdit::mouseReleaseEvent(e);
}
void DateEdit::mouseMoveEvent(TQMouseEvent* e)
{
if (!isReadOnly())
KDateEdit::mouseMoveEvent(e);
}
void DateEdit::keyPressEvent(TQKeyEvent* e)
{
if (!isReadOnly())
KDateEdit::keyPressEvent(e);
}
void DateEdit::keyReleaseEvent(TQKeyEvent* e)
{
if (!isReadOnly())
KDateEdit::keyReleaseEvent(e);
}
|