Browse Source

rename plot_common.h to class_plotter.h, a better name, consistent with other class definitions.

pull/5/merge
jean-pierre charras 8 years ago
parent
commit
bdc6a5950b
  1. 8
      common/basic_gal.cpp
  2. 6
      common/class_bitmap_base.cpp
  3. 2
      common/class_plotter.cpp
  4. 4
      common/common_plotDXF_functions.cpp
  5. 2
      common/common_plotGERBER_functions.cpp
  6. 6
      common/common_plotHPGL_functions.cpp
  7. 2
      common/common_plotPDF_functions.cpp
  8. 6
      common/common_plotPS_functions.cpp
  9. 2
      common/common_plotSVG_functions.cpp
  10. 4
      common/common_plot_functions.cpp
  11. 6
      common/drawtxt.cpp
  12. 2
      eeschema/class_libentry.cpp
  13. 3
      eeschema/dialogs/dialog_plot_schematic.cpp
  14. 8
      eeschema/dialogs/dialog_plot_schematic.h
  15. 6
      eeschema/lib_arc.cpp
  16. 4
      eeschema/lib_bezier.cpp
  17. 6
      eeschema/lib_circle.cpp
  18. 2
      eeschema/lib_field.cpp
  19. 2
      eeschema/lib_pin.cpp
  20. 6
      eeschema/lib_polyline.cpp
  21. 6
      eeschema/lib_rectangle.cpp
  22. 4
      eeschema/lib_text.cpp
  23. 4
      eeschema/plot_schematic_DXF.cpp
  24. 6
      eeschema/plot_schematic_HPGL.cpp
  25. 6
      eeschema/plot_schematic_PDF.cpp
  26. 2
      eeschema/plot_schematic_PS.cpp
  27. 6
      eeschema/sch_bus_entry.cpp
  28. 2
      eeschema/sch_component.cpp
  29. 4
      eeschema/sch_field.cpp
  30. 6
      eeschema/sch_junction.cpp
  31. 6
      eeschema/sch_line.cpp
  32. 4
      eeschema/sch_no_connect.cpp
  33. 2
      eeschema/sch_screen.cpp
  34. 2
      eeschema/sch_sheet.cpp
  35. 2
      eeschema/sch_sheet_pin.cpp
  36. 2
      eeschema/sch_text.cpp
  37. 0
      include/class_plotter.h
  38. 2
      pcbnew/class_module.cpp
  39. 2
      pcbnew/dialogs/dialog_plot.cpp
  40. 4
      pcbnew/exporters/gen_drill_report_files.cpp
  41. 4
      pcbnew/exporters/gendrill_Excellon_writer.cpp
  42. 4
      pcbnew/exporters/gendrill_gerber_writer.cpp
  43. 4
      pcbnew/exporters/gerber_jobfile_writer.cpp
  44. 5
      pcbnew/pcb_plot_params.cpp
  45. 2
      pcbnew/pcb_plot_params.h
  46. 2
      pcbnew/pcbnew_config.cpp
  47. 2
      pcbnew/pcbplot.cpp
  48. 2
      pcbnew/plot_board_layers.cpp
  49. 2
      pcbnew/plot_brditems_plotter.cpp

8
common/basic_gal.cpp

@ -1,8 +1,8 @@
/*
* This program source code file is part of KiCad, a free EDA CAD application.
*
* Copyright (C) 2016 Jean-Pierre Charras, jp.charras at wanadoo.fr
* Copyright (C) 1992-2016 KiCad Developers, see AUTHORS.txt for contributors.
* Copyright (C) 2017 Jean-Pierre Charras, jp.charras at wanadoo.fr
* Copyright (C) 1992-2017 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
@ -24,7 +24,7 @@
/**
* @brief Implement a very basic GAL used to draw, plot and convert texts in segments
* for DRC funstions, using the common GAL functions.
* for DRC functions, using the common GAL functions.
* Draw functions use wxDC.
* Plot functions use a PLOTTER
* Convert texts in segments use a callback function created by the caller
@ -32,7 +32,7 @@
*/
#include <gr_basic.h>
#include <plot_common.h>
#include <class_plotter.h>
#include <trigo.h>
#include <basic_gal.h>

