Go to the documentation of this file.00001
00002
00003
00004
00005
00008
00009 #ifndef lgrGuiUtility_H_
00010 #define lgrGuiUtility_H_
00011
00012 #include "lgrGui.h"
00013
00014 class QAbstractButton;
00015 class QAction;
00016 class QBoxLayout;
00017 class QGridLayout;
00018 class QWidget;
00019
00020 namespace MAKLogger
00021 {
00023
00024
00025 DT_DLL_LGRGUI void DtReplaceWidget( QGridLayout* layout,
00026 QWidget* itemToReplace, QWidget* itemToInsert );
00027
00028 DT_DLL_LGRGUI void DtReplaceWidget( QBoxLayout* layout,
00029 QWidget* itemToReplace, QWidget* itemToInsert );
00031
00032
00034 DT_DLL_LGRGUI void syncWidget(QWidget* widget,bool enabled);
00035
00037 DT_DLL_LGRGUI void syncAction(QAction* action,bool enabled);
00038
00040 DT_DLL_LGRGUI void syncActionChecked(QAction* action,bool enabled);
00041
00042 }
00043
00044 #endif