KiCad PCB EDA Suite
Loading...
Searching...
No Matches
pcbnew_jobs_handler.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 (C) 2022 Mark Roszko <[email protected]>
5 * Copyright (C) 1992-2024 KiCad Developers, see AUTHORS.txt for contributors.
6 *
7 * This program is free software: you can redistribute it and/or modify it
8 * under the terms of the GNU General Public License as published by the
9 * Free Software Foundation, either version 3 of the License, or (at your
10 * option) any later version.
11 *
12 * This program is distributed in the hope that it will be useful, but
13 * WITHOUT ANY WARRANTY; without even the implied warranty of
14 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
15 * General Public License for more details.
16 *
17 * You should have received a copy of the GNU General Public License along
18 * with this program. If not, see <http://www.gnu.org/licenses/>.
19 */
20
21#ifndef PCBNEW_JOBS_HANDLER_H
22#define PCBNEW_JOBS_HANDLER_H
23
24#include <jobs/job_dispatcher.h>
25#include <pcb_plot_params.h>
26
27class KIWAY;
28class BOARD;
30class FOOTPRINT;
33
35{
36public:
37 PCBNEW_JOBS_HANDLER( KIWAY* aKiway );
38 int JobExportStep( JOB* aJob );
39 int JobExportRender( JOB* aJob );
40 int JobExportSvg( JOB* aJob );
41 int JobExportDxf( JOB* aJob );
42 int JobExportPdf( JOB* aJob );
43 int JobExportGerber( JOB* aJob );
44 int JobExportGerbers( JOB* aJob );
45 int JobExportDrill( JOB* aJob );
46 int JobExportPos( JOB* aJob );
47 int JobExportFpUpgrade( JOB* aJob );
48 int JobExportFpSvg( JOB* aJob );
49 int JobExportDrc( JOB* aJob );
50 int JobExportIpc2581( JOB* aJob );
51
52private:
55 int doFpExportSvg( JOB_FP_EXPORT_SVG* aSvgJob, const FOOTPRINT* aFootprint );
56 void loadOverrideDrawingSheet( BOARD* brd, const wxString& aSheetPath );
57
59};
60
61#endif
Information pertinent to a Pcbnew printed circuit board.
Definition: board.h:281
An simple container class that lets us dispatch output jobs to kifaces.
Definition: job.h:32
A minimalistic software bus for communications between various DLLs/DSOs (DSOs) within the same KiCad...
Definition: kiway.h:279
void populateGerberPlotOptionsFromJob(PCB_PLOT_PARAMS &aPlotOpts, JOB_EXPORT_PCB_GERBER *aJob)
int JobExportFpUpgrade(JOB *aJob)
int JobExportGerber(JOB *aJob)
DS_PROXY_VIEW_ITEM * getDrawingSheetProxyView(BOARD *aBrd)
void loadOverrideDrawingSheet(BOARD *brd, const wxString &aSheetPath)
int JobExportGerbers(JOB *aJob)
int JobExportRender(JOB *aJob)
int doFpExportSvg(JOB_FP_EXPORT_SVG *aSvgJob, const FOOTPRINT *aFootprint)
Parameters and options when plotting/printing a board.