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
8080a2c9
Commit
8080a2c9
authored
Jul 31, 2008
by
charras
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
code cleaning and a bug in eeschema (print all not working) solved
parent
5a27f272
Changes
22
Hide whitespace changes
Inline
Side-by-side
Showing
22 changed files
with
823 additions
and
512 deletions
+823
-512
change_log.txt
change_log.txt
+9
-0
worksheet.cpp
common/worksheet.cpp
+61
-6
rdpcad.cpp
cvpcb/rdpcad.cpp
+277
-238
readschematicnetlist.cpp
cvpcb/readschematicnetlist.cpp
+2
-2
build_BOM.cpp
eeschema/build_BOM.cpp
+16
-2
eeredraw.cpp
eeschema/eeredraw.cpp
+9
-5
hierarch.cpp
eeschema/hierarch.cpp
+216
-194
netform.cpp
eeschema/netform.cpp
+8
-5
build_version.h
include/build_version.h
+1
-1
pad_shapes.h
include/pad_shapes.h
+1
-2
wxstruct.h
include/wxstruct.h
+8
-0
class_pad.cpp
pcbnew/class_pad.cpp
+7
-11
dialog_pad_edit.cpp
pcbnew/dialog_pad_edit.cpp
+9
-11
dialog_pad_edit.h
pcbnew/dialog_pad_edit.h
+6
-7
dialog_pad_edit.pjd
pcbnew/dialog_pad_edit.pjd
+161
-3
editpads.cpp
pcbnew/editpads.cpp
+20
-19
files.cpp
pcbnew/files.cpp
+1
-0
librairi.cpp
pcbnew/librairi.cpp
+2
-0
pcbnew.h
pcbnew/pcbnew.h
+2
-4
plotgerb.cpp
pcbnew/plotgerb.cpp
+5
-0
plothpgl.cpp
pcbnew/plothpgl.cpp
+1
-0
router.cpp
pcbnew/router.cpp
+1
-2
No files found.
change_log.txt
View file @
8080a2c9
...
@@ -5,6 +5,15 @@ Started 2007-June-11
...
@@ -5,6 +5,15 @@ 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.
2008-Juil-31 UPDATE Jean-Pierre Charras <jean-pierre.charras@inpg.fr>
================================================================================
+eeschema:
Added component sheet X,Y location in BOM.
Netlist generation: now spaces in names are replaced by '_' for pcbnew (which does not accept spaces)
Bug: print all pages did not work.
Please note in complex hierarchy, the current "Print All" function needs to be enhanced,
because it does not draw all sheets but only all different sheets
2008-Jule-08 UPDATE Andrey Fedorushkov <andrf@mail.ru>
2008-Jule-08 UPDATE Andrey Fedorushkov <andrf@mail.ru>
================================================================================
================================================================================
+pcbnew:
+pcbnew:
...
...
common/worksheet.cpp
View file @
8080a2c9
...
@@ -30,18 +30,18 @@ void WinEDA_DrawFrame::TraceWorkSheet( wxDC* DC, BASE_SCREEN* screen, int line_w
...
@@ -30,18 +30,18 @@ void WinEDA_DrawFrame::TraceWorkSheet( wxDC* DC, BASE_SCREEN* screen, int line_w
wxString
Line
;
wxString
Line
;
Ki_WorkSheetData
*
WsItem
;
Ki_WorkSheetData
*
WsItem
;
int
scale
=
m_InternalUnits
/
1000
;
int
scale
=
m_InternalUnits
/
1000
;
wxSize
size
(
SIZETEXT
*
scale
,
SIZETEXT
*
scale
);
wxSize
size
(
SIZETEXT
*
scale
,
SIZETEXT
*
scale
);
wxSize
size_ref
(
SIZETEXT_REF
*
scale
,
SIZETEXT_REF
*
scale
);
wxSize
size_ref
(
SIZETEXT_REF
*
scale
,
SIZETEXT_REF
*
scale
);
wxString
msg
;
wxString
msg
;
int
UpperLimit
=
VARIABLE_BLOCK_START_POSITION
;
int
UpperLimit
=
VARIABLE_BLOCK_START_POSITION
;
int
width
=
line_width
;
int
width
=
line_width
;
Color
=
RED
;
Color
=
RED
;
if
(
Sheet
==
NULL
)
if
(
Sheet
==
NULL
)
{
{
DisplayError
(
this
,
DisplayError
(
this
,
wxT
(
"WinEDA_DrawFrame::TraceWorkSheet() error:
m_CurrentSheet NULL
"
)
);
wxT
(
"WinEDA_DrawFrame::TraceWorkSheet() error:
NULL Sheet
"
)
);
return
;
return
;
}
}
...
@@ -315,6 +315,61 @@ void WinEDA_DrawFrame::TraceWorkSheet( wxDC* DC, BASE_SCREEN* screen, int line_w
...
@@ -315,6 +315,61 @@ void WinEDA_DrawFrame::TraceWorkSheet( wxDC* DC, BASE_SCREEN* screen, int line_w
}
}
/************************************************************************************************/
wxString
WinEDA_DrawFrame
::
GetXYSheetReferences
(
BASE_SCREEN
*
aScreen
,
const
wxPoint
&
aPosition
)
/************************************************************************************************/
/** Function GetXYSheetReferences
* Return the X,Y sheet references where the point position is located
* @param aScreen = screen to use
* @param aPosition = position to identify by YX ref
* @return a wxString containing the message locator like A3 or B6 (or ?? if out of page limits)
*/
{
Ki_PageDescr
*
Sheet
=
aScreen
->
m_CurrentSheetDesc
;
int
ii
,
xg
,
yg
,
ipas
,
gxpas
,
gypas
;
int
refx
,
refy
;
wxString
msg
;
if
(
Sheet
==
NULL
)
{
DisplayError
(
this
,
wxT
(
"WinEDA_DrawFrame::GetXYSheetReferences() error: NULL Sheet"
)
);
return
msg
;
}
refx
=
Sheet
->
m_LeftMargin
;
refy
=
Sheet
->
m_TopMargin
;
/* Upper left corner */
xg
=
Sheet
->
m_Size
.
x
-
Sheet
->
m_RightMargin
;
yg
=
Sheet
->
m_Size
.
y
-
Sheet
->
m_BottomMargin
;
/* lower right corner */
/* Get the Y axis identifier (A symbol A ... Z) */
if
(
aPosition
.
y
<
refy
||
aPosition
.
y
>
yg
)
// Ouside of Y limits
msg
<<
wxT
(
"?"
);
else
{
ipas
=
(
yg
-
refy
)
/
PAS_REF
;
// ipas = Y count sections
gypas
=
(
yg
-
refy
)
/
ipas
;
// gypas = Y section size
ii
=
(
aPosition
.
y
-
refy
)
/
gypas
;
msg
.
Printf
(
wxT
(
"%c"
),
'A'
+
ii
);
}
/* Get the X axis identifier (A number 1 ... n) */
if
(
aPosition
.
x
<
refx
||
aPosition
.
x
>
xg
)
// Ouside of X limits
msg
<<
wxT
(
"?"
);
else
{
ipas
=
(
xg
-
refx
)
/
PAS_REF
;
// ipas = X count sections
gxpas
=
(
xg
-
refx
)
/
ipas
;
// gxpas = X section size
ii
=
(
aPosition
.
x
-
refx
)
/
gxpas
;
msg
<<
ii
+
1
;
}
return
msg
;
}
/*********************************************************************/
/*********************************************************************/
wxString
WinEDA_DrawFrame
::
GetScreenDesc
()
wxString
WinEDA_DrawFrame
::
GetScreenDesc
()
/*********************************************************************/
/*********************************************************************/
...
...
cvpcb/rdpcad.cpp
View file @
8080a2c9
/****************/
/****************/
/* rdpcad() */
/* rdpcad() */
/***************/
/***************/
/* convertit la netliste PCAD en netliste standard (fichier temporaire)
/* convertit la netliste PCAD en netliste standard (fichier temporaire)
assure la reaffectation des alimentations selon le format :
*
assure la reaffectation des alimentations selon le format :
{I VALEUR<SEPARATEUR>(pin1,pin2,...=newalim).PRT ID
*
{I VALEUR<SEPARATEUR>(pin1,pin2,...=newalim).PRT ID
*/
*/
#include "fctsys.h"
#include "fctsys.h"
...
@@ -18,257 +18,296 @@ assure la reaffectation des alimentations selon le format :
...
@@ -18,257 +18,296 @@ assure la reaffectation des alimentations selon le format :
#define SEPARATEUR '|'
#define SEPARATEUR '|'
/* routines locales : */
/* routines locales : */
int
pin
()
;
int
pin
();
/***************************************/
/***************************************/
int
WinEDA_CvpcbFrame
::
rdpcad
()
int
WinEDA_CvpcbFrame
::
rdpcad
()
/***************************************/
/***************************************/
{
{
int
i
,
j
,
k
,
l
;
int
i
,
j
,
k
,
l
;
char
Line
[
1024
];
char
Line
[
1024
];
char
label
[
80
]
;
/* buffer des references composants */
char
label
[
80
];
/* buffer des references composants */
char
val
[
80
]
;
/* buffer des valeurs */
char
val
[
80
];
/* buffer des valeurs */
char
*
ptchar
;
/* pointeur de service */
char
*
ptchar
;
/* pointeur de service */
STORECMP
*
Cmp
;
STORECMP
*
Cmp
;
modified
=
0
;
modified
=
0
;
Rjustify
=
0
;
Rjustify
=
0
;
/* Raz buffer et variable de gestion */
/* Raz buffer et variable de gestion */
if
(
g_BaseListeCmp
)
FreeMemoryComponants
();
if
(
g_BaseListeCmp
)
FreeMemoryComponants
();
/* Ouverture du fichier source */
source
=
wxFopen
(
FFileName
,
wxT
(
"rt"
));
/* Ouverture du fichier source */
if
(
source
==
0
)
source
=
wxFopen
(
FFileName
,
wxT
(
"rt"
)
);
{
if
(
source
==
0
)
wxString
msg
;
{
msg
.
Printf
(
_
(
"File <%s> not found"
),
FFileName
.
GetData
());
wxString
msg
;
DisplayError
(
this
,
msg
);
return
(
-
1
);
msg
.
Printf
(
_
(
"File <%s> not found"
),
FFileName
.
GetData
()
);
}
DisplayError
(
this
,
msg
);
return
-
1
;
}
/* Lecture entete qui doit etre "{COMPONENT ORCAD.PCB" ou "{ OrCAD PCB"*/
fgets
(
Line
,
255
,
source
)
;
/* Lecture entete qui doit etre "{COMPONENT ORCAD.PCB" ou "{ OrCAD PCB"*/
i
=
strncmp
(
Line
,
"{COMPONENT ORCAD.PCB"
,
9
)
;
/* net type PCAD */
fgets
(
Line
,
255
,
source
);
i
=
strncmp
(
Line
,
"{COMPONENT ORCAD.PCB"
,
9
);
/* net type PCAD */
if
(
i
!=
0
)
{
if
(
i
!=
0
)
wxString
msg
,
Lineconv
=
CONV_FROM_UTF8
(
Line
);
{
msg
.
Printf
(
_
(
"Unknown file format <%s>"
),
Lineconv
.
GetData
());
wxString
msg
,
Lineconv
=
CONV_FROM_UTF8
(
Line
);
DisplayError
(
this
,
msg
);
msg
.
Printf
(
_
(
"Unknown file format <%s>"
),
Lineconv
.
GetData
()
);
fclose
(
source
);
return
(
-
3
)
;
DisplayError
(
this
,
msg
);
}
fclose
(
source
);
return
-
3
;
}
SetStatusText
(
_
(
"Netlist Format: Pcad"
),
0
);
SetStatusText
(
_
(
"Netlist Format: Pcad"
),
0
);
/* Lecture de la liste */
/* Lecture de la liste */
for
(
;;
)
{
for
(
;
;
)
/* recherche du debut de la description d'un composant */
{
/* recherche du debut de la description d'un composant */
if
(
fgets
(
Line
,
80
,
source
)
==
0
)
break
;
if
(
fgets
(
Line
,
80
,
source
)
==
0
)
/* suppression des blancs en d‚but de ligne */
break
;
i
=
0
;
while
(
Line
[
i
]
==
' '
)
i
++
;
/* suppression des blancs en d‚but de ligne */
/* elimination des lignes vides : */
i
=
0
;
while
(
Line
[
i
]
==
' '
)
if
(
Line
[
i
]
<
' '
)
continue
;
i
++
;
if
(
strncmp
(
&
Line
[
i
],
"{I"
,
2
)
!=
0
)
continue
;
/* elimination des lignes vides : */
if
(
Line
[
i
]
<
' '
)
/****************************/
continue
;
/* debut description trouv‚ */
/****************************/
if
(
strncmp
(
&
Line
[
i
],
"{I"
,
2
)
!=
0
)
continue
;
i
+=
3
;
/* i pointe le 1er caractere de la valeur du composant */
/****************************/
for
(
j
=
0
;
j
<
20
;
j
++
)
/* debut description trouv‚ */
{
/****************************/
label
[
j
]
=
0
;
val
[
j
]
=
' '
;
}
i
+=
3
;
/* i pointe le 1er caractere de la valeur du composant */
val
[
16
]
=
0
;
for
(
j
=
0
;
j
<
20
;
j
++
)
for
(
j
=
0
;
j
<
80
;
j
++
)
alim
[
j
]
=
0
;
{
label
[
j
]
=
0
;
val
[
j
]
=
' '
;
/* lecture valeur du composant ( toujours r‚ecrire sur 8 caracteres) */
}
/* recherche fin de valeur (.PRT) */
val
[
16
]
=
0
;
ptchar
=
strstr
(
Line
,
".PRT"
)
;
if
(
ptchar
==
0
)
for
(
j
=
0
;
j
<
80
;
j
++
)
{
alim
[
j
]
=
0
;
sprintf
(
cbuf
,
"Netlist error: %s
\n
"
,
Line
)
;
// Affiche_Message(cbuf) ;
/* lecture valeur du composant ( toujours reecrire sur 8 caracteres) */
}
k
=
ptchar
-
Line
;
/* recherche fin de valeur (.PRT) */
ptchar
=
strstr
(
Line
,
".PRT"
);
for
(
j
=
0
;
i
<
k
;
i
++
)
if
(
ptchar
==
0
)
{
{
if
(
Line
[
i
]
==
SEPARATEUR
)
break
;
//Netlist error: todo: display a message error
if
(
j
<
8
)
val
[
j
++
]
=
Line
[
i
]
;
}
}
k
=
ptchar
-
Line
;
if
(
(
Line
[
++
i
]
==
'('
)
&&
(
Line
[
k
-
1
]
==
')'
)
)
for
(
j
=
0
;
i
<
k
;
i
++
)
{
{
i
++
;
l
=
0
;
while
(
k
-
1
>
i
)
alim
[
l
++
]
=
Line
[
i
++
]
;
if
(
Line
[
i
]
==
SEPARATEUR
)
}
break
;
if
(
j
<
8
)
else
i
=
k
;
val
[
j
++
]
=
Line
[
i
];
}
/* recherche reference du composant */
while
(
Line
[
i
]
!=
' '
)
i
++
;
/* elimination fin valeur */
if
(
(
Line
[
++
i
]
==
'('
)
&&
(
Line
[
k
-
1
]
==
')'
)
)
while
(
Line
[
i
]
==
' '
)
i
++
;
/* recherche debut reference */
{
i
++
;
l
=
0
;
while
(
k
-
1
>
i
)
/* debut reference trouv‚ */
alim
[
l
++
]
=
Line
[
i
++
];
for
(
k
=
0
;
k
<
8
;
i
++
,
k
++
)
}
{
else
if
(
Line
[
i
]
<=
' '
)
break
;
i
=
k
;
label
[
k
]
=
Line
[
i
]
;
}
/* recherche reference du composant */
/* classement du composant ,suivi de sa valeur */
while
(
Line
[
i
]
!=
' '
)
Cmp
=
new
STORECMP
();
i
++
;
/* elimination fin valeur */
Cmp
->
Pnext
=
g_BaseListeCmp
;
g_BaseListeCmp
=
Cmp
;
while
(
Line
[
i
]
==
' '
)
Cmp
->
m_Reference
=
CONV_FROM_UTF8
(
label
);
i
++
;
/* recherche debut reference */
Cmp
->
m_Valeur
=
CONV_FROM_UTF8
(
val
);
pin
()
;
/* debut reference trouv‚ */
nbcomp
++
;
for
(
k
=
0
;
k
<
8
;
i
++
,
k
++
)
}
{
if
(
Line
[
i
]
<=
' '
)
fclose
(
source
);
break
;
label
[
k
]
=
Line
[
i
];
/* reclassement alpab‚tique : */
}
g_BaseListeCmp
=
TriListeComposantss
(
g_BaseListeCmp
,
nbcomp
);
/* classement du composant ,suivi de sa valeur */
return
(
0
);
Cmp
=
new
STORECMP
();
Cmp
->
Pnext
=
g_BaseListeCmp
;
g_BaseListeCmp
=
Cmp
;
Cmp
->
m_Reference
=
CONV_FROM_UTF8
(
label
);
Cmp
->
m_Valeur
=
CONV_FROM_UTF8
(
val
);
pin
();
nbcomp
++
;
}
fclose
(
source
);
/* reclassement alpab‚tique : */
g_BaseListeCmp
=
TriListeComposantss
(
g_BaseListeCmp
,
nbcomp
);
return
0
;
}
}
/***********************************/
/* pin() : analyse liste des pines */
/***********************************/
/***********************************/
/* pin() : analyse liste des pines */
/***********************************/
int
pin
()
int
pin
()
{
{
int
i
,
j
,
k
;
int
i
,
j
,
k
;
char
numpin
[
9
]
,
net
[
9
]
;
char
numpin
[
9
],
net
[
9
];
char
Line
[
1024
];
char
Line
[
1024
];
for
(
;;
)
for
(
;
;
)
{
{
/* recherche du debut de la description des pins d'un composant */
/* recherche du debut de la description des pins d'un composant */
if
(
fgets
(
Line
,
80
,
source
)
==
0
)
return
(
-
1
)
;
if
(
fgets
(
Line
,
80
,
source
)
==
0
)
/* suppression des blancs en d‚but de ligne */
return
-
1
;
i
=
0
;
while
(
Line
[
i
]
==
' '
)
i
++
;
/* suppression des blancs en d‚but de ligne */
i
=
0
;
while
(
Line
[
i
]
==
' '
)
/* elimination des lignes vides : */
i
++
;
if
(
Line
[
i
]
<
' '
)
continue
;
/* elimination des lignes vides : */
if
(
strncmp
(
&
Line
[
i
],
"{CN"
,
3
)
!=
0
)
continue
;
if
(
Line
[
i
]
<
' '
)
continue
;
/* debut description trouv‚ */
for
(
;;
)
if
(
strncmp
(
&
Line
[
i
],
"{CN"
,
3
)
!=
0
)
{
continue
;
if
(
fgets
(
Line
,
80
,
source
)
==
0
)
return
(
-
1
)
;
/* suppression des blancs en d‚but de ligne */
/* debut description trouv‚ */
i
=
0
;
while
(
Line
[
i
]
==
' '
)
i
++
;
for
(
;
;
)
{
if
(
fgets
(
Line
,
80
,
source
)
==
0
)
/* elimination des lignes vides : */
return
-
1
;
if
(
Line
[
i
]
<
' '
)
continue
;
/* suppression des blancs en d‚but de ligne */
i
=
0
;
while
(
Line
[
i
]
==
' '
)
/* fin de description ? */
i
++
;
if
(
Line
[
i
]
==
'}'
)
return
(
0
)
;
memset
(
net
,
0
,
sizeof
(
net
)
)
;
/* elimination des lignes vides : */
memset
(
numpin
,
0
,
sizeof
(
numpin
)
)
;
if
(
Line
[
i
]
<
' '
)
continue
;
/* lecture name pin , 4 lettres */
/* fin de description ? */
for
(
j
=
0
;
j
<
4
;
j
++
,
i
++
)
if
(
Line
[
i
]
==
'}'
)
{
return
0
;
if
(
Line
[
i
]
==
' '
)
break
;
numpin
[
j
]
=
Line
[
i
]
;
memset
(
net
,
0
,
sizeof
(
net
)
);
}
memset
(
numpin
,
0
,
sizeof
(
numpin
)
);
j
=
0
;
/* recherche affectation forc‚e de net */
/* lecture name pin , 4 lettres */
if
(
reaffect
(
&
numpin
[
j
],
net
)
!=
0
)
for
(
j
=
0
;
j
<
4
;
j
++
,
i
++
)
{
{
if
(
Line
[
i
]
==
' '
)
break
;
numpin
[
j
]
=
Line
[
i
];
}
j
=
0
;
/* recherche affectation forc‚e de net */
if
(
reaffect
(
&
numpin
[
j
],
net
)
!=
0
)
{
// fprintf(dest,"%s:%s\n",&numpin[j],net) ;
// fprintf(dest,"%s:%s\n",&numpin[j],net) ;
continue
;
continue
;
}
}
/* recherche netname */
while
(
Line
[
i
]
==
' '
)
i
++
;
/* recherche debut reference */
/* recherche netname */
/* debut netname trouv‚ */
while
(
Line
[
i
]
==
' '
)
i
++
;
/* recherche debut reference */
for
(
k
=
0
;
k
<
8
;
i
++
,
k
++
)
{
if
(
Line
[
i
]
<=
' '
)
break
;
net
[
k
]
=
Line
[
i
];
}
/* debut netname trouv‚ */
/* les pins non connect‚es sont ‚limin‚es :*/
for
(
k
=
0
;
k
<
8
;
i
++
,
k
++
)
if
(
net
[
0
]
==
'?'
)
{
continue
;
if
(
Line
[
i
]
<=
' '
)
break
;
net
[
k
]
=
Line
[
i
]
;
}
/* les pins non connect‚es sont ‚limin‚es :*/
if
(
net
[
0
]
==
'?'
)
continue
;
// fprintf(dest,"%s:%s\n",&numpin[j],net) ;
// fprintf(dest,"%s:%s\n",&numpin[j],net) ;
}
}
}
}
}
}
/**************************************/
/**************************************/
int
reaffect
(
char
*
ib
,
char
*
net
)
int
reaffect
(
char
*
ib
,
char
*
net
)
/**************************************/
/**************************************/
/* force un nom de net pour une pine
ib = reference de pin , net = nouveau net ; alim = ligne de consigne
/* force un nom de net pour une pin
*/
* ib = reference de pin , net = nouveau net ; alim = ligne de consigne
*/
{
{
char
*
pt
,
*
pt0
,
npin
[
12
]
;
char
*
pt
,
*
pt0
,
npin
[
12
];
int
i
;
int
i
;
pt
=
alim
;
pt
=
alim
;
while
(
*
pt
!=
0
)
while
(
*
pt
!=
0
)
{
{
memset
(
npin
,
0
,
sizeof
(
npin
)
)
;
memset
(
npin
,
0
,
sizeof
(
npin
)
);
/* recherche separateur (':' ou ',') */
/* recherche separateur (':' ou ',') */
while
(
(
*
pt
!=
':'
)
&&
(
*
pt
!=
','
)
)
while
(
(
*
pt
!=
':'
)
&&
(
*
pt
!=
','
)
)
{
{
pt
++
;
if
(
*
pt
==
0
)
return
(
0
)
;
pt
++
;
if
(
*
pt
==
0
)
}
return
0
;
/* suppression des blancs eventuels */
}
pt0
=
pt
;
/* save position du nom du net */
pt0
--
;
while
(
*
pt0
==
' '
)
pt0
--
;
/* suppression des blancs eventuels */
pt0
=
pt
;
/* save position du nom du net */
for
(
i
=
3
;
i
>=
0
;
i
--
)
pt0
--
;
while
(
*
pt0
==
' '
)
{
pt0
--
;
if
(
(
*
pt0
==
','
)
||
(
*
pt0
==
' '
))
break
;
npin
[
i
]
=
*
pt0
;
for
(
i
=
3
;
i
>=
0
;
i
--
)
if
(
pt0
==
alim
)
break
;
{
pt0
--
;
if
(
(
*
pt0
==
','
)
||
(
*
pt0
==
' '
)
)
}
break
;
npin
[
i
]
=
*
pt0
;
while
(
npin
[
0
]
==
' '
)
/* suppression des espaces a gauche */
if
(
pt0
==
alim
)
{
break
;
npin
[
0
]
=
npin
[
1
]
;
pt0
--
;
npin
[
1
]
=
npin
[
2
]
;
}
npin
[
2
]
=
npin
[
3
]
;
npin
[
3
]
=
' '
;
while
(
npin
[
0
]
==
' '
)
/* suppression des espaces a gauche */
}
{
if
(
strncmp
(
npin
,
ib
,
4
)
==
0
)
/* pin trouv‚e */
npin
[
0
]
=
npin
[
1
];
{
npin
[
1
]
=
npin
[
2
];
pt
++
;
while
((
*
pt
==
' '
)
&&
(
*
pt
!=
0
))
pt
++
;
npin
[
2
]
=
npin
[
3
];
i
=
0
;
npin
[
3
]
=
' '
;
while
((
*
pt
!=
0
)
&&
(
*
pt
!=
','
)
&&
(
i
<
8
)
)
}
{
net
[
i
++
]
=
*
pt
++
;
if
(
strncmp
(
npin
,
ib
,
4
)
==
0
)
/* pin trouv‚e */
}
{
net
[
i
]
=
0
;
pt
++
;
while
(
(
*
pt
==
' '
)
&&
(
*
pt
!=
0
)
)
return
(
1
)
;
pt
++
;
}
pt
++
;
i
=
0
;
}
while
(
(
*
pt
!=
0
)
&&
(
*
pt
!=
','
)
&&
(
i
<
8
)
)
return
(
0
)
;
{
net
[
i
++
]
=
*
pt
++
;
}
net
[
i
]
=
0
;
return
1
;
}
pt
++
;
}
return
0
;
}
}
cvpcb/readschematicnetlist.cpp
View file @
8080a2c9
...
@@ -57,7 +57,7 @@ int WinEDA_CvpcbFrame::ReadSchematicNetlist()
...
@@ -57,7 +57,7 @@ int WinEDA_CvpcbFrame::ReadSchematicNetlist()
/* Read the file header (must be "( { OrCAD PCB" or "({ OrCAD PCB" )
/* Read the file header (must be "( { OrCAD PCB" or "({ OrCAD PCB" )
* or "# EESchema Netliste"
* or "# EESchema Netliste"
*/
*/
fgets
(
Line
,
255
,
source
);
fgets
(
Line
,
BUFFER_CHAR_SIZE
,
source
);
/* test for netlist type PCB2 */
/* test for netlist type PCB2 */
i
=
strnicmp
(
Line
,
"( {"
,
3
);
i
=
strnicmp
(
Line
,
"( {"
,
3
);
if
(
i
!=
0
)
if
(
i
!=
0
)
...
@@ -310,7 +310,7 @@ int ReadPinConnection( STORECMP* Cmp )
...
@@ -310,7 +310,7 @@ int ReadPinConnection( STORECMP* Cmp )
memset
(
net
,
0
,
sizeof
(
net
)
);
memset
(
net
,
0
,
sizeof
(
net
)
);
memset
(
numpin
,
0
,
sizeof
(
numpin
)
);
memset
(
numpin
,
0
,
sizeof
(
numpin
)
);
/* Read pi name , 4 letters */
/* Read pi
n
name , 4 letters */
for
(
jj
=
0
;
jj
<
4
;
jj
++
,
i
++
)
for
(
jj
=
0
;
jj
<
4
;
jj
++
,
i
++
)
{
{
if
(
Line
[
i
]
==
' '
)
if
(
Line
[
i
]
==
' '
)
...
...
eeschema/build_BOM.cpp
View file @
8080a2c9
...
@@ -312,8 +312,8 @@ int BuildComponentsListFromSchematic( ListComponent* aList )
...
@@ -312,8 +312,8 @@ int BuildComponentsListFromSchematic( ListComponent* aList )
CONV_TO_UTF8
(
DrawLibItem
->
GetRef
(
sheet
)
),
CONV_TO_UTF8
(
DrawLibItem
->
GetRef
(
sheet
)
),
sizeof
(
aList
->
m_Ref
)
);
sizeof
(
aList
->
m_Ref
)
);
//
@todo the above line is probably a bug, because it will not
always nul terminate m_Ref.
//
Ensure
always nul terminate m_Ref.
aList
->
m_Ref
[
sizeof
(
aList
->
m_Ref
)
-
1
]
=
0
;
aList
++
;
aList
++
;
}
}
}
}
...
@@ -670,7 +670,11 @@ int WinEDA_Build_BOM_Frame::PrintComponentsListByRef( FILE* f,
...
@@ -670,7 +670,11 @@ int WinEDA_Build_BOM_Frame::PrintComponentsListByRef( FILE* f,
fprintf
(
f
,
"ref%cvalue"
,
s_ExportSeparatorSymbol
);
fprintf
(
f
,
"ref%cvalue"
,
s_ExportSeparatorSymbol
);
if
(
aIncludeSubComponents
)
if
(
aIncludeSubComponents
)
{
fprintf
(
f
,
"%csheet path"
,
s_ExportSeparatorSymbol
);
fprintf
(
f
,
"%csheet path"
,
s_ExportSeparatorSymbol
);
fprintf
(
f
,
"%clocation"
,
s_ExportSeparatorSymbol
);
}
if
(
m_AddFootprintField
->
IsChecked
()
)
if
(
m_AddFootprintField
->
IsChecked
()
)
fprintf
(
f
,
"%cfootprint"
,
s_ExportSeparatorSymbol
);
fprintf
(
f
,
"%cfootprint"
,
s_ExportSeparatorSymbol
);
...
@@ -737,9 +741,17 @@ int WinEDA_Build_BOM_Frame::PrintComponentsListByRef( FILE* f,
...
@@ -737,9 +741,17 @@ int WinEDA_Build_BOM_Frame::PrintComponentsListByRef( FILE* f,
{
{
msg
=
aList
[
ii
].
m_SheetList
.
PathHumanReadable
();
msg
=
aList
[
ii
].
m_SheetList
.
PathHumanReadable
();
if
(
CompactForm
)
if
(
CompactForm
)
{
fprintf
(
f
,
"%c%s"
,
s_ExportSeparatorSymbol
,
CONV_TO_UTF8
(
msg
)
);
fprintf
(
f
,
"%c%s"
,
s_ExportSeparatorSymbol
,
CONV_TO_UTF8
(
msg
)
);
msg
=
m_Parent
->
GetXYSheetReferences
(
(
BASE_SCREEN
*
)
DrawLibItem
->
m_Parent
,
DrawLibItem
->
m_Pos
);
fprintf
(
f
,
"%c%s)"
,
s_ExportSeparatorSymbol
,
CONV_TO_UTF8
(
msg
)
);
}
else
else
{
fprintf
(
f
,
" (Sheet %s)"
,
CONV_TO_UTF8
(
msg
)
);
fprintf
(
f
,
" (Sheet %s)"
,
CONV_TO_UTF8
(
msg
)
);
msg
=
m_Parent
->
GetXYSheetReferences
(
(
BASE_SCREEN
*
)
DrawLibItem
->
m_Parent
,
DrawLibItem
->
m_Pos
);
fprintf
(
f
,
" (loc %s)"
,
CONV_TO_UTF8
(
msg
)
);
}
}
}
PrintFieldData
(
f
,
DrawLibItem
,
CompactForm
);
PrintFieldData
(
f
,
DrawLibItem
,
CompactForm
);
...
@@ -811,6 +823,8 @@ int WinEDA_Build_BOM_Frame::PrintComponentsListByVal( FILE* f,
...
@@ -811,6 +823,8 @@ int WinEDA_Build_BOM_Frame::PrintComponentsListByVal( FILE* f,
{
{
msg
=
aList
[
ii
].
m_SheetList
.
PathHumanReadable
();
msg
=
aList
[
ii
].
m_SheetList
.
PathHumanReadable
();
fprintf
(
f
,
" (Sheet %s)"
,
CONV_TO_UTF8
(
msg
)
);
fprintf
(
f
,
" (Sheet %s)"
,
CONV_TO_UTF8
(
msg
)
);
msg
=
m_Parent
->
GetXYSheetReferences
(
(
BASE_SCREEN
*
)
DrawLibItem
->
m_Parent
,
DrawLibItem
->
m_Pos
);
fprintf
(
f
,
" (loc %s)"
,
CONV_TO_UTF8
(
msg
)
);
}
}
PrintFieldData
(
f
,
DrawLibItem
);
PrintFieldData
(
f
,
DrawLibItem
);
...
...
eeschema/eeredraw.cpp
View file @
8080a2c9
...
@@ -137,16 +137,20 @@ void WinEDA_SchematicFrame::RedrawActiveWindow( wxDC* DC, bool EraseBg )
...
@@ -137,16 +137,20 @@ void WinEDA_SchematicFrame::RedrawActiveWindow( wxDC* DC, bool EraseBg )
/*******************************************************************************/
/*******************************************************************************/
void
WinEDA_DrawPanel
::
PrintPage
(
wxDC
*
DC
,
bool
Print_Sheet_Ref
,
int
PrintMask
)
void
WinEDA_DrawPanel
::
PrintPage
(
wxDC
*
DC
,
bool
Print_Sheet_Ref
,
int
PrintMask
)
/*******************************************************************************/
/*******************************************************************************/
/** PrintPage
* used to print a page.
* Print the page pointed by ActiveScreen, set by the calling print function
* @param DC = wxDC given by the calling print function
* @param Print_Sheet_Ref = true to print page references
* @param PrintMask = not used here
*/
{
{
BASE_SCREEN
*
screen
;
wxBeginBusyCursor
();
wxBeginBusyCursor
();
ActiveScreen
=
screen
=
m_Parent
->
GetBaseScreen
();
RedrawStructList
(
this
,
DC
,
ActiveScreen
->
EEDrawList
,
GR_COPY
);
RedrawStructList
(
this
,
DC
,
screen
->
EEDrawList
,
GR_COPY
);
if
(
Print_Sheet_Ref
)
if
(
Print_Sheet_Ref
)
m_Parent
->
TraceWorkSheet
(
DC
,
s
creen
,
g_DrawMinimunLineWidth
);
m_Parent
->
TraceWorkSheet
(
DC
,
ActiveS
creen
,
g_DrawMinimunLineWidth
);
wxEndBusyCursor
();
wxEndBusyCursor
();
}
}
...
...
eeschema/hierarch.cpp
View file @
8080a2c9
...
@@ -20,311 +20,333 @@
...
@@ -20,311 +20,333 @@
#include "bitmaps.h"
#include "bitmaps.h"
static
bool
UpdateScreenFromSheet
(
WinEDA_SchematicFrame
*
frame
);
static
bool
UpdateScreenFromSheet
(
WinEDA_SchematicFrame
*
frame
);
enum
{
enum
{
ID_TREECTRL_HIERARCHY
=
1600
ID_TREECTRL_HIERARCHY
=
1600
};
};
class
WinEDA_HierFrame
;
class
WinEDA_HierFrame
;
/* Cette classe permet de memoriser la feuille (sheet) associ�e a l'item
/* Cette classe permet de memoriser la feuille (sheet) associ�e a l'item
pour l'arbre de hierarchie */
*
pour l'arbre de hierarchie */
class
TreeItemData
:
public
wxTreeItemData
class
TreeItemData
:
public
wxTreeItemData
{
{
public
:
public
:
DrawSheetPath
m_SheetList
;
DrawSheetPath
m_SheetList
;
TreeItemData
(
DrawSheetPath
sheet
)
:
wxTreeItemData
()
TreeItemData
(
DrawSheetPath
sheet
)
:
wxTreeItemData
()
{
{
m_SheetList
=
sheet
;
m_SheetList
=
sheet
;
}
}
};
};
/* Classe de l'arbre de hierarchie */
/* Classe de l'arbre de hierarchie */
class
WinEDA_Tree
:
public
wxTreeCtrl
class
WinEDA_Tree
:
public
wxTreeCtrl
{
{
private
:
private
:
WinEDA_HierFrame
*
m_Parent
;
WinEDA_HierFrame
*
m_Parent
;
wxImageList
*
imageList
;
wxImageList
*
imageList
;
public
:
public
:
WinEDA_Tree
()
{
}
WinEDA_Tree
()
{
}
WinEDA_Tree
(
WinEDA_HierFrame
*
parent
);
WinEDA_Tree
(
WinEDA_HierFrame
*
parent
);
DECLARE_DYNAMIC_CLASS
(
WinEDA_Tree
)
DECLARE_DYNAMIC_CLASS
(
WinEDA_Tree
)
};
};
IMPLEMENT_DYNAMIC_CLASS
(
WinEDA_Tree
,
wxTreeCtrl
)
IMPLEMENT_DYNAMIC_CLASS
(
WinEDA_Tree
,
wxTreeCtrl
)
WinEDA_Tree
::
WinEDA_Tree
(
WinEDA_HierFrame
*
parent
)
:
WinEDA_Tree
::
WinEDA_Tree
(
WinEDA_HierFrame
*
parent
)
:
wxTreeCtrl
(
(
wxWindow
*
)
parent
,
ID_TREECTRL_HIERARCHY
,
wxTreeCtrl
(
(
wxWindow
*
)
parent
,
ID_TREECTRL_HIERARCHY
,
wxDefaultPosition
,
wxDefaultSize
,
wxDefaultPosition
,
wxDefaultSize
,
wxTR_HAS_BUTTONS
,
wxDefaultValidator
,
wxT
(
"HierachyTreeCtrl"
)
)
wxTR_HAS_BUTTONS
,
wxDefaultValidator
,
wxT
(
"HierachyTreeCtrl"
))
{
{
m_Parent
=
parent
;
m_Parent
=
parent
;
// Make an image list containing small icons
imageList
=
new
wxImageList
(
16
,
15
,
TRUE
,
2
);
imageList
->
Add
(
wxBitmap
(
tree_nosel_xpm
));
// Make an image list containing small icons
imageList
->
Add
(
wxBitmap
(
tree_sel_xpm
)
);
imageList
=
new
wxImageList
(
16
,
15
,
TRUE
,
2
);
AssignImageList
(
imageList
);
imageList
->
Add
(
wxBitmap
(
tree_nosel_xpm
)
);
imageList
->
Add
(
wxBitmap
(
tree_sel_xpm
)
);
AssignImageList
(
imageList
);
}
}
/* Classe definissant la fenetre d'affichage de la hierarchie */
/* Classe definissant la fenetre d'affichage de la hierarchie */
class
WinEDA_HierFrame
:
public
wxDialog
class
WinEDA_HierFrame
:
public
wxDialog
{
{
public
:
public
:
WinEDA_SchematicFrame
*
m_Parent
;
WinEDA_SchematicFrame
*
m_Parent
;
WinEDA_Tree
*
m_Tree
;
WinEDA_Tree
*
m_Tree
;
int
m_nbsheets
;
int
m_nbsheets
;
wxDC
*
m_DC
;
wxDC
*
m_DC
;
private
:
private
:
wxSize
m_TreeSize
;
// Taille de l'arbre de hierarchie
wxSize
m_TreeSize
;
// Taille de l'arbre de hierarchie
int
maxposx
;
int
maxposx
;
public
:
public
:
WinEDA_HierFrame
(
WinEDA_SchematicFrame
*
parent
,
wxDC
*
DC
,
const
wxPoint
&
pos
);
WinEDA_HierFrame
(
WinEDA_SchematicFrame
*
parent
,
wxDC
*
DC
,
const
wxPoint
&
pos
);
void
BuildSheetList
(
DrawSheetPath
*
list
,
wxTreeItemId
*
previousmenu
);
void
BuildSheetList
(
DrawSheetPath
*
list
,
wxTreeItemId
*
previousmenu
);
~
WinEDA_HierFrame
();
void
OnSelect
(
wxTreeEvent
&
event
);
~
WinEDA_HierFrame
();
void
OnSelect
(
wxTreeEvent
&
event
);
private
:
private
:
void
OnQuit
(
wxCommandEvent
&
event
);
void
OnQuit
(
wxCommandEvent
&
event
);
DECLARE_EVENT_TABLE
()
DECLARE_EVENT_TABLE
()
};
};
BEGIN_EVENT_TABLE
(
WinEDA_HierFrame
,
wxDialog
)
BEGIN_EVENT_TABLE
(
WinEDA_HierFrame
,
wxDialog
)
EVT_TREE_ITEM_ACTIVATED
(
ID_TREECTRL_HIERARCHY
,
EVT_TREE_ITEM_ACTIVATED
(
ID_TREECTRL_HIERARCHY
,
WinEDA_HierFrame
::
OnSelect
)
WinEDA_HierFrame
::
OnSelect
)
END_EVENT_TABLE
()
END_EVENT_TABLE
()
/*************************************************************************/
/*************************************************************************/
void
WinEDA_SchematicFrame
::
InstallHierarchyFrame
(
wxDC
*
DC
,
wxPoint
&
pos
)
void
WinEDA_SchematicFrame
::
InstallHierarchyFrame
(
wxDC
*
DC
,
wxPoint
&
pos
)
/*************************************************************************/
/*************************************************************************/
{
{
WinEDA_HierFrame
*
treeframe
=
new
WinEDA_HierFrame
(
this
,
DC
,
pos
);
WinEDA_HierFrame
*
treeframe
=
new
WinEDA_HierFrame
(
this
,
DC
,
pos
);
treeframe
->
ShowModal
();
treeframe
->
Destroy
();
treeframe
->
ShowModal
();
treeframe
->
Destroy
();
}
}
WinEDA_HierFrame
::
WinEDA_HierFrame
(
WinEDA_SchematicFrame
*
parent
,
wxDC
*
DC
,
WinEDA_HierFrame
::
WinEDA_HierFrame
(
WinEDA_SchematicFrame
*
parent
,
wxDC
*
DC
,
const
wxPoint
&
pos
)
:
const
wxPoint
&
pos
)
:
wxDialog
(
parent
,
-
1
,
_
(
"Navigator"
),
pos
,
wxSize
(
110
,
50
),
wxDialog
(
parent
,
-
1
,
_
(
"Navigator"
),
pos
,
wxSize
(
110
,
50
),
DIALOG_STYLE
)
DIALOG_STYLE
)
{
{
wxTreeItemId
cellule
;
wxTreeItemId
cellule
;
m_Parent
=
parent
;
m_Parent
=
parent
;
m_DC
=
DC
;
m_DC
=
DC
;
m_Tree
=
new
WinEDA_Tree
(
this
);
m_Tree
=
new
WinEDA_Tree
(
this
);
m_nbsheets
=
1
;
m_nbsheets
=
1
;
cellule
=
m_Tree
->
AddRoot
(
_
(
"Root"
),
0
,
1
);
cellule
=
m_Tree
->
AddRoot
(
_
(
"Root"
),
0
,
1
);
m_Tree
->
SetItemBold
(
cellule
,
TRUE
);
m_Tree
->
SetItemBold
(
cellule
,
TRUE
);
DrawSheetPath
list
;
DrawSheetPath
list
;
list
.
Push
(
g_RootSheet
);
list
.
Push
(
g_RootSheet
);
m_Tree
->
SetItemData
(
cellule
,
new
TreeItemData
(
list
)
);
m_Tree
->
SetItemData
(
cellule
,
new
TreeItemData
(
list
)
);
wxRect
itemrect
;
wxRect
itemrect
;
#ifdef __UNIX__
#ifdef __UNIX__
itemrect
.
SetWidth
(
100
);
itemrect
.
SetWidth
(
100
);
itemrect
.
SetHeight
(
20
);
itemrect
.
SetHeight
(
20
);
#else
#else
m_Tree
->
GetBoundingRect
(
cellule
,
itemrect
);
m_Tree
->
GetBoundingRect
(
cellule
,
itemrect
);
#endif
#endif
m_TreeSize
.
x
=
itemrect
.
GetWidth
()
+
10
;
m_TreeSize
.
x
=
itemrect
.
GetWidth
()
+
10
;
m_TreeSize
.
y
=
20
;
m_TreeSize
.
y
=
20
;
if
(
m_Parent
->
GetSheet
()
->
Last
()
==
g_RootSheet
)
if
(
m_Parent
->
GetSheet
()
->
Last
()
==
g_RootSheet
)
m_Tree
->
SelectItem
(
cellule
);
//root.
m_Tree
->
SelectItem
(
cellule
);
//root.
maxposx
=
15
;
maxposx
=
15
;
BuildSheetList
(
&
list
,
&
cellule
);
BuildSheetList
(
&
list
,
&
cellule
);
if
(
m_nbsheets
>
1
)
if
(
m_nbsheets
>
1
)
{
{
m_Tree
->
Expand
(
cellule
);
m_Tree
->
Expand
(
cellule
);
// Reajustage de la taille de la frame a une valeur optimale
// Reajustage de la taille de la frame a une valeur optimale
m_TreeSize
.
y
+=
m_nbsheets
*
itemrect
.
GetHeight
();
m_TreeSize
.
y
+=
m_nbsheets
*
itemrect
.
GetHeight
();
m_TreeSize
.
x
=
MIN
(
m_TreeSize
.
x
,
250
);
m_TreeSize
.
x
=
MIN
(
m_TreeSize
.
x
,
250
);
m_TreeSize
.
y
=
MIN
(
m_TreeSize
.
y
,
350
);
m_TreeSize
.
y
=
MIN
(
m_TreeSize
.
y
,
350
);
SetClientSize
(
m_TreeSize
);
SetClientSize
(
m_TreeSize
);
}
}
}
}
WinEDA_HierFrame
::~
WinEDA_HierFrame
()
WinEDA_HierFrame
::~
WinEDA_HierFrame
()
{
{
}
}
/************************************************************************/
/************************************************************************/
void
WinEDA_HierFrame
::
OnQuit
(
wxCommandEvent
&
WXUNUSED
(
event
)
)
void
WinEDA_HierFrame
::
OnQuit
(
wxCommandEvent
&
WXUNUSED
(
event
)
)
/************************************************************************/
/************************************************************************/
{
{
// true is to force the frame to close
// true is to force the frame to close
Close
(
true
);
Close
(
true
);
}
}
/********************************************************************/
/********************************************************************/
void
WinEDA_HierFrame
::
BuildSheetList
(
DrawSheetPath
*
list
,
void
WinEDA_HierFrame
::
BuildSheetList
(
DrawSheetPath
*
list
,
wxTreeItemId
*
previousmenu
)
wxTreeItemId
*
previousmenu
)
/********************************************************************/
/********************************************************************/
/* Routine de creation de l'arbre de navigation dans la hierarchy
/* Routine de creation de l'arbre de navigation dans la hierarchy
schematique
*
schematique
Cette routine est Reentrante !
*
Cette routine est Reentrante !
*/
*/
{
{
wxTreeItemId
menu
;
wxTreeItemId
menu
;
if
(
m_nbsheets
>
NB_MAX_SHEET
){
if
(
m_nbsheets
>
NB_MAX_SHEET
)
if
(
m_nbsheets
==
(
NB_MAX_SHEET
+
1
)
){
{
wxString
msg
;
if
(
m_nbsheets
==
(
NB_MAX_SHEET
+
1
)
)
msg
<<
wxT
(
"BuildSheetList: Error: nbsheets > "
)
<<
NB_MAX_SHEET
;
{
DisplayError
(
this
,
msg
);
wxString
msg
;
m_nbsheets
++
;
msg
<<
wxT
(
"BuildSheetList: Error: nbsheets > "
)
<<
NB_MAX_SHEET
;
}
DisplayError
(
this
,
msg
);
return
;
m_nbsheets
++
;
}
}
return
;
maxposx
+=
m_Tree
->
GetIndent
();
}
EDA_BaseStruct
*
bs
=
list
->
LastDrawList
();
while
(
bs
&&
m_nbsheets
<
NB_MAX_SHEET
){
maxposx
+=
m_Tree
->
GetIndent
();
if
(
bs
->
Type
()
==
DRAW_SHEET_STRUCT_TYPE
){
EDA_BaseStruct
*
bs
=
list
->
LastDrawList
();
DrawSheetStruct
*
ss
=
(
DrawSheetStruct
*
)
bs
;
while
(
bs
&&
m_nbsheets
<
NB_MAX_SHEET
)
m_nbsheets
++
;
{
menu
=
m_Tree
->
AppendItem
(
*
previousmenu
,
if
(
bs
->
Type
()
==
DRAW_SHEET_STRUCT_TYPE
)
ss
->
m_SheetName
,
0
,
1
);
{
list
->
Push
(
ss
);
DrawSheetStruct
*
ss
=
(
DrawSheetStruct
*
)
bs
;
m_Tree
->
SetItemData
(
menu
,
new
TreeItemData
(
*
list
)
);
m_nbsheets
++
;
int
ll
=
m_Tree
->
GetItemText
(
menu
).
Len
();
menu
=
m_Tree
->
AppendItem
(
*
previousmenu
,
ss
->
m_SheetName
,
0
,
1
);
list
->
Push
(
ss
);
m_Tree
->
SetItemData
(
menu
,
new
TreeItemData
(
*
list
)
);
int
ll
=
m_Tree
->
GetItemText
(
menu
).
Len
();
#ifdef __WINDOWS__
#ifdef __WINDOWS__
ll
*=
9
;
// * char width
ll
*=
9
;
// * char width
#else
#else
ll
*=
12
;
// * char width
ll
*=
12
;
// * char width
#endif
#endif
ll
+=
maxposx
+
20
;
ll
+=
maxposx
+
20
;
m_TreeSize
.
x
=
MAX
(
m_TreeSize
.
x
,
ll
);
m_TreeSize
.
x
=
MAX
(
m_TreeSize
.
x
,
ll
);
m_TreeSize
.
y
+=
1
;
m_TreeSize
.
y
+=
1
;
if
(
*
list
==
*
(
m_Parent
->
GetSheet
())
){
if
(
*
list
==
*
(
m_Parent
->
GetSheet
()
)
)
m_Tree
->
EnsureVisible
(
menu
);
{
m_Tree
->
SelectItem
(
menu
);
m_Tree
->
EnsureVisible
(
menu
);
}
m_Tree
->
SelectItem
(
menu
);
BuildSheetList
(
list
,
&
menu
);
}
m_Tree
->
Expand
(
menu
);
BuildSheetList
(
list
,
&
menu
);
list
->
Pop
();
m_Tree
->
Expand
(
menu
);
}
list
->
Pop
();
bs
=
bs
->
Pnext
;
}
}
bs
=
bs
->
Pnext
;
maxposx
-=
m_Tree
->
GetIndent
();
}
maxposx
-=
m_Tree
->
GetIndent
();
}
}
/***************************************************/
/***************************************************/
void
WinEDA_HierFrame
::
OnSelect
(
wxTreeEvent
&
event
)
void
WinEDA_HierFrame
::
OnSelect
(
wxTreeEvent
&
event
)
/***************************************************/
/***************************************************/
/* Called on a double-click on a tree item:
/* Called on a double-click on a tree item:
Open the selected sheet, and display the corresponding screen
*
Open the selected sheet, and display the corresponding screen
*/
*/
{
{
wxTreeItemId
ItemSel
=
m_Tree
->
GetSelection
();
wxTreeItemId
ItemSel
=
m_Tree
->
GetSelection
();
*
(
m_Parent
->
m_CurrentSheet
)
=
*
(
m_Parent
->
m_CurrentSheet
)
=
((
TreeItemData
*
)(
m_Tree
->
GetItemData
(
ItemSel
))
)
->
m_SheetList
;
(
(
TreeItemData
*
)
(
m_Tree
->
GetItemData
(
ItemSel
)
)
)
->
m_SheetList
;
UpdateScreenFromSheet
(
m_Parent
);
UpdateScreenFromSheet
(
m_Parent
);
Close
(
TRUE
);
Close
(
TRUE
);
}
}
/******************************************************/
/******************************************************/
void
WinEDA_SchematicFrame
::
InstallPreviousSheet
()
void
WinEDA_SchematicFrame
::
InstallPreviousSheet
()
/******************************************************/
/******************************************************/
/* Set the current screen to display the parent sheet of the current displayed sheet
/* Set the current screen to display the parent sheet of the current displayed sheet
*/
*/
{
{
if
(
m_CurrentSheet
->
Last
()
==
g_RootSheet
)
return
;
if
(
m_CurrentSheet
->
Last
()
==
g_RootSheet
)
return
;
g_ItemToRepeat
=
NULL
;
MsgPanel
->
EraseMsgBox
();
g_ItemToRepeat
=
NULL
;
//make a copy for testing purposes.
MsgPanel
->
EraseMsgBox
();
DrawSheetPath
listtemp
=
*
m_CurrentSheet
;
listtemp
.
Pop
();
//make a copy for testing purposes.
if
(
listtemp
.
LastScreen
()
==
NULL
){
DrawSheetPath
listtemp
=
*
m_CurrentSheet
;
DisplayError
(
this
,
wxT
(
"InstallPreviousScreen() Error: Sheet not found"
));
listtemp
.
Pop
();
return
;
if
(
listtemp
.
LastScreen
()
==
NULL
)
}
{
m_CurrentSheet
->
Pop
();
DisplayError
(
this
,
wxT
(
"InstallPreviousScreen() Error: Sheet not found"
)
);
UpdateScreenFromSheet
(
this
);
return
;
}
m_CurrentSheet
->
Pop
();
UpdateScreenFromSheet
(
this
);
}
}
/*********************************************************************/
/*********************************************************************/
void
WinEDA_SchematicFrame
::
InstallNextScreen
(
DrawSheetStruct
*
Sheet
)
void
WinEDA_SchematicFrame
::
InstallNextScreen
(
DrawSheetStruct
*
Sheet
)
/*********************************************************************/
/*********************************************************************/
/* Routine d'installation de l'ecran correspondant au symbole Sheet pointe
/* Routine d'installation de l'ecran correspondant au symbole Sheet pointe
par la souris
*
par la souris
have to be careful here because the DrawSheetStructs within the EEDrawList
*
have to be careful here because the DrawSheetStructs within the EEDrawList
don't actually have a valid m_AssociatedScreen (on purpose -- you need the m_SubSheet hierarchy
*
don't actually have a valid m_AssociatedScreen (on purpose -- you need the m_SubSheet hierarchy
to maintain path info (well, this is but one way to maintain path info..)
*
to maintain path info (well, this is but one way to maintain path info..)
*/
*/
{
{
if
(
Sheet
==
NULL
)
if
(
Sheet
==
NULL
)
{
{
DisplayError
(
this
,
wxT
(
"InstallNextScreen() error"
)
);
return
;
DisplayError
(
this
,
wxT
(
"InstallNextScreen() error"
)
);
return
;
}
}
m_CurrentSheet
->
Push
(
Sheet
);
m_CurrentSheet
->
Push
(
Sheet
);
g_ItemToRepeat
=
NULL
;
g_ItemToRepeat
=
NULL
;
MsgPanel
->
EraseMsgBox
();
MsgPanel
->
EraseMsgBox
();
UpdateScreenFromSheet
(
this
);
UpdateScreenFromSheet
(
this
);
}
}
/**************************************************************/
/**************************************************************/
static
bool
UpdateScreenFromSheet
(
WinEDA_SchematicFrame
*
frame
)
static
bool
UpdateScreenFromSheet
(
WinEDA_SchematicFrame
*
frame
)
/**************************************************************/
/**************************************************************/
/* Recherche et installe de l'ecran relatif au sheet symbole Sheet.
/* Recherche et installe de l'ecran relatif au sheet symbole Sheet.
Si Sheet == NULL installation de l'ecran de base ( Root ).
*
Si Sheet == NULL installation de l'ecran de base ( Root ).
*/
*/
{
{
SCH_SCREEN
*
NewScreen
;
SCH_SCREEN
*
NewScreen
;
NewScreen
=
frame
->
m_CurrentSheet
->
LastScreen
();
NewScreen
=
frame
->
m_CurrentSheet
->
LastScreen
();
if
(
!
NewScreen
)
if
(
!
NewScreen
)
{
{
DisplayError
(
frame
,
wxT
(
"Screen not found for this sheet"
)
);
DisplayError
(
frame
,
wxT
(
"Screen not found for this sheet"
)
);
return
false
;
return
false
;
}
}
// Reinit des parametres d'affichage du nouvel ecran
// Reinit des parametres d'affichage du nouvel ecran
// assumes m_CurrentSheet has already been updated.
// assumes m_CurrentSheet has already been updated.
frame
->
MsgPanel
->
EraseMsgBox
();
frame
->
MsgPanel
->
EraseMsgBox
();
frame
->
DrawPanel
->
SetScrollbars
(
frame
->
DrawPanel
->
m_Scroll_unit
,
frame
->
DrawPanel
->
SetScrollbars
(
frame
->
DrawPanel
->
m_Scroll_unit
,
frame
->
DrawPanel
->
m_Scroll_unit
,
frame
->
DrawPanel
->
m_Scroll_unit
,
NewScreen
->
m_ScrollbarNumber
.
x
,
NewScreen
->
m_ScrollbarNumber
.
x
,
NewScreen
->
m_ScrollbarNumber
.
y
,
NewScreen
->
m_ScrollbarNumber
.
y
,
NewScreen
->
m_ScrollbarPos
.
x
,
NewScreen
->
m_ScrollbarPos
.
x
,
NewScreen
->
m_ScrollbarPos
.
y
,
TRUE
);
NewScreen
->
m_ScrollbarPos
.
y
,
TRUE
);
//update the References
//update the References
frame
->
m_CurrentSheet
->
UpdateAllScreenReferences
();
frame
->
m_CurrentSheet
->
UpdateAllScreenReferences
();
frame
->
SetSheetNumberAndCount
();
frame
->
SetSheetNumberAndCount
();
frame
->
DrawPanel
->
m_CanStartBlock
=
-
1
;
frame
->
DrawPanel
->
m_CanStartBlock
=
-
1
;
ActiveScreen
=
frame
->
m_CurrentSheet
->
LastScreen
();
ActiveScreen
=
frame
->
m_CurrentSheet
->
LastScreen
();
if
(
NewScreen
->
m_FirstRedraw
){
if
(
NewScreen
->
m_FirstRedraw
)
NewScreen
->
m_FirstRedraw
=
FALSE
;
{
frame
->
Zoom_Automatique
(
TRUE
);
NewScreen
->
m_FirstRedraw
=
FALSE
;
}
else
{
frame
->
Zoom_Automatique
(
TRUE
);
frame
->
DrawPanel
->
Refresh
();
}
frame
->
DrawPanel
->
MouseToCursorSchema
();
else
}
{
return
true
;
frame
->
DrawPanel
->
Refresh
();
frame
->
DrawPanel
->
MouseToCursorSchema
();
}
return
true
;
}
}
eeschema/netform.cpp
View file @
8080a2c9
...
@@ -236,11 +236,13 @@ static wxString ReturnPinNetName( ObjetNetListStruct* Pin,
...
@@ -236,11 +236,13 @@ static wxString ReturnPinNetName( ObjetNetListStruct* Pin,
{
{
if
(
g_TabObjNet
[
jj
].
m_Type
!=
NET_PINLABEL
)
if
(
g_TabObjNet
[
jj
].
m_Type
!=
NET_PINLABEL
)
{
{
NetName
=
g_TabObjNet
[
jj
].
m_SheetList
.
PathHumanReadable
()
wxString
lnet
=
NetName
;
+
NetName
;
NetName
=
g_TabObjNet
[
jj
].
m_SheetList
.
PathHumanReadable
();
// If sheet path is too long, use the time stamp name insteed
if
(
NetName
.
Length
()
>
32
)
NetName
=
g_TabObjNet
[
jj
].
m_SheetList
.
Path
();
NetName
+=
lnet
;
}
}
//NetName << wxT("_") << g_TabObjNet[jj].m_SheetList.PathHumanReadable();
}
}
else
else
{
{
...
@@ -619,7 +621,8 @@ static void WriteNetListPCBNEW( WinEDA_SchematicFrame* frame, FILE* f, bool with
...
@@ -619,7 +621,8 @@ static void WriteNetListPCBNEW( WinEDA_SchematicFrame* frame, FILE* f, bool with
continue
;
continue
;
wxString
netname
=
ReturnPinNetName
(
Pin
,
wxT
(
"N-%.6d"
)
);
wxString
netname
=
ReturnPinNetName
(
Pin
,
wxT
(
"N-%.6d"
)
);
if
(
netname
.
IsEmpty
()
)
if
(
netname
.
IsEmpty
()
)
netname
=
wxT
(
" ?"
);
netname
=
wxT
(
"?"
);
netname
.
Replace
(
wxT
(
" "
),
wxT
(
"_"
)
);
fprintf
(
f
,
" ( %4.4s %s )
\n
"
,
(
char
*
)
&
Pin
->
m_PinNum
,
fprintf
(
f
,
" ( %4.4s %s )
\n
"
,
(
char
*
)
&
Pin
->
m_PinNum
,
CONV_TO_UTF8
(
netname
)
);
CONV_TO_UTF8
(
netname
)
);
}
}
...
...
include/build_version.h
View file @
8080a2c9
...
@@ -9,7 +9,7 @@ COMMON_GLOBL wxString g_BuildVersion
...
@@ -9,7 +9,7 @@ COMMON_GLOBL wxString g_BuildVersion
# include "config.h"
# include "config.h"
(
wxT
(
KICAD_SVN_VERSION
))
(
wxT
(
KICAD_SVN_VERSION
))
# else
# else
(
wxT
(
"(200807
1
5"
))
(
wxT
(
"(200807
31.r117
5"
))
# endif
# endif
#endif
#endif
;
;
...
...
include/pad_shapes.h
View file @
8080a2c9
...
@@ -20,8 +20,7 @@
...
@@ -20,8 +20,7 @@
#define PAD_SMD 1 // Smd pad, appears on the layer paste (default)
#define PAD_SMD 1 // Smd pad, appears on the layer paste (default)
#define PAD_CONN 2 // Like smd, does not appear on the layer paste (default)
#define PAD_CONN 2 // Like smd, does not appear on the layer paste (default)
// reserved, but not yet really used:
// reserved, but not yet really used:
#define PAD_P_HOLE 3 // trou simple, utile sur pad stack
#define PAD_HOLE_NOT_PLATED 3 // like PAD_STANDARD, but not plated (no connection between copper layers)
#define PAD_MECA 4 // PAD "mecanique" (fixation, zone cuivre...)
#endif // PAD_SHAPES_H_
#endif // PAD_SHAPES_H_
...
...
include/wxstruct.h
View file @
8080a2c9
...
@@ -298,6 +298,14 @@ public:
...
@@ -298,6 +298,14 @@ public:
void
OnActivate
(
wxActivateEvent
&
event
);
void
OnActivate
(
wxActivateEvent
&
event
);
void
ReDrawPanel
();
void
ReDrawPanel
();
void
TraceWorkSheet
(
wxDC
*
DC
,
BASE_SCREEN
*
screen
,
int
line_width
);
void
TraceWorkSheet
(
wxDC
*
DC
,
BASE_SCREEN
*
screen
,
int
line_width
);
/** Function GetXYSheetReferences
* Return the X,Y sheet references where the point position is located
* @param aScreen = screen to use
* @param aPosition = position to identify by YX ref
* @return a wxString containing the message locator like A3 or B6 (or ?? if out of page limits)
*/
wxString
GetXYSheetReferences
(
BASE_SCREEN
*
aScreen
,
const
wxPoint
&
aPosition
);
void
DisplayToolMsg
(
const
wxString
msg
);
void
DisplayToolMsg
(
const
wxString
msg
);
void
Process_Zoom
(
wxCommandEvent
&
event
);
void
Process_Zoom
(
wxCommandEvent
&
event
);
void
Process_Grid
(
wxCommandEvent
&
event
);
void
Process_Grid
(
wxCommandEvent
&
event
);
...
...
pcbnew/class_pad.cpp
View file @
8080a2c9
...
@@ -94,7 +94,7 @@ EDA_Rect D_PAD::GetBoundingBox()
...
@@ -94,7 +94,7 @@ EDA_Rect D_PAD::GetBoundingBox()
EDA_Rect
area
;
EDA_Rect
area
;
area
.
SetOrigin
(
m_Pos
);
area
.
SetOrigin
(
m_Pos
);
area
.
Inflate
(
m_Rayon
,
m_Rayon
);
area
.
Inflate
(
m_Rayon
,
m_Rayon
);
return
area
;
return
area
;
}
}
...
@@ -256,7 +256,7 @@ void D_PAD::Draw( WinEDA_DrawPanel* panel, wxDC* DC, int draw_mode, const wxPoin
...
@@ -256,7 +256,7 @@ void D_PAD::Draw( WinEDA_DrawPanel* panel, wxDC* DC, int draw_mode, const wxPoin
int
zoom
;
int
zoom
;
int
fillpad
=
0
;
int
fillpad
=
0
;
wxPoint
shape_pos
;
wxPoint
shape_pos
;
if
(
m_Flags
&
DO_NOT_DRAW
)
if
(
m_Flags
&
DO_NOT_DRAW
)
return
;
return
;
...
@@ -747,9 +747,7 @@ int D_PAD::ReadDescr( FILE* File, int* LineNum )
...
@@ -747,9 +747,7 @@ int D_PAD::ReadDescr( FILE* File, int* LineNum )
if
(
strncmp
(
BufLine
,
"CONN"
,
4
)
==
0
)
if
(
strncmp
(
BufLine
,
"CONN"
,
4
)
==
0
)
m_Attribut
=
PAD_CONN
;
m_Attribut
=
PAD_CONN
;
if
(
strncmp
(
BufLine
,
"HOLE"
,
4
)
==
0
)
if
(
strncmp
(
BufLine
,
"HOLE"
,
4
)
==
0
)
m_Attribut
=
PAD_P_HOLE
;
m_Attribut
=
PAD_HOLE_NOT_PLATED
;
if
(
strncmp
(
BufLine
,
"MECA"
,
4
)
==
0
)
m_Attribut
=
PAD_MECA
;
break
;
break
;
case
'N'
:
/* Lecture du netname */
case
'N'
:
/* Lecture du netname */
...
@@ -777,7 +775,9 @@ int D_PAD::ReadDescr( FILE* File, int* LineNum )
...
@@ -777,7 +775,9 @@ int D_PAD::ReadDescr( FILE* File, int* LineNum )
}
}
/*************************************/
bool
D_PAD
::
Save
(
FILE
*
aFile
)
const
bool
D_PAD
::
Save
(
FILE
*
aFile
)
const
/*************************************/
{
{
int
cshape
;
int
cshape
;
const
char
*
texttype
;
const
char
*
texttype
;
...
@@ -833,12 +833,9 @@ bool D_PAD::Save( FILE* aFile ) const
...
@@ -833,12 +833,9 @@ bool D_PAD::Save( FILE* aFile ) const
case
PAD_CONN
:
case
PAD_CONN
:
texttype
=
"CONN"
;
break
;
texttype
=
"CONN"
;
break
;
case
PAD_
P_HOLE
:
case
PAD_
HOLE_NOT_PLATED
:
texttype
=
"HOLE"
;
break
;
texttype
=
"HOLE"
;
break
;
case
PAD_MECA
:
texttype
=
"MECA"
;
break
;
default
:
default
:
texttype
=
"STD"
;
texttype
=
"STD"
;
DisplayError
(
NULL
,
wxT
(
"Invalid Pad attribute"
)
);
DisplayError
(
NULL
,
wxT
(
"Invalid Pad attribute"
)
);
...
@@ -1144,8 +1141,7 @@ static const char* ShowPadAttr( int aPadAttr )
...
@@ -1144,8 +1141,7 @@ static const char* ShowPadAttr( int aPadAttr )
case
PAD_STANDARD
:
return
"STD"
;
case
PAD_STANDARD
:
return
"STD"
;
case
PAD_SMD
:
return
"SMD"
;
case
PAD_SMD
:
return
"SMD"
;
case
PAD_CONN
:
return
"CONN"
;
case
PAD_CONN
:
return
"CONN"
;
case
PAD_P_HOLE
:
return
"HOLE"
;
case
PAD_HOLE_NOT_PLATED
:
return
"HOLE"
;
case
PAD_MECA
:
return
"MECA"
;
default
:
return
"??unkown??"
;
default
:
return
"??unkown??"
;
}
}
}
}
...
...
pcbnew/dialog_pad_edit.cpp
View file @
8080a2c9
/////////////////////////////////////////////////////////////////////////////
/////////////////////////////////////////////////////////////////////////////
// Name: dialog_pad_edit.cpp
// Name: dialog_pad_edit.cpp
// Purpose:
// Purpose:
// Author: jean-pierre Charras
// Author: jean-pierre Charras
// Modified by:
// Modified by:
// Created: 28/02/2006 13:34:48
// Created: 28/02/2006 13:34:48
// RCS-ID:
// RCS-ID:
// Copyright: License GNU
// Copyright: License GNU
// Licence:
// Licence:
/////////////////////////////////////////////////////////////////////////////
/////////////////////////////////////////////////////////////////////////////
// Generated by DialogBlocks (unregistered), 28/02/2006 13:34:48
// Generated by DialogBlocks (unregistered), 28/02/2006 13:34:48
...
@@ -141,10 +141,10 @@ bool WinEDA_PadPropertiesFrame::Create( wxWindow* parent, wxWindowID id, const w
...
@@ -141,10 +141,10 @@ bool WinEDA_PadPropertiesFrame::Create( wxWindow* parent, wxWindowID id, const w
*/
*/
void
WinEDA_PadPropertiesFrame
::
CreateControls
()
void
WinEDA_PadPropertiesFrame
::
CreateControls
()
{
{
SetFont
(
*
g_DialogFont
);
SetFont
(
*
g_DialogFont
);
////@begin WinEDA_PadPropertiesFrame content construction
////@begin WinEDA_PadPropertiesFrame content construction
// Generated by DialogBlocks,
27/08/2007 21:03:5
9 (unregistered)
// Generated by DialogBlocks,
30/07/2008 22:05:1
9 (unregistered)
WinEDA_PadPropertiesFrame
*
itemDialog1
=
this
;
WinEDA_PadPropertiesFrame
*
itemDialog1
=
this
;
...
@@ -205,8 +205,6 @@ void WinEDA_PadPropertiesFrame::CreateControls()
...
@@ -205,8 +205,6 @@ void WinEDA_PadPropertiesFrame::CreateControls()
m_PadTypeStrings
.
Add
(
_
(
"Standard"
));
m_PadTypeStrings
.
Add
(
_
(
"Standard"
));
m_PadTypeStrings
.
Add
(
_
(
"SMD"
));
m_PadTypeStrings
.
Add
(
_
(
"SMD"
));
m_PadTypeStrings
.
Add
(
_
(
"Conn"
));
m_PadTypeStrings
.
Add
(
_
(
"Conn"
));
m_PadTypeStrings
.
Add
(
_
(
"Hole"
));
m_PadTypeStrings
.
Add
(
_
(
"Mechanical"
));
m_PadType
=
new
wxRadioBox
(
itemDialog1
,
ID_LISTBOX_TYPE_PAD
,
_
(
"Pad Type:"
),
wxDefaultPosition
,
wxDefaultSize
,
m_PadTypeStrings
,
1
,
wxRA_SPECIFY_COLS
);
m_PadType
=
new
wxRadioBox
(
itemDialog1
,
ID_LISTBOX_TYPE_PAD
,
_
(
"Pad Type:"
),
wxDefaultPosition
,
wxDefaultSize
,
m_PadTypeStrings
,
1
,
wxRA_SPECIFY_COLS
);
m_PadType
->
SetSelection
(
0
);
m_PadType
->
SetSelection
(
0
);
m_PadOptSizer
->
Add
(
m_PadType
,
0
,
wxGROW
|
wxALL
,
5
);
m_PadOptSizer
->
Add
(
m_PadType
,
0
,
wxGROW
|
wxALL
,
5
);
...
@@ -234,7 +232,7 @@ void WinEDA_PadPropertiesFrame::CreateControls()
...
@@ -234,7 +232,7 @@ void WinEDA_PadPropertiesFrame::CreateControls()
m_PadLayerCmp
->
SetValue
(
false
);
m_PadLayerCmp
->
SetValue
(
false
);
itemStaticBoxSizer18
->
Add
(
m_PadLayerCmp
,
0
,
wxGROW
|
wxLEFT
|
wxRIGHT
|
wxBOTTOM
,
5
);
itemStaticBoxSizer18
->
Add
(
m_PadLayerCmp
,
0
,
wxGROW
|
wxLEFT
|
wxRIGHT
|
wxBOTTOM
,
5
);
itemStaticBoxSizer18
->
Add
(
5
,
5
,
0
,
wx
ALIGN_CENTER_HORIZONTAL
|
wxALL
,
5
);
itemStaticBoxSizer18
->
Add
(
5
,
5
,
0
,
wx
GROW
|
wxALL
,
5
);
m_PadLayerAdhCmp
=
new
wxCheckBox
(
itemDialog1
,
ID_CHECKBOX2
,
_
(
"Adhesive Cmp"
),
wxDefaultPosition
,
wxDefaultSize
,
wxCHK_2STATE
);
m_PadLayerAdhCmp
=
new
wxCheckBox
(
itemDialog1
,
ID_CHECKBOX2
,
_
(
"Adhesive Cmp"
),
wxDefaultPosition
,
wxDefaultSize
,
wxCHK_2STATE
);
m_PadLayerAdhCmp
->
SetValue
(
false
);
m_PadLayerAdhCmp
->
SetValue
(
false
);
...
@@ -337,7 +335,7 @@ void WinEDA_PadPropertiesFrame::OnCancelClick( wxCommandEvent& event )
...
@@ -337,7 +335,7 @@ void WinEDA_PadPropertiesFrame::OnCancelClick( wxCommandEvent& event )
////@begin wxEVT_COMMAND_BUTTON_CLICKED event handler for wxID_CANCEL in WinEDA_PadPropertiesFrame.
////@begin wxEVT_COMMAND_BUTTON_CLICKED event handler for wxID_CANCEL in WinEDA_PadPropertiesFrame.
// Before editing this code, remove the block markers.
// Before editing this code, remove the block markers.
event
.
Skip
();
event
.
Skip
();
////@end wxEVT_COMMAND_BUTTON_CLICKED event handler for wxID_CANCEL in WinEDA_PadPropertiesFrame.
////@end wxEVT_COMMAND_BUTTON_CLICKED event handler for wxID_CANCEL in WinEDA_PadPropertiesFrame.
}
}
...
@@ -386,7 +384,7 @@ void WinEDA_PadPropertiesFrame::OnListboxShapePadSelected( wxCommandEvent& event
...
@@ -386,7 +384,7 @@ void WinEDA_PadPropertiesFrame::OnListboxShapePadSelected( wxCommandEvent& event
void
WinEDA_PadPropertiesFrame
::
OnListboxTypePadSelected
(
wxCommandEvent
&
event
)
void
WinEDA_PadPropertiesFrame
::
OnListboxTypePadSelected
(
wxCommandEvent
&
event
)
{
{
PadTypeSelected
Event
(
event
);
PadTypeSelected
(
);
}
}
...
...
pcbnew/dialog_pad_edit.h
View file @
8080a2c9
/////////////////////////////////////////////////////////////////////////////
/////////////////////////////////////////////////////////////////////////////
// Name: dialog_pad_edit.h
// Name: dialog_pad_edit.h
// Purpose:
// Purpose:
// Author: jean-pierre Charras
// Author: jean-pierre Charras
// Modified by:
// Modified by:
// Created: 28/02/2006 13:34:48
// Created: 28/02/2006 13:34:48
// RCS-ID:
// RCS-ID:
// Copyright: License GNU
// Copyright: License GNU
// Licence:
// Licence:
/////////////////////////////////////////////////////////////////////////////
/////////////////////////////////////////////////////////////////////////////
// Generated by DialogBlocks (unregistered), 28/02/2006 13:34:48
// Generated by DialogBlocks (unregistered), 28/02/2006 13:34:48
...
@@ -58,7 +58,7 @@ class wxBoxSizer;
...
@@ -58,7 +58,7 @@ class wxBoxSizer;
#define ID_CHECKBOX10 10016
#define ID_CHECKBOX10 10016
#define ID_CHECKBOX11 10017
#define ID_CHECKBOX11 10017
#define ID_CHECKBOX12 10018
#define ID_CHECKBOX12 10018
#define SYMBOL_WINEDA_PADPROPERTIESFRAME_STYLE wxCAPTION|wxSYSTEM_MENU|wxCLOSE_BOX
#define SYMBOL_WINEDA_PADPROPERTIESFRAME_STYLE wxCAPTION|wxSYSTEM_MENU|wxCLOSE_BOX
|MAYBE_RESIZE_BORDER
#define SYMBOL_WINEDA_PADPROPERTIESFRAME_TITLE _("Pad properties")
#define SYMBOL_WINEDA_PADPROPERTIESFRAME_TITLE _("Pad properties")
#define SYMBOL_WINEDA_PADPROPERTIESFRAME_IDNAME ID_DIALOG
#define SYMBOL_WINEDA_PADPROPERTIESFRAME_IDNAME ID_DIALOG
#define SYMBOL_WINEDA_PADPROPERTIESFRAME_SIZE wxSize(400, 300)
#define SYMBOL_WINEDA_PADPROPERTIESFRAME_SIZE wxSize(400, 300)
...
@@ -78,7 +78,7 @@ class wxBoxSizer;
...
@@ -78,7 +78,7 @@ class wxBoxSizer;
*/
*/
class
WinEDA_PadPropertiesFrame
:
public
wxDialog
class
WinEDA_PadPropertiesFrame
:
public
wxDialog
{
{
DECLARE_DYNAMIC_CLASS
(
WinEDA_PadPropertiesFrame
)
DECLARE_DYNAMIC_CLASS
(
WinEDA_PadPropertiesFrame
)
DECLARE_EVENT_TABLE
()
DECLARE_EVENT_TABLE
()
...
@@ -131,7 +131,6 @@ public:
...
@@ -131,7 +131,6 @@ public:
void
PadPropertiesAccept
(
wxCommandEvent
&
event
);
void
PadPropertiesAccept
(
wxCommandEvent
&
event
);
void
PadTypeSelected
();
void
PadTypeSelected
();
void
PadTypeSelectedEvent
(
wxCommandEvent
&
event
);
void
PadOrientEvent
(
wxCommandEvent
&
event
);
void
PadOrientEvent
(
wxCommandEvent
&
event
);
void
SetPadLayersList
(
long
layer_mask
);
void
SetPadLayersList
(
long
layer_mask
);
void
SetOthersControls
();
void
SetOthersControls
();
...
...
pcbnew/dialog_pad_edit.pjd
View file @
8080a2c9
...
@@ -10,8 +10,10 @@
...
@@ -10,8 +10,10 @@
<bool
name=
"convert_images_to_xpm"
>
0
</bool>
<bool
name=
"convert_images_to_xpm"
>
0
</bool>
<bool
name=
"inline_images"
>
0
</bool>
<bool
name=
"inline_images"
>
0
</bool>
<bool
name=
"generate_cpp_for_xrc"
>
0
</bool>
<bool
name=
"generate_cpp_for_xrc"
>
0
</bool>
<long
name=
"working_mode"
>
1
</long>
<bool
name=
"use_help_text_for_tooltips"
>
1
</bool>
<bool
name=
"use_help_text_for_tooltips"
>
1
</bool>
<bool
name=
"translate_strings"
>
1
</bool>
<bool
name=
"translate_strings"
>
1
</bool>
<bool
name=
"make_unicode_strings"
>
1
</bool>
<bool
name=
"extract_strings"
>
0
</bool>
<bool
name=
"extract_strings"
>
0
</bool>
<string
name=
"user_name"
>
"jean-pierre Charras"
</string>
<string
name=
"user_name"
>
"jean-pierre Charras"
</string>
<string
name=
"copyright_string"
>
"License GNU"
</string>
<string
name=
"copyright_string"
>
"License GNU"
</string>
...
@@ -106,10 +108,12 @@
...
@@ -106,10 +108,12 @@
<bool
name=
"use_resource_archive"
>
0
</bool>
<bool
name=
"use_resource_archive"
>
0
</bool>
<bool
name=
"use_generated_xrc_cpp"
>
0
</bool>
<bool
name=
"use_generated_xrc_cpp"
>
0
</bool>
<bool
name=
"always_generate_xrc"
>
1
</bool>
<bool
name=
"always_generate_xrc"
>
1
</bool>
<bool
name=
"use_id_name_for_name"
>
0
</bool>
<bool
name=
"archive_xrc_files"
>
1
</bool>
<bool
name=
"archive_xrc_files"
>
1
</bool>
<bool
name=
"archive_image_files"
>
1
</bool>
<bool
name=
"archive_image_files"
>
1
</bool>
<bool
name=
"archive_all_image_files"
>
0
</bool>
<bool
name=
"archive_all_image_files"
>
0
</bool>
<bool
name=
"xrc_retain_relative_paths"
>
1
</bool>
<bool
name=
"xrc_retain_relative_paths"
>
1
</bool>
<bool
name=
"xrc_generate_id_tags"
>
0
</bool>
</header>
</header>
<data>
<data>
<document>
<document>
...
@@ -132,6 +136,7 @@
...
@@ -132,6 +136,7 @@
<long
name=
"locked"
>
0
</long>
<long
name=
"locked"
>
0
</long>
<string
name=
"template-name"
>
""
</string>
<string
name=
"template-name"
>
""
</string>
<bool
name=
"dirty"
>
1
</bool>
<bool
name=
"dirty"
>
1
</bool>
<long
name=
"makefile-last-written"
>
-8519680
</long>
<string
name=
"Compiler name"
>
""
</string>
<string
name=
"Compiler name"
>
""
</string>
<string
name=
"Build mode"
>
"Debug"
</string>
<string
name=
"Build mode"
>
"Debug"
</string>
<string
name=
"Unicode mode"
>
"ANSI"
</string>
<string
name=
"Unicode mode"
>
"ANSI"
</string>
...
@@ -173,6 +178,8 @@
...
@@ -173,6 +178,8 @@
<string
name=
"wxWidgets build command"
>
"%AUTO%"
</string>
<string
name=
"wxWidgets build command"
>
"%AUTO%"
</string>
<string
name=
"wxWidgets clean command"
>
"%AUTO%"
</string>
<string
name=
"wxWidgets clean command"
>
"%AUTO%"
</string>
<string
name=
"PATH variable"
>
"%AUTO%"
</string>
<string
name=
"PATH variable"
>
"%AUTO%"
</string>
<bool
name=
"Suppress source rules"
>
0
</bool>
<bool
name=
"Enable makefile generation"
>
1
</bool>
</document>
</document>
</document>
</document>
</data>
</data>
...
@@ -213,6 +220,7 @@
...
@@ -213,6 +220,7 @@
<bool
name=
"use-id-suffix"
>
0
</bool>
<bool
name=
"use-id-suffix"
>
0
</bool>
<string
name=
"id-suffix"
>
""
</string>
<string
name=
"id-suffix"
>
""
</string>
<long
name=
"use-xrc"
>
0
</long>
<long
name=
"use-xrc"
>
0
</long>
<long
name=
"working-mode"
>
0
</long>
<string
name=
"proxy-Id name"
>
"ID_DIALOG"
</string>
<string
name=
"proxy-Id name"
>
"ID_DIALOG"
</string>
<long
name=
"proxy-Id value"
>
10000
</long>
<long
name=
"proxy-Id value"
>
10000
</long>
<string
name=
"proxy-Class"
>
"WinEDA_PadPropertiesFrame"
</string>
<string
name=
"proxy-Class"
>
"WinEDA_PadPropertiesFrame"
</string>
...
@@ -233,10 +241,16 @@
...
@@ -233,10 +241,16 @@
<bool
name=
"proxy-Hidden"
>
0
</bool>
<bool
name=
"proxy-Hidden"
>
0
</bool>
<bool
name=
"proxy-Enabled"
>
1
</bool>
<bool
name=
"proxy-Enabled"
>
1
</bool>
<string
name=
"proxy-Platform"
>
"
<
Any platform
>
"
</string>
<string
name=
"proxy-Platform"
>
"
<
Any platform
>
"
</string>
<string
name=
"proxy-Data source"
>
""
</string>
<string
name=
"proxy-Data class name"
>
""
</string>
<string
name=
"proxy-Data class implementation filename"
>
""
</string>
<string
name=
"proxy-Data class header filename"
>
""
</string>
<string
name=
"proxy-Data class manager window"
>
""
</string>
<string
name=
"proxy-Texture"
>
""
</string>
<string
name=
"proxy-Texture style"
>
"Tiled"
</string>
<bool
name=
"proxy-wxDEFAULT_DIALOG_STYLE"
>
0
</bool>
<bool
name=
"proxy-wxDEFAULT_DIALOG_STYLE"
>
0
</bool>
<bool
name=
"proxy-wxCAPTION"
>
1
</bool>
<bool
name=
"proxy-wxCAPTION"
>
1
</bool>
<bool
name=
"proxy-wxRESIZE_BORDER"
>
0
</bool>
<bool
name=
"proxy-wxRESIZE_BORDER"
>
0
</bool>
<bool
name=
"proxy-wxTHICK_FRAME"
>
0
</bool>
<bool
name=
"proxy-wxSYSTEM_MENU"
>
1
</bool>
<bool
name=
"proxy-wxSYSTEM_MENU"
>
1
</bool>
<bool
name=
"proxy-wxSTAY_ON_TOP"
>
0
</bool>
<bool
name=
"proxy-wxSTAY_ON_TOP"
>
0
</bool>
<bool
name=
"proxy-wxDIALOG_NO_PARENT"
>
0
</bool>
<bool
name=
"proxy-wxDIALOG_NO_PARENT"
>
0
</bool>
...
@@ -321,6 +335,7 @@
...
@@ -321,6 +335,7 @@
<string
name=
"proxy-type"
>
"wbStaticTextProxy"
</string>
<string
name=
"proxy-type"
>
"wbStaticTextProxy"
</string>
<string
name=
"proxy-Id name"
>
"wxID_STATIC"
</string>
<string
name=
"proxy-Id name"
>
"wxID_STATIC"
</string>
<long
name=
"proxy-Id value"
>
5105
</long>
<long
name=
"proxy-Id value"
>
5105
</long>
<string
name=
"proxy-Name"
>
""
</string>
<string
name=
"proxy-Class"
>
"wxStaticText"
</string>
<string
name=
"proxy-Class"
>
"wxStaticText"
</string>
<string
name=
"proxy-Base class"
>
"wxStaticText"
</string>
<string
name=
"proxy-Base class"
>
"wxStaticText"
</string>
<bool
name=
"proxy-External implementation"
>
1
</bool>
<bool
name=
"proxy-External implementation"
>
1
</bool>
...
@@ -340,6 +355,11 @@
...
@@ -340,6 +355,11 @@
<string
name=
"proxy-Platform"
>
"
<
Any platform
>
"
</string>
<string
name=
"proxy-Platform"
>
"
<
Any platform
>
"
</string>
<string
name=
"proxy-Data variable"
>
""
</string>
<string
name=
"proxy-Data variable"
>
""
</string>
<string
name=
"proxy-Data validator"
>
""
</string>
<string
name=
"proxy-Data validator"
>
""
</string>
<string
name=
"proxy-Data source"
>
""
</string>
<string
name=
"proxy-Data class name"
>
""
</string>
<string
name=
"proxy-Data class implementation filename"
>
""
</string>
<string
name=
"proxy-Data class header filename"
>
""
</string>
<string
name=
"proxy-Data class manager window"
>
""
</string>
<bool
name=
"proxy-wxALIGN_LEFT"
>
0
</bool>
<bool
name=
"proxy-wxALIGN_LEFT"
>
0
</bool>
<bool
name=
"proxy-wxALIGN_RIGHT"
>
0
</bool>
<bool
name=
"proxy-wxALIGN_RIGHT"
>
0
</bool>
<bool
name=
"proxy-wxALIGN_CENTRE"
>
0
</bool>
<bool
name=
"proxy-wxALIGN_CENTRE"
>
0
</bool>
...
@@ -385,6 +405,7 @@
...
@@ -385,6 +405,7 @@
<string
name=
"proxy-type"
>
"wbTextCtrlProxy"
</string>
<string
name=
"proxy-type"
>
"wbTextCtrlProxy"
</string>
<string
name=
"proxy-Id name"
>
"ID_TEXTCTRL_PADNUM"
</string>
<string
name=
"proxy-Id name"
>
"ID_TEXTCTRL_PADNUM"
</string>
<long
name=
"proxy-Id value"
>
10001
</long>
<long
name=
"proxy-Id value"
>
10001
</long>
<string
name=
"proxy-Name"
>
""
</string>
<string
name=
"proxy-Class"
>
"wxTextCtrl"
</string>
<string
name=
"proxy-Class"
>
"wxTextCtrl"
</string>
<string
name=
"proxy-Base class"
>
"wxTextCtrl"
</string>
<string
name=
"proxy-Base class"
>
"wxTextCtrl"
</string>
<bool
name=
"proxy-External implementation"
>
1
</bool>
<bool
name=
"proxy-External implementation"
>
1
</bool>
...
@@ -404,6 +425,11 @@
...
@@ -404,6 +425,11 @@
<string
name=
"proxy-Platform"
>
"
<
Any platform
>
"
</string>
<string
name=
"proxy-Platform"
>
"
<
Any platform
>
"
</string>
<string
name=
"proxy-Data variable"
>
""
</string>
<string
name=
"proxy-Data variable"
>
""
</string>
<string
name=
"proxy-Data validator"
>
""
</string>
<string
name=
"proxy-Data validator"
>
""
</string>
<string
name=
"proxy-Data source"
>
""
</string>
<string
name=
"proxy-Data class name"
>
""
</string>
<string
name=
"proxy-Data class implementation filename"
>
""
</string>
<string
name=
"proxy-Data class header filename"
>
""
</string>
<string
name=
"proxy-Data class manager window"
>
""
</string>
<bool
name=
"proxy-wxTE_MULTILINE"
>
0
</bool>
<bool
name=
"proxy-wxTE_MULTILINE"
>
0
</bool>
<bool
name=
"proxy-wxTE_PROCESS_ENTER"
>
0
</bool>
<bool
name=
"proxy-wxTE_PROCESS_ENTER"
>
0
</bool>
<bool
name=
"proxy-wxTE_PROCESS_TAB"
>
0
</bool>
<bool
name=
"proxy-wxTE_PROCESS_TAB"
>
0
</bool>
...
@@ -419,6 +445,7 @@
...
@@ -419,6 +445,7 @@
<bool
name=
"proxy-wxHSCROLL"
>
0
</bool>
<bool
name=
"proxy-wxHSCROLL"
>
0
</bool>
<bool
name=
"proxy-wxTE_CHARWRAP"
>
0
</bool>
<bool
name=
"proxy-wxTE_CHARWRAP"
>
0
</bool>
<bool
name=
"proxy-wxTE_WORDWRAP"
>
0
</bool>
<bool
name=
"proxy-wxTE_WORDWRAP"
>
0
</bool>
<bool
name=
"proxy-wxTE_CAPITALIZE"
>
0
</bool>
<bool
name=
"proxy-wxNO_BORDER"
>
0
</bool>
<bool
name=
"proxy-wxNO_BORDER"
>
0
</bool>
<bool
name=
"proxy-wxSIMPLE_BORDER"
>
0
</bool>
<bool
name=
"proxy-wxSIMPLE_BORDER"
>
0
</bool>
<bool
name=
"proxy-wxDOUBLE_BORDER"
>
0
</bool>
<bool
name=
"proxy-wxDOUBLE_BORDER"
>
0
</bool>
...
@@ -461,6 +488,7 @@
...
@@ -461,6 +488,7 @@
<string
name=
"proxy-type"
>
"wbStaticTextProxy"
</string>
<string
name=
"proxy-type"
>
"wbStaticTextProxy"
</string>
<string
name=
"proxy-Id name"
>
"wxID_STATIC"
</string>
<string
name=
"proxy-Id name"
>
"wxID_STATIC"
</string>
<long
name=
"proxy-Id value"
>
5105
</long>
<long
name=
"proxy-Id value"
>
5105
</long>
<string
name=
"proxy-Name"
>
""
</string>
<string
name=
"proxy-Class"
>
"wxStaticText"
</string>
<string
name=
"proxy-Class"
>
"wxStaticText"
</string>
<string
name=
"proxy-Base class"
>
"wxStaticText"
</string>
<string
name=
"proxy-Base class"
>
"wxStaticText"
</string>
<bool
name=
"proxy-External implementation"
>
1
</bool>
<bool
name=
"proxy-External implementation"
>
1
</bool>
...
@@ -480,6 +508,11 @@
...
@@ -480,6 +508,11 @@
<string
name=
"proxy-Platform"
>
"
<
Any platform
>
"
</string>
<string
name=
"proxy-Platform"
>
"
<
Any platform
>
"
</string>
<string
name=
"proxy-Data variable"
>
""
</string>
<string
name=
"proxy-Data variable"
>
""
</string>
<string
name=
"proxy-Data validator"
>
""
</string>
<string
name=
"proxy-Data validator"
>
""
</string>
<string
name=
"proxy-Data source"
>
""
</string>
<string
name=
"proxy-Data class name"
>
""
</string>
<string
name=
"proxy-Data class implementation filename"
>
""
</string>
<string
name=
"proxy-Data class header filename"
>
""
</string>
<string
name=
"proxy-Data class manager window"
>
""
</string>
<bool
name=
"proxy-wxALIGN_LEFT"
>
0
</bool>
<bool
name=
"proxy-wxALIGN_LEFT"
>
0
</bool>
<bool
name=
"proxy-wxALIGN_RIGHT"
>
0
</bool>
<bool
name=
"proxy-wxALIGN_RIGHT"
>
0
</bool>
<bool
name=
"proxy-wxALIGN_CENTRE"
>
0
</bool>
<bool
name=
"proxy-wxALIGN_CENTRE"
>
0
</bool>
...
@@ -525,6 +558,7 @@
...
@@ -525,6 +558,7 @@
<string
name=
"proxy-type"
>
"wbTextCtrlProxy"
</string>
<string
name=
"proxy-type"
>
"wbTextCtrlProxy"
</string>
<string
name=
"proxy-Id name"
>
"ID_TEXTCTRL_NETNAME"
</string>
<string
name=
"proxy-Id name"
>
"ID_TEXTCTRL_NETNAME"
</string>
<long
name=
"proxy-Id value"
>
10002
</long>
<long
name=
"proxy-Id value"
>
10002
</long>
<string
name=
"proxy-Name"
>
""
</string>
<string
name=
"proxy-Class"
>
"wxTextCtrl"
</string>
<string
name=
"proxy-Class"
>
"wxTextCtrl"
</string>
<string
name=
"proxy-Base class"
>
"wxTextCtrl"
</string>
<string
name=
"proxy-Base class"
>
"wxTextCtrl"
</string>
<bool
name=
"proxy-External implementation"
>
1
</bool>
<bool
name=
"proxy-External implementation"
>
1
</bool>
...
@@ -544,6 +578,11 @@
...
@@ -544,6 +578,11 @@
<string
name=
"proxy-Platform"
>
"
<
Any platform
>
"
</string>
<string
name=
"proxy-Platform"
>
"
<
Any platform
>
"
</string>
<string
name=
"proxy-Data variable"
>
""
</string>
<string
name=
"proxy-Data variable"
>
""
</string>
<string
name=
"proxy-Data validator"
>
""
</string>
<string
name=
"proxy-Data validator"
>
""
</string>
<string
name=
"proxy-Data source"
>
""
</string>
<string
name=
"proxy-Data class name"
>
""
</string>
<string
name=
"proxy-Data class implementation filename"
>
""
</string>
<string
name=
"proxy-Data class header filename"
>
""
</string>
<string
name=
"proxy-Data class manager window"
>
""
</string>
<bool
name=
"proxy-wxTE_MULTILINE"
>
0
</bool>
<bool
name=
"proxy-wxTE_MULTILINE"
>
0
</bool>
<bool
name=
"proxy-wxTE_PROCESS_ENTER"
>
0
</bool>
<bool
name=
"proxy-wxTE_PROCESS_ENTER"
>
0
</bool>
<bool
name=
"proxy-wxTE_PROCESS_TAB"
>
0
</bool>
<bool
name=
"proxy-wxTE_PROCESS_TAB"
>
0
</bool>
...
@@ -559,6 +598,7 @@
...
@@ -559,6 +598,7 @@
<bool
name=
"proxy-wxHSCROLL"
>
0
</bool>
<bool
name=
"proxy-wxHSCROLL"
>
0
</bool>
<bool
name=
"proxy-wxTE_CHARWRAP"
>
0
</bool>
<bool
name=
"proxy-wxTE_CHARWRAP"
>
0
</bool>
<bool
name=
"proxy-wxTE_WORDWRAP"
>
0
</bool>
<bool
name=
"proxy-wxTE_WORDWRAP"
>
0
</bool>
<bool
name=
"proxy-wxTE_CAPITALIZE"
>
0
</bool>
<bool
name=
"proxy-wxNO_BORDER"
>
0
</bool>
<bool
name=
"proxy-wxNO_BORDER"
>
0
</bool>
<bool
name=
"proxy-wxSIMPLE_BORDER"
>
0
</bool>
<bool
name=
"proxy-wxSIMPLE_BORDER"
>
0
</bool>
<bool
name=
"proxy-wxDOUBLE_BORDER"
>
0
</bool>
<bool
name=
"proxy-wxDOUBLE_BORDER"
>
0
</bool>
...
@@ -654,6 +694,7 @@
...
@@ -654,6 +694,7 @@
<string
name=
"event-handler-0"
>
"wxEVT_COMMAND_RADIOBOX_SELECTED|OnRadioboxDrillShapeSelected"
</string>
<string
name=
"event-handler-0"
>
"wxEVT_COMMAND_RADIOBOX_SELECTED|OnRadioboxDrillShapeSelected"
</string>
<string
name=
"proxy-Id name"
>
"ID_RADIOBOX_DRILL_SHAPE"
</string>
<string
name=
"proxy-Id name"
>
"ID_RADIOBOX_DRILL_SHAPE"
</string>
<long
name=
"proxy-Id value"
>
10019
</long>
<long
name=
"proxy-Id value"
>
10019
</long>
<string
name=
"proxy-Name"
>
""
</string>
<string
name=
"proxy-Class"
>
"wxRadioBox"
</string>
<string
name=
"proxy-Class"
>
"wxRadioBox"
</string>
<string
name=
"proxy-Base class"
>
"wxRadioBox"
</string>
<string
name=
"proxy-Base class"
>
"wxRadioBox"
</string>
<bool
name=
"proxy-External implementation"
>
1
</bool>
<bool
name=
"proxy-External implementation"
>
1
</bool>
...
@@ -675,6 +716,11 @@
...
@@ -675,6 +716,11 @@
<string
name=
"proxy-Platform"
>
"
<
Any platform
>
"
</string>
<string
name=
"proxy-Platform"
>
"
<
Any platform
>
"
</string>
<string
name=
"proxy-Data variable"
>
""
</string>
<string
name=
"proxy-Data variable"
>
""
</string>
<string
name=
"proxy-Data validator"
>
""
</string>
<string
name=
"proxy-Data validator"
>
""
</string>
<string
name=
"proxy-Data source"
>
""
</string>
<string
name=
"proxy-Data class name"
>
""
</string>
<string
name=
"proxy-Data class implementation filename"
>
""
</string>
<string
name=
"proxy-Data class header filename"
>
""
</string>
<string
name=
"proxy-Data class manager window"
>
""
</string>
<bool
name=
"proxy-wxRA_SPECIFY_ROWS"
>
0
</bool>
<bool
name=
"proxy-wxRA_SPECIFY_ROWS"
>
0
</bool>
<bool
name=
"proxy-wxRA_SPECIFY_COLS"
>
1
</bool>
<bool
name=
"proxy-wxRA_SPECIFY_COLS"
>
1
</bool>
<bool
name=
"proxy-wxWANTS_CHARS"
>
0
</bool>
<bool
name=
"proxy-wxWANTS_CHARS"
>
0
</bool>
...
@@ -739,6 +785,7 @@
...
@@ -739,6 +785,7 @@
<string
name=
"event-handler-0"
>
"wxEVT_COMMAND_RADIOBOX_SELECTED|OnListboxOrientPadSelected"
</string>
<string
name=
"event-handler-0"
>
"wxEVT_COMMAND_RADIOBOX_SELECTED|OnListboxOrientPadSelected"
</string>
<string
name=
"proxy-Id name"
>
"ID_LISTBOX_ORIENT_PAD"
</string>
<string
name=
"proxy-Id name"
>
"ID_LISTBOX_ORIENT_PAD"
</string>
<long
name=
"proxy-Id value"
>
10003
</long>
<long
name=
"proxy-Id value"
>
10003
</long>
<string
name=
"proxy-Name"
>
""
</string>
<string
name=
"proxy-Class"
>
"wxRadioBox"
</string>
<string
name=
"proxy-Class"
>
"wxRadioBox"
</string>
<string
name=
"proxy-Base class"
>
"wxRadioBox"
</string>
<string
name=
"proxy-Base class"
>
"wxRadioBox"
</string>
<bool
name=
"proxy-External implementation"
>
1
</bool>
<bool
name=
"proxy-External implementation"
>
1
</bool>
...
@@ -760,6 +807,11 @@
...
@@ -760,6 +807,11 @@
<string
name=
"proxy-Platform"
>
"
<
Any platform
>
"
</string>
<string
name=
"proxy-Platform"
>
"
<
Any platform
>
"
</string>
<string
name=
"proxy-Data variable"
>
""
</string>
<string
name=
"proxy-Data variable"
>
""
</string>
<string
name=
"proxy-Data validator"
>
""
</string>
<string
name=
"proxy-Data validator"
>
""
</string>
<string
name=
"proxy-Data source"
>
""
</string>
<string
name=
"proxy-Data class name"
>
""
</string>
<string
name=
"proxy-Data class implementation filename"
>
""
</string>
<string
name=
"proxy-Data class header filename"
>
""
</string>
<string
name=
"proxy-Data class manager window"
>
""
</string>
<bool
name=
"proxy-wxRA_SPECIFY_ROWS"
>
0
</bool>
<bool
name=
"proxy-wxRA_SPECIFY_ROWS"
>
0
</bool>
<bool
name=
"proxy-wxRA_SPECIFY_COLS"
>
1
</bool>
<bool
name=
"proxy-wxRA_SPECIFY_COLS"
>
1
</bool>
<bool
name=
"proxy-wxWANTS_CHARS"
>
0
</bool>
<bool
name=
"proxy-wxWANTS_CHARS"
>
0
</bool>
...
@@ -798,6 +850,7 @@
...
@@ -798,6 +850,7 @@
<string
name=
"event-handler-0"
>
"wxEVT_COMMAND_RADIOBOX_SELECTED|OnListboxShapePadSelected"
</string>
<string
name=
"event-handler-0"
>
"wxEVT_COMMAND_RADIOBOX_SELECTED|OnListboxShapePadSelected"
</string>
<string
name=
"proxy-Id name"
>
"ID_LISTBOX_SHAPE_PAD"
</string>
<string
name=
"proxy-Id name"
>
"ID_LISTBOX_SHAPE_PAD"
</string>
<long
name=
"proxy-Id value"
>
10004
</long>
<long
name=
"proxy-Id value"
>
10004
</long>
<string
name=
"proxy-Name"
>
""
</string>
<string
name=
"proxy-Class"
>
"wxRadioBox"
</string>
<string
name=
"proxy-Class"
>
"wxRadioBox"
</string>
<string
name=
"proxy-Base class"
>
"wxRadioBox"
</string>
<string
name=
"proxy-Base class"
>
"wxRadioBox"
</string>
<bool
name=
"proxy-External implementation"
>
1
</bool>
<bool
name=
"proxy-External implementation"
>
1
</bool>
...
@@ -819,6 +872,11 @@
...
@@ -819,6 +872,11 @@
<string
name=
"proxy-Platform"
>
"
<
Any platform
>
"
</string>
<string
name=
"proxy-Platform"
>
"
<
Any platform
>
"
</string>
<string
name=
"proxy-Data variable"
>
""
</string>
<string
name=
"proxy-Data variable"
>
""
</string>
<string
name=
"proxy-Data validator"
>
""
</string>
<string
name=
"proxy-Data validator"
>
""
</string>
<string
name=
"proxy-Data source"
>
""
</string>
<string
name=
"proxy-Data class name"
>
""
</string>
<string
name=
"proxy-Data class implementation filename"
>
""
</string>
<string
name=
"proxy-Data class header filename"
>
""
</string>
<string
name=
"proxy-Data class manager window"
>
""
</string>
<bool
name=
"proxy-wxRA_SPECIFY_ROWS"
>
0
</bool>
<bool
name=
"proxy-wxRA_SPECIFY_ROWS"
>
0
</bool>
<bool
name=
"proxy-wxRA_SPECIFY_COLS"
>
1
</bool>
<bool
name=
"proxy-wxRA_SPECIFY_COLS"
>
1
</bool>
<bool
name=
"proxy-wxWANTS_CHARS"
>
0
</bool>
<bool
name=
"proxy-wxWANTS_CHARS"
>
0
</bool>
...
@@ -857,6 +915,7 @@
...
@@ -857,6 +915,7 @@
<string
name=
"event-handler-0"
>
"wxEVT_COMMAND_RADIOBOX_SELECTED|OnListboxTypePadSelected"
</string>
<string
name=
"event-handler-0"
>
"wxEVT_COMMAND_RADIOBOX_SELECTED|OnListboxTypePadSelected"
</string>
<string
name=
"proxy-Id name"
>
"ID_LISTBOX_TYPE_PAD"
</string>
<string
name=
"proxy-Id name"
>
"ID_LISTBOX_TYPE_PAD"
</string>
<long
name=
"proxy-Id value"
>
10005
</long>
<long
name=
"proxy-Id value"
>
10005
</long>
<string
name=
"proxy-Name"
>
""
</string>
<string
name=
"proxy-Class"
>
"wxRadioBox"
</string>
<string
name=
"proxy-Class"
>
"wxRadioBox"
</string>
<string
name=
"proxy-Base class"
>
"wxRadioBox"
</string>
<string
name=
"proxy-Base class"
>
"wxRadioBox"
</string>
<bool
name=
"proxy-External implementation"
>
1
</bool>
<bool
name=
"proxy-External implementation"
>
1
</bool>
...
@@ -866,7 +925,7 @@
...
@@ -866,7 +925,7 @@
<string
name=
"proxy-Member variable name"
>
"m_PadType"
</string>
<string
name=
"proxy-Member variable name"
>
"m_PadType"
</string>
<string
name=
"proxy-Label"
>
"Pad Type:"
</string>
<string
name=
"proxy-Label"
>
"Pad Type:"
</string>
<long
name=
"proxy-Major dimension count"
>
1
</long>
<long
name=
"proxy-Major dimension count"
>
1
</long>
<string
name=
"proxy-Items"
>
"Standard|SMD|Conn
|Hole|Mechanical
"
</string>
<string
name=
"proxy-Items"
>
"Standard|SMD|Conn"
</string>
<long
name=
"proxy-Initial value"
>
0
</long>
<long
name=
"proxy-Initial value"
>
0
</long>
<string
name=
"proxy-Help text"
>
""
</string>
<string
name=
"proxy-Help text"
>
""
</string>
<string
name=
"proxy-Tooltip text"
>
""
</string>
<string
name=
"proxy-Tooltip text"
>
""
</string>
...
@@ -878,6 +937,11 @@
...
@@ -878,6 +937,11 @@
<string
name=
"proxy-Platform"
>
"
<
Any platform
>
"
</string>
<string
name=
"proxy-Platform"
>
"
<
Any platform
>
"
</string>
<string
name=
"proxy-Data variable"
>
""
</string>
<string
name=
"proxy-Data variable"
>
""
</string>
<string
name=
"proxy-Data validator"
>
""
</string>
<string
name=
"proxy-Data validator"
>
""
</string>
<string
name=
"proxy-Data source"
>
""
</string>
<string
name=
"proxy-Data class name"
>
""
</string>
<string
name=
"proxy-Data class implementation filename"
>
""
</string>
<string
name=
"proxy-Data class header filename"
>
""
</string>
<string
name=
"proxy-Data class manager window"
>
""
</string>
<bool
name=
"proxy-wxRA_SPECIFY_ROWS"
>
0
</bool>
<bool
name=
"proxy-wxRA_SPECIFY_ROWS"
>
0
</bool>
<bool
name=
"proxy-wxRA_SPECIFY_COLS"
>
1
</bool>
<bool
name=
"proxy-wxRA_SPECIFY_COLS"
>
1
</bool>
<bool
name=
"proxy-wxWANTS_CHARS"
>
0
</bool>
<bool
name=
"proxy-wxWANTS_CHARS"
>
0
</bool>
...
@@ -942,6 +1006,7 @@
...
@@ -942,6 +1006,7 @@
<string
name=
"event-handler-0"
>
"wxEVT_COMMAND_BUTTON_CLICKED|OnOkClick"
</string>
<string
name=
"event-handler-0"
>
"wxEVT_COMMAND_BUTTON_CLICKED|OnOkClick"
</string>
<string
name=
"proxy-Id name"
>
"wxID_OK"
</string>
<string
name=
"proxy-Id name"
>
"wxID_OK"
</string>
<long
name=
"proxy-Id value"
>
5100
</long>
<long
name=
"proxy-Id value"
>
5100
</long>
<string
name=
"proxy-Name"
>
""
</string>
<string
name=
"proxy-Class"
>
"wxButton"
</string>
<string
name=
"proxy-Class"
>
"wxButton"
</string>
<string
name=
"proxy-Base class"
>
"wxButton"
</string>
<string
name=
"proxy-Base class"
>
"wxButton"
</string>
<bool
name=
"proxy-External implementation"
>
1
</bool>
<bool
name=
"proxy-External implementation"
>
1
</bool>
...
@@ -953,6 +1018,13 @@
...
@@ -953,6 +1018,13 @@
<bool
name=
"proxy-Default"
>
0
</bool>
<bool
name=
"proxy-Default"
>
0
</bool>
<string
name=
"proxy-Help text"
>
""
</string>
<string
name=
"proxy-Help text"
>
""
</string>
<string
name=
"proxy-Tooltip text"
>
""
</string>
<string
name=
"proxy-Tooltip text"
>
""
</string>
<string
name=
"proxy-Data variable"
>
""
</string>
<string
name=
"proxy-Data validator"
>
""
</string>
<string
name=
"proxy-Data source"
>
""
</string>
<string
name=
"proxy-Data class name"
>
""
</string>
<string
name=
"proxy-Data class implementation filename"
>
""
</string>
<string
name=
"proxy-Data class header filename"
>
""
</string>
<string
name=
"proxy-Data class manager window"
>
""
</string>
<string
name=
"proxy-Background colour"
>
""
</string>
<string
name=
"proxy-Background colour"
>
""
</string>
<string
name=
"proxy-Foreground colour"
>
"CC0000"
</string>
<string
name=
"proxy-Foreground colour"
>
"CC0000"
</string>
<string
name=
"proxy-Font"
>
""
</string>
<string
name=
"proxy-Font"
>
""
</string>
...
@@ -1001,6 +1073,7 @@
...
@@ -1001,6 +1073,7 @@
<string
name=
"event-handler-0"
>
"wxEVT_COMMAND_BUTTON_CLICKED|OnCancelClick"
</string>
<string
name=
"event-handler-0"
>
"wxEVT_COMMAND_BUTTON_CLICKED|OnCancelClick"
</string>
<string
name=
"proxy-Id name"
>
"wxID_CANCEL"
</string>
<string
name=
"proxy-Id name"
>
"wxID_CANCEL"
</string>
<long
name=
"proxy-Id value"
>
5101
</long>
<long
name=
"proxy-Id value"
>
5101
</long>
<string
name=
"proxy-Name"
>
""
</string>
<string
name=
"proxy-Class"
>
"wxButton"
</string>
<string
name=
"proxy-Class"
>
"wxButton"
</string>
<string
name=
"proxy-Base class"
>
"wxButton"
</string>
<string
name=
"proxy-Base class"
>
"wxButton"
</string>
<bool
name=
"proxy-External implementation"
>
1
</bool>
<bool
name=
"proxy-External implementation"
>
1
</bool>
...
@@ -1012,6 +1085,13 @@
...
@@ -1012,6 +1085,13 @@
<bool
name=
"proxy-Default"
>
0
</bool>
<bool
name=
"proxy-Default"
>
0
</bool>
<string
name=
"proxy-Help text"
>
""
</string>
<string
name=
"proxy-Help text"
>
""
</string>
<string
name=
"proxy-Tooltip text"
>
""
</string>
<string
name=
"proxy-Tooltip text"
>
""
</string>
<string
name=
"proxy-Data variable"
>
""
</string>
<string
name=
"proxy-Data validator"
>
""
</string>
<string
name=
"proxy-Data source"
>
""
</string>
<string
name=
"proxy-Data class name"
>
""
</string>
<string
name=
"proxy-Data class implementation filename"
>
""
</string>
<string
name=
"proxy-Data class header filename"
>
""
</string>
<string
name=
"proxy-Data class manager window"
>
""
</string>
<string
name=
"proxy-Background colour"
>
""
</string>
<string
name=
"proxy-Background colour"
>
""
</string>
<string
name=
"proxy-Foreground colour"
>
"0000FF"
</string>
<string
name=
"proxy-Foreground colour"
>
"0000FF"
</string>
<string
name=
"proxy-Font"
>
""
</string>
<string
name=
"proxy-Font"
>
""
</string>
...
@@ -1093,6 +1173,7 @@
...
@@ -1093,6 +1173,7 @@
<string
name=
"proxy-type"
>
"wbCheckBoxProxy"
</string>
<string
name=
"proxy-type"
>
"wbCheckBoxProxy"
</string>
<string
name=
"proxy-Id name"
>
"ID_CHECKBOX"
</string>
<string
name=
"proxy-Id name"
>
"ID_CHECKBOX"
</string>
<long
name=
"proxy-Id value"
>
10006
</long>
<long
name=
"proxy-Id value"
>
10006
</long>
<string
name=
"proxy-Name"
>
""
</string>
<string
name=
"proxy-Class"
>
"wxCheckBox"
</string>
<string
name=
"proxy-Class"
>
"wxCheckBox"
</string>
<string
name=
"proxy-Base class"
>
"wxCheckBox"
</string>
<string
name=
"proxy-Base class"
>
"wxCheckBox"
</string>
<bool
name=
"proxy-External implementation"
>
1
</bool>
<bool
name=
"proxy-External implementation"
>
1
</bool>
...
@@ -1106,6 +1187,11 @@
...
@@ -1106,6 +1187,11 @@
<string
name=
"proxy-Tooltip text"
>
""
</string>
<string
name=
"proxy-Tooltip text"
>
""
</string>
<string
name=
"proxy-Data variable"
>
""
</string>
<string
name=
"proxy-Data variable"
>
""
</string>
<string
name=
"proxy-Data validator"
>
""
</string>
<string
name=
"proxy-Data validator"
>
""
</string>
<string
name=
"proxy-Data source"
>
""
</string>
<string
name=
"proxy-Data class name"
>
""
</string>
<string
name=
"proxy-Data class implementation filename"
>
""
</string>
<string
name=
"proxy-Data class header filename"
>
""
</string>
<string
name=
"proxy-Data class manager window"
>
""
</string>
<string
name=
"proxy-Background colour"
>
""
</string>
<string
name=
"proxy-Background colour"
>
""
</string>
<string
name=
"proxy-Foreground colour"
>
""
</string>
<string
name=
"proxy-Foreground colour"
>
""
</string>
<string
name=
"proxy-Font"
>
""
</string>
<string
name=
"proxy-Font"
>
""
</string>
...
@@ -1151,6 +1237,7 @@
...
@@ -1151,6 +1237,7 @@
<string
name=
"proxy-type"
>
"wbCheckBoxProxy"
</string>
<string
name=
"proxy-type"
>
"wbCheckBoxProxy"
</string>
<string
name=
"proxy-Id name"
>
"ID_CHECKBOX1"
</string>
<string
name=
"proxy-Id name"
>
"ID_CHECKBOX1"
</string>
<long
name=
"proxy-Id value"
>
10007
</long>
<long
name=
"proxy-Id value"
>
10007
</long>
<string
name=
"proxy-Name"
>
""
</string>
<string
name=
"proxy-Class"
>
"wxCheckBox"
</string>
<string
name=
"proxy-Class"
>
"wxCheckBox"
</string>
<string
name=
"proxy-Base class"
>
"wxCheckBox"
</string>
<string
name=
"proxy-Base class"
>
"wxCheckBox"
</string>
<bool
name=
"proxy-External implementation"
>
1
</bool>
<bool
name=
"proxy-External implementation"
>
1
</bool>
...
@@ -1164,6 +1251,11 @@
...
@@ -1164,6 +1251,11 @@
<string
name=
"proxy-Tooltip text"
>
""
</string>
<string
name=
"proxy-Tooltip text"
>
""
</string>
<string
name=
"proxy-Data variable"
>
""
</string>
<string
name=
"proxy-Data variable"
>
""
</string>
<string
name=
"proxy-Data validator"
>
""
</string>
<string
name=
"proxy-Data validator"
>
""
</string>
<string
name=
"proxy-Data source"
>
""
</string>
<string
name=
"proxy-Data class name"
>
""
</string>
<string
name=
"proxy-Data class implementation filename"
>
""
</string>
<string
name=
"proxy-Data class header filename"
>
""
</string>
<string
name=
"proxy-Data class manager window"
>
""
</string>
<string
name=
"proxy-Background colour"
>
""
</string>
<string
name=
"proxy-Background colour"
>
""
</string>
<string
name=
"proxy-Foreground colour"
>
""
</string>
<string
name=
"proxy-Foreground colour"
>
""
</string>
<string
name=
"proxy-Font"
>
""
</string>
<string
name=
"proxy-Font"
>
""
</string>
...
@@ -1209,7 +1301,7 @@
...
@@ -1209,7 +1301,7 @@
<string
name=
"proxy-type"
>
"wbSpacerProxy"
</string>
<string
name=
"proxy-type"
>
"wbSpacerProxy"
</string>
<long
name=
"proxy-Width"
>
5
</long>
<long
name=
"proxy-Width"
>
5
</long>
<long
name=
"proxy-Height"
>
5
</long>
<long
name=
"proxy-Height"
>
5
</long>
<string
name=
"proxy-AlignH"
>
"
Centre
"
</string>
<string
name=
"proxy-AlignH"
>
"
Expand
"
</string>
<string
name=
"proxy-AlignV"
>
"Centre"
</string>
<string
name=
"proxy-AlignV"
>
"Centre"
</string>
<long
name=
"proxy-Stretch factor"
>
0
</long>
<long
name=
"proxy-Stretch factor"
>
0
</long>
<long
name=
"proxy-Border"
>
5
</long>
<long
name=
"proxy-Border"
>
5
</long>
...
@@ -1235,6 +1327,7 @@
...
@@ -1235,6 +1327,7 @@
<string
name=
"proxy-type"
>
"wbCheckBoxProxy"
</string>
<string
name=
"proxy-type"
>
"wbCheckBoxProxy"
</string>
<string
name=
"proxy-Id name"
>
"ID_CHECKBOX2"
</string>
<string
name=
"proxy-Id name"
>
"ID_CHECKBOX2"
</string>
<long
name=
"proxy-Id value"
>
10008
</long>
<long
name=
"proxy-Id value"
>
10008
</long>
<string
name=
"proxy-Name"
>
""
</string>
<string
name=
"proxy-Class"
>
"wxCheckBox"
</string>
<string
name=
"proxy-Class"
>
"wxCheckBox"
</string>
<string
name=
"proxy-Base class"
>
"wxCheckBox"
</string>
<string
name=
"proxy-Base class"
>
"wxCheckBox"
</string>
<bool
name=
"proxy-External implementation"
>
1
</bool>
<bool
name=
"proxy-External implementation"
>
1
</bool>
...
@@ -1248,6 +1341,11 @@
...
@@ -1248,6 +1341,11 @@
<string
name=
"proxy-Tooltip text"
>
""
</string>
<string
name=
"proxy-Tooltip text"
>
""
</string>
<string
name=
"proxy-Data variable"
>
""
</string>
<string
name=
"proxy-Data variable"
>
""
</string>
<string
name=
"proxy-Data validator"
>
""
</string>
<string
name=
"proxy-Data validator"
>
""
</string>
<string
name=
"proxy-Data source"
>
""
</string>
<string
name=
"proxy-Data class name"
>
""
</string>
<string
name=
"proxy-Data class implementation filename"
>
""
</string>
<string
name=
"proxy-Data class header filename"
>
""
</string>
<string
name=
"proxy-Data class manager window"
>
""
</string>
<string
name=
"proxy-Background colour"
>
""
</string>
<string
name=
"proxy-Background colour"
>
""
</string>
<string
name=
"proxy-Foreground colour"
>
""
</string>
<string
name=
"proxy-Foreground colour"
>
""
</string>
<string
name=
"proxy-Font"
>
""
</string>
<string
name=
"proxy-Font"
>
""
</string>
...
@@ -1293,6 +1391,7 @@
...
@@ -1293,6 +1391,7 @@
<string
name=
"proxy-type"
>
"wbCheckBoxProxy"
</string>
<string
name=
"proxy-type"
>
"wbCheckBoxProxy"
</string>
<string
name=
"proxy-Id name"
>
"ID_CHECKBOX3"
</string>
<string
name=
"proxy-Id name"
>
"ID_CHECKBOX3"
</string>
<long
name=
"proxy-Id value"
>
10009
</long>
<long
name=
"proxy-Id value"
>
10009
</long>
<string
name=
"proxy-Name"
>
""
</string>
<string
name=
"proxy-Class"
>
"wxCheckBox"
</string>
<string
name=
"proxy-Class"
>
"wxCheckBox"
</string>
<string
name=
"proxy-Base class"
>
"wxCheckBox"
</string>
<string
name=
"proxy-Base class"
>
"wxCheckBox"
</string>
<bool
name=
"proxy-External implementation"
>
1
</bool>
<bool
name=
"proxy-External implementation"
>
1
</bool>
...
@@ -1306,6 +1405,11 @@
...
@@ -1306,6 +1405,11 @@
<string
name=
"proxy-Tooltip text"
>
""
</string>
<string
name=
"proxy-Tooltip text"
>
""
</string>
<string
name=
"proxy-Data variable"
>
""
</string>
<string
name=
"proxy-Data variable"
>
""
</string>
<string
name=
"proxy-Data validator"
>
""
</string>
<string
name=
"proxy-Data validator"
>
""
</string>
<string
name=
"proxy-Data source"
>
""
</string>
<string
name=
"proxy-Data class name"
>
""
</string>
<string
name=
"proxy-Data class implementation filename"
>
""
</string>
<string
name=
"proxy-Data class header filename"
>
""
</string>
<string
name=
"proxy-Data class manager window"
>
""
</string>
<string
name=
"proxy-Background colour"
>
""
</string>
<string
name=
"proxy-Background colour"
>
""
</string>
<string
name=
"proxy-Foreground colour"
>
""
</string>
<string
name=
"proxy-Foreground colour"
>
""
</string>
<string
name=
"proxy-Font"
>
""
</string>
<string
name=
"proxy-Font"
>
""
</string>
...
@@ -1351,6 +1455,7 @@
...
@@ -1351,6 +1455,7 @@
<string
name=
"proxy-type"
>
"wbCheckBoxProxy"
</string>
<string
name=
"proxy-type"
>
"wbCheckBoxProxy"
</string>
<string
name=
"proxy-Id name"
>
"ID_CHECKBOX4"
</string>
<string
name=
"proxy-Id name"
>
"ID_CHECKBOX4"
</string>
<long
name=
"proxy-Id value"
>
10010
</long>
<long
name=
"proxy-Id value"
>
10010
</long>
<string
name=
"proxy-Name"
>
""
</string>
<string
name=
"proxy-Class"
>
"wxCheckBox"
</string>
<string
name=
"proxy-Class"
>
"wxCheckBox"
</string>
<string
name=
"proxy-Base class"
>
"wxCheckBox"
</string>
<string
name=
"proxy-Base class"
>
"wxCheckBox"
</string>
<bool
name=
"proxy-External implementation"
>
1
</bool>
<bool
name=
"proxy-External implementation"
>
1
</bool>
...
@@ -1364,6 +1469,11 @@
...
@@ -1364,6 +1469,11 @@
<string
name=
"proxy-Tooltip text"
>
""
</string>
<string
name=
"proxy-Tooltip text"
>
""
</string>
<string
name=
"proxy-Data variable"
>
""
</string>
<string
name=
"proxy-Data variable"
>
""
</string>
<string
name=
"proxy-Data validator"
>
""
</string>
<string
name=
"proxy-Data validator"
>
""
</string>
<string
name=
"proxy-Data source"
>
""
</string>
<string
name=
"proxy-Data class name"
>
""
</string>
<string
name=
"proxy-Data class implementation filename"
>
""
</string>
<string
name=
"proxy-Data class header filename"
>
""
</string>
<string
name=
"proxy-Data class manager window"
>
""
</string>
<string
name=
"proxy-Background colour"
>
""
</string>
<string
name=
"proxy-Background colour"
>
""
</string>
<string
name=
"proxy-Foreground colour"
>
""
</string>
<string
name=
"proxy-Foreground colour"
>
""
</string>
<string
name=
"proxy-Font"
>
""
</string>
<string
name=
"proxy-Font"
>
""
</string>
...
@@ -1409,6 +1519,7 @@
...
@@ -1409,6 +1519,7 @@
<string
name=
"proxy-type"
>
"wbCheckBoxProxy"
</string>
<string
name=
"proxy-type"
>
"wbCheckBoxProxy"
</string>
<string
name=
"proxy-Id name"
>
"ID_CHECKBOX5"
</string>
<string
name=
"proxy-Id name"
>
"ID_CHECKBOX5"
</string>
<long
name=
"proxy-Id value"
>
10011
</long>
<long
name=
"proxy-Id value"
>
10011
</long>
<string
name=
"proxy-Name"
>
""
</string>
<string
name=
"proxy-Class"
>
"wxCheckBox"
</string>
<string
name=
"proxy-Class"
>
"wxCheckBox"
</string>
<string
name=
"proxy-Base class"
>
"wxCheckBox"
</string>
<string
name=
"proxy-Base class"
>
"wxCheckBox"
</string>
<bool
name=
"proxy-External implementation"
>
1
</bool>
<bool
name=
"proxy-External implementation"
>
1
</bool>
...
@@ -1422,6 +1533,11 @@
...
@@ -1422,6 +1533,11 @@
<string
name=
"proxy-Tooltip text"
>
""
</string>
<string
name=
"proxy-Tooltip text"
>
""
</string>
<string
name=
"proxy-Data variable"
>
""
</string>
<string
name=
"proxy-Data variable"
>
""
</string>
<string
name=
"proxy-Data validator"
>
""
</string>
<string
name=
"proxy-Data validator"
>
""
</string>
<string
name=
"proxy-Data source"
>
""
</string>
<string
name=
"proxy-Data class name"
>
""
</string>
<string
name=
"proxy-Data class implementation filename"
>
""
</string>
<string
name=
"proxy-Data class header filename"
>
""
</string>
<string
name=
"proxy-Data class manager window"
>
""
</string>
<string
name=
"proxy-Background colour"
>
""
</string>
<string
name=
"proxy-Background colour"
>
""
</string>
<string
name=
"proxy-Foreground colour"
>
""
</string>
<string
name=
"proxy-Foreground colour"
>
""
</string>
<string
name=
"proxy-Font"
>
""
</string>
<string
name=
"proxy-Font"
>
""
</string>
...
@@ -1467,6 +1583,7 @@
...
@@ -1467,6 +1583,7 @@
<string
name=
"proxy-type"
>
"wbCheckBoxProxy"
</string>
<string
name=
"proxy-type"
>
"wbCheckBoxProxy"
</string>
<string
name=
"proxy-Id name"
>
"ID_CHECKBOX6"
</string>
<string
name=
"proxy-Id name"
>
"ID_CHECKBOX6"
</string>
<long
name=
"proxy-Id value"
>
10012
</long>
<long
name=
"proxy-Id value"
>
10012
</long>
<string
name=
"proxy-Name"
>
""
</string>
<string
name=
"proxy-Class"
>
"wxCheckBox"
</string>
<string
name=
"proxy-Class"
>
"wxCheckBox"
</string>
<string
name=
"proxy-Base class"
>
"wxCheckBox"
</string>
<string
name=
"proxy-Base class"
>
"wxCheckBox"
</string>
<bool
name=
"proxy-External implementation"
>
1
</bool>
<bool
name=
"proxy-External implementation"
>
1
</bool>
...
@@ -1480,6 +1597,11 @@
...
@@ -1480,6 +1597,11 @@
<string
name=
"proxy-Tooltip text"
>
""
</string>
<string
name=
"proxy-Tooltip text"
>
""
</string>
<string
name=
"proxy-Data variable"
>
""
</string>
<string
name=
"proxy-Data variable"
>
""
</string>
<string
name=
"proxy-Data validator"
>
""
</string>
<string
name=
"proxy-Data validator"
>
""
</string>
<string
name=
"proxy-Data source"
>
""
</string>
<string
name=
"proxy-Data class name"
>
""
</string>
<string
name=
"proxy-Data class implementation filename"
>
""
</string>
<string
name=
"proxy-Data class header filename"
>
""
</string>
<string
name=
"proxy-Data class manager window"
>
""
</string>
<string
name=
"proxy-Background colour"
>
""
</string>
<string
name=
"proxy-Background colour"
>
""
</string>
<string
name=
"proxy-Foreground colour"
>
""
</string>
<string
name=
"proxy-Foreground colour"
>
""
</string>
<string
name=
"proxy-Font"
>
""
</string>
<string
name=
"proxy-Font"
>
""
</string>
...
@@ -1525,6 +1647,7 @@
...
@@ -1525,6 +1647,7 @@
<string
name=
"proxy-type"
>
"wbCheckBoxProxy"
</string>
<string
name=
"proxy-type"
>
"wbCheckBoxProxy"
</string>
<string
name=
"proxy-Id name"
>
"ID_CHECKBOX7"
</string>
<string
name=
"proxy-Id name"
>
"ID_CHECKBOX7"
</string>
<long
name=
"proxy-Id value"
>
10013
</long>
<long
name=
"proxy-Id value"
>
10013
</long>
<string
name=
"proxy-Name"
>
""
</string>
<string
name=
"proxy-Class"
>
"wxCheckBox"
</string>
<string
name=
"proxy-Class"
>
"wxCheckBox"
</string>
<string
name=
"proxy-Base class"
>
"wxCheckBox"
</string>
<string
name=
"proxy-Base class"
>
"wxCheckBox"
</string>
<bool
name=
"proxy-External implementation"
>
1
</bool>
<bool
name=
"proxy-External implementation"
>
1
</bool>
...
@@ -1538,6 +1661,11 @@
...
@@ -1538,6 +1661,11 @@
<string
name=
"proxy-Tooltip text"
>
""
</string>
<string
name=
"proxy-Tooltip text"
>
""
</string>
<string
name=
"proxy-Data variable"
>
""
</string>
<string
name=
"proxy-Data variable"
>
""
</string>
<string
name=
"proxy-Data validator"
>
""
</string>
<string
name=
"proxy-Data validator"
>
""
</string>
<string
name=
"proxy-Data source"
>
""
</string>
<string
name=
"proxy-Data class name"
>
""
</string>
<string
name=
"proxy-Data class implementation filename"
>
""
</string>
<string
name=
"proxy-Data class header filename"
>
""
</string>
<string
name=
"proxy-Data class manager window"
>
""
</string>
<string
name=
"proxy-Background colour"
>
""
</string>
<string
name=
"proxy-Background colour"
>
""
</string>
<string
name=
"proxy-Foreground colour"
>
""
</string>
<string
name=
"proxy-Foreground colour"
>
""
</string>
<string
name=
"proxy-Font"
>
""
</string>
<string
name=
"proxy-Font"
>
""
</string>
...
@@ -1583,6 +1711,7 @@
...
@@ -1583,6 +1711,7 @@
<string
name=
"proxy-type"
>
"wbCheckBoxProxy"
</string>
<string
name=
"proxy-type"
>
"wbCheckBoxProxy"
</string>
<string
name=
"proxy-Id name"
>
"ID_CHECKBOX8"
</string>
<string
name=
"proxy-Id name"
>
"ID_CHECKBOX8"
</string>
<long
name=
"proxy-Id value"
>
10014
</long>
<long
name=
"proxy-Id value"
>
10014
</long>
<string
name=
"proxy-Name"
>
""
</string>
<string
name=
"proxy-Class"
>
"wxCheckBox"
</string>
<string
name=
"proxy-Class"
>
"wxCheckBox"
</string>
<string
name=
"proxy-Base class"
>
"wxCheckBox"
</string>
<string
name=
"proxy-Base class"
>
"wxCheckBox"
</string>
<bool
name=
"proxy-External implementation"
>
1
</bool>
<bool
name=
"proxy-External implementation"
>
1
</bool>
...
@@ -1596,6 +1725,11 @@
...
@@ -1596,6 +1725,11 @@
<string
name=
"proxy-Tooltip text"
>
""
</string>
<string
name=
"proxy-Tooltip text"
>
""
</string>
<string
name=
"proxy-Data variable"
>
""
</string>
<string
name=
"proxy-Data variable"
>
""
</string>
<string
name=
"proxy-Data validator"
>
""
</string>
<string
name=
"proxy-Data validator"
>
""
</string>
<string
name=
"proxy-Data source"
>
""
</string>
<string
name=
"proxy-Data class name"
>
""
</string>
<string
name=
"proxy-Data class implementation filename"
>
""
</string>
<string
name=
"proxy-Data class header filename"
>
""
</string>
<string
name=
"proxy-Data class manager window"
>
""
</string>
<string
name=
"proxy-Background colour"
>
""
</string>
<string
name=
"proxy-Background colour"
>
""
</string>
<string
name=
"proxy-Foreground colour"
>
""
</string>
<string
name=
"proxy-Foreground colour"
>
""
</string>
<string
name=
"proxy-Font"
>
""
</string>
<string
name=
"proxy-Font"
>
""
</string>
...
@@ -1641,6 +1775,7 @@
...
@@ -1641,6 +1775,7 @@
<string
name=
"proxy-type"
>
"wbCheckBoxProxy"
</string>
<string
name=
"proxy-type"
>
"wbCheckBoxProxy"
</string>
<string
name=
"proxy-Id name"
>
"ID_CHECKBOX9"
</string>
<string
name=
"proxy-Id name"
>
"ID_CHECKBOX9"
</string>
<long
name=
"proxy-Id value"
>
10015
</long>
<long
name=
"proxy-Id value"
>
10015
</long>
<string
name=
"proxy-Name"
>
""
</string>
<string
name=
"proxy-Class"
>
"wxCheckBox"
</string>
<string
name=
"proxy-Class"
>
"wxCheckBox"
</string>
<string
name=
"proxy-Base class"
>
"wxCheckBox"
</string>
<string
name=
"proxy-Base class"
>
"wxCheckBox"
</string>
<bool
name=
"proxy-External implementation"
>
1
</bool>
<bool
name=
"proxy-External implementation"
>
1
</bool>
...
@@ -1654,6 +1789,11 @@
...
@@ -1654,6 +1789,11 @@
<string
name=
"proxy-Tooltip text"
>
""
</string>
<string
name=
"proxy-Tooltip text"
>
""
</string>
<string
name=
"proxy-Data variable"
>
""
</string>
<string
name=
"proxy-Data variable"
>
""
</string>
<string
name=
"proxy-Data validator"
>
""
</string>
<string
name=
"proxy-Data validator"
>
""
</string>
<string
name=
"proxy-Data source"
>
""
</string>
<string
name=
"proxy-Data class name"
>
""
</string>
<string
name=
"proxy-Data class implementation filename"
>
""
</string>
<string
name=
"proxy-Data class header filename"
>
""
</string>
<string
name=
"proxy-Data class manager window"
>
""
</string>
<string
name=
"proxy-Background colour"
>
""
</string>
<string
name=
"proxy-Background colour"
>
""
</string>
<string
name=
"proxy-Foreground colour"
>
""
</string>
<string
name=
"proxy-Foreground colour"
>
""
</string>
<string
name=
"proxy-Font"
>
""
</string>
<string
name=
"proxy-Font"
>
""
</string>
...
@@ -1699,6 +1839,7 @@
...
@@ -1699,6 +1839,7 @@
<string
name=
"proxy-type"
>
"wbCheckBoxProxy"
</string>
<string
name=
"proxy-type"
>
"wbCheckBoxProxy"
</string>
<string
name=
"proxy-Id name"
>
"ID_CHECKBOX10"
</string>
<string
name=
"proxy-Id name"
>
"ID_CHECKBOX10"
</string>
<long
name=
"proxy-Id value"
>
10016
</long>
<long
name=
"proxy-Id value"
>
10016
</long>
<string
name=
"proxy-Name"
>
""
</string>
<string
name=
"proxy-Class"
>
"wxCheckBox"
</string>
<string
name=
"proxy-Class"
>
"wxCheckBox"
</string>
<string
name=
"proxy-Base class"
>
"wxCheckBox"
</string>
<string
name=
"proxy-Base class"
>
"wxCheckBox"
</string>
<bool
name=
"proxy-External implementation"
>
1
</bool>
<bool
name=
"proxy-External implementation"
>
1
</bool>
...
@@ -1712,6 +1853,11 @@
...
@@ -1712,6 +1853,11 @@
<string
name=
"proxy-Tooltip text"
>
""
</string>
<string
name=
"proxy-Tooltip text"
>
""
</string>
<string
name=
"proxy-Data variable"
>
""
</string>
<string
name=
"proxy-Data variable"
>
""
</string>
<string
name=
"proxy-Data validator"
>
""
</string>
<string
name=
"proxy-Data validator"
>
""
</string>
<string
name=
"proxy-Data source"
>
""
</string>
<string
name=
"proxy-Data class name"
>
""
</string>
<string
name=
"proxy-Data class implementation filename"
>
""
</string>
<string
name=
"proxy-Data class header filename"
>
""
</string>
<string
name=
"proxy-Data class manager window"
>
""
</string>
<string
name=
"proxy-Background colour"
>
""
</string>
<string
name=
"proxy-Background colour"
>
""
</string>
<string
name=
"proxy-Foreground colour"
>
""
</string>
<string
name=
"proxy-Foreground colour"
>
""
</string>
<string
name=
"proxy-Font"
>
""
</string>
<string
name=
"proxy-Font"
>
""
</string>
...
@@ -1757,6 +1903,7 @@
...
@@ -1757,6 +1903,7 @@
<string
name=
"proxy-type"
>
"wbCheckBoxProxy"
</string>
<string
name=
"proxy-type"
>
"wbCheckBoxProxy"
</string>
<string
name=
"proxy-Id name"
>
"ID_CHECKBOX11"
</string>
<string
name=
"proxy-Id name"
>
"ID_CHECKBOX11"
</string>
<long
name=
"proxy-Id value"
>
10017
</long>
<long
name=
"proxy-Id value"
>
10017
</long>
<string
name=
"proxy-Name"
>
""
</string>
<string
name=
"proxy-Class"
>
"wxCheckBox"
</string>
<string
name=
"proxy-Class"
>
"wxCheckBox"
</string>
<string
name=
"proxy-Base class"
>
"wxCheckBox"
</string>
<string
name=
"proxy-Base class"
>
"wxCheckBox"
</string>
<bool
name=
"proxy-External implementation"
>
1
</bool>
<bool
name=
"proxy-External implementation"
>
1
</bool>
...
@@ -1770,6 +1917,11 @@
...
@@ -1770,6 +1917,11 @@
<string
name=
"proxy-Tooltip text"
>
""
</string>
<string
name=
"proxy-Tooltip text"
>
""
</string>
<string
name=
"proxy-Data variable"
>
""
</string>
<string
name=
"proxy-Data variable"
>
""
</string>
<string
name=
"proxy-Data validator"
>
""
</string>
<string
name=
"proxy-Data validator"
>
""
</string>
<string
name=
"proxy-Data source"
>
""
</string>
<string
name=
"proxy-Data class name"
>
""
</string>
<string
name=
"proxy-Data class implementation filename"
>
""
</string>
<string
name=
"proxy-Data class header filename"
>
""
</string>
<string
name=
"proxy-Data class manager window"
>
""
</string>
<string
name=
"proxy-Background colour"
>
""
</string>
<string
name=
"proxy-Background colour"
>
""
</string>
<string
name=
"proxy-Foreground colour"
>
""
</string>
<string
name=
"proxy-Foreground colour"
>
""
</string>
<string
name=
"proxy-Font"
>
""
</string>
<string
name=
"proxy-Font"
>
""
</string>
...
@@ -1815,6 +1967,7 @@
...
@@ -1815,6 +1967,7 @@
<string
name=
"proxy-type"
>
"wbCheckBoxProxy"
</string>
<string
name=
"proxy-type"
>
"wbCheckBoxProxy"
</string>
<string
name=
"proxy-Id name"
>
"ID_CHECKBOX12"
</string>
<string
name=
"proxy-Id name"
>
"ID_CHECKBOX12"
</string>
<long
name=
"proxy-Id value"
>
10018
</long>
<long
name=
"proxy-Id value"
>
10018
</long>
<string
name=
"proxy-Name"
>
""
</string>
<string
name=
"proxy-Class"
>
"wxCheckBox"
</string>
<string
name=
"proxy-Class"
>
"wxCheckBox"
</string>
<string
name=
"proxy-Base class"
>
"wxCheckBox"
</string>
<string
name=
"proxy-Base class"
>
"wxCheckBox"
</string>
<bool
name=
"proxy-External implementation"
>
1
</bool>
<bool
name=
"proxy-External implementation"
>
1
</bool>
...
@@ -1828,6 +1981,11 @@
...
@@ -1828,6 +1981,11 @@
<string
name=
"proxy-Tooltip text"
>
""
</string>
<string
name=
"proxy-Tooltip text"
>
""
</string>
<string
name=
"proxy-Data variable"
>
""
</string>
<string
name=
"proxy-Data variable"
>
""
</string>
<string
name=
"proxy-Data validator"
>
""
</string>
<string
name=
"proxy-Data validator"
>
""
</string>
<string
name=
"proxy-Data source"
>
""
</string>
<string
name=
"proxy-Data class name"
>
""
</string>
<string
name=
"proxy-Data class implementation filename"
>
""
</string>
<string
name=
"proxy-Data class header filename"
>
""
</string>
<string
name=
"proxy-Data class manager window"
>
""
</string>
<string
name=
"proxy-Background colour"
>
""
</string>
<string
name=
"proxy-Background colour"
>
""
</string>
<string
name=
"proxy-Foreground colour"
>
""
</string>
<string
name=
"proxy-Foreground colour"
>
""
</string>
<string
name=
"proxy-Font"
>
""
</string>
<string
name=
"proxy-Font"
>
""
</string>
...
...
pcbnew/editpads.cpp
View file @
8080a2c9
...
@@ -26,22 +26,26 @@ int CodeShape[NBSHAPES] = /* forme des pads */
...
@@ -26,22 +26,26 @@ int CodeShape[NBSHAPES] = /* forme des pads */
};
};
#define NBTYPES
5
#define NBTYPES
4
int
CodeType
[
NBTYPES
]
=
int
CodeType
[
NBTYPES
]
=
{
{
PAD_STANDARD
,
PAD_SMD
,
PAD_CONN
,
PAD_
P_HOLE
,
PAD_MECA
PAD_STANDARD
,
PAD_SMD
,
PAD_CONN
,
PAD_
HOLE_NOT_PLATED
};
};
// Default mask layers for pads according to the pas type
static
long
Std_Pad_Layers
[
NBTYPES
]
=
static
long
Std_Pad_Layers
[
NBTYPES
]
=
{
{
// PAD_STANDARD:
ALL_CU_LAYERS
|
SILKSCREEN_LAYER_CMP
|
SOLDERMASK_LAYER_CU
|
SOLDERMASK_LAYER_CMP
,
ALL_CU_LAYERS
|
SILKSCREEN_LAYER_CMP
|
SOLDERMASK_LAYER_CU
|
SOLDERMASK_LAYER_CMP
,
// PAD_CONN:
CMP_LAYER
|
SOLDERPASTE_LAYER_CMP
|
SOLDERMASK_LAYER_CMP
,
CMP_LAYER
|
SOLDERPASTE_LAYER_CMP
|
SOLDERMASK_LAYER_CMP
,
// PAD_SMD:
CMP_LAYER
|
SOLDERMASK_LAYER_CMP
,
CMP_LAYER
|
SOLDERMASK_LAYER_CMP
,
ALL_CU_LAYERS
|
SILKSCREEN_LAYER_CU
|
SILKSCREEN_LAYER_CMP
|
SOLDERMASK_LAYER_CU
|
SOLDERMASK_LAYER_CMP
,
//PAD_HOLE_NOT_PLATED:
ALL_CU_LAYERS
|
SILKSCREEN_LAYER_CU
|
SILKSCREEN_LAYER_CMP
|
ALL_CU_LAYERS
|
SILKSCREEN_LAYER_CMP
|
SOLDERMASK_LAYER_CU
|
SOLDERMASK_LAYER_CMP
SOLDERMASK_LAYER_CU
|
SOLDERMASK_LAYER_CMP
};
};
...
@@ -247,18 +251,12 @@ void WinEDA_PadPropertiesFrame::PadOrientEvent( wxCommandEvent& event )
...
@@ -247,18 +251,12 @@ void WinEDA_PadPropertiesFrame::PadOrientEvent( wxCommandEvent& event )
}
}
/**************************************************************************/
void
WinEDA_PadPropertiesFrame
::
PadTypeSelectedEvent
(
wxCommandEvent
&
event
)
/**************************************************************************/
/* calcule un layer_mask type selon la selection du type du pad
*/
{
PadTypeSelected
();
}
/************************************************/
void
WinEDA_PadPropertiesFrame
::
PadTypeSelected
()
void
WinEDA_PadPropertiesFrame
::
PadTypeSelected
()
/************************************************/
/* Adjust the better mask layer according to the selected pad type
*/
{
{
long
layer_mask
;
long
layer_mask
;
int
ii
;
int
ii
;
...
@@ -524,8 +522,11 @@ void WinEDA_PadPropertiesFrame::PadPropertiesAccept( wxCommandEvent& event )
...
@@ -524,8 +522,11 @@ void WinEDA_PadPropertiesFrame::PadPropertiesAccept( wxCommandEvent& event )
CurrentPad
->
m_Drill
=
wxSize
(
0
,
0
);
CurrentPad
->
m_Drill
=
wxSize
(
0
,
0
);
break
;
break
;
case
PAD_P_HOLE
:
case
PAD_HOLE_NOT_PLATED
:
case
PAD_MECA
:
break
;
default
:
DisplayError
(
this
,
wxT
(
"Error: unknown pad type"
));
break
;
break
;
}
}
...
...
pcbnew/files.cpp
View file @
8080a2c9
...
@@ -132,6 +132,7 @@ int WinEDA_PcbFrame::LoadOnePcbFile( const wxString& FullFileName, bool Append )
...
@@ -132,6 +132,7 @@ int WinEDA_PcbFrame::LoadOnePcbFile( const wxString& FullFileName, bool Append )
int
ii
;
int
ii
;
FILE
*
source
;
FILE
*
source
;
wxString
msg
;
wxString
msg
;
char
cbuf
[
1024
];
ActiveScreen
=
GetScreen
();
ActiveScreen
=
GetScreen
();
...
...
pcbnew/librairi.cpp
View file @
8080a2c9
...
@@ -794,6 +794,7 @@ int WinEDA_ModuleEditFrame::Create_Librairie( const wxString& LibName )
...
@@ -794,6 +794,7 @@ int WinEDA_ModuleEditFrame::Create_Librairie( const wxString& LibName )
{
{
FILE
*
lib_module
;
FILE
*
lib_module
;
wxString
msg
;
wxString
msg
;
char
cbuf
[
256
];
if
(
wxFileExists
(
LibName
)
)
if
(
wxFileExists
(
LibName
)
)
{
{
...
@@ -835,6 +836,7 @@ static bool CreateDocLibrary( const wxString& LibName )
...
@@ -835,6 +836,7 @@ static bool CreateDocLibrary( const wxString& LibName )
*/
*/
{
{
char
Line
[
1024
];
char
Line
[
1024
];
char
cbuf
[
256
];
wxString
Name
,
Doc
,
KeyWord
;
wxString
Name
,
Doc
,
KeyWord
;
wxString
LibDocName
;
wxString
LibDocName
;
FILE
*
LibMod
,
*
LibDoc
;
FILE
*
LibMod
,
*
LibDoc
;
...
...
pcbnew/pcbnew.h
View file @
8080a2c9
...
@@ -212,10 +212,7 @@ eda_global char* adr_himem; /* adresse haute limite de la memoire disponible
...
@@ -212,10 +212,7 @@ eda_global char* adr_himem; /* adresse haute limite de la memoire disponible
eda_global
char
*
adr_max
;
/* adresse haute maxi utilisee pour la memoire */
eda_global
char
*
adr_max
;
/* adresse haute maxi utilisee pour la memoire */
/* variables g�erales */
/* variables generales */
eda_global
char
cbuf
[
1024
];
/* buffer for some text printing */
eda_global
BOARD
*
g_ModuleEditor_Pcb
;
/* board used to edit footprints (used by modedit)*/
eda_global
int
g_TimeOut
;
// Timer for automatic saving
eda_global
int
g_TimeOut
;
// Timer for automatic saving
eda_global
int
g_SaveTime
;
// Time for next saving
eda_global
int
g_SaveTime
;
// Time for next saving
...
@@ -320,6 +317,7 @@ eda_global int g_PadCMPColor;
...
@@ -320,6 +317,7 @@ eda_global int g_PadCMPColor;
#endif
#endif
eda_global
PCB_SCREEN
*
ScreenPcb
;
/* Ecran principal */
eda_global
PCB_SCREEN
*
ScreenPcb
;
/* Ecran principal */
eda_global
BOARD
*
g_ModuleEditor_Pcb
;
/* board used to edit footprints (used by modedit)*/
eda_global
PCB_SCREEN
*
ScreenModule
;
/* Ecran de l'editeur de modules */
eda_global
PCB_SCREEN
*
ScreenModule
;
/* Ecran de l'editeur de modules */
...
...
pcbnew/plotgerb.cpp
View file @
8080a2c9
...
@@ -367,6 +367,7 @@ void trace_1_pastille_OVALE_GERBER( wxPoint pos, wxSize size, int orient )
...
@@ -367,6 +367,7 @@ void trace_1_pastille_OVALE_GERBER( wxPoint pos, wxSize size, int orient )
*/
*/
{
{
D_CODE
*
dcode_ptr
;
D_CODE
*
dcode_ptr
;
char
cbuf
[
256
];
int
x0
,
y0
,
x1
,
y1
,
delta
;
int
x0
,
y0
,
x1
,
y1
,
delta
;
if
(
orient
==
900
||
orient
==
2700
)
/* orient tournee de 90 deg */
if
(
orient
==
900
||
orient
==
2700
)
/* orient tournee de 90 deg */
...
@@ -420,6 +421,7 @@ void Plot_1_CIRCLE_pad_GERBER( wxPoint pos, int diametre )
...
@@ -420,6 +421,7 @@ void Plot_1_CIRCLE_pad_GERBER( wxPoint pos, int diametre )
*/
*/
{
{
D_CODE
*
dcode_ptr
;
D_CODE
*
dcode_ptr
;
char
cbuf
[
256
];
wxSize
size
(
diametre
,
diametre
);
wxSize
size
(
diametre
,
diametre
);
...
@@ -451,6 +453,7 @@ void PlotRectangularPad_GERBER( wxPoint pos, wxSize size, int orient )
...
@@ -451,6 +453,7 @@ void PlotRectangularPad_GERBER( wxPoint pos, wxSize size, int orient )
*/
*/
{
{
D_CODE
*
dcode_ptr
;
D_CODE
*
dcode_ptr
;
char
cbuf
[
256
];
/* Trace de la forme flashee */
/* Trace de la forme flashee */
switch
(
orient
)
switch
(
orient
)
...
@@ -630,6 +633,7 @@ void PlotGERBERLine( wxPoint start, wxPoint end, int large )
...
@@ -630,6 +633,7 @@ void PlotGERBERLine( wxPoint start, wxPoint end, int large )
*/
*/
{
{
D_CODE
*
dcode_ptr
;
D_CODE
*
dcode_ptr
;
char
cbuf
[
256
];
UserToDeviceCoordinate
(
start
);
UserToDeviceCoordinate
(
start
);
UserToDeviceCoordinate
(
end
);
UserToDeviceCoordinate
(
end
);
...
@@ -865,6 +869,7 @@ int WinEDA_BasePcbFrame::Gen_D_CODE_File( FILE* penfile )
...
@@ -865,6 +869,7 @@ int WinEDA_BasePcbFrame::Gen_D_CODE_File( FILE* penfile )
*/
*/
{
{
D_CODE
*
ptr_tool
;
D_CODE
*
ptr_tool
;
char
cbuf
[
1024
];
int
nb_dcodes
=
0
;
int
nb_dcodes
=
0
;
/* Init : */
/* Init : */
...
...
pcbnew/plothpgl.cpp
View file @
8080a2c9
...
@@ -499,6 +499,7 @@ void trace_1_pastille_RONDE_HPGL( wxPoint pos, int diametre, int modetrace )
...
@@ -499,6 +499,7 @@ void trace_1_pastille_RONDE_HPGL( wxPoint pos, int diametre, int modetrace )
/**************************************************************************/
/**************************************************************************/
/* Trace 1 pastille RONDE (via,pad rond) en position pos */
/* Trace 1 pastille RONDE (via,pad rond) en position pos */
{
{
char
cbuf
[
1024
];
int
rayon
,
delta
;
int
rayon
,
delta
;
UserToDeviceCoordinate
(
pos
);
UserToDeviceCoordinate
(
pos
);
...
...
pcbnew/router.cpp
View file @
8080a2c9
...
@@ -237,8 +237,7 @@ void Out_Pads( BOARD* Pcb, FILE* outfile )
...
@@ -237,8 +237,7 @@ void Out_Pads( BOARD* Pcb, FILE* outfile )
fprintf
(
outfile
,
" %d"
,
2
);
fprintf
(
outfile
,
" %d"
,
2
);
break
;
break
;
case
PAD_P_HOLE
:
case
PAD_HOLE_NOT_PLATED
:
case
PAD_MECA
:
fprintf
(
outfile
,
" %d"
,
4
);
fprintf
(
outfile
,
" %d"
,
4
);
break
;
break
;
}
}
...
...
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