![]() |
VR-Forces 4.0.4 Class Documentation
|
00001 /****************************************************************************** 00002 ** Copyright (c) 2010 MAK Technologies, Inc. 00003 ** All rights reserved. 00004 ******************************************************************************/ 00005 /****************************************************************************** 00006 ** $RCSfile: DtQtCursor.h,v $ $Revision: 1.31 $ $State: Exp $ 00007 ******************************************************************************/ 00008 00012 00013 #pragma once 00014 00015 #include <vrvCoreQt/vrvCoreQt.h> 00016 #include <vrvCore/DtCursor.h> 00017 00018 #include <QtGui/QCursor> 00019 00020 class QPixmap; 00021 00022 namespace makVrv 00023 { 00027 class DT_DLL_VRVCOREQT DtQtCursor : public DtCursor 00028 { 00029 00030 public: 00031 00033 DtQtCursor(); 00034 00036 DtQtCursor(CursorShape); 00037 00039 DtQtCursor(const DtCursor&); 00040 00042 DtQtCursor(const DtQtCursor&); 00043 00045 DtQtCursor(const QPixmap&); 00046 00048 virtual ~DtQtCursor(); 00049 00050 const QCursor& cursor() const; 00051 00052 virtual DtCursor* clone() const; 00053 00054 protected: 00055 QCursor myCursor; 00056 }; 00057 } 00058 00059