1 | /****************************************************************************
|
---|
2 | **
|
---|
3 | ** Copyright (C) 2009 Nokia Corporation and/or its subsidiary(-ies).
|
---|
4 | ** Contact: Qt Software Information ([email protected])
|
---|
5 | **
|
---|
6 | ** This file is part of the QtGui module of the Qt Toolkit.
|
---|
7 | **
|
---|
8 | ** $QT_BEGIN_LICENSE:LGPL$
|
---|
9 | ** Commercial Usage
|
---|
10 | ** Licensees holding valid Qt Commercial licenses may use this file in
|
---|
11 | ** accordance with the Qt Commercial License Agreement provided with the
|
---|
12 | ** Software or, alternatively, in accordance with the terms contained in
|
---|
13 | ** a written agreement between you and Nokia.
|
---|
14 | **
|
---|
15 | ** GNU Lesser General Public License Usage
|
---|
16 | ** Alternatively, this file may be used under the terms of the GNU Lesser
|
---|
17 | ** General Public License version 2.1 as published by the Free Software
|
---|
18 | ** Foundation and appearing in the file LICENSE.LGPL included in the
|
---|
19 | ** packaging of this file. Please review the following information to
|
---|
20 | ** ensure the GNU Lesser General Public License version 2.1 requirements
|
---|
21 | ** will be met: http://www.gnu.org/licenses/old-licenses/lgpl-2.1.html.
|
---|
22 | **
|
---|
23 | ** In addition, as a special exception, Nokia gives you certain
|
---|
24 | ** additional rights. These rights are described in the Nokia Qt LGPL
|
---|
25 | ** Exception version 1.0, included in the file LGPL_EXCEPTION.txt in this
|
---|
26 | ** package.
|
---|
27 | **
|
---|
28 | ** GNU General Public License Usage
|
---|
29 | ** Alternatively, this file may be used under the terms of the GNU
|
---|
30 | ** General Public License version 3.0 as published by the Free Software
|
---|
31 | ** Foundation and appearing in the file LICENSE.GPL included in the
|
---|
32 | ** packaging of this file. Please review the following information to
|
---|
33 | ** ensure the GNU General Public License version 3.0 requirements will be
|
---|
34 | ** met: http://www.gnu.org/copyleft/gpl.html.
|
---|
35 | **
|
---|
36 | ** If you are unsure which license is appropriate for your use, please
|
---|
37 | ** contact the sales department at [email protected].
|
---|
38 | ** $QT_END_LICENSE$
|
---|
39 | **
|
---|
40 | ****************************************************************************/
|
---|
41 |
|
---|
42 | #ifndef QDATETIMEEDIT_P_H
|
---|
43 | #define QDATETIMEEDIT_P_H
|
---|
44 |
|
---|
45 | //
|
---|
46 | // W A R N I N G
|
---|
47 | // -------------
|
---|
48 | //
|
---|
49 | // This file is not part of the Qt API. It exists purely as an
|
---|
50 | // implementation detail. This header file may change from version to
|
---|
51 | // version without notice, or even be removed.
|
---|
52 | //
|
---|
53 | // We mean it.
|
---|
54 | //
|
---|
55 |
|
---|
56 | #include "QtGui/qcombobox.h"
|
---|
57 | #include "QtGui/qcalendarwidget.h"
|
---|
58 | #include "QtGui/qspinbox.h"
|
---|
59 | #include "QtGui/qtoolbutton.h"
|
---|
60 | #include "QtGui/qmenu.h"
|
---|
61 | #include "QtGui/qlabel.h"
|
---|
62 | #include "QtGui/qdatetimeedit.h"
|
---|
63 | #include "QtGui/private/qabstractspinbox_p.h"
|
---|
64 | #include "QtCore/private/qdatetime_p.h"
|
---|
65 |
|
---|
66 | #include "qdebug.h"
|
---|
67 |
|
---|
68 | #ifndef QT_NO_DATETIMEEDIT
|
---|
69 |
|
---|
70 | QT_BEGIN_NAMESPACE
|
---|
71 |
|
---|
72 | class QCalendarPopup;
|
---|
73 | class QDateTimeEditPrivate : public QAbstractSpinBoxPrivate, public QDateTimeParser
|
---|
74 | {
|
---|
75 | Q_DECLARE_PUBLIC(QDateTimeEdit)
|
---|
76 | public:
|
---|
77 | QDateTimeEditPrivate();
|
---|
78 |
|
---|
79 | void init(const QVariant &var);
|
---|
80 | void readLocaleSettings();
|
---|
81 |
|
---|
82 | void emitSignals(EmitPolicy ep, const QVariant &old);
|
---|
83 | QString textFromValue(const QVariant &f) const;
|
---|
84 | QVariant valueFromText(const QString &f) const;
|
---|
85 | virtual void _q_editorCursorPositionChanged(int oldpos, int newpos);
|
---|
86 | virtual void interpret(EmitPolicy ep);
|
---|
87 | virtual void clearCache() const;
|
---|
88 |
|
---|
89 | QDateTime validateAndInterpret(QString &input, int &, QValidator::State &state,
|
---|
90 | bool fixup = false) const;
|
---|
91 | void clearSection(int index);
|
---|
92 | virtual QString displayText() const { return edit->displayText(); } // this is from QDateTimeParser
|
---|
93 |
|
---|
94 | int absoluteIndex(QDateTimeEdit::Section s, int index) const;
|
---|
95 | int absoluteIndex(const SectionNode &s) const;
|
---|
96 | void updateEdit();
|
---|
97 | QDateTime stepBy(int index, int steps, bool test = false) const;
|
---|
98 | int sectionAt(int pos) const;
|
---|
99 | int closestSection(int index, bool forward) const;
|
---|
100 | int nextPrevSection(int index, bool forward) const;
|
---|
101 | void setSelected(int index, bool forward = false);
|
---|
102 |
|
---|
103 | void updateCache(const QVariant &val, const QString &str) const;
|
---|
104 |
|
---|
105 | void updateTimeSpec();
|
---|
106 | virtual QDateTime getMinimum() const { return minimum.toDateTime(); }
|
---|
107 | virtual QDateTime getMaximum() const { return maximum.toDateTime(); }
|
---|
108 | virtual QLocale locale() const { return q_func()->locale(); }
|
---|
109 | QString valueToText(const QVariant &var) const { return textFromValue(var); }
|
---|
110 | QString getAmPmText(AmPm ap, Case cs) const;
|
---|
111 | int cursorPosition() const { return edit ? edit->cursorPosition() : -1; }
|
---|
112 |
|
---|
113 | virtual QStyle::SubControl newHoverControl(const QPoint &pos);
|
---|
114 | virtual void updateEditFieldGeometry();
|
---|
115 | virtual QVariant getZeroVariant() const;
|
---|
116 | virtual void setRange(const QVariant &min, const QVariant &max);
|
---|
117 |
|
---|
118 | void _q_resetButton();
|
---|
119 | void updateArrow(QStyle::StateFlag state);
|
---|
120 | bool calendarPopupEnabled() const;
|
---|
121 | void syncCalendarWidget();
|
---|
122 |
|
---|
123 | bool isSeparatorKey(const QKeyEvent *k) const;
|
---|
124 |
|
---|
125 | static QDateTimeEdit::Sections convertSections(QDateTimeParser::Sections s);
|
---|
126 | static QDateTimeEdit::Section convertToPublic(QDateTimeParser::Section s);
|
---|
127 |
|
---|
128 | void initCalendarPopup(QCalendarWidget *cw = 0);
|
---|
129 | void positionCalendarPopup();
|
---|
130 |
|
---|
131 | QDateTimeEdit::Sections sections;
|
---|
132 | mutable bool cacheGuard;
|
---|
133 |
|
---|
134 | QString defaultDateFormat, defaultTimeFormat, defaultDateTimeFormat, unreversedFormat;
|
---|
135 | Qt::LayoutDirection layoutDirection;
|
---|
136 | mutable QVariant conflictGuard;
|
---|
137 | bool hasHadFocus, formatExplicitlySet, calendarPopup;
|
---|
138 | QStyle::StateFlag arrowState;
|
---|
139 | QCalendarPopup *monthCalendar;
|
---|
140 |
|
---|
141 | #ifdef QT_KEYPAD_NAVIGATION
|
---|
142 | bool focusOnButton;
|
---|
143 | #endif
|
---|
144 | };
|
---|
145 |
|
---|
146 |
|
---|
147 | class QCalendarPopup : public QWidget
|
---|
148 | {
|
---|
149 | Q_OBJECT
|
---|
150 | public:
|
---|
151 | QCalendarPopup(QWidget *parent = 0, QCalendarWidget *cw = 0);
|
---|
152 | QDate selectedDate() { return calendar->selectedDate(); }
|
---|
153 | void setDate(const QDate &date);
|
---|
154 | void setDateRange(const QDate &min, const QDate &max);
|
---|
155 | void setFirstDayOfWeek(Qt::DayOfWeek dow) { calendar->setFirstDayOfWeek(dow); }
|
---|
156 | QCalendarWidget *calendarWidget() const { return calendar; }
|
---|
157 | void setCalendarWidget(QCalendarWidget *cw);
|
---|
158 | Q_SIGNALS:
|
---|
159 | void activated(const QDate &date);
|
---|
160 | void newDateSelected(const QDate &newDate);
|
---|
161 | void hidingCalendar(const QDate &oldDate);
|
---|
162 | void resetButton();
|
---|
163 |
|
---|
164 | private Q_SLOTS:
|
---|
165 | void dateSelected(const QDate &date);
|
---|
166 | void dateSelectionChanged();
|
---|
167 |
|
---|
168 | protected:
|
---|
169 | void hideEvent(QHideEvent *);
|
---|
170 | void mousePressEvent(QMouseEvent *e);
|
---|
171 | void mouseReleaseEvent(QMouseEvent *);
|
---|
172 | bool event(QEvent *e);
|
---|
173 |
|
---|
174 | private:
|
---|
175 | QCalendarWidget *calendar;
|
---|
176 | QDate oldDate;
|
---|
177 | bool dateChanged;
|
---|
178 | };
|
---|
179 |
|
---|
180 | QT_END_NAMESPACE
|
---|
181 |
|
---|
182 | #endif // QT_NO_DATETIMEEDIT
|
---|
183 |
|
---|
184 | #endif // QDATETIMEEDIT_P_H
|
---|