Default STEP export to board only
[geda-pcb/pcjc2/v2.git] / src / set.h
blobee7cd87bc60920a97b93e6803f85d4a755f33849
1 /*!
2 * \file src/set.h
4 * \brief Prototypes for update routines.
6 * <hr>
8 * <h1><b>Copyright.</b></h1>\n
10 * PCB, interactive printed circuit board design
11 * Copyright (C) 1994,1995,1996 Thomas Nau
13 * This program is free software; you can redistribute it and/or modify
14 * it under the terms of the GNU General Public License as published by
15 * the Free Software Foundation; either version 2 of the License, or
16 * (at your option) any later version.
18 * This program is distributed in the hope that it will be useful,
19 * but WITHOUT ANY WARRANTY; without even the implied warranty of
20 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
21 * GNU General Public License for more details.
23 * You should have received a copy of the GNU General Public License
24 * along with this program; if not, write to the Free Software
25 * Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
27 * Contact addresses for paper mail and Email:
28 * Thomas Nau, Schlehenweg 15, 88471 Baustetten, Germany
29 * Thomas.Nau@rz.uni-ulm.de
33 #ifndef PCB_SET_H
34 #define PCB_SET_H
36 #include "global.h"
38 void SetTextScale (int);
39 void SetGrid (Coord, bool);
40 void SetLineSize (Coord);
41 void SetViaSize (Coord, bool);
42 void SetViaDrillingHole (Coord, bool);
43 void SetKeepawayWidth (Coord);
44 void SetChangedFlag (bool);
45 void SetBufferNumber (int);
46 void SetMode (int);
47 void SetCrosshairRangeToBuffer (void);
48 void SetRouteStyle (char *);
49 void SetLocalRef (Coord, Coord, bool);
50 void SaveMode (void);
51 void RestoreMode (void);
52 void pcb_use_route_style (RouteStyleType *);
54 #endif