Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
K
kicad-source-mirror
Project
Project
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Commits
Open sidebar
Elphel
kicad-source-mirror
Commits
aa93f54d
Commit
aa93f54d
authored
Apr 01, 2008
by
dickelbeck
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
BOARD_ITEM::Draw()
parent
c439e0da
Changes
56
Expand all
Hide whitespace changes
Inline
Side-by-side
Showing
56 changed files
with
761 additions
and
836 deletions
+761
-836
change_log.txt
change_log.txt
+4
-0
setvisu.cpp
cvpcb/setvisu.cpp
+1
-1
base_struct.h
include/base_struct.h
+17
-0
automove.cpp
pcbnew/automove.cpp
+4
-4
autoplac.cpp
pcbnew/autoplac.cpp
+14
-14
block.cpp
pcbnew/block.cpp
+73
-77
block_module_editor.cpp
pcbnew/block_module_editor.cpp
+10
-16
class_board.cpp
pcbnew/class_board.cpp
+7
-1
class_board_item.cpp
pcbnew/class_board_item.cpp
+1
-0
class_cotation.cpp
pcbnew/class_cotation.cpp
+110
-110
class_cotation.h
pcbnew/class_cotation.h
+33
-32
class_edge_mod.cpp
pcbnew/class_edge_mod.cpp
+1
-1
class_edge_mod.h
pcbnew/class_edge_mod.h
+3
-3
class_marker.cpp
pcbnew/class_marker.cpp
+1
-1
class_marker.h
pcbnew/class_marker.h
+24
-24
class_mire.cpp
pcbnew/class_mire.cpp
+11
-11
class_mire.h
pcbnew/class_mire.h
+7
-7
class_module.cpp
pcbnew/class_module.cpp
+17
-29
class_module.h
pcbnew/class_module.h
+3
-3
class_pad.cpp
pcbnew/class_pad.cpp
+1
-1
class_pad.h
pcbnew/class_pad.h
+4
-2
class_pcb_text.cpp
pcbnew/class_pcb_text.cpp
+1
-1
class_pcb_text.h
pcbnew/class_pcb_text.h
+29
-30
class_text_mod.cpp
pcbnew/class_text_mod.cpp
+33
-33
class_text_mod.h
pcbnew/class_text_mod.h
+20
-20
class_track.cpp
pcbnew/class_track.cpp
+1
-1
class_track.h
pcbnew/class_track.h
+1
-1
class_zone.cpp
pcbnew/class_zone.cpp
+1
-1
class_zone.h
pcbnew/class_zone.h
+37
-38
cotation.cpp
pcbnew/cotation.cpp
+9
-9
dialog_edit_mod_text.cpp
pcbnew/dialog_edit_mod_text.cpp
+4
-4
dialog_edit_module.cpp
pcbnew/dialog_edit_module.cpp
+3
-3
edgemod.cpp
pcbnew/edgemod.cpp
+18
-18
edit.cpp
pcbnew/edit.cpp
+4
-4
editedge.cpp
pcbnew/editedge.cpp
+10
-26
editpads.cpp
pcbnew/editpads.cpp
+31
-31
editrack-part2.cpp
pcbnew/editrack-part2.cpp
+33
-33
edtxtmod.cpp
pcbnew/edtxtmod.cpp
+9
-9
gen_self.h
pcbnew/gen_self.h
+7
-7
globaleditpad.cpp
pcbnew/globaleditpad.cpp
+2
-2
lay2plot.cpp
pcbnew/lay2plot.cpp
+9
-9
loadcmp.cpp
pcbnew/loadcmp.cpp
+2
-2
mirepcb.cpp
pcbnew/mirepcb.cpp
+10
-10
modules.cpp
pcbnew/modules.cpp
+26
-26
move-drag_pads.cpp
pcbnew/move-drag_pads.cpp
+14
-13
muonde.cpp
pcbnew/muonde.cpp
+9
-9
pcbtexte.cpp
pcbnew/pcbtexte.cpp
+11
-11
solve.cpp
pcbnew/solve.cpp
+4
-4
surbrill.cpp
pcbnew/surbrill.cpp
+2
-6
tracemod.cpp
pcbnew/tracemod.cpp
+2
-2
tracepcb.cpp
pcbnew/tracepcb.cpp
+46
-51
undelete.cpp
pcbnew/undelete.cpp
+1
-1
xchgmod.cpp
pcbnew/xchgmod.cpp
+4
-4
zones_by_polygon.cpp
pcbnew/zones_by_polygon.cpp
+13
-13
drawpanel.cpp
share/drawpanel.cpp
+0
-67
todo.txt
todo.txt
+9
-0
No files found.
change_log.txt
View file @
aa93f54d
...
...
@@ -10,6 +10,10 @@ email address.
+all
Tweaked class MsgPanel so that the screen drawing only happens from
its OnPaint() function.
+pcbnew
Added virtual BOARD_ITEM::Draw() and forced all BOARD_ITEM derived classes
to implement it so that all these functions are also virtual.
Made the offset argument default to the new wxPoint BOARD_ITEM::ZeroOffset
2008-Mar-30 UPDATE Jean-Pierre Charras <jean-pierre.charras@inpg.fr>
...
...
cvpcb/setvisu.cpp
View file @
aa93f54d
...
...
@@ -94,7 +94,7 @@ void WinEDA_DisplayFrame::RedrawActiveWindow( wxDC* DC, bool EraseBg )
if
(
Module
)
{
Module
->
Draw
(
DrawPanel
,
DC
,
wxPoint
(
0
,
0
),
GR_COPY
);
Module
->
Draw
(
DrawPanel
,
DC
,
GR_COPY
);
Module
->
Display_Infos
(
this
);
}
...
...
include/base_struct.h
View file @
aa93f54d
...
...
@@ -574,6 +574,11 @@ public:
}
/**
* A value of wxPoint(0,0) which can be passed to the Draw() functions.
*/
static
wxPoint
ZeroOffset
;
BOARD_ITEM
*
Next
()
const
{
return
(
BOARD_ITEM
*
)
Pnext
;
}
BOARD_ITEM
*
Back
()
const
{
return
(
BOARD_ITEM
*
)
Pback
;
}
BOARD_ITEM
*
GetParent
()
const
{
return
(
BOARD_ITEM
*
)
m_Parent
;
}
...
...
@@ -600,6 +605,18 @@ public:
void
SetLayer
(
int
aLayer
)
{
m_Layer
=
aLayer
;
}
/**
* Function Draw
* overrides Draw() from EDA_BaseStruct in order to make it virtual
* without the default color argument, which is more appropriate for
* BOARD_ITEMs which have their own color information.
*/
virtual
void
Draw
(
WinEDA_DrawPanel
*
panel
,
wxDC
*
DC
,
int
aDrawMode
,
const
wxPoint
&
offset
=
ZeroOffset
)
{
}
/**
* Function IsOnLayer
* tests to see if this object is on the given layer. Is virtual so
...
...
pcbnew/automove.cpp
View file @
aa93f54d
...
...
@@ -287,7 +287,7 @@ void WinEDA_PcbFrame::AutoMoveModulesOnPcb( wxDC* DC, bool PlaceModulesHorsPcb )
PutOnGrid
(
&
m_CurrentScreen
->
m_Curseur
);
Module
->
Draw
(
DrawPanel
,
DC
,
wxPoint
(
0
,
0
),
GR_XOR
);
Module
->
Draw
(
DrawPanel
,
DC
,
GR_XOR
);
Place_Module
(
Module
,
DC
);
/* positionne Module et recalcule cadre */
current
.
x
+=
Module
->
m_RealBoundaryBox
.
GetWidth
()
+
pas_grille
;
...
...
@@ -309,7 +309,7 @@ void WinEDA_PcbFrame::FixeModule( MODULE* Module, bool Fixe )
if
(
Module
)
/* Traitement du module */
{
Module
->
SetLocked
(
Fixe
);
Module
->
Display_Infos
(
this
);
GetScreen
()
->
SetModify
();
}
...
...
@@ -354,9 +354,9 @@ void WinEDA_PcbFrame::ReOrientModules( const wxString& ModuleMask,
if
(
WildCompareString
(
ModuleMask
,
Module
->
m_Reference
->
m_Text
,
FALSE
)
)
{
m_CurrentScreen
->
SetModify
();
Module
->
Draw
(
DrawPanel
,
DC
,
wxPoint
(
0
,
0
),
GR_XOR
);
Module
->
Draw
(
DrawPanel
,
DC
,
GR_XOR
);
Rotate_Module
(
NULL
,
Module
,
Orient
,
FALSE
);
Module
->
Draw
(
DrawPanel
,
DC
,
wxPoint
(
0
,
0
),
GR_OR
);
Module
->
Draw
(
DrawPanel
,
DC
,
GR_OR
);
}
}
}
...
...
pcbnew/autoplac.cpp
View file @
aa93f54d
...
...
@@ -182,7 +182,7 @@ void WinEDA_PcbFrame::AutoPlaceModule( MODULE* Module, int place_mode, wxDC* DC
if
(
Module
->
m_ModuleStatus
&
MODULE_to_PLACE
)
// Erase from screen
{
NbModules
++
;
Module
->
Draw
(
DrawPanel
,
DC
,
wxPoint
(
0
,
0
),
GR_XOR
);
Module
->
Draw
(
DrawPanel
,
DC
,
GR_XOR
);
}
else
{
...
...
@@ -379,13 +379,13 @@ int WinEDA_PcbFrame::GenPlaceBoard()
* et initialise les cellules du board a
* - HOLE pour les cellules occupees par un segment EDGE
* - CELL_is_ZONE pour les cellules internes au contour EDGE (s'il est ferme)
*
*
* la surface de placement (board) donne les cellules internes au contour
* du pcb, et parmi celle-ci les cellules libres et les cellules deja occupees
*
*
* le bitmap des penalites donnent les cellules occupes par les modules,
* augmentes d'une surface de penalite liee au nombre de pads du module
*
*
* le bitmap des penalites est mis a 0
* l'occupation des cellules est laisse a 0
*/
...
...
@@ -720,7 +720,7 @@ int TstRectangle( BOARD* Pcb, int ux0, int uy0, int ux1, int uy1, int side )
/* tst si la surface rectangulaire (ux,y0 .. ux,y1):
* - est sur une zone libre ( retourne OCCUPED_By_MODULE sinon)
* - est sur la surface utile du board ( retourne OUT_OF_BOARD sinon)
*
*
* retourne 0 si OK
*/
{
...
...
@@ -873,7 +873,7 @@ float WinEDA_PcbFrame::Compute_Ratsnest_PlaceModule( wxDC* DC )
return
-
1
;
pt_local_chevelu
=
local_liste_chevelu
;
ii
=
nb_local_chevelu
;
ii
=
nb_local_chevelu
;
cout
=
0
;
while
(
ii
--
>
0
)
...
...
@@ -892,18 +892,18 @@ float WinEDA_PcbFrame::Compute_Ratsnest_PlaceModule( wxDC* DC )
}
/* Evaluation du cout du chevelu: */
dx
=
fx
-
ox
;
dx
=
fx
-
ox
;
dy
=
fy
-
oy
;
dx
=
abs
(
dx
);
dx
=
abs
(
dx
);
dy
=
abs
(
dy
);
if
(
dx
<
dy
)
EXCHG
(
dx
,
dy
);
/* dx >= dy */
/* cout de la distance: */
icout
=
(
float
)
dx
*
dx
;
/* cout de l'inclinaison */
icout
+=
3
*
(
float
)
dy
*
dy
;
icout
=
sqrt
(
icout
);
...
...
@@ -926,10 +926,10 @@ void Build_PlacedPads_List( BOARD* Pcb )
* des caract utiles des pads du PCB pour Placement Automatique )
* Cette liste est restreinte a la liste des pads des modules deja places sur
* la carte.
*
*
* parametres:
* adresse du buffer de classement = Pcb->ptr_pads;
*
*
* Variables globales mise a jour:
* pointeur ptr_pads (adr de classement de la liste des pads)
* nb_pads = nombre utile de pastilles classes
...
...
pcbnew/block.cpp
View file @
aa93f54d
This diff is collapsed.
Click to expand it.
pcbnew/block_module_editor.cpp
View file @
aa93f54d
...
...
@@ -293,7 +293,7 @@ static void DrawMovingBlockOutlines( WinEDA_DrawPanel* panel, wxDC* DC,
{
DrawBlockStruct
*
PtBlock
;
BASE_SCREEN
*
screen
=
panel
->
m_Parent
->
GetScreen
();
EDA_BaseStruct
*
item
;
BOARD_ITEM
*
item
;
wxPoint
move_offset
;
MODULE
*
Currentmodule
=
g_EDA_Appl
->
m_ModuleEditFrame
->
m_Pcb
->
m_Modules
;
...
...
@@ -320,11 +320,8 @@ static void DrawMovingBlockOutlines( WinEDA_DrawPanel* panel, wxDC* DC,
switch
(
item
->
Type
()
)
{
case
TYPETEXTEMODULE
:
(
(
TEXTE_MODULE
*
)
item
)
->
Draw
(
panel
,
DC
,
move_offset
,
g_XorMode
);
break
;
case
TYPEEDGEMODULE
:
(
(
EDGE_MODULE
*
)
item
)
->
Draw
(
panel
,
DC
,
move_offset
,
g_XorMode
);
item
->
Draw
(
panel
,
DC
,
g_XorMode
,
move_offset
);
break
;
default
:
...
...
@@ -337,7 +334,7 @@ static void DrawMovingBlockOutlines( WinEDA_DrawPanel* panel, wxDC* DC,
{
if
(
pad
->
m_Selected
==
0
)
continue
;
pad
->
Draw
(
panel
,
DC
,
move_offset
,
g_XorMode
);
pad
->
Draw
(
panel
,
DC
,
g_XorMode
,
move_offset
);
}
}
}
...
...
@@ -365,11 +362,8 @@ static void DrawMovingBlockOutlines( WinEDA_DrawPanel* panel, wxDC* DC,
switch
(
item
->
Type
()
)
{
case
TYPETEXTEMODULE
:
(
(
TEXTE_MODULE
*
)
item
)
->
Draw
(
panel
,
DC
,
move_offset
,
g_XorMode
);
break
;
case
TYPEEDGEMODULE
:
(
(
EDGE_MODULE
*
)
item
)
->
Draw
(
panel
,
DC
,
move_offset
,
g_XorMode
);
item
->
Draw
(
panel
,
DC
,
g_XorMode
,
move_offset
);
break
;
default
:
...
...
@@ -382,7 +376,7 @@ static void DrawMovingBlockOutlines( WinEDA_DrawPanel* panel, wxDC* DC,
{
if
(
pad
->
m_Selected
==
0
)
continue
;
pad
->
Draw
(
panel
,
DC
,
move_offset
,
g_XorMode
);
pad
->
Draw
(
panel
,
DC
,
g_XorMode
,
move_offset
);
}
}
}
...
...
@@ -495,13 +489,13 @@ void MoveMarkedItems( MODULE* module, wxPoint offset )
case
TYPEEDGEMODULE
:
(
(
EDGE_MODULE
*
)
item
)
->
m_Start
.
x
+=
offset
.
x
;
(
(
EDGE_MODULE
*
)
item
)
->
m_Start
.
y
+=
offset
.
y
;
(
(
EDGE_MODULE
*
)
item
)
->
m_End
.
x
+=
offset
.
x
;
(
(
EDGE_MODULE
*
)
item
)
->
m_End
.
y
+=
offset
.
y
;
(
(
EDGE_MODULE
*
)
item
)
->
m_Start0
.
x
+=
offset
.
x
;
(
(
EDGE_MODULE
*
)
item
)
->
m_Start0
.
y
+=
offset
.
y
;
(
(
EDGE_MODULE
*
)
item
)
->
m_End0
.
x
+=
offset
.
x
;
(
(
EDGE_MODULE
*
)
item
)
->
m_End0
.
y
+=
offset
.
y
;
break
;
...
...
@@ -596,7 +590,7 @@ void MirrorMarkedItems( MODULE* module, wxPoint offset )
SETMIRROR
(
(
(
TEXTE_MODULE
*
)
item
)
->
GetPosition
().
x
);
(
(
TEXTE_MODULE
*
)
item
)
->
m_Pos0
.
x
=
(
(
TEXTE_MODULE
*
)
item
)
->
GetPosition
().
x
;
break
;
default
:
;
}
...
...
@@ -650,7 +644,7 @@ void RotateMarkedItems( MODULE* module, wxPoint offset )
(
(
TEXTE_MODULE
*
)
item
)
->
m_Pos0
=
(
(
TEXTE_MODULE
*
)
item
)
->
GetPosition
();
(
(
TEXTE_MODULE
*
)
item
)
->
m_Orient
+=
900
;
break
;
default
:
;
}
...
...
pcbnew/class_board.cpp
View file @
aa93f54d
...
...
@@ -7,6 +7,12 @@
#include "pcbnew.h"
/* This is an odd place for this, but cvpcb won't link if it is
in class_board_item.cpp like I first tried it.
*/
wxPoint
BOARD_ITEM
::
ZeroOffset
(
0
,
0
);
/*****************/
/* Class BOARD: */
/*****************/
...
...
@@ -1037,7 +1043,7 @@ void BOARD::RedrawAreasOutlines(WinEDA_DrawPanel* panel, wxDC * aDC, int aDrawMo
{
ZONE_CONTAINER
*
edge_zone
=
GetArea
(
ii
);
if
(
(
aLayer
<
0
)
||
(
aLayer
==
edge_zone
->
GetLayer
())
)
edge_zone
->
Draw
(
panel
,
aDC
,
wxPoint
(
0
,
0
),
aDrawMode
);
edge_zone
->
Draw
(
panel
,
aDC
,
aDrawMode
);
}
}
...
...
pcbnew/class_board_item.cpp
View file @
aa93f54d
...
...
@@ -16,6 +16,7 @@
#include "Add_Mires.xpm"
/********************************************************/
wxString
BOARD_ITEM
::
MenuText
(
const
BOARD
*
aPcb
)
const
/********************************************************/
...
...
pcbnew/class_cotation.cpp
View file @
aa93f54d
This diff is collapsed.
Click to expand it.
pcbnew/class_cotation.h
View file @
aa93f54d
...
...
@@ -32,8 +32,8 @@ public:
{
return
m_Pos
;
}
bool
ReadCotationDescr
(
FILE
*
File
,
int
*
LineNum
);
/**
...
...
@@ -41,9 +41,9 @@ public:
* writes the data structures for this object out to a FILE in "*.brd" format.
* @param aFile The FILE to write to.
* @return bool - true if success writing else false.
*/
*/
bool
Save
(
FILE
*
aFile
)
const
;
/* supprime du chainage la structure Struct */
void
UnLink
();
...
...
@@ -53,29 +53,30 @@ public:
void
Copy
(
COTATION
*
source
);
void
Draw
(
WinEDA_DrawPanel
*
panel
,
wxDC
*
DC
,
const
wxPoint
&
offset
,
int
mode_color
);
/**
* Function Move
* @param offset : moving vector
*/
void
Move
(
const
wxPoint
&
offset
);
/**
* Function Rotate
* @param offset : Rotation point
* @param angle : Rotation angle in 0.1 degrees
*/
void
Rotate
(
const
wxPoint
&
centre
,
int
angle
);
/**
* Function Mirror
* Mirror the Dimension , relative to a given horizontal axis
* the text is not mirrored. only its position (and angle) is mirrored
* the layer is not changed
* @param axis_pos : vertical axis position
*/
void
Mirror
(
const
wxPoint
&
axis_pos
);
void
Draw
(
WinEDA_DrawPanel
*
panel
,
wxDC
*
DC
,
int
aColorMode
,
const
wxPoint
&
offset
=
ZeroOffset
);
/**
* Function Move
* @param offset : moving vector
*/
void
Move
(
const
wxPoint
&
offset
);
/**
* Function Rotate
* @param offset : Rotation point
* @param angle : Rotation angle in 0.1 degrees
*/
void
Rotate
(
const
wxPoint
&
centre
,
int
angle
);
/**
* Function Mirror
* Mirror the Dimension , relative to a given horizontal axis
* the text is not mirrored. only its position (and angle) is mirrored
* the layer is not changed
* @param axis_pos : vertical axis position
*/
void
Mirror
(
const
wxPoint
&
axis_pos
);
/**
* Function Display_Infos
...
...
@@ -83,9 +84,9 @@ public:
* about this object into the frame's message panel.
* Is virtual from EDA_BaseStruct.
* @param frame A WinEDA_DrawFrame in which to print status information.
*/
*/
void
Display_Infos
(
WinEDA_DrawFrame
*
frame
);
/**
* Function HitTest
* tests if the given wxPoint is within the bounds of this object.
...
...
@@ -93,17 +94,17 @@ public:
* @return bool - true if a hit, else false
*/
bool
HitTest
(
const
wxPoint
&
ref_pos
);
/**
* Function HitTest (overlayed)
* tests if the given EDA_Rect intersect this object.
* For now, the anchor must be inside this rect.
* For now, the anchor must be inside this rect.
* @param refArea : the given EDA_Rect
* @return bool - true if a hit, else false
*/
bool
HitTest
(
EDA_Rect
&
refArea
);
/**
* Function GetClass
* returns the class name.
...
...
pcbnew/class_edge_mod.cpp
View file @
aa93f54d
...
...
@@ -127,7 +127,7 @@ void EDGE_MODULE::SetDrawCoord()
/********************************************************************************/
void
EDGE_MODULE
::
Draw
(
WinEDA_DrawPanel
*
panel
,
wxDC
*
DC
,
const
wxPoint
&
offset
,
int
draw_mode
)
int
draw_mode
,
const
wxPoint
&
offset
)
/********************************************************************************/
/* Affichage d'un segment contour de module :
...
...
pcbnew/class_edge_mod.h
View file @
aa93f54d
...
...
@@ -60,10 +60,10 @@ public:
void
SetDrawCoord
();
/* drawing functions */
void
Draw
(
WinEDA_DrawPanel
*
panel
,
wxDC
*
DC
,
const
wxPoint
&
offset
,
int
draw_mode
);
void
Draw3D
(
Pcb3D_GLCanvas
*
glcanvas
);
void
Draw
(
WinEDA_DrawPanel
*
panel
,
wxDC
*
DC
,
int
aDrawMode
,
const
wxPoint
&
offset
=
ZeroOffset
);
void
Draw3D
(
Pcb3D_GLCanvas
*
glcanvas
);
/**
* Function Display_Infos
...
...
pcbnew/class_marker.cpp
View file @
aa93f54d
...
...
@@ -182,7 +182,7 @@ bool MARKER::HitTest( const wxPoint& refPos )
/**********************************************************************/
void
MARKER
::
Draw
(
WinEDA_DrawPanel
*
panel
,
wxDC
*
DC
,
int
DrawMode
)
void
MARKER
::
Draw
(
WinEDA_DrawPanel
*
panel
,
wxDC
*
DC
,
int
DrawMode
,
const
wxPoint
&
offset
)
/**********************************************************************/
/*
...
...
pcbnew/class_marker.h
View file @
aa93f54d
...
...
@@ -3,7 +3,7 @@
/***************************************/
#ifndef CLASS_MARKER_H
#define CLASS_MARKER_H
#define CLASS_MARKER_H
#include "base_struct.h"
...
...
@@ -18,9 +18,9 @@ protected:
wxSize
m_Size
;
///< Size of the graphic symbol
DRC_ITEM
m_drc
;
void
init
();
public
:
MARKER
(
BOARD_ITEM
*
StructFather
);
...
...
@@ -34,8 +34,8 @@ public:
* @param bText Text describing the second of the two conflicting objects
* @param bPos The position of the second of two objects
*/
MARKER
(
int
aErrorCode
,
const
wxPoint
&
aMarkerPos
,
const
wxString
&
aText
,
const
wxPoint
&
aPos
,
MARKER
(
int
aErrorCode
,
const
wxPoint
&
aMarkerPos
,
const
wxString
&
aText
,
const
wxPoint
&
aPos
,
const
wxString
&
bText
,
const
wxPoint
&
bPos
);
/**
* Constructor
...
...
@@ -44,14 +44,14 @@ public:
* @param aText Text describing the object
* @param aPos The position of the object
*/
MARKER
(
int
aErrorCode
,
const
wxPoint
&
aMarkerPos
,
MARKER
(
int
aErrorCode
,
const
wxPoint
&
aMarkerPos
,
const
wxString
&
aText
,
const
wxPoint
&
aPos
);
~
MARKER
();
~
MARKER
();
void
UnLink
();
void
Draw
(
WinEDA_DrawPanel
*
panel
,
wxDC
*
DC
,
int
DrawMode
);
void
Draw
(
WinEDA_DrawPanel
*
panel
,
wxDC
*
DC
,
int
DrawMode
,
const
wxPoint
&
offset
=
ZeroOffset
);
/**
...
...
@@ -63,7 +63,7 @@ public:
return
(
wxPoint
&
)
m_drc
.
GetPosition
();
}
/**
* Function GetPos
* returns the position of this MARKER, const.
...
...
@@ -73,7 +73,7 @@ public:
return
m_drc
.
GetPosition
();
}
/**
* Function SetData
* fills in all the reportable data associated with a MARKER.
...
...
@@ -84,10 +84,10 @@ public:
* @param bText Text describing the second of the two conflicting objects
* @param bPos The position of the second of two objects
*/
void
SetData
(
int
aErrorCode
,
const
wxPoint
&
aMarkerPos
,
const
wxString
&
aText
,
const
wxPoint
&
aPos
,
void
SetData
(
int
aErrorCode
,
const
wxPoint
&
aMarkerPos
,
const
wxString
&
aText
,
const
wxPoint
&
aPos
,
const
wxString
&
bText
,
const
wxPoint
&
bPos
);
/**
* Function SetData
* fills in all the reportable data associated with a MARKER.
...
...
@@ -96,10 +96,10 @@ public:
* @param aText Text describing the object
* @param aPos The position of the object
*/
void
SetData
(
int
aErrorCode
,
const
wxPoint
&
aMarkerPos
,
void
SetData
(
int
aErrorCode
,
const
wxPoint
&
aMarkerPos
,
const
wxString
&
aText
,
const
wxPoint
&
aPos
);
/**
* Function GetReporter
* returns the DRC_ITEM held within this MARKER so that its
...
...
@@ -111,30 +111,30 @@ public:
return
m_drc
;
}
/**
* Function Display_Infos
* has knowledge about the frame and how and where to put status information
* about this object into the frame's message panel.
* @param frame A WinEDA_DrawFrame in which to print status information.
*/
*/
void
Display_Infos
(
WinEDA_DrawFrame
*
frame
);
/**
* Function Save
* writes the data structures for this object out to a FILE in "*.brd" format.
* @param aFile The FILE to write to.
* @return bool - true if success writing else false.
*/
*/
bool
Save
(
FILE
*
aFile
)
const
{
// not implemented, this is here to satisfy BOARD_ITEM::Save()
// "pure" virtual-ness
return
true
;
}
/**
* Function HitTest
* tests if the given wxPoint is within the bounds of this object.
...
...
pcbnew/class_mire.cpp
View file @
aa93f54d
...
...
@@ -101,30 +101,30 @@ bool MIREPCB::Save( FILE* aFile ) const
return
true
;
bool
rc
=
false
;
if
(
fprintf
(
aFile
,
"$MIREPCB
\n
"
)
!=
sizeof
(
"$MIREPCB
\n
"
)
-
1
)
goto
out
;
fprintf
(
aFile
,
"Po %X %d %d %d %d %d %8.8lX
\n
"
,
m_Shape
,
m_Layer
,
m_Pos
.
x
,
m_Pos
.
y
,
m_Size
,
m_Width
,
m_TimeStamp
);
if
(
fprintf
(
aFile
,
"$EndMIREPCB
\n
"
)
!=
sizeof
(
"$EndMIREPCB
\n
"
)
-
1
)
goto
out
;
rc
=
true
;
out
:
out
:
return
rc
;
}
/**********************************************************/
void
MIREPCB
::
Draw
(
WinEDA_DrawPanel
*
panel
,
wxDC
*
DC
,
const
wxPoint
&
offset
,
int
mode_color
)
int
mode_color
,
const
wxPoint
&
offset
)
/**********************************************************/
/* Affichage de 1 mire : 2 segments + 1 cercle
...
...
@@ -226,8 +226,8 @@ bool MIREPCB::HitTest( const wxPoint& refPos )
*/
bool
MIREPCB
::
HitTest
(
EDA_Rect
&
refArea
)
{
if
(
refArea
.
Inside
(
m_Pos
)
)
return
true
;
return
false
;
if
(
refArea
.
Inside
(
m_Pos
)
)
return
true
;
return
false
;
}
pcbnew/class_mire.h
View file @
aa93f54d
...
...
@@ -23,16 +23,16 @@ public:
{
return
m_Pos
;
}
/**
* Function Save
* writes the data structures for this object out to a FILE in "*.brd" format.
* @param aFile The FILE to write to.
* @return bool - true if success writing else false.
*/
*/
bool
Save
(
FILE
*
aFile
)
const
;
bool
ReadMirePcbDescr
(
FILE
*
File
,
int
*
LineNum
);
/* supprime du chainage la structure Struct */
...
...
@@ -40,9 +40,9 @@ public:
void
Copy
(
MIREPCB
*
source
);
void
Draw
(
WinEDA_DrawPanel
*
panel
,
wxDC
*
DC
,
const
wxPoint
&
offset
,
int
mode_color
);
void
Draw
(
WinEDA_DrawPanel
*
panel
,
wxDC
*
DC
,
int
aDrawMode
,
const
wxPoint
&
offset
=
ZeroOffset
);
/**
* Function HitTest
* tests if the given wxPoint is within the bounds of this object.
...
...
@@ -54,7 +54,7 @@ public:
/**
* Function HitTest (overlayed)
* tests if the given EDA_Rect intersect this object.
* For now, the anchor must be inside this rect.
* For now, the anchor must be inside this rect.
* @param refArea : the given EDA_Rect
* @return bool - true if a hit, else false
*/
...
...
pcbnew/class_module.cpp
View file @
aa93f54d
...
...
@@ -262,7 +262,7 @@ void MODULE::UnLink()
/**********************************************************/
void
MODULE
::
Draw
(
WinEDA_DrawPanel
*
panel
,
wxDC
*
DC
,
const
wxPoint
&
offset
,
int
draw_mode
)
int
draw_mode
,
const
wxPoint
&
offset
)
/**********************************************************/
/** Function Draw
...
...
@@ -273,46 +273,38 @@ void MODULE::Draw( WinEDA_DrawPanel* panel, wxDC* DC,
* @param draw_mode = GR_OR, GR_XOR, GR_AND
*/
{
D_PAD
*
pt_pad
;
EDA_BaseStruct
*
PtStruct
;
TEXTE_MODULE
*
PtTexte
;
if
(
(
m_Flags
&
DO_NOT_DRAW
)
)
return
;
/* Draw pads */
pt_pad
=
m_Pads
;
D_PAD
*
pt_pad
=
m_Pads
;
for
(
;
pt_pad
!=
NULL
;
pt_pad
=
(
D_PAD
*
)
pt_pad
->
Pnext
)
{
if
(
pt_pad
->
m_Flags
&
IS_MOVED
)
continue
;
pt_pad
->
Draw
(
panel
,
DC
,
offset
,
draw_mode
);
pt_pad
->
Draw
(
panel
,
DC
,
draw_mode
,
offset
);
}
/
* Draws foootprint anchor */
/
/ Draws foootprint anchor
DrawAncre
(
panel
,
DC
,
offset
,
DIM_ANCRE_MODULE
,
draw_mode
);
/* Draw graphic items */
if
(
!
(
m_Reference
->
m_Flags
&
IS_MOVED
)
)
m_Reference
->
Draw
(
panel
,
DC
,
offset
,
draw_mode
);
m_Reference
->
Draw
(
panel
,
DC
,
draw_mode
,
offset
);
if
(
!
(
m_Value
->
m_Flags
&
IS_MOVED
)
)
m_Value
->
Draw
(
panel
,
DC
,
offset
,
draw_mode
);
m_Value
->
Draw
(
panel
,
DC
,
draw_mode
,
offset
);
PtStruct
=
m_Drawings
;
for
(
;
PtStruct
!=
NULL
;
PtStruct
=
PtStruct
->
Pnext
)
for
(
BOARD_ITEM
*
item
=
m_Drawings
;
item
;
item
=
item
->
Next
()
)
{
if
(
PtStruct
->
m_Flags
&
IS_MOVED
)
if
(
item
->
m_Flags
&
IS_MOVED
)
continue
;
switch
(
PtStruct
->
Type
()
)
switch
(
item
->
Type
()
)
{
case
TYPETEXTEMODULE
:
PtTexte
=
(
TEXTE_MODULE
*
)
PtStruct
;
PtTexte
->
Draw
(
panel
,
DC
,
offset
,
draw_mode
);
break
;
case
TYPEEDGEMODULE
:
(
(
EDGE_MODULE
*
)
PtStruct
)
->
Draw
(
panel
,
DC
,
offset
,
draw_mode
);
item
->
Draw
(
panel
,
DC
,
draw_mode
,
offset
);
break
;
default
:
...
...
@@ -335,16 +327,12 @@ void MODULE::DrawEdgesOnly( WinEDA_DrawPanel* panel, wxDC* DC,
* @param draw_mode = GR_OR, GR_XOR, GR_AND
*/
{
EDA_BaseStruct
*
PtStruct
;
/* Draw graphic items */
PtStruct
=
m_Drawings
;
for
(
;
PtStruct
!=
NULL
;
PtStruct
=
PtStruct
->
Pnext
)
for
(
BOARD_ITEM
*
item
=
m_Drawings
;
item
;
item
=
item
->
Next
()
)
{
switch
(
PtStruct
->
Type
()
)
switch
(
item
->
Type
()
)
{
case
TYPEEDGEMODULE
:
(
(
EDGE_MODULE
*
)
PtStruct
)
->
Draw
(
panel
,
DC
,
offset
,
draw_mode
);
item
->
Draw
(
panel
,
DC
,
draw_mode
,
offset
);
break
;
default
:
...
...
@@ -1082,9 +1070,9 @@ EDA_Rect MODULE::GetBoundingBox()
area
.
Merge
(
text_area
);
}
// Add the Clearence shape size: (shape around the pads when the clearence is shown
// Not optimized, but the draw cost is small (perhaps smaller than optimization)
area
.
Inflate
(
g_DesignSettings
.
m_TrackClearence
,
g_DesignSettings
.
m_TrackClearence
);
// Add the Clearence shape size: (shape around the pads when the clearence is shown
// Not optimized, but the draw cost is small (perhaps smaller than optimization)
area
.
Inflate
(
g_DesignSettings
.
m_TrackClearence
,
g_DesignSettings
.
m_TrackClearence
);
return
area
;
}
...
...
pcbnew/class_module.h
View file @
aa93f54d
...
...
@@ -165,10 +165,10 @@ public:
* @param panel = draw panel, Used to know the clip box
* @param DC = Current Device Context
* @param offset = draw offset (usually wxPoint(0,0)
* @param
draw_m
ode = GR_OR, GR_XOR..
* @param
aDrawM
ode = GR_OR, GR_XOR..
*/
void
Draw
(
WinEDA_DrawPanel
*
panel
,
wxDC
*
DC
,
const
wxPoint
&
offset
,
int
draw_mode
);
void
Draw
(
WinEDA_DrawPanel
*
panel
,
wxDC
*
DC
,
int
aDrawMode
,
const
wxPoint
&
offset
=
ZeroOffset
);
void
Draw3D
(
Pcb3D_GLCanvas
*
glcanvas
);
void
DrawEdgesOnly
(
WinEDA_DrawPanel
*
panel
,
wxDC
*
DC
,
const
wxPoint
&
offset
,
int
draw_mode
);
...
...
pcbnew/class_pad.cpp
View file @
aa93f54d
...
...
@@ -218,7 +218,7 @@ void D_PAD::UnLink()
/*******************************************************************************************/
void
D_PAD
::
Draw
(
WinEDA_DrawPanel
*
panel
,
wxDC
*
DC
,
const
wxPoint
&
offset
,
int
draw_mode
)
void
D_PAD
::
Draw
(
WinEDA_DrawPanel
*
panel
,
wxDC
*
DC
,
int
draw_mode
,
const
wxPoint
&
offset
)
/*******************************************************************************************/
/** Draw a pad:
...
...
pcbnew/class_pad.h
View file @
aa93f54d
...
...
@@ -66,7 +66,7 @@ public:
int
m_physical_connexion
;
// variable used in rastnest computations
// handle block number in track connection
int
m_zone_connexion
;
// variable used in rastnest computations
int
m_zone_connexion
;
// variable used in rastnest computations
// handle block number in zone connection
public
:
...
...
@@ -111,7 +111,9 @@ public:
/* drawing functions */
void
Draw
(
WinEDA_DrawPanel
*
panel
,
wxDC
*
DC
,
const
wxPoint
&
offset
,
int
draw_mode
);
void
Draw
(
WinEDA_DrawPanel
*
panel
,
wxDC
*
DC
,
int
aDrawMode
,
const
wxPoint
&
offset
=
ZeroOffset
);
void
Draw3D
(
Pcb3D_GLCanvas
*
glcanvas
);
// others
...
...
pcbnew/class_pcb_text.cpp
View file @
aa93f54d
...
...
@@ -146,7 +146,7 @@ out:
/**********************************************************************/
void
TEXTE_PCB
::
Draw
(
WinEDA_DrawPanel
*
panel
,
wxDC
*
DC
,
const
wxPoint
&
offset
,
int
DrawMode
)
int
DrawMode
,
const
wxPoint
&
offset
)
/**********************************************************************/
/*
...
...
pcbnew/class_pcb_text.h
View file @
aa93f54d
...
...
@@ -9,50 +9,49 @@
class
TEXTE_PCB
:
public
BOARD_ITEM
,
public
EDA_TextStruct
{
public
:
TEXTE_PCB
(
BOARD_ITEM
*
parent
);
TEXTE_PCB
(
TEXTE_PCB
*
textepcb
);
~
TEXTE_PCB
();
TEXTE_PCB
(
BOARD_ITEM
*
parent
);
TEXTE_PCB
(
TEXTE_PCB
*
textepcb
);
~
TEXTE_PCB
();
/**
* Function GetPosition
* returns the position of this object.
* @return wxPoint& - The position of this object, non-const so it
* @return wxPoint& - The position of this object, non-const so it
* can be changed
*/
wxPoint
&
GetPosition
()
{
return
m_Pos
;
// within EDA_TextStruct
}
/* supprime du chainage la structure Struct */
void
UnLink
();
/* duplicate structure */
void
Copy
(
TEXTE_PCB
*
source
);
void
Draw
(
WinEDA_DrawPanel
*
panel
,
wxDC
*
DC
,
const
wxPoint
&
offset
,
int
DrawMode
);
/* supprime du chainage la structure Struct */
void
UnLink
();
/* duplicate structure */
void
Copy
(
TEXTE_PCB
*
source
);
void
Draw
(
WinEDA_DrawPanel
*
panel
,
wxDC
*
DC
,
int
aDrawMode
,
const
wxPoint
&
offset
=
ZeroOffset
);
// File Operations:
int
ReadTextePcbDescr
(
FILE
*
File
,
int
*
LineNum
);
// File Operations:
int
ReadTextePcbDescr
(
FILE
*
File
,
int
*
LineNum
);
/**
* Function Save
* writes the data structures for this object out to a FILE in "*.brd" format.
* @param aFile The FILE to write to.
* @return bool - true if success writing else false.
*/
*/
bool
Save
(
FILE
*
aFile
)
const
;
/**
* Function Display_Infos
* has knowledge about the frame and how and where to put status information
* about this object into the frame's message panel.
* Is virtual from EDA_BaseStruct.
* @param frame A WinEDA_DrawFrame in which to print status information.
*/
*/
void
Display_Infos
(
WinEDA_DrawFrame
*
frame
);
...
...
@@ -66,19 +65,19 @@ public:
{
return
EDA_TextStruct
::
HitTest
(
refPos
);
}
/**
* Function HitTest (overlayed)
* tests if the given EDA_Rect intersect this object.
* @param refArea the given EDA_Rect to test
* @return bool - true if a hit, else false
*/
/**
* Function HitTest (overlayed)
* tests if the given EDA_Rect intersect this object.
* @param refArea the given EDA_Rect to test
* @return bool - true if a hit, else false
*/
bool
HitTest
(
EDA_Rect
&
refArea
)
{
return
EDA_TextStruct
::
HitTest
(
refArea
);
}
/**
* Function GetClass
* returns the class name.
...
...
@@ -93,13 +92,13 @@ public:
/**
* Function Show
* is used to output the object tree, currently for debugging only.
* @param nestLevel An aid to prettier tree indenting, and is the level
* @param nestLevel An aid to prettier tree indenting, and is the level
* of nesting of this object within the overall tree.
* @param os The ostream& to output to.
*/
virtual
void
Show
(
int
nestLevel
,
std
::
ostream
&
os
);
#endif
};
#endif // #define CLASS_PCB_TEXT_H
pcbnew/class_text_mod.cpp
View file @
aa93f54d
...
...
@@ -106,7 +106,7 @@ void TEXTE_MODULE::Copy( TEXTE_MODULE* source ) // copy structure
m_Type
=
source
->
m_Type
;
// 0: ref,1: val, others = 2..255
m_Orient
=
source
->
m_Orient
;
// orientation in 1/10 deg
m_Pos0
=
source
->
m_Pos0
;
// text coordinates relatives to the footprint ancre, orient 0
// Text coordinate ref point is the text centre
// Text coordinate ref point is the text centre
m_Size
=
source
->
m_Size
;
m_Width
=
source
->
m_Width
;
...
...
@@ -201,23 +201,23 @@ void TEXTE_MODULE:: SetLocalCoord()
*/
EDA_Rect
TEXTE_MODULE
::
GetTextRect
(
void
)
{
EDA_Rect
area
;
EDA_Rect
area
;
int
dx
,
dy
;
dx
=
(
m_Size
.
x
*
GetLength
()
)
/
2
;
dx
=
(
dx
*
10
)
/
9
;
/* letter size = 10/9 */
dx
+=
m_Width
/
2
;
dx
+=
m_Width
/
2
;
dy
=
(
m_Size
.
y
+
m_Width
)
/
2
;
wxPoint
Org
=
m_Pos
;
// This is the position of the centre of the area
Org
.
x
-=
dx
;
Org
.
y
-=
dy
;
area
.
SetOrigin
(
Org
);
area
.
SetHeight
(
2
*
dy
);
area
.
SetWidth
(
2
*
dx
);
area
.
Normalize
();
return
area
;
wxPoint
Org
=
m_Pos
;
// This is the position of the centre of the area
Org
.
x
-=
dx
;
Org
.
y
-=
dy
;
area
.
SetOrigin
(
Org
);
area
.
SetHeight
(
2
*
dy
);
area
.
SetWidth
(
2
*
dx
);
area
.
Normalize
();
return
area
;
}
/**
...
...
@@ -229,11 +229,11 @@ EDA_Rect TEXTE_MODULE::GetTextRect(void)
bool
TEXTE_MODULE
::
HitTest
(
const
wxPoint
&
refPos
)
{
wxPoint
rel_pos
;
EDA_Rect
area
=
GetTextRect
();
EDA_Rect
area
=
GetTextRect
();
/* Rotate refPos to - angle
* to test if refPos is within area (which is relative to an horizontal text)
*/
*/
rel_pos
=
refPos
;
RotatePoint
(
&
rel_pos
,
m_Pos
,
-
GetDrawRotation
()
);
...
...
@@ -249,25 +249,25 @@ bool TEXTE_MODULE::HitTest( const wxPoint& refPos )
*/
EDA_Rect
TEXTE_MODULE
::
GetBoundingBox
()
{
// Calculate area without text fielsd:
EDA_Rect
text_area
;
int
angle
=
GetDrawRotation
();
wxPoint
textstart
,
textend
;
text_area
=
GetTextRect
();
textstart
=
text_area
.
GetOrigin
();
textend
=
text_area
.
GetEnd
();
RotatePoint
(
&
textstart
,
m_Pos
,
angle
);
RotatePoint
(
&
textend
,
m_Pos
,
angle
);
text_area
.
SetOrigin
(
textstart
);
text_area
.
SetEnd
(
textend
);
text_area
.
Normalize
();
return
text_area
;
// Calculate area without text fielsd:
EDA_Rect
text_area
;
int
angle
=
GetDrawRotation
();
wxPoint
textstart
,
textend
;
text_area
=
GetTextRect
();
textstart
=
text_area
.
GetOrigin
();
textend
=
text_area
.
GetEnd
();
RotatePoint
(
&
textstart
,
m_Pos
,
angle
);
RotatePoint
(
&
textend
,
m_Pos
,
angle
);
text_area
.
SetOrigin
(
textstart
);
text_area
.
SetEnd
(
textend
);
text_area
.
Normalize
();
return
text_area
;
}
/******************************************************************************************/
void
TEXTE_MODULE
::
Draw
(
WinEDA_DrawPanel
*
panel
,
wxDC
*
DC
,
wxPoint
offset
,
int
draw_mode
)
void
TEXTE_MODULE
::
Draw
(
WinEDA_DrawPanel
*
panel
,
wxDC
*
DC
,
int
draw_mode
,
const
wxPoint
&
offset
)
/******************************************************************************************/
/** Function Draw
...
...
pcbnew/class_text_mod.h
View file @
aa93f54d
...
...
@@ -19,13 +19,13 @@ public:
wxPoint
m_Pos
;
// Real (physical)coord
int
m_Width
;
wxPoint
m_Pos0
;
// text coordinates relatives to the footprint ancre, orient 0
// Text coordinate ref point is the text centre
// Text coordinate ref point is the text centre
char
m_Unused
;
// unused (reserved for future extensions)
char
m_Miroir
;
// Show normal / mirror
char
m_NoShow
;
// 0: visible 1: invisible (bool)
char
m_Type
;
// 0: ref,1: val, others = 2..255
int
m_Orient
;
// orientation in 1/10 deg relative to the footprint
// Physical orient is m_Orient + m_Parent->m_Orient
// Physical orient is m_Orient + m_Parent->m_Orient
wxSize
m_Size
;
// text size
wxString
m_Text
;
...
...
@@ -44,7 +44,7 @@ public:
return
m_Pos
;
}
/* supprime du chainage la structure Struct */
void
UnLink
();
...
...
@@ -55,11 +55,11 @@ public:
int
GetLength
();
/* text length */
int
Pitch
();
/* retourne le pas entre 2 caracteres */
int
GetDrawRotation
();
// Return text rotation for drawings and plotting
/** Function GetTextRect
* @return an EDA_Rect which gives the position and size of the text area (for the 0 orient text and footprint)
*/
EDA_Rect
GetTextRect
(
void
);
/** Function GetTextRect
* @return an EDA_Rect which gives the position and size of the text area (for the 0 orient text and footprint)
*/
EDA_Rect
GetTextRect
(
void
);
/**
* Function GetBoundingBox
...
...
@@ -67,7 +67,7 @@ public:
*/
EDA_Rect
GetBoundingBox
();
void
SetDrawCoord
();
// mise a jour des coordonn�s absolues de trac�
void
SetDrawCoord
();
// mise a jour des coordonn�s absolues de trac�
// a partir des coord relatives
void
SetLocalCoord
();
// mise a jour des coordonn�s relatives
...
...
@@ -77,26 +77,26 @@ public:
* writes the data structures for this object out to a FILE in "*.brd" format.
* @param aFile The FILE to write to.
* @return bool - true if success writing else false.
*/
*/
bool
Save
(
FILE
*
aFile
)
const
;
int
ReadDescr
(
FILE
*
File
,
int
*
LineNum
=
NULL
);
/* drawing functions */
void
Draw
(
WinEDA_DrawPanel
*
panel
,
wxDC
*
DC
,
wxPoint
offset
,
int
draw_mode
);
void
Draw
(
WinEDA_DrawPanel
*
panel
,
wxDC
*
DC
,
int
aDrawMode
,
const
wxPoint
&
offset
=
ZeroOffset
);
/**
* Function Display_Infos
* has knowledge about the frame and how and where to put status information
* about this object into the frame's message panel.
* Is virtual from EDA_BaseStruct.
* @param frame A WinEDA_DrawFrame in which to print status information.
*/
*/
void
Display_Infos
(
WinEDA_DrawFrame
*
frame
);
/**
* Function HitTest
* tests if the given wxPoint is within the bounds of this object.
...
...
@@ -115,7 +115,7 @@ public:
* @return bool - true if on given layer, else false.
*/
bool
IsOnLayer
(
int
aLayer
)
const
;
/**
* Function IsOnOneOfTheseLayers
* returns true if this object is on one of the given layers. Is virtual so
...
...
@@ -127,9 +127,9 @@ public:
bool IsOnOneOfTheseLayers( int aLayerMask ) const;
*/
/**
* Function GetClass
* returns the class name.
...
...
@@ -144,7 +144,7 @@ public:
/**
* Function Show
* is used to output the object tree, currently for debugging only.
* @param nestLevel An aid to prettier tree indenting, and is the level
* @param nestLevel An aid to prettier tree indenting, and is the level
* of nesting of this object within the overall tree.
* @param os The ostream& to output to.
*/
...
...
pcbnew/class_track.cpp
View file @
aa93f54d
...
...
@@ -626,7 +626,7 @@ bool TRACK::Save( FILE* aFile ) const
/*********************************************************************/
void
TRACK
::
Draw
(
WinEDA_DrawPanel
*
panel
,
wxDC
*
DC
,
int
draw_mode
)
void
TRACK
::
Draw
(
WinEDA_DrawPanel
*
panel
,
wxDC
*
DC
,
int
draw_mode
,
const
wxPoint
&
notUsed
)
/*********************************************************************/
/** Draws the segment.
...
...
pcbnew/class_track.h
View file @
aa93f54d
...
...
@@ -146,7 +146,7 @@ public:
/* Display on screen: */
void
Draw
(
WinEDA_DrawPanel
*
panel
,
wxDC
*
DC
,
int
draw_mode
);
void
Draw
(
WinEDA_DrawPanel
*
panel
,
wxDC
*
DC
,
int
aDrawMode
,
const
wxPoint
&
offset
=
ZeroOffset
);
/* divers */
int
Shape
()
const
{
return
m_Shape
&
0xFF
;
}
...
...
pcbnew/class_zone.cpp
View file @
aa93f54d
...
...
@@ -235,7 +235,7 @@ int ZONE_CONTAINER::ReadDescr( FILE* aFile, int* aLineNum )
/****************************************************************************************************/
void
ZONE_CONTAINER
::
Draw
(
WinEDA_DrawPanel
*
panel
,
wxDC
*
DC
,
const
wxPoint
&
offset
,
int
draw_mode
)
void
ZONE_CONTAINER
::
Draw
(
WinEDA_DrawPanel
*
panel
,
wxDC
*
DC
,
int
draw_mode
,
const
wxPoint
&
offset
)
/****************************************************************************************************/
/** Function Draw
...
...
pcbnew/class_zone.h
View file @
aa93f54d
...
...
@@ -24,7 +24,7 @@ public:
THERMAL_PAD
,
// Use thermal relief for pads
PAD_IN_ZONE
// pads are covered by copper
};
wxString
m_Netname
;
// Net Name
CPolyLine
*
m_Poly
;
// outlines
int
m_CornerSelection
;
// For corner moving, corner index to drag, or -1 if no selection
...
...
@@ -45,7 +45,7 @@ public:
wxPoint
&
GetPosition
()
{
static
wxPoint
pos
;
static
wxPoint
pos
;
return
pos
;
}
...
...
@@ -53,7 +53,7 @@ public:
{
};
/**
/**
* Function copy
* copy usefull data from the source.
* flags and linked list pointers are NOT copied
...
...
@@ -68,17 +68,16 @@ public:
* @param panel = current Draw Panel
* @param DC = current Device Context
* @param offset = Draw offset (usually wxPoint(0,0))
* @param
draw_mode = draw mode: OR, XOR
..
* @param
aDrawMode = GR_OR, GR_XOR, GR_COPY
..
*/
void
Draw
(
WinEDA_DrawPanel
*
panel
,
wxDC
*
DC
,
const
wxPoint
&
offset
,
int
draw_mode
);
void
Draw
(
WinEDA_DrawPanel
*
panel
,
wxDC
*
DC
,
int
aDrawMode
,
const
wxPoint
&
offset
=
ZeroOffset
);
/**
* Function DrawWhileCreateOutline
* Draws the zone outline when ir is created.
* The moving edges are in XOR graphic mode, old segment in draw_mode graphic mode (usually GR_OR)
* The closing edge has its owm shape
* The moving edges are in XOR graphic mode, old segment in draw_mode graphic mode (usually GR_OR)
* The closing edge has its owm shape
* @param panel = current Draw Panel
* @param DC = current Device Context
* @param draw_mode = draw mode: OR, XOR ..
...
...
@@ -168,7 +167,7 @@ public:
* @param mirror_ref = vertical axis position
*/
void
Mirror
(
const
wxPoint
&
mirror_ref
);
/**
* Function GetClass
* returns the class name.
...
...
@@ -178,35 +177,35 @@ public:
{
return
wxT
(
"ZONE_CONTAINER"
);
}
/** Acces to m_Poly parameters
*/
int
GetNumCorners
(
void
)
{
return
m_Poly
->
GetNumCorners
();
}
void
RemoveAllContours
(
void
)
{
m_Poly
->
RemoveAllContours
();
}
wxPoint
GetCornerPosition
(
int
aCornerIndex
)
{
return
wxPoint
(
m_Poly
->
GetX
(
aCornerIndex
),
m_Poly
->
GetY
(
aCornerIndex
));
}
void
SetCornerPosition
(
int
aCornerIndex
,
wxPoint
new_pos
)
{
m_Poly
->
SetX
(
aCornerIndex
,
new_pos
.
x
);
m_Poly
->
SetY
(
aCornerIndex
,
new_pos
.
y
);
}
void
AppendCorner
(
wxPoint
position
)
{
m_Poly
->
AppendCorner
(
position
.
x
,
position
.
y
);
}
/** Acces to m_Poly parameters
*/
int
GetNumCorners
(
void
)
{
return
m_Poly
->
GetNumCorners
();
}
void
RemoveAllContours
(
void
)
{
m_Poly
->
RemoveAllContours
();
}
wxPoint
GetCornerPosition
(
int
aCornerIndex
)
{
return
wxPoint
(
m_Poly
->
GetX
(
aCornerIndex
),
m_Poly
->
GetY
(
aCornerIndex
));
}
void
SetCornerPosition
(
int
aCornerIndex
,
wxPoint
new_pos
)
{
m_Poly
->
SetX
(
aCornerIndex
,
new_pos
.
x
);
m_Poly
->
SetY
(
aCornerIndex
,
new_pos
.
y
);
}
void
AppendCorner
(
wxPoint
position
)
{
m_Poly
->
AppendCorner
(
position
.
x
,
position
.
y
);
}
};
...
...
pcbnew/cotation.cpp
View file @
aa93f54d
...
...
@@ -162,7 +162,7 @@ void WinEDA_CotationPropertiesFrame::OnOkClick( wxCommandEvent& event )
{
if
(
m_DC
)
// Effacement ancien texte
{
CurrentCotation
->
Draw
(
m_Parent
->
DrawPanel
,
m_DC
,
wxPoint
(
0
,
0
),
GR_XOR
);
CurrentCotation
->
Draw
(
m_Parent
->
DrawPanel
,
m_DC
,
GR_XOR
);
}
if
(
m_Name
->
GetValue
()
!=
wxEmptyString
)
...
...
@@ -183,7 +183,7 @@ void WinEDA_CotationPropertiesFrame::OnOkClick( wxCommandEvent& event )
if
(
m_DC
)
// Affichage nouveau texte
{
/* Redessin du Texte */
CurrentCotation
->
Draw
(
m_Parent
->
DrawPanel
,
m_DC
,
wxPoint
(
0
,
0
),
GR_OR
);
CurrentCotation
->
Draw
(
m_Parent
->
DrawPanel
,
m_DC
,
GR_OR
);
}
m_Parent
->
m_CurrentScreen
->
SetModify
();
...
...
@@ -201,12 +201,12 @@ static void Exit_EditCotation( WinEDA_DrawPanel* Panel, wxDC* DC )
{
if
(
Cotation
->
m_Flags
&
IS_NEW
)
{
Cotation
->
Draw
(
Panel
,
DC
,
wxPoint
(
0
,
0
),
GR_XOR
);
Cotation
->
Draw
(
Panel
,
DC
,
GR_XOR
);
Cotation
->
DeleteStructure
();
}
else
{
Cotation
->
Draw
(
Panel
,
DC
,
wxPoint
(
0
,
0
),
GR_OR
);
Cotation
->
Draw
(
Panel
,
DC
,
GR_OR
);
}
}
...
...
@@ -262,7 +262,7 @@ COTATION* WinEDA_PcbFrame::Begin_Cotation( COTATION* Cotation, wxDC* DC )
Ajuste_Details_Cotation
(
Cotation
);
Cotation
->
Draw
(
DrawPanel
,
DC
,
wxPoint
(
0
,
0
),
GR_XOR
);
Cotation
->
Draw
(
DrawPanel
,
DC
,
GR_XOR
);
DrawPanel
->
ManageCurseur
=
Montre_Position_New_Cotation
;
DrawPanel
->
ForceCloseManageCurseur
=
Exit_EditCotation
;
...
...
@@ -276,7 +276,7 @@ COTATION* WinEDA_PcbFrame::Begin_Cotation( COTATION* Cotation, wxDC* DC )
return
Cotation
;
}
Cotation
->
Draw
(
DrawPanel
,
DC
,
wxPoint
(
0
,
0
),
GR_OR
);
Cotation
->
Draw
(
DrawPanel
,
DC
,
GR_OR
);
Cotation
->
m_Flags
=
0
;
/* Insertion de la structure dans le Chainage .Drawings du PCB */
...
...
@@ -309,7 +309,7 @@ static void Montre_Position_New_Cotation( WinEDA_DrawPanel* panel, wxDC* DC, boo
/* efface ancienne position */
if
(
erase
)
{
Cotation
->
Draw
(
panel
,
DC
,
wxPoint
(
0
,
0
),
GR_XOR
);
Cotation
->
Draw
(
panel
,
DC
,
GR_XOR
);
}
Cotation
->
SetLayer
(
screen
->
m_Active_Layer
);
...
...
@@ -345,7 +345,7 @@ static void Montre_Position_New_Cotation( WinEDA_DrawPanel* panel, wxDC* DC, boo
Ajuste_Details_Cotation
(
Cotation
);
}
Cotation
->
Draw
(
panel
,
DC
,
wxPoint
(
0
,
0
),
GR_XOR
);
Cotation
->
Draw
(
panel
,
DC
,
GR_XOR
);
}
...
...
@@ -372,7 +372,7 @@ void WinEDA_PcbFrame::Delete_Cotation( COTATION* Cotation, wxDC* DC )
return
;
if
(
DC
)
Cotation
->
Draw
(
DrawPanel
,
DC
,
wxPoint
(
0
,
0
),
GR_XOR
);
Cotation
->
Draw
(
DrawPanel
,
DC
,
GR_XOR
);
Cotation
->
DeleteStructure
();
m_CurrentScreen
->
SetModify
();
}
...
...
pcbnew/dialog_edit_mod_text.cpp
View file @
aa93f54d
...
...
@@ -425,8 +425,8 @@ void WinEDA_TextModPropertiesFrame::TextModPropertiesAccept( wxCommandEvent& eve
m_Parent
->
SaveCopyInUndoList
(
m_Parent
->
m_Pcb
->
m_Modules
);
if
(
m_DC
)
// Effacement ancien texte
{
m_CurrentTextMod
->
Draw
(
m_Parent
->
DrawPanel
,
m_DC
,
(
m_CurrentTextMod
->
m_Flags
&
IS_MOVED
)
?
MoveVector
:
wxPoint
(
0
,
0
)
,
GR_XOR
);
m_CurrentTextMod
->
Draw
(
m_Parent
->
DrawPanel
,
m_DC
,
GR_XOR
,
(
m_CurrentTextMod
->
m_Flags
&
IS_MOVED
)
?
MoveVector
:
wxPoint
(
0
,
0
)
);
}
m_CurrentTextMod
->
m_Text
=
m_Name
->
GetValue
();
...
...
@@ -465,8 +465,8 @@ void WinEDA_TextModPropertiesFrame::TextModPropertiesAccept( wxCommandEvent& eve
m_CurrentTextMod
->
SetDrawCoord
();
if
(
m_DC
)
// Display new text
{
m_CurrentTextMod
->
Draw
(
m_Parent
->
DrawPanel
,
m_DC
,
(
m_CurrentTextMod
->
m_Flags
&
IS_MOVED
)
?
MoveVector
:
wxPoint
(
0
,
0
)
,
GR_XOR
);
m_CurrentTextMod
->
Draw
(
m_Parent
->
DrawPanel
,
m_DC
,
GR_XOR
,
(
m_CurrentTextMod
->
m_Flags
&
IS_MOVED
)
?
MoveVector
:
wxPoint
(
0
,
0
)
);
}
m_Parent
->
GetScreen
()
->
SetModify
();
(
(
MODULE
*
)
m_CurrentTextMod
->
m_Parent
)
->
m_LastEdit_Time
=
time
(
NULL
);
...
...
pcbnew/dialog_edit_module.cpp
View file @
aa93f54d
...
...
@@ -238,11 +238,11 @@ void WinEDA_ModulePropertiesFrame::BuildPanelModuleProperties( bool FullOptions
PropLeftSizer
->
Add
(
m_LayerCtrl
,
0
,
wxGROW
|
wxALL
,
5
);
bool
select
=
FALSE
;
wxString
orient_list
[
5
]
=
{
_
(
"Normal"
),
wxT
(
"+ 90.0"
),
wxT
(
"- 90.0"
),
wxT
(
"180.0"
),
_
(
"User"
)
};
m_OrientCtrl
=
new
wxRadioBox
(
m_PanelProperties
,
ID_LISTBOX_ORIENT_SELECT
,
_
(
"Orient"
),
wxDefaultPosition
,
wxSize
(
-
1
,
-
1
),
5
,
orient_list
,
1
);
PropLeftSizer
->
Add
(
m_OrientCtrl
,
0
,
wxGROW
|
wxALL
,
5
);
...
...
@@ -588,7 +588,7 @@ void WinEDA_ModulePropertiesFrame::OnOkClick( wxCommandEvent& event )
EndModal
(
1
);
if
(
m_DC
)
m_CurrentModule
->
Draw
(
m_Parent
->
DrawPanel
,
m_DC
,
wxPoint
(
0
,
0
),
GR_OR
);
m_CurrentModule
->
Draw
(
m_Parent
->
DrawPanel
,
m_DC
,
GR_OR
);
if
(
m_DC
)
m_Parent
->
DrawPanel
->
CursorOn
(
m_DC
);
}
...
...
pcbnew/edgemod.cpp
View file @
aa93f54d
...
...
@@ -39,7 +39,7 @@ void WinEDA_ModuleEditFrame::Start_Move_EdgeMod( EDGE_MODULE* Edge, wxDC* DC )
{
if
(
Edge
==
NULL
)
return
;
Edge
->
Draw
(
DrawPanel
,
DC
,
wxPoint
(
0
,
0
),
GR_XOR
);
Edge
->
Draw
(
DrawPanel
,
DC
,
GR_XOR
);
Edge
->
m_Flags
|=
IS_MOVED
;
MoveVector
.
x
=
MoveVector
.
y
=
0
;
CursorInitialPosition
=
GetScreen
()
->
m_Curseur
;
...
...
@@ -70,7 +70,7 @@ void WinEDA_ModuleEditFrame::Place_EdgeMod( EDGE_MODULE* Edge, wxDC* DC )
Edge
->
m_End0
.
x
-=
MoveVector
.
x
;
Edge
->
m_End0
.
y
-=
MoveVector
.
y
;
Edge
->
Draw
(
DrawPanel
,
DC
,
wxPoint
(
0
,
0
),
GR_OR
);
Edge
->
Draw
(
DrawPanel
,
DC
,
GR_OR
);
Edge
->
m_Flags
=
0
;
DrawPanel
->
ManageCurseur
=
NULL
;
DrawPanel
->
ForceCloseManageCurseur
=
NULL
;
...
...
@@ -96,13 +96,13 @@ static void Move_Segment( WinEDA_DrawPanel* panel, wxDC* DC, bool erase )
if
(
erase
)
{
Edge
->
Draw
(
panel
,
DC
,
MoveVector
,
GR_XOR
);
Edge
->
Draw
(
panel
,
DC
,
GR_XOR
,
MoveVector
);
}
MoveVector
.
x
=
-
(
screen
->
m_Curseur
.
x
-
CursorInitialPosition
.
x
);
MoveVector
.
y
=
-
(
screen
->
m_Curseur
.
y
-
CursorInitialPosition
.
y
);
Edge
->
Draw
(
panel
,
DC
,
MoveVector
,
GR_XOR
);
Edge
->
Draw
(
panel
,
DC
,
GR_XOR
,
MoveVector
);
Module
->
Set_Rectangle_Encadrement
();
}
...
...
@@ -125,7 +125,7 @@ static void ShowEdgeModule( WinEDA_DrawPanel* panel, wxDC* DC, bool erase )
// if( erase )
{
Edge
->
Draw
(
panel
,
DC
,
wxPoint
(
0
,
0
),
GR_XOR
);
Edge
->
Draw
(
panel
,
DC
,
GR_XOR
);
}
Edge
->
m_End
=
screen
->
m_Curseur
;
...
...
@@ -136,7 +136,7 @@ static void ShowEdgeModule( WinEDA_DrawPanel* panel, wxDC* DC, bool erase )
RotatePoint
(
(
int
*
)
&
Edge
->
m_End0
.
x
,
(
int
*
)
&
Edge
->
m_End0
.
y
,
-
Module
->
m_Orient
);
Edge
->
Draw
(
panel
,
DC
,
wxPoint
(
0
,
0
),
GR_XOR
);
Edge
->
Draw
(
panel
,
DC
,
GR_XOR
);
Module
->
Set_Rectangle_Encadrement
();
}
...
...
@@ -193,17 +193,17 @@ void WinEDA_ModuleEditFrame::Edit_Edge_Layer( EDGE_MODULE* Edge, wxDC* DC )
new_layer
=
Edge
->
GetLayer
();
/* Ask for the new layer */
/* Ask for the new layer */
new_layer
=
SelectLayer
(
new_layer
,
FIRST_COPPER_LAYER
,
LAST_NO_COPPER_LAYER
);
if
(
new_layer
<
0
)
return
;
if
(
new_layer
>=
FIRST_COPPER_LAYER
&&
new_layer
<=
LAST_COPPER_LAYER
)
/* an edge is put on a copper layer, and it is very dangerous. a confirmation is requested */
{
if
(
!
IsOK
(
this
,
_
(
"The graphic item will be on a copper layer.It is very dangerous. Are you sure"
)
)
)
return
;
}
if
(
new_layer
>=
FIRST_COPPER_LAYER
&&
new_layer
<=
LAST_COPPER_LAYER
)
/* an edge is put on a copper layer, and it is very dangerous. a confirmation is requested */
{
if
(
!
IsOK
(
this
,
_
(
"The graphic item will be on a copper layer.It is very dangerous. Are you sure"
)
)
)
return
;
}
SaveCopyInUndoList
(
Module
);
...
...
@@ -283,7 +283,7 @@ void WinEDA_ModuleEditFrame::Delete_Edge_Module( EDGE_MODULE* Edge, wxDC* DC )
}
MODULE
*
Module
=
(
MODULE
*
)
Edge
->
m_Parent
;
Edge
->
Draw
(
DrawPanel
,
DC
,
wxPoint
(
0
,
0
),
GR_XOR
);
Edge
->
Draw
(
DrawPanel
,
DC
,
GR_XOR
);
/* suppression d'un segment */
Edge
->
DeleteStructure
();
...
...
@@ -306,15 +306,15 @@ static void Exit_EditEdge_Module( WinEDA_DrawPanel* Panel, wxDC* DC )
if
(
Edge
->
m_Flags
&
IS_NEW
)
/* effacement du nouveau contour */
{
MODULE
*
Module
=
(
MODULE
*
)
Edge
->
m_Parent
;
Edge
->
Draw
(
Panel
,
DC
,
MoveVector
,
GR_XOR
);
Edge
->
Draw
(
Panel
,
DC
,
GR_XOR
,
MoveVector
);
Edge
->
DeleteStructure
();
Module
->
Set_Rectangle_Encadrement
();
}
else
{
Edge
->
Draw
(
Panel
,
DC
,
MoveVector
,
GR_XOR
);
Edge
->
Draw
(
Panel
,
DC
,
GR_XOR
,
MoveVector
);
Edge
->
m_Flags
=
0
;
Edge
->
Draw
(
Panel
,
DC
,
wxPoint
(
0
,
0
),
GR_OR
);
Edge
->
Draw
(
Panel
,
DC
,
GR_OR
);
}
}
Panel
->
ManageCurseur
=
NULL
;
...
...
@@ -390,7 +390,7 @@ EDGE_MODULE* WinEDA_ModuleEditFrame::Begin_Edge_Module( EDGE_MODULE* Edge,
if
(
(
Edge
->
m_Start0
.
x
)
!=
(
Edge
->
m_End0
.
x
)
||
(
Edge
->
m_Start0
.
y
)
!=
(
Edge
->
m_End0
.
y
)
)
{
Edge
->
Draw
(
DrawPanel
,
DC
,
wxPoint
(
0
,
0
),
GR_OR
);
Edge
->
Draw
(
DrawPanel
,
DC
,
GR_OR
);
EDGE_MODULE
*
newedge
=
new
EDGE_MODULE
(
Module
);
newedge
->
Copy
(
Edge
);
newedge
->
AddToChain
(
Edge
);
...
...
pcbnew/edit.cpp
View file @
aa93f54d
...
...
@@ -380,8 +380,8 @@ void WinEDA_PcbFrame::Process_Special_Functions( wxCommandEvent& event )
break
;
case
ID_POPUP_PCB_PLACE_MICROVIA
:
if
(
!
((
PCB_SCREEN
*
)
GetScreen
())
->
IsMicroViaAcceptable
()
)
break
;
if
(
!
((
PCB_SCREEN
*
)
GetScreen
())
->
IsMicroViaAcceptable
()
)
break
;
case
ID_POPUP_PCB_PLACE_VIA
:
DrawPanel
->
MouseToCursorSchema
();
...
...
@@ -521,10 +521,10 @@ void WinEDA_PcbFrame::Process_Special_Functions( wxCommandEvent& event )
* and zone_cont->m_CornerSelection+1
* and start move the new corner
*/
zone_cont
->
Draw
(
DrawPanel
,
&
dc
,
wxPoint
(
0
,
0
),
GR_XOR
);
zone_cont
->
Draw
(
DrawPanel
,
&
dc
,
GR_XOR
);
zone_cont
->
m_Poly
->
InsertCorner
(
zone_cont
->
m_CornerSelection
,
pos
.
x
,
pos
.
y
);
zone_cont
->
m_CornerSelection
++
;
zone_cont
->
Draw
(
DrawPanel
,
&
dc
,
wxPoint
(
0
,
0
),
GR_XOR
);
zone_cont
->
Draw
(
DrawPanel
,
&
dc
,
GR_XOR
);
Start_Move_Zone_Corner
(
&
dc
,
zone_cont
,
zone_cont
->
m_CornerSelection
,
true
);
break
;
}
...
...
pcbnew/editedge.cpp
View file @
aa93f54d
...
...
@@ -155,11 +155,6 @@ void WinEDA_PcbFrame::Drawing_SetNewWidth( DRAWSEGMENT* DrawSegm, wxDC* DC )
void
WinEDA_PcbFrame
::
Delete_Drawings_All_Layer
(
DRAWSEGMENT
*
Segment
,
wxDC
*
DC
)
/******************************************************************************/
{
DRAWSEGMENT
*
pt_segm
;
TEXTE_PCB
*
pt_txt
;
BOARD_ITEM
*
PtStruct
;
BOARD_ITEM
*
PtNext
;
COTATION
*
Cotation
;
int
layer
=
Segment
->
GetLayer
();
if
(
layer
<=
LAST_COPPER_LAYER
)
...
...
@@ -178,39 +173,28 @@ void WinEDA_PcbFrame::Delete_Drawings_All_Layer( DRAWSEGMENT* Segment, wxDC* DC
if
(
!
IsOK
(
this
,
msg
)
)
return
;
PtStruct
=
m_Pcb
->
m_Drawings
;
for
(
;
PtStruct
!=
NULL
;
PtStruct
=
PtNext
)
BOARD_ITEM
*
PtNext
;
for
(
BOARD_ITEM
*
item
=
m_Pcb
->
m_Drawings
;
item
;
item
=
PtNext
)
{
GetScreen
()
->
SetModify
();
PtNext
=
PtStruct
->
Next
();
PtNext
=
item
->
Next
();
switch
(
PtStruct
->
Type
()
)
switch
(
item
->
Type
()
)
{
case
TYPEDRAWSEGMENT
:
pt_segm
=
(
DRAWSEGMENT
*
)
PtStruct
;
if
(
pt_segm
->
GetLayer
()
==
layer
)
if
(
item
->
GetLayer
()
==
layer
)
{
Trace_DrawSegmentPcb
(
DrawPanel
,
DC
,
pt_seg
m
,
GR_XOR
);
PtStruct
->
DeleteStructure
();
Trace_DrawSegmentPcb
(
DrawPanel
,
DC
,
(
DRAWSEGMENT
*
)
ite
m
,
GR_XOR
);
item
->
DeleteStructure
();
}
break
;
case
TYPETEXTE
:
pt_txt
=
(
TEXTE_PCB
*
)
PtStruct
;
if
(
pt_txt
->
GetLayer
()
==
layer
)
{
pt_txt
->
Draw
(
DrawPanel
,
DC
,
wxPoint
(
0
,
0
),
GR_XOR
);
PtStruct
->
DeleteStructure
();
}
break
;
case
TYPECOTATION
:
Cotation
=
(
COTATION
*
)
PtStruct
;
if
(
Cotation
->
GetLayer
()
==
layer
)
if
(
item
->
GetLayer
()
==
layer
)
{
Cotation
->
Draw
(
DrawPanel
,
DC
,
wxPoint
(
0
,
0
)
,
GR_XOR
);
PtStruct
->
DeleteStructure
();
item
->
Draw
(
DrawPanel
,
DC
,
GR_XOR
);
item
->
DeleteStructure
();
}
break
;
...
...
pcbnew/editpads.cpp
View file @
aa93f54d
...
...
@@ -356,7 +356,7 @@ void WinEDA_PadPropertiesFrame::PadPropertiesAccept( wxCommandEvent& event )
{
long
PadLayerMask
;
bool
error
=
FALSE
;
bool
RastnestIsChanged
=
false
;
bool
RastnestIsChanged
=
false
;
if
(
m_DC
)
m_Parent
->
DrawPanel
->
CursorOff
(
m_DC
);
...
...
@@ -443,14 +443,14 @@ void WinEDA_PadPropertiesFrame::PadPropertiesAccept( wxCommandEvent& event )
Module
->
m_LastEdit_Time
=
time
(
NULL
);
if
(
m_DC
)
CurrentPad
->
Draw
(
m_Parent
->
DrawPanel
,
m_DC
,
wxPoint
(
0
,
0
),
GR_XOR
);
CurrentPad
->
Draw
(
m_Parent
->
DrawPanel
,
m_DC
,
GR_XOR
);
CurrentPad
->
m_PadShape
=
g_Pad_Master
.
m_PadShape
;
CurrentPad
->
m_Attribut
=
g_Pad_Master
.
m_Attribut
;
if
(
CurrentPad
->
m_Pos
!=
g_Pad_Master
.
m_Pos
)
{
CurrentPad
->
m_Pos
=
g_Pad_Master
.
m_Pos
;
RastnestIsChanged
=
true
;
}
if
(
CurrentPad
->
m_Pos
!=
g_Pad_Master
.
m_Pos
)
{
CurrentPad
->
m_Pos
=
g_Pad_Master
.
m_Pos
;
RastnestIsChanged
=
true
;
}
/* compute the pos 0 value, i.e. pad position for module orient = 0 i.e.
* refer to module origin (module position) */
...
...
@@ -466,29 +466,29 @@ void WinEDA_PadPropertiesFrame::PadPropertiesAccept( wxCommandEvent& event )
CurrentPad
->
m_DrillShape
=
g_Pad_Master
.
m_DrillShape
;
CurrentPad
->
m_Offset
=
g_Pad_Master
.
m_Offset
;
if
(
CurrentPad
->
m_Masque_Layer
!=
g_Pad_Master
.
m_Masque_Layer
)
{
RastnestIsChanged
=
true
;
CurrentPad
->
m_Masque_Layer
=
g_Pad_Master
.
m_Masque_Layer
;
}
{
RastnestIsChanged
=
true
;
CurrentPad
->
m_Masque_Layer
=
g_Pad_Master
.
m_Masque_Layer
;
}
CurrentPad
->
SetPadName
(
g_Current_PadName
);
if
(
CurrentPad
->
m_Netname
!=
Current_PadNetName
)
{
if
(
Current_PadNetName
.
IsEmpty
()
)
CurrentPad
->
SetNet
(
0
);
else
{
const
EQUIPOT
*
net
=
m_Parent
->
m_Pcb
->
FindNet
(
Current_PadNetName
);
if
(
net
)
{
RastnestIsChanged
=
true
;
CurrentPad
->
m_Netname
=
Current_PadNetName
;
CurrentPad
->
SetNet
(
net
->
GetNet
());
}
else
DisplayError
(
this
,
_
(
"Unknown netname, no change"
));
}
}
{
if
(
Current_PadNetName
.
IsEmpty
()
)
CurrentPad
->
SetNet
(
0
);
else
{
const
EQUIPOT
*
net
=
m_Parent
->
m_Pcb
->
FindNet
(
Current_PadNetName
);
if
(
net
)
{
RastnestIsChanged
=
true
;
CurrentPad
->
m_Netname
=
Current_PadNetName
;
CurrentPad
->
SetNet
(
net
->
GetNet
());
}
else
DisplayError
(
this
,
_
(
"Unknown netname, no change"
));
}
}
switch
(
CurrentPad
->
m_PadShape
)
{
...
...
@@ -530,7 +530,7 @@ void WinEDA_PadPropertiesFrame::PadPropertiesAccept( wxCommandEvent& event )
Module
->
Set_Rectangle_Encadrement
();
CurrentPad
->
Display_Infos
(
m_Parent
);
if
(
m_DC
)
CurrentPad
->
Draw
(
m_Parent
->
DrawPanel
,
m_DC
,
wxPoint
(
0
,
0
),
GR_OR
);
CurrentPad
->
Draw
(
m_Parent
->
DrawPanel
,
m_DC
,
GR_OR
);
m_Parent
->
GetScreen
()
->
SetModify
();
}
...
...
@@ -538,8 +538,8 @@ void WinEDA_PadPropertiesFrame::PadPropertiesAccept( wxCommandEvent& event )
if
(
m_DC
)
m_Parent
->
DrawPanel
->
CursorOn
(
m_DC
);
if
(
RastnestIsChanged
)
// The net ratsnest must be recalculated
if
(
RastnestIsChanged
)
// The net ratsnest must be recalculated
m_Parent
->
m_Pcb
->
m_Status_Pcb
=
0
;
}
pcbnew/editrack-part2.cpp
View file @
aa93f54d
...
...
@@ -124,7 +124,7 @@ void WinEDA_PcbFrame::ExChange_Track_Layer( TRACK* pt_segm, wxDC* DC )
pt_segm
->
SetLayer
(
l1
);
if
(
Drc_On
&&
BAD_DRC
==
m_drc
->
Drc
(
pt_segm
,
m_Pcb
->
m_Track
)
)
{
{
/* Annulation du changement */
ii
=
0
;
pt_segm
=
pt_track
;
for
(
;
ii
<
nb_segm
;
ii
++
,
pt_segm
=
(
TRACK
*
)
pt_segm
->
Pnext
)
...
...
@@ -177,7 +177,7 @@ bool WinEDA_PcbFrame::Other_Layer_Route( TRACK* track, wxDC* DC )
/* Avoid more than one via on the current location: */
if
(
Locate_Via
(
m_Pcb
,
g_CurrentTrackSegment
->
m_End
,
g_CurrentTrackSegment
->
GetLayer
()
)
)
return
false
;
pt_segm
=
g_FirstTrackSegment
;
for
(
ii
=
0
;
ii
<
g_TrackSegmentCount
-
1
;
ii
++
,
pt_segm
=
(
TRACK
*
)
pt_segm
->
Pnext
)
{
...
...
@@ -192,7 +192,7 @@ bool WinEDA_PcbFrame::Other_Layer_Route( TRACK* track, wxDC* DC )
if
(
BAD_DRC
==
m_drc
->
Drc
(
g_CurrentTrackSegment
,
m_Pcb
->
m_Track
)
)
/* DRC error, the change layer is not made */
return
false
;
if
(
g_TwoSegmentTrackBuild
&&
g_CurrentTrackSegment
->
Back
()
)
// We must handle 2 segments
{
if
(
BAD_DRC
==
m_drc
->
Drc
(
g_CurrentTrackSegment
->
Back
(),
m_Pcb
->
m_Track
)
)
...
...
@@ -224,29 +224,29 @@ bool WinEDA_PcbFrame::Other_Layer_Route( TRACK* track, wxDC* DC )
/* Adjust the via layer pair */
switch
(
Via
->
Shape
()
)
{
case
VIA_BLIND_BURIED
:
Via
->
SetLayerPair
(
old_layer
,
((
PCB_SCREEN
*
)
GetScreen
())
->
m_Active_Layer
);
break
;
case
VIA_MICROVIA
:
// from external to the near neghbour inner layer
if
(
old_layer
==
COPPER_LAYER_N
)
((
PCB_SCREEN
*
)
GetScreen
())
->
m_Active_Layer
=
LAYER_N_2
;
else
if
(
old_layer
==
LAYER_CMP_N
)
((
PCB_SCREEN
*
)
GetScreen
())
->
m_Active_Layer
=
m_Pcb
->
m_BoardSettings
->
m_CopperLayerCount
-
2
;
else
if
(
old_layer
==
LAYER_N_2
)
((
PCB_SCREEN
*
)
GetScreen
())
->
m_Active_Layer
=
COPPER_LAYER_N
;
else
if
(
old_layer
==
m_Pcb
->
m_BoardSettings
->
m_CopperLayerCount
-
2
)
((
PCB_SCREEN
*
)
GetScreen
())
->
m_Active_Layer
=
LAYER_CMP_N
;
// else error
Via
->
SetLayerPair
(
old_layer
,
((
PCB_SCREEN
*
)
GetScreen
())
->
m_Active_Layer
);
Via
->
m_Width
=
g_DesignSettings
.
m_CurrentMicroViaSize
;
break
;
default
:
// Usual via is from copper to component; layer pair is 0 and 0x0F.
Via
->
SetLayerPair
(
COPPER_LAYER_N
,
LAYER_CMP_N
);
break
;
{
case
VIA_BLIND_BURIED
:
Via
->
SetLayerPair
(
old_layer
,
((
PCB_SCREEN
*
)
GetScreen
())
->
m_Active_Layer
);
break
;
case
VIA_MICROVIA
:
// from external to the near neghbour inner layer
if
(
old_layer
==
COPPER_LAYER_N
)
((
PCB_SCREEN
*
)
GetScreen
())
->
m_Active_Layer
=
LAYER_N_2
;
else
if
(
old_layer
==
LAYER_CMP_N
)
((
PCB_SCREEN
*
)
GetScreen
())
->
m_Active_Layer
=
m_Pcb
->
m_BoardSettings
->
m_CopperLayerCount
-
2
;
else
if
(
old_layer
==
LAYER_N_2
)
((
PCB_SCREEN
*
)
GetScreen
())
->
m_Active_Layer
=
COPPER_LAYER_N
;
else
if
(
old_layer
==
m_Pcb
->
m_BoardSettings
->
m_CopperLayerCount
-
2
)
((
PCB_SCREEN
*
)
GetScreen
())
->
m_Active_Layer
=
LAYER_CMP_N
;
// else error
Via
->
SetLayerPair
(
old_layer
,
((
PCB_SCREEN
*
)
GetScreen
())
->
m_Active_Layer
);
Via
->
m_Width
=
g_DesignSettings
.
m_CurrentMicroViaSize
;
break
;
default
:
// Usual via is from copper to component; layer pair is 0 and 0x0F.
Via
->
SetLayerPair
(
COPPER_LAYER_N
,
LAYER_CMP_N
);
break
;
}
if
(
Drc_On
&&
BAD_DRC
==
m_drc
->
Drc
(
Via
,
m_Pcb
->
m_Track
)
)
...
...
@@ -255,10 +255,10 @@ bool WinEDA_PcbFrame::Other_Layer_Route( TRACK* track, wxDC* DC )
delete
Via
;
((
PCB_SCREEN
*
)
GetScreen
())
->
m_Active_Layer
=
old_layer
;
DrawPanel
->
ManageCurseur
(
DrawPanel
,
DC
,
FALSE
);
// delete the track(s) added in Begin_Route()
// delete the track(s) added in Begin_Route()
while
(
g_TrackSegmentCount
>
itmp
)
{
Delete_Segment
(
DC
,
g_CurrentTrackSegment
);
...
...
@@ -266,9 +266,9 @@ bool WinEDA_PcbFrame::Other_Layer_Route( TRACK* track, wxDC* DC )
// use the form of SetCurItem() which does not write to the msg panel,
// SCREEN::SetCurItem(), so the DRC error remains on screen.
// WinEDA_PcbFrame::SetCurItem() calls Display_Infos().
// WinEDA_PcbFrame::SetCurItem() calls Display_Infos().
GetScreen
()
->
SetCurItem
(
g_CurrentTrackSegment
);
return
false
;
}
...
...
@@ -316,7 +316,7 @@ bool WinEDA_PcbFrame::Other_Layer_Route( TRACK* track, wxDC* DC )
Affiche_Status_Box
();
SetToolbars
();
return
true
;
}
...
...
@@ -477,10 +477,10 @@ void WinEDA_PcbFrame::Affiche_PadsNoConnect( wxDC* DC )
pt_pad
=
pt_chevelu
->
pad_start
;
if
(
pt_pad
)
pt_pad
->
Draw
(
DrawPanel
,
DC
,
wxPoint
(
0
,
0
),
GR_OR
|
GR_SURBRILL
);
pt_pad
->
Draw
(
DrawPanel
,
DC
,
GR_OR
|
GR_SURBRILL
);
pt_pad
=
pt_chevelu
->
pad_end
;
if
(
pt_pad
)
pt_pad
->
Draw
(
DrawPanel
,
DC
,
wxPoint
(
0
,
0
),
GR_OR
|
GR_SURBRILL
);
pt_pad
->
Draw
(
DrawPanel
,
DC
,
GR_OR
|
GR_SURBRILL
);
}
}
pcbnew/edtxtmod.cpp
View file @
aa93f54d
...
...
@@ -56,7 +56,7 @@ TEXTE_MODULE* WinEDA_BasePcbFrame::CreateTextModule( MODULE* Module, wxDC* DC )
InstallTextModOptionsFrame
(
Text
,
NULL
,
wxPoint
(
-
1
,
-
1
)
);
Text
->
m_Flags
=
0
;
Text
->
Draw
(
DrawPanel
,
DC
,
wxPoint
(
0
,
0
),
GR_OR
);
Text
->
Draw
(
DrawPanel
,
DC
,
GR_OR
);
Text
->
Display_Infos
(
this
);
...
...
@@ -74,14 +74,14 @@ void WinEDA_BasePcbFrame::RotateTextModule( TEXTE_MODULE* Text, wxDC* DC )
MODULE
*
module
=
(
MODULE
*
)
Text
->
m_Parent
;
Text
->
Draw
(
DrawPanel
,
DC
,
wxPoint
(
0
,
0
),
GR_XOR
);
Text
->
Draw
(
DrawPanel
,
DC
,
GR_XOR
);
Text
->
m_Orient
+=
900
;
while
(
Text
->
m_Orient
>=
1800
)
Text
->
m_Orient
-=
1800
;
/* Redessin du Texte */
Text
->
Draw
(
DrawPanel
,
DC
,
wxPoint
(
0
,
0
),
GR_XOR
);
Text
->
Draw
(
DrawPanel
,
DC
,
GR_XOR
);
Text
->
Display_Infos
(
this
);
...
...
@@ -107,7 +107,7 @@ void WinEDA_BasePcbFrame::DeleteTextModule( TEXTE_MODULE* Text, wxDC* DC )
if
(
Text
->
m_Type
==
TEXT_is_DIVERS
)
{
Text
->
Draw
(
DrawPanel
,
DC
,
wxPoint
(
0
,
0
),
GR_XOR
);
Text
->
Draw
(
DrawPanel
,
DC
,
GR_XOR
);
/* liberation de la memoire : */
Text
->
DeleteStructure
();
...
...
@@ -137,10 +137,10 @@ static void ExitTextModule( WinEDA_DrawPanel* Panel, wxDC* DC )
return
;
Module
=
(
MODULE
*
)
Text
->
m_Parent
;
Text
->
Draw
(
Panel
,
DC
,
MoveVector
,
GR_XOR
);
Text
->
Draw
(
Panel
,
DC
,
GR_XOR
,
MoveVector
);
/* Redessin du Texte */
Text
->
Draw
(
Panel
,
DC
,
wxPoint
(
0
,
0
),
GR_OR
);
Text
->
Draw
(
Panel
,
DC
,
GR_OR
);
Text
->
m_Flags
=
0
;
Module
->
m_Flags
=
0
;
...
...
@@ -205,7 +205,7 @@ void WinEDA_BasePcbFrame::PlaceTexteModule( TEXTE_MODULE* Text, wxDC* DC )
GetScreen
()
->
SetModify
();
/* Redessin du Texte */
Text
->
Draw
(
DrawPanel
,
DC
,
wxPoint
(
0
,
0
),
GR_OR
);
Text
->
Draw
(
DrawPanel
,
DC
,
GR_OR
);
}
}
...
...
@@ -229,11 +229,11 @@ static void Show_MoveTexte_Module( WinEDA_DrawPanel* panel, wxDC* DC, bool erase
/* effacement du texte : */
if
(
erase
)
Text
->
Draw
(
panel
,
DC
,
MoveVector
,
GR_XOR
);
Text
->
Draw
(
panel
,
DC
,
GR_XOR
,
MoveVector
);
MoveVector
.
x
=
-
(
screen
->
m_Curseur
.
x
-
CursorInitialPosition
.
x
);
MoveVector
.
y
=
-
(
screen
->
m_Curseur
.
y
-
CursorInitialPosition
.
y
);
/* Redessin du Texte */
Text
->
Draw
(
panel
,
DC
,
MoveVector
,
GR_XOR
);
Text
->
Draw
(
panel
,
DC
,
GR_XOR
,
MoveVector
);
}
pcbnew/gen_self.h
View file @
aa93f54d
...
...
@@ -136,14 +136,14 @@ MODULE* WinEDA_PcbFrame::Genere_Self( wxDC* DC )
* - Extremites Mself.m_Start et Mself.m_End
* - Contrainte: m_Start.x = m_End.x ( self verticale )
* ou m_Start.y = m_End.y ( self horizontale )
*
*
* On doit determiner:
* Mself.nbrin = nombre de segments perpendiculaires a la direction
* ( le serpention aura nbrin + 1 demicercles + 2 1/4 de cercle)
* Mself.lbrin = longueur d'un brin
* Mself.rayon = rayon des parties arrondies du serpentin
* Mself.delta = segments raccord entre extremites et le serpention lui meme
*
*
* Les equations sont
* Mself.m_Size.x = 2*Mself.rayon + Mself.lbrin
* Mself.m_Size.y = 2*Mself.delta + 2*Mself.nbrin*Mself.rayon
...
...
@@ -151,13 +151,13 @@ MODULE* WinEDA_PcbFrame::Genere_Self( wxDC* DC )
+ (Mself.nbrin-2) * Mself.lbrin //longueur des brins sauf 1er et dernier
+ (Mself.nbrin+1) * ( PI * Mself.rayon) // longueur des arrondis
+ Mself.lbrin/2 - Melf.rayon*2) // longueur du 1er et dernier brin
*
*
* Les contraintes sont:
* nbrin >= 2
* Mself.rayon < Mself.m_Size.x
* Mself.m_Size.y = Mself.rayon*4 + 2*Mself.raccord
* Mself.lbrin > Mself.rayon *2
*
*
* Le calcul est conduit de la facon suivante:
* Initialement:
* nbrin = 2
...
...
@@ -165,7 +165,7 @@ MODULE* WinEDA_PcbFrame::Genere_Self( wxDC* DC )
* puis:
* on augmente le nombre de brins jusqu'a la longueur desiree
* ( le rayon est diminue si necessaire )
*
*
*/
{
EDGE_MODULE
*
PtSegm
,
*
LastSegm
,
*
FirstSegm
,
*
newedge
;
...
...
@@ -285,7 +285,7 @@ MODULE* WinEDA_PcbFrame::Genere_Self( wxDC* DC )
Module
->
m_Attributs
=
MOD_VIRTUAL
|
MOD_CMS
;
Module
->
m_Flags
=
0
;
Module
->
Draw
(
DrawPanel
,
DC
,
wxPoint
(
0
,
0
),
GR_XOR
);
Module
->
Draw
(
DrawPanel
,
DC
,
GR_XOR
);
/* Generation des elements speciaux: drawsegments */
LastSegm
=
(
EDGE_MODULE
*
)
Module
->
m_Drawings
;
...
...
@@ -472,7 +472,7 @@ MODULE* WinEDA_PcbFrame::Genere_Self( wxDC* DC )
Module
->
Set_Rectangle_Encadrement
();
Module
->
Draw
(
DrawPanel
,
DC
,
wxPoint
(
0
,
0
),
GR_OR
);
Module
->
Draw
(
DrawPanel
,
DC
,
GR_OR
);
return
Module
;
}
...
...
pcbnew/globaleditpad.cpp
View file @
aa93f54d
...
...
@@ -266,7 +266,7 @@ void WinEDA_BasePcbFrame::Global_Import_Pad_Settings( D_PAD* Pad, wxDC* DC )
Module
->
Display_Infos
(
this
);
/* Effacement du module */
Module
->
Draw
(
DrawPanel
,
DC
,
wxPoint
(
0
,
0
),
GR_XOR
);
Module
->
Draw
(
DrawPanel
,
DC
,
GR_XOR
);
pt_pad
=
(
D_PAD
*
)
Module
->
m_Pads
;
for
(
;
pt_pad
!=
NULL
;
pt_pad
=
(
D_PAD
*
)
pt_pad
->
Pnext
)
...
...
@@ -345,7 +345,7 @@ void WinEDA_BasePcbFrame::Global_Import_Pad_Settings( D_PAD* Pad, wxDC* DC )
}
Module
->
Set_Rectangle_Encadrement
();
Module
->
Draw
(
DrawPanel
,
DC
,
wxPoint
(
0
,
0
),
GR_OR
);
Module
->
Draw
(
DrawPanel
,
DC
,
GR_OR
);
}
GetScreen
()
->
SetModify
();
...
...
pcbnew/lay2plot.cpp
View file @
aa93f54d
...
...
@@ -69,21 +69,21 @@ void WinEDA_DrawPanel::PrintPage( wxDC* DC, bool Print_Sheet_Ref, int printmaskl
case
TYPECOTATION
:
if
(
(
g_TabOneLayerMask
[
PtStruct
->
GetLayer
()]
&
printmasklayer
)
==
0
)
break
;
(
(
COTATION
*
)
PtStruct
)
->
Draw
(
this
,
DC
,
wxPoint
(
0
,
0
),
drawmode
);
(
(
COTATION
*
)
PtStruct
)
->
Draw
(
this
,
DC
,
drawmode
);
break
;
case
TYPETEXTE
:
{
if
(
(
g_TabOneLayerMask
[
PtStruct
->
GetLayer
()]
&
printmasklayer
)
==
0
)
break
;
(
(
TEXTE_PCB
*
)
PtStruct
)
->
Draw
(
this
,
DC
,
wxPoint
(
0
,
0
),
drawmode
);
(
(
TEXTE_PCB
*
)
PtStruct
)
->
Draw
(
this
,
DC
,
drawmode
);
break
;
}
case
TYPEMIRE
:
if
(
(
g_TabOneLayerMask
[
PtStruct
->
GetLayer
()]
&
printmasklayer
)
==
0
)
break
;
(
(
MIREPCB
*
)
PtStruct
)
->
Draw
(
this
,
DC
,
wxPoint
(
0
,
0
),
drawmode
);
(
(
MIREPCB
*
)
PtStruct
)
->
Draw
(
this
,
DC
,
drawmode
);
break
;
case
TYPEMARKER
:
/* Trace des marqueurs */
...
...
@@ -170,7 +170,7 @@ static void Plot_Module( WinEDA_DrawPanel* panel, wxDC* DC,
{
if
(
(
pt_pad
->
m_Masque_Layer
&
masklayer
)
==
0
)
continue
;
pt_pad
->
Draw
(
panel
,
DC
,
wxPoint
(
0
,
0
),
draw_mode
);
pt_pad
->
Draw
(
panel
,
DC
,
draw_mode
);
}
/* draw footprint graphic shapes */
...
...
@@ -180,7 +180,7 @@ static void Plot_Module( WinEDA_DrawPanel* panel, wxDC* DC,
mlayer
=
SILKSCREEN_LAYER_CU
;
else
if
(
Module
->
GetLayer
()
==
CMP_N
)
mlayer
=
SILKSCREEN_LAYER_CMP
;
if
(
mlayer
&
masklayer
)
{
/* Analyse des autorisations de trace pour les textes VALEUR et REF */
...
...
@@ -192,9 +192,9 @@ static void Plot_Module( WinEDA_DrawPanel* panel, wxDC* DC,
trace_val
=
FALSE
;
if
(
trace_ref
)
Module
->
m_Reference
->
Draw
(
panel
,
DC
,
wxPoint
(
0
,
0
),
draw_mode
);
Module
->
m_Reference
->
Draw
(
panel
,
DC
,
draw_mode
);
if
(
trace_val
)
Module
->
m_Value
->
Draw
(
panel
,
DC
,
wxPoint
(
0
,
0
),
draw_mode
);
Module
->
m_Value
->
Draw
(
panel
,
DC
,
draw_mode
);
}
for
(
;
PtStruct
!=
NULL
;
PtStruct
=
PtStruct
->
Next
()
)
...
...
@@ -206,7 +206,7 @@ static void Plot_Module( WinEDA_DrawPanel* panel, wxDC* DC,
break
;
TextMod
=
(
TEXTE_MODULE
*
)
PtStruct
;
TextMod
->
Draw
(
panel
,
DC
,
wxPoint
(
0
,
0
),
draw_mode
);
TextMod
->
Draw
(
panel
,
DC
,
draw_mode
);
break
;
case
TYPEEDGEMODULE
:
...
...
@@ -214,7 +214,7 @@ static void Plot_Module( WinEDA_DrawPanel* panel, wxDC* DC,
EDGE_MODULE
*
edge
=
(
EDGE_MODULE
*
)
PtStruct
;
if
(
(
g_TabOneLayerMask
[
edge
->
GetLayer
()]
&
masklayer
)
==
0
)
break
;
edge
->
Draw
(
panel
,
DC
,
wxPoint
(
0
,
0
),
draw_mode
);
edge
->
Draw
(
panel
,
DC
,
draw_mode
);
break
;
}
...
...
pcbnew/loadcmp.cpp
View file @
aa93f54d
...
...
@@ -162,7 +162,7 @@ MODULE* WinEDA_BasePcbFrame::Load_Module_From_Library( const wxString& library,
module
->
SetPosition
(
curspos
);
build_liste_pads
();
module
->
Draw
(
DrawPanel
,
DC
,
wxPoint
(
0
,
0
),
GR_OR
);
module
->
Draw
(
DrawPanel
,
DC
,
GR_OR
);
}
return
module
;
...
...
@@ -315,7 +315,7 @@ wxString WinEDA_BasePcbFrame::Select_1_Module_From_List(
* Mask = Filtre d'affichage( Mask = wxEmptyString pour listage non filtr )
* KeyWord = Liste de mots cles, Recherche limitee aux composants
* ayant ces mots cles ( KeyWord = wxEmptyString pour listage de tous les modules )
*
*
* retourne wxEmptyString si abort ou probleme
* ou le nom du module
*/
...
...
pcbnew/mirepcb.cpp
View file @
aa93f54d
...
...
@@ -143,13 +143,13 @@ void WinEDA_MirePropertiesFrame::OnOkClick( wxCommandEvent& event )
/* Met a jour les differents parametres pour le composant en cours d'dition
*/
{
m_MirePcb
->
Draw
(
m_Parent
->
DrawPanel
,
m_DC
,
wxPoint
(
0
,
0
),
GR_XOR
);
m_MirePcb
->
Draw
(
m_Parent
->
DrawPanel
,
m_DC
,
GR_XOR
);
m_MirePcb
->
m_Width
=
m_MireWidthCtrl
->
GetValue
();
MireDefaultSize
=
m_MirePcb
->
m_Size
=
m_MireSizeCtrl
->
GetValue
();
m_MirePcb
->
m_Shape
=
m_MireShape
->
GetSelection
()
?
1
:
0
;
m_MirePcb
->
Draw
(
m_Parent
->
DrawPanel
,
m_DC
,
wxPoint
(
0
,
0
),
GR_OR
);
m_MirePcb
->
Draw
(
m_Parent
->
DrawPanel
,
m_DC
,
GR_OR
);
m_Parent
->
GetScreen
()
->
SetModify
();
EndModal
(
1
);
...
...
@@ -163,8 +163,8 @@ void WinEDA_PcbFrame::Delete_Mire( MIREPCB* MirePcb, wxDC* DC )
if
(
MirePcb
==
NULL
)
return
;
MirePcb
->
Draw
(
DrawPanel
,
DC
,
wxPoint
(
0
,
0
),
GR_XOR
);
MirePcb
->
DeleteStructure
();
MirePcb
->
Draw
(
DrawPanel
,
DC
,
GR_XOR
);
MirePcb
->
DeleteStructure
();
}
...
...
@@ -181,11 +181,11 @@ static void Exit_EditMire( WinEDA_DrawPanel* Panel, wxDC* DC )
if
(
MirePcb
)
{
/* Effacement de la mire */
MirePcb
->
Draw
(
Panel
,
DC
,
wxPoint
(
0
,
0
),
GR_XOR
);
MirePcb
->
Draw
(
Panel
,
DC
,
GR_XOR
);
if
(
MirePcb
->
m_Flags
&
IS_NEW
)
{
MirePcb
->
Draw
(
Panel
,
DC
,
wxPoint
(
0
,
0
),
GR_XOR
);
MirePcb
->
Draw
(
Panel
,
DC
,
GR_XOR
);
MirePcb
->
DeleteStructure
();
MirePcb
=
NULL
;
}
...
...
@@ -193,7 +193,7 @@ static void Exit_EditMire( WinEDA_DrawPanel* Panel, wxDC* DC )
{
MirePcb
->
m_Pos
=
OldPos
;
MirePcb
->
m_Flags
=
0
;
MirePcb
->
Draw
(
Panel
,
DC
,
wxPoint
(
0
,
0
),
GR_OR
);
MirePcb
->
Draw
(
Panel
,
DC
,
GR_OR
);
}
}
}
...
...
@@ -250,7 +250,7 @@ void WinEDA_PcbFrame::Place_Mire( MIREPCB* MirePcb, wxDC* DC )
if
(
MirePcb
==
NULL
)
return
;
MirePcb
->
Draw
(
DrawPanel
,
DC
,
wxPoint
(
0
,
0
),
GR_OR
);
MirePcb
->
Draw
(
DrawPanel
,
DC
,
GR_OR
);
MirePcb
->
m_Flags
=
0
;
DrawPanel
->
ManageCurseur
=
NULL
;
...
...
@@ -273,10 +273,10 @@ static void Montre_Position_Mire( WinEDA_DrawPanel* panel, wxDC* DC, bool erase
/* efface ancienne position */
if
(
erase
)
MirePcb
->
Draw
(
panel
,
DC
,
wxPoint
(
0
,
0
),
GR_XOR
);
MirePcb
->
Draw
(
panel
,
DC
,
GR_XOR
);
MirePcb
->
m_Pos
=
screen
->
m_Curseur
;
// Reaffichage
MirePcb
->
Draw
(
panel
,
DC
,
wxPoint
(
0
,
0
),
GR_XOR
);
MirePcb
->
Draw
(
panel
,
DC
,
GR_XOR
);
}
pcbnew/modules.cpp
View file @
aa93f54d
...
...
@@ -47,7 +47,7 @@ void Show_Pads_On_Off( WinEDA_DrawPanel* panel, wxDC* DC, MODULE* module )
pt_pad
=
module
->
m_Pads
;
for
(
;
pt_pad
!=
NULL
;
pt_pad
=
(
D_PAD
*
)
pt_pad
->
Pnext
)
{
pt_pad
->
Draw
(
panel
,
DC
,
g_Offset_Module
,
GR_XOR
);
pt_pad
->
Draw
(
panel
,
DC
,
GR_XOR
,
g_Offset_Module
);
}
DisplayOpt
.
DisplayPadFill
=
pad_fill_tmp
;
...
...
@@ -127,12 +127,12 @@ void WinEDA_PcbFrame::StartMove_Module( MODULE* module, wxDC* DC )
// effacement module a l'ecran:
if
(
DC
)
{
int
tmp
=
module
->
m_Flags
;
module
->
m_Flags
|=
DO_NOT_DRAW
;
DrawPanel
->
PostDirtyRect
(
module
->
GetBoundingBox
()
);
module
->
m_Flags
=
tmp
;
}
{
int
tmp
=
module
->
m_Flags
;
module
->
m_Flags
|=
DO_NOT_DRAW
;
DrawPanel
->
PostDirtyRect
(
module
->
GetBoundingBox
()
);
module
->
m_Flags
=
tmp
;
}
// Reaffichage
DrawPanel
->
ManageCurseur
(
DrawPanel
,
DC
,
FALSE
);
...
...
@@ -200,7 +200,7 @@ void Exit_Module( WinEDA_DrawPanel* Panel, wxDC* DC )
pcbframe
->
Rotate_Module
(
NULL
,
module
,
ModuleInitOrient
,
FALSE
);
if
(
ModuleInitLayer
!=
module
->
GetLayer
()
)
pcbframe
->
m_Pcb
->
Change_Side_Module
(
module
,
NULL
);
module
->
Draw
(
Panel
,
DC
,
wxPoint
(
0
,
0
),
GR_OR
);
module
->
Draw
(
Panel
,
DC
,
GR_OR
);
}
g_Drag_Pistes_On
=
FALSE
;
Panel
->
ManageCurseur
=
NULL
;
...
...
@@ -300,8 +300,8 @@ bool WinEDA_PcbFrame::Delete_Module( MODULE* module, wxDC* DC, bool aAskBeforeDe
m_CurrentScreen
->
SetModify
();
/* Erase rastnest if needed
* Dirty rectangle is not used here because usually using a XOR draw mode gives good results (very few artefacts) for ratsnest
*/
* Dirty rectangle is not used here because usually using a XOR draw mode gives good results (very few artefacts) for ratsnest
*/
if
(
g_Show_Ratsnest
)
DrawGeneralRatsnest
(
DC
);
...
...
@@ -327,7 +327,7 @@ bool WinEDA_PcbFrame::Delete_Module( MODULE* module, wxDC* DC, bool aAskBeforeDe
ReCompile_Ratsnest_After_Changes
(
DC
);
// redraw the area where the module was
if
(
DC
)
DrawPanel
->
PostDirtyRect
(
module
->
GetBoundingBox
()
);
DrawPanel
->
PostDirtyRect
(
module
->
GetBoundingBox
()
);
return
TRUE
;
}
...
...
@@ -362,12 +362,12 @@ void BOARD::Change_Side_Module( MODULE* Module, wxDC* DC )
{
m_Status_Pcb
&=
~
(
LISTE_CHEVELU_OK
|
CONNEXION_OK
);
if
(
DC
&&
m_PcbFrame
)
{
int
tmp
=
Module
->
m_Flags
;
Module
->
m_Flags
|=
DO_NOT_DRAW
;
m_PcbFrame
->
DrawPanel
->
PostDirtyRect
(
Module
->
GetBoundingBox
()
);
Module
->
m_Flags
=
tmp
;
}
{
int
tmp
=
Module
->
m_Flags
;
Module
->
m_Flags
|=
DO_NOT_DRAW
;
m_PcbFrame
->
DrawPanel
->
PostDirtyRect
(
Module
->
GetBoundingBox
()
);
Module
->
m_Flags
=
tmp
;
}
/* Effacement chevelu general si necessaire */
if
(
DC
&&
g_Show_Ratsnest
)
...
...
@@ -514,13 +514,13 @@ void BOARD::Change_Side_Module( MODULE* Module, wxDC* DC )
Module
->
Set_Rectangle_Encadrement
();
if
(
m_PcbFrame
)
Module
->
Display_Infos
(
m_PcbFrame
);
Module
->
Display_Infos
(
m_PcbFrame
);
if
(
!
(
Module
->
m_Flags
&
IS_MOVED
)
)
/* Inversion simple */
{
if
(
DC
&&
m_PcbFrame
)
{
Module
->
Draw
(
m_PcbFrame
->
DrawPanel
,
DC
,
wxPoint
(
0
,
0
),
GR_OR
);
Module
->
Draw
(
m_PcbFrame
->
DrawPanel
,
DC
,
GR_OR
);
/* affichage chevelu general si necessaire */
m_PcbFrame
->
ReCompile_Ratsnest_After_Changes
(
DC
);
...
...
@@ -671,7 +671,7 @@ void WinEDA_BasePcbFrame::Place_Module( MODULE* module, wxDC* DC )
module
->
SetPosition
(
newpos
);
if
(
DC
)
module
->
Draw
(
DrawPanel
,
DC
,
wxPoint
(
0
,
0
),
GR_OR
);
module
->
Draw
(
DrawPanel
,
DC
,
GR_OR
);
/* Tracage des segments dragges et liberation memoire */
if
(
g_DragSegmentList
)
...
...
@@ -723,10 +723,10 @@ void WinEDA_BasePcbFrame::Rotate_Module( wxDC* DC, MODULE* module,
{
if
(
DC
)
{
int
tmp
=
module
->
m_Flags
;
module
->
m_Flags
|=
DO_NOT_DRAW
;
DrawPanel
->
PostDirtyRect
(
module
->
GetBoundingBox
()
);
module
->
m_Flags
=
tmp
;
int
tmp
=
module
->
m_Flags
;
module
->
m_Flags
|=
DO_NOT_DRAW
;
DrawPanel
->
PostDirtyRect
(
module
->
GetBoundingBox
()
);
module
->
m_Flags
=
tmp
;
/* Reaffichage chevelu general si necessaire */
if
(
g_Show_Ratsnest
)
...
...
@@ -756,7 +756,7 @@ void WinEDA_BasePcbFrame::Rotate_Module( wxDC* DC, MODULE* module,
{
if
(
!
(
module
->
m_Flags
&
IS_MOVED
)
)
/* Rotation simple */
{
module
->
Draw
(
DrawPanel
,
DC
,
wxPoint
(
0
,
0
),
GR_OR
);
module
->
Draw
(
DrawPanel
,
DC
,
GR_OR
);
/* Reaffichage chevelu general si necessaire */
ReCompile_Ratsnest_After_Changes
(
DC
);
...
...
@@ -792,7 +792,7 @@ void DrawModuleOutlines( WinEDA_DrawPanel* panel, wxDC* DC, MODULE* module )
pt_pad
=
module
->
m_Pads
;
for
(
;
pt_pad
!=
NULL
;
pt_pad
=
(
D_PAD
*
)
pt_pad
->
Pnext
)
{
pt_pad
->
Draw
(
panel
,
DC
,
g_Offset_Module
,
GR_XOR
);
pt_pad
->
Draw
(
panel
,
DC
,
GR_XOR
,
g_Offset_Module
);
}
DisplayOpt
.
DisplayPadFill
=
pad_fill_tmp
;
...
...
pcbnew/move-drag_pads.cpp
View file @
aa93f54d
...
...
@@ -36,10 +36,10 @@ static void Exit_Move_Pad( WinEDA_DrawPanel* Panel, wxDC* DC )
if
(
pad
==
NULL
)
return
;
pad
->
Draw
(
Panel
,
DC
,
wxPoint
(
0
,
0
),
GR_XOR
);
pad
->
Draw
(
Panel
,
DC
,
GR_XOR
);
pad
->
m_Flags
=
0
;
pad
->
m_Pos
=
Pad_OldPos
;
pad
->
Draw
(
Panel
,
DC
,
wxPoint
(
0
,
0
),
GR_XOR
);
pad
->
Draw
(
Panel
,
DC
,
GR_XOR
);
/* Pad Move en cours : remise a l'etat d'origine */
if
(
g_Drag_Pistes_On
)
{
...
...
@@ -72,9 +72,10 @@ static void Show_Pad_Move( WinEDA_DrawPanel* panel, wxDC* DC, bool erase )
D_PAD
*
pad
=
s_CurrentSelectedPad
;
if
(
erase
)
pad
->
Draw
(
panel
,
DC
,
wxPoint
(
0
,
0
),
GR_XOR
);
pad
->
Draw
(
panel
,
DC
,
GR_XOR
);
pad
->
m_Pos
=
screen
->
m_Curseur
;
pad
->
Draw
(
panel
,
DC
,
wxPoint
(
0
,
0
),
GR_XOR
);
pad
->
Draw
(
panel
,
DC
,
GR_XOR
);
if
(
!
g_Drag_Pistes_On
)
return
;
...
...
@@ -141,7 +142,7 @@ void WinEDA_BasePcbFrame::Import_Pad_Settings( D_PAD* pt_pad, wxDC* DC )
*/
{
if
(
DC
)
pt_pad
->
Draw
(
DrawPanel
,
DC
,
wxPoint
(
0
,
0
),
GR_XOR
);
pt_pad
->
Draw
(
DrawPanel
,
DC
,
GR_XOR
);
pt_pad
->
m_PadShape
=
g_Pad_Master
.
m_PadShape
;
pt_pad
->
m_Masque_Layer
=
g_Pad_Master
.
m_Masque_Layer
;
...
...
@@ -178,7 +179,7 @@ void WinEDA_BasePcbFrame::Import_Pad_Settings( D_PAD* pt_pad, wxDC* DC )
pt_pad
->
ComputeRayon
();
if
(
DC
)
pt_pad
->
Draw
(
DrawPanel
,
DC
,
wxPoint
(
0
,
0
),
GR_XOR
);
pt_pad
->
Draw
(
DrawPanel
,
DC
,
GR_XOR
);
(
(
MODULE
*
)
pt_pad
->
m_Parent
)
->
m_LastEdit_Time
=
time
(
NULL
);
}
...
...
@@ -247,7 +248,7 @@ void WinEDA_BasePcbFrame::AddPad( MODULE* Module, wxDC* DC )
/* Redessin du module */
Module
->
Set_Rectangle_Encadrement
();
Pad
->
Display_Infos
(
this
);
Module
->
Draw
(
DrawPanel
,
DC
,
wxPoint
(
0
,
0
),
GR_OR
);
Module
->
Draw
(
DrawPanel
,
DC
,
GR_OR
);
}
...
...
@@ -301,9 +302,9 @@ void WinEDA_BasePcbFrame::StartMovePad( D_PAD* Pad, wxDC* DC )
DrawPanel
->
ForceCloseManageCurseur
=
Exit_Move_Pad
;
/* Draw the pad (SKETCH mode) */
Pad
->
Draw
(
DrawPanel
,
DC
,
wxPoint
(
0
,
0
),
GR_XOR
);
Pad
->
Draw
(
DrawPanel
,
DC
,
GR_XOR
);
Pad
->
m_Flags
|=
IS_MOVED
;
Pad
->
Draw
(
DrawPanel
,
DC
,
wxPoint
(
0
,
0
),
GR_XOR
);
Pad
->
Draw
(
DrawPanel
,
DC
,
GR_XOR
);
/* Build the list of track segments to drag if the command is a drag pad*/
if
(
g_Drag_Pistes_On
)
...
...
@@ -329,7 +330,7 @@ void WinEDA_BasePcbFrame::PlacePad( D_PAD* Pad, wxDC* DC )
Module
=
(
MODULE
*
)
Pad
->
m_Parent
;
/* Placement du pad */
Pad
->
Draw
(
DrawPanel
,
DC
,
wxPoint
(
0
,
0
),
GR_XOR
);
Pad
->
Draw
(
DrawPanel
,
DC
,
GR_XOR
);
/* Save old module */
Pad
->
m_Pos
=
Pad_OldPos
;
SaveCopyInUndoList
(
m_Pcb
->
m_Modules
);
...
...
@@ -345,7 +346,7 @@ void WinEDA_BasePcbFrame::PlacePad( D_PAD* Pad, wxDC* DC )
Pad
->
m_Flags
=
0
;
Pad
->
Draw
(
DrawPanel
,
DC
,
wxPoint
(
0
,
0
),
GR_OR
);
Pad
->
Draw
(
DrawPanel
,
DC
,
GR_OR
);
Module
->
Set_Rectangle_Encadrement
();
Module
->
m_LastEdit_Time
=
time
(
NULL
);
...
...
@@ -386,7 +387,7 @@ void WinEDA_BasePcbFrame::RotatePad( D_PAD* Pad, wxDC* DC )
GetScreen
()
->
SetModify
();
Module
->
Draw
(
DrawPanel
,
DC
,
wxPoint
(
0
,
0
),
GR_XOR
);
Module
->
Draw
(
DrawPanel
,
DC
,
GR_XOR
);
EXCHG
(
Pad
->
m_Size
.
x
,
Pad
->
m_Size
.
y
);
EXCHG
(
Pad
->
m_Drill
.
x
,
Pad
->
m_Drill
.
y
);
...
...
@@ -400,5 +401,5 @@ void WinEDA_BasePcbFrame::RotatePad( D_PAD* Pad, wxDC* DC )
Module
->
Set_Rectangle_Encadrement
();
Pad
->
Display_Infos
(
this
);
Module
->
Draw
(
DrawPanel
,
DC
,
wxPoint
(
0
,
0
),
GR_OR
);
Module
->
Draw
(
DrawPanel
,
DC
,
GR_OR
);
}
pcbnew/muonde.cpp
View file @
aa93f54d
...
...
@@ -86,7 +86,7 @@ MODULE* WinEDA_PcbFrame::Create_MuWaveBasicShape( wxDC* DC,
}
if
(
DC
)
Module
->
Draw
(
DrawPanel
,
DC
,
wxPoint
(
0
,
0
),
GR_OR
);
Module
->
Draw
(
DrawPanel
,
DC
,
GR_OR
);
return
Module
;
}
...
...
@@ -102,12 +102,12 @@ static void Exit_Muonde( WinEDA_DrawFrame* frame, wxDC* DC )
{
if( Module->m_Flags & IS_NEW )
{
Module->Draw( frame->DrawPanel, DC,
wxPoint( 0, 0 ),
GR_XOR );
Module->Draw( frame->DrawPanel, DC, GR_XOR );
Module ->DeleteStructure();
}
else
{
Module->Draw( frame->DrawPanel, DC,
wxPoint( 0, 0 ),
GR_XOR );
Module->Draw( frame->DrawPanel, DC, GR_XOR );
}
}
...
...
@@ -273,7 +273,7 @@ MODULE* WinEDA_PcbFrame::Create_MuWaveComponent( wxDC* DC, int shape_type )
}
Module
->
Set_Rectangle_Encadrement
();
Module
->
Draw
(
DrawPanel
,
DC
,
wxPoint
(
0
,
0
),
GR_OR
);
Module
->
Draw
(
DrawPanel
,
DC
,
GR_OR
);
DrawPanel
->
MouseToCursorSchema
();
m_Pcb
->
m_Status_Pcb
=
0
;
m_CurrentScreen
->
SetModify
();
...
...
@@ -404,13 +404,13 @@ void WinEDA_SetParamShapeFrame::ReadDataShapeDescr( wxCommandEvent& event )
* Unit=MM
* XScale=271.501
* YScale=1.00133
*
*
* $COORD
* 0 0.6112600148417837
* 0.001851851851851852 0.6104800531118608
* ....
* $ENDCOORD
*
*
* Each line is the X Y coord (normalised units from 0 to 1)
*/
{
...
...
@@ -644,7 +644,7 @@ MODULE* WinEDA_PcbFrame::Create_MuWavePolygonShape( wxDC* DC )
PolyEdges
=
NULL
;
Module
->
Set_Rectangle_Encadrement
();
Module
->
Draw
(
DrawPanel
,
DC
,
wxPoint
(
0
,
0
),
GR_OR
);
Module
->
Draw
(
DrawPanel
,
DC
,
GR_OR
);
m_Pcb
->
m_Status_Pcb
=
0
;
m_CurrentScreen
->
SetModify
();
return
Module
;
...
...
@@ -685,7 +685,7 @@ void WinEDA_PcbFrame::Edit_Gap( wxDC* DC, MODULE* Module )
}
/* Effacement du module: */
Module
->
Draw
(
DrawPanel
,
DC
,
wxPoint
(
0
,
0
),
GR_XOR
);
Module
->
Draw
(
DrawPanel
,
DC
,
GR_XOR
);
/* Calcul de la dimension actuelle */
gap_size
=
next_pad
->
m_Pos0
.
x
-
pad
->
m_Pos0
.
x
-
pad
->
m_Size
.
x
;
...
...
@@ -728,5 +728,5 @@ void WinEDA_PcbFrame::Edit_Gap( wxDC* DC, MODULE* Module )
RotatePoint
(
&
(
next_pad
->
m_Pos
.
x
),
&
(
next_pad
->
m_Pos
.
y
),
Module
->
m_Pos
.
x
,
Module
->
m_Pos
.
y
,
Module
->
m_Orient
);
Module
->
Draw
(
DrawPanel
,
DC
,
wxPoint
(
0
,
0
),
GR_OR
);
Module
->
Draw
(
DrawPanel
,
DC
,
GR_OR
);
}
pcbnew/pcbtexte.cpp
View file @
aa93f54d
...
...
@@ -215,7 +215,7 @@ void WinEDA_TextPCBPropertiesFrame::OnOkClick( wxCommandEvent& event )
if
(
m_DC
)
// Effacement ancien texte
{
CurrentTextPCB
->
Draw
(
m_Parent
->
DrawPanel
,
m_DC
,
wxPoint
(
0
,
0
),
GR_XOR
);
CurrentTextPCB
->
Draw
(
m_Parent
->
DrawPanel
,
m_DC
,
GR_XOR
);
}
if
(
!
m_Name
->
GetValue
().
IsEmpty
()
)
...
...
@@ -238,7 +238,7 @@ void WinEDA_TextPCBPropertiesFrame::OnOkClick( wxCommandEvent& event )
if
(
m_DC
)
// Affichage nouveau texte
{
/* Redessin du Texte */
CurrentTextPCB
->
Draw
(
m_Parent
->
DrawPanel
,
m_DC
,
wxPoint
(
0
,
0
),
GR_OR
);
CurrentTextPCB
->
Draw
(
m_Parent
->
DrawPanel
,
m_DC
,
GR_OR
);
}
m_Parent
->
m_CurrentScreen
->
SetModify
();
EndModal
(
1
);
...
...
@@ -260,9 +260,9 @@ void Exit_Texte_Pcb( WinEDA_DrawPanel* Panel, wxDC* DC )
if
(
TextePcb
)
{
TextePcb
->
Draw
(
Panel
,
DC
,
wxPoint
(
0
,
0
),
GR_XOR
);
TextePcb
->
Draw
(
Panel
,
DC
,
GR_XOR
);
TextePcb
->
m_Pos
=
old_pos
;
TextePcb
->
Draw
(
Panel
,
DC
,
wxPoint
(
0
,
0
),
GR_OR
);
TextePcb
->
Draw
(
Panel
,
DC
,
GR_OR
);
TextePcb
->
m_Flags
=
0
;
}
...
...
@@ -284,7 +284,7 @@ void WinEDA_PcbFrame::Place_Texte_Pcb( TEXTE_PCB* TextePcb, wxDC* DC )
return
;
TextePcb
->
CreateDrawData
();
TextePcb
->
Draw
(
DrawPanel
,
DC
,
wxPoint
(
0
,
0
),
GR_OR
);
TextePcb
->
Draw
(
DrawPanel
,
DC
,
GR_OR
);
DrawPanel
->
ManageCurseur
=
NULL
;
DrawPanel
->
ForceCloseManageCurseur
=
NULL
;
SetCurItem
(
NULL
);
...
...
@@ -303,7 +303,7 @@ void WinEDA_PcbFrame::StartMoveTextePcb( TEXTE_PCB* TextePcb, wxDC* DC )
if
(
TextePcb
==
NULL
)
return
;
old_pos
=
TextePcb
->
m_Pos
;
TextePcb
->
Draw
(
DrawPanel
,
DC
,
wxPoint
(
0
,
0
),
GR_XOR
);
TextePcb
->
Draw
(
DrawPanel
,
DC
,
GR_XOR
);
TextePcb
->
m_Flags
|=
IS_MOVED
;
TextePcb
->
Display_Infos
(
this
);
DrawPanel
->
ManageCurseur
=
Move_Texte_Pcb
;
...
...
@@ -327,12 +327,12 @@ static void Move_Texte_Pcb( WinEDA_DrawPanel* panel, wxDC* DC, bool erase )
/* effacement du texte : */
if
(
erase
)
TextePcb
->
Draw
(
panel
,
DC
,
wxPoint
(
0
,
0
),
GR_XOR
);
TextePcb
->
Draw
(
panel
,
DC
,
GR_XOR
);
TextePcb
->
m_Pos
=
panel
->
m_Parent
->
m_CurrentScreen
->
m_Curseur
;
/* Redessin du Texte */
TextePcb
->
Draw
(
panel
,
DC
,
wxPoint
(
0
,
0
),
GR_XOR
);
TextePcb
->
Draw
(
panel
,
DC
,
GR_XOR
);
}
...
...
@@ -343,7 +343,7 @@ void WinEDA_PcbFrame::Delete_Texte_Pcb( TEXTE_PCB* TextePcb, wxDC* DC )
if
(
TextePcb
==
NULL
)
return
;
TextePcb
->
Draw
(
DrawPanel
,
DC
,
wxPoint
(
0
,
0
),
GR_XOR
);
TextePcb
->
Draw
(
DrawPanel
,
DC
,
GR_XOR
);
/* Suppression du texte en Memoire*/
TextePcb
->
DeleteStructure
();
...
...
@@ -403,7 +403,7 @@ void WinEDA_PcbFrame::Rotate_Texte_Pcb( TEXTE_PCB* TextePcb, wxDC* DC )
return
;
/* effacement du texte : */
TextePcb
->
Draw
(
DrawPanel
,
DC
,
wxPoint
(
0
,
0
),
GR_XOR
);
TextePcb
->
Draw
(
DrawPanel
,
DC
,
GR_XOR
);
TextePcb
->
m_Orient
+=
angle
;
...
...
@@ -415,7 +415,7 @@ void WinEDA_PcbFrame::Rotate_Texte_Pcb( TEXTE_PCB* TextePcb, wxDC* DC )
TextePcb
->
CreateDrawData
();
/* Redessin du Texte */
TextePcb
->
Draw
(
DrawPanel
,
DC
,
wxPoint
(
0
,
0
),
drawmode
);
TextePcb
->
Draw
(
DrawPanel
,
DC
,
drawmode
);
TextePcb
->
Display_Infos
(
this
);
m_CurrentScreen
->
SetModify
();
...
...
pcbnew/solve.cpp
View file @
aa93f54d
...
...
@@ -254,8 +254,8 @@ int WinEDA_PcbFrame::Solve( wxDC* DC, int two_sides )
/* Affiche Liaison */
GRLine
(
&
DrawPanel
->
m_ClipBox
,
DC
,
segm_oX
,
segm_oY
,
segm_fX
,
segm_fY
,
0
,
WHITE
|
GR_XOR
);
pt_cur_ch
->
pad_start
->
Draw
(
DrawPanel
,
DC
,
wxPoint
(
0
,
0
),
GR_OR
|
GR_SURBRILL
);
pt_cur_ch
->
pad_end
->
Draw
(
DrawPanel
,
DC
,
wxPoint
(
0
,
0
),
GR_OR
|
GR_SURBRILL
);
pt_cur_ch
->
pad_start
->
Draw
(
DrawPanel
,
DC
,
GR_OR
|
GR_SURBRILL
);
pt_cur_ch
->
pad_end
->
Draw
(
DrawPanel
,
DC
,
GR_OR
|
GR_SURBRILL
);
success
=
Route_1_Trace
(
this
,
DC
,
two_sides
,
row_source
,
col_source
,
row_target
,
col_target
,
pt_cur_ch
);
...
...
@@ -288,8 +288,8 @@ int WinEDA_PcbFrame::Solve( wxDC* DC, int two_sides )
Affiche_1_Parametre
(
this
,
72
,
wxT
(
"NoConn"
),
msg
,
LIGHTCYAN
);
/* Effacement des affichages de routage sur l'ecran */
pt_cur_ch
->
pad_start
->
Draw
(
DrawPanel
,
DC
,
wxPoint
(
0
,
0
),
GR_AND
);
pt_cur_ch
->
pad_end
->
Draw
(
DrawPanel
,
DC
,
wxPoint
(
0
,
0
),
GR_AND
);
pt_cur_ch
->
pad_start
->
Draw
(
DrawPanel
,
DC
,
GR_AND
);
pt_cur_ch
->
pad_end
->
Draw
(
DrawPanel
,
DC
,
GR_AND
);
if
(
stop
)
break
;
...
...
pcbnew/surbrill.cpp
View file @
aa93f54d
...
...
@@ -184,15 +184,13 @@ void WinEDA_PcbFrame::DrawHightLight( wxDC* DC, int NetCode )
}
#endif
wxPoint
zero
(
0
,
0
);
// construct outside loop for speed
// Redraw ZONE_CONTAINERS
BOARD
::
ZONE_CONTAINERS
&
zones
=
m_Pcb
->
m_ZoneDescriptorList
;
for
(
BOARD
::
ZONE_CONTAINERS
::
iterator
zc
=
zones
.
begin
();
zc
!=
zones
.
end
();
++
zc
)
{
if
(
(
*
zc
)
->
GetNet
()
==
NetCode
)
{
(
*
zc
)
->
Draw
(
DrawPanel
,
DC
,
zero
,
draw_mode
);
(
*
zc
)
->
Draw
(
DrawPanel
,
DC
,
draw_mode
);
}
}
...
...
@@ -221,14 +219,12 @@ static void Pad_Surbrillance( WinEDA_DrawPanel* panel,
{
D_PAD
*
pt_pad
;
wxPoint
zero
(
0
,
0
);
// construct outside loop for speed
/* trace des pastilles */
for
(
pt_pad
=
Module
->
m_Pads
;
pt_pad
!=
NULL
;
pt_pad
=
(
D_PAD
*
)
pt_pad
->
Pnext
)
{
if
(
pt_pad
->
GetNet
()
==
NetCode
)
{
pt_pad
->
Draw
(
panel
,
DC
,
zero
,
draw_mode
);
pt_pad
->
Draw
(
panel
,
DC
,
draw_mode
);
}
}
}
pcbnew/tracemod.cpp
View file @
aa93f54d
...
...
@@ -36,7 +36,7 @@ void Trace_Pads_Only( WinEDA_DrawPanel* panel, wxDC* DC, MODULE* Module,
/* Trace les pads d'un module en mode SKETCH.
* Utilisee pour afficher les pastilles d'un module lorsque celui ci n'est
* pas affiche par les options d'affichage des Modules
*
*
* Les pads affiches doivent apparaitre sur les couches donnees par
* MasqueLayer
*/
...
...
@@ -58,7 +58,7 @@ void Trace_Pads_Only( WinEDA_DrawPanel* panel, wxDC* DC, MODULE* Module,
{
if
(
(
pt_pad
->
m_Masque_Layer
&
MasqueLayer
)
==
0
)
continue
;
pt_pad
->
Draw
(
panel
,
DC
,
wxPoint
(
ox
,
oy
),
draw_mode
);
pt_pad
->
Draw
(
panel
,
DC
,
draw_mode
,
wxPoint
(
ox
,
oy
)
);
}
frame
->
m_DisplayPadFill
=
tmp
;
...
...
pcbnew/tracepcb.cpp
View file @
aa93f54d
...
...
@@ -32,7 +32,7 @@ void WinEDA_ModuleEditFrame::RedrawActiveWindow( wxDC* DC, bool EraseBg )
{
MODULE
*
Module
;
PCB_SCREEN
*
screen
=
(
PCB_SCREEN
*
)
GetScreen
();
PCB_SCREEN
*
screen
=
(
PCB_SCREEN
*
)
GetScreen
();
if
(
!
m_Pcb
||
!
screen
)
return
;
...
...
@@ -46,11 +46,11 @@ void WinEDA_ModuleEditFrame::RedrawActiveWindow( wxDC* DC, bool EraseBg )
DrawPanel
->
DrawBackGround
(
DC
);
TraceWorkSheet
(
DC
,
screen
,
0
);
/* Redraw the footprint */
/* Redraw the footprint */
Module
=
(
MODULE
*
)
m_Pcb
->
m_Modules
;
for
(
;
Module
!=
NULL
;
Module
=
(
MODULE
*
)
Module
->
Pnext
)
{
Module
->
Draw
(
DrawPanel
,
DC
,
wxPoint
(
0
,
0
),
GR_OR
);
Module
->
Draw
(
DrawPanel
,
DC
,
GR_OR
);
}
Affiche_Status_Box
();
...
...
@@ -72,7 +72,7 @@ void WinEDA_PcbFrame::RedrawActiveWindow( wxDC* DC, bool EraseBg )
/* Draw the BOARD, and others elements : axis, grid ..
*/
{
PCB_SCREEN
*
Screen
=
(
PCB_SCREEN
*
)
GetScreen
();
PCB_SCREEN
*
Screen
=
(
PCB_SCREEN
*
)
GetScreen
();
if
(
!
m_Pcb
||
!
Screen
)
return
;
...
...
@@ -87,104 +87,99 @@ void WinEDA_PcbFrame::RedrawActiveWindow( wxDC* DC, bool EraseBg )
Trace_Pcb
(
DC
,
GR_OR
);
TraceWorkSheet
(
DC
,
GetScreen
(),
0
);
Affiche_Status_Box
();
if
(
DrawPanel
->
ManageCurseur
)
DrawPanel
->
ManageCurseur
(
DrawPanel
,
DC
,
FALSE
);
/* Redraw the cursor */
DrawPanel
->
Trace_Curseur
(
DC
);
if
(
DrawPanel
->
ManageCurseur
)
DrawPanel
->
ManageCurseur
(
DrawPanel
,
DC
,
FALSE
);
// Redraw the cursor
DrawPanel
->
Trace_Curseur
(
DC
);
}
#define DRAW_CUR_LAYER_LAST 1
/****************************************************/
void
WinEDA_PcbFrame
::
Trace_Pcb
(
wxDC
*
DC
,
int
mode
)
/****************************************************/
/* Redraw the BOARD items but not cursors, axis or grid */
{
MODULE
*
Module
;
EDA_BaseStruct
*
PtStruct
;
if
(
!
m_Pcb
)
return
;
Module
=
(
MODULE
*
)
m_Pcb
->
m_Modules
;
for
(
;
Module
!=
NULL
;
Module
=
(
MODULE
*
)
Module
->
Pnext
)
for
(
MODULE
*
module
=
m_Pcb
->
m_Modules
;
module
;
module
=
module
->
Next
()
)
{
bool
display
=
true
;
int
MaskLay
=
ALL_CU_LAYERS
;
if
(
M
odule
->
m_Flags
&
IS_MOVED
)
int
layerMask
=
ALL_CU_LAYERS
;
if
(
m
odule
->
m_Flags
&
IS_MOVED
)
continue
;
if
(
!
DisplayOpt
.
Show_Modules_Cmp
)
{
if
(
M
odule
->
GetLayer
()
==
CMP_N
)
if
(
m
odule
->
GetLayer
()
==
CMP_N
)
display
=
FALSE
;
MaskLay
&=
~
CMP_LAYER
;
layerMask
&=
~
CMP_LAYER
;
}
if
(
!
DisplayOpt
.
Show_Modules_Cu
)
{
if
(
M
odule
->
GetLayer
()
==
COPPER_LAYER_N
)
if
(
m
odule
->
GetLayer
()
==
COPPER_LAYER_N
)
display
=
FALSE
;
MaskLay
&=
~
CUIVRE_LAYER
;
layerMask
&=
~
CUIVRE_LAYER
;
}
if
(
display
)
Module
->
Draw
(
DrawPanel
,
DC
,
wxPoint
(
0
,
0
)
,
mode
);
module
->
Draw
(
DrawPanel
,
DC
,
mode
);
else
Trace_Pads_Only
(
DrawPanel
,
DC
,
Module
,
0
,
0
,
MaskLay
,
mode
);
Trace_Pads_Only
(
DrawPanel
,
DC
,
module
,
0
,
0
,
layerMask
,
mode
);
}
/* Draw the graphic items */
PtStruct
=
m_Pcb
->
m_Drawings
;
for
(
;
PtStruct
!=
NULL
;
PtStruct
=
PtStruct
->
Pnext
)
// Draw the graphic items
for
(
BOARD_ITEM
*
item
=
m_Pcb
->
m_Drawings
;
item
;
item
=
item
->
Next
()
)
{
if
(
PtStruct
->
m_Flags
&
IS_MOVED
)
if
(
item
->
m_Flags
&
IS_MOVED
)
continue
;
switch
(
PtStruct
->
Type
()
)
switch
(
item
->
Type
()
)
{
case
TYPECOTATION
:
(
(
COTATION
*
)
PtStruct
)
->
Draw
(
DrawPanel
,
DC
,
wxPoint
(
0
,
0
),
mode
);
break
;
case
TYPETEXTE
:
(
(
TEXTE_PCB
*
)
PtStruct
)
->
Draw
(
DrawPanel
,
DC
,
wxPoint
(
0
,
0
),
mode
);
break
;
case
TYPEMIRE
:
(
(
MIREPCB
*
)
PtStruct
)
->
Draw
(
DrawPanel
,
DC
,
wxPoint
(
0
,
0
)
,
mode
);
item
->
Draw
(
DrawPanel
,
DC
,
mode
);
break
;
case
TYPEDRAWSEGMENT
:
Trace_DrawSegmentPcb
(
DrawPanel
,
DC
,
(
DRAWSEGMENT
*
)
PtStruct
,
mode
);
break
;
Trace_DrawSegmentPcb
(
DrawPanel
,
DC
,
(
DRAWSEGMENT
*
)
item
,
mode
);
break
;
default
:
default
:
break
;
}
}
// draw the BOARD's markers.
for
(
unsigned
i
=
0
;
i
<
m_Pcb
->
m_markers
.
size
();
++
i
)
{
m_Pcb
->
m_markers
[
i
]
->
Draw
(
DrawPanel
,
DC
,
mode
);
}
Trace_Pistes
(
DrawPanel
,
m_Pcb
,
DC
,
mode
);
if
(
g_HightLigt_Status
)
DrawHightLight
(
DC
,
g_HightLigth_NetCode
);
for
(
int
ii
=
0
;
ii
<
m_Pcb
->
GetAreaCount
();
ii
++
)
{
ZONE_CONTAINER
*
edge_zone
=
m_Pcb
->
GetArea
(
ii
);
// Areas must be drawn here only if not moved or dragged,
// because these areas are drawn by ManageCursor() in a specific manner
if
(
(
edge_zone
->
m_Flags
&
(
IN_EDIT
|
IS_DRAGGED
|
IS_MOVED
))
==
0
)
edge_zone
->
Draw
(
DrawPanel
,
DC
,
mode
);
}
for
(
int
ii
=
0
;
ii
<
m_Pcb
->
GetAreaCount
();
ii
++
)
{
ZONE_CONTAINER
*
edge_zone
=
m_Pcb
->
GetArea
(
ii
);
// Areas must be drawn here only if not moved or dragged,
// because these areas are drawn by ManageCursor() in a specific manner
if
(
(
edge_zone
->
m_Flags
&
(
IN_EDIT
|
IS_DRAGGED
|
IS_MOVED
))
==
0
)
edge_zone
->
Draw
(
DrawPanel
,
DC
,
wxPoint
(
0
,
0
),
mode
);
}
// draw the BOARD's markers.
for
(
unsigned
i
=
0
;
i
<
m_Pcb
->
m_markers
.
size
();
++
i
)
{
m_Pcb
->
m_markers
[
i
]
->
Draw
(
DrawPanel
,
DC
,
mode
);
}
DrawGeneralRatsnest
(
DC
);
...
...
pcbnew/undelete.cpp
View file @
aa93f54d
...
...
@@ -65,7 +65,7 @@ void WinEDA_PcbFrame::UnDeleteItem( wxDC* DC )
g_UnDeleteStack
[
g_UnDeleteStackPtr
]
=
NULL
;
((
MODULE
*
)
item
)
->
Draw
(
DrawPanel
,
DC
,
wxPoint
(
0
,
0
),
GR_OR
);
((
MODULE
*
)
item
)
->
Draw
(
DrawPanel
,
DC
,
GR_OR
);
item
->
SetState
(
DELETED
,
OFF
);
/* Creal DELETED flag */
item
->
m_Flags
=
0
;
...
...
pcbnew/xchgmod.cpp
View file @
aa93f54d
...
...
@@ -492,12 +492,12 @@ MODULE* WinEDA_ExchangeModuleFrame::Change_1_Module( MODULE* PtModule,
m_WinMsg
->
WriteText
(
wxT
(
"Ok
\n
"
)
);
/* Effacement a l'ecran de l'ancien module */
PtModule
->
Draw
(
m_Parent
->
DrawPanel
,
m_DC
,
wxPoint
(
0
,
0
),
GR_XOR
);
PtModule
->
Draw
(
m_Parent
->
DrawPanel
,
m_DC
,
GR_XOR
);
m_Parent
->
Exchange_Module
(
this
,
PtModule
,
NewModule
);
/* Affichage du nouveau module */
NewModule
->
Draw
(
m_Parent
->
DrawPanel
,
m_DC
,
wxPoint
(
0
,
0
),
GR_OR
);
NewModule
->
Draw
(
m_Parent
->
DrawPanel
,
m_DC
,
GR_OR
);
Maj_ListeCmp
(
NewModule
->
m_Reference
->
m_Text
,
oldnamecmp
,
namecmp
,
ShowError
);
...
...
@@ -550,7 +550,7 @@ MODULE* WinEDA_BasePcbFrame::Exchange_Module( wxWindow* winaff,
/* Mise a jour des autres parametres */
NewModule
->
m_TimeStamp
=
OldModule
->
m_TimeStamp
;
NewModule
->
m_Path
=
OldModule
->
m_Path
;
NewModule
->
m_Path
=
OldModule
->
m_Path
;
/* mise a jour des netnames ( lorsque c'est possible) */
pt_pad
=
NewModule
->
m_Pads
;
...
...
@@ -646,7 +646,7 @@ bool WinEDA_PcbFrame::RecreateCmpFileFromBoard()
{
fprintf
(
FichCmp
,
"
\n
BeginCmp
\n
"
);
fprintf
(
FichCmp
,
"TimeStamp = %8.8lX
\n
"
,
Module
->
m_TimeStamp
);
fprintf
(
FichCmp
,
"Path = %s
\n
"
,
CONV_TO_UTF8
(
Module
->
m_Path
)
);
fprintf
(
FichCmp
,
"Path = %s
\n
"
,
CONV_TO_UTF8
(
Module
->
m_Path
)
);
fprintf
(
FichCmp
,
"Reference = %s;
\n
"
,
!
Module
->
m_Reference
->
m_Text
.
IsEmpty
()
?
CONV_TO_UTF8
(
Module
->
m_Reference
->
m_Text
)
:
"[NoRef]"
);
...
...
pcbnew/zones_by_polygon.cpp
View file @
aa93f54d
...
...
@@ -260,7 +260,7 @@ void WinEDA_PcbFrame::Start_Move_Zone_Drag_Outline_Edge( wxDC* DC,
*/
{
zone_container
->
m_Flags
=
IS_DRAGGED
;
zone_container
->
m_CornerSelection
=
corner_id
;
zone_container
->
m_CornerSelection
=
corner_id
;
DrawPanel
->
ManageCurseur
=
Show_Zone_Corner_Or_Outline_While_Move_Mouse
;
DrawPanel
->
ForceCloseManageCurseur
=
Abort_Zone_Move_Corner_Or_Outlines
;
s_CursorLastPosition
=
s_CornerInitialPosition
=
GetScreen
()
->
m_Curseur
;
...
...
@@ -312,7 +312,7 @@ void WinEDA_PcbFrame::End_Move_Zone_Corner_Or_Outlines( wxDC* DC, ZONE_CONTAINER
DrawPanel
->
ManageCurseur
=
NULL
;
DrawPanel
->
ForceCloseManageCurseur
=
NULL
;
if
(
DC
)
zone_container
->
Draw
(
DrawPanel
,
DC
,
wxPoint
(
0
,
0
),
GR_OR
);
zone_container
->
Draw
(
DrawPanel
,
DC
,
GR_OR
);
GetScreen
()
->
SetModify
();
s_AddCutoutToCurrentZone
=
false
;
s_CurrentZone
=
NULL
;
...
...
@@ -353,7 +353,7 @@ void WinEDA_PcbFrame::Remove_Zone_Corner( wxDC* DC, ZONE_CONTAINER* zone_contain
if
(
zone_container
->
m_Poly
->
GetNumCorners
()
<=
3
)
{
zone_container
->
Draw
(
DrawPanel
,
DC
,
wxPoint
(
0
,
0
),
GR_XOR
);
zone_container
->
Draw
(
DrawPanel
,
DC
,
GR_XOR
);
Delete_Zone_Fill
(
DC
,
NULL
,
zone_container
->
m_TimeStamp
);
m_Pcb
->
Delete
(
zone_container
);
return
;
...
...
@@ -392,7 +392,7 @@ void Abort_Zone_Move_Corner_Or_Outlines( WinEDA_DrawPanel* Panel, wxDC* DC )
WinEDA_PcbFrame
*
pcbframe
=
(
WinEDA_PcbFrame
*
)
Panel
->
m_Parent
;
ZONE_CONTAINER
*
zone_container
=
(
ZONE_CONTAINER
*
)
pcbframe
->
GetCurItem
();
zone_container
->
Draw
(
Panel
,
DC
,
wxPoint
(
0
,
0
),
GR_XOR
);
zone_container
->
Draw
(
Panel
,
DC
,
GR_XOR
);
if
(
zone_container
->
m_Flags
==
IS_MOVED
)
{
...
...
@@ -418,7 +418,7 @@ void Abort_Zone_Move_Corner_Or_Outlines( WinEDA_DrawPanel* Panel, wxDC* DC )
zone_container
->
m_Poly
->
MoveCorner
(
zone_container
->
m_CornerSelection
,
pos
.
x
,
pos
.
y
);
}
}
zone_container
->
Draw
(
Panel
,
DC
,
wxPoint
(
0
,
0
),
GR_XOR
);
zone_container
->
Draw
(
Panel
,
DC
,
GR_XOR
);
Panel
->
ManageCurseur
=
NULL
;
Panel
->
ForceCloseManageCurseur
=
NULL
;
...
...
@@ -441,7 +441,7 @@ void Show_Zone_Corner_Or_Outline_While_Move_Mouse( WinEDA_DrawPanel* Panel, wxDC
if
(
erase
)
/* Undraw edge in old position*/
{
zone
->
Draw
(
Panel
,
DC
,
wxPoint
(
0
,
0
),
GR_XOR
);
zone
->
Draw
(
Panel
,
DC
,
GR_XOR
);
}
wxPoint
pos
=
pcbframe
->
GetScreen
()
->
m_Curseur
;
...
...
@@ -462,7 +462,7 @@ void Show_Zone_Corner_Or_Outline_While_Move_Mouse( WinEDA_DrawPanel* Panel, wxDC
else
zone
->
m_Poly
->
MoveCorner
(
zone
->
m_CornerSelection
,
pos
.
x
,
pos
.
y
);
zone
->
Draw
(
Panel
,
DC
,
wxPoint
(
0
,
0
),
GR_XOR
);
zone
->
Draw
(
Panel
,
DC
,
GR_XOR
);
}
...
...
@@ -510,12 +510,12 @@ int WinEDA_PcbFrame::Begin_Zone( wxDC* DC )
if
(
diag
==
ZONE_ABORT
)
return
0
;
((
PCB_SCREEN
*
)
GetScreen
())
->
m_Active_Layer
=
s_Zone_Layer
;
// Set by the dialog frame
((
PCB_SCREEN
*
)
GetScreen
())
->
m_Active_Layer
=
s_Zone_Layer
;
// Set by the dialog frame
}
else
/* Start a new contour: init zone params (net and layer) from an existing zone */
{
((
PCB_SCREEN
*
)
GetScreen
())
->
m_Active_Layer
=
s_Zone_Layer
=
s_CurrentZone
->
GetLayer
();
((
PCB_SCREEN
*
)
GetScreen
())
->
m_Active_Layer
=
s_Zone_Layer
=
s_CurrentZone
->
GetLayer
();
s_Zone_Hatching
=
s_CurrentZone
->
m_Poly
->
GetHatchStyle
();
}
...
...
@@ -737,7 +737,7 @@ void WinEDA_PcbFrame::Edit_Zone_Params( wxDC* DC, ZONE_CONTAINER* zone_container
for
(
int
ii
=
0
;
ii
<
m_Pcb
->
GetAreaCount
();
ii
++
)
{
ZONE_CONTAINER
*
edge_zone
=
m_Pcb
->
GetArea
(
ii
);
edge_zone
->
Draw
(
DrawPanel
,
DC
,
wxPoint
(
0
,
0
),
GR_XOR
);
edge_zone
->
Draw
(
DrawPanel
,
DC
,
GR_XOR
);
}
zone_container
->
SetLayer
(
s_Zone_Layer
);
...
...
@@ -777,7 +777,7 @@ void WinEDA_PcbFrame::Delete_Zone_Contour( wxDC* DC, ZONE_CONTAINER* zone_contai
int
ncont
=
zone_container
->
m_Poly
->
GetContour
(
zone_container
->
m_CornerSelection
);
if
(
DC
)
zone_container
->
Draw
(
DrawPanel
,
DC
,
wxPoint
(
0
,
0
),
GR_XOR
);
zone_container
->
Draw
(
DrawPanel
,
DC
,
GR_XOR
);
Delete_Zone_Fill
(
DC
,
NULL
,
zone_container
->
m_TimeStamp
);
// Remove fill segments
...
...
@@ -788,7 +788,7 @@ void WinEDA_PcbFrame::Delete_Zone_Contour( wxDC* DC, ZONE_CONTAINER* zone_contai
{
zone_container
->
m_Poly
->
RemoveContour
(
ncont
);
if
(
DC
)
zone_container
->
Draw
(
DrawPanel
,
DC
,
wxPoint
(
0
,
0
),
GR_OR
);
zone_container
->
Draw
(
DrawPanel
,
DC
,
GR_OR
);
}
GetScreen
()
->
SetModify
();
}
...
...
share/drawpanel.cpp
View file @
aa93f54d
...
...
@@ -550,7 +550,6 @@ void WinEDA_DrawPanel::EraseScreen( wxDC* DC )
/***************************************************/
void
WinEDA_DrawPanel
::
OnPaint
(
wxPaintEvent
&
event
)
/***************************************************/
#if 1 // new code without multiple calls to ReDraw()
{
wxPaintDC
paintDC
(
this
);
EDA_Rect
tmp
;
...
...
@@ -622,72 +621,6 @@ void WinEDA_DrawPanel::OnPaint( wxPaintEvent& event )
}
#else // old code
{
wxPaintDC
paintDC
(
this
);
EDA_Rect
tmp
;
wxRect
PaintClipBox
;
wxPoint
org
;
static
int
counter
;
++
counter
;
PrepareGraphicContext
(
&
paintDC
);
tmp
=
m_ClipBox
;
org
=
m_ClipBox
.
GetOrigin
();
wxRegionIterator
upd
(
GetUpdateRegion
()
);
// get the update rect list
while
(
upd
)
{
PaintClipBox
=
upd
.
GetRect
();
upd
++
;
PaintClipBox
.
x
+=
org
.
x
;
PaintClipBox
.
y
+=
org
.
y
;
#if 0
printf( "PaintClipBox[%d]=(%d, %d, %d, %d)\n",
counter,
PaintClipBox.x,
PaintClipBox.y,
PaintClipBox.width,
PaintClipBox.height );
#endif
#ifdef WX_ZOOM
m_ClipBox
.
m_Pos
.
x
=
PaintClipBox
.
x
*
GetZoom
();
m_ClipBox
.
m_Pos
.
y
=
PaintClipBox
.
y
*
GetZoom
();
m_ClipBox
.
m_Size
.
x
=
PaintClipBox
.
m_Size
.
x
*
GetZoom
();
m_ClipBox
.
m_Size
.
y
=
PaintClipBox
.
m_Size
.
y
*
GetZoom
();
PaintClipBox
=
m_ClipBox
;
#else
m_ClipBox
.
SetX
(
PaintClipBox
.
GetX
()
);
m_ClipBox
.
SetY
(
PaintClipBox
.
GetY
()
);
m_ClipBox
.
SetWidth
(
PaintClipBox
.
GetWidth
()
);
m_ClipBox
.
SetHeight
(
PaintClipBox
.
GetHeight
()
);
#endif
wxDCClipper
*
dcclip
=
new
wxDCClipper
(
paintDC
,
PaintClipBox
);
ReDraw
(
&
paintDC
,
TRUE
);
delete
dcclip
;
}
m_ClipBox
=
tmp
;
event
.
Skip
();
}
#endif
/****************************************************/
void
WinEDA_DrawPanel
::
ReDraw
(
wxDC
*
DC
,
bool
erasebg
)
/****************************************************/
...
...
todo.txt
View file @
aa93f54d
...
...
@@ -74,3 +74,12 @@ edges editable.
2) final solution: get rid of requirement for tracks buried within a zone.
Reivew the GEDA source code and other sources to gather ideas before doing 2).
2008-Mar-31 Assigned To:
asked by: Dick Hollenbeck
================================================================================
EESCHEMA:
Derive all eeschema classes from SCH_ITEM, not EDA_BaseStruct.
Move the virtual EDA_BaseStruct::Draw() function into SCH_ITEM, so that
there is no EDA_BaseStruct::Draw() function.
Make the KICAD_T spelling mimic the class names.
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment