Go to the documentation of this file.00001
00002
00003
00004
00005
00008
00009 #ifndef lgrSpeedDialog_H_
00010 #define lgrSpeedDialog_H_
00011
00012 #include "lgrGui.h"
00013 #include <QtGui/QDialog>
00014
00015 class QDoubleSpinBox;
00016
00017 namespace MAKLogger
00018 {
00019
00020 class DtLgrGuiModel;
00021
00023 class DT_DLL_LGRGUI DtLgrSpeedDialog : public QDialog
00024 {
00025 public:
00026
00028 DtLgrSpeedDialog(DtLgrGuiModel& model, QWidget* parent);
00029
00031 virtual ~DtLgrSpeedDialog();
00032
00034 double speed() const;
00035
00036 protected:
00037 QDoubleSpinBox* mySpeedEdit;
00038
00039 };
00040 }
00041
00042 #endif