Go to the documentation of this file.00001
00004 #ifndef BPSCRONEDIT_H
00005 #define BPSCRONEDIT_H
00006
00007 #include "bpsgui_global.h"
00008 #include <QWidget>
00009
00015 class BPSGUI_EXPORT BpsCronEdit : public QWidget
00016 {
00017 Q_OBJECT
00018 BPS_PRIVATE(BpsCronEdit)
00019
00020 public:
00021
00025 BpsCronEdit(QWidget* aParent = 0);
00026
00030 QString cronText() const;
00031
00032 public slots:
00033
00038 void setCronText(const QString& aCronText);
00039
00040 signals:
00041
00046 void cronTextChanged(const QString& aCronText);
00047
00048 protected:
00050 virtual bool focusNextPrevChild(bool aNext);
00052 };
00053
00054 #endif // BPSCRONEDIT_H