00001
00002
00003
00004
00005
00006
00007
00008
00009 #ifndef TIMESNAPDLG_H
00010 #define TIMESNAPDLG_H
00011
00012 #include <qvariant.h>
00013 #include <qdialog.h>
00014 class QVBoxLayout;
00015 class QHBoxLayout;
00016 class QGridLayout;
00017 class QButtonGroup;
00018 class QPushButton;
00019 class QRadioButton;
00020 class QSpinBox;
00021
00022 class CTimeSnapDlg : public QDialog
00023 {
00024 Q_OBJECT
00025
00026 public:
00027 CTimeSnapDlg( QWidget* parent = 0, const char* name = 0, bool modal = FALSE, WFlags fl = 0 );
00028 ~CTimeSnapDlg();
00029
00030 QPushButton* OkButton;
00031 QPushButton* CancelButton;
00032 QButtonGroup* ButtonGroup1;
00033 QSpinBox* Interval;
00034 QRadioButton* Seconds;
00035 QRadioButton* Minutes;
00036
00037 protected:
00038 QHBoxLayout* Layout2;
00039 };
00040
00041 #endif // TIMESNAPDLG_H