libgeda
|
00001 /* gEDA - GPL Electronic Design Automation 00002 * libgeda - gEDA's Library 00003 * Copyright (C) 1998-2010 Ales Hvezda 00004 * 00005 * This library is free software; you can redistribute it and/or 00006 * modify it under the terms of the GNU Library General Public 00007 * License as published by the Free Software Foundation; either 00008 * version 2 of the License, or (at your option) any later version. 00009 * 00010 * This library is distributed in the hope that it will be useful, 00011 * but WITHOUT ANY WARRANTY; without even the implied warranty of 00012 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU 00013 * Library General Public License for more details. 00014 * 00015 * You should have received a copy of the GNU General Public License 00016 * along with this program; if not, write to the Free Software 00017 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, 00018 * MA 02111-1301 USA. 00019 */ 00020 00021 #ifndef _O_TYPES_H_INCL 00022 #define _O_TYPES_H_INCL 00023 00024 /* Object types */ 00025 #define OBJ_LINE 'L' 00026 #define OBJ_PATH 'H' 00027 #define OBJ_BOX 'B' 00028 #define OBJ_PICTURE 'G' 00029 #define OBJ_CIRCLE 'V' 00030 #define OBJ_NET 'N' 00031 #define OBJ_BUS 'U' 00032 #define OBJ_COMPLEX 'C' 00033 #define OBJ_TEXT 'T' 00034 #define OBJ_PIN 'P' 00035 #define OBJ_ARC 'A' 00036 #define OBJ_PLACEHOLDER 'X' /* added 1.19.2005 by SDB to prevent 00037 * deletion of unfound symbol files */ 00038 00039 00040 #define STARTATTACH_ATTR '{' 00041 #define ENDATTACH_ATTR '}' 00042 #define START_EMBEDDED '[' 00043 #define END_EMBEDDED ']' 00044 00045 /* font stuff */ 00046 #define INFO_FONT 'F' 00047 #define VERSION_CHAR 'v' 00048 00049 /* misc stuff */ 00050 #define COMMENT '#' 00051 00052 #endif