From 039ac92480a09266146fc5b0c9ec67a32a2565ad Mon Sep 17 00:00:00 2001
From: saurabhb17
Date: Wed, 26 Feb 2020 16:04:40 +0530
Subject: Added secondary files

---
 kicad/class_treeproject_item.cpp | 262 +++++++++++++++++++++++++++++++++++++++
 1 file changed, 262 insertions(+)
 create mode 100644 kicad/class_treeproject_item.cpp

(limited to 'kicad/class_treeproject_item.cpp')

diff --git a/kicad/class_treeproject_item.cpp b/kicad/class_treeproject_item.cpp
new file mode 100644
index 0000000..56c5709
--- /dev/null
+++ b/kicad/class_treeproject_item.cpp
@@ -0,0 +1,262 @@
+/**
+ * @file class_treeproject_item.cpp
+ *
+ * @brief Class TREEPROJECT_ITEM is a derived  class from wxTreeItemData and
+ * store info about a file or directory shown in the KiCad tree project files
+ */
+
+/*
+ * This program source code file is part of KiCad, a free EDA CAD application.
+ *
+ * Copyright (C) 1992-2012 KiCad Developers, see change_log.txt for contributors.
+ *
+ * This program is free software; you can redistribute it and/or
+ * modify it under the terms of the GNU General Public License
+ * as published by the Free Software Foundation; either version 2
+ * of the License, or (at your option) any later version.
+ *
+ * This program is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+ * GNU General Public License for more details.
+ *
+ * You should have received a copy of the GNU General Public License
+ * along with this program; if not, you may find one here:
+ * http://www.gnu.org/licenses/old-licenses/gpl-2.0.html
+ * or you may search the http://www.gnu.org website for the version 2 license,
+ * or you may write to the Free Software Foundation, Inc.,
+ * 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301, USA
+ */
+
+
+#include <fctsys.h>
+#include <gestfich.h>
+#include <macros.h>
+
+#include <kicad.h>
+#include <project.h>
+#include <pgm_base.h>
+#include <tree_project_frame.h>
+#include <class_treeprojectfiles.h>
+#include <class_treeproject_item.h>
+#include <wx/imaglist.h>
+
+#include <wx/regex.h>
+#include <wx/dir.h>
+
+TREEPROJECT_ITEM::TREEPROJECT_ITEM( enum TreeFileType type, const wxString& data,
+                                    wxTreeCtrl* parent ) :
+    wxTreeItemData()
+{
+    m_parent = parent;
+    SetType( type );
+    SetFileName( data );
+    SetRootFile( false );    // true only for the root item of the tree (the project name)
+    SetPopulated( false );
+    m_state = 0;
+}
+
+
+void TREEPROJECT_ITEM::SetState( int state )
+{
+    wxImageList* imglist = m_parent->GetImageList();
+
+    if( !imglist || state < 0 || state >= imglist->GetImageCount() / ( TREE_MAX - 2 ) )
+        return;
+
+    m_state = state;
+    int imgid = m_Type - 1 + state * ( TREE_MAX - 1 );
+    m_parent->SetItemImage( GetId(), imgid );
+    m_parent->SetItemImage( GetId(), imgid, wxTreeItemIcon_Selected );
+}
+
+
+const wxString TREEPROJECT_ITEM::GetDir() const
+{
+    if( TREE_DIRECTORY == m_Type )
+        return GetFileName();
+
+    return wxFileName( GetFileName() ).GetPath();
+}
+
+
+bool TREEPROJECT_ITEM::Rename( const wxString& name, bool check )
+{
+    // this is broken & unsafe to use on linux.
+    if( m_Type == TREE_DIRECTORY )
+        return false;
+
+    if( name.IsEmpty() )
+        return false;
+
+    const wxString  sep = wxFileName().GetPathSeparator();
+    wxString        newFile;
+    wxString        dirs = GetDir();
+
+    if( !dirs.IsEmpty() && GetType() != TREE_DIRECTORY )
+        newFile = dirs + sep + name;
+    else
+        newFile = name;
+
+    if( newFile == GetFileName() )
+        return false;
+
+    wxString    ext = TREE_PROJECT_FRAME::GetFileExt( GetType() );
+
+    wxRegEx     reg( wxT( "^.*\\" ) + ext + wxT( "$" ), wxRE_ICASE );
+
+    if( check && !ext.IsEmpty() && !reg.Matches( newFile ) )
+    {
+        wxMessageDialog dialog( m_parent, _(
+            "Changing file extension will change file type.\n Do you want to continue ?" ),
+            _( "Rename File" ),
+            wxYES_NO | wxICON_QUESTION );
+
+        if( wxID_YES != dialog.ShowModal() )
+            return false;
+    }
+
+    if( !wxRenameFile( GetFileName(), newFile, false ) )
+    {
+        wxMessageDialog( m_parent, _( "Unable to rename file ... " ),
+                         _( "Permission error ?" ), wxICON_ERROR | wxOK );
+        return false;
+    }
+
+    SetFileName( newFile );
+
+    return true;
+}
+
+
+bool TREEPROJECT_ITEM::Delete( bool check )
+{
+    wxString    msg = wxString::Format( _(
+                    "Do you really want to delete '%s'" ),
+                    GetChars( GetFileName() )
+                    );
+
+    wxMessageDialog dialog( m_parent, msg,
+                            _( "Delete File" ), wxYES_NO | wxICON_QUESTION );
+
+    if( !check || wxID_YES == dialog.ShowModal() )
+    {
+        bool success;
+
+        if( !wxDirExists( GetFileName() ) )
+            success = wxRemoveFile( GetFileName() );
+        else
+        {
+            wxArrayString filelist;
+
+            wxDir::GetAllFiles( GetFileName(), &filelist );
+
+            for( unsigned int i = 0; i < filelist.Count(); i++ )
+                wxRemoveFile( filelist[i] );
+
+            success = wxRmdir( GetFileName() );
+        }
+
+        if( success )
+            m_parent->Delete( GetId() );
+
+        return success;
+    }
+
+    return false;
+}
+
+
+void TREEPROJECT_ITEM::Activate( TREE_PROJECT_FRAME* prjframe )
+{
+    wxString        sep = wxFileName().GetPathSeparator();
+    wxString        fullFileName = GetFileName();
+    wxTreeItemId    id = GetId();
+
+    KICAD_MANAGER_FRAME* frame = prjframe->m_Parent;
+    wxASSERT( frame );
+
+    switch( GetType() )
+    {
+    case TREE_PROJECT:
+        break;
+
+    case TREE_DIRECTORY:
+        m_parent->Toggle( id );
+        break;
+
+    case TREE_SCHEMA:
+        if( fullFileName == frame->SchFileName() )
+        {
+            // the project's schematic is opened using the *.kiface as part of this process.
+            // We do not call frame->RunEeschema( fullFileName ),
+            // because after the double click, for some reason,
+            // the tree project frame is brought to the foreground after Eeschema is called from here.
+            // Instead, we post an event, equivalent to click on the eeschema tool in command frame
+            wxCommandEvent evt( wxEVT_COMMAND_TOOL_CLICKED, ID_TO_SCH );
+            wxPostEvent( frame, evt );
+        }
+        else
+        {
+            // schematics not part of the project are opened in a separate process.
+            frame->Execute( m_parent, EESCHEMA_EXE, fullFileName );
+        }
+        break;
+
+    case TREE_LEGACY_PCB:
+    case TREE_SEXP_PCB:
+        if( fullFileName == frame->PcbFileName() || fullFileName == frame->PcbLegacyFileName() )
+        {
+            // the project's BOARD is opened using the *.kiface as part of this process.
+            // We do not call frame->RunPcbNew( fullFileName ),
+            // because after the double click, for some reason,
+            // the tree project frame is brought to the foreground after PcbNew is called from here.
+            // Instead, we post an event, equivalent to simple click on the pcb editor tool in command frame
+            wxCommandEvent evt( wxEVT_COMMAND_TOOL_CLICKED, ID_TO_PCB );
+            wxPostEvent( frame, evt );
+        }
+        else
+        {
+            // boards not part of the project are opened in a separate process.
+            frame->Execute( m_parent, PCBNEW_EXE, fullFileName );
+        }
+        break;
+
+    case TREE_GERBER:
+        frame->Execute( m_parent, GERBVIEW_EXE, fullFileName );
+        break;
+
+    case TREE_HTML:
+        wxLaunchDefaultBrowser( fullFileName );
+        break;
+
+    case TREE_PDF:
+        OpenPDF( fullFileName );
+        break;
+
+/*  No, use a text editor.  Netlists can only be handled sanely now from within
+    eeschema's launcher for the *.kiface, NOT THE EXE which is now gone.
+    case TREE_NET:
+        frame->Execute( m_parent, CVPCB_EXE, fullFileName );
+        break;
+*/
+
+    case TREE_TXT:
+        {
+            wxString editorname = Pgm().GetEditorName();
+
+            if( !editorname.IsEmpty() )
+                frame->Execute( m_parent, editorname, fullFileName );
+        }
+        break;
+
+    case TREE_PAGE_LAYOUT_DESCR:
+        frame->Execute( m_parent, PL_EDITOR_EXE, fullFileName );
+        break;
+
+    default:
+        AddDelimiterString( fullFileName );
+        OpenFile( fullFileName );
+        break;
+    }
+}
-- 
cgit