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
d5b353ac
Commit
d5b353ac
authored
Oct 10, 2007
by
g_harland
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Assorted changes; see change_log.txt
parent
e1ff958a
Changes
7
Expand all
Hide whitespace changes
Inline
Side-by-side
Showing
7 changed files
with
651 additions
and
553 deletions
+651
-553
change_log.txt
change_log.txt
+19
-0
options.cpp.notused
eeschema/options.cpp.notused
+0
-0
basepcbframe.cpp
pcbnew/basepcbframe.cpp
+36
-9
edit.cpp
pcbnew/edit.cpp
+55
-16
hotkeys.cpp
pcbnew/hotkeys.cpp
+11
-12
set_color.cpp
pcbnew/set_color.cpp
+95
-516
set_color.h
pcbnew/set_color.h
+435
-0
No files found.
change_log.txt
View file @
d5b353ac
...
@@ -4,6 +4,25 @@ Started 2007-June-11
...
@@ -4,6 +4,25 @@ 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-11 UPDATE Geoff Harland <gharlandau@yahoo.com.au>
================================================================================
+ pcbnew
* The previously provided "Exit" button within the "Colors:" dialog box has been
replaced with "OK", "Cancel", and "Apply" buttons, and the code for editing the
visibility of the Grid layer from that dialog now is "cleaner" than before.
Details associated with buttons within that dialog box moved from set_color.cpp
to set_color.h (matching implementation for GerbView's corresponding dialog box).
* Fixed bug which previously prevented the Copper layer from being selected as the
current layer when only one copper layer is enabled (and made some modifications
to the code for selecting the next copper layer and previous copper layer).
+ gerbview
* The code for editing the visibility of the Grid layer from the "GerbView Layer
Colors:" dialog box is "cleaner" than before, and assorted other beautification.
+ eeschema
* The options.cpp file (which is no longer used) has been removed, and replaced
with options.cpp.notused
2007-Oct-10 UPDATE Dick Hollenbeck <dick@softplc.com>
2007-Oct-10 UPDATE Dick Hollenbeck <dick@softplc.com>
================================================================================
================================================================================
+ pcbnew
+ pcbnew
...
...
eeschema/options.cpp
→
eeschema/options.cpp
.notused
View file @
d5b353ac
File moved
pcbnew/basepcbframe.cpp
View file @
d5b353ac
...
@@ -154,20 +154,47 @@ void WinEDA_BasePcbFrame::GetComponentFromRedoList( void )
...
@@ -154,20 +154,47 @@ void WinEDA_BasePcbFrame::GetComponentFromRedoList( void )
void
WinEDA_BasePcbFrame
::
SwitchLayer
(
wxDC
*
DC
,
int
layer
)
void
WinEDA_BasePcbFrame
::
SwitchLayer
(
wxDC
*
DC
,
int
layer
)
/*****************************************************************/
/*****************************************************************/
//Note: virtual, overridden in WinEDA_PcbFrame;
//
Note: virtual, overridden in WinEDA_PcbFrame;
{
{
int
preslayer
=
GetScreen
()
->
m_Active_Layer
;
int
preslayer
=
GetScreen
()
->
m_Active_Layer
;
//if there is only one layer, don't switch.
// Check if the specified layer matches the present layer
if
(
m_Pcb
->
m_BoardSettings
->
m_CopperLayerCount
<=
1
)
if
(
layer
==
preslayer
)
layer
=
COPPER_LAYER_N
;
// Of course we select the copper layer
//otherwise, we select the requested layer only if it is possible
if
(
layer
!=
LAYER_CMP_N
&&
layer
>=
m_Pcb
->
m_BoardSettings
->
m_CopperLayerCount
-
1
)
return
;
return
;
if
(
preslayer
==
layer
)
// Copper layers cannot be selected unconditionally; how many
return
;
// of those layers are currently enabled needs to be checked.
if
(
(
layer
>=
COPPER_LAYER_N
)
&&
(
layer
<=
CMP_N
)
)
{
// If only one copper layer is enabled, the only such layer
// that can be selected to is the "Copper" layer (so the
// selection of any other copper layer is disregarded).
if
(
m_Pcb
->
m_BoardSettings
->
m_CopperLayerCount
<
2
)
{
if
(
layer
!=
COPPER_LAYER_N
)
{
return
;
}
}
// If more than one copper layer is enabled, the "Copper"
// and "Component" layers can be selected, but the total
// number of copper layers determines which internal
// layers are also capable of being selected.
else
{
if
(
(
layer
!=
COPPER_LAYER_N
)
&&
(
layer
!=
LAYER_CMP_N
)
&&
(
layer
>=
m_Pcb
->
m_BoardSettings
->
m_CopperLayerCount
-
1
)
)
{
return
;
}
}
}
// Is yet more checking required? E.g. when the layer to be selected
// is a non-copper layer, or when switching between a copper layer
// and a non-copper layer, or vice-versa?
// ...
GetScreen
()
->
m_Active_Layer
=
layer
;
GetScreen
()
->
m_Active_Layer
=
layer
;
...
...
pcbnew/edit.cpp
View file @
d5b353ac
...
@@ -13,6 +13,8 @@
...
@@ -13,6 +13,8 @@
#include "id.h"
#include "id.h"
#include "protos.h"
#include "protos.h"
// Uncomment following line to enable wxBell() command (which beeps speaker)
// #include <wx/utils.h>
static
void
Process_Move_Item
(
WinEDA_PcbFrame
*
frame
,
static
void
Process_Move_Item
(
WinEDA_PcbFrame
*
frame
,
EDA_BaseStruct
*
DrawStruct
,
wxDC
*
DC
);
EDA_BaseStruct
*
DrawStruct
,
wxDC
*
DC
);
...
@@ -621,7 +623,7 @@ void WinEDA_PcbFrame::Process_Special_Functions( wxCommandEvent& event )
...
@@ -621,7 +623,7 @@ void WinEDA_PcbFrame::Process_Special_Functions( wxCommandEvent& event )
break
;
break
;
case
ID_POPUP_PCB_SELECT_NO_CU_LAYER
:
case
ID_POPUP_PCB_SELECT_NO_CU_LAYER
:
itmp
=
SelectLayer
(
GetScreen
()
->
m_Active_Layer
,
CMP_N
+
1
,
-
1
);
itmp
=
SelectLayer
(
GetScreen
()
->
m_Active_Layer
,
FIRST_NO_COPPER_LAYER
,
-
1
);
if
(
itmp
>=
0
)
if
(
itmp
>=
0
)
GetScreen
()
->
m_Active_Layer
=
itmp
;
GetScreen
()
->
m_Active_Layer
=
itmp
;
DrawPanel
->
MouseToCursorSchema
();
DrawPanel
->
MouseToCursorSchema
();
...
@@ -982,36 +984,73 @@ void WinEDA_PcbFrame::SwitchLayer( wxDC* DC, int layer )
...
@@ -982,36 +984,73 @@ void WinEDA_PcbFrame::SwitchLayer( wxDC* DC, int layer )
{
{
int
preslayer
=
GetScreen
()
->
m_Active_Layer
;
int
preslayer
=
GetScreen
()
->
m_Active_Layer
;
//
if there is only one layer, don't switch.
//
Check if the specified layer matches the present layer
if
(
m_Pcb
->
m_BoardSettings
->
m_CopperLayerCount
<=
1
)
if
(
layer
==
preslayer
)
return
;
return
;
//
otherwise, must be at least 2 layers. see if it is possible.
//
Copper layers cannot be selected unconditionally; how many
if
(
layer
==
COPPER_LAYER_N
||
layer
==
LAYER_CMP_N
// of those layers are currently enabled needs to be checked.
||
layer
<
m_Pcb
->
m_BoardSettings
->
m_CopperLayerCount
-
1
)
if
(
(
layer
>=
COPPER_LAYER_N
)
&&
(
layer
<=
CMP_N
)
)
{
{
if
(
preslayer
==
layer
)
// If only one copper layer is enabled, the only such layer
return
;
// that can be selected to is the "Copper" layer (so the
// selection of any other copper layer is disregarded).
if
(
m_Pcb
->
m_BoardSettings
->
m_CopperLayerCount
<
2
)
{
if
(
layer
!=
COPPER_LAYER_N
)
{
// Uncomment following command (and line 17) to beep
// the speaker. (Doing that would provide feedback to
// the user that the (layer-switching) command has been
// "acknowledged", but is unable to be acted upon.)
// wxBell();
return
;
}
}
// If more than one copper layer is enabled, the "Copper"
// and "Component" layers can be selected, but the total
// number of copper layers determines which internal
// layers are also capable of being selected.
else
{
if
(
(
layer
!=
COPPER_LAYER_N
)
&&
(
layer
!=
LAYER_CMP_N
)
&&
(
layer
>=
m_Pcb
->
m_BoardSettings
->
m_CopperLayerCount
-
1
)
)
{
// Uncomment following command (and line 17) to beep
// the speaker. (Doing that would provide feedback to
// the user that the (layer-switching) command has been
// "acknowledged", but is unable to be acted upon.)
// wxBell();
return
;
}
}
EDA_BaseStruct
*
current
=
GetScreen
()
->
GetCurItem
();
EDA_BaseStruct
*
current
=
GetScreen
()
->
GetCurItem
();
//
s
ee if we are drawing a segment; if so, add a via?
//
S
ee if we are drawing a segment; if so, add a via?
if
(
m_ID_current_state
==
ID_TRACK_BUTT
&&
current
!=
NULL
)
if
(
m_ID_current_state
==
ID_TRACK_BUTT
&&
current
!=
NULL
)
{
{
if
(
current
->
Type
()
==
TYPETRACK
&&
(
current
->
m_Flags
&
IS_NEW
)
)
if
(
current
->
Type
()
==
TYPETRACK
&&
(
current
->
m_Flags
&
IS_NEW
)
)
{
{
//
w
ant to set the routing layers so that it switches properly -
//
W
ant to set the routing layers so that it switches properly -
//see the implementation of Other_Layer_Route - the working
//
see the implementation of Other_Layer_Route - the working
//layer is used to 'start' the via and set the layer masks appropriately.
//
layer is used to 'start' the via and set the layer masks appropriately.
GetScreen
()
->
m_Route_Layer_TOP
=
preslayer
;
GetScreen
()
->
m_Route_Layer_TOP
=
preslayer
;
GetScreen
()
->
m_Route_Layer_BOTTOM
=
layer
;
GetScreen
()
->
m_Route_Layer_BOTTOM
=
layer
;
GetScreen
()
->
m_Active_Layer
=
preslayer
;
GetScreen
()
->
m_Active_Layer
=
preslayer
;
Other_Layer_Route
(
(
TRACK
*
)
GetScreen
()
->
GetCurItem
(),
DC
);
Other_Layer_Route
(
(
TRACK
*
)
GetScreen
()
->
GetCurItem
(),
DC
);
}
}
}
}
}
GetScreen
()
->
m_Active_Layer
=
layer
;
// Is yet more checking required? E.g. when the layer to be selected
// is a non-copper layer, or when switching between a copper layer
// and a non-copper layer, or vice-versa?
// ...
if
(
DisplayOpt
.
ContrastModeDisplay
)
GetScreen
()
->
m_Active_Layer
=
layer
;
GetScreen
()
->
SetRefreshReq
();
}
if
(
DisplayOpt
.
ContrastModeDisplay
)
GetScreen
()
->
SetRefreshReq
();
}
}
pcbnew/hotkeys.cpp
View file @
d5b353ac
...
@@ -23,7 +23,7 @@
...
@@ -23,7 +23,7 @@
* add the HkMyNewEntry pointer in the s_board_edit_Hotkey_List list ( or/and the s_module_edit_Hotkey_List list)
* add the HkMyNewEntry pointer in the s_board_edit_Hotkey_List list ( or/and the s_module_edit_Hotkey_List list)
* Add the new code in the switch in OnHotKey() function.
* Add the new code in the switch in OnHotKey() function.
* when the variable PopupOn is true, an item is currently edited.
* when the variable PopupOn is true, an item is currently edited.
* This can be useful
l
if the new function cannot be executed while an item is currently being edited
* This can be useful if the new function cannot be executed while an item is currently being edited
* ( For example, one cannot start a new wire when a component is moving.)
* ( For example, one cannot start a new wire when a component is moving.)
*
*
* Note: If an hotkey is a special key, be sure the corresponding wxWidget keycode (WXK_XXXX)
* Note: If an hotkey is a special key, be sure the corresponding wxWidget keycode (WXK_XXXX)
...
@@ -202,28 +202,27 @@ void WinEDA_PcbFrame::OnHotKey( wxDC* DC, int hotkey,
...
@@ -202,28 +202,27 @@ void WinEDA_PcbFrame::OnHotKey( wxDC* DC, int hotkey,
case
HK_SWITCH_LAYER_TO_PREVIOUS
:
case
HK_SWITCH_LAYER_TO_PREVIOUS
:
ll
=
GetScreen
()
->
m_Active_Layer
;
ll
=
GetScreen
()
->
m_Active_Layer
;
if
(
ll
>
CMP_N
)
if
(
(
ll
<=
COPPER_LAYER_N
)
||
(
ll
>
CMP_N
)
)
break
;
break
;
if
(
ll
<=
COPPER_LAYER_N
)
if
(
m_Pcb
->
m_BoardSettings
->
m_CopperLayerCount
<
2
)
// Single layer
break
;
if
(
m_Pcb
->
m_BoardSettings
->
m_CopperLayerCount
<=
1
)
// Single layer
ll
=
COPPER_LAYER_N
;
ll
=
COPPER_LAYER_N
;
if
(
ll
==
CMP_N
)
else
if
(
ll
==
CMP_N
)
ll
=
MAX
(
COPPER_LAYER_N
,
m_Pcb
->
m_BoardSettings
->
m_CopperLayerCount
-
2
);
ll
=
MAX
(
COPPER_LAYER_N
,
m_Pcb
->
m_BoardSettings
->
m_CopperLayerCount
-
2
);
else
if
(
ll
>
COPPER_LAYER_N
)
else
ll
--
;
ll
--
;
SwitchLayer
(
DC
,
ll
);
SwitchLayer
(
DC
,
ll
);
break
;
break
;
case
HK_SWITCH_LAYER_TO_NEXT
:
case
HK_SWITCH_LAYER_TO_NEXT
:
ll
=
GetScreen
()
->
m_Active_Layer
;
ll
=
GetScreen
()
->
m_Active_Layer
;
if
(
ll
>=
CMP_N
)
if
(
(
ll
<
COPPER_LAYER_N
)
||
(
ll
>=
CMP_N
)
)
break
;
break
;
ll
++
;
if
(
m_Pcb
->
m_BoardSettings
->
m_CopperLayerCount
<
2
)
// Single layer
if
(
ll
>=
m_Pcb
->
m_BoardSettings
->
m_CopperLayerCount
-
1
)
ll
=
CMP_N
;
if
(
m_Pcb
->
m_BoardSettings
->
m_CopperLayerCount
<=
1
)
// Single layer
ll
=
COPPER_LAYER_N
;
ll
=
COPPER_LAYER_N
;
else
if
(
ll
>=
m_Pcb
->
m_BoardSettings
->
m_CopperLayerCount
-
2
)
ll
=
CMP_N
;
else
ll
++
;
SwitchLayer
(
DC
,
ll
);
SwitchLayer
(
DC
,
ll
);
break
;
break
;
...
...
pcbnew/set_color.cpp
View file @
d5b353ac
This diff is collapsed.
Click to expand it.
pcbnew/set_color.h
0 → 100644
View file @
d5b353ac
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