kde-playground/kdepim/kalarm/latecancel.cpp
2015-04-14 21:49:29 +00:00

184 lines
6.4 KiB
C++

/*
* latecancel.cpp - widget to specify cancellation if late
* Program: kalarm
* Copyright © 2004,2005,2007-2011 by David Jarvie <djarvie@kde.org>
*
* 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 "kalarm.h"
#include "latecancel.h"
#include "checkbox.h"
#ifdef USE_AKONADI
#include <kcalcore/duration.h>
using namespace KCalCore;
#else
#include <kcal/duration.h>
using namespace KCal;
#endif
#include <klocale.h>
#include <kdialog.h>
#include <QStackedWidget>
#include <QVBoxLayout>
#include <QHBoxLayout>
// Collect these widget labels together to ensure consistent wording and
// translations across different modules.
QString LateCancelSelector::i18n_chk_CancelIfLate() { return i18nc("@option:check", "Cancel if late"); }
QString LateCancelSelector::i18n_chk_AutoCloseWin() { return i18nc("@option:check", "Auto-close window after this time"); }
QString LateCancelSelector::i18n_chk_AutoCloseWinLC() { return i18nc("@option:check", "Auto-close window after late-cancellation time"); }
LateCancelSelector::LateCancelSelector(bool allowHourMinute, QWidget* parent)
: QFrame(parent),
mDateOnly(false),
mReadOnly(false),
mAutoCloseShown(false)
{
QString whatsThis = i18nc("@info:whatsthis",
"<para>If checked, the alarm will be canceled if it cannot be triggered within the "
"specified period after its scheduled time. Possible reasons for not triggering "
"include your being logged off, X not running, or <application>KAlarm</application> not running.</para>"
"<para>If unchecked, the alarm will be triggered at the first opportunity after "
"its scheduled time, regardless of how late it is.</para>");
QVBoxLayout* topLayout = new QVBoxLayout(this);
topLayout->setMargin(0);
topLayout->setSpacing(KDialog::spacingHint());
mStack = new QStackedWidget(this);
topLayout->addWidget(mStack, 0, Qt::AlignLeft);
mCheckboxFrame = new QFrame();
mStack->addWidget(mCheckboxFrame);
QHBoxLayout* hlayout = new QHBoxLayout(mCheckboxFrame);
hlayout->setMargin(0);
mCheckbox = new CheckBox(i18n_chk_CancelIfLate(), mCheckboxFrame);
connect(mCheckbox, SIGNAL(toggled(bool)), SLOT(slotToggled(bool)));
connect(mCheckbox, SIGNAL(toggled(bool)), SIGNAL(changed()));
mCheckbox->setWhatsThis(whatsThis);
hlayout->addWidget(mCheckbox, 0, Qt::AlignLeft);
mTimeSelectorFrame = new QFrame();
mStack->addWidget(mTimeSelectorFrame);
hlayout = new QHBoxLayout(mTimeSelectorFrame);
hlayout->setMargin(0);
mTimeSelector = new TimeSelector(i18nc("@option:check Cancel if late by 10 minutes", "Cancel if late by"),
whatsThis, i18nc("@info:whatsthis", "Enter how late will cause the alarm to be canceled"),
allowHourMinute, mTimeSelectorFrame);
connect(mTimeSelector, SIGNAL(toggled(bool)), SLOT(slotToggled(bool)));
#ifdef USE_AKONADI
connect(mTimeSelector, SIGNAL(valueChanged(KCalCore::Duration)), SIGNAL(changed()));
#else
connect(mTimeSelector, SIGNAL(valueChanged(KCal::Duration)), SIGNAL(changed()));
#endif
hlayout->addWidget(mTimeSelector, 0, Qt::AlignLeft);
hlayout = new QHBoxLayout();
hlayout->setMargin(0);
hlayout->addSpacing(3*KDialog::spacingHint());
topLayout->addLayout(hlayout);
mAutoClose = new CheckBox(i18n_chk_AutoCloseWin(), this);
connect(mAutoClose, SIGNAL(toggled(bool)), SIGNAL(changed()));
mAutoClose->setWhatsThis(i18nc("@info:whatsthis", "Automatically close the alarm window after the expiry of the late-cancellation period"));
hlayout->addWidget(mAutoClose);
hlayout->addStretch();
mAutoClose->hide();
mAutoClose->setEnabled(false);
}
/******************************************************************************
* Set the read-only status.
*/
void LateCancelSelector::setReadOnly(bool ro)
{
if ((int)ro != (int)mReadOnly)
{
mReadOnly = ro;
mCheckbox->setReadOnly(mReadOnly);
mTimeSelector->setReadOnly(mReadOnly);
mAutoClose->setReadOnly(mReadOnly);
}
}
int LateCancelSelector::minutes() const
{
return mTimeSelector->period().asSeconds() / 60;
}
void LateCancelSelector::setMinutes(int minutes, bool dateOnly, TimePeriod::Units defaultUnits)
{
slotToggled(minutes);
Duration period;
if (minutes % (24*60))
period = Duration(minutes * 60, Duration::Seconds);
else
period = Duration(minutes / (24*60), Duration::Days);
mTimeSelector->setPeriod(period, dateOnly, defaultUnits);
}
void LateCancelSelector::setDateOnly(bool dateOnly)
{
if (dateOnly != mDateOnly)
{
mDateOnly = dateOnly;
if (mTimeSelector->isChecked()) // don't change when it's not visible
mTimeSelector->setDateOnly(dateOnly);
}
}
void LateCancelSelector::showAutoClose(bool show)
{
if (show)
mAutoClose->show();
else
mAutoClose->hide();
mAutoCloseShown = show;
updateGeometry();
}
bool LateCancelSelector::isAutoClose() const
{
return mAutoCloseShown && mAutoClose->isEnabled() && mAutoClose->isChecked();
}
void LateCancelSelector::setAutoClose(bool autoClose)
{
mAutoClose->setChecked(autoClose);
}
/******************************************************************************
* Called when either of the checkboxes is toggled.
*/
void LateCancelSelector::slotToggled(bool on)
{
mCheckbox->setChecked(on);
mTimeSelector->setChecked(on);
if (on)
{
mTimeSelector->setDateOnly(mDateOnly);
mStack->setCurrentWidget(mTimeSelectorFrame);
}
else
mStack->setCurrentWidget(mCheckboxFrame);
mAutoClose->setEnabled(on);
}
#include "moc_latecancel.cpp"
// vim: et sw=4: