summaryrefslogtreecommitdiffabout
path: root/korganizer/koeditorgeneralevent.h
authorzautrix <zautrix>2004-10-18 09:41:45 (UTC)
committer zautrix <zautrix>2004-10-18 09:41:45 (UTC)
commit112db6c41265da5255a58424186d95d7a00b6ff0 (patch) (side-by-side diff)
treed0ca062305a6dfea479268e2de9c755da8a75708 /korganizer/koeditorgeneralevent.h
parent56990d318b15eacf7d3cc7425ab62f68da099ddf (diff)
downloadkdepimpi-112db6c41265da5255a58424186d95d7a00b6ff0.zip
kdepimpi-112db6c41265da5255a58424186d95d7a00b6ff0.tar.gz
kdepimpi-112db6c41265da5255a58424186d95d7a00b6ff0.tar.bz2
template loading changed
Diffstat (limited to 'korganizer/koeditorgeneralevent.h') (more/less context) (ignore whitespace changes)
-rw-r--r--korganizer/koeditorgeneralevent.h1
1 files changed, 1 insertions, 0 deletions
diff --git a/korganizer/koeditorgeneralevent.h b/korganizer/koeditorgeneralevent.h
index 188dc93..0174788 100644
--- a/korganizer/koeditorgeneralevent.h
+++ b/korganizer/koeditorgeneralevent.h
@@ -61,48 +61,49 @@ class KOEditorGeneralEvent : public KOEditorGeneral
/**
Read event object and setup widgets accordingly. If templ is true, the
event is read as template, i.e. the time and date information isn't set.
*/
void readEvent( Event *, bool tmpl = false );
/** Write event settings to event object */
void writeEvent(Event *);
/** Check if the input is valid. */
bool validateInput();
public slots:
void setDateTimes(QDateTime start, QDateTime end);
void setDuration();
protected slots:
void timeStuffDisable(bool disable);
void dontAssociateTime(bool noTime);
void startTimeChanged(QTime);
void startDateChanged(QDate);
void endTimeChanged(QTime);
void endDateChanged(QDate);
void emitDateTimeStr();
signals:
void dateTimesChanged(QDateTime start,QDateTime end);
void allDayChanged(bool);
void dateTimeStrChanged(const QString &);
private:
+ bool mTemplate;
QLabel *mStartDateLabel;
QLabel *mEndDateLabel;
KDateEdit *mStartDateEdit;
KDateEdit *mEndDateEdit;
KOTimeEdit *mStartTimeEdit;
KOTimeEdit *mEndTimeEdit;
QLabel *mDurationLabel;
QCheckBox *mNoTimeButton;
QComboBox *mFreeTimeCombo;
// current start and end date and time
QDateTime mCurrStartDateTime;
QDateTime mCurrEndDateTime;
};
#endif