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
2e13ccf0
Commit
2e13ccf0
authored
Aug 24, 2007
by
dickelbeck
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
see change_log.txt's 2007-Aug-23 UPDATE
parent
cc623057
Changes
21
Expand all
Hide whitespace changes
Inline
Side-by-side
Showing
21 changed files
with
1412 additions
and
1037 deletions
+1412
-1037
change_log.txt
change_log.txt
+18
-6
base_struct.cpp
common/base_struct.cpp
+4
-0
base_struct.h
include/base_struct.h
+43
-7
class_collector.h
include/class_collector.h
+2
-20
pcbstruct.h
include/pcbstruct.h
+7
-0
wxstruct.h
include/wxstruct.h
+8
-8
class_board.cpp
pcbnew/class_board.cpp
+62
-8
class_module.cpp
pcbnew/class_module.cpp
+25
-6
class_module.h
pcbnew/class_module.h
+13
-2
class_text_mod.cpp
pcbnew/class_text_mod.cpp
+34
-0
class_text_mod.h
pcbnew/class_text_mod.h
+25
-0
classpcb.cpp
pcbnew/classpcb.cpp
+16
-0
classtrc.cpp
pcbnew/classtrc.cpp
+411
-358
collectors.cpp
pcbnew/collectors.cpp
+65
-19
collectors.h
pcbnew/collectors.h
+25
-16
controle.cpp
pcbnew/controle.cpp
+38
-8
files.cpp
pcbnew/files.cpp
+1
-1
locate.cpp
pcbnew/locate.cpp
+11
-14
pcbframe.cpp
pcbnew/pcbframe.cpp
+2
-2
protos.h
pcbnew/protos.h
+1
-1
set_color.cpp
pcbnew/set_color.cpp
+601
-561
No files found.
change_log.txt
View file @
2e13ccf0
...
@@ -7,9 +7,21 @@ email address.
...
@@ -7,9 +7,21 @@ email address.
2007-Aug-23 UPDATE Dick Hollenbeck <dick@softplc.com>
2007-Aug-23 UPDATE Dick Hollenbeck <dick@softplc.com>
================================================================================
================================================================================
@todo add constructor initializers for classes that were derived from
+ eeschema & pcbnew
EDA_BaseLineStruct but are now not. Its late, will do tomorrow.
* Fixed MODULE::Visit() and BOARD::Vist() so they traverse certain lists
@todo test yesterday's changes, it builds, may not run right yet.
only once and they are working nicely now.
* You can test the GENERALCOLLECTOR::Scan() code by compiling with DEBUG=1 on
the command line and enabling the stuff near line 124 in
pcbnew/controle.cpp, then watch Show( std::cout ) show the selected items in
xml format on your console. (launch pcbnew from command line.)
@todo:
The layer selection mechanism used by the collector is still inadequate, so
tomorrow I will add a new class COLLECTORS_GUIDE which can be used by a
COLLECTOR to control its operation. It adds the concept of layer
locking, even though PCBNEW does not support that in the UI yet.
@todo:
add constructor initializers for classes that were derived from
EDA_BaseLineStruct but are now not. Its late, will do tomorrow.
2007-Aug-22 UPDATE Dick Hollenbeck <dick@softplc.com>
2007-Aug-22 UPDATE Dick Hollenbeck <dick@softplc.com>
...
@@ -18,15 +30,15 @@ email address.
...
@@ -18,15 +30,15 @@ email address.
Things are still pretty transient, should be stable a day or two:
Things are still pretty transient, should be stable a day or two:
* Fixed a filename case sensitivity problem that would show up on Linux
* Fixed a filename case sensitivity problem that would show up on Linux
but probably not on Windows: bitmap/Reload.xpm needed uppercase R.
but probably not on Windows: bitmap/Reload.xpm needed uppercase R.
* Wedged a new class BOARD_ITEM underneath all PCB drawable classes
, t
his is
* Wedged a new class BOARD_ITEM underneath all PCB drawable classes
. T
his is
a big change and may introduce a bug or two, but it is worth it for the
a big change and may introduce a bug or two, but it is worth it for the
future, because we can
introduce
virtual functions there that do not impact
future, because we can
add
virtual functions there that do not impact
the entire project (since everything is derived from EDA_BaseStruct).
the entire project (since everything is derived from EDA_BaseStruct).
The corresponding class in EESCHEMA seems to be DrawPartStruct, so we had
The corresponding class in EESCHEMA seems to be DrawPartStruct, so we had
nothing in PCBNEW like that.
nothing in PCBNEW like that.
BOARD_ITEM::GetLayer() and SetLayer() introduced, more functions to come.
BOARD_ITEM::GetLayer() and SetLayer() introduced, more functions to come.
Much of this work is geared towards making collectors.cpp's ARROWCOLLECTOR::Inspect()
Much of this work is geared towards making collectors.cpp's ARROWCOLLECTOR::Inspect()
very very simple, and that can be model for future work.
very very simple, and that can be
a
model for future work.
* Changed min() and max() macros to MIN() and MAX() because min() and max()
* Changed min() and max() macros to MIN() and MAX() because min() and max()
are actually reserved according to the C++ standard! (and their usage prevented
are actually reserved according to the C++ standard! (and their usage prevented
the use of #include <vector>).
the use of #include <vector>).
...
...
common/base_struct.cpp
View file @
2e13ccf0
...
@@ -210,6 +210,10 @@ SEARCH_RESULT EDA_BaseStruct::Visit( INSPECTOR* inspector, const void* testData,
...
@@ -210,6 +210,10 @@ SEARCH_RESULT EDA_BaseStruct::Visit( INSPECTOR* inspector, const void* testData,
const
KICAD_T
scanTypes
[]
)
const
KICAD_T
scanTypes
[]
)
{
{
KICAD_T
stype
;
KICAD_T
stype
;
#if defined(DEBUG)
std
::
cout
<<
GetClass
().
mb_str
()
<<
' '
;
#endif
for
(
const
KICAD_T
*
p
=
scanTypes
;
(
stype
=*
p
)
!=
EOT
;
++
p
)
for
(
const
KICAD_T
*
p
=
scanTypes
;
(
stype
=*
p
)
!=
EOT
;
++
p
)
{
{
...
...
include/base_struct.h
View file @
2e13ccf0
...
@@ -133,7 +133,7 @@ public:
...
@@ -133,7 +133,7 @@ public:
EDA_BaseStruct
*
m_Son
;
/* Linked list: Link (son struct) */
EDA_BaseStruct
*
m_Son
;
/* Linked list: Link (son struct) */
EDA_BaseStruct
*
m_Image
;
/* Link to an image copy for undelete or abort command */
EDA_BaseStruct
*
m_Image
;
/* Link to an image copy for undelete or abort command */
int
m_Flags
;
// flags for editi
ons and other
int
m_Flags
;
// flags for editi
ng and other misc. uses
#define IS_CHANGED (1<<0)
#define IS_CHANGED (1<<0)
#define IS_LINKED (1<<1)
#define IS_LINKED (1<<1)
#define IN_EDIT (1<<2)
#define IN_EDIT (1<<2)
...
@@ -154,7 +154,6 @@ public:
...
@@ -154,7 +154,6 @@ public:
unsigned
long
m_TimeStamp
;
// Time stamp used for logical links
unsigned
long
m_TimeStamp
;
// Time stamp used for logical links
int
m_Selected
;
/* Used by block commands, and selective editing */
int
m_Selected
;
/* Used by block commands, and selective editing */
// int m_Layer; ///< used by many derived classes, so make common
private
:
private
:
int
m_Status
;
int
m_Status
;
...
@@ -394,23 +393,60 @@ public:
...
@@ -394,23 +393,60 @@ public:
{
{
}
}
BOARD_ITEM
*
Next
()
{
return
(
BOARD_ITEM
*
)
Pnext
;
}
BOARD_ITEM
*
Next
()
const
{
return
(
BOARD_ITEM
*
)
Pnext
;
}
BOARD_ITEM
*
GetParent
()
const
{
return
(
BOARD_ITEM
*
)
m_Parent
;
}
/**
/**
* Function GetLayer
* Function GetLayer
* returns the layer this item is on.
* returns the layer this item is on.
*/
*/
int
GetLayer
()
const
{
return
m_Layer
;
}
int
GetLayer
()
const
{
return
m_Layer
;
}
/**
/**
* Function SetLayer
* Function SetLayer
* sets the layer this item is on.
* sets the layer this item is on.
* @param aLayer The layer number.
* @param aLayer The layer number.
*/
*/
void
SetLayer
(
int
aLayer
)
{
m_Layer
=
aLayer
;
}
void
SetLayer
(
int
aLayer
)
{
m_Layer
=
aLayer
;
}
/**
* Function IsOnLayer
* tests to see if this object is on the given layer. Is virtual so
* objects like D_PAD, which reside on multiple layers can do their own
* form of testing.
* @param aLayer The layer to test for.
* @return bool - true if on given layer, else false.
*/
virtual
bool
IsOnLayer
(
int
aLayer
)
const
{
return
m_Layer
==
aLayer
;
}
/**
* Function IsOnOneOfTheseLayers
* returns true if this object is on one of the given layers. Is virtual so
* objects like D_PAD, which reside on multiple layers, can do their own
* form of testing.
* @param aLayerMask The bit-mapped set of layers to test for.
* @return bool - true if on one of the given layers, else false.
*/
virtual
bool
IsOnOneOfTheseLayers
(
int
aLayerMask
)
const
{
return
(
(
1
<<
m_Layer
)
&
aLayerMask
)
!=
0
;
}
/**
* Function IsLocked
* @returns bool - true if the object is locked, else false
*/
virtual
bool
IsLocked
()
const
{
return
false
;
// only MODULEs can be locked at this time.
}
};
};
...
...
include/class_collector.h
View file @
2e13ccf0
...
@@ -34,7 +34,6 @@
...
@@ -34,7 +34,6 @@
class
EDA_BaseStruct
;
class
EDA_BaseStruct
;
class
BOARD
;
/**
/**
...
@@ -48,16 +47,10 @@ class BOARD;
...
@@ -48,16 +47,10 @@ class BOARD;
*
*
* Later, after collection, the user can iterate through all the objects
* Later, after collection, the user can iterate through all the objects
* in the remembered collection using GetCount() and the [int] operator.
* in the remembered collection using GetCount() and the [int] operator.
*
* Philosophy: this class knows nothing of the context in which as BOARD is used
* and that means it knows nothing about which layers are visible or current,
* but can handle those concerns by the SetPreferredLayer() function.
*/
*/
class
COLLECTOR
:
public
INSPECTOR
class
COLLECTOR
:
public
INSPECTOR
{
{
protected
:
protected
:
// int m_Type;
/// Which object types to scan
/// Which object types to scan
const
KICAD_T
*
m_ScanTypes
;
const
KICAD_T
*
m_ScanTypes
;
...
@@ -84,20 +77,9 @@ public:
...
@@ -84,20 +77,9 @@ public:
virtual
~
COLLECTOR
()
virtual
~
COLLECTOR
()
{
{
// empty the list so that ~list() does not try and delete all
// the objects that it holds. list is not the owner of such objects
// and this prevents a double free()ing.
Empty
();
}
}
/**
* Function Type
* returns the type of the collector.
int Type() const { return m_Type; }
*/
void
SetPreferredLayer
(
int
aPreferredLayer
)
void
SetPreferredLayer
(
int
aPreferredLayer
)
{
{
m_PreferredLayer
=
aPreferredLayer
;
m_PreferredLayer
=
aPreferredLayer
;
...
@@ -108,7 +90,7 @@ public:
...
@@ -108,7 +90,7 @@ public:
* Function GetCount
* Function GetCount
* returns the number of objects in the list
* returns the number of objects in the list
*/
*/
int
GetCount
()
const
unsigned
GetCount
()
const
{
{
return
list
.
size
();
return
list
.
size
();
}
}
...
@@ -143,7 +125,7 @@ public:
...
@@ -143,7 +125,7 @@ public:
*/
*/
EDA_BaseStruct
*
operator
[](
int
ndx
)
const
EDA_BaseStruct
*
operator
[](
int
ndx
)
const
{
{
if
(
(
unsigned
)
ndx
<
(
unsigned
)
GetCount
()
)
if
(
(
unsigned
)
ndx
<
GetCount
()
)
return
list
[
ndx
];
return
list
[
ndx
];
return
NULL
;
return
NULL
;
}
}
...
...
include/pcbstruct.h
View file @
2e13ccf0
...
@@ -175,6 +175,13 @@ public:
...
@@ -175,6 +175,13 @@ public:
public
:
public
:
EDA_BoardDesignSettings
(
void
);
EDA_BoardDesignSettings
(
void
);
/**
* Function GetVisibleLayers
* returns a bit-map of all the layers that are visible.
* @return int - the visible layers in bit-mapped form.
*/
int
GetVisibleLayers
();
};
};
...
...
include/wxstruct.h
View file @
2e13ccf0
...
@@ -96,7 +96,7 @@ class WinEDA3D_DrawFrame;
...
@@ -96,7 +96,7 @@ class WinEDA3D_DrawFrame;
class
PARAM_CFG_BASE
;
class
PARAM_CFG_BASE
;
class
Ki_PageDescr
;
class
Ki_PageDescr
;
class
Ki_HotkeyInfo
;
class
Ki_HotkeyInfo
;
class
ARROW
COLLECTOR
;
class
GENERAL
COLLECTOR
;
enum
id_librarytype
{
enum
id_librarytype
{
...
@@ -372,6 +372,11 @@ private:
...
@@ -372,6 +372,11 @@ private:
virtual
void
GetComponentFromUndoList
(
void
);
virtual
void
GetComponentFromUndoList
(
void
);
virtual
void
GetComponentFromRedoList
(
void
);
virtual
void
GetComponentFromRedoList
(
void
);
#if defined(DEBUG)
protected
:
GENERALCOLLECTOR
*
m_Collector
;
#endif
public
:
public
:
// Read/write fonctions:
// Read/write fonctions:
...
@@ -385,8 +390,8 @@ public:
...
@@ -385,8 +390,8 @@ public:
// Gestion du PCB
// Gestion du PCB
bool
Clear_Pcb
(
wxDC
*
DC
,
bool
query
);
bool
Clear_Pcb
(
wxDC
*
DC
,
bool
query
);
EDA_BaseStruct
*
PcbGeneralLocateAndDisplay
();
BOARD_ITEM
*
PcbGeneralLocateAndDisplay
();
EDA_BaseStruct
*
Locate
(
int
typeloc
,
int
LayerSearch
);
BOARD_ITEM
*
Locate
(
int
typeloc
,
int
LayerSearch
);
// Gestion du curseur
// Gestion du curseur
void
place_marqueur
(
wxDC
*
DC
,
const
wxPoint
&
pos
,
char
*
pt_bitmap
,
void
place_marqueur
(
wxDC
*
DC
,
const
wxPoint
&
pos
,
char
*
pt_bitmap
,
...
@@ -517,11 +522,6 @@ private:
...
@@ -517,11 +522,6 @@ private:
bool
m_SelViaSizeBox_Changed
;
bool
m_SelViaSizeBox_Changed
;
wxMenu
*
m_FilesMenu
;
wxMenu
*
m_FilesMenu
;
#if defined(DEBUG)
ARROWCOLLECTOR
*
m_ArrowCollector
;
///< while arrow icon tool
#endif
public
:
public
:
WinEDA_PcbFrame
(
wxWindow
*
father
,
WinEDA_App
*
parent
,
const
wxString
&
title
,
WinEDA_PcbFrame
(
wxWindow
*
father
,
WinEDA_App
*
parent
,
const
wxString
&
title
,
const
wxPoint
&
pos
,
const
wxSize
&
size
);
const
wxPoint
&
pos
,
const
wxSize
&
size
);
...
...
pcbnew/class_board.cpp
View file @
2e13ccf0
...
@@ -311,13 +311,21 @@ SEARCH_RESULT BOARD::Visit( INSPECTOR* inspector, const void* testData,
...
@@ -311,13 +311,21 @@ SEARCH_RESULT BOARD::Visit( INSPECTOR* inspector, const void* testData,
KICAD_T
stype
;
KICAD_T
stype
;
SEARCH_RESULT
result
=
SEARCH_CONTINUE
;
SEARCH_RESULT
result
=
SEARCH_CONTINUE
;
const
KICAD_T
*
p
=
scanTypes
;
const
KICAD_T
*
p
=
scanTypes
;
bool
done
=
false
;
#if defined(DEBUG)
std
::
cout
<<
GetClass
().
mb_str
()
<<
' '
;
#endif
while
(
(
stype
=
*
p
++
)
!=
EOT
)
while
(
!
done
)
{
{
stype
=
*
p
;
switch
(
stype
)
switch
(
stype
)
{
{
case
TYPEPCB
:
case
TYPEPCB
:
result
=
inspector
->
Inspect
(
this
,
testData
);
// inspect me
result
=
inspector
->
Inspect
(
this
,
testData
);
// inspect me
// skip over any types handled in the above call.
++
p
;
break
;
break
;
/* Instances of the requested KICAD_T live in a list, either one
/* Instances of the requested KICAD_T live in a list, either one
...
@@ -332,7 +340,21 @@ SEARCH_RESULT BOARD::Visit( INSPECTOR* inspector, const void* testData,
...
@@ -332,7 +340,21 @@ SEARCH_RESULT BOARD::Visit( INSPECTOR* inspector, const void* testData,
case
TYPETEXTEMODULE
:
case
TYPETEXTEMODULE
:
case
TYPEEDGEMODULE
:
case
TYPEEDGEMODULE
:
// this calls MODULE::Visit() on each module.
// this calls MODULE::Visit() on each module.
result
=
IterateForward
(
m_Modules
,
inspector
,
testData
,
scanTypes
);
result
=
IterateForward
(
m_Modules
,
inspector
,
testData
,
p
);
// skip over any types handled in the above call.
for
(;;)
{
switch
(
stype
=
*++
p
)
{
case
TYPEMODULE
:
case
TYPEPAD
:
case
TYPETEXTEMODULE
:
case
TYPEEDGEMODULE
:
continue
;
default
:
;
}
break
;
}
break
;
break
;
case
TYPEDRAWSEGMENT
:
case
TYPEDRAWSEGMENT
:
...
@@ -340,27 +362,59 @@ SEARCH_RESULT BOARD::Visit( INSPECTOR* inspector, const void* testData,
...
@@ -340,27 +362,59 @@ SEARCH_RESULT BOARD::Visit( INSPECTOR* inspector, const void* testData,
case
TYPEMARQUEUR
:
case
TYPEMARQUEUR
:
case
TYPECOTATION
:
case
TYPECOTATION
:
case
TYPEMIRE
:
case
TYPEMIRE
:
result
=
IterateForward
(
m_Drawings
,
inspector
,
testData
,
scanTypes
);
result
=
IterateForward
(
m_Drawings
,
inspector
,
testData
,
p
);
// skip over any types handled in the above call.
for
(;;)
{
switch
(
stype
=
*++
p
)
{
case
TYPEDRAWSEGMENT
:
case
TYPETEXTE
:
case
TYPEMARQUEUR
:
case
TYPECOTATION
:
case
TYPEMIRE
:
continue
;
default
:
;
}
break
;
}
;
break
;
break
;
case
TYPEVIA
:
case
TYPEVIA
:
case
TYPETRACK
:
case
TYPETRACK
:
result
=
IterateForward
(
m_Track
,
inspector
,
testData
,
scanTypes
);
result
=
IterateForward
(
m_Track
,
inspector
,
testData
,
p
);
// skip over any types handled in the above call.
for
(;;)
{
switch
(
stype
=
*++
p
)
{
case
TYPEVIA
:
case
TYPETRACK
:
continue
;
default
:
;
}
break
;
}
break
;
break
;
case
PCB_EQUIPOT_STRUCT_TYPE
:
case
PCB_EQUIPOT_STRUCT_TYPE
:
result
=
IterateForward
(
m_Equipots
,
inspector
,
testData
,
scanTypes
);
result
=
IterateForward
(
m_Equipots
,
inspector
,
testData
,
p
);
++
p
;
break
;
break
;
case
TYPEZONE
:
case
TYPEZONE
:
result
=
IterateForward
(
m_Zone
,
inspector
,
testData
,
scanTypes
);
result
=
IterateForward
(
m_Zone
,
inspector
,
testData
,
p
);
++
p
;
break
;
break
;
case
TYPEEDGEZONE
:
case
TYPEEDGEZONE
:
result
=
IterateForward
(
m_CurrentLimitZone
,
inspector
,
testData
,
scanTypes
);
result
=
IterateForward
(
m_CurrentLimitZone
,
inspector
,
testData
,
p
);
++
p
;
break
;
break
;
default
:
default
:
// catch EOT or ANY OTHER type here and return.
done
=
true
;
break
;
break
;
}
}
...
...
pcbnew/class_module.cpp
View file @
2e13ccf0
...
@@ -1181,17 +1181,25 @@ SEARCH_RESULT MODULE::Visit( INSPECTOR* inspector, const void* testData,
...
@@ -1181,17 +1181,25 @@ SEARCH_RESULT MODULE::Visit( INSPECTOR* inspector, const void* testData,
KICAD_T
stype
;
KICAD_T
stype
;
SEARCH_RESULT
result
=
SEARCH_CONTINUE
;
SEARCH_RESULT
result
=
SEARCH_CONTINUE
;
const
KICAD_T
*
p
=
scanTypes
;
const
KICAD_T
*
p
=
scanTypes
;
bool
done
=
false
;
#if defined(DEBUG)
std
::
cout
<<
GetClass
().
mb_str
()
<<
' '
;
#endif
while
(
(
stype
=
*
p
++
)
!=
EOT
)
while
(
!
done
)
{
{
stype
=
*
p
;
switch
(
stype
)
switch
(
stype
)
{
{
case
TYPEMODULE
:
case
TYPEMODULE
:
result
=
inspector
->
Inspect
(
this
,
testData
);
// inspect me
result
=
inspector
->
Inspect
(
this
,
testData
);
// inspect me
++
p
;
break
;
break
;
case
TYPEPAD
:
case
TYPEPAD
:
result
=
IterateForward
(
m_Pads
,
inspector
,
testData
,
scanTypes
);
result
=
IterateForward
(
m_Pads
,
inspector
,
testData
,
p
);
++
p
;
break
;
break
;
case
TYPETEXTEMODULE
:
case
TYPETEXTEMODULE
:
...
@@ -1203,15 +1211,26 @@ SEARCH_RESULT MODULE::Visit( INSPECTOR* inspector, const void* testData,
...
@@ -1203,15 +1211,26 @@ SEARCH_RESULT MODULE::Visit( INSPECTOR* inspector, const void* testData,
if
(
result
==
SEARCH_QUIT
)
if
(
result
==
SEARCH_QUIT
)
break
;
break
;
// m_Drawings can hold TYPETEXTMODULE also?
// m_Drawings can hold TYPETEXTMODULE also, so fall thru
result
=
IterateForward
(
m_Drawings
,
inspector
,
testData
,
scanTypes
);
break
;
case
TYPEEDGEMODULE
:
case
TYPEEDGEMODULE
:
result
=
IterateForward
(
m_Drawings
,
inspector
,
testData
,
scanTypes
);
result
=
IterateForward
(
m_Drawings
,
inspector
,
testData
,
p
);
// skip over any types handled in the above call.
for
(;;)
{
switch
(
stype
=
*++
p
)
{
case
TYPETEXTEMODULE
:
case
TYPEEDGEMODULE
:
continue
;
default
:
;
}
break
;
}
break
;
break
;
default
:
default
:
done
=
true
;
break
;
break
;
}
}
...
...
pcbnew/class_module.h
View file @
2e13ccf0
...
@@ -92,9 +92,10 @@ public:
...
@@ -92,9 +92,10 @@ public:
/**
/**
* Function IsLocked
* Function IsLocked
* (virtual from BOARD_ITEM )
* @returns bool - true if the MODULE is locked, else false
* @returns bool - true if the MODULE is locked, else false
*/
*/
bool
IsLocked
()
bool
IsLocked
()
const
{
{
return
(
m_ModuleStatus
&
MODULE_is_LOCKED
)
!=
0
;
return
(
m_ModuleStatus
&
MODULE_is_LOCKED
)
!=
0
;
}
}
...
@@ -114,7 +115,7 @@ public:
...
@@ -114,7 +115,7 @@ public:
}
}
/* Readin
d
and writing data on files */
/* Readin
g
and writing data on files */
int
WriteDescr
(
FILE
*
File
);
int
WriteDescr
(
FILE
*
File
);
int
Write_3D_Descr
(
FILE
*
File
);
int
Write_3D_Descr
(
FILE
*
File
);
int
ReadDescr
(
FILE
*
File
,
int
*
LineNum
=
NULL
);
int
ReadDescr
(
FILE
*
File
,
int
*
LineNum
=
NULL
);
...
@@ -147,6 +148,16 @@ public:
...
@@ -147,6 +148,16 @@ public:
bool
HitTest
(
const
wxPoint
&
refPos
);
bool
HitTest
(
const
wxPoint
&
refPos
);
/**
* Function GetReference
* @return wxString - the reference designator text.
*/
const
wxString
&
GetReference
()
{
return
m_Reference
->
m_Text
;
}
/**
/**
* Function Visit
* Function Visit
* should be re-implemented for each derived class in order to handle
* should be re-implemented for each derived class in order to handle
...
...
pcbnew/class_text_mod.cpp
View file @
2e13ccf0
...
@@ -369,6 +369,40 @@ void TEXTE_MODULE::Display_Infos( WinEDA_DrawFrame* frame )
...
@@ -369,6 +369,40 @@ void TEXTE_MODULE::Display_Infos( WinEDA_DrawFrame* frame )
}
}
// see class_text_mod.h
bool
TEXTE_MODULE
::
IsOnLayer
(
int
aLayer
)
const
{
if
(
m_Layer
==
aLayer
)
return
true
;
/* test the parent, which is a MODULE */
if
(
aLayer
==
GetParent
()
->
GetLayer
()
)
return
true
;
if
(
aLayer
==
CUIVRE_N
)
{
if
(
m_Layer
==
ADHESIVE_N_CU
||
m_Layer
==
SILKSCREEN_N_CU
)
return
true
;
}
else
if
(
aLayer
==
CMP_N
)
{
if
(
m_Layer
==
ADHESIVE_N_CMP
||
m_Layer
==
SILKSCREEN_N_CMP
)
return
true
;
}
return
false
;
}
/* see class_text_mod.h
bool TEXTE_MODULE::IsOnOneOfTheseLayers( int aLayerMask ) const
{
}
*/
#if defined(DEBUG)
#if defined(DEBUG)
/**
/**
* Function Show
* Function Show
...
...
pcbnew/class_text_mod.h
View file @
2e13ccf0
...
@@ -73,6 +73,31 @@ public:
...
@@ -73,6 +73,31 @@ public:
* @return bool - true if a hit, else false
* @return bool - true if a hit, else false
*/
*/
bool
HitTest
(
const
wxPoint
&
posref
);
bool
HitTest
(
const
wxPoint
&
posref
);
/**
* Function IsOnLayer
* tests to see if this object is on the given layer. Is virtual so
* objects like D_PAD, which reside on multiple layers can do their own
* form of testing.
* virtual inheritance from BOARD_ITEM.
* @param aLayer The layer to test for.
* @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
* objects like D_PAD, which reside on multiple layers, can do their own
* form of testing.
* virtual inheritance from BOARD_ITEM.
* @param aLayerMask The bit-mapped set of layers to test for.
* @return bool - true if on one of the given layers, else false.
bool IsOnOneOfTheseLayers( int aLayerMask ) const;
*/
#if defined(DEBUG)
#if defined(DEBUG)
/**
/**
...
...
pcbnew/classpcb.cpp
View file @
2e13ccf0
...
@@ -429,3 +429,19 @@ EDA_BoardDesignSettings::EDA_BoardDesignSettings( void )
...
@@ -429,3 +429,19 @@ EDA_BoardDesignSettings::EDA_BoardDesignSettings( void )
m_PadCMPColor
=
RED
;
// Pad color for the COPPER side of the pad
m_PadCMPColor
=
RED
;
// Pad color for the COPPER side of the pad
m_RatsnestColor
=
WHITE
;
// Ratsnest color
m_RatsnestColor
=
WHITE
;
// Ratsnest color
}
}
// see pcbstruct.h
int
EDA_BoardDesignSettings
::
GetVisibleLayers
()
{
int
layerMask
=
0
;
for
(
int
i
=
0
,
mask
=
1
;
i
<
32
;
++
i
,
mask
<<=
1
)
{
if
(
!
(
m_LayerColor
[
i
]
&
ITEM_NOT_SHOW
)
)
layerMask
|=
mask
;
}
return
layerMask
;
}
pcbnew/classtrc.cpp
View file @
2e13ccf0
This diff is collapsed.
Click to expand it.
pcbnew/collectors.cpp
View file @
2e13ccf0
...
@@ -34,7 +34,7 @@
...
@@ -34,7 +34,7 @@
// see collectors.h
// see collectors.h
const
KICAD_T
ARROW
COLLECTOR
::
AllBoardItems
[]
=
{
const
KICAD_T
GENERAL
COLLECTOR
::
AllBoardItems
[]
=
{
TYPETEXTE
,
TYPETEXTE
,
TYPEDRAWSEGMENT
,
TYPEDRAWSEGMENT
,
TYPECOTATION
,
TYPECOTATION
,
...
@@ -59,45 +59,82 @@ const KICAD_T ARROWCOLLECTOR::AllBoardItems[] = {
...
@@ -59,45 +59,82 @@ const KICAD_T ARROWCOLLECTOR::AllBoardItems[] = {
* @return SEARCH_RESULT - SEARCH_QUIT if the Iterator is to stop the scan,
* @return SEARCH_RESULT - SEARCH_QUIT if the Iterator is to stop the scan,
* else SCAN_CONTINUE;
* else SCAN_CONTINUE;
*/
*/
SEARCH_RESULT
ARROW
COLLECTOR
::
Inspect
(
EDA_BaseStruct
*
testItem
,
const
void
*
notUsed
)
SEARCH_RESULT
GENERAL
COLLECTOR
::
Inspect
(
EDA_BaseStruct
*
testItem
,
const
void
*
notUsed
)
{
{
BOARD_ITEM
*
item
=
(
BOARD_ITEM
*
)
testItem
;
BOARD_ITEM
*
item
=
(
BOARD_ITEM
*
)
testItem
;
#if 1 // debugging
static
int
breakhere
=
0
;
switch
(
item
->
m_StructType
)
{
case
TYPEPAD
:
breakhere
++
;
break
;
case
TYPEVIA
:
breakhere
++
;
break
;
case
TYPETRACK
:
breakhere
++
;
break
;
case
TYPETEXTE
:
breakhere
++
;
break
;
case
TYPEDRAWSEGMENT
:
breakhere
++
;
break
;
case
TYPECOTATION
:
breakhere
++
;
break
;
case
TYPETEXTEMODULE
:
TEXTE_MODULE
*
tm
;
tm
=
(
TEXTE_MODULE
*
)
item
;
if
(
tm
->
m_Text
==
wxT
(
"U5"
)
)
{
breakhere
++
;
}
break
;
case
TYPEMODULE
:
breakhere
++
;
break
;
default
:
breakhere
++
;
break
;
}
#endif
switch
(
item
->
m_StructType
)
switch
(
item
->
m_StructType
)
{
{
case
TYPEPAD
:
case
TYPEPAD
:
case
TYPEVIA
:
case
TYPEVIA
:
/*
if( item->IsOnOneOfTheseLayers( m_LayerMask ) )
{
if( item->HitTest( refPos ) )
Append2nd( testItem );
}
*/
break
;
case
TYPETRACK
:
case
TYPETRACK
:
case
TYPETEXTE
:
case
TYPETEXTE
:
case
TYPEDRAWSEGMENT
:
case
TYPEDRAWSEGMENT
:
case
TYPECOTATION
:
case
TYPECOTATION
:
case
TYPETEXTEMODULE
:
case
TYPETEXTEMODULE
:
case
TYPEMODULE
:
case
TYPEMODULE
:
if
(
item
->
GetLayer
()
==
m_PreferredLayer
)
// The primary search criteria:
if
(
item
->
IsOnLayer
(
m_PreferredLayer
)
)
{
{
if
(
item
->
HitTest
(
m_RefPos
)
)
if
(
item
->
HitTest
(
m_RefPos
)
)
Append
(
item
);
{
if
(
!
item
->
IsLocked
()
)
Append
(
item
);
else
Append2nd
(
item
);
// 2nd if locked.
}
}
}
/*
// The secondary search criteria
else
if
(
item
->
IsOnOneOfTheseLayers
(
m_LayerMask
)
)
else
if
(
item
->
IsOnOneOfTheseLayers
(
m_LayerMask
)
)
{
{
if
(
item
->
HitTest
(
m_RefPos
)
)
if
(
item
->
HitTest
(
m_RefPos
)
)
Append2nd
(
item
);
Append2nd
(
item
);
}
}
*/
break
;
break
;
default
:
default
:
;
// nothing
printf
(
"OOPS, not expecting class type %d
\n
"
,
item
->
m_StructType
);
}
}
return
SEARCH_CONTINUE
;
return
SEARCH_CONTINUE
;
...
@@ -105,16 +142,23 @@ SEARCH_RESULT ARROWCOLLECTOR::Inspect( EDA_BaseStruct* testItem, const void* not
...
@@ -105,16 +142,23 @@ SEARCH_RESULT ARROWCOLLECTOR::Inspect( EDA_BaseStruct* testItem, const void* not
// see collectors.h
// see collectors.h
void
ARROW
COLLECTOR
::
Scan
(
BOARD
*
board
,
const
wxPoint
&
refPos
,
void
GENERAL
COLLECTOR
::
Scan
(
BOARD
*
board
,
const
wxPoint
&
refPos
,
int
aPreferredLayer
,
int
aLayerMask
)
int
aPreferredLayer
,
int
aLayerMask
)
{
{
Empty
();
// empty the collection, primary criteria list
Empty
();
// empty the collection, primary criteria list
Empty2nd
();
// empty the collection, secondary criteria list
Empty2nd
();
// empty the collection, secondary criteria list
SetPreferredLayer
(
aPreferredLayer
);
SetLayerMask
(
aLayerMask
);
/* remember where the snapshot was taken from and pass refPos to
/* remember where the snapshot was taken from and pass refPos to
the Inspect() function.
the Inspect() function.
*/
*/
SetRefPos
(
refPos
);
SetRefPos
(
refPos
);
#if defined(DEBUG)
std
::
cout
<<
'\n'
;
#endif
// visit the board with the INSPECTOR (me).
// visit the board with the INSPECTOR (me).
board
->
Visit
(
this
,
// INSPECTOR* inspector
board
->
Visit
(
this
,
// INSPECTOR* inspector
...
@@ -123,7 +167,9 @@ void ARROWCOLLECTOR::Scan( BOARD* board, const wxPoint& refPos,
...
@@ -123,7 +167,9 @@ void ARROWCOLLECTOR::Scan( BOARD* board, const wxPoint& refPos,
SetTimeNow
();
// when snapshot was taken
SetTimeNow
();
// when snapshot was taken
// @todo: append 2nd list onto end of the first "list"
// append 2nd list onto end of the first "list"
for
(
unsigned
i
=
0
;
i
<
list2nd
.
size
();
++
i
)
Append
(
list2nd
[
i
]
);
Empty2nd
();
Empty2nd
();
}
}
...
...
pcbnew/collectors.h
View file @
2e13ccf0
...
@@ -33,26 +33,18 @@
...
@@ -33,26 +33,18 @@
#include "class_collector.h"
#include "class_collector.h"
class
RAT1COLLECTOR
:
public
COLLECTOR
{
;
};
/**
/**
* Class
ARROW
COLLECTOR
* Class
GENERAL
COLLECTOR
* is intended for use when the right click button is pressed, or when the
* is intended for use when the right click button is pressed, or when the
* plain "arrow" tool is in effect. This class can be used by window classes
* plain "arrow" tool is in effect. This class can be used by window classes
* such as WinEDA_PcbFrame.
* such as WinEDA_PcbFrame.
*
*
* Philosophy: this class knows nothing of the context in which a
s
BOARD is used
* Philosophy: this class knows nothing of the context in which a BOARD is used
* and that means it knows nothing about which layers are visible or current,
* and that means it knows nothing about which layers are visible or current,
* but can handle those concerns by the SetPreferredLayer() function and the
* but can handle those concerns by the SetPreferredLayer() function and the
* SetLayerMask() fuction.
* SetLayerMask() fuction.
*/
*/
class
ARROW
COLLECTOR
:
public
COLLECTOR
class
GENERAL
COLLECTOR
:
public
COLLECTOR
{
{
/**
/**
* A place to hold collected objects which don't match precisely the search
* A place to hold collected objects which don't match precisely the search
...
@@ -60,7 +52,7 @@ class ARROWCOLLECTOR : public COLLECTOR
...
@@ -60,7 +52,7 @@ class ARROWCOLLECTOR : public COLLECTOR
* "2nd" choice, which will be appended to the end of COLLECTOR's prime
* "2nd" choice, which will be appended to the end of COLLECTOR's prime
* "list" at the end of the search.
* "list" at the end of the search.
*/
*/
std
::
vector
<
EDA_BaseStruct
*>
list2nd
;
std
::
vector
<
BOARD_ITEM
*>
list2nd
;
/**
/**
...
@@ -77,9 +69,9 @@ public:
...
@@ -77,9 +69,9 @@ public:
/**
/**
* Constructor
ARROW
COLLECTOR
* Constructor
GENERAL
COLLECTOR
*/
*/
ARROW
COLLECTOR
()
GENERAL
COLLECTOR
()
{
{
m_LayerMask
=
0
;
m_LayerMask
=
0
;
SetScanTypes
(
AllBoardItems
);
SetScanTypes
(
AllBoardItems
);
...
@@ -90,7 +82,7 @@ public:
...
@@ -90,7 +82,7 @@ public:
list2nd
.
clear
();
list2nd
.
clear
();
}
}
void
Append2nd
(
EDA_BaseStruct
*
item
)
void
Append2nd
(
BOARD_ITEM
*
item
)
{
{
list2nd
.
push_back
(
item
);
list2nd
.
push_back
(
item
);
}
}
...
@@ -99,7 +91,7 @@ public:
...
@@ -99,7 +91,7 @@ public:
/**
/**
* Function SetLayerMask
* Function SetLayerMask
* takes a bit-mapped layer mask and records it. During the scan/search,
* takes a bit-mapped layer mask and records it. During the scan/search,
* this is used as a secondary criterion. That is, if there is no direct
* this is used as a secondary
search
criterion. That is, if there is no direct
* layer match with COLLECTOR::m_PreferredLayer (the primary criterion),
* layer match with COLLECTOR::m_PreferredLayer (the primary criterion),
* then an object on any layer given in this bit-map is recorded as a
* then an object on any layer given in this bit-map is recorded as a
* second choice object if it also HitTest()s true.
* second choice object if it also HitTest()s true.
...
@@ -115,6 +107,21 @@ public:
...
@@ -115,6 +107,21 @@ public:
}
}
/**
* Function operator[int]
* overloads COLLECTOR::operator[](int) to return a BOARD_ITEM* instead of
* an EDA_BaseStruct* type.
* @param ndx The index into the list.
* @return BOARD_ITEM* - or something derived from it, or NULL.
*/
BOARD_ITEM
*
operator
[](
int
ndx
)
const
{
if
(
(
unsigned
)
ndx
<
(
unsigned
)
GetCount
()
)
return
(
BOARD_ITEM
*
)
list
[
ndx
];
return
NULL
;
}
/**
/**
* Function Inspect
* Function Inspect
* is the examining function within the INSPECTOR which is passed to the
* is the examining function within the INSPECTOR which is passed to the
...
@@ -133,6 +140,8 @@ public:
...
@@ -133,6 +140,8 @@ public:
* scans a BOARD using this class's Inspector method, which does the collection.
* scans a BOARD using this class's Inspector method, which does the collection.
* @param board A BOARD to scan.
* @param board A BOARD to scan.
* @param refPos A wxPoint to use in hit-testing.
* @param refPos A wxPoint to use in hit-testing.
* @param aPreferredLayer The layer meeting the primary search criterion.
* @param aLayerMask The layers, in bit-mapped form, meeting the secondary search criterion.
*/
*/
void
Scan
(
BOARD
*
board
,
const
wxPoint
&
refPos
,
int
aPreferredLayer
,
int
aLayerMask
);
void
Scan
(
BOARD
*
board
,
const
wxPoint
&
refPos
,
int
aPreferredLayer
,
int
aLayerMask
);
};
};
...
...
pcbnew/controle.cpp
View file @
2e13ccf0
...
@@ -16,6 +16,7 @@
...
@@ -16,6 +16,7 @@
#include "id.h"
#include "id.h"
#include "protos.h"
#include "protos.h"
#include "collectors.h"
/* Routines Locales : */
/* Routines Locales : */
...
@@ -44,8 +45,6 @@ void RemoteCommand( const char* cmdline )
...
@@ -44,8 +45,6 @@ void RemoteCommand( const char* cmdline )
if
(
(
idcmd
==
NULL
)
||
(
text
==
NULL
)
)
if
(
(
idcmd
==
NULL
)
||
(
text
==
NULL
)
)
return
;
return
;
// @todo: this code does not reposition the window when the chosen part is scrolled off screen.
if
(
strcmp
(
idcmd
,
"$PART:"
)
==
0
)
if
(
strcmp
(
idcmd
,
"$PART:"
)
==
0
)
{
{
msg
=
CONV_FROM_UTF8
(
text
);
msg
=
CONV_FROM_UTF8
(
text
);
...
@@ -93,11 +92,11 @@ void RemoteCommand( const char* cmdline )
...
@@ -93,11 +92,11 @@ void RemoteCommand( const char* cmdline )
if
(
netcode
>
0
)
/* hightlighted the net selected net*/
if
(
netcode
>
0
)
/* hightlighted the net selected net*/
{
{
if
(
g_HightLigt_Status
)
/* erase the old hightlighted net */
if
(
g_HightLigt_Status
)
/* erase the old hightlighted net */
frame
->
Hight_Light
(
&
dc
);
frame
->
Hight_Light
(
&
dc
);
g_HightLigth_NetCode
=
netcode
;
g_HightLigth_NetCode
=
netcode
;
frame
->
Hight_Light
(
&
dc
);
/* hightlighted the new one */
frame
->
Hight_Light
(
&
dc
);
/* hightlighted the new one */
frame
->
DrawPanel
->
CursorOff
(
&
dc
);
frame
->
DrawPanel
->
CursorOff
(
&
dc
);
frame
->
GetScreen
()
->
m_Curseur
=
pad
->
m_Pos
;
frame
->
GetScreen
()
->
m_Curseur
=
pad
->
m_Pos
;
...
@@ -113,13 +112,13 @@ void RemoteCommand( const char* cmdline )
...
@@ -113,13 +112,13 @@ void RemoteCommand( const char* cmdline )
frame
->
Affiche_Message
(
msg
);
frame
->
Affiche_Message
(
msg
);
}
}
if
(
module
)
// center the module on screen.
if
(
module
)
//
if found,
center the module on screen.
frame
->
Recadre_Trace
(
false
);
frame
->
Recadre_Trace
(
false
);
}
}
/***********************************************************************/
/***********************************************************************/
EDA_BaseStruct
*
WinEDA_BasePcbFrame
::
PcbGeneralLocateAndDisplay
(
void
)
BOARD_ITEM
*
WinEDA_BasePcbFrame
::
PcbGeneralLocateAndDisplay
(
)
/***********************************************************************/
/***********************************************************************/
/* Search an item under the mouse cursor.
/* Search an item under the mouse cursor.
...
@@ -127,12 +126,43 @@ EDA_BaseStruct* WinEDA_BasePcbFrame::PcbGeneralLocateAndDisplay( void )
...
@@ -127,12 +126,43 @@ EDA_BaseStruct* WinEDA_BasePcbFrame::PcbGeneralLocateAndDisplay( void )
* if nothing found, an item will be searched without layer restriction
* if nothing found, an item will be searched without layer restriction
*/
*/
{
{
EDA_BaseStruct
*
item
;
BOARD_ITEM
*
item
;
#if defined(DEBUG)
// test scaffolding for Scan():
m_Collector
->
Scan
(
m_Pcb
,
GetScreen
()
->
RefPos
(
true
),
// these two are inadequate, because the layer support
// in Kicad is not elegant or easily understood.
// The final solution will be a new class COLLECTORS_GUIDE!
GetScreen
()
->
m_Active_Layer
,
g_DesignSettings
.
GetVisibleLayers
()
);
// use only the first one collected for now.
item
=
(
*
m_Collector
)[
0
];
// grab first one, may be NULL
std
::
cout
<<
"collected "
<<
m_Collector
->
GetCount
()
<<
'\n'
;
// debugging only
if
(
item
)
{
item
->
Display_Infos
(
this
);
// debugging: print out the collected items, showing their order too.
for
(
unsigned
i
=
0
;
i
<
m_Collector
->
GetCount
();
++
i
)
(
*
m_Collector
)[
i
]
->
Show
(
0
,
std
::
cout
);
}
return
item
;
#else
item
=
Locate
(
CURSEUR_OFF_GRILLE
,
GetScreen
()
->
m_Active_Layer
);
item
=
Locate
(
CURSEUR_OFF_GRILLE
,
GetScreen
()
->
m_Active_Layer
);
if
(
item
==
NULL
)
if
(
item
==
NULL
)
item
=
Locate
(
CURSEUR_OFF_GRILLE
,
-
1
);
item
=
Locate
(
CURSEUR_OFF_GRILLE
,
-
1
);
return
item
;
return
item
;
#endif
}
}
...
...
pcbnew/files.cpp
View file @
2e13ccf0
...
@@ -235,7 +235,7 @@ int WinEDA_PcbFrame::LoadOnePcbFile( const wxString& FullFileName, wxDC* DC, boo
...
@@ -235,7 +235,7 @@ int WinEDA_PcbFrame::LoadOnePcbFile( const wxString& FullFileName, wxDC* DC, boo
g_SaveTime
=
time
(
NULL
);
g_SaveTime
=
time
(
NULL
);
#if
0
&& defined(DEBUG)
#if
1
&& defined(DEBUG)
// note this seems to freeze up pcbnew when run under the kicad project
// note this seems to freeze up pcbnew when run under the kicad project
// manager. runs fine from command prompt.
// manager. runs fine from command prompt.
// output the board object tree to stdout:
// output the board object tree to stdout:
...
...
pcbnew/locate.cpp
View file @
2e13ccf0
...
@@ -15,7 +15,7 @@
...
@@ -15,7 +15,7 @@
/* fonctions locales */
/* fonctions locales */
EDA_BaseStruct
*
Locate_MirePcb
(
EDA_BaseStruct
*
PtStruct
,
int
LayerSearch
,
int
typeloc
);
MIREPCB
*
Locate_MirePcb
(
BOARD_ITEM
*
PtStruct
,
int
LayerSearch
,
int
typeloc
);
D_PAD
*
Locate_Any_Pad
(
BOARD
*
Pcb
,
const
wxPoint
&
ref_pos
,
bool
OnlyCurrentLayer
);
D_PAD
*
Locate_Any_Pad
(
BOARD
*
Pcb
,
const
wxPoint
&
ref_pos
,
bool
OnlyCurrentLayer
);
...
@@ -84,7 +84,7 @@ D_PAD* ReturnPad( MODULE* module, const wxString& name )
...
@@ -84,7 +84,7 @@ D_PAD* ReturnPad( MODULE* module, const wxString& name )
/*******************************************************************************/
/*******************************************************************************/
EDA_BaseStruct
*
WinEDA_BasePcbFrame
::
Locate
(
int
typeloc
,
int
LayerSearch
)
BOARD_ITEM
*
WinEDA_BasePcbFrame
::
Locate
(
int
typeloc
,
int
LayerSearch
)
/*******************************************************************************/
/*******************************************************************************/
/* General locate function
/* General locate function
...
@@ -93,7 +93,7 @@ EDA_BaseStruct* WinEDA_BasePcbFrame::Locate( int typeloc, int LayerSearch )
...
@@ -93,7 +93,7 @@ EDA_BaseStruct* WinEDA_BasePcbFrame::Locate( int typeloc, int LayerSearch )
*/
*/
{
{
int
masque_layer
;
int
masque_layer
;
EDA_BaseStruct
*
item
;
BOARD_ITEM
*
item
;
item
=
Locate_Texte_Pcb
(
m_Pcb
->
m_Drawings
,
LayerSearch
,
typeloc
);
item
=
Locate_Texte_Pcb
(
m_Pcb
->
m_Drawings
,
LayerSearch
,
typeloc
);
if
(
item
)
if
(
item
)
...
@@ -324,7 +324,7 @@ EDGE_MODULE* Locate_Edge_Module( MODULE* module, int typeloc )
...
@@ -324,7 +324,7 @@ EDGE_MODULE* Locate_Edge_Module( MODULE* module, int typeloc )
/*************************************************************************/
/*************************************************************************/
EDA_BaseStruct
*
Locate_Cotation
(
BOARD
*
Pcb
,
int
LayerSearch
,
int
typeloc
)
COTATION
*
Locate_Cotation
(
BOARD
*
Pcb
,
int
LayerSearch
,
int
typeloc
)
/*************************************************************************/
/*************************************************************************/
/* Serach for a cotation item , on LayerSearch,
/* Serach for a cotation item , on LayerSearch,
...
@@ -334,8 +334,8 @@ EDA_BaseStruct* Locate_Cotation( BOARD* Pcb, int LayerSearch, int typeloc )
...
@@ -334,8 +334,8 @@ EDA_BaseStruct* Locate_Cotation( BOARD* Pcb, int LayerSearch, int typeloc )
{
{
wxPoint
ref_pos
=
RefPos
(
typeloc
);
wxPoint
ref_pos
=
RefPos
(
typeloc
);
EDA_BaseStruct
*
PtStruct
=
Pcb
->
m_Drawings
;
BOARD_ITEM
*
PtStruct
=
Pcb
->
m_Drawings
;
for
(
;
PtStruct
!=
NULL
;
PtStruct
=
PtStruct
->
Pnext
)
for
(
;
PtStruct
!=
NULL
;
PtStruct
=
PtStruct
->
Next
()
)
{
{
if
(
PtStruct
->
m_StructType
!=
TYPECOTATION
)
if
(
PtStruct
->
m_StructType
!=
TYPECOTATION
)
continue
;
continue
;
...
@@ -1027,8 +1027,7 @@ TRACK* Fast_Locate_Via( TRACK* start_adr, TRACK* end_adr,
...
@@ -1027,8 +1027,7 @@ TRACK* Fast_Locate_Via( TRACK* start_adr, TRACK* end_adr,
/***********************************************************************/
/***********************************************************************/
EDA_BaseStruct
*
Locate_MirePcb
(
EDA_BaseStruct
*
PtStruct
,
int
LayerSearch
,
MIREPCB
*
Locate_MirePcb
(
BOARD_ITEM
*
PtStruct
,
int
LayerSearch
,
int
typeloc
)
int
typeloc
)
/***********************************************************************/
/***********************************************************************/
/* Search for a photo target
/* Search for a photo target
...
@@ -1041,20 +1040,18 @@ EDA_BaseStruct* Locate_MirePcb( EDA_BaseStruct* PtStruct, int LayerSearch,
...
@@ -1041,20 +1040,18 @@ EDA_BaseStruct* Locate_MirePcb( EDA_BaseStruct* PtStruct, int LayerSearch,
ref_pos
=
RefPos
(
typeloc
);
ref_pos
=
RefPos
(
typeloc
);
for
(
;
PtStruct
!=
NULL
;
PtStruct
=
PtStruct
->
Pnext
)
for
(
;
PtStruct
!=
NULL
;
PtStruct
=
PtStruct
->
Next
()
)
{
{
MIREPCB
*
item
;
if
(
PtStruct
->
m_StructType
!=
TYPEMIRE
)
if
(
PtStruct
->
m_StructType
!=
TYPEMIRE
)
continue
;
continue
;
item
=
(
MIREPCB
*
)
PtStruct
;
if
(
LayerSearch
!=
-
1
&&
PtStruct
->
GetLayer
()
!=
LayerSearch
)
if
(
LayerSearch
!=
-
1
&&
item
->
GetLayer
()
!=
LayerSearch
)
continue
;
continue
;
if
(
item
->
HitTest
(
ref_pos
)
)
if
(
PtStruct
->
HitTest
(
ref_pos
)
)
break
;
break
;
}
}
return
PtStruct
;
return
(
MIREPCB
*
)
PtStruct
;
}
}
pcbnew/pcbframe.cpp
View file @
2e13ccf0
...
@@ -193,7 +193,7 @@ WinEDA_PcbFrame::WinEDA_PcbFrame( wxWindow* father, WinEDA_App* parent,
...
@@ -193,7 +193,7 @@ WinEDA_PcbFrame::WinEDA_PcbFrame( wxWindow* father, WinEDA_App* parent,
m_SelViaSizeBox_Changed
=
FALSE
;
m_SelViaSizeBox_Changed
=
FALSE
;
#if defined(DEBUG)
#if defined(DEBUG)
m_
ArrowCollector
=
new
ARROW
COLLECTOR
();
m_
Collector
=
new
GENERAL
COLLECTOR
();
#endif
#endif
m_DisplayPcbTrackFill
=
DisplayOpt
.
DisplayPcbTrackFill
;
m_DisplayPcbTrackFill
=
DisplayOpt
.
DisplayPcbTrackFill
;
...
@@ -243,7 +243,7 @@ WinEDA_PcbFrame::~WinEDA_PcbFrame( void )
...
@@ -243,7 +243,7 @@ WinEDA_PcbFrame::~WinEDA_PcbFrame( void )
m_CurrentScreen
=
ScreenPcb
;
m_CurrentScreen
=
ScreenPcb
;
#if defined(DEBUG)
#if defined(DEBUG)
delete
m_
Arrow
Collector
;
delete
m_Collector
;
#endif
#endif
}
}
...
...
pcbnew/protos.h
View file @
2e13ccf0
...
@@ -203,7 +203,7 @@ TRACK * Locate_Zone(TRACK * start_adresse, const wxPoint & ref_pos,int layer);
...
@@ -203,7 +203,7 @@ TRACK * Locate_Zone(TRACK * start_adresse, const wxPoint & ref_pos,int layer);
La recherche commence a l'adresse start_adresse
La recherche commence a l'adresse start_adresse
*/
*/
EDA_BaseStruct
*
Locate_Cotation
(
BOARD
*
Pcb
,
int
LayerSearch
,
int
typeloc
);
COTATION
*
Locate_Cotation
(
BOARD
*
Pcb
,
int
LayerSearch
,
int
typeloc
);
/* Localise un element de cotation, en priorite sur la couche active,
/* Localise un element de cotation, en priorite sur la couche active,
et a defaut sur les autres couches
et a defaut sur les autres couches
retourne un pointeur sur l'element (TRACK ou TEXTE_PCB) localise
retourne un pointeur sur l'element (TRACK ou TEXTE_PCB) localise
...
...
pcbnew/set_color.cpp
View file @
2e13ccf0
This diff is collapsed.
Click to expand it.
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