6
common/class_bitmap_base.cpp

@ -5,8 +5,8 @@
/*
* This program source code file is part of KiCad, a free EDA CAD application.
*
* Copyright (C) 2011 jean-pierre.charras
* Copyright (C) 2011-2016 KiCad Developers, see change_log.txt for contributors.
* Copyright (C) 2017 jean-pierre.charras
* Copyright (C) 2011-2017 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
@ -33,7 +33,7 @@
#include "trigo.h"
#include "common.h"
#include "richio.h"
#include "plot_common.h"
#include "class_plotter.h"
#include "class_bitmap_base.h"

2
common/class_plotter.cpp

@ -43,7 +43,7 @@
#include <wxstruct.h>
#include <base_struct.h>
#include <common.h>
#include <plot_common.h>
#include <class_plotter.h>
#include <macros.h>
#include <class_base_screen.h>
#include <drawtxt.h>

4
common/common_plotDXF_functions.cpp

@ -5,7 +5,7 @@
/*
* This program source code file is part of KiCad, a free EDA CAD application.
*
* Copyright (C) 2016 KiCad Developers, see CHANGELOG.TXT for contributors.
* Copyright (C) 2017 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
@ -31,7 +31,7 @@
#include <trigo.h>
#include <wxstruct.h>
#include <base_struct.h>
#include <plot_common.h>
#include <class_plotter.h>
#include <macros.h>
#include <kicad_string.h>
#include <convert_basic_shapes_to_polygon.h>

2
common/common_plotGERBER_functions.cpp

@ -33,7 +33,7 @@
#include <wxstruct.h>
#include <base_struct.h>
#include <common.h>
#include <plot_common.h>
#include <class_plotter.h>
#include <macros.h>
#include <kicad_string.h>
#include <convert_basic_shapes_to_polygon.h>

6
common/common_plotHPGL_functions.cpp

@ -1,8 +1,8 @@
/*
* This program source code file is part of KiCad, a free EDA CAD application.
*
* Copyright (C) 2016 Jean-Pierre Charras, jp.charras at wanadoo.fr
* Copyright (C) 2016 KiCad Developers, see CHANGELOG.TXT for contributors.
* Copyright (C) 2017 Jean-Pierre Charras, jp.charras at wanadoo.fr
* Copyright (C) 2017 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
@ -199,7 +199,7 @@
#include <trigo.h>
#include <wxstruct.h>
#include <base_struct.h>
#include <plot_common.h>
#include <class_plotter.h>
#include <macros.h>
#include <kicad_string.h>
#include <convert_basic_shapes_to_polygon.h>

2
common/common_plotPDF_functions.cpp

@ -33,7 +33,7 @@
#include <wxstruct.h>
#include <base_struct.h>
#include <common.h>
#include <plot_common.h>
#include <class_plotter.h>
#include <macros.h>
#include <kicad_string.h>
#include <wx/zstream.h>

6
common/common_plotPS_functions.cpp

@ -1,8 +1,8 @@
/*
* This program source code file is part of KiCad, a free EDA CAD application.
*
* Copyright (C) 2016 Jean-Pierre Charras, jp.charras at wanadoo.fr
* Copyright (C) 2016 KiCad Developers, see CHANGELOG.TXT for contributors.
* Copyright (C) 2017 Jean-Pierre Charras, jp.charras at wanadoo.fr
* Copyright (C) 2017 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
@ -32,7 +32,7 @@
#include <wxstruct.h>
#include <base_struct.h>
#include <common.h>
#include <plot_common.h>
#include <class_plotter.h>
#include <macros.h>
#include <kicad_string.h>
#include <convert_basic_shapes_to_polygon.h>

2
common/common_plotSVG_functions.cpp

@ -96,7 +96,7 @@
#include <class_eda_rect.h>
#include <base_struct.h>
#include <common.h>
#include <plot_common.h>
#include <class_plotter.h>
#include <macros.h>
#include <kicad_string.h>

4
common/common_plot_functions.cpp

@ -6,7 +6,7 @@
/*
* This program source code file is part of KiCad, a free EDA CAD application.
*
* Copyright (C) 1992-2013 KiCad Developers, see change_log.txt for contributors.
* Copyright (C) 1992-2017 KiCad Developers, see AUTHORS.txt for contributors.
*
*
* This program is free software; you can redistribute it and/or
@ -29,7 +29,7 @@
#include <fctsys.h>
#include <base_struct.h>
#include <plot_common.h>
#include <class_plotter.h>
#include <worksheet.h>
#include <class_base_screen.h>
#include <drawtxt.h>

6
common/drawtxt.cpp

@ -6,10 +6,10 @@
/*
* This program source code file is part of KiCad, a free EDA CAD application.
*
* Copyright (C) 2016 Jean-Pierre Charras, jp.charras at wanadoo.fr
* Copyright (C) 2017 Jean-Pierre Charras, jp.charras at wanadoo.fr
* Copyright (C) 2012 SoftPLC Corporation, Dick Hollenbeck <dick@softplc.com>
* Copyright (C) 2012 Wayne Stambaugh <stambaughw@verizon.net>
* Copyright (C) 1992-2016 KiCad Developers, see AUTHORS.txt for contributors.
* Copyright (C) 1992-2017 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
@ -32,7 +32,7 @@
#include <fctsys.h>
#include <gr_basic.h>
#include <common.h>
#include <plot_common.h>
#include <class_plotter.h>
#include <eda_text.h> // EDA_TEXT_HJUSTIFY_T and EDA_TEXT_VJUSTIFY_T
#include <trigo.h>
#include <macros.h>

2
eeschema/class_libentry.cpp

@ -31,7 +31,7 @@
#include <macros.h>
#include <kicad_string.h>
#include <class_drawpanel.h>
#include <plot_common.h>
#include <class_plotter.h>
#include <gr_basic.h>
#include <class_sch_screen.h>
#include <richio.h>

3
eeschema/dialogs/dialog_plot_schematic.cpp

@ -8,7 +8,7 @@
* Copyright (C) 1992-2010 Lorenzo Marcantonio
* Copyright (C) 2011 Wayne Stambaugh <stambaughw@gmail.com>
*
* Copyright (C) 1992-2017 KiCad Developers, see change_log.txt for contributors.
* Copyright (C) 1992-2017 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
@ -32,7 +32,6 @@
#include <pgm_base.h>
#include <kiface_i.h>
#include <worksheet.h>
#include <plot_common.h>
#include <class_sch_screen.h>
#include <schframe.h>
#include <base_units.h>

8
eeschema/dialogs/dialog_plot_schematic.h

@ -1,14 +1,14 @@
/** @file dialog_plot_schematic.cpp
/** @file dialog_plot_schematic.h
*/
/*
* This program source code file is part of KiCad, a free EDA CAD application.
*
* Copyright (C) 1992-2014 Jean-Pierre Charras <jp.charras at wanadoo.fr
* Copyright (C) 1992-2017 Jean-Pierre Charras <jp.charras at wanadoo.fr
* Copyright (C) 1992-2010 Lorenzo Marcantonio
* Copyright (C) 2011 Wayne Stambaugh <stambaughw@verizon.net>
*
* Copyright (C) 1992-2012 KiCad Developers, see change_log.txt for contributors.
* Copyright (C) 1992-2017 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
@ -29,7 +29,7 @@
*/
#include <fctsys.h>
#include <plot_common.h>
#include <class_plotter.h>
#include <class_sch_screen.h>
#include <schframe.h>
#include <dialog_plot_schematic_base.h>

