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
2fbe1447
Commit
2fbe1447
authored
Apr 30, 2008
by
dickelbeck
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
beautify
parent
0104e614
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
48 additions
and
43 deletions
+48
-43
prjconfig.cpp
kicad/prjconfig.cpp
+48
-43
No files found.
kicad/prjconfig.cpp
View file @
2fbe1447
/*************************************************************/
/** prjconfig.cpp : load and save configuration (file *.pro) */
/*************************************************************/
/*************************************************************/
/** prjconfig.cpp : load and save configuration (file *.pro) */
/*************************************************************/
#ifdef KICAD_PYTHON
#include <pyhandler.h>
...
...
@@ -20,25 +20,26 @@
void
WinEDA_MainFrame
::
Load_Prj_Config
()
/*******************************************/
{
if
(
!
wxFileExists
(
m_PrjFileName
)
)
{
wxString
msg
=
_
(
"Project File <"
)
+
m_PrjFileName
+
_
(
"> not found"
);
DisplayError
(
this
,
msg
);
return
;
}
wxSetWorkingDirectory
(
wxPathOnly
(
m_PrjFileName
)
);
SetTitle
(
g_Main_Title
+
wxT
(
" "
)
+
GetBuildVersion
()
+
wxT
(
" "
)
+
m_PrjFileName
);
ReCreateMenuBar
();
m_LeftWin
->
ReCreateTreePrj
();
wxString
msg
=
_
(
"
\n
Working dir: "
)
+
wxGetCwd
();
msg
<<
_
(
"
\n
Project: "
)
<<
m_PrjFileName
<<
wxT
(
"
\n
"
);
PrintMsg
(
msg
);
if
(
!
wxFileExists
(
m_PrjFileName
)
)
{
wxString
msg
=
_
(
"Project File <"
)
+
m_PrjFileName
+
_
(
"> not found"
);
DisplayError
(
this
,
msg
);
return
;
}
wxSetWorkingDirectory
(
wxPathOnly
(
m_PrjFileName
)
);
SetTitle
(
g_Main_Title
+
wxT
(
" "
)
+
GetBuildVersion
()
+
wxT
(
" "
)
+
m_PrjFileName
);
ReCreateMenuBar
();
m_LeftWin
->
ReCreateTreePrj
();
wxString
msg
=
_
(
"
\n
Working dir: "
)
+
wxGetCwd
();
msg
<<
_
(
"
\n
Project: "
)
<<
m_PrjFileName
<<
wxT
(
"
\n
"
);
PrintMsg
(
msg
);
#ifdef KICAD_PYTHON
PyHandler
::
GetInstance
()
->
TriggerEvent
(
wxT
(
"kicad::LoadProject"
),
PyHandler
::
Convert
(
m_PrjFileName
)
);
#endif
#ifdef KICAD_PYTHON
PyHandler
::
GetInstance
()
->
TriggerEvent
(
wxT
(
"kicad::LoadProject"
),
PyHandler
::
Convert
(
m_PrjFileName
)
);
#endif
}
...
...
@@ -46,27 +47,31 @@ void WinEDA_MainFrame::Load_Prj_Config()
void
WinEDA_MainFrame
::
Save_Prj_Config
()
/*********************************************/
{
wxString
FullFileName
;
wxString
mask
(
wxT
(
"*"
));
g_Prj_Config_Filename_ext
=
wxT
(
".pro"
);
mask
+=
g_Prj_Config_Filename_ext
;
FullFileName
=
m_PrjFileName
;
ChangeFileNameExt
(
FullFileName
,
g_Prj_Config_Filename_ext
);
FullFileName
=
EDA_FileSelector
(
_
(
"Save project file"
),
wxGetCwd
(),
/* Chemin par defaut */
FullFileName
,
/* nom fichier par defaut */
g_Prj_Config_Filename_ext
,
/* extension par defaut */
mask
,
/* Masque d'affichage */
this
,
wxFD_SAVE
,
TRUE
);
if
(
FullFileName
.
IsEmpty
()
)
return
;
/* ecriture de la configuration */
g_EDA_Appl
->
WriteProjectConfig
(
FullFileName
,
wxT
(
"/general"
),
CfgParamList
);
wxString
FullFileName
;
wxString
mask
(
wxT
(
"*"
)
);
g_Prj_Config_Filename_ext
=
wxT
(
".pro"
);
mask
+=
g_Prj_Config_Filename_ext
;
FullFileName
=
m_PrjFileName
;
ChangeFileNameExt
(
FullFileName
,
g_Prj_Config_Filename_ext
);
FullFileName
=
EDA_FileSelector
(
_
(
"Save project file"
),
wxGetCwd
(),
/* Chemin par defaut */
FullFileName
,
/* nom fichier par defaut */
g_Prj_Config_Filename_ext
,
/* extension par defaut */
mask
,
/* Masque d'affichage */
this
,
wxFD_SAVE
,
TRUE
);
if
(
FullFileName
.
IsEmpty
()
)
return
;
/* ecriture de la configuration */
g_EDA_Appl
->
WriteProjectConfig
(
FullFileName
,
wxT
(
"/general"
),
CfgParamList
);
}
// vim: set tabstop=4 : noexpandtab :
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