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
b08a3bb3
Commit
b08a3bb3
authored
Dec 17, 2007
by
dickelbeck
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
added comment
parent
afb2eb9b
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
74 additions
and
67 deletions
+74
-67
treeprj_datas.cpp
kicad/treeprj_datas.cpp
+74
-67
No files found.
kicad/treeprj_datas.cpp
View file @
b08a3bb3
...
@@ -260,6 +260,7 @@ bool TreePrjItemData::Rename( const wxString& name, bool check )
...
@@ -260,6 +260,7 @@ bool TreePrjItemData::Rename( const wxString& name, bool check )
//this is broken & unsafe to use on linux.
//this is broken & unsafe to use on linux.
if
(
m_Type
==
TREE_DIRECTORY
)
if
(
m_Type
==
TREE_DIRECTORY
)
return
false
;
return
false
;
if
(
name
.
IsEmpty
()
)
if
(
name
.
IsEmpty
()
)
return
false
;
return
false
;
...
@@ -282,8 +283,7 @@ bool TreePrjItemData::Rename( const wxString& name, bool check )
...
@@ -282,8 +283,7 @@ bool TreePrjItemData::Rename( const wxString& name, bool check )
if
(
check
&&
!
ext
.
IsEmpty
()
&&
!
reg
.
Matches
(
newFile
)
)
if
(
check
&&
!
ext
.
IsEmpty
()
&&
!
reg
.
Matches
(
newFile
)
)
{
{
wxMessageDialog
dialog
(
m_Parent
,
wxMessageDialog
dialog
(
m_Parent
,
_
(
_
(
"Changing file extension will change file type.
\n
Do you want to continue ?"
),
"Changing file extension will change file type.
\n
Do you want to continue ?"
),
_
(
"Rename File"
),
_
(
"Rename File"
),
wxYES_NO
|
wxICON_QUESTION
);
wxYES_NO
|
wxICON_QUESTION
);
...
@@ -291,23 +291,23 @@ bool TreePrjItemData::Rename( const wxString& name, bool check )
...
@@ -291,23 +291,23 @@ bool TreePrjItemData::Rename( const wxString& name, bool check )
return
false
;
return
false
;
}
}
#if ( (
wxMAJOR_VERSION < 2) || ( (wxMAJOR_VERSION == 2) && (wxMINOR_VERSION < 7)
) )
#if ( (
wxMAJOR_VERSION < 2) || ( ( wxMAJOR_VERSION == 2) && (wxMINOR_VERSION < 7 )
) )
if
(
!
wxRenameFile
(
m_FileName
,
newFile
)
)
if
(
!
wxRenameFile
(
m_FileName
,
newFile
)
)
#else
#else
if
(
!
wxRenameFile
(
m_FileName
,
newFile
,
false
)
)
if
(
!
wxRenameFile
(
m_FileName
,
newFile
,
false
)
)
#endif
#endif
{
{
wxMessageDialog
(
m_Parent
,
_
(
"Unable to rename file ... "
),
wxMessageDialog
(
m_Parent
,
_
(
"Unable to rename file ... "
),
_
(
"Permission error ?"
),
wxICON_ERROR
|
wxOK
);
_
(
"Permission error ?"
),
wxICON_ERROR
|
wxOK
);
return
false
;
return
false
;
}
}
SetFileName
(
newFile
);
SetFileName
(
newFile
);
#ifdef KICAD_PYTHON
#ifdef KICAD_PYTHON
object
param
=
make_tuple
(
PyHandler
::
Convert
(
m_FileName
),
object
param
=
make_tuple
(
PyHandler
::
Convert
(
m_FileName
),
PyHandler
::
Convert
(
newFile
)
);
PyHandler
::
Convert
(
newFile
)
);
PyHandler
::
GetInstance
()
->
TriggerEvent
(
wxT
(
"kicad::RenameFile"
),
param
);
PyHandler
::
GetInstance
()
->
TriggerEvent
(
wxT
(
"kicad::RenameFile"
),
param
);
#endif
#endif
return
true
;
return
true
;
}
}
...
@@ -318,7 +318,7 @@ bool TreePrjItemData::Delete( bool check )
...
@@ -318,7 +318,7 @@ bool TreePrjItemData::Delete( bool check )
/* delete a file */
/* delete a file */
{
{
wxMessageDialog
dialog
(
m_Parent
,
_
(
"Do you really want to delete "
)
+
GetFileName
(),
wxMessageDialog
dialog
(
m_Parent
,
_
(
"Do you really want to delete "
)
+
GetFileName
(),
_
(
"Delete File"
),
wxYES_NO
|
wxICON_QUESTION
);
_
(
"Delete File"
),
wxYES_NO
|
wxICON_QUESTION
);
if
(
!
check
||
wxID_YES
==
dialog
.
ShowModal
()
)
if
(
!
check
||
wxID_YES
==
dialog
.
ShowModal
()
)
{
{
...
@@ -350,13 +350,13 @@ bool TreePrjItemData::Delete( bool check )
...
@@ -350,13 +350,13 @@ bool TreePrjItemData::Delete( bool check )
/**********************************/
/**********************************/
void
TreePrjItemData
::
Activate
(
WinEDA_PrjFrame
*
prjframe
)
void
TreePrjItemData
::
Activate
(
WinEDA_PrjFrame
*
prjframe
)
/**********************************/
/**********************************/
/* Called under item activation */
/* Called under item activation */
{
{
wxString
sep
=
wxFileName
().
GetPathSeparator
();
wxString
sep
=
wxFileName
().
GetPathSeparator
();
wxString
FullFileName
=
GetFileName
();
wxString
FullFileName
=
GetFileName
();
wxDir
*
dir
;
wxDir
*
dir
;
wxString
dir_filename
;
wxString
dir_filename
;
wxTreeItemId
id
=
GetId
();
wxTreeItemId
id
=
GetId
();
int
count
;
int
count
;
...
@@ -367,8 +367,10 @@ void TreePrjItemData::Activate(WinEDA_PrjFrame* prjframe)
...
@@ -367,8 +367,10 @@ void TreePrjItemData::Activate(WinEDA_PrjFrame* prjframe)
break
;
break
;
case
TREE_DIRECTORY
:
case
TREE_DIRECTORY
:
if
(
prjframe
){
if
(
prjframe
)
dir
=
new
wxDir
(
FullFileName
);
{
dir
=
new
wxDir
(
FullFileName
);
count
=
0
;
count
=
0
;
if
(
dir
&&
dir
->
IsOpened
()
&&
dir
->
GetFirst
(
&
dir_filename
)
)
if
(
dir
&&
dir
->
IsOpened
()
&&
dir
->
GetFirst
(
&
dir_filename
)
)
{
{
...
@@ -376,39 +378,44 @@ void TreePrjItemData::Activate(WinEDA_PrjFrame* prjframe)
...
@@ -376,39 +378,44 @@ void TreePrjItemData::Activate(WinEDA_PrjFrame* prjframe)
{
{
wxString
fil
=
FullFileName
+
sep
+
dir_filename
;
wxString
fil
=
FullFileName
+
sep
+
dir_filename
;
if
(
prjframe
->
AddFile
(
fil
,
id
)
){
if
(
prjframe
->
AddFile
(
fil
,
id
)
)
{
count
++
;
count
++
;
}
}
}
while
(
dir
->
GetNext
(
&
dir_filename
)
);
}
while
(
dir
->
GetNext
(
&
dir_filename
)
);
}
}
if
(
count
==
0
)
if
(
count
==
0
)
{
{
prjframe
->
AddFile
(
wxString
(
_
(
"no kicad files found in this directory"
)),
id
);
/* The AddFile() text below should match the filter added to handle
it in treeprj_frame.cpp in the line looking like this:
m_Filters.push_back( wxT( "^no kicad files found" ) );
*/
prjframe
->
AddFile
(
wxString
(
_
(
"no kicad files found in this directory"
)),
id
);
}
}
/* Sort filenames by alphabetic order */
/* Sort filenames by alphabetic order */
m_Parent
->
SortChildren
(
id
);
m_Parent
->
SortChildren
(
id
);
if
(
dir
)
delete
dir
;
delete
dir
;
}
}
m_Parent
->
Toggle
(
id
);
m_Parent
->
Toggle
(
id
);
break
;
break
;
case
TREE_SCHEMA
:
case
TREE_SCHEMA
:
{
AddDelimiterString
(
FullFileName
);
AddDelimiterString
(
FullFileName
);
ExecuteFile
(
m_Parent
,
EESCHEMA_EXE
,
FullFileName
);
ExecuteFile
(
m_Parent
,
EESCHEMA_EXE
,
FullFileName
);
break
;
break
;
}
case
TREE_PCB
:
case
TREE_PCB
:
AddDelimiterString
(
FullFileName
);
AddDelimiterString
(
FullFileName
);
ExecuteFile
(
m_Parent
,
PCBNEW_EXE
,
FullFileName
);
ExecuteFile
(
m_Parent
,
PCBNEW_EXE
,
FullFileName
);
break
;
break
;
#ifdef KICAD_PYTHON
#ifdef KICAD_PYTHON
case
TREE_PY
:
case
TREE_PY
:
PyHandler
::
GetInstance
()
->
RunScript
(
FullFileName
);
PyHandler
::
GetInstance
()
->
RunScript
(
FullFileName
);
break
;
break
;
#endif
#endif
case
TREE_GERBER
:
case
TREE_GERBER
:
AddDelimiterString
(
FullFileName
);
AddDelimiterString
(
FullFileName
);
...
...
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