2009-11-04 20:46:53 +00:00
|
|
|
/***************/
|
|
|
|
/* GENERAL.H */
|
|
|
|
/***************/
|
2007-05-06 16:03:28 +00:00
|
|
|
|
2008-02-26 01:07:38 +00:00
|
|
|
#ifndef _GENERAL_H_
|
|
|
|
#define _GENERAL_H_
|
|
|
|
|
2010-10-08 20:40:57 +00:00
|
|
|
#include <wx/string.h>
|
|
|
|
#include <wx/gdicmn.h>
|
|
|
|
|
|
|
|
#include "block_commande.h"
|
|
|
|
|
|
|
|
|
|
|
|
class SCH_ITEM;
|
|
|
|
class SCH_SHEET;
|
2010-11-10 15:30:12 +00:00
|
|
|
class TRANSFORM;
|
|
|
|
|
2007-05-06 16:03:28 +00:00
|
|
|
|
2008-02-12 22:34:40 +00:00
|
|
|
#define EESCHEMA_VERSION 2
|
2007-05-06 16:03:28 +00:00
|
|
|
|
|
|
|
#define SCHEMATIC_HEAD_STRING "Schematic File Version"
|
2008-09-19 08:19:15 +00:00
|
|
|
#define EESCHEMA_FILE_STAMP "EESchema"
|
|
|
|
#define NULL_STRING "_NONAME_"
|
2007-05-06 16:03:28 +00:00
|
|
|
|
2010-06-10 18:43:12 +00:00
|
|
|
// Define the char buffer size used to read library files
|
|
|
|
#define LINE_BUFFER_LEN_LARGE 8000
|
|
|
|
#define LINE_BUFFER_LEN 1024
|
|
|
|
|
2008-09-19 08:19:15 +00:00
|
|
|
#define MAX_PIN_INFO 10
|
2007-05-06 16:03:28 +00:00
|
|
|
|
2010-11-10 15:30:12 +00:00
|
|
|
#define TXTMARGE 10 // Offset in mils for placement of labels and pin numbers.
|
2007-05-06 16:03:28 +00:00
|
|
|
|
|
|
|
#define HIGHLIGHT_COLOR WHITE
|
|
|
|
|
2010-12-08 20:12:46 +00:00
|
|
|
/* Used for EDA_ITEM, .m_Select member */
|
2007-05-06 16:03:28 +00:00
|
|
|
#define IS_SELECTED 1
|
|
|
|
|
2010-11-10 15:30:12 +00:00
|
|
|
#define TEXT_NO_VISIBLE 1
|
2007-05-06 16:03:28 +00:00
|
|
|
|
|
|
|
//#define GR_DEFAULT_DRAWMODE GR_COPY
|
|
|
|
#define GR_DEFAULT_DRAWMODE GR_COPY
|
|
|
|
|
2008-03-27 21:02:42 +00:00
|
|
|
#define DANGLING_SYMBOL_SIZE 12
|
2007-05-06 16:03:28 +00:00
|
|
|
|
2009-04-05 20:49:15 +00:00
|
|
|
extern wxString g_DefaultSchematicFileName;
|
2007-05-06 16:03:28 +00:00
|
|
|
|
2009-11-04 20:46:53 +00:00
|
|
|
/* Search mask for locating objects in editor. */
|
2008-09-19 08:19:15 +00:00
|
|
|
#define LIBITEM 1
|
|
|
|
#define WIREITEM 2
|
|
|
|
#define BUSITEM 4
|
|
|
|
#define RACCORDITEM 4
|
|
|
|
#define JUNCTIONITEM 0x10
|
|
|
|
#define DRAWITEM 0x20
|
|
|
|
#define TEXTITEM 0x40
|
|
|
|
#define LABELITEM 0x80
|
|
|
|
#define SHEETITEM 0x100
|
|
|
|
#define MARKERITEM 0x200
|
|
|
|
#define NOCONNECTITEM 0x400
|
|
|
|
#define SEARCH_PINITEM 0x800
|
|
|
|
#define SHEETLABELITEM 0x1000
|
|
|
|
#define FIELDCMPITEM 0x2000
|
2007-05-06 16:03:28 +00:00
|
|
|
#define EXCLUDE_WIRE_BUS_ENDPOINTS 0x4000
|
2008-09-19 08:19:15 +00:00
|
|
|
#define WIRE_BUS_ENDPOINTS_ONLY 0x8000
|
2007-05-06 16:03:28 +00:00
|
|
|
|
2009-11-04 20:46:53 +00:00
|
|
|
#define SEARCHALL ( LIBITEM | WIREITEM | BUSITEM | RACCORDITEM | \
|
|
|
|
JUNCTIONITEM | DRAWITEM | TEXTITEM | LABELITEM | \
|
|
|
|
SHEETITEM | MARKERITEM | NOCONNECTITEM | \
|
|
|
|
SEARCH_PINITEM | SHEETLABELITEM )
|
2007-05-06 16:03:28 +00:00
|
|
|
|
2009-11-04 20:46:53 +00:00
|
|
|
typedef enum
|
|
|
|
{
|
2008-09-19 08:19:15 +00:00
|
|
|
LAYER_WIRE,
|
|
|
|
LAYER_BUS,
|
|
|
|
LAYER_JUNCTION,
|
|
|
|
LAYER_LOCLABEL,
|
|
|
|
LAYER_GLOBLABEL,
|
|
|
|
LAYER_HIERLABEL,
|
|
|
|
LAYER_PINFUN,
|
|
|
|
LAYER_PINNUM,
|
|
|
|
LAYER_PINNAM,
|
|
|
|
LAYER_REFERENCEPART,
|
|
|
|
LAYER_VALUEPART,
|
|
|
|
LAYER_FIELDS,
|
|
|
|
LAYER_DEVICE,
|
|
|
|
LAYER_NOTES,
|
|
|
|
LAYER_NETNAM,
|
|
|
|
LAYER_PIN,
|
|
|
|
LAYER_SHEET,
|
|
|
|
LAYER_SHEETNAME,
|
|
|
|
LAYER_SHEETFILENAME,
|
|
|
|
LAYER_SHEETLABEL,
|
|
|
|
LAYER_NOCONNECT,
|
|
|
|
LAYER_ERC_WARN,
|
|
|
|
LAYER_ERC_ERR,
|
|
|
|
LAYER_DEVICE_BACKGROUND,
|
2010-12-02 21:41:56 +00:00
|
|
|
LAYER_GRID,
|
2008-09-19 08:19:15 +00:00
|
|
|
|
2009-11-04 20:46:53 +00:00
|
|
|
MAX_LAYER /* Maximum layers */
|
2008-09-19 08:19:15 +00:00
|
|
|
} LayerNumber;
|
2007-05-06 16:03:28 +00:00
|
|
|
|
2009-11-04 20:46:53 +00:00
|
|
|
|
|
|
|
typedef enum
|
|
|
|
{
|
2008-09-19 08:19:15 +00:00
|
|
|
FILE_SAVE_AS,
|
|
|
|
FILE_SAVE_NEW
|
2007-05-06 16:03:28 +00:00
|
|
|
} FileSaveType;
|
|
|
|
|
|
|
|
|
2010-11-10 15:30:12 +00:00
|
|
|
/* Rotation, mirror of graphic items in components bodies are handled by a
|
|
|
|
* transform matrix. The default matix is useful to draw lib entries with
|
|
|
|
* a defualt matix ( no rotation, no mirror but Y axis is bottom to top, and
|
|
|
|
* Y draw axis is to to bottom so we must have a default matix that reverses
|
|
|
|
* the Y coordinate and keeps the X coordiate
|
|
|
|
*/
|
|
|
|
extern TRANSFORM DefaultTransform;
|
|
|
|
|
|
|
|
#define MIN_BUSLINES_THICKNESS 12 // min bus lines and entries thickness
|
|
|
|
|
|
|
|
#define MAX_LAYERS 44
|
|
|
|
|
|
|
|
class LayerStruct
|
|
|
|
{
|
|
|
|
public:
|
|
|
|
char LayerNames[MAX_LAYERS + 1][8];
|
|
|
|
int LayerColor[MAX_LAYERS + 1];
|
|
|
|
char LayerStatus[MAX_LAYERS + 1];
|
|
|
|
int NumberOfLayers;
|
|
|
|
int CurrentLayer;
|
|
|
|
int CurrentWidth;
|
|
|
|
int CommonColor;
|
|
|
|
int Flags;
|
|
|
|
};
|
|
|
|
|
2009-11-04 20:46:53 +00:00
|
|
|
extern SCH_ITEM* g_ItemToRepeat; /* Pointer to the last structure used
|
|
|
|
* by the repeat command. NULL if no
|
|
|
|
* item to repeat */
|
2009-04-05 20:49:15 +00:00
|
|
|
extern wxSize g_RepeatStep;
|
|
|
|
extern int g_RepeatDeltaLabel;
|
2008-09-19 08:19:15 +00:00
|
|
|
|
2009-04-05 20:49:15 +00:00
|
|
|
extern SCH_ITEM* g_ItemToUndoCopy; /* copy of last modified schematic item
|
2009-11-04 20:46:53 +00:00
|
|
|
* before it is modified (used for undo
|
|
|
|
* managing to restore old values ) */
|
2008-09-19 08:19:15 +00:00
|
|
|
|
2007-05-06 16:03:28 +00:00
|
|
|
/* Block operation (copy, paste) */
|
2009-11-04 20:46:53 +00:00
|
|
|
extern BLOCK_SELECTOR g_BlockSaveDataList; /* List of items to paste (Created
|
|
|
|
* by Block Save) */
|
2007-05-06 16:03:28 +00:00
|
|
|
|
2009-11-04 20:46:53 +00:00
|
|
|
// Management options.
|
2009-05-01 18:06:03 +00:00
|
|
|
extern bool g_HVLines;
|
2007-05-06 16:03:28 +00:00
|
|
|
|
2009-11-04 20:46:53 +00:00
|
|
|
// Management variables, option ... to be stored. Reset to 0 during a
|
|
|
|
// project reload.
|
2007-05-06 16:03:28 +00:00
|
|
|
struct EESchemaVariables
|
|
|
|
{
|
2008-09-19 08:19:15 +00:00
|
|
|
int NbErrorErc;
|
|
|
|
int NbWarningErc;
|
2007-05-06 16:03:28 +00:00
|
|
|
};
|
|
|
|
|
2009-04-05 20:49:15 +00:00
|
|
|
extern struct EESchemaVariables g_EESchemaVar;
|
2007-05-06 16:03:28 +00:00
|
|
|
|
2009-04-05 20:49:15 +00:00
|
|
|
extern int g_DefaultTextLabelSize;
|
2007-05-06 16:03:28 +00:00
|
|
|
|
|
|
|
struct HPGL_Pen_Descr_Struct
|
|
|
|
{
|
2009-11-04 20:46:53 +00:00
|
|
|
int m_Pen_Num; /* Pen number */
|
|
|
|
int m_Pen_Speed; /* Pen speed in cm/s */
|
2008-09-19 08:19:15 +00:00
|
|
|
int m_Pen_Diam; /* Pen diameter in mils */
|
2007-05-06 16:03:28 +00:00
|
|
|
};
|
2009-04-05 20:49:15 +00:00
|
|
|
extern HPGL_Pen_Descr_Struct g_HPGL_Pen_Descr;
|
2007-05-06 16:03:28 +00:00
|
|
|
|
2009-06-02 07:26:49 +00:00
|
|
|
/* First and main (root) screen */
|
2009-11-04 20:46:53 +00:00
|
|
|
extern SCH_SHEET* g_RootSheet;
|
2007-05-06 16:03:28 +00:00
|
|
|
|
2009-06-02 07:26:49 +00:00
|
|
|
extern wxString g_NetCmpExtBuffer;
|
2009-09-04 18:57:37 +00:00
|
|
|
|
|
|
|
extern const wxString SymbolFileExtension;
|
|
|
|
extern const wxString SymbolFileWildcard;
|
2009-04-05 20:49:15 +00:00
|
|
|
|
|
|
|
extern const wxString CompLibFileExtension;
|
|
|
|
extern const wxString CompLibFileWildcard;
|
|
|
|
|
2009-11-04 20:46:53 +00:00
|
|
|
extern wxString g_SimulatorCommandLine;
|
|
|
|
extern wxString g_NetListerCommandLine;
|
2009-04-05 20:49:15 +00:00
|
|
|
|
2009-11-04 20:46:53 +00:00
|
|
|
extern LayerStruct g_LayerDescr;
|
2009-04-05 20:49:15 +00:00
|
|
|
|
2009-11-04 20:46:53 +00:00
|
|
|
extern bool g_EditPinByPinIsOn; /* True to prevent displacing
|
|
|
|
* pins, when they are at the
|
|
|
|
* same position. */
|
2009-04-05 20:49:15 +00:00
|
|
|
|
2009-11-04 20:46:53 +00:00
|
|
|
extern int g_DrawDefaultLineThickness; /* Default line (in EESCHEMA
|
|
|
|
* units) thickness used to
|
|
|
|
* draw/plot items having a
|
|
|
|
* default thickness line
|
|
|
|
* value (i.e. = 0 ).
|
|
|
|
* 0 = single pixel line width
|
2009-06-02 07:26:49 +00:00
|
|
|
*/
|
2009-04-05 20:49:15 +00:00
|
|
|
|
|
|
|
// Color to draw selected items
|
|
|
|
extern int g_ItemSelectetColor;
|
2009-06-02 07:26:49 +00:00
|
|
|
|
2009-11-04 20:46:53 +00:00
|
|
|
// Color to draw items flagged invisible, in libedit (they are invisible in
|
|
|
|
// eeschema
|
2009-04-05 20:49:15 +00:00
|
|
|
extern int g_InvisibleItemColor;
|
2008-09-13 18:59:57 +00:00
|
|
|
|
2008-02-26 01:07:38 +00:00
|
|
|
#endif // _GENERAL_H_
|