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
c13cdb09
Commit
c13cdb09
authored
Sep 01, 2014
by
Maciej Suminski
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Fixed line width settings in the module editor (GAL).
parent
b86ac3b3
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
52 additions
and
23 deletions
+52
-23
drawing_tool.cpp
pcbnew/tools/drawing_tool.cpp
+46
-23
drawing_tool.h
pcbnew/tools/drawing_tool.h
+6
-0
No files found.
pcbnew/tools/drawing_tool.cpp
View file @
c13cdb09
...
...
@@ -289,17 +289,21 @@ int DRAWING_TOOL::DrawDimension( TOOL_EVENT& aEvent )
break
;
}
else
if
(
evt
->
Is
KeyPressed
(
)
&&
step
!=
SET_ORIGIN
)
else
if
(
evt
->
Is
Action
(
&
COMMON_ACTIONS
::
incWidth
)
&&
step
!=
SET_ORIGIN
)
{
width
=
dimension
->
GetWidth
();
dimension
->
SetWidth
(
dimension
->
GetWidth
()
+
WIDTH_STEP
);
preview
.
ViewUpdate
(
KIGFX
::
VIEW_ITEM
::
GEOMETRY
);
}
// Modify the new item width
if
(
evt
->
KeyCode
()
==
'-'
&&
width
>
WIDTH_STEP
)
dimension
->
SetWidth
(
width
-
WIDTH_STEP
);
else
if
(
evt
->
KeyCode
()
==
'='
)
dimension
->
SetWidth
(
width
+
WIDTH_STEP
);
else
if
(
evt
->
IsAction
(
&
COMMON_ACTIONS
::
decWidth
)
&&
step
!=
SET_ORIGIN
)
{
int
width
=
dimension
->
GetWidth
();
preview
.
ViewUpdate
(
KIGFX
::
VIEW_ITEM
::
GEOMETRY
);
if
(
width
>
WIDTH_STEP
)
{
dimension
->
SetWidth
(
width
-
WIDTH_STEP
);
preview
.
ViewUpdate
(
KIGFX
::
VIEW_ITEM
::
GEOMETRY
);
}
}
else
if
(
evt
->
IsClick
(
BUT_LEFT
)
)
...
...
@@ -465,17 +469,21 @@ int DRAWING_TOOL::PlaceTarget( TOOL_EVENT& aEvent )
if
(
evt
->
IsCancel
()
||
evt
->
IsActivate
()
)
break
;
else
if
(
evt
->
IsKeyPressed
()
)
else
if
(
evt
->
IsAction
(
&
COMMON_ACTIONS
::
incWidth
)
)
{
target
->
SetWidth
(
target
->
GetWidth
()
+
WIDTH_STEP
);
preview
.
ViewUpdate
(
KIGFX
::
VIEW_ITEM
::
GEOMETRY
);
}
else
if
(
evt
->
IsAction
(
&
COMMON_ACTIONS
::
decWidth
)
)
{
int
width
=
target
->
GetWidth
();
// Modify the new item width
if
(
evt
->
KeyCode
()
==
'-'
&&
width
>
WIDTH_STEP
)
if
(
width
>
WIDTH_STEP
)
{
target
->
SetWidth
(
width
-
WIDTH_STEP
);
else
if
(
evt
->
KeyCode
()
==
'='
)
target
->
SetWidth
(
width
+
WIDTH_STEP
);
preview
.
ViewUpdate
(
KIGFX
::
VIEW_ITEM
::
GEOMETRY
);
preview
.
ViewUpdate
(
KIGFX
::
VIEW_ITEM
::
GEOMETRY
);
}
}
else
if
(
evt
->
IsClick
(
BUT_LEFT
)
)
...
...
@@ -893,7 +901,7 @@ bool DRAWING_TOOL::drawSegment( int aShape, DRAWSEGMENT*& aGraphic,
// Init the new item attributes
aGraphic
->
SetShape
(
(
STROKE_T
)
aShape
);
aGraphic
->
SetWidth
(
m_board
->
GetDesignSettings
().
m_DrawSegment
Width
);
aGraphic
->
SetWidth
(
line
Width
);
aGraphic
->
SetStart
(
wxPoint
(
aStartingPoint
->
x
,
aStartingPoint
->
y
)
);
aGraphic
->
SetEnd
(
wxPoint
(
cursorPos
.
x
,
cursorPos
.
y
)
);
aGraphic
->
SetLayer
(
layer
);
...
...
@@ -955,7 +963,8 @@ bool DRAWING_TOOL::drawSegment( int aShape, DRAWSEGMENT*& aGraphic,
{
// Init the new item attributes
aGraphic
->
SetShape
(
(
STROKE_T
)
aShape
);
aGraphic
->
SetWidth
(
m_board
->
GetDesignSettings
().
m_DrawSegmentWidth
);
lineWidth
=
getSegmentWidth
(
layer
);
aGraphic
->
SetWidth
(
lineWidth
);
aGraphic
->
SetStart
(
wxPoint
(
cursorPos
.
x
,
cursorPos
.
y
)
);
aGraphic
->
SetEnd
(
wxPoint
(
cursorPos
.
x
,
cursorPos
.
y
)
);
aGraphic
->
SetLayer
(
layer
);
...
...
@@ -1003,17 +1012,17 @@ bool DRAWING_TOOL::drawSegment( int aShape, DRAWSEGMENT*& aGraphic,
else
if
(
evt
->
IsAction
(
&
COMMON_ACTIONS
::
incWidth
)
)
{
aGraphic
->
SetWidth
(
aGraphic
->
GetWidth
()
+
WIDTH_STEP
);
lineWidth
+=
WIDTH_STEP
;
aGraphic
->
SetWidth
(
lineWidth
);
updatePreview
=
true
;
}
else
if
(
evt
->
IsAction
(
&
COMMON_ACTIONS
::
decWidth
)
)
{
int
width
=
aGraphic
->
GetWidth
();
if
(
width
>
WIDTH_STEP
)
if
(
lineWidth
>
WIDTH_STEP
)
{
aGraphic
->
SetWidth
(
width
-
WIDTH_STEP
);
lineWidth
-=
WIDTH_STEP
;
aGraphic
->
SetWidth
(
lineWidth
);
updatePreview
=
true
;
}
}
...
...
@@ -1093,7 +1102,7 @@ bool DRAWING_TOOL::drawArc( DRAWSEGMENT*& aGraphic )
// Init the new item attributes
aGraphic
->
SetShape
(
S_ARC
);
aGraphic
->
SetAngle
(
0.0
);
aGraphic
->
SetWidth
(
m_board
->
GetDesignSettings
().
m_DrawSegmentWidth
);
aGraphic
->
SetWidth
(
getSegmentWidth
(
layer
)
);
aGraphic
->
SetCenter
(
wxPoint
(
cursorPos
.
x
,
cursorPos
.
y
)
);
aGraphic
->
SetLayer
(
layer
);
...
...
@@ -1685,3 +1694,17 @@ void DRAWING_TOOL::setTransitions()
Go
(
&
DRAWING_TOOL
::
PlaceDXF
,
COMMON_ACTIONS
::
placeDXF
.
MakeEvent
()
);
Go
(
&
DRAWING_TOOL
::
SetAnchor
,
COMMON_ACTIONS
::
setAnchor
.
MakeEvent
()
);
}
int
DRAWING_TOOL
::
getSegmentWidth
(
unsigned
int
aLayer
)
const
{
assert
(
m_board
);
if
(
aLayer
==
Edge_Cuts
)
return
m_board
->
GetDesignSettings
().
m_EdgeSegmentWidth
;
else
if
(
m_editModules
)
return
m_board
->
GetDesignSettings
().
m_ModuleSegmentWidth
;
else
return
m_board
->
GetDesignSettings
().
m_DrawSegmentWidth
;
}
pcbnew/tools/drawing_tool.h
View file @
c13cdb09
...
...
@@ -191,6 +191,9 @@ private:
///> Sets up handlers for various events.
void
setTransitions
();
///> Returns the appropriate width for a segment depending on the settings.
int
getSegmentWidth
(
unsigned
int
aLayer
)
const
;
KIGFX
::
VIEW
*
m_view
;
KIGFX
::
VIEW_CONTROLS
*
m_controls
;
BOARD
*
m_board
;
...
...
@@ -199,6 +202,9 @@ private:
/// Edit module mode flag
bool
m_editModules
;
/// Stores the current line width for multisegment drawing.
unsigned
int
lineWidth
;
// How does line width change after one -/+ key press.
static
const
int
WIDTH_STEP
=
100000
;
};
...
...
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