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
81ddf0bb
Commit
81ddf0bb
authored
Jul 20, 2011
by
jean-pierre charras
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Eeschema: fix bug 812924. Very minor other changes to make translations more easy.
parent
9deee66b
Changes
9
Expand all
Show whitespace changes
Inline
Side-by-side
Showing
9 changed files
with
2419 additions
and
2336 deletions
+2419
-2336
build_version.cpp
common/build_version.cpp
+1
-1
block.cpp
eeschema/block.cpp
+3
-0
install.nsi
packaging/windows/nsis/install.nsi
+1
-1
class_netinfo_item.cpp
pcbnew/class_netinfo_item.cpp
+5
-2
class_track.cpp
pcbnew/class_track.cpp
+1
-1
dialog_pcb_text_properties_base.cpp
pcbnew/dialogs/dialog_pcb_text_properties_base.cpp
+171
-171
dialog_pcb_text_properties_base.fbp
pcbnew/dialogs/dialog_pcb_text_properties_base.fbp
+2159
-2083
dialog_pcb_text_properties_base.h
pcbnew/dialogs/dialog_pcb_text_properties_base.h
+76
-75
version.txt
version.txt
+2
-2
No files found.
common/build_version.cpp
View file @
81ddf0bb
...
...
@@ -6,7 +6,7 @@
#endif
#ifndef KICAD_BUILD_VERSION
#define KICAD_BUILD_VERSION "(2011-07-
08
)"
#define KICAD_BUILD_VERSION "(2011-07-
19
)"
#endif
...
...
eeschema/block.cpp
View file @
81ddf0bb
...
...
@@ -420,6 +420,7 @@ void SCH_EDIT_FRAME::HandleBlockEndByPopUp( int Command, wxDC* DC )
{
/* Compute the rotation center and put it on grid */
wxPoint
rotationPoint
=
block
->
Centre
();
rotationPoint
=
GetScreen
()
->
GetNearestGridPosition
(
rotationPoint
);
GetScreen
()
->
SetCrossHairPosition
(
rotationPoint
);
SaveCopyInUndoList
(
block
->
m_ItemsSelection
,
UR_ROTATED
,
rotationPoint
);
RotateListOfItems
(
block
->
m_ItemsSelection
,
rotationPoint
);
...
...
@@ -438,6 +439,7 @@ void SCH_EDIT_FRAME::HandleBlockEndByPopUp( int Command, wxDC* DC )
{
/* Compute the mirror center and put it on grid */
wxPoint
mirrorPoint
=
block
->
Centre
();
mirrorPoint
=
GetScreen
()
->
GetNearestGridPosition
(
mirrorPoint
);
GetScreen
()
->
SetCrossHairPosition
(
mirrorPoint
);
SaveCopyInUndoList
(
block
->
m_ItemsSelection
,
UR_MIRRORED_X
,
mirrorPoint
);
Mirror_X_ListOfItems
(
block
->
m_ItemsSelection
,
mirrorPoint
);
...
...
@@ -455,6 +457,7 @@ void SCH_EDIT_FRAME::HandleBlockEndByPopUp( int Command, wxDC* DC )
{
/* Compute the mirror center and put it on grid */
wxPoint
mirrorPoint
=
block
->
Centre
();
mirrorPoint
=
GetScreen
()
->
GetNearestGridPosition
(
mirrorPoint
);
GetScreen
()
->
SetCrossHairPosition
(
mirrorPoint
);
SaveCopyInUndoList
(
block
->
m_ItemsSelection
,
UR_MIRRORED_Y
,
mirrorPoint
);
MirrorListOfItems
(
block
->
m_ItemsSelection
,
mirrorPoint
);
...
...
packaging/windows/nsis/install.nsi
View file @
81ddf0bb
...
...
@@ -17,7 +17,7 @@
; General Product Description Definitions
!define PRODUCT_NAME "KiCad"
!define PRODUCT_VERSION "2011.07.
08
"
!define PRODUCT_VERSION "2011.07.
19
"
!define PRODUCT_WEB_SITE "http://iut-tice.ujf-grenoble.fr/kicad/"
!define SOURCEFORGE_WEB_SITE "http://kicad.sourceforge.net/"
!define COMPANY_NAME ""
...
...
pcbnew/class_netinfo_item.cpp
View file @
81ddf0bb
...
...
@@ -127,8 +127,8 @@ void NETINFO_ITEM::DisplayInfo( EDA_DRAW_FRAME* frame )
wxString
txt
;
MODULE
*
module
;
D_PAD
*
pad
;
double
lengthnet
=
0
;
double
lengthdie
=
0
;
double
lengthnet
=
0
;
// This is the lenght of tracks on pcb
double
lengthdie
=
0
;
// this is the lenght of internal ICs connections
frame
->
ClearMsgPanel
();
...
...
@@ -169,12 +169,15 @@ void NETINFO_ITEM::DisplayInfo( EDA_DRAW_FRAME* frame )
txt
.
Printf
(
wxT
(
"%d"
),
count
);
frame
->
AppendMsgPanel
(
_
(
"Vias"
),
txt
,
BLUE
);
// Displays the full net lenght (tacks on pcb + internal ICs connections ):
valeur_param
(
(
int
)
(
lengthnet
+
lengthdie
),
txt
);
frame
->
AppendMsgPanel
(
_
(
"Net Length:"
),
txt
,
RED
);
// Displays the net lenght of tracks only:
valeur_param
(
(
int
)
lengthnet
,
txt
);
frame
->
AppendMsgPanel
(
_
(
"on pcb"
),
txt
,
RED
);
// Displays the net lenght of internal ICs connections (wires inside ICs):
valeur_param
(
(
int
)
lengthdie
,
txt
);
frame
->
AppendMsgPanel
(
_
(
"on die"
),
txt
,
RED
);
...
...
pcbnew/class_track.cpp
View file @
81ddf0bb
...
...
@@ -1219,7 +1219,7 @@ wxString TRACK::GetSelectMenuText() const
}
else
{
text
<<
_
(
"** BOARD NOT DEFINED **
"
);
text
<<
_
(
"** BOARD NOT DEFINED **"
);
}
text
<<
_
(
" on "
)
<<
GetLayerName
()
<<
wxT
(
" "
)
<<
_
(
"Net:"
)
<<
GetNet
()
...
...
pcbnew/dialogs/dialog_pcb_text_properties_base.cpp
View file @
81ddf0bb
///////////////////////////////////////////////////////////////////////////
// C++ code generated with wxFormBuilder (version
Nov 18 2010)
// C++ code generated with wxFormBuilder (version
Jun 30 2011)
// http://www.wxformbuilder.org/
//
// PLEASE DO "NOT" EDIT THIS FILE!
...
...
pcbnew/dialogs/dialog_pcb_text_properties_base.fbp
View file @
81ddf0bb
This diff is collapsed.
Click to expand it.
pcbnew/dialogs/dialog_pcb_text_properties_base.h
View file @
81ddf0bb
///////////////////////////////////////////////////////////////////////////
// C++ code generated with wxFormBuilder (version
Nov 18 2010)
// C++ code generated with wxFormBuilder (version
Jun 30 2011)
// http://www.wxformbuilder.org/
//
// PLEASE DO "NOT" EDIT THIS FILE!
///////////////////////////////////////////////////////////////////////////
#ifndef __
dialog_pcb_text_properties_base__
#define __
dialog_pcb_text_properties_base__
#ifndef __
DIALOG_PCB_TEXT_PROPERTIES_BASE_H__
#define __
DIALOG_PCB_TEXT_PROPERTIES_BASE_H__
#include <wx/artprov.h>
#include <wx/xrc/xmlres.h>
#include <wx/intl.h>
#include <wx/string.h>
#include <wx/stattext.h>
#include <wx/gdicmn.h>
...
...
@@ -67,9 +68,9 @@ class DIALOG_PCB_TEXT_PROPERTIES_BASE : public wxDialog
public
:
DIALOG_PCB_TEXT_PROPERTIES_BASE
(
wxWindow
*
parent
,
wxWindowID
id
=
wxID_ANY
,
const
wxString
&
title
=
_
(
"Text
Item Properties"
),
const
wxPoint
&
pos
=
wxDefaultPosition
,
const
wxSize
&
size
=
wxSize
(
433
,
465
),
long
style
=
wxDEFAULT_DIALOG_STYLE
|
wxRESIZE_BORDER
|
wxSYSTEM_MENU
);
DIALOG_PCB_TEXT_PROPERTIES_BASE
(
wxWindow
*
parent
,
wxWindowID
id
=
wxID_ANY
,
const
wxString
&
title
=
_
(
"Text
Properties"
),
const
wxPoint
&
pos
=
wxDefaultPosition
,
const
wxSize
&
size
=
wxSize
(
433
,
465
),
long
style
=
wxDEFAULT_DIALOG_STYLE
|
wxRESIZE_BORDER
|
wxSYSTEM_MENU
);
~
DIALOG_PCB_TEXT_PROPERTIES_BASE
();
};
#endif //__
dialog_pcb_text_properties_base__
#endif //__
DIALOG_PCB_TEXT_PROPERTIES_BASE_H__
version.txt
View file @
81ddf0bb
release version:
2011 jul
08
2011 jul
19
files (.zip,.tgz):
kicad-2011-07-
08
kicad-2011-07-
19
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