Go to the documentation of this file.00001
00002
00003
00004
00005
00008
00009 #ifndef lgrTimeButtons_H_
00010 #define lgrTimeButtons_H_
00011
00012 #include <QtGui/QWidget>
00013 #include "ui_timeButtons.h"
00014 #include "lgrToolBar.h"
00015
00016 class DtLgrSlots;
00017 class QIcon;
00018
00019 namespace MAKLogger
00020 {
00021 class DT_DLL_LGRGUI DtLgrTimeButtons : public DtLgrToolBar, protected Ui::DtTimeButtons
00022 {
00023 public:
00025 DtLgrTimeButtons(QWidget* parent);
00026
00028 virtual ~DtLgrTimeButtons();
00029
00031 virtual void connectToModel(DtLgrGuiModel& model);
00032
00034 virtual void postModelUpdate(DtLgrGuiModel& model);
00035
00036 protected:
00037 void setIcons();
00038
00039 QIcon* myPlayStopSet;
00040 QIcon* myRecordStopSet;
00041 QIcon* myActivetSet;
00042
00043 double myLastSpeed;
00044
00045 };
00046 }
00047
00048 #endif