![]() |
VR-Forces 4.0.4 Class Documentation
|
00001 /****************************************************************************** 00002 ** Copyright (c) 2010 MAK Technologies, Inc. 00003 ** All rights reserved. 00004 ******************************************************************************/ 00005 /****************************************************************************** 00006 ** $RCSfile: DtMouseMappingEditorWidgetInterface.h,v $ $Revision: 1.10 $ $State: Exp $ 00007 ******************************************************************************/ 00008 00013 00014 #pragma once 00015 #include <vrvCoreQt/vrvCoreQt.h> 00016 #include <QtCore/QString> 00017 00018 namespace makVrv 00019 { 00022 class DT_DLL_VRVCOREQT DtMouseMappingEditorWidgetInterface 00023 { 00024 00025 public: 00027 virtual ~DtMouseMappingEditorWidgetInterface(); 00028 00030 virtual void clearMappings() = 0; 00031 00033 virtual void addItem( const QString& key, 00034 const QString& context, const QString& functionText, bool ctrl = false, 00035 bool shift = false, bool drag = false) = 0; 00036 }; 00037 }