1 /****************************************************************************************************** 2 * (C) 2014 markummitchell@github.com. This file is part of Engauge Digitizer, which is released * 3 * under GNU General Public License version 2 (GPLv2) or (at your option) any later version. See file * 4 * LICENSE or go to gnu.org/licenses for details. Distribution requires prior written permission. * 5 ******************************************************************************************************/ 6 7 #ifndef CURSOR_SIZE_H 8 #define CURSOR_SIZE_H 9 10 /// Custom cursor sizes supported on all platforms for the most part, according to QCursor documentation 11 enum CursorSize { 12 CURSOR_SIZE_16, 13 CURSOR_SIZE_32, 14 CURSOR_SIZE_48, 15 CURSOR_SIZE_64, 16 NUM_CURSOR_SIZES 17 }; 18 19 extern int CursorSizeToPixels (CursorSize cursorSize); 20 21 #endif // CURSOR_SIZE_H 22