6
eeschema/lib_arc.cpp

@ -1,8 +1,8 @@
/*
* This program source code file is part of KiCad, a free EDA CAD application.
*
* Copyright (C) 2004 Jean-Pierre Charras, jaen-pierre.charras@gipsa-lab.inpg.com
* Copyright (C) 2004-2015 KiCad Developers, see change_log.txt for contributors.
* Copyright (C) 2017 Jean-Pierre Charras, jp.charras at wanadoo.fr
* Copyright (C) 2004-2017 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
@ -30,7 +30,7 @@
#include <gr_basic.h>
#include <macros.h>
#include <class_drawpanel.h>
#include <plot_common.h>
#include <class_plotter.h>
#include <trigo.h>
#include <wxstruct.h>
#include <richio.h>

4
eeschema/lib_bezier.cpp

@ -1,7 +1,7 @@
/*
* This program source code file is part of KiCad, a free EDA CAD application.
*
* Copyright (C) 2004-2012 KiCad Developers, see change_log.txt for contributors.
* Copyright (C) 2004-2017 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
@ -29,7 +29,7 @@
#include <gr_basic.h>
#include <macros.h>
#include <class_drawpanel.h>
#include <plot_common.h>
#include <class_plotter.h>
#include <trigo.h>
#include <wxstruct.h>
#include <bezier_curves.h>

6
eeschema/lib_circle.cpp

@ -1,8 +1,8 @@
/*
* This program source code file is part of KiCad, a free EDA CAD application.
*
* Copyright (C) 2012 Jean-Pierre Charras, jp.charras at wanadoo.fr
* Copyright (C) 2004-2012 KiCad Developers, see change_log.txt for contributors.
* Copyright (C) 2017 Jean-Pierre Charras, jp.charras at wanadoo.fr
* Copyright (C) 2004-2017 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
@ -31,7 +31,7 @@
#include <gr_basic.h>
#include <macros.h>
#include <class_drawpanel.h>
#include <plot_common.h>
#include <class_plotter.h>
#include <trigo.h>
#include <wxstruct.h>
#include <richio.h>

2
eeschema/lib_field.cpp

@ -34,7 +34,7 @@
#include <drawtxt.h>
#include <kicad_string.h>
#include <class_drawpanel.h>
#include <plot_common.h>
#include <class_plotter.h>
#include <trigo.h>
#include <base_units.h>
#include <msgpanel.h>

2
eeschema/lib_pin.cpp

@ -34,7 +34,7 @@
#include <trigo.h>
#include <class_drawpanel.h>
#include <drawtxt.h>
#include <plot_common.h>
#include <class_plotter.h>
#include <schframe.h>
#include <richio.h>
#include <base_units.h>

6
eeschema/lib_polyline.cpp

@ -1,8 +1,8 @@
/*
* This program source code file is part of KiCad, a free EDA CAD application.
*
* Copyright (C) 2012 Jean-Pierre Charras, jp.charras at wanadoo.fr
* Copyright (C) 2004-2015 KiCad Developers, see change_log.txt for contributors.
* Copyright (C) 2017 Jean-Pierre Charras, jp.charras at wanadoo.fr
* Copyright (C) 2004-2017 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
@ -30,7 +30,7 @@
#include <gr_basic.h>
#include <macros.h>
#include <class_drawpanel.h>
#include <plot_common.h>
#include <class_plotter.h>
#include <trigo.h>
#include <wxstruct.h>
#include <richio.h>

6
eeschema/lib_rectangle.cpp

@ -1,8 +1,8 @@
/*
* This program source code file is part of KiCad, a free EDA CAD application.
*
* Copyright (C) 2012 Jean-Pierre Charras, jp.charras at wanadoo.fr
* Copyright (C) 2004-2012 KiCad Developers, see change_log.txt for contributors.
* Copyright (C) 2017 Jean-Pierre Charras, jp.charras at wanadoo.fr
* Copyright (C) 2004-2017 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
@ -30,7 +30,7 @@
#include <gr_basic.h>
#include <macros.h>
#include <class_drawpanel.h>
#include <plot_common.h>
#include <class_plotter.h>
#include <trigo.h>
#include <wxstruct.h>
#include <richio.h>

4
eeschema/lib_text.cpp

@ -1,7 +1,7 @@
/*
* This program source code file is part of KiCad, a free EDA CAD application.
*
* Copyright (C) 2004-2012 KiCad Developers, see change_log.txt for contributors.
* Copyright (C) 2004-2017 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
@ -29,7 +29,7 @@
#include <gr_basic.h>
#include <macros.h>
#include <class_drawpanel.h>
#include <plot_common.h>
#include <class_plotter.h>
#include <drawtxt.h>
#include <trigo.h>
#include <wxstruct.h>

4
eeschema/plot_schematic_DXF.cpp

@ -5,7 +5,7 @@
* This program source code file is part of KiCad, a free EDA CAD application.
*
* Copyright (C) 1992-2010 Lorenzo Marcantonio
* Copyright (C) 1992-2016 KiCad Developers, see change_log.txt for contributors.
* Copyright (C) 1992-2017 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
@ -26,7 +26,7 @@
*/
#include <fctsys.h>
#include <plot_common.h>
#include <class_plotter.h>
#include <class_sch_screen.h>
#include <schframe.h>
#include <sch_sheet_path.h>

