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
e2abaa81
Commit
e2abaa81
authored
Feb 29, 2008
by
CHARRAS
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Display filename and full sheet name ("sheet path") in sheet references
parent
4d9ea908
Changes
3
Expand all
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
1042 additions
and
933 deletions
+1042
-933
common_plot_functions.cpp
common/common_plot_functions.cpp
+13
-1
dialog_build_BOM.cpp
eeschema/dialog_build_BOM.cpp
+1028
-931
netlist.h
eeschema/netlist.h
+1
-1
No files found.
common/common_plot_functions.cpp
View file @
e2abaa81
...
@@ -229,7 +229,7 @@ int UpperLimit = VARIABLE_BLOCK_START_POSITION;
...
@@ -229,7 +229,7 @@ int UpperLimit = VARIABLE_BLOCK_START_POSITION;
msg
+=
screen
->
m_Revision
;
msg
+=
screen
->
m_Revision
;
break
;
break
;
case
WS_
LICENCE
:
case
WS_
KICAD_VERSION
:
msg
+=
g_ProductName
;
msg
+=
g_ProductName
;
break
;
break
;
...
@@ -241,6 +241,18 @@ int UpperLimit = VARIABLE_BLOCK_START_POSITION;
...
@@ -241,6 +241,18 @@ int UpperLimit = VARIABLE_BLOCK_START_POSITION;
msg
<<
screen
->
m_ScreenNumber
<<
wxT
(
"/"
)
<<
screen
->
m_NumberOfScreen
;
msg
<<
screen
->
m_ScreenNumber
<<
wxT
(
"/"
)
<<
screen
->
m_NumberOfScreen
;
break
;
break
;
case
WS_FILENAME
:
{
wxString
fname
,
fext
;
wxFileName
::
SplitPath
(
screen
->
m_FileName
,
(
wxString
*
)
NULL
,
&
fname
,
&
fext
);
msg
<<
fname
<<
wxT
(
"."
)
<<
fext
;
}
break
;
case
WS_FULLSHEETNAME
:
// msg += GetScreenDesc();
break
;
case
WS_COMPANY_NAME
:
case
WS_COMPANY_NAME
:
msg
+=
screen
->
m_Company
;
msg
+=
screen
->
m_Company
;
if
(
!
msg
.
IsEmpty
()
)
if
(
!
msg
.
IsEmpty
()
)
...
...
eeschema/dialog_build_BOM.cpp
View file @
e2abaa81
This diff is collapsed.
Click to expand it.
eeschema/netlist.h
View file @
e2abaa81
...
@@ -95,7 +95,7 @@ typedef struct ListLabel
...
@@ -95,7 +95,7 @@ typedef struct ListLabel
{
{
int
m_LabelType
;
int
m_LabelType
;
void
*
m_Label
;
void
*
m_Label
;
char
m_SheetPath
[
32
];
char
m_SheetPath
[
64
];
}
ListLabel
;
}
ListLabel
;
typedef
struct
ListComponent
typedef
struct
ListComponent
{
{
...
...
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