AlbumShaper
1.0a3
|
00001 //============================================== 00002 // copyright : (C) 2003-2005 by Will Stokes 00003 //============================================== 00004 // This program is free software; you can redistribute it 00005 // and/or modify it under the terms of the GNU General 00006 // Public License as published by the Free Software 00007 // Foundation; either version 2 of the License, or 00008 // (at your option) any later version. 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