Go to the documentation of this file.00001
00002
00003
00004
00005
00008
00009 #ifndef lgrToolBar_H_
00010 #define lgrToolBar_H_
00011
00012 #include "lgrGui.h"
00013 #include <QtGui/QToolBar>
00014
00015 namespace MAKLogger
00016 {
00018 class DtLgrGuiModel;
00019
00021 class DT_DLL_LGRGUI DtLgrToolBar : public QToolBar
00022 {
00023 Q_OBJECT
00024
00025 public:
00027 DtLgrToolBar(QWidget* parent);
00028
00030 virtual ~DtLgrToolBar();
00031
00033 virtual void connectToModel(DtLgrGuiModel& model) = 0;
00034
00035 static const QSize iconSize;
00036
00037 public slots:
00038
00041 virtual void postModelUpdate(DtLgrGuiModel& model);
00042
00043 };
00044
00045 }
00046
00047 #endif