2 * Copyright (C) 2010 Ixonos Plc.
3 * Copyright (C) 2011 Philipp Spitzer, gregor herrmann
5 * This file is part of ConfClerk.
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)
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
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/>.
20 #include "daynavigatorwidget.h"
26 DayNavigatorWidget::DayNavigatorWidget(QWidget *aParent): QWidget(aParent) {
29 connect(prevDayButton, SIGNAL(clicked()), SLOT(prevDayButtonClicked()));
30 connect(nextDayButton, SIGNAL(clicked()), SLOT(nextDayButtonClicked()));
31 connect(todayButton, SIGNAL(clicked()), SLOT(todayButtonClicked()));
35 void DayNavigatorWidget::setDates(const QDate &aStartDate, const QDate &aEndDate) {
36 Q_ASSERT(aStartDate.isValid() && aEndDate.isValid() && aStartDate<=aEndDate);
38 mStartDate = aStartDate;
41 if (!mCurDate.isValid()) mCurDate = mStartDate;
42 // if mCurDate is out of range, set it to mstartDate
43 else if (mCurDate < mStartDate || mCurDate > mEndDate) mCurDate = mStartDate;
45 configureNavigation();
46 emit(dateChanged(mCurDate));
51 void DayNavigatorWidget::setCurDate(const QDate& curDate) {
52 Q_ASSERT(curDate.isValid());
53 if (curDate == mCurDate) return;
55 if (!mStartDate.isValid()) {
56 // the start and end date have not been set
62 else if (curDate < mStartDate) mCurDate = mStartDate;
63 else if (curDate > mEndDate) mCurDate = mEndDate;
64 else mCurDate = curDate;
66 configureNavigation();
67 emit(dateChanged(mCurDate));
72 void DayNavigatorWidget::configureNavigation() {
73 prevDayButton->setDisabled(mCurDate == mStartDate);
74 nextDayButton->setDisabled(mCurDate == mEndDate);
78 void DayNavigatorWidget::prevDayButtonClicked() {
79 if(mCurDate <= mStartDate) return;
80 mCurDate = mCurDate.addDays(-1);
81 configureNavigation();
82 emit(dateChanged(mCurDate));
87 void DayNavigatorWidget::nextDayButtonClicked() {
88 if(mCurDate >= mEndDate) return;
89 mCurDate = mCurDate.addDays(1);
90 configureNavigation();
91 emit(dateChanged(mCurDate));
96 void DayNavigatorWidget::todayButtonClicked() {
97 setCurDate(QDate::currentDate());
101 void DayNavigatorWidget::paintEvent(QPaintEvent *aEvent)
105 QString selectedDateStr = mCurDate.toString("dddd\nyyyy-MM-dd");
106 QPainter painter(this);
109 // rectangle only for the text
113 QRect q(y()-height()+1*marginSize+2.5*buttonSize, x(), height()-2*marginSize-2.5*buttonSize, width());
115 QRect q(y()-height()+1*marginSize+2*buttonSize, x(), height()-2*marginSize-3*buttonSize, width());
119 // font size adjustion, static on maemo, dynamically otherwise
120 QFont f = painter.font();
124 qreal factor = (qreal) 2 * q.width() / painter.fontMetrics().width(selectedDateStr);
126 if (factor < 1) f.setPointSizeF(f.pointSizeF() * factor);
129 painter.drawText(q, Qt::AlignCenter, selectedDateStr);