KiCad PCB EDA Suite
Loading...
Searching...
No Matches
printing.h
Go to the documentation of this file.
1/*
2* This program source code file is part of KiCad, a free EDA CAD application.
3*
4* Copyright The KiCad Developers, see AUTHORS.txt for contributors.
5*
6* This program is free software: you can redistribute it and/or modify it
7* under the terms of the GNU General Public License as published by the
8* Free Software Foundation, either version 3 of the License, or (at your
9* option) any later version.
10*
11* This program is distributed in the hope that it will be useful, but
12* WITHOUT ANY WARRANTY; without even the implied warranty of
13* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
14* General Public License for more details.
15*
16* You should have received a copy of the GNU General Public License
17* along with this program. If not, see <https://www.gnu.org/licenses/>.
18*/
19
20#ifndef KIPLATFORM_PRINTING_H_
21#define KIPLATFORM_PRINTING_H_
22
23#include <string>
24#include <wx/translation.h>
25
26class wxPrintData;
27
28#define PRINTING_TRACE "KICAD_PRINT"
29namespace KIPLATFORM
30{
31namespace PRINTING
32{
43
44 inline const wxString PrintResultToString( PRINT_RESULT aResult )
45 {
46 switch( aResult )
47 {
48 case PRINT_RESULT::OK: return _( "Success" );
49 case PRINT_RESULT::CANCELLED: return _( "Cancelled" );
50 case PRINT_RESULT::FILE_NOT_FOUND: return _( "File not found" );
51 case PRINT_RESULT::FAILED_TO_LOAD: return _( "Failed to load PDF" );
52 case PRINT_RESULT::FAILED_TO_PRINT:return _( "Failed to print" );
53 case PRINT_RESULT::UNSUPPORTED: return _( "Unsupported" );
54 default: return _( "Unknown error" );
55 }
56 }
57
58 PRINT_RESULT PrintPDF( const std::string& aFile );
59
68 void ResetPrintToFilePath( wxPrintData& aData );
69}
70} // namespace KIPLATFORM
71
72#endif // KIPLATFORM_PRINTING_H_
73
#define _(s)
const wxString PrintResultToString(PRINT_RESULT aResult)
Definition printing.h:44
void ResetPrintToFilePath(wxPrintData &aData)
Clear any leftover "print to file" destination from aData.
PRINT_RESULT PrintPDF(const std::string &aFile)