2023-09-24 12:53:34 -04:00
|
|
|
/*
|
|
|
|
* This program source code file is part of KiCad, a free EDA CAD application.
|
|
|
|
*
|
2025-01-01 13:30:11 -08:00
|
|
|
* Copyright The KiCad Developers, see AUTHORS.txt for contributors.
|
2023-09-24 12:53:34 -04: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 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/>.
|
|
|
|
*/
|
|
|
|
|
2025-01-31 21:59:29 +08:00
|
|
|
#pragma once
|
2023-09-24 12:53:34 -04:00
|
|
|
|
2025-01-31 21:59:29 +08:00
|
|
|
#include <wx/stream.h>
|
2023-09-24 12:53:34 -04:00
|
|
|
#include <wx/string.h>
|
|
|
|
|
2025-01-31 21:59:29 +08:00
|
|
|
#include <kicommon.h>
|
|
|
|
|
2023-09-24 12:53:34 -04:00
|
|
|
class OUTPUTFORMATTER;
|
2023-09-27 19:05:30 -04:00
|
|
|
class KIID;
|
2023-09-24 12:53:34 -04:00
|
|
|
|
|
|
|
namespace KICAD_FORMAT {
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Writes a boolean to the formatter, in the style (aKey [yes|no])
|
|
|
|
*
|
|
|
|
* @param aOut is the output formatter to write to
|
|
|
|
* @param aKey is the name of the boolean flag
|
|
|
|
* @param aValue is the value to write
|
|
|
|
*/
|
2024-11-27 18:12:53 +00:00
|
|
|
KICOMMON_API void FormatBool( OUTPUTFORMATTER* aOut, const wxString& aKey, bool aValue );
|
2023-09-24 12:53:34 -04:00
|
|
|
|
2024-11-27 18:12:53 +00:00
|
|
|
KICOMMON_API void FormatUuid( OUTPUTFORMATTER* aOut, const KIID& aUuid );
|
2023-09-24 14:58:19 -04:00
|
|
|
|
2025-01-31 21:59:29 +08:00
|
|
|
/**
|
|
|
|
* Write binary data to the formatter as base 64 encoded string.
|
|
|
|
*/
|
|
|
|
KICOMMON_API void FormatStreamData( OUTPUTFORMATTER& aOut, const wxStreamBuffer& aStream );
|
|
|
|
|
2024-11-27 18:12:53 +00:00
|
|
|
KICOMMON_API void Prettify( std::string& aSource, bool aCompactSave );
|
2023-09-27 19:05:30 -04:00
|
|
|
|
2023-09-24 12:53:34 -04:00
|
|
|
} // namespace KICAD_FORMAT
|