2014-10-22 15:51:34 +00:00
|
|
|
/*
|
|
|
|
* This program source code file is part of KiCad, a free EDA CAD application.
|
|
|
|
*
|
|
|
|
* Copyright (C) 2009-2014 Jerry Jacobs
|
2021-10-06 02:46:53 +00:00
|
|
|
* Copyright (C) 1992-2021 KiCad Developers, see AUTHORS.TXT for contributors.
|
2014-10-22 15:51:34 +00:00
|
|
|
*
|
|
|
|
* 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
|
|
|
|
*/
|
|
|
|
|
2021-09-19 13:45:27 +00:00
|
|
|
#ifndef GESTFICH_H
|
|
|
|
#define GESTFICH_H
|
2009-01-19 19:08:42 +00:00
|
|
|
|
2024-03-20 01:53:21 +00:00
|
|
|
#include <kicommon.h>
|
2009-04-05 20:49:15 +00:00
|
|
|
#include <wx/filename.h>
|
2013-01-18 10:42:23 +00:00
|
|
|
#include <wx/process.h>
|
2009-04-05 20:49:15 +00:00
|
|
|
|
2009-01-19 19:08:42 +00:00
|
|
|
|
2015-07-29 18:06:45 +00:00
|
|
|
/**
|
|
|
|
* @note Do we really need these defined?
|
|
|
|
*/
|
|
|
|
#define UNIX_STRING_DIR_SEP wxT( "/" )
|
|
|
|
#define WIN_STRING_DIR_SEP wxT( "\\" )
|
|
|
|
|
2009-02-04 15:25:03 +00:00
|
|
|
/* Forward class declarations. */
|
2011-09-06 19:42:46 +00:00
|
|
|
class EDA_LIST_DIALOG;
|
2009-02-04 15:25:03 +00:00
|
|
|
|
|
|
|
|
2010-11-12 16:59:16 +00:00
|
|
|
/**
|
2020-12-19 16:00:52 +00:00
|
|
|
* Run the PDF viewer and display a PDF file.
|
|
|
|
*
|
|
|
|
* @param file the PDF file to open.
|
|
|
|
* @return true is success or false if no PDF viewer found.
|
2009-01-19 19:08:42 +00:00
|
|
|
*/
|
2024-03-20 01:53:21 +00:00
|
|
|
KICOMMON_API bool OpenPDF( const wxString& file );
|
|
|
|
KICOMMON_API void OpenFile( const wxString& file );
|
2011-11-08 16:37:25 +00:00
|
|
|
|
2019-11-09 19:39:08 +00:00
|
|
|
/**
|
2020-12-19 16:00:52 +00:00
|
|
|
* @param aSrcPath is the full filename of the source.
|
2020-10-02 18:36:06 +00:00
|
|
|
* @param aDestPath is the full filename of the target
|
2019-11-10 08:37:39 +00:00
|
|
|
* @param aErrors a wxString to *append* any errors to
|
2019-11-09 19:39:08 +00:00
|
|
|
*/
|
2024-03-20 01:53:21 +00:00
|
|
|
KICOMMON_API void KiCopyFile( const wxString& aSrcPath, const wxString& aDestPath,
|
|
|
|
wxString& aErrors );
|
2019-11-09 19:39:08 +00:00
|
|
|
|
2011-11-08 16:37:25 +00:00
|
|
|
/**
|
2021-09-26 14:02:14 +00:00
|
|
|
* Call the executable file \a aEditorName with the parameter \a aFileName.
|
2024-02-29 19:01:59 +00:00
|
|
|
* @param aEditorName is the full filename for the binary.
|
|
|
|
* @param aFileName is the full filename of the file to open.
|
|
|
|
* @param aCallback a wxProcess* for the call.
|
|
|
|
* @param aFileForKicad a boolean to flag if aFileName runs with a KiCad binary.
|
|
|
|
* In this case aFileName is a shortname and FindKicadFile() is called to return the path.
|
|
|
|
* In the other case, aFileName is a full file name (passed prefixed with the path).
|
2011-11-08 16:37:25 +00:00
|
|
|
*/
|
2024-03-20 01:53:21 +00:00
|
|
|
KICOMMON_API int ExecuteFile( const wxString& aEditorName, const wxString& aFileName = wxEmptyString,
|
2024-02-29 19:01:59 +00:00
|
|
|
wxProcess* aCallback = nullptr, bool aFileForKicad = true );
|
2009-01-19 19:08:42 +00:00
|
|
|
|
2011-11-08 16:37:25 +00:00
|
|
|
/**
|
|
|
|
* Add un " to the start and the end of string (if not already done).
|
2020-12-19 16:00:52 +00:00
|
|
|
*
|
|
|
|
* @param string string to modify.
|
2011-11-08 16:37:25 +00:00
|
|
|
*/
|
2024-03-20 01:53:21 +00:00
|
|
|
KICOMMON_API void QuoteString( wxString& string );
|
2009-01-19 19:08:42 +00:00
|
|
|
|
2011-11-08 16:37:25 +00:00
|
|
|
/**
|
2020-12-19 16:00:52 +00:00
|
|
|
* Search the executable file shortname in KiCad binary path and return full file
|
2011-11-08 16:37:25 +00:00
|
|
|
* name if found or shortname if the kicad binary path is kicad/bin.
|
|
|
|
*
|
2020-12-19 16:00:52 +00:00
|
|
|
* The binary path is found from:
|
|
|
|
* - binary path.
|
|
|
|
* - KICAD environment variable.
|
|
|
|
* - c:\\kicad or /usr/local/kicad (the default).
|
|
|
|
* - default binary path.
|
2011-11-08 16:37:25 +00:00
|
|
|
*/
|
2024-03-20 01:53:21 +00:00
|
|
|
KICOMMON_API wxString FindKicadFile( const wxString& shortname );
|
2009-01-19 19:08:42 +00:00
|
|
|
|
2009-04-05 20:49:15 +00:00
|
|
|
/**
|
|
|
|
* Quote return value of wxFileName::GetFullPath().
|
|
|
|
*
|
2020-12-19 16:00:52 +00:00
|
|
|
* This allows file name paths with spaces to be used as parameters to ProcessExecute
|
|
|
|
* function calls.
|
|
|
|
*
|
|
|
|
* @param fn is the filename to wrap.
|
|
|
|
* @param format if provided, can be used to transform the nature of the wrapped filename
|
|
|
|
* to another platform.
|
2009-04-05 20:49:15 +00:00
|
|
|
*/
|
2024-03-20 01:53:21 +00:00
|
|
|
KICOMMON_API extern wxString QuoteFullPath( wxFileName& fn, wxPathFormat format = wxPATH_NATIVE );
|
2009-04-05 20:49:15 +00:00
|
|
|
|
2023-09-14 21:39:42 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Removes the directory \a aDirName and all its contents including
|
|
|
|
* subdirectories and their files
|
|
|
|
*/
|
2024-03-20 01:53:21 +00:00
|
|
|
KICOMMON_API bool RmDirRecursive( const wxString& aDirName, wxString* aErrors = nullptr );
|
2023-09-14 21:39:42 +00:00
|
|
|
|
2021-09-19 13:45:27 +00:00
|
|
|
#endif /* GESTFICH_H */
|