![]() |
VR-Forces 4.0.4 Class Documentation
|
00001 /****************************************************************************** 00002 ** Copyright (c) 2009 MAK Technologies, Inc. 00003 ** All rights reserved. 00004 ******************************************************************************/ 00005 /****************************************************************************** 00006 ** $RCSfile: DtObjectConsoleInformationWidgetInterface.h,v $ $Revision: 1.1 $ $State: Exp $ 00007 ******************************************************************************/ 00008 00012 00013 #pragma once 00014 00015 #include <vrvUtil/signalslib.h> 00016 00017 #include <vrfGuiObjectInformationQt/vrfGuiObjectInformationQt.h> 00018 00019 #include <vrvCore/DtStateView.h> 00020 #include <vrvCore/DtEntityState.h> 00021 00022 class QString; 00023 class QWidget; 00024 00025 namespace makVrf 00026 { 00027 namespace makVrfGuiObjectInformationQt 00028 { 00029 class DT_DLL_VRFGUIOBJECTINFORMATIONQT DtObjectConsoleInformationWidgetInterface 00030 { 00031 public: 00032 00034 virtual ~DtObjectConsoleInformationWidgetInterface() 00035 { 00036 } 00037 00038 virtual void setMessageQueueSize(int) = 0; 00039 virtual void addMessage(const QString&) = 0; 00040 virtual void clearMessages() = 0; 00041 virtual QWidget* widget() = 0; 00042 virtual void setNotifyLevel(int) = 0; 00043 virtual int notifyLevel() const = 0; 00044 }; 00045 } 00046 }