gschem

globals.c

Go to the documentation of this file.
00001 /* gEDA - GPL Electronic Design Automation
00002  * gschem - gEDA Schematic Capture
00003  * Copyright (C) 1998-2010 Ales Hvezda
00004  * Copyright (C) 1998-2011 gEDA Contributors (see ChangeLog for details)
00005  *
00006  * This program is free software; you can redistribute it and/or modify
00007  * it under the terms of the GNU General Public License as published by
00008  * the Free Software Foundation; either version 2 of the License, or
00009  * (at your option) any later version.
00010  *
00011  * This program is distributed in the hope that it will be useful,
00012  * but WITHOUT ANY WARRANTY; without even the implied warranty of
00013  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
00014  * GNU General Public License for more details.
00015  *
00016  * You should have received a copy of the GNU General Public License
00017  * along with this program; if not, write to the Free Software
00018  * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
00019  */
00023 #include <config.h>
00024 #include <stdio.h>
00025 
00026 #include "gschem.h"
00027 
00028 #ifdef HAVE_LIBDMALLOC
00029 #include <dmalloc.h>
00030 #endif
00031 
00032 /* window list */
00033 GList *global_window_list = NULL;
00034 
00035 char *rc_filename     = NULL;
00036 char *output_filename = NULL;
00037 
00038 /* colors */
00039 GdkColor white;
00040 GdkColor black;
00041 
00042 int logging_dest = LOG_WINDOW;
00043 
00044 /* command line options */
00045 int quiet_mode = FALSE;
00046 int verbose_mode = FALSE;
00047 int auto_place_mode = FALSE;
00048 
00049 /* Global buffers */
00050 GList *object_buffer[MAX_BUFFERS];
00051 
00052 /* Hooks */
00053 SCM complex_place_list_changed_hook;
 All Data Structures Files Functions Variables Typedefs Enumerations Enumerator Defines