Go to the documentation of this file.00001
00002
00003
00004
00005
00008
00009 #ifndef lgrMenu_H_
00010 #define lgrMenu_H_
00011
00012 #include "lgrGui.h"
00013 #include <QtCore/QObject>
00014
00015 #include <commonWidgets/dynamicMenu.h>
00016
00017 class QString;
00018 class QWidget;
00019
00020 namespace MAKLogger
00021 {
00022 class DtLgrGuiModel;
00023
00025 class DT_DLL_LGRGUI DtLgrMenu : public QObject, public MAKCommonWidgets::DtDynamicMenu
00026 {
00027 Q_OBJECT
00028
00029 public:
00030
00032 DtLgrMenu(QString menuName,QWidget* parent);
00033
00035 virtual ~DtLgrMenu();
00036
00038 QWidget* parentWidget();
00039
00041 virtual void connectToEventHandler(QObject* lgrSlots) = 0;
00042
00043 public slots:
00044
00047 virtual void postModelUpdate(DtLgrGuiModel& model);
00048 };
00049 }
00050
00051 #endif