55 lines
1.5 KiB
C
55 lines
1.5 KiB
C
/************************************************/
|
|
/* constants used in zone dialogs and functions */
|
|
/************************************************/
|
|
|
|
#ifndef ZONES_H
|
|
#define ZONES_H
|
|
|
|
|
|
#ifndef eda_global
|
|
#define eda_global extern
|
|
#endif
|
|
|
|
#include "class_zone_setting.h"
|
|
|
|
|
|
// keys used to store net sort option in config file :
|
|
#define ZONE_NET_OUTLINES_HATCH_OPTION_KEY wxT( "Zone_Ouline_Hatch_Opt" )
|
|
#define ZONE_NET_SORT_OPTION_KEY wxT( "Zone_NetSort_Opt" )
|
|
#define ZONE_NET_FILTER_STRING_KEY wxT( "Zone_Filter_Opt" )
|
|
#define ZONE_THERMAL_RELIEF_GAP_STRING_KEY wxT( "Zone_TH_Gap" )
|
|
#define ZONE_THERMAL_RELIEF_COPPER_WIDTH_STRING_KEY wxT( "Zone_TH_Copper_Width" )
|
|
|
|
enum zone_cmd {
|
|
ZONE_ABORT,
|
|
ZONE_OK
|
|
};
|
|
|
|
|
|
enum { // How pads are covered by copper in zone
|
|
PAD_NOT_IN_ZONE, // Pads are not covered
|
|
THERMAL_PAD, // Use thermal relief for pads
|
|
PAD_IN_ZONE // pads are covered by copper
|
|
};
|
|
|
|
|
|
/************************************************/
|
|
/* variables used in zone dialogs and functions */
|
|
/************************************************/
|
|
|
|
/* parametre grid size for automatic routing */
|
|
#if defined MAIN
|
|
int g_GridRoutingSize = 250;
|
|
#else
|
|
extern int g_GridRoutingSize;
|
|
#endif
|
|
|
|
eda_global bool g_Zone_45_Only
|
|
#ifdef MAIN
|
|
= FALSE
|
|
#endif
|
|
;
|
|
|
|
eda_global ZONE_SETTING g_Zone_Default_Setting; // Default setting used when creating a new zone
|
|
#endif // ifndef ZONES_H
|