diff options
Diffstat (limited to 'pcbnew/pcbnew_config.h')
-rw-r--r-- | pcbnew/pcbnew_config.h | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/pcbnew/pcbnew_config.h b/pcbnew/pcbnew_config.h new file mode 100644 index 0000000..f4c153e --- /dev/null +++ b/pcbnew/pcbnew_config.h @@ -0,0 +1,17 @@ +/** + * @file pcbnew_config.h + * @brief Configuration parameters for Pcbnew. + */ + +#ifndef _PCBNEW_CONFIG_H_ +#define _PCBNEW_CONFIG_H_ + +#include <config_params.h> +#include <colors_selection.h> + +/* Useful macro : */ +#define LOC_COLOR(layer) &g_ColorsSettings.m_LayersColors[layer] +#define ITEM_COLOR(item_visible) &g_ColorsSettings.m_ItemsColors[item_visible] + + +#endif // _PCBNEW_CONFIG_H_ |