6
eeschema/plot_schematic_HPGL.cpp

@ -4,8 +4,8 @@
/*
* This program source code file is part of KiCad, a free EDA CAD application.
*
* Copyright (C) 1992-2010 Jean-Pierre Charras <jean-pierre.charras@gipsa-lab.inpg.fr
* Copyright (C) 1992-2016 KiCad Developers, see change_log.txt for contributors.
* Copyright (C) 1992-2010 Jean-Pierre Charras jp.charras at wanadoo.fr
* Copyright (C) 1992-2017 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
@ -26,7 +26,7 @@
*/
#include <fctsys.h>
#include <plot_common.h>
#include <class_plotter.h>
#include <class_sch_screen.h>
#include <schframe.h>
#include <base_units.h>

6
eeschema/plot_schematic_PDF.cpp

@ -4,8 +4,8 @@
/*
* This program source code file is part of KiCad, a free EDA CAD application.
*
* Copyright (C) 1992-2010 Jean-Pierre Charras <jean-pierre.charras@gipsa-lab.inpg.fr
* Copyright (C) 1992-2016 KiCad Developers, see change_log.txt for contributors.
* Copyright (C) 1992-2010 Jean-Pierre Charras jp.charras at wanadoo.fr
* Copyright (C) 1992-2017 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
@ -26,7 +26,7 @@
*/
#include <fctsys.h>
#include <plot_common.h>
#include <class_plotter.h>
#include <class_sch_screen.h>
#include <schframe.h>
#include <base_units.h>

