mirror of
git://projects.qi-hardware.com/eda-tools.git
synced 2024-11-05 17:07:11 +02:00
41 lines
910 B
C
41 lines
910 B
C
/*
|
|
* style.h - FIG drawing style
|
|
*
|
|
* Written 2016 by Werner Almesberger
|
|
* Copyright 2016 by Werner Almesberger
|
|
*
|
|
* This program is free software; you can redistribute it and/or modify
|
|
* it under the terms of the GNU General Public License as published by
|
|
* the Free Software Foundation; either version 2 of the License, or
|
|
* (at your option) any later version.
|
|
*/
|
|
|
|
#ifndef STYLE_H
|
|
#define STYLE_H
|
|
|
|
#define COLOR_BLACK 0
|
|
#define COLOR_BLUE 1
|
|
#define COLOR_GREEN4 12
|
|
#define COLOR_RED4 18
|
|
#define COLOR_RED3 19
|
|
|
|
#define COLOR_COMP_DWG COLOR_RED4
|
|
#define COLOR_SHEET_DWG COLOR_BLUE
|
|
#define COLOR_TEXT COLOR_BLACK
|
|
#define COLOR_WIRE COLOR_GREEN4
|
|
|
|
#define FONT_HELVETICA_BOLD 18
|
|
|
|
#define LAYER_TEXT 30
|
|
#define LAYER_WIRES 50
|
|
#define LAYER_LINES 60
|
|
#define LAYER_COMP_DWG 70
|
|
|
|
#define WIDTH_WIRE 2
|
|
#define WIDTH_LINE 2
|
|
#define WIDTH_COMP_DWG 2
|
|
|
|
#define JUNCTION_R 40
|
|
|
|
#endif /* !STYLE_H */
|