7
mirror of https://gitlab.com/kicad/code/kicad.git synced 2025-04-21 00:21:25 +00:00

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>

Some files were not shown because too many files have changed in this diff Show More