Browse Source

rename files: update filenames in sources

pull/5/merge
jean-pierre charras 8 years ago
parent
commit
e499d337d8
  1. 22
      common/CMakeLists.txt
  2. 6
      common/basic_gal.cpp
  3. 2
      common/class_bitmap_base.cpp
  4. 2
      common/draw_graphic_text.cpp
  5. 6
      common/plotters/DXF_plotter.cpp
  6. 6
      common/plotters/GERBER_plotter.cpp
  7. 6
      common/plotters/HPGL_plotter.cpp
  8. 6
      common/plotters/PDF_plotter.cpp
  9. 6
      common/plotters/PS_plotter.cpp
  10. 6
      common/plotters/SVG_plotter.cpp
  11. 2
      common/plotters/common_plot_functions.cpp
  12. 6
      common/plotters/plotter.cpp
  13. 2
      eeschema/class_libentry.cpp
  14. 6
      eeschema/dialogs/dialog_plot_schematic.h
  15. 2
      eeschema/lib_arc.cpp
  16. 2
      eeschema/lib_bezier.cpp
  17. 2
      eeschema/lib_circle.cpp
  18. 2
      eeschema/lib_field.cpp
  19. 2
      eeschema/lib_pin.cpp
  20. 2
      eeschema/lib_polyline.cpp
  21. 2
      eeschema/lib_rectangle.cpp
  22. 2
      eeschema/lib_text.cpp
  23. 2
      eeschema/plot_schematic_DXF.cpp
  24. 2
      eeschema/plot_schematic_HPGL.cpp
  25. 2
      eeschema/plot_schematic_PDF.cpp
  26. 2
      eeschema/plot_schematic_PS.cpp
  27. 2
      eeschema/sch_bus_entry.cpp
  28. 2
      eeschema/sch_component.cpp
  29. 2
      eeschema/sch_field.cpp
  30. 2
      eeschema/sch_junction.cpp
  31. 2
      eeschema/sch_line.cpp
  32. 6
      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. 2
      pcbnew/class_module.cpp
  38. 2
      pcbnew/dialogs/dialog_plot.cpp
  39. 2
      pcbnew/exporters/gen_drill_report_files.cpp
  40. 2
      pcbnew/exporters/gendrill_Excellon_writer.cpp
  41. 2
      pcbnew/exporters/gendrill_gerber_writer.cpp
  42. 2
      pcbnew/exporters/gerber_jobfile_writer.cpp
  43. 5
      pcbnew/pcb_plot_params.cpp
  44. 2
      pcbnew/pcb_plot_params.h
  45. 2
      pcbnew/pcbnew_config.cpp
  46. 2
      pcbnew/pcbplot.cpp
  47. 2
      pcbnew/plot_board_layers.cpp
  48. 2
      pcbnew/plot_brditems_plotter.cpp

22
common/CMakeLists.txt

