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
60a86853
Commit
60a86853
authored
Jun 05, 2014
by
Bernhard Stegmaier
Committed by
Maciej Suminski
Jun 05, 2014
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Removed a few warnings.
parent
afbe21fe
Changes
10
Hide whitespace changes
Inline
Side-by-side
Showing
10 changed files
with
21 additions
and
16 deletions
+21
-16
cairo_gal.cpp
common/gal/cairo/cairo_gal.cpp
+4
-0
graphics_abstraction_layer.cpp
common/gal/graphics_abstraction_layer.cpp
+4
-0
view.cpp
common/view/view.cpp
+1
-1
cairo_gal.h
include/gal/cairo/cairo_gal.h
+1
-1
graphics_abstraction_layer.h
include/gal/graphics_abstraction_layer.h
+1
-1
direction.h
pcbnew/router/direction.h
+7
-5
pns_line.cpp
pcbnew/router/pns_line.cpp
+3
-3
pns_shove.cpp
pcbnew/router/pns_shove.cpp
+0
-1
pns_shove.h
pcbnew/router/pns_shove.h
+0
-2
router_tool.h
pcbnew/router/router_tool.h
+0
-2
No files found.
common/gal/cairo/cairo_gal.cpp
View file @
60a86853
...
...
@@ -35,6 +35,10 @@
using
namespace
KIGFX
;
const
float
CAIRO_GAL
::
LAYER_ALPHA
=
0.8
;
CAIRO_GAL
::
CAIRO_GAL
(
wxWindow
*
aParent
,
wxEvtHandler
*
aMouseListener
,
wxEvtHandler
*
aPaintListener
,
const
wxString
&
aName
)
:
wxWindow
(
aParent
,
wxID_ANY
,
wxDefaultPosition
,
wxDefaultSize
,
wxEXPAND
,
aName
)
...
...
common/gal/graphics_abstraction_layer.cpp
View file @
60a86853
...
...
@@ -31,6 +31,10 @@
using
namespace
KIGFX
;
const
double
GAL
::
METRIC_UNIT_LENGTH
=
1e9
;
GAL
::
GAL
()
:
strokeFont
(
this
)
{
...
...
common/view/view.cpp
View file @
60a86853
...
...
@@ -893,7 +893,7 @@ void VIEW::updateItemGeometry( VIEW_ITEM* aItem, int aLayer )
group
=
m_gal
->
BeginGroup
();
aItem
->
setGroup
(
aLayer
,
group
);
if
(
!
m_painter
->
Draw
(
static_cast
<
EDA_ITEM
*>
(
aItem
),
aLayer
)
)
;
if
(
!
m_painter
->
Draw
(
static_cast
<
EDA_ITEM
*>
(
aItem
),
aLayer
)
)
aItem
->
ViewDraw
(
aLayer
,
m_gal
);
// Alternative drawing method
m_gal
->
EndGroup
();
...
...
include/gal/cairo/cairo_gal.h
View file @
60a86853
...
...
@@ -389,7 +389,7 @@ private:
static
const
cairo_format_t
GAL_FORMAT
=
CAIRO_FORMAT_RGB24
;
///> Opacity of a single layer
static
const
float
LAYER_ALPHA
=
0
.
8
;
static
const
float
LAYER_ALPHA
;
};
}
// namespace KIGFX
...
...
include/gal/graphics_abstraction_layer.h
View file @
60a86853
...
...
@@ -820,7 +820,7 @@ public:
/// Depth level on which the grid is drawn
static
const
int
GRID_DEPTH
=
1024
;
static
const
double
METRIC_UNIT_LENGTH
=
1e9
;
static
const
double
METRIC_UNIT_LENGTH
;
protected
:
std
::
stack
<
double
>
depthStack
;
///< Stored depth values
...
...
pcbnew/router/direction.h
View file @
60a86853
...
...
@@ -331,13 +331,15 @@ private:
if
(
mag
<
0
.
0
)
mag
+=
360
.
0
;
m_dir
=
(
Directions
)(
(
mag
+
22
.
5
)
/
45
.
0
)
;
int
dir
=
(
mag
+
22
.
5
)
/
45
.
0
;
if
(
m_
dir
>=
8
)
m_dir
=
(
Directions
)(
m_dir
-
8
)
;
if
(
dir
>=
8
)
dir
=
dir
-
8
;
if
(
m_dir
<
0
)
m_dir
=
(
Directions
)(
m_dir
+
8
);
if
(
dir
<
0
)
dir
=
dir
+
8
;
m_dir
=
(
Directions
)
dir
;
return
;
...
...
pcbnew/router/pns_line.cpp
View file @
60a86853
...
...
@@ -626,19 +626,19 @@ void PNS_LINE::DragSegment ( const VECTOR2I& aP, int aIndex, int aSnappingThresh
OPT_VECTOR2I
ip
;
if
(
ip
=
s1
.
Intersect
(
s_next
)
)
if
(
(
ip
=
s1
.
Intersect
(
s_next
)
)
)
{
np
.
Append
(
s1
.
A
);
np
.
Append
(
*
ip
);
np
.
Append
(
s_next
.
B
);
}
else
if
(
ip
=
s3
.
Intersect
(
s_prev
)
)
else
if
(
(
ip
=
s3
.
Intersect
(
s_prev
)
)
)
{
np
.
Append
(
s_prev
.
A
);
np
.
Append
(
*
ip
);
np
.
Append
(
s3
.
B
);
}
else
if
(
ip
=
s1
.
Intersect
(
s3
)
)
else
if
(
(
ip
=
s1
.
Intersect
(
s3
)
)
)
{
np
.
Append
(
s_prev
.
A
);
np
.
Append
(
*
ip
);
...
...
pcbnew/router/pns_shove.cpp
View file @
60a86853
...
...
@@ -560,7 +560,6 @@ PNS_SHOVE::SHOVE_STATUS PNS_SHOVE::onCollidingVia (PNS_ITEM* aCurrent, PNS_VIA*
{
int
clearance
=
m_currentNode
->
GetClearance
(
aCurrent
,
aObstacleVia
)
;
LINE_PAIR_VEC
draggedLines
;
VECTOR2I
p0
(
aObstacleVia
->
Pos
()
);
bool
colLine
=
false
,
colVia
=
false
;
PNS_LINE
*
currentLine
=
NULL
;
VECTOR2I
mtvLine
,
mtvVia
,
mtv
,
mtvSolid
;
...
...
pcbnew/router/pns_shove.h
View file @
60a86853
...
...
@@ -126,8 +126,6 @@ private:
PNS_NODE
*
m_root
;
PNS_NODE
*
m_currentNode
;
PNS_LINE
*
m_currentHead
;
PNS_LINE
*
m_collidingLine
;
OPT_LINE
m_newHead
;
...
...
pcbnew/router/router_tool.h
View file @
60a86853
...
...
@@ -77,8 +77,6 @@ private:
PNS_ITEM
*
m_endItem
;
VECTOR2I
m_endSnapPoint
;
CONTEXT_MENU
*
m_menu
;
///> Flag marking that the router's world needs syncing.
bool
m_needsSync
;
};
...
...
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