00001 /*************************************************************************** 00002 * Copyright (C) 2004 by Rick L. Vinyard, Jr. * 00003 * rvinyard@cs.nmsu.edu * 00004 * * 00005 * This program is free software; you can redistribute it and/or modify * 00006 * it under the terms of the GNU Lesser General Public License as * 00007 * published by the Free Software Foundation version 2.1. * 00008 * * 00009 * This program is distributed in the hope that it will be useful, * 00010 * but WITHOUT ANY WARRANTY; without even the implied warranty of * 00011 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * 00012 * GNU General Public License for more details. * 00013 * * 00014 * You should have received a copy of the GNU Lesser General Public * 00015 * License along with this library; if not, write to the * 00016 * Free Software Foundation, Inc., * 00017 * 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA * 00018 ***************************************************************************/ 00019 #ifndef PAPYRUSGTKENUMS_H 00020 #define PAPYRUSGTKENUMS_H 00021 00022 namespace PapyrusGtk { 00023 00024 typedef enum SIZE { 00025 SIZE_XSMALL, 00026 SIZE_SMALL, 00027 SIZE_MEDIUM, 00028 SIZE_LARGE, 00029 SIZE_XLARGE 00030 } SIZE; 00031 00032 typedef enum INCREMENT { 00033 INCREMENT_LINEAR, 00034 INCREMENT_EXPONENTIAL, 00035 } INCREMENT; 00036 00037 typedef enum SCROLL_TO { 00038 SCROLL_TO_CENTER, 00039 SCROLL_TO_TOP_LEFT, 00040 SCROLL_TO_TOP_RIGHT, 00041 SCROLL_TO_BOTTOM_LEFT, 00042 SCROLL_TO_BOTTOM_RIGHT 00043 } SCROLL_TO; 00044 00045 typedef enum SKETCH { 00046 SKETCH_LINE, 00047 SKETCH_POLYGON 00048 } SKETCH; 00049 00050 }; 00051 00052 #endif // PAPYRUSGTKENUMS_H