You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
104 lines
2.5 KiB
104 lines
2.5 KiB
/* BEGIN_COMMON_COPYRIGHT_HEADER
|
|
* (c)LGPL2+
|
|
*
|
|
* LXQt - a lightweight, Qt based, desktop toolset
|
|
* http://lxqt.org
|
|
*
|
|
* Copyright: 2014 LXQt team
|
|
* Authors:
|
|
* Hong Jen Yee (PCMan) <pcman.tw@gmail.com>
|
|
*
|
|
* This program or library is free software; you can redistribute it
|
|
* and/or modify it under the terms of the GNU Lesser General Public
|
|
* License as published by the Free Software Foundation; either
|
|
* version 2.1 of the License, or (at your option) any later version.
|
|
*
|
|
* This library 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
|
|
* Lesser General Public License for more details.
|
|
|
|
* You should have received a copy of the GNU Lesser General
|
|
* Public License along with this library; if not, write to the
|
|
* Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
|
|
* Boston, MA 02110-1301 USA
|
|
*
|
|
* END_COMMON_COPYRIGHT_HEADER */
|
|
|
|
#include "datetime.h"
|
|
#include "ui_datetime.h"
|
|
#include <QTime>
|
|
#include <QTimer>
|
|
#include <QTextCharFormat>
|
|
|
|
DateTime::DateTime(QWidget *parent) :
|
|
QWidget(parent),
|
|
ui(new Ui::DateTime)
|
|
{
|
|
ui->setupUi(this);
|
|
mTimer = new QTimer(this);
|
|
connect(mTimer,SIGNAL(timeout()),SLOT(timeout()));
|
|
|
|
|
|
//highlight today
|
|
QDate date = QDate::currentDate();
|
|
QTextCharFormat format = ui->calendar->dateTextFormat(date);
|
|
QBrush brush;
|
|
brush.setColor(Qt::green);
|
|
format.setBackground(brush);
|
|
ui->calendar->setDateTextFormat(date,format);
|
|
|
|
reload();
|
|
}
|
|
|
|
DateTime::~DateTime()
|
|
{
|
|
delete ui;
|
|
}
|
|
|
|
void DateTime::timeout()
|
|
{
|
|
ui->edit_time->blockSignals(true);
|
|
ui->edit_time->setTime(QTime::currentTime());
|
|
ui->edit_time->blockSignals(false);
|
|
}
|
|
|
|
void DateTime::reload()
|
|
{
|
|
ui->calendar->setSelectedDate(QDate::currentDate());
|
|
ui->edit_time->setTime(QTime::currentTime());
|
|
mTimer->start(1000);
|
|
|
|
mModified = 0;
|
|
emit changed(mModified);
|
|
}
|
|
|
|
void DateTime::on_edit_time_userTimeChanged(const QTime &time)
|
|
{
|
|
mModified |= M_TIME;
|
|
mTimer->stop();
|
|
|
|
emit changed(mModified);
|
|
}
|
|
|
|
QDateTime DateTime::dateTime() const
|
|
{
|
|
QDateTime dt(ui->calendar->selectedDate(),ui->edit_time->time());
|
|
return dt;
|
|
}
|
|
|
|
void DateTime::on_calendar_selectionChanged()
|
|
{
|
|
QDate date = ui->calendar->selectedDate();
|
|
if (date != QDate::currentDate())
|
|
{
|
|
mModified |= M_DATE;
|
|
}
|
|
else
|
|
{
|
|
mModified &= ~M_DATE;
|
|
}
|
|
|
|
emit changed(mModified);
|
|
}
|