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
caa42eaf
Commit
caa42eaf
authored
Aug 04, 2007
by
dickelbeck
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
reverted to former behavior for special situation when hit-test turns up nothing
parent
7fe80baf
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
67 additions
and
66 deletions
+67
-66
change_log.txt
change_log.txt
+2
-0
edit.cpp
pcbnew/edit.cpp
+1
-2
editrack-part2.cpp
pcbnew/editrack-part2.cpp
+64
-64
No files found.
change_log.txt
View file @
caa42eaf
...
@@ -10,6 +10,8 @@ email address.
...
@@ -10,6 +10,8 @@ email address.
================================================================================
================================================================================
+ pcbnew
+ pcbnew
Read-ability formatting, I am playing with a C++ beautifier called uncrustify.
Read-ability formatting, I am playing with a C++ beautifier called uncrustify.
I had to patch it and spent 2 days getting it configured. Patch not
sent upstream yet.
Fixed a bug in "display local ratsnest pad or module": if you had a small
Fixed a bug in "display local ratsnest pad or module": if you had a small
module and the mouse clicked its reference text, the ratnest for
module and the mouse clicked its reference text, the ratnest for
the associated module would not show. The work around was to add
the associated module would not show. The work around was to add
...
...
pcbnew/edit.cpp
View file @
caa42eaf
...
@@ -126,8 +126,7 @@ void WinEDA_PcbFrame::OnLeftClick( wxDC* DC, const wxPoint& MousePos )
...
@@ -126,8 +126,7 @@ void WinEDA_PcbFrame::OnLeftClick( wxDC* DC, const wxPoint& MousePos )
case
ID_PCB_SHOW_1_RATSNEST_BUTT
:
case
ID_PCB_SHOW_1_RATSNEST_BUTT
:
DrawStruct
=
PcbGeneralLocateAndDisplay
();
DrawStruct
=
PcbGeneralLocateAndDisplay
();
if
(
DrawStruct
)
Show_1_Ratsnest
(
DrawStruct
,
DC
);
Show_1_Ratsnest
(
DrawStruct
,
DC
);
break
;
break
;
case
ID_PCB_MIRE_BUTT
:
case
ID_PCB_MIRE_BUTT
:
...
...
pcbnew/editrack-part2.cpp
View file @
caa42eaf
...
@@ -300,87 +300,87 @@ void WinEDA_PcbFrame::Show_1_Ratsnest( EDA_BaseStruct* item, wxDC* DC )
...
@@ -300,87 +300,87 @@ void WinEDA_PcbFrame::Show_1_Ratsnest( EDA_BaseStruct* item, wxDC* DC )
if
(
g_Show_Ratsnest
)
if
(
g_Show_Ratsnest
)
return
;
// Deja Affich�
return
;
// Deja Affich�
if
(
!
item
)
return
;
if
(
(
m_Pcb
->
m_Status_Pcb
&
LISTE_CHEVELU_OK
)
==
0
)
if
(
(
m_Pcb
->
m_Status_Pcb
&
LISTE_CHEVELU_OK
)
==
0
)
{
{
Compile_Ratsnest
(
DC
,
TRUE
);
Compile_Ratsnest
(
DC
,
TRUE
);
}
}
if
(
item
->
m_StructType
==
TYPEPAD
)
if
(
item
)
{
pt_pad
=
(
D_PAD
*
)
item
;
Module
=
(
MODULE
*
)
pt_pad
->
m_Parent
;
}
if
(
pt_pad
)
/* Affichage du chevelu du net correspondant */
{
pt_pad
->
Display_Infos
(
this
);
pt_chevelu
=
(
CHEVELU
*
)
m_Pcb
->
m_Ratsnest
;
for
(
ii
=
m_Pcb
->
GetNumRatsnests
();
ii
>
0
;
pt_chevelu
++
,
ii
--
)
{
if
(
pt_chevelu
->
m_NetCode
==
pt_pad
->
m_NetCode
)
{
if
(
(
pt_chevelu
->
status
&
CH_VISIBLE
)
!=
0
)
continue
;
pt_chevelu
->
status
|=
CH_VISIBLE
;
if
(
(
pt_chevelu
->
status
&
CH_ACTIF
)
==
0
)
continue
;
GRSetDrawMode
(
DC
,
GR_XOR
);
GRLine
(
&
DrawPanel
->
m_ClipBox
,
DC
,
pt_chevelu
->
pad_start
->
m_Pos
.
x
,
pt_chevelu
->
pad_start
->
m_Pos
.
y
,
pt_chevelu
->
pad_end
->
m_Pos
.
x
,
pt_chevelu
->
pad_end
->
m_Pos
.
y
,
0
,
g_DesignSettings
.
m_RatsnestColor
);
}
}
}
else
{
{
if
(
item
->
m_StructType
==
TYPE
TEXTEMODULE
)
if
(
item
->
m_StructType
==
TYPE
PAD
)
{
{
Module
=
(
MODULE
*
)
item
->
m_Parent
;
pt_pad
=
(
D_PAD
*
)
item
;
Module
=
(
MODULE
*
)
pt_pad
->
m_Parent
;
}
}
else
if
(
item
->
m_StructType
==
TYPEMODULE
)
if
(
pt_pad
)
/* Affichage du chevelu du net correspondant */
{
{
Module
=
(
MODULE
*
)
item
;
pt_pad
->
Display_Infos
(
this
);
pt_chevelu
=
(
CHEVELU
*
)
m_Pcb
->
m_Ratsnest
;
for
(
ii
=
m_Pcb
->
GetNumRatsnests
();
ii
>
0
;
pt_chevelu
++
,
ii
--
)
{
if
(
pt_chevelu
->
m_NetCode
==
pt_pad
->
m_NetCode
)
{
if
(
(
pt_chevelu
->
status
&
CH_VISIBLE
)
!=
0
)
continue
;
pt_chevelu
->
status
|=
CH_VISIBLE
;
if
(
(
pt_chevelu
->
status
&
CH_ACTIF
)
==
0
)
continue
;
GRSetDrawMode
(
DC
,
GR_XOR
);
GRLine
(
&
DrawPanel
->
m_ClipBox
,
DC
,
pt_chevelu
->
pad_start
->
m_Pos
.
x
,
pt_chevelu
->
pad_start
->
m_Pos
.
y
,
pt_chevelu
->
pad_end
->
m_Pos
.
x
,
pt_chevelu
->
pad_end
->
m_Pos
.
y
,
0
,
g_DesignSettings
.
m_RatsnestColor
);
}
}
}
}
else
if
(
Module
)
{
{
Module
->
Display_Infos
(
this
);
if
(
item
->
m_StructType
==
TYPETEXTEMODULE
)
pt_pad
=
Module
->
m_Pads
;
{
for
(
;
pt_pad
!=
NULL
;
pt_pad
=
(
D_PAD
*
)
pt_pad
->
Pnext
)
Module
=
(
MODULE
*
)
item
->
m_Parent
;
}
else
if
(
item
->
m_StructType
==
TYPEMODULE
)
{
{
pt_chevelu
=
(
CHEVELU
*
)
m_Pcb
->
m_Ratsnest
;
Module
=
(
MODULE
*
)
item
;
for
(
ii
=
m_Pcb
->
GetNumRatsnests
();
ii
>
0
;
pt_chevelu
++
,
ii
--
)
}
if
(
Module
)
{
Module
->
Display_Infos
(
this
);
pt_pad
=
Module
->
m_Pads
;
for
(
;
pt_pad
!=
NULL
;
pt_pad
=
(
D_PAD
*
)
pt_pad
->
Pnext
)
{
{
if
(
(
pt_chevelu
->
pad_start
==
pt_pad
)
pt_chevelu
=
(
CHEVELU
*
)
m_Pcb
->
m_Ratsnest
;
||
(
pt_chevelu
->
pad_end
==
pt_pad
)
)
for
(
ii
=
m_Pcb
->
GetNumRatsnests
();
ii
>
0
;
pt_chevelu
++
,
ii
--
)
{
{
if
(
pt_chevelu
->
status
&
CH_VISIBLE
)
if
(
(
pt_chevelu
->
pad_start
==
pt_pad
)
continue
;
||
(
pt_chevelu
->
pad_end
==
pt_pad
)
)
{
pt_chevelu
->
status
|=
CH_VISIBLE
;
if
(
pt_chevelu
->
status
&
CH_VISIBLE
)
if
(
(
pt_chevelu
->
status
&
CH_ACTIF
)
==
0
)
continue
;
continue
;
pt_chevelu
->
status
|=
CH_VISIBLE
;
GRSetDrawMode
(
DC
,
GR_XOR
);
if
(
(
pt_chevelu
->
status
&
CH_ACTIF
)
==
0
)
GRLine
(
&
DrawPanel
->
m_ClipBox
,
DC
,
pt_chevelu
->
pad_start
->
m_Pos
.
x
,
continue
;
pt_chevelu
->
pad_start
->
m_Pos
.
y
,
pt_chevelu
->
pad_end
->
m_Pos
.
x
,
GRSetDrawMode
(
DC
,
GR_XOR
);
pt_chevelu
->
pad_end
->
m_Pos
.
y
,
GRLine
(
&
DrawPanel
->
m_ClipBox
,
DC
,
pt_chevelu
->
pad_start
->
m_Pos
.
x
,
0
,
pt_chevelu
->
pad_start
->
m_Pos
.
y
,
g_DesignSettings
.
m_RatsnestColor
);
pt_chevelu
->
pad_end
->
m_Pos
.
x
,
pt_chevelu
->
pad_end
->
m_Pos
.
y
,
0
,
g_DesignSettings
.
m_RatsnestColor
);
}
}
}
}
}
pt_pad
=
NULL
;
}
}
pt_pad
=
NULL
;
}
}
}
}
...
...
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