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 along
17* with this program. If not, see <http://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
26#define PRINTING_TRACE "KICAD_PRINT"
27namespace KIPLATFORM
28{
29namespace PRINTING
30{
41
42 inline const wxString PrintResultToString( PRINT_RESULT aResult )
43 {
44 switch( aResult )
45 {
46 case PRINT_RESULT::OK: return _( "Success" );
47 case PRINT_RESULT::CANCELLED: return _( "Cancelled" );
48 case PRINT_RESULT::FILE_NOT_FOUND: return _( "File not found" );
49 case PRINT_RESULT::FAILED_TO_LOAD: return _( "Failed to load PDF" );
50 case PRINT_RESULT::FAILED_TO_PRINT:return _( "Failed to print" );
51 case PRINT_RESULT::UNSUPPORTED: return _( "Unsupported" );
52 default: return _( "Unknown error" );
53 }
54 }
55
56 PRINT_RESULT PrintPDF( const std::string& aFile );
57}
58} // namespace KIPLATFORM
59
60#endif // KIPLATFORM_PRINTING_H_
61
#define _(s)
const wxString PrintResultToString(PRINT_RESULT aResult)
Definition printing.h:42
PRINT_RESULT PrintPDF(const std::string &aFile)