2
eeschema/plot_schematic_PS.cpp

@ -25,7 +25,7 @@
*/
#include <fctsys.h>
#include <plot_common.h>
#include <class_plotter.h>
#include <class_sch_screen.h>
#include <schframe.h>
#include <base_units.h>

6
eeschema/sch_bus_entry.cpp

@ -1,8 +1,8 @@
/*
* This program source code file is part of KiCad, a free EDA CAD application.
*
* Copyright (C) 2004 Jean-Pierre Charras, jaen-pierre.charras@gipsa-lab.inpg.com
* Copyright (C) 2004-2011 KiCad Developers, see change_log.txt for contributors.
* Copyright (C) 2004 Jean-Pierre Charras, jp.charras at wanadoo.fr
* Copyright (C) 2004-2017 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
@ -34,7 +34,7 @@
#include <trigo.h>
#include <common.h>
#include <richio.h>
#include <plot_common.h>
#include <class_plotter.h>
#include <bitmaps.h>
#include <eeschema_config.h>

2
eeschema/sch_component.cpp

@ -34,7 +34,7 @@
#include <kicad_string.h>
#include <richio.h>
#include <schframe.h>
#include <plot_common.h>
#include <class_plotter.h>
#include <msgpanel.h>
#include <bitmaps.h>

4
eeschema/sch_field.cpp

@ -2,7 +2,7 @@
* This program source code file is part of KiCad, a free EDA CAD application.
*
* Copyright (C) 2015 Jean-Pierre Charras, jp.charras at wanadoo.fr
* Copyright (C) 2004-2014 KiCad Developers, see change_log.txt for contributors.
* Copyright (C) 2004-2017 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
@ -42,7 +42,7 @@
#include <drawtxt.h>
#include <macros.h>
#include <schframe.h>
#include <plot_common.h>
#include <class_plotter.h>
#include <bitmaps.h>
#include <general.h>

6
eeschema/sch_junction.cpp

@ -1,8 +1,8 @@
/*
* This program source code file is part of KiCad, a free EDA CAD application.
*
* Copyright (C) 2009 Jean-Pierre Charras, jaen-pierre.charras@gipsa-lab.inpg.com
* Copyright (C) 1992-2011 KiCad Developers, see AUTHORS.txt for contributors.
* Copyright (C) 2009 Jean-Pierre Charras, jp.charras at wanadoo.fr
* Copyright (C) 1992-2017 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
@ -33,7 +33,7 @@
#include <trigo.h>
#include <common.h>
#include <richio.h>
#include <plot_common.h>
#include <class_plotter.h>
#include <bitmaps.h>
#include <sch_junction.h>

6
eeschema/sch_line.cpp

@ -1,8 +1,8 @@
/*
* This program source code file is part of KiCad, a free EDA CAD application.
*
* Copyright (C) 2015 Jean-Pierre Charras, jaen-pierre.charras@gipsa-lab.inpg.com
* Copyright (C) 1992-2016 KiCad Developers, see AUTHORS.txt for contributors.
* Copyright (C) 2015 Jean-Pierre Charras, jp.charras at wanadoo.fr
* Copyright (C) 1992-2017 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
@ -31,7 +31,7 @@
#include <gr_basic.h>
#include <macros.h>
#include <class_drawpanel.h>
#include <plot_common.h>
#include <class_plotter.h>
#include <base_units.h>
#include <eeschema_config.h>
#include <general.h>

4
eeschema/sch_no_connect.cpp

@ -2,7 +2,7 @@
* This program source code file is part of KiCad, a free EDA CAD application.
*
* Copyright (C) 2015 Jean-Pierre Charras, jaen-pierre.charras@gipsa-lab.inpg.com
* Copyright (C) 1992-2015 KiCad Developers, see AUTHORS.txt for contributors.
* Copyright (C) 1992-2017 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
@ -32,7 +32,7 @@
#include <macros.h>
#include <class_drawpanel.h>
#include <common.h>
#include <plot_common.h>
#include <class_plotter.h>
#include <bitmaps.h>
#include <general.h>

2
eeschema/sch_screen.cpp

@ -39,7 +39,7 @@
#include <class_drawpanel.h>
#include <sch_item_struct.h>
#include <schframe.h>
#include <plot_common.h>
#include <class_plotter.h>
#include <netlist.h>
#include <class_netlist_object.h>

2
eeschema/sch_sheet.cpp

@ -33,7 +33,7 @@
#include <trigo.h>
#include <richio.h>
#include <schframe.h>
#include <plot_common.h>
#include <class_plotter.h>
#include <kicad_string.h>
#include <msgpanel.h>

2
eeschema/sch_sheet_pin.cpp

@ -31,7 +31,7 @@
#include <gr_basic.h>
#include <class_drawpanel.h>
#include <drawtxt.h>
#include <plot_common.h>
#include <class_plotter.h>
#include <trigo.h>
#include <richio.h>
#include <schframe.h>

2
eeschema/sch_text.cpp

@ -35,7 +35,7 @@
#include <class_drawpanel.h>
#include <drawtxt.h>
#include <schframe.h>
#include <plot_common.h>
#include <class_plotter.h>
#include <msgpanel.h>
#include <gal/stroke_font.h>
#include <bitmaps.h>

0
include/plot_common.h → include/class_plotter.h

2
pcbnew/class_module.cpp

@ -32,7 +32,7 @@
#include <fctsys.h>
#include <gr_basic.h>
#include <wxstruct.h>
#include <plot_common.h>
#include <class_plotter.h>
#include <class_drawpanel.h>
#include <trigo.h>
#include <confirm.h>

2
pcbnew/dialogs/dialog_plot.cpp

@ -27,7 +27,7 @@
#include <kiface_i.h>
#include <plot_common.h>
#include <class_plotter.h>
#include <confirm.h>
#include <wxPcbStruct.h>
#include <pcbplot.h>

4
pcbnew/exporters/gen_drill_report_files.cpp

@ -7,7 +7,7 @@
* This program source code file is part of KiCad, a free EDA CAD application.
*
* Copyright (C) 1992-2017 Jean_Pierre Charras <jp.charras at wanadoo.fr>
* Copyright (C) 1992-2017 KiCad Developers, see change_log.txt for contributors.
* Copyright (C) 1992-2017 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
@ -29,7 +29,7 @@
#include <fctsys.h>
#include <common.h>
#include <plot_common.h>
#include <class_plotter.h>
#include <base_struct.h>
#include <drawtxt.h>
#include <confirm.h>

4
pcbnew/exporters/gendrill_Excellon_writer.cpp

@ -3,7 +3,7 @@
*
* Copyright (C) 2017 Jean_Pierre Charras <jp.charras at wanadoo.fr>
* Copyright (C) 2015 SoftPLC Corporation, Dick Hollenbeck <dick@softplc.com>
* Copyright (C) 1992-2017 KiCad Developers, see change_log.txt for contributors.
* Copyright (C) 1992-2017 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
@ -37,7 +37,7 @@
#include <fctsys.h>
#include <plot_common.h>
#include <class_plotter.h>
#include <kicad_string.h>
#include <wxPcbStruct.h>
#include <pgm_base.h>

4
pcbnew/exporters/gendrill_gerber_writer.cpp

@ -2,7 +2,7 @@
* This program source code file is part of KiCad, a free EDA CAD application.
*
* Copyright (C) 2017 Jean_Pierre Charras <jp.charras at wanadoo.fr>
* Copyright (C) 1992-2017 KiCad Developers, see change_log.txt for contributors.
* Copyright (C) 1992-2017 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
@ -31,7 +31,7 @@
#include <vector>
#include <plot_common.h>
#include <class_plotter.h>
#include <kicad_string.h>
#include <wxPcbStruct.h>
#include <pgm_base.h>

4
pcbnew/exporters/gerber_jobfile_writer.cpp

@ -2,7 +2,7 @@
* This program source code file is part of KiCad, a free EDA CAD application.
*
* Copyright (C) 2017 Jean_Pierre Charras <jp.charras at wanadoo.fr>
* Copyright (C) 1992-2017 KiCad Developers, see change_log.txt for contributors.
* Copyright (C) 1992-2017 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
@ -31,7 +31,7 @@
#include <vector>
#include <plot_common.h>
#include <class_plotter.h>
#include <wxPcbStruct.h>
#include <build_version.h>

5
pcbnew/pcb_plot_params.cpp

@ -1,8 +1,7 @@
/*
* This program source code file is part of KiCad, a free EDA CAD application.
*
* Copyright (C) 1992-2015 KiCad Developers, see change_log.txt for contributors.
* Copyright (C) 1992-2017 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
@ -26,7 +25,7 @@
#include <pcb_plot_params_parser.h>
#include <pcb_plot_params.h>
#include <layers_id_colors_and_visibility.h>
#include <plot_common.h>
#include <class_plotter.h>
#include <macros.h>
#include <convert_to_biu.h>

2
pcbnew/pcb_plot_params.h

@ -25,7 +25,7 @@
#include <wx/wx.h>
#include <eda_text.h> // EDA_DRAW_MODE_T
#include <plot_common.h>
#include <class_plotter.h>
#include <layers_id_colors_and_visibility.h>
class PCB_PLOT_PARAMS_PARSER;

2
pcbnew/pcbnew_config.cpp

@ -40,7 +40,7 @@
#include <macros.h>
#include <wxPcbStruct.h>
#include <class_board_design_settings.h>
#include <plot_common.h>
#include <class_plotter.h>
#include <worksheet.h>
#include <dialog_hotkeys_editor.h>
#include <fp_lib_table.h>

2
pcbnew/pcbplot.cpp

@ -28,7 +28,7 @@
*/
#include <fctsys.h>
#include <plot_common.h>
#include <class_plotter.h>
#include <confirm.h>
#include <wxPcbStruct.h>
#include <pcbplot.h>

2
pcbnew/plot_board_layers.cpp

@ -31,7 +31,7 @@
#include <fctsys.h>
#include <common.h>
#include <plot_common.h>
#include <class_plotter.h>
#include <base_struct.h>
#include <drawtxt.h>
#include <trigo.h>

2
pcbnew/plot_brditems_plotter.cpp

@ -29,7 +29,7 @@
#include <fctsys.h>
#include <common.h>
#include <plot_common.h>
#include <class_plotter.h>
#include <base_struct.h>
#include <drawtxt.h>
#include <trigo.h>

Loading…
Cancel
Save