@ -208,6 +208,17 @@ set( COMMON_PREVIEW_ITEMS_SRCS
preview_items/simple_overlay_item.cpp
)
set( PLOTTERS_CONTROL_SRCS
plotters/plotter.cpp
plotters/DXF_plotter.cpp
plotters/GERBER_plotter.cpp
plotters/HPGL_plotter.cpp
plotters/PDF_plotter.cpp
plotters/PS_plotter.cpp
plotters/SVG_plotter.cpp
plotters/common_plot_functions.cpp
)
set( COMMON_SRCS
${LIB_KICAD_SRCS}
${COMMON_ABOUT_DLG_SRCS}
@ -215,6 +226,7 @@ set( COMMON_SRCS
${COMMON_WIDGET_SRCS}
${COMMON_PAGE_LAYOUT_SRCS}
${COMMON_PREVIEW_ITEMS_SRCS}
${PLOTTERS_CONTROL_SRCS}
base_struct.cpp
basicframe.cpp
bezier_curves.cpp
@ -226,18 +238,10 @@ set( COMMON_SRCS
class_colors_design_settings.cpp
class_layer_box_selector.cpp
class_marker_base.cpp
class_plotter.cpp
class_undoredo_container.cpp
colors.cpp
commit.cpp
common.cpp
common_plotDXF_functions.cpp
common_plotGERBER_functions.cpp
common_plotHPGL_functions.cpp
common_plotPDF_functions.cpp
common_plotPS_functions.cpp
common_plotSVG_functions.cpp
common_plot_functions.cpp
config_params.cpp
confirm.cpp
convert_basic_shapes_to_polygon.cpp
@ -246,7 +250,7 @@ set( COMMON_SRCS
displlst.cpp
draw_frame.cpp
draw_panel.cpp
drawtxt.cpp
draw_graphic_text.cpp
dsnlexer.cpp
eagle_parser.cpp
eda_dde.cpp

6
common/basic_gal.cpp

@ -1,8 +1,8 @@
/*
* 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 AUTHORS.txt for contributors.
* Copyright (C) 2018 Jean-Pierre Charras, jp.charras at wanadoo.fr
* Copyright (C) 1992-2018 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 <gr_basic.h>
#include <class_plotter.h>
#include <plotter.h>
#include <trigo.h>
#include <basic_gal.h>

2
common/class_bitmap_base.cpp

@ -33,7 +33,7 @@
#include "trigo.h"
#include "common.h"
#include "richio.h"
#include "class_plotter.h"
#include "plotter.h"
#include "class_bitmap_base.h"

2
common/draw_graphic_text.cpp

@ -32,7 +32,7 @@
#include <fctsys.h>
#include <gr_basic.h>
#include <common.h>
#include <class_plotter.h>
#include <plotter.h>
#include <eda_text.h> // EDA_TEXT_HJUSTIFY_T and EDA_TEXT_VJUSTIFY_T
#include <trigo.h>
#include <macros.h>

6
common/plotters/DXF_plotter.cpp

@ -1,6 +1,6 @@
/**
* @file common_plotDXF_functions.cpp
* @brief KiCad: Common plot DXF Routines.
* @file DXF_plotter.cpp
* @brief Kicad: specialized plotter for DXF files format
*/
/*
* This program source code file is part of KiCad, a free EDA CAD application.
@ -31,7 +31,7 @@
#include <trigo.h>
#include <wxstruct.h>
#include <base_struct.h>
#include <class_plotter.h>
#include <plotter.h>
#include <macros.h>
#include <kicad_string.h>
#include <convert_basic_shapes_to_polygon.h>

6
common/plotters/GERBER_plotter.cpp

@ -23,8 +23,8 @@
*/
/**
* @file common_plotGERBER_functions.cpp
* @brief Common GERBER plot routines.
* @file GERBER_gerber.cpp
* @brief Kicad: specialized plotter for GERBER files format
*/
#include <fctsys.h>
@ -33,7 +33,7 @@
#include <wxstruct.h>
#include <base_struct.h>
#include <common.h>
#include <class_plotter.h>
#include <plotter.h>
#include <macros.h>
#include <kicad_string.h>
#include <convert_basic_shapes_to_polygon.h>

6
common/plotters/HPGL_plotter.cpp

@ -23,8 +23,8 @@
*/
/**
* @file common_plotHPGL_functions.cpp
* @brief KiCad: Common plot HPGL Routines
* @file HPGL_plotter.cpp
* @brief Kicad: specialized plotter for HPGL files format
* Since this plot engine is mostly intended for import in external programs,
* sadly HPGL/2 isn't supported a lot... some of the primitives use overlapped
* strokes to fill the shape
@ -199,7 +199,7 @@
#include <trigo.h>
#include <wxstruct.h>
#include <base_struct.h>
#include <class_plotter.h>
#include <plotter.h>
#include <macros.h>
#include <kicad_string.h>
#include <convert_basic_shapes_to_polygon.h>

6
common/plotters/PDF_plotter.cpp

@ -1,6 +1,6 @@
/**
* @file common_plotPDF_functions.cpp
* @brief Kicad: Common plot PDF Routines
* @file PDF_plotter.cpp
* @brief Kicad: specialized plotter for PDF files format
*/
/*
@ -33,7 +33,7 @@
#include <wxstruct.h>
#include <base_struct.h>
#include <common.h>
#include <class_plotter.h>
#include <plotter.h>
#include <macros.h>
#include <kicad_string.h>
#include <wx/zstream.h>

6
common/plotters/PS_plotter.cpp

@ -23,8 +23,8 @@
*/
/**
* @file common_plotPS_functions.cpp
* @brief Kicad: Common plot Postscript Routines
* @file PS_plotter.cpp
* @brief Kicad: specialized plotter for PS files format
*/
#include <fctsys.h>
@ -32,7 +32,7 @@
#include <wxstruct.h>
#include <base_struct.h>
#include <common.h>
#include <class_plotter.h>
#include <plotter.h>
#include <macros.h>
#include <kicad_string.h>
#include <convert_basic_shapes_to_polygon.h>

6
common/plotters/SVG_plotter.cpp

@ -1,6 +1,6 @@
/**
* @file common_plotPS_functions.cpp
* @brief Kicad: Common plot SVG functions
* @file SVG_plotter.cpp
* @brief Kicad: specialized plotter for SVG files format
*/
/*
@ -96,7 +96,7 @@
#include <class_eda_rect.h>
#include <base_struct.h>
#include <common.h>
#include <class_plotter.h>
#include <plotter.h>
#include <macros.h>
#include <kicad_string.h>

2
common/plotters/common_plot_functions.cpp

@ -29,7 +29,7 @@
#include <fctsys.h>
#include <base_struct.h>
#include <class_plotter.h>
#include <plotter.h>
#include <worksheet.h>
#include <class_base_screen.h>
#include <drawtxt.h>

6
common/plotters/plotter.cpp

@ -23,8 +23,8 @@
*/
/**
* @file class_plotter.cpp
* @brief KiCad: Base of all the plot routines
* @file plotter.cpp
* @brief KiCad: Base of all the specialized plotters
* the class PLOTTER handle basic functions to plot schematic and boards
* with different plot formats.
*
@ -43,7 +43,7 @@
#include <wxstruct.h>
#include <base_struct.h>
#include <common.h>
#include <class_plotter.h>
#include <plotter.h>
#include <macros.h>
#include <class_base_screen.h>
#include <drawtxt.h>

2
eeschema/class_libentry.cpp

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

6
eeschema/dialogs/dialog_plot_schematic.h

@ -4,11 +4,11 @@
/*
* 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-2018 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-2017 KiCad Developers, see AUTHORS.txt for contributors.
* Copyright (C) 1992-2018 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 <class_plotter.h>
#include <plotter.h>
#include <class_sch_screen.h>
#include <schframe.h>
#include <dialog_plot_schematic_base.h>

2
eeschema/lib_arc.cpp

@ -30,7 +30,7 @@
#include <gr_basic.h>
#include <macros.h>
#include <class_drawpanel.h>
#include <class_plotter.h>
#include <plotter.h>
#include <trigo.h>
#include <wxstruct.h>
#include <base_units.h>

2
eeschema/lib_bezier.cpp

@ -29,7 +29,7 @@
#include <gr_basic.h>
#include <macros.h>
#include <class_drawpanel.h>
#include <class_plotter.h>
#include <plotter.h>
#include <trigo.h>
#include <wxstruct.h>
#include <bezier_curves.h>

2
eeschema/lib_circle.cpp

@ -31,7 +31,7 @@
#include <gr_basic.h>
#include <macros.h>
#include <class_drawpanel.h>
#include <class_plotter.h>
#include <plotter.h>
#include <trigo.h>
#include <wxstruct.h>
#include <base_units.h>

2
eeschema/lib_field.cpp

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

2
eeschema/lib_pin.cpp

@ -36,7 +36,7 @@
#include <trigo.h>
#include <class_drawpanel.h>
#include <drawtxt.h>
#include <class_plotter.h>
#include <plotter.h>
#include <schframe.h>
#include <base_units.h>
#include <msgpanel.h>

2
eeschema/lib_polyline.cpp

@ -30,7 +30,7 @@
#include <gr_basic.h>
#include <macros.h>
#include <class_drawpanel.h>
#include <class_plotter.h>
#include <plotter.h>
#include <trigo.h>
#include <wxstruct.h>
#include <base_units.h>

2
eeschema/lib_rectangle.cpp

@ -30,7 +30,7 @@
#include <gr_basic.h>
#include <macros.h>
#include <class_drawpanel.h>
#include <class_plotter.h>
#include <plotter.h>
#include <trigo.h>
#include <wxstruct.h>
#include <base_units.h>

2
eeschema/lib_text.cpp

@ -29,7 +29,7 @@
#include <gr_basic.h>
#include <macros.h>
#include <class_drawpanel.h>
#include <class_plotter.h>
#include <plotter.h>
#include <drawtxt.h>
#include <trigo.h>
#include <wxstruct.h>

2
eeschema/plot_schematic_DXF.cpp

@ -26,7 +26,7 @@
*/
#include <fctsys.h>
#include <class_plotter.h>
#include <plotter.h>
#include <class_sch_screen.h>
#include <schframe.h>
#include <sch_sheet_path.h>

2
eeschema/plot_schematic_HPGL.cpp

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

2
eeschema/plot_schematic_PDF.cpp

@ -26,7 +26,7 @@
*/
#include <fctsys.h>
#include <class_plotter.h>
#include <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 <class_plotter.h>
#include <plotter.h>
#include <class_sch_screen.h>
#include <schframe.h>
#include <base_units.h>

2
eeschema/sch_bus_entry.cpp

@ -34,7 +34,7 @@
#include <trigo.h>
#include <common.h>
#include <richio.h>
#include <class_plotter.h>
#include <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 <class_plotter.h>
#include <plotter.h>
#include <msgpanel.h>
#include <bitmaps.h>

2
eeschema/sch_field.cpp

@ -42,7 +42,7 @@
#include <drawtxt.h>
#include <macros.h>
#include <schframe.h>
#include <class_plotter.h>
#include <plotter.h>
#include <bitmaps.h>
#include <general.h>

2
eeschema/sch_junction.cpp

@ -33,7 +33,7 @@
#include <trigo.h>
#include <common.h>
#include <richio.h>
#include <class_plotter.h>
#include <plotter.h>
#include <bitmaps.h>
#include <sch_junction.h>

2
eeschema/sch_line.cpp

@ -31,7 +31,7 @@
#include <gr_basic.h>
#include <macros.h>
#include <class_drawpanel.h>
#include <class_plotter.h>
#include <plotter.h>
#include <base_units.h>
#include <eeschema_config.h>
#include <general.h>

6
eeschema/sch_no_connect.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-2017 KiCad Developers, see AUTHORS.txt for contributors.
* Copyright (C) 2015 Jean-Pierre Charras, jp.charras at wanoadoo.fr
* Copyright (C) 1992-2018 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 <class_plotter.h>
#include <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 <class_plotter.h>
#include <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 <class_plotter.h>
#include <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 <class_plotter.h>
#include <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 <class_plotter.h>
#include <plotter.h>
#include <msgpanel.h>
#include <gal/stroke_font.h>
#include <bitmaps.h>

2
pcbnew/class_module.cpp

@ -32,7 +32,7 @@
#include <fctsys.h>
#include <gr_basic.h>
#include <wxstruct.h>
#include <class_plotter.h>
#include <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 <class_plotter.h>
#include <plotter.h>
#include <confirm.h>
#include <wxPcbStruct.h>
#include <pcbplot.h>

2
pcbnew/exporters/gen_drill_report_files.cpp

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

2
pcbnew/exporters/gendrill_Excellon_writer.cpp

@ -37,7 +37,7 @@
#include <fctsys.h>
#include <class_plotter.h>
#include <plotter.h>
#include <kicad_string.h>
#include <wxPcbStruct.h>
#include <pgm_base.h>

2
pcbnew/exporters/gendrill_gerber_writer.cpp

@ -31,7 +31,7 @@
#include <vector>
#include <class_plotter.h>
#include <plotter.h>
#include <kicad_string.h>
#include <wxPcbStruct.h>
#include <pgm_base.h>

2
pcbnew/exporters/gerber_jobfile_writer.cpp

@ -31,7 +31,7 @@
#include <vector>
#include <class_plotter.h>
#include <plotter.h>
#include <wxPcbStruct.h>
#include <build_version.h>

5
pcbnew/pcb_plot_params.cpp

@ -1,7 +1,7 @@
/*
* This program source code file is part of KiCad, a free EDA CAD application.
*
* Copyright (C) 1992-2017 KiCad Developers, see AUTHORS.txt for contributors.
* Copyright (C) 1992-2018 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
@ -21,11 +21,10 @@
* 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA
*/
//#include <wx/wx.h>
#include <pcb_plot_params_parser.h>
#include <pcb_plot_params.h>
#include <layers_id_colors_and_visibility.h>
#include <class_plotter.h>
#include <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 <class_plotter.h>
#include <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 <class_plotter.h>
#include <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 <class_plotter.h>
#include <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 <class_plotter.h>
#include <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 <class_plotter.h>
#include <plotter.h>
#include <base_struct.h>
#include <drawtxt.h>
#include <trigo.h>

Loading…
Cancel
Save