2012-02-16 20:03:33 +00:00
|
|
|
/*
|
|
|
|
* This program source code file is part of KiCad, a free EDA CAD application.
|
|
|
|
*
|
2013-02-02 17:39:59 +00:00
|
|
|
* Copyright (C) 2013 Jean-Pierre Charras, jp.charras at wanadoo.fr
|
2012-02-16 20:03:33 +00:00
|
|
|
* Copyright (C) 2007-2012 SoftPLC Corporation, Dick Hollenbeck <dick@softplc.com>
|
|
|
|
* Copyright (C) 2008-2012 Wayne Stambaugh <stambaughw@verizon.net>
|
2013-02-02 17:39:59 +00:00
|
|
|
* Copyright (C) 1992-2013 KiCad Developers, see AUTHORS.txt for contributors.
|
2012-02-16 20:03:33 +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
|
|
|
|
*/
|
|
|
|
|
|
|
|
/**
|
|
|
|
* The common library
|
|
|
|
* @file wildcards_and_files_ext.h
|
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef INCLUDE_WILDCARDS_AND_FILES_EXT_H_
|
|
|
|
#define INCLUDE_WILDCARDS_AND_FILES_EXT_H_
|
|
|
|
|
|
|
|
#include <wx/wx.h>
|
|
|
|
|
|
|
|
/**
|
|
|
|
* File extension definitions. Please do not changes these. If a different
|
|
|
|
* file extension is needed, create a new definition in the application.
|
|
|
|
* Please note, just because they are defined as const doesn't guarantee
|
|
|
|
* that they cannot be changed.
|
|
|
|
* Mainly wild cards are most of time translated when displayed
|
|
|
|
*/
|
2012-09-28 17:47:41 +00:00
|
|
|
|
|
|
|
extern const wxString SchematicSymbolFileExtension;
|
|
|
|
extern const wxString SchematicLibraryFileExtension;
|
|
|
|
extern const wxString SchematicBackupFileExtension;
|
|
|
|
|
2012-03-08 17:47:23 +00:00
|
|
|
extern const wxString VrmlFileExtension;
|
2012-02-16 20:03:33 +00:00
|
|
|
extern const wxString ProjectFileExtension;
|
|
|
|
extern const wxString SchematicFileExtension;
|
|
|
|
extern const wxString NetlistFileExtension;
|
|
|
|
extern const wxString GerberFileExtension;
|
2015-06-24 19:30:35 +00:00
|
|
|
extern const wxString HtmlFileExtension;
|
2012-12-14 16:54:54 +00:00
|
|
|
|
|
|
|
extern const wxString LegacyPcbFileExtension;
|
|
|
|
extern const wxString KiCadPcbFileExtension;
|
|
|
|
#define PcbFileExtension KiCadPcbFileExtension // symlink choice
|
2013-07-19 18:27:22 +00:00
|
|
|
extern const wxString PageLayoutDescrFileExtension;
|
2012-12-14 16:54:54 +00:00
|
|
|
|
2012-11-19 16:19:38 +00:00
|
|
|
extern const wxString LegacyFootprintLibPathExtension;
|
2012-02-16 20:03:33 +00:00
|
|
|
extern const wxString PdfFileExtension;
|
|
|
|
extern const wxString MacrosFileExtension;
|
|
|
|
extern const wxString ComponentFileExtension;
|
|
|
|
extern const wxString DrillFileExtension;
|
2012-08-29 12:40:09 +00:00
|
|
|
extern const wxString SVGFileExtension;
|
2012-02-16 20:03:33 +00:00
|
|
|
extern const wxString ReportFileExtension;
|
|
|
|
extern const wxString FootprintPlaceFileExtension;
|
2012-11-19 16:19:38 +00:00
|
|
|
extern const wxString KiCadFootprintFileExtension;
|
|
|
|
extern const wxString KiCadFootprintLibPathExtension;
|
2012-12-28 20:52:12 +00:00
|
|
|
extern const wxString GedaPcbFootprintLibFileExtension;
|
2013-01-03 16:33:22 +00:00
|
|
|
extern const wxString EagleFootprintLibPathExtension;
|
2013-02-02 17:39:59 +00:00
|
|
|
extern const wxString ComponentFileExtensionWildcard;
|
2013-07-19 18:27:22 +00:00
|
|
|
extern const wxString PageLayoutDescrFileWildcard;
|
2015-04-09 18:53:36 +00:00
|
|
|
extern const wxString KiCadLib3DShapesPathExtension;
|
2012-02-16 20:03:33 +00:00
|
|
|
|
|
|
|
/// Proper wxFileDialog wild card definitions.
|
2012-09-28 17:47:41 +00:00
|
|
|
extern const wxString SchematicSymbolFileWildcard;
|
|
|
|
extern const wxString SchematicLibraryFileWildcard;
|
2012-02-16 20:03:33 +00:00
|
|
|
extern const wxString ProjectFileWildcard;
|
|
|
|
extern const wxString SchematicFileWildcard;
|
|
|
|
extern const wxString BoardFileWildcard;
|
|
|
|
extern const wxString NetlistFileWildcard;
|
|
|
|
extern const wxString GerberFileWildcard;
|
2015-06-24 19:30:35 +00:00
|
|
|
extern const wxString HtmlFileWildcard;
|
2012-04-07 18:05:56 +00:00
|
|
|
extern const wxString LegacyPcbFileWildcard;
|
2012-02-16 20:03:33 +00:00
|
|
|
extern const wxString PcbFileWildcard;
|
2012-05-29 21:01:17 +00:00
|
|
|
extern const wxString EaglePcbFileWildcard;
|
2012-12-29 09:54:25 +00:00
|
|
|
extern const wxString PCadPcbFileWildcard;
|
2012-02-16 20:03:33 +00:00
|
|
|
extern const wxString PdfFileWildcard;
|
2012-10-13 18:54:33 +00:00
|
|
|
extern const wxString PSFileWildcard;
|
2012-02-16 20:03:33 +00:00
|
|
|
extern const wxString MacrosFileWildcard;
|
|
|
|
extern const wxString AllFilesWildcard;
|
|
|
|
extern const wxString ComponentFileWildcard;
|
|
|
|
extern const wxString DrillFileWildcard;
|
2012-08-29 12:40:09 +00:00
|
|
|
extern const wxString SVGFileWildcard;
|
2012-02-16 20:03:33 +00:00
|
|
|
extern const wxString ReportFileWildcard;
|
|
|
|
extern const wxString FootprintPlaceFileWildcard;
|
2013-03-27 18:34:23 +00:00
|
|
|
extern const wxString Shapes3DFileWildcard;
|
2014-01-25 12:23:29 +00:00
|
|
|
extern const wxString IDF3DFileWildcard;
|
2012-03-08 17:47:23 +00:00
|
|
|
extern const wxString DocModulesFileName;
|
2012-11-19 16:19:38 +00:00
|
|
|
extern const wxString LegacyFootprintLibPathWildcard;
|
|
|
|
extern const wxString KiCadFootprintLibFileWildcard;
|
|
|
|
extern const wxString KiCadFootprintLibPathWildcard;
|
2012-12-28 20:52:12 +00:00
|
|
|
extern const wxString GedaPcbFootprintLibFileWildcard;
|
2013-01-03 16:33:22 +00:00
|
|
|
extern const wxString EagleFootprintLibPathWildcard;
|
2013-04-25 16:29:35 +00:00
|
|
|
extern const wxString TextWildcard;
|
2013-01-03 16:33:22 +00:00
|
|
|
|
2012-02-16 20:03:33 +00:00
|
|
|
|
|
|
|
#endif // INCLUDE_WILDCARDS_AND_FILES_EXT_H_
|