rename files: update filenames in sources

This commit is contained in:
jean-pierre charras 2018-01-28 19:12:26 +01:00
parent 5868202c28
commit e499d337d8
48 changed files with 81 additions and 78 deletions

View File

@ -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

View File

@ -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>

View File

@ -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"

View File

@ -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>

View File

@ -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>

View File

@ -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>

View File

@ -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>

View File

@ -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>

View File

@ -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>

View File

@ -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>

View File

@ -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>

View File

@ -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>

View File

@ -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>

View File

@ -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>

View File

@ -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>

View File

@ -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>

View File

@ -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>

View File

@ -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>

View File

@ -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>

View File

@ -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>

View File

@ -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>

View File

@ -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>

View File

@ -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>

View File

@ -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>

View File

@ -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>

View File

@ -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>

View File

@ -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>

View File

@ -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>

View File

@ -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>

View File

@ -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>

View File

@ -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>

View File

@ -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>

View File

@ -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>

View File

@ -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>

View File

@ -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>

View File

@ -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>

View File

@ -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>

View File

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

View File

@ -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>

View File

@ -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>

View File

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

View File

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

View File

@ -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>

View File

@ -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;

View File

@ -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>

View File

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

View File

@ -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>

View File

@ -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>