kalarm
latecancel.h
Go to the documentation of this file.00001 /* 00002 * latecancel.h - widget to specify cancellation if late 00003 * Program: kalarm 00004 * Copyright © 2004,2005,2007 by David Jarvie <software@astrojar.org.uk> 00005 * 00006 * This program is free software; you can redistribute it and/or modify 00007 * it under the terms of the GNU General Public License as published by 00008 * the Free Software Foundation; either version 2 of the License, or 00009 * (at your option) any later version. 00010 * 00011 * This program is distributed in the hope that it will be useful, 00012 * but WITHOUT ANY WARRANTY; without even the implied warranty of 00013 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 00014 * GNU General Public License for more details. 00015 * 00016 * You should have received a copy of the GNU General Public License along 00017 * with this program; if not, write to the Free Software Foundation, Inc., 00018 * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. 00019 */ 00020 00021 #ifndef LATECANCEL_H 00022 #define LATECANCEL_H 00023 00024 #include <QFrame> 00025 00026 #include "timeperiod.h" 00027 #include "timeselector.h" 00028 class QStackedWidget; 00029 class CheckBox; 00030 00031 00032 class LateCancelSelector : public QFrame 00033 { 00034 Q_OBJECT 00035 public: 00036 LateCancelSelector(bool allowHourMinute, QWidget* parent); 00037 int minutes() const; 00038 void setMinutes(int Minutes, bool dateOnly, TimePeriod::Units defaultUnits); 00039 void setDateOnly(bool dateOnly); 00040 void showAutoClose(bool show); 00041 bool isAutoClose() const; 00042 void setAutoClose(bool autoClose); 00043 bool isReadOnly() const { return mReadOnly; } 00044 void setReadOnly(bool); 00045 00046 static QString i18n_chk_CancelIfLate(); // text of 'Cancel if late' checkbox 00047 static QString i18n_chk_AutoCloseWin(); // text of 'Auto-close window after this time' checkbox 00048 static QString i18n_chk_AutoCloseWinLC(); // text of 'Auto-close window after late-cancellation time' checkbox 00049 00050 private slots: 00051 void slotToggled(bool); 00052 00053 private: 00054 QStackedWidget* mStack; // contains mCheckboxFrame and mTimeSelectorFrame 00055 QFrame* mCheckboxFrame; 00056 CheckBox* mCheckbox; // displayed when late cancellation is not selected 00057 QFrame* mTimeSelectorFrame; 00058 TimeSelector* mTimeSelector; // displayed when late cancellation is selected 00059 CheckBox* mAutoClose; 00060 bool mDateOnly; // hours/minutes units not allowed 00061 bool mReadOnly; // widget is read-only 00062 bool mAutoCloseShown; // auto-close checkbox is visible 00063 }; 00064 00065 #endif // LATECANCEL_H
KDE 4.2 API Reference