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
76fb213b
Commit
76fb213b
authored
Dec 01, 2007
by
dickelbeck
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
2nd of 3 commits for DrcDialog rework
parent
3465bfeb
Changes
3
Expand all
Show whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
295 additions
and
234 deletions
+295
-234
string.cpp
common/string.cpp
+279
-233
drc.cpp
pcbnew/drc.cpp
+8
-1
todo.txt
todo.txt
+8
-0
No files found.
common/string.cpp
View file @
76fb213b
This diff is collapsed.
Click to expand it.
pcbnew/drc.cpp
View file @
76fb213b
...
@@ -61,15 +61,20 @@ void WinEDA_PcbFrame::Install_Test_DRC_Frame( wxDC* DC )
...
@@ -61,15 +61,20 @@ void WinEDA_PcbFrame::Install_Test_DRC_Frame( wxDC* DC )
void
DRC
::
ShowDialog
()
void
DRC
::
ShowDialog
()
{
{
updatePointers
();
updatePointers
();
bool
isNew
=
false
;
if
(
!
m_ui
)
if
(
!
m_ui
)
{
{
m_ui
=
new
DrcDialog
(
this
,
m_mainWindow
);
m_ui
=
new
DrcDialog
(
this
,
m_mainWindow
);
isNew
=
true
;
}
}
// @todo enter retentitive member data into the DrcDialog here
// @todo enter retentitive member data into the DrcDialog here
if
(
isNew
)
m_ui
->
Show
(
true
);
m_ui
->
Show
(
true
);
else
m_ui
->
Raise
();
// @todo capture the UI entered data into this DRC object. BUT in the OK handler
// @todo capture the UI entered data into this DRC object. BUT in the OK handler
}
}
...
@@ -226,6 +231,8 @@ void DRC::WriteReport( FILE* fp )
...
@@ -226,6 +231,8 @@ void DRC::WriteReport( FILE* fp )
for( int i=0; i<m_pcb->GetOPENNETCount(); ++i )
for( int i=0; i<m_pcb->GetOPENNETCount(); ++i )
fprintf( fp, m_pcb->GetOPENNET(i)->GetReporter().ShowReport().mb_str() );
fprintf( fp, m_pcb->GetOPENNET(i)->GetReporter().ShowReport().mb_str() );
*/
*/
fprintf
(
fp
,
"** End of Report **
\n
"
);
}
}
...
...
todo.txt
View file @
76fb213b
...
@@ -47,6 +47,14 @@ understanding by new developers.
...
@@ -47,6 +47,14 @@ understanding by new developers.
Need to do this using DialogBlocks.
Need to do this using DialogBlocks.
2007-Nov-30 Assigned To: nobody
asked by: Dick Hollenbeck
================================================================================
wxString DateAndTime()
It seems the above function should be using a more user friendly "local time",
not gmtime.
2007-Nov-4 Assigned To: dick, but probably not til January.
2007-Nov-4 Assigned To: dick, but probably not til January.
================================================================================
================================================================================
Enhance DRC dialog box to:
Enhance DRC dialog box to:
...
...
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