1 | /* |
---|
2 | * Copyright (C) 2010 Ixonos Plc. |
---|
3 | * Copyright (C) 2011 Philipp Spitzer, gregor herrmann |
---|
4 | * |
---|
5 | * This file is part of ConfClerk. |
---|
6 | * |
---|
7 | * ConfClerk is free software: you can redistribute it and/or modify it |
---|
8 | * under the terms of the GNU General Public License as published by the Free |
---|
9 | * Software Foundation, either version 2 of the License, or (at your option) |
---|
10 | * any later version. |
---|
11 | * |
---|
12 | * ConfClerk is distributed in the hope that it will be useful, but |
---|
13 | * WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY |
---|
14 | * or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for |
---|
15 | * more details. |
---|
16 | * |
---|
17 | * You should have received a copy of the GNU General Public License along with |
---|
18 | * ConfClerk. If not, see <http://www.gnu.org/licenses/>. |
---|
19 | */ |
---|
20 | #include "daynavigatorwidget.h" |
---|
21 | |
---|
22 | #include <QPainter> |
---|
23 | #include <QLabel> |
---|
24 | |
---|
25 | |
---|
26 | DayNavigatorWidget::DayNavigatorWidget(QWidget *aParent): QWidget(aParent) { |
---|
27 | setupUi(this); |
---|
28 | |
---|
29 | connect(prevDayButton, SIGNAL(clicked()), SLOT(prevDayButtonClicked())); |
---|
30 | connect(nextDayButton, SIGNAL(clicked()), SLOT(nextDayButtonClicked())); |
---|
31 | connect(todayButton, SIGNAL(clicked()), SLOT(todayButtonClicked())); |
---|
32 | |
---|
33 | configureNavigation(); |
---|
34 | } |
---|
35 | |
---|
36 | |
---|
37 | void DayNavigatorWidget::setDates(const QDate &aStartDate, const QDate &aEndDate) { |
---|
38 | Q_ASSERT(aStartDate.isValid() && aEndDate.isValid() && aStartDate<=aEndDate); |
---|
39 | |
---|
40 | mStartDate = aStartDate; |
---|
41 | mEndDate = aEndDate; |
---|
42 | |
---|
43 | if (!mCurDate.isValid()) mCurDate = mStartDate; |
---|
44 | // if mCurDate is out of range, set it to mstartDate |
---|
45 | else if (mCurDate < mStartDate || mCurDate > mEndDate) mCurDate = mStartDate; |
---|
46 | |
---|
47 | configureNavigation(); |
---|
48 | emit(dateChanged(mCurDate)); |
---|
49 | this->update(); |
---|
50 | } |
---|
51 | |
---|
52 | |
---|
53 | void DayNavigatorWidget::setCurDate(const QDate& curDate) { |
---|
54 | Q_ASSERT(curDate.isValid()); |
---|
55 | if (curDate == mCurDate) return; |
---|
56 | |
---|
57 | if (!mStartDate.isValid()) { |
---|
58 | // the start and end date have not been set |
---|
59 | mStartDate = curDate; |
---|
60 | mEndDate = curDate; |
---|
61 | mCurDate = curDate; |
---|
62 | } |
---|
63 | |
---|
64 | else if (curDate < mStartDate) mCurDate = mStartDate; |
---|
65 | else if (curDate > mEndDate) mCurDate = mEndDate; |
---|
66 | else mCurDate = curDate; |
---|
67 | |
---|
68 | configureNavigation(); |
---|
69 | emit(dateChanged(mCurDate)); |
---|
70 | this->update(); |
---|
71 | } |
---|
72 | |
---|
73 | |
---|
74 | void DayNavigatorWidget::configureNavigation() { |
---|
75 | prevDayButton->setDisabled(!mStartDate.isValid() || mCurDate == mStartDate); |
---|
76 | nextDayButton->setDisabled(!mEndDate.isValid() || mCurDate == mEndDate); |
---|
77 | } |
---|
78 | |
---|
79 | |
---|
80 | void DayNavigatorWidget::prevDayButtonClicked() { |
---|
81 | if(mCurDate <= mStartDate) return; |
---|
82 | mCurDate = mCurDate.addDays(-1); |
---|
83 | configureNavigation(); |
---|
84 | emit(dateChanged(mCurDate)); |
---|
85 | this->update(); |
---|
86 | } |
---|
87 | |
---|
88 | |
---|
89 | void DayNavigatorWidget::nextDayButtonClicked() { |
---|
90 | if(mCurDate >= mEndDate) return; |
---|
91 | mCurDate = mCurDate.addDays(1); |
---|
92 | configureNavigation(); |
---|
93 | emit(dateChanged(mCurDate)); |
---|
94 | this->update(); |
---|
95 | } |
---|
96 | |
---|
97 | |
---|
98 | void DayNavigatorWidget::todayButtonClicked() { |
---|
99 | setCurDate(QDate::currentDate()); |
---|
100 | } |
---|
101 | |
---|
102 | |
---|
103 | void DayNavigatorWidget::paintEvent(QPaintEvent *aEvent) |
---|
104 | { |
---|
105 | Q_UNUSED(aEvent); |
---|
106 | |
---|
107 | QString selectedDateStr = mCurDate.isValid() ? mCurDate.toString("dddd\nyyyy-MM-dd") : tr("No date"); |
---|
108 | QPainter painter(this); |
---|
109 | painter.save(); |
---|
110 | |
---|
111 | // rectangle only for the text |
---|
112 | int marginSize = 9; |
---|
113 | int buttonSize = 32; |
---|
114 | #ifdef MAEMO |
---|
115 | QRect q(y()-height()+1*marginSize+2.5*buttonSize, x(), height()-2*marginSize-2.5*buttonSize, width()); |
---|
116 | #else |
---|
117 | QRect q(y()-height()+1*marginSize+2*buttonSize, x(), height()-2*marginSize-3*buttonSize, width()); |
---|
118 | #endif |
---|
119 | painter.rotate(270); |
---|
120 | |
---|
121 | // font size adjustion, static on maemo, dynamically otherwise |
---|
122 | QFont f = painter.font(); |
---|
123 | #ifdef MAEMO |
---|
124 | qreal factor = 0.8; |
---|
125 | #else |
---|
126 | qreal factor = (qreal) 2 * q.width() / painter.fontMetrics().width(selectedDateStr); |
---|
127 | #endif |
---|
128 | if (factor < 1) f.setPointSizeF(f.pointSizeF() * factor); |
---|
129 | painter.setFont(f); |
---|
130 | |
---|
131 | painter.drawText(q, Qt::AlignCenter, selectedDateStr); |
---|
132 | painter.restore(); |
---|
133 | } |
---|