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
7c2c1681
Commit
7c2c1681
authored
Oct 15, 2007
by
dickelbeck
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
pcbnew housekeeping
parent
aece4e16
Changes
4
Expand all
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
308 additions
and
211 deletions
+308
-211
change_log.txt
change_log.txt
+9
-0
class_track.h
pcbnew/class_track.h
+1
-1
clean.cpp
pcbnew/clean.cpp
+295
-208
deltrack.cpp
pcbnew/deltrack.cpp
+3
-2
No files found.
change_log.txt
View file @
7c2c1681
...
@@ -4,6 +4,15 @@ Started 2007-June-11
...
@@ -4,6 +4,15 @@ Started 2007-June-11
Please add newer entries at the top, list the date and your name with
Please add newer entries at the top, list the date and your name with
email address.
email address.
2007-Oct-14 UPDATE Dick Hollenbeck <dick@softplc.com>
================================================================================
+ pcbnew:
* housekeeping and translation to English on bottom third of pcbnew/clean.cpp
* my todo: figure out how to intercept double clicks on a wxWidgets text control
so I can complete the work I started on MARQUEUR error tracking.
2007-Oct-13 UPDATE Jean-Pierre Charras <jean-pierre.charras@inpg.fr>
2007-Oct-13 UPDATE Jean-Pierre Charras <jean-pierre.charras@inpg.fr>
================================================================================
================================================================================
+ pcbnew:
+ pcbnew:
...
...
pcbnew/class_track.h
View file @
7c2c1681
...
@@ -29,7 +29,7 @@ public:
...
@@ -29,7 +29,7 @@ public:
int
m_Shape
;
// vias: shape and type, Track = shape..
int
m_Shape
;
// vias: shape and type, Track = shape..
int
m_Drill
;
// for vias: via drill (- 1 for default value)
int
m_Drill
;
// for vias: via drill (- 1 for default value)
BOARD_ITEM
*
start
;
// pointers
on
a connected item (pad or track)
BOARD_ITEM
*
start
;
// pointers
to
a connected item (pad or track)
BOARD_ITEM
*
end
;
BOARD_ITEM
*
end
;
// chain = 0 indique une connexion non encore traitee
// chain = 0 indique une connexion non encore traitee
...
...
pcbnew/clean.cpp
View file @
7c2c1681
This diff is collapsed.
Click to expand it.
pcbnew/deltrack.cpp
View file @
7c2c1681
...
@@ -196,9 +196,10 @@ void WinEDA_PcbFrame::Supprime_Une_Piste( wxDC* DC, TRACK* pt_segm )
...
@@ -196,9 +196,10 @@ void WinEDA_PcbFrame::Supprime_Une_Piste( wxDC* DC, TRACK* pt_segm )
if
(
nb_segm
)
/* Il y a nb_segm segments de piste a effacer */
if
(
nb_segm
)
/* Il y a nb_segm segments de piste a effacer */
{
{
Trace_Une_Piste
(
DrawPanel
,
DC
,
pt_track
,
nb_segm
,
GR_XOR
|
GR_SURBRILL
);
Trace_Une_Piste
(
DrawPanel
,
DC
,
pt_track
,
nb_segm
,
GR_XOR
|
GR_SURBRILL
);
/* Effacement flag BUSY */
/* Effacement flag BUSY */
Struct
=
pt_track
;
ii
=
0
;
Struct
=
pt_track
;;
for
(
;
ii
<
nb_segm
;
ii
++
,
Struct
=
(
TRACK
*
)
Struct
->
Pnext
)
for
(
ii
=
0
;
ii
<
nb_segm
;
ii
++
,
Struct
=
(
TRACK
*
)
Struct
->
Pnext
)
{
{
Struct
->
SetState
(
BUSY
,
OFF
);
Struct
->
SetState
(
BUSY
,
OFF
);
}
}
...
...
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