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
fd27b262
Commit
fd27b262
authored
Oct 01, 2009
by
charras
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
pcbnew: minor work about netclasses. eeschema: bug fix
parent
9861941d
Changes
20
Expand all
Hide whitespace changes
Inline
Side-by-side
Showing
20 changed files
with
1621 additions
and
1487 deletions
+1621
-1487
CHANGELOG.txt
CHANGELOG.txt
+21
-0
Via_Sketch.xpm
bitmaps/Via_Sketch.xpm
+19
-17
about_kicad.cpp
common/about_kicad.cpp
+1
-1
getpart.cpp
eeschema/getpart.cpp
+7
-2
libedit_undo_redo.cpp
eeschema/libedit_undo_redo.cpp
+0
-1
wxPcbStruct.h
include/wxPcbStruct.h
+1
-2
kicad.mo
internat/fr/kicad.mo
+0
-0
kicad.po
internat/fr/kicad.po
+1460
-1388
class_board.cpp
pcbnew/class_board.cpp
+28
-1
class_board.h
pcbnew/class_board.h
+18
-3
dialog_general_options.cpp
pcbnew/dialog_general_options.cpp
+5
-5
edit.cpp
pcbnew/edit.cpp
+2
-4
editrack-part2.cpp
pcbnew/editrack-part2.cpp
+1
-2
editrack.cpp
pcbnew/editrack.cpp
+13
-12
files.cpp
pcbnew/files.cpp
+1
-2
pcbframe.cpp
pcbnew/pcbframe.cpp
+6
-7
pcbnew.cpp
pcbnew/pcbnew.cpp
+9
-9
specctra_import.cpp
pcbnew/specctra_import.cpp
+2
-3
tool_pcb.cpp
pcbnew/tool_pcb.cpp
+9
-11
toolbars_update_user_interface.cpp
pcbnew/toolbars_update_user_interface.cpp
+18
-17
No files found.
CHANGELOG.txt
View file @
fd27b262
...
...
@@ -4,6 +4,27 @@ KiCad ChangeLog 2009
Please add newer entries at the top, list the date and your name with
email address.
2009-oct-01 UPDATE Wayne Stambaugh <stambaughw@verizon.net>
================================================================================
* Component library viewer restores state between uses.
* Fixed automatic zoom calculations in library viewer.
* Make library entry list dialog restore previous selection.
* Fix bounding box calculation for vertical field and text draw objects.
* Changed library draw object comparison to test for greater and less than.
* Initial preparation for merging separate library component draw item lists.
2009-sept-29 UPDATE Wayne Stambaugh <stambaughw@verizon.net>
================================================================================
* Eliminate external direct manipulation of component draw item pointer.
* Add draw item remove, add, and locate methods to library component object.
* Remove redundant locate pin, field, and draw item code.
* Fix add new pin drawing bug that left initial pin draw in place.
* Improved best zoom calculations for small components.
* Library component bounding box calculation now includes fields.
* Removed unnecessary header file "libcmp.h".
* Fixed potential locate draw item bug in library editor hot key handler.
2009-sept-27 UPDATE Jean-Pierre Charras <jean-pierre.charras@gipsa-lab.inpg.fr>
================================================================================
++pcbnew
...
...
bitmaps/Via_Sketch.xpm
View file @
fd27b262
...
...
@@ -4,24 +4,26 @@ extern const char *via_sketch_xpm[];
#else
const char * via_sketch_xpm[] = {
"16 16
3
1",
"16 16
5
1",
" c None",
". c #7D7D00",
"+ c #7C7C00",
" ",
" .... ",
" ..++++.. ",
" .. .. ",
" .. .. ",
" . .. . ",
" .+ .... +. ",
" .+ .. .. +. ",
" .+ .. .. +. ",
" .+ .... +. ",
" . .. . ",
" .. .. ",
" .. .. ",
" ..++++.. ",
" .... ",
" "};
"* c #CC0000",
"= c #00AC00",
" .... ",
" ..++++.. ",
" .. .. ",
" .. .. ",
" . .. . ",
"***+***.... +.",
"**.+**..**.. +.",
"**.+**..**.. +.",
"***+***.... +.",
" . =..= . ",
" .. ==== .. ",
" .. ==== .. ",
" ..++++.. ",
" ...= ",
" ==== ",
" ==== "};
#endif
common/about_kicad.cpp
View file @
fd27b262
...
...
@@ -8,7 +8,7 @@
#include "appl_wxstruct.h"
#define BUILD_VERSION "(2009
092
1-unstable)"
#define BUILD_VERSION "(2009
100
1-unstable)"
#ifdef HAVE_SVN_VERSION
...
...
eeschema/getpart.cpp
View file @
fd27b262
...
...
@@ -390,7 +390,6 @@ void WinEDA_SchematicFrame::SelPartUnit( SCH_COMPONENT* DrawComponent,
void
WinEDA_SchematicFrame
::
ConvertPart
(
SCH_COMPONENT
*
DrawComponent
,
wxDC
*
DC
)
{
int
ii
;
LIB_COMPONENT
*
LibEntry
;
if
(
DrawComponent
==
NULL
)
...
...
@@ -414,7 +413,13 @@ void WinEDA_SchematicFrame::ConvertPart( SCH_COMPONENT* DrawComponent,
DrawComponent
->
Draw
(
DrawPanel
,
DC
,
wxPoint
(
0
,
0
),
g_XorMode
);
DrawComponent
->
m_Convert
++
;
if
(
DrawComponent
->
m_Convert
>
ii
)
// ensure m_Convert = 0, 1 or 2
// 0 and 1 = shape 1 = not converted
// 2 = shape 2 = first converted shape
// > 2 is not used but could be used for more shapes
// like multiple shapes for a programmable component
// When m_Convert = val max, return to the first shape
if
(
DrawComponent
->
m_Convert
>
2
)
DrawComponent
->
m_Convert
=
1
;
/* Redessine le composant dans la nouvelle position */
...
...
eeschema/libedit_undo_redo.cpp
View file @
fd27b262
...
...
@@ -18,7 +18,6 @@ void WinEDA_LibeditFrame::SaveCopyInUndoList( EDA_BaseStruct* ItemToCopy,
int
unused_flag
)
/*************************************************************************/
{
EDA_BaseStruct
*
item
;
LIB_COMPONENT
*
CopyItem
;
PICKED_ITEMS_LIST
*
lastcmd
;
...
...
include/wxPcbStruct.h
View file @
fd27b262
...
...
@@ -58,8 +58,7 @@ public:
WinEDAChoiceBox
*
m_SelViaSizeBox
;
private
:
bool
m_SelTrackWidthBox_Changed
;
bool
m_SelViaSizeBox_Changed
;
bool
m_TrackAndViasSizesList_Changed
;
DRC
*
m_drc
;
///< the DRC controller, see drc.cpp
...
...
internat/fr/kicad.mo
View file @
fd27b262
No preview for this file type
internat/fr/kicad.po
View file @
fd27b262
This diff is collapsed.
Click to expand it.
pcbnew/class_board.cpp
View file @
fd27b262
...
...
@@ -43,7 +43,9 @@ BOARD::BOARD( EDA_BaseStruct* parent, WinEDA_BasePcbFrame* frame ) :
// Should user eventually load a board from a disk file, then these defaults
// will get overwritten during load.
m_NetClasses
.
GetDefault
()
->
SetDescription
(
_
(
"This is the default net class."
)
);
m_CurrentNetClassName
=
m_NetClasses
.
GetDefault
()
->
GetName
(
);
m_ViaSizeSelector
=
0
;
m_TrackWidthSelector
=
0
;
SetCurrentNetClass
(
m_NetClasses
.
GetDefault
()
->
GetName
(
));
// Initialize default values
}
...
...
@@ -74,6 +76,31 @@ BOARD::~BOARD()
delete
m_NetInfo
;
}
/**
* Function SetCurrentNetClass
* Must be called after a netclass selection (or after a netclass parameter change
* Initialise vias and tracks values displayed in comb boxs of the auxiliary toolbar
* and some others parametres (netclass name ....)
*/
void
BOARD
::
SetCurrentNetClass
(
const
wxString
&
aNetClassName
)
{
NETCLASS
*
netClass
=
m_NetClasses
.
Find
(
aNetClassName
);
// if not found (should not happen) use the default
if
(
netClass
==
NULL
)
netClass
=
m_NetClasses
.
GetDefault
();
m_CurrentNetClassName
=
netClass
->
GetName
();
// Initialize others values:
if
(
m_ViaSizeHistory
.
size
()
==
0
)
m_ViaSizeHistory
.
push_back
(
0
);
if
(
m_TrackWidthHistory
.
size
()
==
0
)
m_TrackWidthHistory
.
push_back
(
0
);
m_ViaSizeHistory
[
0
]
=
netClass
->
GetViaDiameter
();
m_TrackWidthHistory
[
0
]
=
netClass
->
GetTrackWidth
();
}
wxString
BOARD
::
GetLayerName
(
int
aLayerIndex
)
const
{
...
...
pcbnew/class_board.h
View file @
fd27b262
...
...
@@ -97,14 +97,22 @@ public:
std
::
vector
<
RATSNEST_ITEM
>
m_LocalRatsnest
;
/* Rastnest list relative to a given footprint
* (used while moving a footprint) */
ZONE_CONTAINER
*
m_CurrentZoneContour
;
// zone contour currently in progress
NETCLASSES
m_NetClasses
;
///< List of current netclasses. There is always the default netclass
wxString
m_CurrentNetClassName
;
/* Current net class name used to display netclass info.
* this is also the last used netclass after starting a track
*/
ZONE_CONTAINER
*
m_CurrentZoneContour
;
// zone contour currently in progress
std
::
vector
<
int
>
m_ViaSizeHistory
;
// Last used via sizes (max count = HISTORY_MAX_COUNT)
std
::
vector
<
int
>
m_TrackWidthHistory
;
// Last used track widths (max count = HISTORY_MAX_COUNT)
// handling of vias and tracks size:
// the first value is always the value of the current NetClass
// The others values are extra values
std
::
vector
<
int
>
m_ViaSizeHistory
;
// Last used via sizes (max count = HISTORY_MAX_COUNT)
std
::
vector
<
int
>
m_TrackWidthHistory
;
// Last used track widths (max count = HISTORY_MAX_COUNT)
int
m_ViaSizeSelector
;
// index for m_ViaSizeHistory to select the value
// O is the selection of the default value Netclass
int
m_TrackWidthSelector
;
// index for m_TrackWidthHistory to select the value
/**********************************/
public
:
...
...
@@ -356,6 +364,13 @@ public:
*/
void
SynchronizeNetsAndNetClasses
();
/**
* Function SetCurrentNetClass
* Must be called after a netclass selection (or after a netclass parameter change
* Initialise vias and tracks values displayed in comb boxs of the auxiliary toolbar
* and some others parametres (netclass name ....)
*/
void
SetCurrentNetClass
(
const
wxString
&
aNetClassName
);
/**
* Function Save
...
...
pcbnew/dialog_general_options.cpp
View file @
fd27b262
...
...
@@ -93,7 +93,7 @@ void Dialog_GeneralOptions::OnOkClick( wxCommandEvent& event )
int
ii
;
DisplayOpt
.
DisplayPolarCood
=
(
m_PolarDisplay
->
GetSelection
()
==
0
)
?
FALSE
:
TRUE
;
(
m_PolarDisplay
->
GetSelection
()
==
0
)
?
FALSE
:
true
;
ii
=
g_UnitMetric
;
g_UnitMetric
=
(
m_UnitsSelection
->
GetSelection
()
==
0
)
?
0
:
1
;
if
(
ii
!=
g_UnitMetric
)
...
...
@@ -113,7 +113,7 @@ void Dialog_GeneralOptions::OnOkClick( wxCommandEvent& event )
{
g_Show_Ratsnest
=
m_ShowGlobalRatsnest
->
GetValue
();
m_Parent
->
Ratsnest_On_Off
(
m_DC
);
m_Parent
->
RedrawActiveWindow
(
m_DC
,
TRUE
);
m_Parent
->
RedrawActiveWindow
(
m_DC
,
true
);
}
g_Show_Module_Ratsnest
=
m_ShowModuleRatsnest
->
GetValue
();
g_AutoDeleteOldTrack
=
m_TrackAutodel
->
GetValue
();
...
...
@@ -195,7 +195,7 @@ void WinEDA_PcbFrame::OnSelectOptionToolbar( wxCommandEvent& event )
switch
(
id
)
{
case
ID_TB_OPTIONS_DRC_OFF
:
Drc_On
=
m_OptionsToolBar
->
GetToolState
(
id
)
?
FALSE
:
TRUE
;
Drc_On
=
m_OptionsToolBar
->
GetToolState
(
id
)
?
FALSE
:
true
;
break
;
case
ID_TB_OPTIONS_SHOW_GRID
:
...
...
@@ -209,7 +209,7 @@ void WinEDA_PcbFrame::OnSelectOptionToolbar( wxCommandEvent& event )
wxClientDC
dc
(
DrawPanel
);
DrawPanel
->
PrepareGraphicContext
(
&
dc
);
Ratsnest_On_Off
(
&
dc
);
RedrawActiveWindow
(
&
dc
,
TRUE
);
RedrawActiveWindow
(
&
dc
,
true
);
}
break
;
...
...
@@ -223,7 +223,7 @@ void WinEDA_PcbFrame::OnSelectOptionToolbar( wxCommandEvent& event )
case
ID_TB_OPTIONS_SELECT_UNIT_INCH
:
if
(
id
==
ID_TB_OPTIONS_SELECT_UNIT_INCH
)
g_UnitMetric
=
INCHES
;
m_
SelTrackWidthBox_Changed
=
TRUE
;
m_
TrackAndViasSizesList_Changed
=
true
;
UpdateStatusBar
();
/* Reaffichage des coord curseur */
ReCreateAuxiliaryToolbar
();
DisplayUnitsMsg
();
...
...
pcbnew/edit.cpp
View file @
fd27b262
...
...
@@ -997,8 +997,7 @@ void WinEDA_PcbFrame::Process_Special_Functions( wxCommandEvent& event )
int
ii
=
m_SelTrackWidthBox
->
GetChoice
();
g_DesignSettings
.
m_CurrentTrackWidth
=
GetBoard
()
->
m_TrackWidthHistory
[
ii
];
DisplayTrackSettings
();
m_SelTrackWidthBox_Changed
=
false
;
m_SelViaSizeBox_Changed
=
false
;
m_TrackAndViasSizesList_Changed
=
false
;
g_DesignSettings
.
m_UseConnectedTrackWidth
=
false
;
}
break
;
...
...
@@ -1035,8 +1034,7 @@ void WinEDA_PcbFrame::Process_Special_Functions( wxCommandEvent& event )
int
ii
=
m_SelViaSizeBox
->
GetChoice
();
g_DesignSettings
.
m_CurrentViaSize
=
GetBoard
()
->
m_ViaSizeHistory
[
ii
];
DisplayTrackSettings
();
m_SelTrackWidthBox_Changed
=
false
;
m_SelViaSizeBox_Changed
=
false
;
m_TrackAndViasSizesList_Changed
=
false
;
}
break
;
...
...
pcbnew/editrack-part2.cpp
View file @
fd27b262
...
...
@@ -33,8 +33,7 @@ void WinEDA_PcbFrame::DisplayTrackSettings()
msg
.
Printf
(
_
(
"Track Width: %s Vias Size : %s"
),
buftrc
.
GetData
(),
bufvia
.
GetData
()
);
Affiche_Message
(
msg
);
m_SelTrackWidthBox_Changed
=
TRUE
;
m_SelViaSizeBox_Changed
=
TRUE
;
m_TrackAndViasSizesList_Changed
=
TRUE
;
}
...
...
pcbnew/editrack.cpp
View file @
fd27b262
...
...
@@ -44,7 +44,7 @@ static void Exit_Editrack( WinEDA_DrawPanel* Panel, wxDC* DC )
if
(
track
&&
(
track
->
Type
()
==
TYPE_VIA
||
track
->
Type
()
==
TYPE_TRACK
)
)
{
/* Erase the current drawing */
ShowNewTrackWhenMovingCursor
(
Panel
,
DC
,
FALSE
);
ShowNewTrackWhenMovingCursor
(
Panel
,
DC
,
false
);
if
(
g_HightLigt_Status
)
frame
->
Hight_Light
(
DC
);
...
...
@@ -147,7 +147,7 @@ TRACK* WinEDA_PcbFrame::Begin_Route( TRACK* aTrack, wxDC* DC )
D
(
g_CurrentTrackList
.
VerifyListIntegrity
();
);
build_ratsnest_pad
(
LockPoint
,
wxPoint
(
0
,
0
),
TRUE
);
build_ratsnest_pad
(
LockPoint
,
wxPoint
(
0
,
0
),
true
);
D
(
g_CurrentTrackList
.
VerifyListIntegrity
();
);
...
...
@@ -170,7 +170,8 @@ TRACK* WinEDA_PcbFrame::Begin_Route( TRACK* aTrack, wxDC* DC )
g_CurrentTrackSegment
->
SetNet
(
g_HightLigth_NetCode
);
// Display info about track Net class:
GetBoard
()
->
m_CurrentNetClassName
=
g_CurrentTrackSegment
->
GetNetClassName
();
GetBoard
()
->
SetCurrentNetClass
(
g_CurrentTrackSegment
->
GetNetClassName
()
);
m_TrackAndViasSizesList_Changed
=
true
;
AuxiliaryToolBar_DesignRules_Update_UI
();
if
(
pt_pad
)
...
...
@@ -198,7 +199,7 @@ TRACK* WinEDA_PcbFrame::Begin_Route( TRACK* aTrack, wxDC* DC )
g_CurrentTrackSegment
->
DisplayInfo
(
this
);
SetCurItem
(
g_CurrentTrackSegment
);
DrawPanel
->
ManageCurseur
(
DrawPanel
,
DC
,
FALSE
);
DrawPanel
->
ManageCurseur
(
DrawPanel
,
DC
,
false
);
if
(
Drc_On
)
{
...
...
@@ -227,20 +228,20 @@ TRACK* WinEDA_PcbFrame::Begin_Route( TRACK* aTrack, wxDC* DC )
/* Current track is Ok: current segment is kept, and a new one is created
* unless the current segment is null, or 2 last are null if a 2 segments track build
*/
bool
CanCreateNewSegment
=
TRUE
;
bool
CanCreateNewSegment
=
true
;
if
(
!
g_TwoSegmentTrackBuild
&&
g_CurrentTrackSegment
->
IsNull
()
)
CanCreateNewSegment
=
FALSE
;
CanCreateNewSegment
=
false
;
if
(
g_TwoSegmentTrackBuild
&&
g_CurrentTrackSegment
->
IsNull
()
&&
g_CurrentTrackSegment
->
Back
()
&&
g_CurrentTrackSegment
->
Back
()
->
IsNull
()
)
CanCreateNewSegment
=
FALSE
;
CanCreateNewSegment
=
false
;
if
(
CanCreateNewSegment
)
{
/* Erase old track on screen */
D
(
g_CurrentTrackList
.
VerifyListIntegrity
();
);
ShowNewTrackWhenMovingCursor
(
DrawPanel
,
DC
,
FALSE
);
ShowNewTrackWhenMovingCursor
(
DrawPanel
,
DC
,
false
);
D
(
g_CurrentTrackList
.
VerifyListIntegrity
();
);
...
...
@@ -279,7 +280,7 @@ TRACK* WinEDA_PcbFrame::Begin_Route( TRACK* aTrack, wxDC* DC )
D
(
g_CurrentTrackList
.
VerifyListIntegrity
();
);
/* Show the new position */
ShowNewTrackWhenMovingCursor
(
DrawPanel
,
DC
,
FALSE
);
ShowNewTrackWhenMovingCursor
(
DrawPanel
,
DC
,
false
);
}
g_CurrentTrackSegment
->
DisplayInfo
(
this
);
}
...
...
@@ -446,8 +447,8 @@ void WinEDA_PcbFrame::End_Route( TRACK* aTrack, wxDC* DC )
if
(
Begin_Route
(
aTrack
,
DC
)
==
NULL
)
return
;
ShowNewTrackWhenMovingCursor
(
DrawPanel
,
DC
,
TRUE
);
/* mise a jour trace reel */
ShowNewTrackWhenMovingCursor
(
DrawPanel
,
DC
,
FALSE
);
/* efface trace piste*/
ShowNewTrackWhenMovingCursor
(
DrawPanel
,
DC
,
true
);
/* mise a jour trace reel */
ShowNewTrackWhenMovingCursor
(
DrawPanel
,
DC
,
false
);
/* efface trace piste*/
trace_ratsnest_pad
(
DC
);
/* efface trace chevelu*/
/* cleanup
...
...
@@ -776,7 +777,7 @@ void ShowNewTrackWhenMovingCursor( WinEDA_DrawPanel* panel, wxDC* DC, bool erase
DisplayOpt
.
DisplayPcbTrackFill
=
Track_fill_copy
;
(
(
WinEDA_BasePcbFrame
*
)(
panel
->
m_Parent
)
)
->
build_ratsnest_pad
(
NULL
,
g_CurrentTrackSegment
->
m_End
,
FALSE
);
build_ratsnest_pad
(
NULL
,
g_CurrentTrackSegment
->
m_End
,
false
);
(
(
WinEDA_BasePcbFrame
*
)(
panel
->
m_Parent
)
)
->
trace_ratsnest_pad
(
DC
);
}
...
...
pcbnew/files.cpp
View file @
fd27b262
...
...
@@ -148,8 +148,7 @@ bool WinEDA_PcbFrame::LoadOnePcbFile( const wxString& FullFileName, bool Append
return
false
;
}
m_SelTrackWidthBox_Changed
=
true
;
m_SelViaSizeBox_Changed
=
true
;
m_TrackAndViasSizesList_Changed
=
true
;
if
(
Append
)
{
...
...
pcbnew/pcbframe.cpp
View file @
fd27b262
...
...
@@ -220,13 +220,12 @@ WinEDA_PcbFrame::WinEDA_PcbFrame( wxWindow* father,
wxConfig
*
config
=
wxGetApp
().
m_EDA_Config
;
m_FrameName
=
wxT
(
"PcbFrame"
);
m_Draw_Sheet_Ref
=
TRUE
;
// TRUE
pour avoir le cartouche dessine
m_Draw_Auxiliary_Axis
=
TRUE
;
m_Draw_Sheet_Ref
=
true
;
// true
pour avoir le cartouche dessine
m_Draw_Auxiliary_Axis
=
true
;
m_SelTrackWidthBox
=
NULL
;
m_SelViaSizeBox
=
NULL
;
m_SelLayerBox
=
NULL
;
m_SelTrackWidthBox_Changed
=
FALSE
;
m_SelViaSizeBox_Changed
=
FALSE
;
m_TrackAndViasSizesList_Changed
=
false
;
SetBoard
(
new
BOARD
(
NULL
,
this
)
);
...
...
@@ -260,7 +259,7 @@ WinEDA_PcbFrame::WinEDA_PcbFrame( wxWindow* father,
GetScreen
()
->
SetGrid
(
GridSize
);
if
(
DrawPanel
)
DrawPanel
->
m_Block_Enable
=
TRUE
;
DrawPanel
->
m_Block_Enable
=
true
;
ReCreateMenuBar
();
ReCreateHToolbar
();
ReCreateAuxiliaryToolbar
();
...
...
@@ -295,7 +294,7 @@ void WinEDA_PcbFrame::OnCloseWindow( wxCloseEvent& Event )
{
wxConfig
*
config
=
wxGetApp
().
m_EDA_Config
;
DrawPanel
->
m_AbortRequest
=
TRUE
;
DrawPanel
->
m_AbortRequest
=
true
;
if
(
ScreenPcb
->
IsModify
()
)
{
...
...
@@ -354,7 +353,7 @@ void WinEDA_PcbFrame::Show3D_Frame( wxCommandEvent& event )
}
m_Draw3DFrame
=
new
WinEDA3D_DrawFrame
(
this
,
_
(
"3D Viewer"
)
);
m_Draw3DFrame
->
Show
(
TRUE
);
m_Draw3DFrame
->
Show
(
true
);
}
/**
...
...
pcbnew/pcbnew.cpp
View file @
fd27b262
...
...
@@ -26,17 +26,17 @@
#include "eda_dde.h"
bool
Drc_On
=
TRUE
;
bool
g_AutoDeleteOldTrack
=
TRUE
;
bool
Drc_On
=
true
;
bool
g_AutoDeleteOldTrack
=
true
;
bool
g_No_Via_Route
;
bool
g_Drag_Pistes_On
;
bool
g_Show_Ratsnest
;
bool
g_Show_Module_Ratsnest
;
bool
g_Show_Pads_Module_in_Move
=
TRUE
;
bool
g_Raccord_45_Auto
=
TRUE
;
bool
g_Show_Pads_Module_in_Move
=
true
;
bool
g_Raccord_45_Auto
=
true
;
bool
Track_45_Only
;
bool
Segments_45_Only
;
bool
g_TwoSegmentTrackBuild
=
TRUE
;
bool
g_TwoSegmentTrackBuild
=
true
;
bool
g_HightLigt_Status
;
extern
PARAM_CFG_BASE
*
ParamCfgList
[];
...
...
@@ -116,17 +116,17 @@ Changing extension to .brd." ),
ActiveScreen
=
ScreenPcb
;
SetTopWindow
(
frame
);
frame
->
Show
(
TRUE
);
frame
->
Show
(
true
);
if
(
CreateServer
(
frame
,
KICAD_PCB_PORT_SERVICE_NUMBER
)
)
{
SetupServerFunction
(
RemoteCommand
);
}
frame
->
Zoom_Automatique
(
TRUE
);
Read_Config
(
fn
.
GetFullPath
()
);
frame
->
Zoom_Automatique
(
true
);
/* Load file specified in the command line. */
if
(
fn
.
IsOk
()
)
{
...
...
@@ -135,5 +135,5 @@ Changing extension to .brd." ),
frame
->
ReCreateLayerBox
(
NULL
);
}
return
TRUE
;
return
true
;
}
pcbnew/specctra_import.cpp
View file @
fd27b262
...
...
@@ -111,8 +111,7 @@ void WinEDA_PcbFrame::ImportSpecctraSession( wxCommandEvent& event )
SetLocaleTo_Default
(
);
// revert to the current locale
m_SelTrackWidthBox_Changed
=
TRUE
;
m_SelViaSizeBox_Changed
=
TRUE
;
m_TrackAndViasSizesList_Changed
=
true
;
GetScreen
()
->
SetModify
();
GetBoard
()
->
m_Status_Pcb
=
0
;
...
...
@@ -128,7 +127,7 @@ void WinEDA_PcbFrame::ImportSpecctraSession( wxCommandEvent& event )
Affiche_Message
(
wxString
(
_
(
"Session file imported and merged OK."
))
);
DrawPanel
->
Refresh
(
TRUE
);
DrawPanel
->
Refresh
(
true
);
}
...
...
pcbnew/tool_pcb.cpp
View file @
fd27b262
...
...
@@ -75,25 +75,25 @@ void WinEDA_PcbFrame::PrepareLayerIndicator()
if
(
previous_active_layer_color
!=
active_layer_color
)
{
previous_active_layer_color
=
active_layer_color
;
change
=
TRUE
;
change
=
true
;
}
Route_Layer_TOP_color
=
g_DesignSettings
.
m_LayerColor
[((
PCB_SCREEN
*
)
GetScreen
())
->
m_Route_Layer_TOP
];
if
(
previous_Route_Layer_TOP_color
!=
Route_Layer_TOP_color
)
{
previous_Route_Layer_TOP_color
=
Route_Layer_TOP_color
;
change
=
TRUE
;
change
=
true
;
}
Route_Layer_BOTTOM_color
=
g_DesignSettings
.
m_LayerColor
[((
PCB_SCREEN
*
)
GetScreen
())
->
m_Route_Layer_BOTTOM
];
if
(
previous_Route_Layer_BOTTOM_color
!=
Route_Layer_BOTTOM_color
)
{
previous_Route_Layer_BOTTOM_color
=
Route_Layer_BOTTOM_color
;
change
=
TRUE
;
change
=
true
;
}
via_color
=
g_DesignSettings
.
m_ViaColor
[
g_DesignSettings
.
m_CurrentViaType
];
if
(
previous_via_color
!=
via_color
)
{
previous_via_color
=
via_color
;
change
=
TRUE
;
change
=
true
;
}
if
(
!
change
&&
(
LayerPairBitmap
!=
NULL
)
)
...
...
@@ -193,7 +193,7 @@ void WinEDA_PcbFrame::ReCreateHToolbar()
}
m_HToolBar
=
new
WinEDA_Toolbar
(
TOOLBAR_MAIN
,
this
,
ID_H_TOOLBAR
,
TRUE
);
m_HToolBar
=
new
WinEDA_Toolbar
(
TOOLBAR_MAIN
,
this
,
ID_H_TOOLBAR
,
true
);
m_HToolBar
->
SetRows
(
1
);
SetToolBar
(
m_HToolBar
);
...
...
@@ -422,7 +422,7 @@ void WinEDA_PcbFrame::ReCreateVToolbar()
// Set up toolbar
m_VToolBar
->
AddTool
(
ID_NO_SELECT_BUTT
,
wxEmptyString
,
wxBitmap
(
cursor_xpm
),
wxEmptyString
,
wxITEM_CHECK
);
m_VToolBar
->
ToggleTool
(
ID_NO_SELECT_BUTT
,
TRUE
);
m_VToolBar
->
ToggleTool
(
ID_NO_SELECT_BUTT
,
true
);
m_VToolBar
->
AddSeparator
();
m_VToolBar
->
AddTool
(
ID_PCB_HIGHLIGHT_BUTT
,
wxEmptyString
,
...
...
@@ -553,7 +553,7 @@ void WinEDA_PcbFrame::ReCreateAuxiliaryToolbar()
if
(
m_AuxiliaryToolBar
==
NULL
)
{
m_AuxiliaryToolBar
=
new
WinEDA_Toolbar
(
TOOLBAR_AUX
,
this
,
ID_AUX_TOOLBAR
,
TRUE
);
ID_AUX_TOOLBAR
,
true
);
// Set up toolbar
m_AuxiliaryToolBar
->
AddSeparator
();
...
...
@@ -562,7 +562,7 @@ void WinEDA_PcbFrame::ReCreateAuxiliaryToolbar()
wxPoint
(
-
1
,
-
1
),
wxSize
(
LISTBOX_WIDTH
+
20
,
-
1
)
);
m_AuxiliaryToolBar
->
AddControl
(
m_SelTrackWidthBox
);
m_
SelTrackWidthBox_Changed
=
TRUE
;
m_
TrackAndViasSizesList_Changed
=
true
;
m_ClearanceBox
=
new
wxTextCtrl
(
m_AuxiliaryToolBar
,
-
1
,
wxEmptyString
,
...
...
@@ -655,9 +655,7 @@ void WinEDA_PcbFrame::ReCreateAuxiliaryToolbar()
m_SelGridBox
->
Append
(
msg
);
}
m_SelViaSizeBox_Changed
=
TRUE
;
m_SelTrackWidthBox_Changed
=
TRUE
;
m_TrackAndViasSizesList_Changed
=
true
;
ReCreateLayerBox
(
NULL
);
SetToolbars
();
...
...
pcbnew/toolbars_update_user_interface.cpp
View file @
fd27b262
...
...
@@ -62,48 +62,47 @@ void WinEDA_PcbFrame::AuxiliaryToolBar_DesignRules_Update_UI( )
}
/**
* Function AuxiliaryToolBar_Update_UI
* update the displayed values on auxiliary horizontal toolbar
* (track width, via sizes, clearance ...
* Display format for track and via lists
* first item = current selected class value
* next items (if any) = ordered list of sizes (extra sizes).
* So the current selected class value can be same as an other extra value
*/
void
WinEDA_PcbFrame
::
AuxiliaryToolBar_Update_UI
(
)
{
wxString
msg
;
m_AuxiliaryToolBar
->
ToggleTool
(
ID_AUX_TOOLBAR_PCB_SELECT_AUTO_WIDTH
,
g_DesignSettings
.
m_UseConnectedTrackWidth
);
if
(
m_SelTrackWidthBox
&&
m_SelTrackWidthBox_Changed
)
AuxiliaryToolBar_DesignRules_Update_UI
(
);
if
(
m_SelTrackWidthBox
&&
m_TrackAndViasSizesList_Changed
)
{
m_SelTrackWidthBox_Changed
=
false
;
m_SelTrackWidthBox
->
Clear
();
for
(
unsigned
ii
=
0
;
ii
<
GetBoard
()
->
m_TrackWidthHistory
.
size
();
ii
++
)
{
msg
=
_
(
"Track"
)
+
ReturnStringValue
(
GetBoard
()
->
m_TrackWidthHistory
[
ii
]);
m_SelTrackWidthBox
->
Append
(
msg
);
if
(
GetBoard
()
->
m_TrackWidthHistory
[
ii
]
==
g_DesignSettings
.
m_CurrentTrackWidth
)
m_SelTrackWidthBox
->
SetSelection
(
ii
);
}
if
(
GetBoard
()
->
m_TrackWidthSelector
>=
(
int
)
GetBoard
()
->
m_TrackWidthHistory
.
size
()
)
GetBoard
()
->
m_TrackWidthSelector
=
0
;
m_SelTrackWidthBox
->
SetSelection
(
GetBoard
()
->
m_TrackWidthSelector
);
}
AuxiliaryToolBar_DesignRules_Update_UI
(
);
if
(
m_SelViaSizeBox
&&
m_SelViaSizeBox_Changed
)
if
(
m_SelViaSizeBox
&&
m_TrackAndViasSizesList_Changed
)
{
m_SelViaSizeBox_Changed
=
false
;
m_SelViaSizeBox
->
Clear
();
for
(
unsigned
ii
=
0
;
ii
<
GetBoard
()
->
m_ViaSizeHistory
.
size
();
ii
++
)
{
msg
=
_
(
"Via"
)
+
ReturnStringValue
(
GetBoard
()
->
m_ViaSizeHistory
[
ii
]);
m_SelViaSizeBox
->
Append
(
msg
);
if
(
GetBoard
()
->
m_ViaSizeHistory
[
ii
]
==
g_DesignSettings
.
m_CurrentViaSize
)
m_SelViaSizeBox
->
SetSelection
(
ii
);
}
if
(
GetBoard
()
->
m_ViaSizeSelector
>=
(
int
)
GetBoard
()
->
m_ViaSizeHistory
.
size
()
)
GetBoard
()
->
m_ViaSizeSelector
=
0
;
m_SelViaSizeBox
->
SetSelection
(
GetBoard
()
->
m_ViaSizeSelector
);
}
if
(
m_SelZoomBox
)
...
...
@@ -122,7 +121,7 @@ void WinEDA_PcbFrame::AuxiliaryToolBar_Update_UI( )
m_SelZoomBox
->
SetSelection
(
-
1
);
}
if
(
m_SelGridBox
&&
GetScreen
()
)
if
(
m_SelGridBox
)
{
int
kk
=
m_SelGridBox
->
GetChoice
();
...
...
@@ -137,6 +136,8 @@ void WinEDA_PcbFrame::AuxiliaryToolBar_Update_UI( )
}
}
}
m_TrackAndViasSizesList_Changed
=
false
;
}
...
...
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