Go to the documentation of this file.00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00015
00016
00017
00018 #ifndef QMITK_APPLICATION_CURSOR_H_INCLUDED
00019 #define QMITK_APPLICATION_CURSOR_H_INCLUDED
00020
00021 #include "mitkApplicationCursor.h"
00022
00029 class QMITK_EXPORT QmitkApplicationCursor : public mitk::ApplicationCursorImplementation
00030 {
00031 public:
00032
00033
00034 QmitkApplicationCursor();
00035
00036 virtual void PushCursor(const char* XPM[], int hotspotX, int hotspotY);
00037 virtual void PopCursor();
00038 virtual const mitk::Point2I GetCursorPosition();
00039 virtual void SetCursorPosition(const mitk::Point2I&);
00040
00041
00042 protected:
00043 private:
00044 };
00045
00046 #endif
00047