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
e4467d4d
Commit
e4467d4d
authored
Oct 18, 2009
by
charras
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
fixed minor problem in Eeschema library viewer
parent
15e07345
Changes
5
Show whitespace changes
Inline
Side-by-side
Showing
5 changed files
with
1887 additions
and
1886 deletions
+1887
-1886
tool_viewlib.cpp
eeschema/tool_viewlib.cpp
+20
-9
viewlib_frame.cpp
eeschema/viewlib_frame.cpp
+2
-2
kicad.mo
internat/fr/kicad.mo
+0
-0
kicad.po
internat/fr/kicad.po
+1863
-1873
onrightclick.cpp
pcbnew/onrightclick.cpp
+2
-2
No files found.
eeschema/tool_viewlib.cpp
View file @
e4467d4d
...
@@ -26,7 +26,7 @@ void WinEDA_ViewlibFrame::ReCreateHToolbar()
...
@@ -26,7 +26,7 @@ void WinEDA_ViewlibFrame::ReCreateHToolbar()
if
(
m_HToolBar
==
NULL
)
if
(
m_HToolBar
==
NULL
)
{
{
m_HToolBar
=
new
WinEDA_Toolbar
(
TOOLBAR_MAIN
,
this
,
ID_H_TOOLBAR
,
m_HToolBar
=
new
WinEDA_Toolbar
(
TOOLBAR_MAIN
,
this
,
ID_H_TOOLBAR
,
TRUE
);
true
);
SetToolBar
(
m_HToolBar
);
SetToolBar
(
m_HToolBar
);
// Set up toolbar
// Set up toolbar
...
@@ -86,7 +86,7 @@ void WinEDA_ViewlibFrame::ReCreateHToolbar()
...
@@ -86,7 +86,7 @@ void WinEDA_ViewlibFrame::ReCreateHToolbar()
m_HToolBar
->
AddTool
(
ID_LIBVIEW_VIEWDOC
,
wxEmptyString
,
m_HToolBar
->
AddTool
(
ID_LIBVIEW_VIEWDOC
,
wxEmptyString
,
wxBitmap
(
datasheet_xpm
),
wxBitmap
(
datasheet_xpm
),
_
(
"View component documents"
)
);
_
(
"View component documents"
)
);
m_HToolBar
->
EnableTool
(
ID_LIBVIEW_VIEWDOC
,
FALSE
);
m_HToolBar
->
EnableTool
(
ID_LIBVIEW_VIEWDOC
,
false
);
if
(
m_Semaphore
)
// The lib browser is called from a "load component" command
if
(
m_Semaphore
)
// The lib browser is called from a "load component" command
{
{
...
@@ -119,12 +119,23 @@ void WinEDA_ViewlibFrame::ReCreateHToolbar()
...
@@ -119,12 +119,23 @@ void WinEDA_ViewlibFrame::ReCreateHToolbar()
}
}
// Must be AFTER Realize():
// Must be AFTER Realize():
if
(
asdeMorgan
)
{
m_HToolBar
->
ToggleTool
(
ID_LIBVIEW_DE_MORGAN_NORMAL_BUTT
,
m_HToolBar
->
ToggleTool
(
ID_LIBVIEW_DE_MORGAN_NORMAL_BUTT
,
(
m_convert
<=
1
)
?
TRUE
:
FALSE
);
(
m_convert
<=
1
)
?
true
:
false
);
m_HToolBar
->
ToggleTool
(
ID_LIBVIEW_DE_MORGAN_CONVERT_BUTT
,
m_HToolBar
->
ToggleTool
(
ID_LIBVIEW_DE_MORGAN_CONVERT_BUTT
,
(
m_convert
>=
2
)
?
TRUE
:
FALSE
);
(
m_convert
>=
2
)
?
true
:
false
);
m_HToolBar
->
EnableTool
(
ID_LIBVIEW_DE_MORGAN_CONVERT_BUTT
,
asdeMorgan
);
m_HToolBar
->
EnableTool
(
ID_LIBVIEW_DE_MORGAN_CONVERT_BUTT
,
true
);
m_HToolBar
->
EnableTool
(
ID_LIBVIEW_DE_MORGAN_NORMAL_BUTT
,
asdeMorgan
);
m_HToolBar
->
EnableTool
(
ID_LIBVIEW_DE_MORGAN_NORMAL_BUTT
,
true
);
}
else
{
m_HToolBar
->
ToggleTool
(
ID_LIBVIEW_DE_MORGAN_NORMAL_BUTT
,
true
);
m_HToolBar
->
ToggleTool
(
ID_LIBVIEW_DE_MORGAN_CONVERT_BUTT
,
false
);
m_HToolBar
->
EnableTool
(
ID_LIBVIEW_DE_MORGAN_CONVERT_BUTT
,
false
);
m_HToolBar
->
EnableTool
(
ID_LIBVIEW_DE_MORGAN_NORMAL_BUTT
,
false
);
}
int
jj
=
1
;
int
jj
=
1
;
if
(
component
)
if
(
component
)
...
@@ -137,7 +148,7 @@ void WinEDA_ViewlibFrame::ReCreateHToolbar()
...
@@ -137,7 +148,7 @@ void WinEDA_ViewlibFrame::ReCreateHToolbar()
SelpartBox
->
Append
(
msg
);
SelpartBox
->
Append
(
msg
);
}
}
SelpartBox
->
SetSelection
(
m_unit
-
1
);
SelpartBox
->
SetSelection
(
(
m_unit
>
0
)
?
m_unit
-
1
:
0
);
SelpartBox
->
Enable
(
component
&&
component
->
HasConversion
()
);
SelpartBox
->
Enable
(
component
&&
component
->
HasConversion
()
);
m_HToolBar
->
EnableTool
(
ID_LIBVIEW_VIEWDOC
,
m_HToolBar
->
EnableTool
(
ID_LIBVIEW_VIEWDOC
,
...
...
eeschema/viewlib_frame.cpp
View file @
e4467d4d
...
@@ -458,8 +458,8 @@ void WinEDA_ViewlibFrame::ClickOnCmpList( wxCommandEvent& event )
...
@@ -458,8 +458,8 @@ void WinEDA_ViewlibFrame::ClickOnCmpList( wxCommandEvent& event )
{
{
m_entryName
=
name
;
m_entryName
=
name
;
DisplayLibInfos
();
DisplayLibInfos
();
m_unit
=
0
;
m_unit
=
1
;
m_convert
=
0
;
m_convert
=
1
;
Zoom_Automatique
(
false
);
Zoom_Automatique
(
false
);
ReCreateHToolbar
();
ReCreateHToolbar
();
DrawPanel
->
Refresh
();
DrawPanel
->
Refresh
();
...
...
internat/fr/kicad.mo
View file @
e4467d4d
No preview for this file type
internat/fr/kicad.po
View file @
e4467d4d
This source diff could not be displayed because it is too large. You can
view the blob
instead.
pcbnew/onrightclick.cpp
View file @
e4467d4d
...
@@ -510,9 +510,9 @@ void WinEDA_PcbFrame::createPopupMenuForTracks( TRACK* Track, wxMenu* PopMenu )
...
@@ -510,9 +510,9 @@ void WinEDA_PcbFrame::createPopupMenuForTracks( TRACK* Track, wxMenu* PopMenu )
ADD_MENUITEM
(
track_mnu
,
ID_POPUP_PCB_EDIT_ALL_VIAS_AND_TRACK_SIZE
,
ADD_MENUITEM
(
track_mnu
,
ID_POPUP_PCB_EDIT_ALL_VIAS_AND_TRACK_SIZE
,
_
(
"Set ALL Tracks and Vias to NetClass Values"
),
width_track_via_xpm
);
_
(
"Set ALL Tracks and Vias to NetClass Values"
),
width_track_via_xpm
);
ADD_MENUITEM
(
track_mnu
,
ID_POPUP_PCB_EDIT_ALL_VIAS_SIZE
,
ADD_MENUITEM
(
track_mnu
,
ID_POPUP_PCB_EDIT_ALL_VIAS_SIZE
,
_
(
"Set ALL Vias (No Track)to NetClass Values"
),
width_vias_xpm
);
_
(
"Set ALL Vias (No Track)
to NetClass Values"
),
width_vias_xpm
);
ADD_MENUITEM
(
track_mnu
,
ID_POPUP_PCB_EDIT_ALL_TRACK_SIZE
,
ADD_MENUITEM
(
track_mnu
,
ID_POPUP_PCB_EDIT_ALL_TRACK_SIZE
,
_
(
"Set ALL Tracks (No Via)to NetClass Values"
),
width_track_xpm
);
_
(
"Set ALL Tracks (No Via)
to NetClass Values"
),
width_track_xpm
);
}
}
// Delete control:
// Delete control:
...
...
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