kicad/eeschema/program.h

60 lines
1.5 KiB
C
Raw Normal View History

/********************************************/
/* Definitions for the EESchema program: */
/********************************************/
#ifndef PROGRAM_H
#define PROGRAM_H
#ifndef eda_global
#define eda_global extern
#endif
#include "wxEeschemaStruct.h"
#include "macros.h"
#include "base_struct.h"
#include "sch_item_struct.h"
#include "component_class.h"
#include "class_sch_screen.h"
2008-04-12 18:39:20 +00:00
#include "class_drawsheet.h"
#include "class_drawsheetpath.h"
#include "class_text-label.h"
2009-01-02 17:07:50 +00:00
#include "class_schematic_items.h"
#define HIGHLIGHT_COLOR WHITE
#define TEXT_NO_VISIBLE 1
2009-02-21 12:14:33 +00:00
#define MIN_BUSLINES_THICKNESS 12 // min bus lines and entries thickness
2009-01-02 17:07:50 +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 mirrot
* 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 coordiante
* DefaultTransformMatrix[0][0] = 1; DefaultTransformMatrix[1][1] = -1;
* DefaultTransformMatrix[1][0] = DefaultTransformMatrix[0][1] = 0;
*/
2009-01-02 17:07:50 +00:00
eda_global int DefaultTransformMatrix[2][2]
#ifdef MAIN
= { {1, 0}, {0, -1} }
2008-04-22 16:38:23 +00:00
#endif
2009-01-02 17:07:50 +00:00
;
2007-09-01 12:00:30 +00:00
#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;
};
#endif /* PROGRAM_H */