2023-04-22 20:17:08 +00:00
|
|
|
/*
|
|
|
|
* This program source code file is part of KiCad, a free EDA CAD application.
|
|
|
|
*
|
|
|
|
* Copyright (C) 2022 Chetan Subhash Shinde<chetanshinde2001@gmail.com>
|
|
|
|
* Copyright (C) 2023 CERN
|
|
|
|
* Copyright (C) 2022-2023 KiCad Developers, see AUTHORS.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 3 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, see <http://www.gnu.org/licenses/>.
|
|
|
|
*/
|
|
|
|
|
2023-12-24 00:31:24 +00:00
|
|
|
#ifndef SCH_IO_LTSPICE_H_
|
|
|
|
#define SCH_IO_LTSPICE_H_
|
2023-04-22 20:17:08 +00:00
|
|
|
|
2023-12-19 17:39:26 +00:00
|
|
|
#include <sch_io/sch_io.h>
|
|
|
|
#include <sch_io/sch_io_mgr.h>
|
2023-04-22 20:17:08 +00:00
|
|
|
#include <reporter.h>
|
|
|
|
#include <wx/log.h>
|
|
|
|
|
|
|
|
|
|
|
|
class SCH_SHEET;
|
|
|
|
class SCH_SCREEN;
|
|
|
|
|
|
|
|
|
2023-12-24 00:31:24 +00:00
|
|
|
class SCH_IO_LTSPICE : public SCH_IO
|
2023-04-22 20:17:08 +00:00
|
|
|
{
|
|
|
|
public:
|
2023-12-24 04:31:22 +00:00
|
|
|
SCH_IO_LTSPICE() : SCH_IO( wxS( "LTspice Schematic" ) )
|
2023-04-22 20:17:08 +00:00
|
|
|
{
|
|
|
|
m_reporter = &WXLOG_REPORTER::GetInstance();
|
|
|
|
}
|
|
|
|
|
2023-12-24 00:31:24 +00:00
|
|
|
~SCH_IO_LTSPICE()
|
2023-04-22 20:17:08 +00:00
|
|
|
{
|
|
|
|
}
|
|
|
|
|
2023-12-27 16:34:59 +00:00
|
|
|
const IO_BASE::IO_FILE_DESC GetSchematicFileDesc() const override
|
2023-08-26 19:28:53 +00:00
|
|
|
{
|
2023-12-27 16:34:59 +00:00
|
|
|
return IO_BASE::IO_FILE_DESC( _HKI( "LTspice schematic files" ), { "asc" } );
|
2023-08-26 19:28:53 +00:00
|
|
|
}
|
2023-04-22 20:17:08 +00:00
|
|
|
|
2023-12-27 16:34:59 +00:00
|
|
|
const IO_BASE::IO_FILE_DESC GetLibraryDesc() const override
|
2023-08-26 19:28:53 +00:00
|
|
|
{
|
2023-12-27 16:34:59 +00:00
|
|
|
// This was originally commented out, so keep it commented and just return an empty library description
|
|
|
|
//return IO_BASE::IO_FILE_DESC( _HKI( "LTspice library files" ), { "lib" } );
|
|
|
|
return IO_BASE::IO_FILE_DESC( wxEmptyString, { } );
|
|
|
|
}
|
2023-04-22 20:17:08 +00:00
|
|
|
|
|
|
|
int GetModifyHash() const override;
|
|
|
|
|
2023-08-26 19:28:53 +00:00
|
|
|
SCH_SHEET* LoadSchematicFile( const wxString& aFileName, SCHEMATIC* aSchematic,
|
|
|
|
SCH_SHEET* aAppendToMe = nullptr,
|
|
|
|
const STRING_UTF8_MAP* aProperties = nullptr ) override;
|
2023-04-22 20:17:08 +00:00
|
|
|
|
|
|
|
};
|
2023-12-24 00:31:24 +00:00
|
|
|
#endif // SCH_IO_LTSPICE_H_
|