00001 /****************************************************************************************************** 00002 * (C) 2014 markummitchell@github.com. This file is part of Engauge Digitizer, which is released * 00003 * under GNU General Public License version 2 (GPLv2) or (at your option) any later version. See file * 00004 * LICENSE or go to gnu.org/licenses for details. Distribution requires prior written permission. * 00005 ******************************************************************************************************/ 00006 00007 #ifndef ZOOM_FACTOR_H 00008 #define ZOOM_FACTOR_H 00009 00010 enum ZoomFactor { 00011 ZOOM_16_TO_1, 00012 ZOOM_8_TO_1, 00013 ZOOM_4_TO_1, 00014 ZOOM_2_TO_1, 00015 ZOOM_1_TO_1, 00016 ZOOM_1_TO_2, 00017 ZOOM_1_TO_4, 00018 ZOOM_1_TO_8, 00019 ZOOM_1_TO_16, 00020 ZOOM_FILL 00021 }; 00022 00023 #endif // ZOOM_FACTOR_H