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
dfa7e1d6
Commit
dfa7e1d6
authored
May 07, 2009
by
charras
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Code cleaning and enhancements about EDA_TextStruct
parent
86a40a93
Changes
4
Show whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
175 additions
and
84 deletions
+175
-84
base_struct.cpp
common/base_struct.cpp
+130
-51
block.cpp
eeschema/block.cpp
+2
-2
base_struct.h
include/base_struct.h
+24
-3
zones_convert_brd_items_to_polygons.cpp
pcbnew/zones_convert_brd_items_to_polygons.cpp
+19
-28
No files found.
common/base_struct.cpp
View file @
dfa7e1d6
...
...
@@ -185,23 +185,114 @@ EDA_TextStruct::~EDA_TextStruct()
}
/********************************/
int
EDA_TextStruct
::
Len_Size
()
/********************************/
// Return the text lenght in internal units
/**
* Function LenSize
* @return the text lenght in internal units
* @param aLine : the line of text to consider.
* For single line text, this parameter is always m_Text
*/
int
EDA_TextStruct
::
LenSize
(
const
wxString
&
aLine
)
{
int
nbchar
=
m_Text
.
Len
();
int
len
;
int
nbchar
=
aLine
.
Len
();
if
(
nbchar
==
0
)
return
0
;
int
len
=
(
(
(
10
*
m_Size
.
x
)
/
9
)
+
m_Width
)
*
nbchar
;
len
=
(
(
(
10
*
m_Size
.
x
)
/
9
)
+
m_Width
)
*
nbchar
;
return
len
;
}
/** Function GetTextBox
* useful in multiline texts to calculate the full text or a line area (for zones filling, locate functions....)
* @return the rect containing the line of text (i.e. the position and the size of one line)
* this rectangle is calculated for 0 orient text. if orient is not 0 the rect must be rotated to match the physical area
* @param aLine : the line of text to consider.
* for single line text, aLine is unused
* If aLine == -1, the full area (considering all lines) is returned
*/
EDA_Rect
EDA_TextStruct
::
GetTextBox
(
int
aLine
)
{
EDA_Rect
rect
;
wxPoint
pos
;
wxArrayString
*
list
=
NULL
;
wxString
*
text
=
&
m_Text
;
if
(
m_MultilineAllowed
)
{
list
=
wxStringSplit
(
m_Text
,
'\n'
);
if
(
aLine
>=
0
&&
(
aLine
<
(
int
)
list
->
GetCount
())
)
text
=
&
list
->
Item
(
aLine
);
else
text
=
&
list
->
Item
(
0
);
}
// calculate the H and V size
int
dx
=
LenSize
(
*
text
);
int
dy
=
m_Size
.
y
+
m_Width
;
int
extra_dy
=
(
m_Size
.
y
*
3
)
/
10
;
// extra dy value for letters like j and y
/* Creates bounding box (rectangle) for an horizontal text */
wxSize
textsize
=
wxSize
(
dx
,
dy
);
rect
.
SetOrigin
(
m_Pos
);
// for multiline texts ans aLine < 0, merge all rectangles
if
(
m_MultilineAllowed
&&
aLine
<
0
)
{
dy
=
GetInterline
();
for
(
unsigned
ii
=
1
;
ii
<
list
->
GetCount
();
ii
++
)
{
text
=
&
list
->
Item
(
ii
);
dx
=
LenSize
(
*
text
);
textsize
.
x
=
MAX
(
textsize
.
x
,
dx
);
textsize
.
y
+=
dy
;
}
}
delete
list
;
textsize
.
y
+=
extra_dy
;
rect
.
SetSize
(
textsize
);
/* Now, calculate the rect origin, according to text justification
* At this point the area origin is the text origin.
* This is true only for left and top text justified.
* and must be recalculated for others justifications
* also, note the V justification is relative to the first line
*/
switch
(
m_HJustify
)
{
case
GR_TEXT_HJUSTIFY_LEFT
:
break
;
case
GR_TEXT_HJUSTIFY_CENTER
:
rect
.
SetX
(
rect
.
GetX
()
-
(
rect
.
GetWidth
()
/
2
)
);
break
;
case
GR_TEXT_HJUSTIFY_RIGHT
:
rect
.
SetX
(
rect
.
GetX
()
-
rect
.
GetWidth
()
);
break
;
}
dy
=
m_Size
.
y
+
m_Width
;
switch
(
m_VJustify
)
{
case
GR_TEXT_VJUSTIFY_TOP
:
break
;
case
GR_TEXT_VJUSTIFY_CENTER
:
rect
.
SetY
(
rect
.
GetY
()
-
(
dy
/
2
)
);
break
;
case
GR_TEXT_VJUSTIFY_BOTTOM
:
rect
.
SetY
(
rect
.
GetY
()
+
(
dy
/
2
)
);
break
;
}
rect
.
Normalize
();
// Make h and v sizes always >= 0
return
rect
;
}
/*************************************************/
bool
EDA_TextStruct
::
HitTest
(
const
wxPoint
&
posref
)
/*************************************************/
...
...
@@ -212,21 +303,13 @@ bool EDA_TextStruct::HitTest( const wxPoint& posref )
* false else.
*/
{
int
dx
,
dy
;
wxPoint
location
;
dx
=
(
int
)
(
(
Pitch
()
*
GetLength
()
)
/
2
);
dy
=
m_Size
.
y
/
2
;
EDA_Rect
rect
=
GetTextBox
(
-
1
);
// Get the full text area.
/* Is the ref point inside the text area ? */
location
=
posref
-
m_Pos
;
RotatePoint
(
&
location
,
-
m_Orient
);
wxPoint
location
=
posref
;
RotatePoint
(
&
location
,
m_Pos
,
-
m_Orient
);
if
(
(
abs
(
location
.
x
)
<=
abs
(
dx
)
)
&&
(
abs
(
location
.
y
)
<=
abs
(
dy
)
)
)
return
true
;
return
false
;
return
rect
.
Inside
(
location
);
}
...
...
@@ -279,18 +362,15 @@ void EDA_TextStruct::Draw( WinEDA_DrawPanel* aPanel, wxDC* aDC,
*/
{
if
(
m_MultilineAllowed
)
if
(
m_MultilineAllowed
)
{
wxPoint
pos
=
m_Pos
;
wxArrayString
*
list
=
wxStringSplit
(
m_Text
,
'\n'
);
wxPoint
offset
;
offset
.
y
=
(
int
)
(
m_Size
.
y
*
1.5
);
offset
.
y
=
GetInterline
(
);
RotatePoint
(
&
offset
,
m_Orient
);
if
(
m_Mirror
)
offset
.
x
=
-
offset
.
x
;
for
(
unsigned
i
=
0
;
i
<
list
->
Count
();
i
++
)
{
wxString
txt
=
list
->
Item
(
i
);
...
...
@@ -308,7 +388,6 @@ void EDA_TextStruct::Draw( WinEDA_DrawPanel* aPanel, wxDC* aDC,
delete
(
list
);
}
else
DrawOneLineOfText
(
aPanel
,
aDC
,
...
...
@@ -353,7 +432,7 @@ void EDA_TextStruct::DrawOneLineOfText( WinEDA_DrawPanel* aPanel, wxDC* aDC,
if
(
aAnchor_color
!=
UNSPECIFIED_COLOR
)
{
int
anchor_size
=
aPanel
->
GetScreen
()
->
Unscale
(
2
);
aAnchor_color
=
(
EDA_Colors
)
(
aAnchor_color
&
MASKCOLOR
);
aAnchor_color
=
(
EDA_Colors
)
(
aAnchor_color
&
MASKCOLOR
);
int
cX
=
aPos
.
x
+
aOffset
.
x
;
int
cY
=
aPos
.
y
+
aOffset
.
y
;
...
...
eeschema/block.cpp
View file @
dfa7e1d6
...
...
@@ -709,9 +709,9 @@ void MirrorOneStruct( SCH_ITEM* DrawStruct, wxPoint& Center )
DrawText
=
(
SCH_TEXT
*
)
DrawStruct
;
px
=
DrawText
->
m_Pos
;
if
(
DrawText
->
m_Orient
==
0
)
/* horizontal text */
dx
=
DrawText
->
Len
_Size
(
)
/
2
;
dx
=
DrawText
->
Len
Size
(
DrawText
->
m_Text
)
/
2
;
else
if
(
DrawText
->
m_Orient
==
2
)
/* invert horizontal text*/
dx
=
-
DrawText
->
Len
_Size
(
)
/
2
;
dx
=
-
DrawText
->
Len
Size
(
DrawText
->
m_Text
)
/
2
;
else
dx
=
0
;
px
.
x
+=
dx
;
...
...
include/base_struct.h
View file @
dfa7e1d6
...
...
@@ -567,10 +567,31 @@ public:
bool
HitTest
(
EDA_Rect
&
refArea
);
/**
* Function Len_Size
* Return the text lenght in internal units
* Function LenSize
* @return the text lenght in internal units
* @param aLine : the line of text to consider.
* For single line text, this parameter is always m_Text
*/
int
Len_Size
();
int
LenSize
(
const
wxString
&
aLine
);
/** Function GetTextBox
* useful in multiline texts to calculate the full text or a line area (for zones filling, locate functions....)
* @return the rect containing the line of text (i.e. the position and the size of one line)
* this rectangle is calculated for 0 orient text. if orient is not 0 the rect must be rotated to match the physical area
* @param aLine : the line of text to consider.
* for single line text, aLine is unused
* If aLine == -1, the full area (considering all lines) is returned
*/
EDA_Rect
GetTextBox
(
int
aLine
=
-
1
);
/** Function GetInterline
* return the distance between 2 text lines
* has meaning only for multiline texts
*/
int
GetInterline
()
{
return
((
m_Size
.
y
*
13
)
/
10
)
+
m_Width
;
}
};
#endif
/* BASE_STRUCT_H */
pcbnew/zones_convert_brd_items_to_polygons.cpp
View file @
dfa7e1d6
...
...
@@ -277,8 +277,6 @@ void ZONE_CONTAINER::AddClearanceAreasPolygonsToPolysList( BOARD* aPcb )
break
;
case
TYPE_TEXTE
:
if
(
(
(
TEXTE_PCB
*
)
item
)
->
GetLength
()
==
0
)
break
;
AddTextBoxWithClearancePolygon
(
booleng
,
(
TEXTE_PCB
*
)
item
,
m_ZoneClearance
);
have_poly_to_substract
=
true
;
break
;
...
...
@@ -1234,36 +1232,29 @@ void AddRingPolygon( Bool_Engine* aBooleng, wxPoint aCentre,
void
AddTextBoxWithClearancePolygon
(
Bool_Engine
*
aBooleng
,
TEXTE_PCB
*
aText
,
int
aClearanceValue
)
{
int
corners
[
8
];
// Buffer of coordinates
int
ii
;
int
dx
=
aText
->
Pitch
()
*
aText
->
GetLength
();
int
dy
=
aText
->
m_Size
.
y
+
aText
->
m_Width
;
/* Creates bounding box (rectangle) for an horizontal text */
dx
/=
2
;
dy
/=
2
;
/* dx et dy = demi dimensionx X et Y */
dx
+=
aClearanceValue
;
dy
+=
aClearanceValue
;
corners
[
0
]
=
aText
->
m_Pos
.
x
-
dx
;
corners
[
1
]
=
aText
->
m_Pos
.
y
-
dy
;
corners
[
2
]
=
aText
->
m_Pos
.
x
+
dx
;
corners
[
3
]
=
aText
->
m_Pos
.
y
-
dy
;
corners
[
4
]
=
aText
->
m_Pos
.
x
+
dx
;
corners
[
5
]
=
aText
->
m_Pos
.
y
+
dy
;
corners
[
6
]
=
aText
->
m_Pos
.
x
-
dx
;
corners
[
7
]
=
aText
->
m_Pos
.
y
+
dy
;
// Rotate rectangle
RotatePoint
(
&
corners
[
0
],
&
corners
[
1
],
aText
->
m_Pos
.
x
,
aText
->
m_Pos
.
y
,
aText
->
m_Orient
);
RotatePoint
(
&
corners
[
2
],
&
corners
[
3
],
aText
->
m_Pos
.
x
,
aText
->
m_Pos
.
y
,
aText
->
m_Orient
);
RotatePoint
(
&
corners
[
4
],
&
corners
[
5
],
aText
->
m_Pos
.
x
,
aText
->
m_Pos
.
y
,
aText
->
m_Orient
);
RotatePoint
(
&
corners
[
6
],
&
corners
[
7
],
aText
->
m_Pos
.
x
,
aText
->
m_Pos
.
y
,
aText
->
m_Orient
);
if
(
aText
->
GetLength
()
==
0
)
return
;
wxPoint
corners
[
4
];
// Buffer of polygon corners
EDA_Rect
rect
=
aText
->
GetTextBox
(
-
1
);
rect
.
Inflate
(
aClearanceValue
,
aClearanceValue
);
corners
[
0
]
=
rect
.
GetOrigin
();
corners
[
1
].
y
=
corners
[
0
].
y
;
corners
[
1
].
x
=
rect
.
GetRight
();
corners
[
2
].
x
=
corners
[
1
].
x
;
corners
[
2
].
y
=
rect
.
GetBottom
();
corners
[
3
].
y
=
corners
[
2
].
y
;
corners
[
3
].
x
=
corners
[
0
].
x
;
if
(
aBooleng
->
StartPolygonAdd
(
GROUP_B
)
)
{
for
(
i
i
=
0
;
ii
<
8
;
ii
+=
2
)
for
(
i
nt
ii
=
0
;
ii
<
4
;
ii
++
)
{
aBooleng
->
AddPoint
(
corners
[
ii
],
corners
[
ii
+
1
]
);
// Rotate polygon
RotatePoint
(
&
corners
[
ii
].
x
,
&
corners
[
ii
].
y
,
aText
->
m_Pos
.
x
,
aText
->
m_Pos
.
y
,
aText
->
m_Orient
);
aBooleng
->
AddPoint
(
corners
[
ii
].
x
,
corners
[
ii
].
y
);
}
aBooleng
->
EndPolygonAdd
();
...
...
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