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
f26f2c13
Commit
f26f2c13
authored
Dec 29, 2008
by
jerryjacobs
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Code cleaning and tab indenting + about update
parent
348cfa79
Changes
2
Expand all
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
679 additions
and
524 deletions
+679
-524
about_kicad.cpp
common/about_kicad.cpp
+25
-10
edaappl.cpp
common/edaappl.cpp
+654
-514
No files found.
common/about_kicad.cpp
View file @
f26f2c13
...
...
@@ -22,7 +22,7 @@ SetMsg( const wxString& msg )
{
wxString
message
;
#if 1
/* Windows */
#if 1
/* Windows */
message
=
wxT
(
"
\n
"
);
#endif
message
<<
msg
;
...
...
@@ -58,13 +58,19 @@ InitKiCadAbout( wxAboutDialogInfo& info )
<<
(
wxT
(
" Ansi
\n
"
)
);
#endif
/* Check for wxMSW */
#define FreeBSD
/**************************
* Check Operating System *
**************************/
#if defined __WINDOWS__
description
<<
(
wxT
(
"on Windows"
)
);
/* Check for wxMAC */
# elif defined __WXMAC__
description
<<
(
wxT
(
"
\n
on Macintosch"
)
);
description
<<
(
wxT
(
"on Macintosch"
)
);
/* Linux 64 bits */
# elif defined _LP64 && __LINUX__
...
...
@@ -73,10 +79,19 @@ InitKiCadAbout( wxAboutDialogInfo& info )
/* Linux 32 bits */
# elif defined __LINUX__
description
<<
(
wxT
(
"on 32 Bits GNU/Linux"
)
);
/* OpenBSD */
# elif defined __OpenBSD__
description
<<
(
wxT
(
"on OpenBSD"
)
);
/* FreeBSD */
# elif defined __FreeBSD__
description
<<
(
wxT
(
"on FreeBSD"
)
);
#endif
/* Websites */
description
<<
wxT
(
"
\n\n
KiCad on the web
\n
"
);
description
<<
wxT
(
"
\n\n
KiCad on the web
\n
\n
"
);
description
<<
wxT
(
"http://iut-tice.ujf-grenoble.fr/kicad
\n
"
);
description
<<
wxT
(
"http://kicad.sourceforge.net
\n
"
);
description
<<
wxT
(
"http://www.kicadlib.org"
);
...
...
@@ -113,15 +128,15 @@ InitKiCadAbout( wxAboutDialogInfo& info )
info
.
AddTranslator
(
SetMsg
(
wxT
(
"Polish (PL) Mateusz Skowroński <skowri@gmail.com>"
)
)
);
info
.
AddTranslator
(
SetMsg
(
wxT
(
"Portuguese (PT) Renie Marquet <reniemarquet@uol.com.br>"
)
)
);
info
.
AddTranslator
(
SetMsg
(
wxT
(
"Russian (RU) Igor Plyatov <plyatov@gmail.com>"
)
)
);
info
.
AddTranslator
(
SetMsg
(
wxT
(
"Spanish (ES) Pedro Martin del Valle <pkicad@yahoo.es>"
)
)
);
info
.
AddTranslator
(
SetMsg
(
wxT
(
"Spanish (ES) Iñigo Zuluaga <inigo_zuluaga@yahoo.es>"
)
)
);
/* TODO are these all russian translators, placed them here now TODO
TODO or else align them below other language maintainer with mail adres TODO*/
info
.
AddTranslator
(
SetMsg
(
wxT
(
" Remy Halvick"
)
)
);
info
.
AddTranslator
(
SetMsg
(
wxT
(
" David Briscoe"
)
)
);
info
.
AddTranslator
(
SetMsg
(
wxT
(
" Dominique Laigle"
)
)
);
info
.
AddTranslator
(
SetMsg
(
wxT
(
" Paul Burke"
)
)
);
info
.
AddTranslator
(
SetMsg
(
wxT
(
" Pedro Martin del Valle"
)
)
);
info
.
AddTranslator
(
SetMsg
(
wxT
(
" Iñigo Zuluaga"
)
)
);
info
.
AddTranslator
(
SetMsg
(
wxT
(
"
\n\n
Remy Halvick"
)
)
);
info
.
AddTranslator
(
SetMsg
(
wxT
(
"David Briscoe"
)
)
);
info
.
AddTranslator
(
SetMsg
(
wxT
(
"Dominique Laigle"
)
)
);
info
.
AddTranslator
(
SetMsg
(
wxT
(
"Paul Burke"
)
)
);
/* Add programm credits for icons */
info
.
AddArtist
(
wxT
(
"Icons by Iñigo Zuluaga"
)
);
...
...
common/edaappl.cpp
View file @
f26f2c13
This diff is collapsed.
Click to expand it.
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