2 * timeselector.h - widget to optionally set a time period
4 * Copyright © 2004,2005,2007,2008,2010,2011 by David Jarvie <djarvie@kde.org>
6 * This program is free software; you can redistribute it and/or modify
7 * it under the terms of the GNU General Public License as published by
8 * the Free Software Foundation; either version 2 of the License, or
9 * (at your option) any later version.
11 * This program is distributed in the hope that it will be useful,
12 * but WITHOUT ANY WARRANTY; without even the implied warranty of
13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 * GNU General Public License for more details.
16 * You should have received a copy of the GNU General Public License along
17 * with this program; if not, write to the Free Software Foundation, Inc.,
18 * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
21 #ifndef TIMESELECTOR_H
22 #define TIMESELECTOR_H
24 #include "timeperiod.h"
32 class TimeSelector
: public QFrame
36 TimeSelector(const QString
& selectText
, const QString
& selectWhatsThis
,
37 const QString
& valueWhatsThis
, bool allowHourMinute
, QWidget
* parent
);
38 ComboBox
* createSignCombo();
39 bool isChecked() const;
40 void setChecked(bool on
);
42 KCalCore::Duration
period() const;
43 void setPeriod(const KCalCore::Duration
&, bool dateOnly
, TimePeriod::Units defaultUnits
);
45 KCal::Duration
period() const;
46 void setPeriod(const KCal::Duration
&, bool dateOnly
, TimePeriod::Units defaultUnits
);
48 TimePeriod::Units
units() const { return mPeriod
->units(); }
49 void setUnits(TimePeriod::Units units
) { mPeriod
->setUnits(units
); }
50 void setReadOnly(bool);
51 bool isDateOnly() const { return mPeriod
->isDateOnly(); }
52 void setDateOnly(bool dateOnly
= true);
53 void setMaximum(int hourmin
, int days
);
54 void setFocusOnCount();
57 void toggled(bool); // selection checkbox has been toggled
59 void valueChanged(const KCalCore::Duration
&); // value has changed
61 void valueChanged(const KCal::Duration
&); // value has changed
65 void selectToggled(bool);
67 void periodChanged(const KCalCore::Duration
&);
69 void periodChanged(const KCal::Duration
&);
75 ComboBox
* mSignWidget
;
76 bool mReadOnly
; // the widget is read only
79 #endif // TIMESELECTOR_H