30 class Reminder : public TQFrame
35 Reminder( const TQString& caption, const TQString& reminderWhatsThis, const TQString& valueWhatsThis,
36 bool allowHourMinute, bool showOnceOnly, TQWidget* parent, const char* name = 0);
37 bool isReminder() const;
38 bool isOnceOnly() const;
40 void setMinutes( int minutes, bool dateOnly);
41 void setReadOnly( bool);
42 void setDateOnly( bool dateOnly);
43 void setMaximum( int hourmin, int days);
44 void setFocusOnCount();
45 void setOnceOnly( bool);
46 void enableOnceOnly( bool enable);
48 static TQString i18n_first_recurrence_only();
49 static TQString i18n_u_first_recurrence_only();
52 void slotReminderToggled( bool);
58 bool mOnceOnlyEnabled;
|