00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011 #ifndef GUI_CURSORS_H
00012 #define GUI_CURSORS_H
00013
00015 typedef enum
00016 {
00017 CROSS_CURSOR = 0,
00018
00019 MOVE_SELECTION_CURSOR,
00020 MOVE_HOR_CURSOR,
00021 MOVE_VERT_CURSOR,
00022 MOVE_TL_CURSOR,
00023 MOVE_TR_CURSOR,
00024
00025 SCALE_SELECTION_CURSOR,
00026 ROTATE_CURSOR,
00027
00028 TARGET_CURSOR,
00029
00030 DEFAULT_CURSOR,
00031
00032 CUSTOM_CURSOR_COUNT
00033 } CUSTOM_CURSOR_TYPE;
00034
00035 void loadCursors();
00036 const QCursor& getCursor( CUSTOM_CURSOR_TYPE type );
00037
00038 #endif //GUI_CURSORS_H
00039
00040