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
18bfe66d
Commit
18bfe66d
authored
Aug 20, 2008
by
jerryjacobs
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Dutch language update, kicad splash making to work
parent
608535f7
Changes
6
Expand all
Hide whitespace changes
Inline
Side-by-side
Showing
6 changed files
with
6865 additions
and
6743 deletions
+6865
-6743
kicad.mo
internat/nl/kicad.mo
+0
-0
kicad.po
internat/nl/kicad.po
+6838
-6726
commandframe.cpp
kicad/commandframe.cpp
+4
-4
kicad.cpp
kicad/kicad.cpp
+22
-12
logokicad.png
kicad/logokicad.png
+0
-0
onrightclick.cpp
pcbnew/onrightclick.cpp
+1
-1
No files found.
internat/nl/kicad.mo
View file @
18bfe66d
No preview for this file type
internat/nl/kicad.po
View file @
18bfe66d
This diff is collapsed.
Click to expand it.
kicad/commandframe.cpp
View file @
18bfe66d
...
...
@@ -55,19 +55,19 @@ void WinEDA_CommandFrame::CreateCommandToolbar( void )
m_ButtonLastPosition
.
y
=
20
;
btn
=
new
wxBitmapButton
(
this
,
ID_TO_EESCHEMA
,
BITMAP
(
icon_eeschema_xpm
)
);
btn
->
SetToolTip
(
_
(
"
ees
chema (Schematic editor)"
)
);
btn
->
SetToolTip
(
_
(
"
EES
chema (Schematic editor)"
)
);
AddFastLaunch
(
btn
);
btn
=
new
wxBitmapButton
(
this
,
ID_TO_CVPCB
,
BITMAP
(
icon_cvpcb_xpm
)
);
btn
->
SetToolTip
(
_
(
"
cv
pcb (Components to modules)"
)
);
btn
->
SetToolTip
(
_
(
"
CV
pcb (Components to modules)"
)
);
AddFastLaunch
(
btn
);
btn
=
new
wxBitmapButton
(
this
,
ID_TO_PCB
,
BITMAP
(
a_icon_pcbnew_xpm
)
);
btn
->
SetToolTip
(
_
(
"
pcb
new (PCB editor)"
)
);
btn
->
SetToolTip
(
_
(
"
PCB
new (PCB editor)"
)
);
AddFastLaunch
(
btn
);
btn
=
new
wxBitmapButton
(
this
,
ID_TO_GERBVIEW
,
BITMAP
(
icon_gerbview_xpm
)
);
btn
->
SetToolTip
(
_
(
"
gerbv
iew (Gerber viewer)"
)
);
btn
->
SetToolTip
(
_
(
"
GerbV
iew (Gerber viewer)"
)
);
AddFastLaunch
(
btn
);
...
...
kicad/kicad.cpp
View file @
18bfe66d
...
...
@@ -16,10 +16,15 @@
//#define SPLASH_OK
#ifdef SPLASH_OK
#include <wx/splash.h>
/* Define Splash Image */
#define SPLASH_IMAGE logo_kicad.png
#include "wx/splash.h"
#include "wx/mediactrl.h"
#endif
#include <wx/button.h>
#include <wx/button.h>
#include "wxstruct.h"
#include "common.h"
#include "bitmaps.h"
...
...
@@ -196,6 +201,9 @@ static void py_common_init()
bool
WinEDA_App
::
OnInit
()
{
wxImage
::
AddHandler
(
new
wxPNGHandler
);
g_EDA_Appl
=
this
;
InitEDA_Appl
(
wxT
(
"KiCad"
));
...
...
@@ -223,22 +231,24 @@ bool WinEDA_App::OnInit()
m_MainFrame
->
m_LeftWin
->
ReCreateTreePrj
();
SetTopWindow
(
m_MainFrame
);
m_MainFrame
->
Show
(
TRUE
);
/*
Preparation Affichage du l
ogo */
/*
Splash Screen L
ogo */
#ifdef SPLASH_OK
wxString
logoname
(
wxString
(
m_BinDir
)
+
wx
T
(
"logokicad.png"
)
);
wxBitmap
image
;
if
(
image
.
LoadFile
(
logoname
,
wxBITMAP_TYPE_PNG
)
)
wxString
logoname
(
wxString
(
m_BinDir
)
+
_
T
(
"logokicad.png"
)
);
wxBitmap
splash_screen
;
if
(
splash_screen
.
LoadFile
(
logoname
,
wxBITMAP_TYPE_PNG
)
)
{
wxSplashScreen
*
logoscreen
=
new
wxSplashScreen
(
image
,
wxSPLASH_CENTRE_ON_PARENT
|
wxSPLASH_TIMEOUT
,
500
,
m_MainFrame
,
-
1
,
wxDefaultPosition
,
wxDefaultSize
,
wxSIMPLE_BORDER
|
wxSTAY_ON_TOP
);
wxSplashScreen
*
splash
=
new
wxSplashScreen
(
splash_screen
,
wxSPLASH_CENTRE_ON_SCREEN
|
wxSPLASH_TIMEOUT
,
3000
,
m_MainFrame
,
wxID_ANY
,
wxDefaultPosition
,
wxDefaultSize
,
wxSIMPLE_BORDER
|
wxSTAY_ON_TOP
);
}
#endif
m_MainFrame
->
Show
(
TRUE
);
m_MainFrame
->
Raise
();
if
(
wxFileExists
(
m_MainFrame
->
m_PrjFileName
)
)
{
m_MainFrame
->
Load_Prj_Config
();
...
...
kicad/logokicad.png
0 → 100644
View file @
18bfe66d
5.32 KB
pcbnew/onrightclick.cpp
View file @
18bfe66d
...
...
@@ -812,7 +812,7 @@ void WinEDA_PcbFrame::createPopUpMenuForFpPads( D_PAD* Pad, wxMenu* menu )
sub_menu_Pad
->
AppendSeparator
();
ADD_MENUITEM
(
sub_menu_Pad
,
ID_POPUP_PCB_DELETE_PAD
,
_
(
"
d
elete"
),
delete_pad_xpm
);
_
(
"
D
elete"
),
delete_pad_xpm
);
}
if
(
m_HTOOL_current_state
==
ID_TOOLBARH_PCB_AUTOROUTE
)
...
...
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