fix code after file renaming
This commit is contained in:
parent
32aedc99b7
commit
39b4afecfa
|
@ -234,9 +234,7 @@ set( COMMON_SRCS
|
|||
bitmap_base.cpp
|
||||
block_commande.cpp
|
||||
build_version.cpp
|
||||
class_colors_design_settings.cpp
|
||||
class_layer_box_selector.cpp
|
||||
class_undoredo_container.cpp
|
||||
colors_design_settings.cpp
|
||||
colors.cpp
|
||||
commit.cpp
|
||||
common.cpp
|
||||
|
@ -276,6 +274,7 @@ set( COMMON_SRCS
|
|||
kiway_express.cpp
|
||||
kiway_holder.cpp
|
||||
kiway_player.cpp
|
||||
layer_box_selector.cpp
|
||||
lib_id.cpp
|
||||
lib_table_base.cpp
|
||||
lib_table_keywords.cpp
|
||||
|
@ -297,6 +296,7 @@ set( COMMON_SRCS
|
|||
settings.cpp
|
||||
systemdirsappend.cpp
|
||||
trigo.cpp
|
||||
undo_redo_container.cpp
|
||||
utf8.cpp
|
||||
validators.cpp
|
||||
wildcards_and_files_ext.cpp
|
||||
|
@ -386,7 +386,6 @@ set( PCB_COMMON_SRCS
|
|||
../pcbnew/class_board_item.cpp
|
||||
../pcbnew/class_dimension.cpp
|
||||
../pcbnew/class_drawsegment.cpp
|
||||
../pcbnew/class_drc_item.cpp
|
||||
../pcbnew/class_edge_mod.cpp
|
||||
../pcbnew/class_marker_pcb.cpp
|
||||
../pcbnew/class_module.cpp
|
||||
|
@ -403,6 +402,7 @@ set( PCB_COMMON_SRCS
|
|||
../pcbnew/connectivity_algo.cpp
|
||||
../pcbnew/connectivity_data.cpp
|
||||
../pcbnew/convert_drawsegment_list_to_polygon.cpp
|
||||
../pcbnew/drc_item.cpp
|
||||
../pcbnew/eagle_plugin.cpp
|
||||
../pcbnew/gpcb_plugin.cpp
|
||||
../pcbnew/io_mgr.cpp
|
||||
|
|
|
@ -23,13 +23,13 @@
|
|||
*/
|
||||
|
||||
/**
|
||||
* @file class_colors_design_settings.cpp
|
||||
* @file colors_design_settings.cpp
|
||||
* @brief Handle colors used to draw all items or layers.
|
||||
*/
|
||||
#include <fctsys.h>
|
||||
#include <macros.h>
|
||||
|
||||
#include <class_colors_design_settings.h>
|
||||
#include <colors_design_settings.h>
|
||||
|
||||
/* Class for handle list of color settings for designs
|
||||
* in Eeschema, Pcbnew and GerbView
|
||||
|
|
|
@ -2,7 +2,7 @@
|
|||
* This program source code file is part of KiCad, a free EDA CAD application.
|
||||
*
|
||||
* Copyright (C) 2014 Jean-Pierre Charras, jp.charras at wanadoo.fr
|
||||
* Copyright (C) 2014 KiCad Developers, see CHANGELOG.TXT for contributors.
|
||||
* Copyright (C) 2014 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
|
||||
|
@ -22,7 +22,6 @@
|
|||
* 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA
|
||||
*/
|
||||
|
||||
#include <common.h>
|
||||
#include <layers_id_colors_and_visibility.h>
|
||||
#include <bitmaps.h>
|
||||
|
||||
|
@ -30,8 +29,7 @@
|
|||
#include <wx/ownerdrw.h>
|
||||
#include <wx/menuitem.h>
|
||||
|
||||
#include <class_layer_box_selector.h>
|
||||
|
||||
#include <layer_box_selector.h>
|
||||
|
||||
LAYER_SELECTOR::LAYER_SELECTOR()
|
||||
{
|
||||
|
@ -73,8 +71,10 @@ void LAYER_SELECTOR::SetBitmapLayer( wxBitmap& aLayerbmp, LAYER_NUM aLayer )
|
|||
bmpDC.DrawRectangle( 0, 0, aLayerbmp.GetWidth(), aLayerbmp.GetHeight() );
|
||||
}
|
||||
|
||||
|
||||
/* class to display a layer list in a wxBitmapComboBox.
|
||||
*/
|
||||
|
||||
LAYER_BOX_SELECTOR::LAYER_BOX_SELECTOR( wxWindow* parent, wxWindowID id,
|
||||
const wxPoint& pos, const wxSize& size,
|
||||
int n, const wxString choices[] ) :
|
||||
|
|
|
@ -90,7 +90,7 @@ principle should be easily implemented by adapting the current STL containers.
|
|||
#include <bitset>
|
||||
|
||||
#include <title_block.h>
|
||||
#include <class_colors_design_settings.h>
|
||||
#include <colors_design_settings.h>
|
||||
#include <marker_base.h>
|
||||
#include <eda_text.h>
|
||||
#include <convert_to_biu.h>
|
||||
|
@ -108,7 +108,7 @@ principle should be easily implemented by adapting the current STL containers.
|
|||
%include common.h
|
||||
%include title_block.h
|
||||
%include gal/color4d.h
|
||||
%include class_colors_design_settings.h
|
||||
%include colors_design_settings.h
|
||||
%include marker_base.h
|
||||
%include eda_text.h
|
||||
|
||||
|
|
|
@ -1,9 +1,9 @@
|
|||
/*
|
||||
* This program source code file is part of KiCad, a free EDA CAD application.
|
||||
*
|
||||
* Copyright (C) 2009 jean-pierre.charras@gipsa-lab.inpg.fr
|
||||
* Copyright (C) 2018 jp.charras at wanadoo.fr
|
||||
* Copyright (C) 2011 Wayne Stambaugh <stambaughw@verizon.net>
|
||||
* Copyright (C) 2009 KiCad Developers, see change_log.txt for contributors.
|
||||
* Copyright (C) 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
|
||||
|
@ -24,9 +24,8 @@
|
|||
*/
|
||||
|
||||
#include <fctsys.h>
|
||||
#include <common.h>
|
||||
#include <base_struct.h>
|
||||
#include <class_undoredo_container.h>
|
||||
#include <undo_redo_container.h>
|
||||
|
||||
|
||||
ITEM_PICKER::ITEM_PICKER( EDA_ITEM* aItem, UNDO_REDO_T aUndoRedoStatus )
|
||||
|
@ -100,8 +99,6 @@ void PICKED_ITEMS_LIST::ClearItemsList()
|
|||
|
||||
void PICKED_ITEMS_LIST::ClearListAndDeleteItems()
|
||||
{
|
||||
bool show_error_message = true;
|
||||
|
||||
// Delete items is they are not flagged UR_NEW, or if this is a block operation
|
||||
while( GetCount() > 0 )
|
||||
{
|
||||
|
|
|
@ -37,7 +37,7 @@ set( CVPCB_SRCS
|
|||
../common/base_units.cpp
|
||||
../pcbnew/board_items_to_polygon_shape_transform.cpp
|
||||
../pcbnew/pcb_general_settings.cpp
|
||||
../pcbnew/class_drc_item.cpp
|
||||
../pcbnew/drc_item.cpp
|
||||
auto_associate.cpp
|
||||
cfg.cpp
|
||||
components_listbox.cpp
|
||||
|
|
|
@ -32,7 +32,7 @@
|
|||
|
||||
#include <sch_base_frame.h>
|
||||
#include <config_params.h>
|
||||
#include <class_undoredo_container.h>
|
||||
#include <undo_redo_container.h>
|
||||
#include <template_fieldnames.h>
|
||||
#include <block_commande.h>
|
||||
#include <sch_collectors.h>
|
||||
|
|
|
@ -77,7 +77,7 @@ set( GERBVIEW_EXTRA_SRCS
|
|||
../common/base_screen.cpp
|
||||
../common/base_units.cpp
|
||||
../common/eda_text.cpp
|
||||
../common/class_layer_box_selector.cpp
|
||||
../common/layer_box_selector.cpp
|
||||
../common/lset.cpp
|
||||
../common/settings.cpp
|
||||
../pcbnew/layer_widget.cpp
|
||||
|
|
|
@ -25,7 +25,7 @@
|
|||
#ifndef GBR_LAYER_BOX_SELECTOR_H
|
||||
#define GBR_LAYER_BOX_SELECTOR_H 1
|
||||
|
||||
#include <class_layer_box_selector.h>
|
||||
#include <layer_box_selector.h>
|
||||
|
||||
|
||||
// class to display a layer list in GerbView.
|
||||
|
|
|
@ -34,7 +34,7 @@
|
|||
|
||||
#include <dlist.h>
|
||||
|
||||
#include <class_colors_design_settings.h>
|
||||
#include <colors_design_settings.h>
|
||||
#include <common.h> // PAGE_INFO
|
||||
#include <gerbview.h> // GERBER_DRAWLAYERS_COUNT
|
||||
#include <title_block.h>
|
||||
|
|
|
@ -22,7 +22,7 @@
|
|||
#include <view/wx_view_controls.h>
|
||||
#include <gerbview_painter.h>
|
||||
|
||||
#include <class_colors_design_settings.h>
|
||||
#include <colors_design_settings.h>
|
||||
#include <gerbview_frame.h>
|
||||
#include <gbr_display_options.h>
|
||||
#include <gal/graphics_abstraction_layer.h>
|
||||
|
|
|
@ -37,7 +37,7 @@
|
|||
#include <gbr_screen.h>
|
||||
#include <page_info.h>
|
||||
#include <gbr_display_options.h>
|
||||
#include <class_colors_design_settings.h>
|
||||
#include <colors_design_settings.h>
|
||||
|
||||
extern COLORS_DESIGN_SETTINGS g_ColorsSettings;
|
||||
|
||||
|
|
|
@ -18,7 +18,7 @@
|
|||
* with this program. If not, see <http://www.gnu.org/licenses/>.
|
||||
*/
|
||||
|
||||
#include <class_colors_design_settings.h>
|
||||
#include <colors_design_settings.h>
|
||||
|
||||
#include <gerbview_painter.h>
|
||||
#include <gal/graphics_abstraction_layer.h>
|
||||
|
|
|
@ -33,7 +33,7 @@
|
|||
|
||||
#include <draw_frame.h>
|
||||
#include <base_struct.h>
|
||||
#include <class_undoredo_container.h>
|
||||
#include <undo_redo_container.h>
|
||||
#include <block_commande.h>
|
||||
#include <common.h>
|
||||
#include <id.h>
|
||||
|
|
|
@ -33,7 +33,7 @@
|
|||
|
||||
|
||||
#include <base_struct.h>
|
||||
#include <class_undoredo_container.h>
|
||||
#include <undo_redo_container.h>
|
||||
#include <gr_basic.h>
|
||||
#include <eda_rect.h>
|
||||
|
||||
|
|
|
@ -29,7 +29,7 @@
|
|||
#include <set>
|
||||
#include <vector>
|
||||
|
||||
#include <class_undoredo_container.h>
|
||||
#include <undo_redo_container.h>
|
||||
|
||||
class EDA_ITEM;
|
||||
|
||||
|
|
|
@ -2,7 +2,7 @@
|
|||
* This program source code file is part of KiCad, a free EDA CAD application.
|
||||
*
|
||||
* Copyright (C) 2011-2014 Jean-Pierre Charras, jp.charras at wanadoo.fr
|
||||
* Copyright (C) 1992-2014 KiCad Developers, see CHANGELOG.TXT for contributors.
|
||||
* Copyright (C) 1992-2014 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
|
||||
|
@ -22,8 +22,8 @@
|
|||
* 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA
|
||||
*/
|
||||
|
||||
#ifndef CLASS_LAYER_BOX_SELECTOR_H
|
||||
#define CLASS_LAYER_BOX_SELECTOR_H 1
|
||||
#ifndef LAYER_BOX_SELECTOR_H
|
||||
#define LAYER_BOX_SELECTOR_H
|
||||
|
||||
#include <wx/bmpcbox.h>
|
||||
#include <gal/color4d.h>
|
||||
|
@ -104,4 +104,4 @@ public:
|
|||
void ResyncBitmapOnly();
|
||||
};
|
||||
|
||||
#endif // CLASS_LAYER_BOX_SELECTOR_H
|
||||
#endif // LAYER_BOX_SELECTOR_H
|
||||
|
|
|
@ -209,9 +209,6 @@ set( PCBNEW_CLASS_SRCS
|
|||
block_module_editor.cpp
|
||||
board_netlist_updater.cpp
|
||||
build_BOM_from_board.cpp
|
||||
class_pcb_layer_box_selector.cpp
|
||||
class_pcb_layer_widget.cpp
|
||||
clean.cpp
|
||||
connect.cpp
|
||||
controle.cpp
|
||||
cross-probing.cpp
|
||||
|
@ -262,6 +259,8 @@ set( PCBNEW_CLASS_SRCS
|
|||
onrightclick.cpp
|
||||
pad_edition_functions.cpp
|
||||
pcb_base_edit_frame.cpp
|
||||
pcb_layer_box_selector.cpp
|
||||
pcb_layer_widget.cpp
|
||||
# pcb_draw_panel_gal.cpp
|
||||
# pcb_view.cpp
|
||||
pcb_edit_frame.cpp
|
||||
|
@ -285,6 +284,7 @@ set( PCBNEW_CLASS_SRCS
|
|||
toolbars_update_user_interface.cpp
|
||||
tr_modif.cpp
|
||||
tracepcb.cpp
|
||||
tracks_cleaner.cpp
|
||||
undo_redo.cpp
|
||||
zone_filler.cpp
|
||||
zones_by_polygon.cpp
|
||||
|
|
|
@ -38,7 +38,7 @@
|
|||
#include <layers_id_colors_and_visibility.h>
|
||||
#include <netinfo.h>
|
||||
#include <class_pad.h>
|
||||
#include <class_colors_design_settings.h>
|
||||
#include <colors_design_settings.h>
|
||||
#include <class_board_design_settings.h>
|
||||
#include <title_block.h>
|
||||
#include <zone_settings.h>
|
||||
|
|
|
@ -1,11 +1,11 @@
|
|||
///////////////////////////////////////////////////////////////////////////
|
||||
// C++ code generated with wxFormBuilder (version Nov 22 2017)
|
||||
// C++ code generated with wxFormBuilder (version Aug 4 2017)
|
||||
// http://www.wxformbuilder.org/
|
||||
//
|
||||
// PLEASE DO *NOT* EDIT THIS FILE!
|
||||
// PLEASE DO "NOT" EDIT THIS FILE!
|
||||
///////////////////////////////////////////////////////////////////////////
|
||||
|
||||
#include "class_pcb_layer_box_selector.h"
|
||||
#include "pcb_layer_box_selector.h"
|
||||
#include "widgets/text_ctrl_eval.h"
|
||||
|
||||
#include "dialog_dimension_editor_base.h"
|
||||
|
|
|
@ -1391,7 +1391,7 @@
|
|||
<property name="show">1</property>
|
||||
<property name="size"></property>
|
||||
<property name="style"></property>
|
||||
<property name="subclass">PCB_LAYER_BOX_SELECTOR; class_pcb_layer_box_selector.h</property>
|
||||
<property name="subclass">PCB_LAYER_BOX_SELECTOR; pcb_layer_box_selector.h</property>
|
||||
<property name="toolbar_pane">0</property>
|
||||
<property name="tooltip"></property>
|
||||
<property name="validator_data_type"></property>
|
||||
|
|
|
@ -1,8 +1,8 @@
|
|||
///////////////////////////////////////////////////////////////////////////
|
||||
// C++ code generated with wxFormBuilder (version Nov 22 2017)
|
||||
// C++ code generated with wxFormBuilder (version Aug 4 2017)
|
||||
// http://www.wxformbuilder.org/
|
||||
//
|
||||
// PLEASE DO *NOT* EDIT THIS FILE!
|
||||
// PLEASE DO "NOT" EDIT THIS FILE!
|
||||
///////////////////////////////////////////////////////////////////////////
|
||||
|
||||
#ifndef __DIALOG_DIMENSION_EDITOR_BASE_H__
|
||||
|
@ -11,6 +11,7 @@
|
|||
#include <wx/artprov.h>
|
||||
#include <wx/xrc/xmlres.h>
|
||||
#include <wx/intl.h>
|
||||
class DIALOG_SHIM;
|
||||
class PCB_LAYER_BOX_SELECTOR;
|
||||
class TEXT_CTRL_EVAL;
|
||||
|
||||
|
|
|
@ -48,7 +48,7 @@
|
|||
#include <class_text_mod.h>
|
||||
#include <class_board.h>
|
||||
|
||||
#include <class_pcb_layer_box_selector.h>
|
||||
#include <pcb_layer_box_selector.h>
|
||||
#include <dialog_edit_module_text.h>
|
||||
|
||||
|
||||
|
|
|
@ -5,7 +5,7 @@
|
|||
// PLEASE DO "NOT" EDIT THIS FILE!
|
||||
///////////////////////////////////////////////////////////////////////////
|
||||
|
||||
#include "class_pcb_layer_box_selector.h"
|
||||
#include "pcb_layer_box_selector.h"
|
||||
#include "widgets/text_ctrl_eval.h"
|
||||
|
||||
#include "dialog_edit_module_text_base.h"
|
||||
|
|
|
@ -1480,7 +1480,7 @@
|
|||
<property name="show">1</property>
|
||||
<property name="size"></property>
|
||||
<property name="style"></property>
|
||||
<property name="subclass">PCB_LAYER_BOX_SELECTOR; class_pcb_layer_box_selector.h</property>
|
||||
<property name="subclass">PCB_LAYER_BOX_SELECTOR; pcb_layer_box_selector.h</property>
|
||||
<property name="toolbar_pane">0</property>
|
||||
<property name="tooltip"></property>
|
||||
<property name="validator_data_type"></property>
|
||||
|
|
|
@ -52,7 +52,7 @@
|
|||
#include <class_drawsegment.h>
|
||||
|
||||
#include <dialog_graphic_item_properties_base.h>
|
||||
#include <class_pcb_layer_box_selector.h>
|
||||
#include <pcb_layer_box_selector.h>
|
||||
#include <html_messagebox.h>
|
||||
#include <widgets/text_ctrl_eval.h>
|
||||
|
||||
|
|
|
@ -1,11 +1,11 @@
|
|||
///////////////////////////////////////////////////////////////////////////
|
||||
// C++ code generated with wxFormBuilder (version Nov 22 2017)
|
||||
// C++ code generated with wxFormBuilder (version Aug 4 2017)
|
||||
// http://www.wxformbuilder.org/
|
||||
//
|
||||
// PLEASE DO *NOT* EDIT THIS FILE!
|
||||
// PLEASE DO "NOT" EDIT THIS FILE!
|
||||
///////////////////////////////////////////////////////////////////////////
|
||||
|
||||
#include "class_pcb_layer_box_selector.h"
|
||||
#include "pcb_layer_box_selector.h"
|
||||
#include "widgets/text_ctrl_eval.h"
|
||||
|
||||
#include "dialog_graphic_item_properties_base.h"
|
||||
|
|
|
@ -2160,7 +2160,7 @@
|
|||
<property name="show">1</property>
|
||||
<property name="size"></property>
|
||||
<property name="style"></property>
|
||||
<property name="subclass">PCB_LAYER_BOX_SELECTOR; class_pcb_layer_box_selector.h</property>
|
||||
<property name="subclass">PCB_LAYER_BOX_SELECTOR; pcb_layer_box_selector.h</property>
|
||||
<property name="toolbar_pane">0</property>
|
||||
<property name="tooltip"></property>
|
||||
<property name="validator_data_type"></property>
|
||||
|
|
|
@ -1,8 +1,8 @@
|
|||
///////////////////////////////////////////////////////////////////////////
|
||||
// C++ code generated with wxFormBuilder (version Nov 22 2017)
|
||||
// C++ code generated with wxFormBuilder (version Aug 4 2017)
|
||||
// http://www.wxformbuilder.org/
|
||||
//
|
||||
// PLEASE DO *NOT* EDIT THIS FILE!
|
||||
// PLEASE DO "NOT" EDIT THIS FILE!
|
||||
///////////////////////////////////////////////////////////////////////////
|
||||
|
||||
#ifndef __DIALOG_GRAPHIC_ITEM_PROPERTIES_BASE_H__
|
||||
|
@ -11,6 +11,7 @@
|
|||
#include <wx/artprov.h>
|
||||
#include <wx/xrc/xmlres.h>
|
||||
#include <wx/intl.h>
|
||||
class DIALOG_SHIM;
|
||||
class PCB_LAYER_BOX_SELECTOR;
|
||||
class TEXT_CTRL_EVAL;
|
||||
|
||||
|
|
|
@ -50,7 +50,7 @@
|
|||
#include <class_edge_mod.h>
|
||||
|
||||
#include <dialog_graphic_item_properties_base.h>
|
||||
#include <class_pcb_layer_box_selector.h>
|
||||
#include <pcb_layer_box_selector.h>
|
||||
#include <html_messagebox.h>
|
||||
#include <widgets/text_ctrl_eval.h>
|
||||
|
||||
|
|
|
@ -43,7 +43,7 @@
|
|||
#include <vector>
|
||||
#include <wx/wx.h>
|
||||
#include <dialog_pcb_text_properties_base.h>
|
||||
#include <class_pcb_layer_box_selector.h>
|
||||
#include <pcb_layer_box_selector.h>
|
||||
#include <board_commit.h>
|
||||
|
||||
|
||||
|
|
|
@ -1,11 +1,11 @@
|
|||
///////////////////////////////////////////////////////////////////////////
|
||||
// C++ code generated with wxFormBuilder (version Nov 22 2017)
|
||||
// C++ code generated with wxFormBuilder (version Aug 4 2017)
|
||||
// http://www.wxformbuilder.org/
|
||||
//
|
||||
// PLEASE DO *NOT* EDIT THIS FILE!
|
||||
// PLEASE DO "NOT" EDIT THIS FILE!
|
||||
///////////////////////////////////////////////////////////////////////////
|
||||
|
||||
#include "class_pcb_layer_box_selector.h"
|
||||
#include "pcb_layer_box_selector.h"
|
||||
#include "widgets/text_ctrl_eval.h"
|
||||
|
||||
#include "dialog_pcb_text_properties_base.h"
|
||||
|
|
|
@ -860,7 +860,7 @@
|
|||
<property name="show">1</property>
|
||||
<property name="size"></property>
|
||||
<property name="style"></property>
|
||||
<property name="subclass">PCB_LAYER_BOX_SELECTOR; class_pcb_layer_box_selector.h</property>
|
||||
<property name="subclass">PCB_LAYER_BOX_SELECTOR; pcb_layer_box_selector.h</property>
|
||||
<property name="toolbar_pane">0</property>
|
||||
<property name="tooltip"></property>
|
||||
<property name="validator_data_type"></property>
|
||||
|
|
|
@ -1,8 +1,8 @@
|
|||
///////////////////////////////////////////////////////////////////////////
|
||||
// C++ code generated with wxFormBuilder (version Nov 22 2017)
|
||||
// C++ code generated with wxFormBuilder (version Aug 4 2017)
|
||||
// http://www.wxformbuilder.org/
|
||||
//
|
||||
// PLEASE DO *NOT* EDIT THIS FILE!
|
||||
// PLEASE DO "NOT" EDIT THIS FILE!
|
||||
///////////////////////////////////////////////////////////////////////////
|
||||
|
||||
#ifndef __DIALOG_PCB_TEXT_PROPERTIES_BASE_H__
|
||||
|
@ -11,6 +11,7 @@
|
|||
#include <wx/artprov.h>
|
||||
#include <wx/xrc/xmlres.h>
|
||||
#include <wx/intl.h>
|
||||
class DIALOG_SHIM;
|
||||
class PCB_LAYER_BOX_SELECTOR;
|
||||
class TEXT_CTRL_EVAL;
|
||||
|
||||
|
|
|
@ -23,7 +23,7 @@
|
|||
*/
|
||||
|
||||
#include <dialogs/dialog_track_via_properties.h>
|
||||
#include <class_pcb_layer_box_selector.h>
|
||||
#include <pcb_layer_box_selector.h>
|
||||
#include <tools/selection_tool.h>
|
||||
#include <class_track.h>
|
||||
#include <pcb_edit_frame.h>
|
||||
|
|
|
@ -1,11 +1,11 @@
|
|||
///////////////////////////////////////////////////////////////////////////
|
||||
// C++ code generated with wxFormBuilder (version Nov 22 2017)
|
||||
// C++ code generated with wxFormBuilder (version Aug 4 2017)
|
||||
// http://www.wxformbuilder.org/
|
||||
//
|
||||
// PLEASE DO *NOT* EDIT THIS FILE!
|
||||
// PLEASE DO "NOT" EDIT THIS FILE!
|
||||
///////////////////////////////////////////////////////////////////////////
|
||||
|
||||
#include "class_pcb_layer_box_selector.h"
|
||||
#include "pcb_layer_box_selector.h"
|
||||
#include "widgets/text_ctrl_eval.h"
|
||||
#include "widgets/widget_net_selector.h"
|
||||
|
||||
|
|
|
@ -2147,7 +2147,7 @@
|
|||
<property name="show">1</property>
|
||||
<property name="size"></property>
|
||||
<property name="style"></property>
|
||||
<property name="subclass">PCB_LAYER_BOX_SELECTOR; class_pcb_layer_box_selector.h</property>
|
||||
<property name="subclass">PCB_LAYER_BOX_SELECTOR; pcb_layer_box_selector.h</property>
|
||||
<property name="toolbar_pane">0</property>
|
||||
<property name="tooltip"></property>
|
||||
<property name="validator_data_type"></property>
|
||||
|
@ -3926,7 +3926,7 @@
|
|||
<property name="show">1</property>
|
||||
<property name="size"></property>
|
||||
<property name="style"></property>
|
||||
<property name="subclass">PCB_LAYER_BOX_SELECTOR; class_pcb_layer_box_selector.h</property>
|
||||
<property name="subclass">PCB_LAYER_BOX_SELECTOR; pcb_layer_box_selector.h</property>
|
||||
<property name="toolbar_pane">0</property>
|
||||
<property name="tooltip"></property>
|
||||
<property name="validator_data_type"></property>
|
||||
|
@ -4110,7 +4110,7 @@
|
|||
<property name="show">1</property>
|
||||
<property name="size"></property>
|
||||
<property name="style"></property>
|
||||
<property name="subclass">PCB_LAYER_BOX_SELECTOR; class_pcb_layer_box_selector.h</property>
|
||||
<property name="subclass">PCB_LAYER_BOX_SELECTOR; pcb_layer_box_selector.h</property>
|
||||
<property name="toolbar_pane">0</property>
|
||||
<property name="tooltip"></property>
|
||||
<property name="validator_data_type"></property>
|
||||
|
|
|
@ -1,8 +1,8 @@
|
|||
///////////////////////////////////////////////////////////////////////////
|
||||
// C++ code generated with wxFormBuilder (version Nov 22 2017)
|
||||
// C++ code generated with wxFormBuilder (version Aug 4 2017)
|
||||
// http://www.wxformbuilder.org/
|
||||
//
|
||||
// PLEASE DO *NOT* EDIT THIS FILE!
|
||||
// PLEASE DO "NOT" EDIT THIS FILE!
|
||||
///////////////////////////////////////////////////////////////////////////
|
||||
|
||||
#ifndef __DIALOG_TRACK_VIA_PROPERTIES_BASE_H__
|
||||
|
@ -11,6 +11,7 @@
|
|||
#include <wx/artprov.h>
|
||||
#include <wx/xrc/xmlres.h>
|
||||
#include <wx/intl.h>
|
||||
class DIALOG_SHIM;
|
||||
class PCB_LAYER_BOX_SELECTOR;
|
||||
class TEXT_CTRL_EVAL;
|
||||
class WIDGET_NET_SELECTOR;
|
||||
|
|
|
@ -46,7 +46,7 @@
|
|||
|
||||
#include <pcbnew.h>
|
||||
#include <dialog_dimension_editor_base.h>
|
||||
#include <class_pcb_layer_box_selector.h>
|
||||
#include <pcb_layer_box_selector.h>
|
||||
|
||||
/* Local functions */
|
||||
static void BuildDimension( EDA_DRAW_PANEL* aPanel, wxDC* aDC,
|
||||
|
|
|
@ -49,7 +49,7 @@
|
|||
#include <class_zone.h>
|
||||
#include <class_pcb_text.h>
|
||||
#include <modview_frame.h>
|
||||
#include <class_pcb_layer_box_selector.h>
|
||||
#include <pcb_layer_box_selector.h>
|
||||
#include <dialog_drc.h>
|
||||
#include <dialog_global_edit_tracks_and_vias.h>
|
||||
#include <invoke_pcb_dialog.h>
|
||||
|
|
|
@ -53,7 +53,7 @@
|
|||
#include <footprint_edit_frame.h>
|
||||
#include <modview_frame.h>
|
||||
#include <wildcards_and_files_ext.h>
|
||||
#include <class_pcb_layer_widget.h>
|
||||
#include <pcb_layer_widget.h>
|
||||
#include <invoke_pcb_dialog.h>
|
||||
|
||||
#include <tool/tool_manager.h>
|
||||
|
|
|
@ -34,7 +34,7 @@
|
|||
#include <boost/bind.hpp>
|
||||
#include <utility>
|
||||
#include <make_unique.h>
|
||||
#include <class_colors_design_settings.h>
|
||||
#include <colors_design_settings.h>
|
||||
|
||||
#include <wx/stattext.h>
|
||||
|
||||
|
|
|
@ -30,7 +30,7 @@
|
|||
#include <dialog_dxf_import.h>
|
||||
#include <kiface_i.h>
|
||||
#include <convert_to_biu.h>
|
||||
#include <class_pcb_layer_box_selector.h>
|
||||
#include <pcb_layer_box_selector.h>
|
||||
#include <wildcards_and_files_ext.h>
|
||||
|
||||
#include <class_board.h>
|
||||
|
|
|
@ -1,11 +1,11 @@
|
|||
///////////////////////////////////////////////////////////////////////////
|
||||
// C++ code generated with wxFormBuilder (version Nov 22 2017)
|
||||
// C++ code generated with wxFormBuilder (version Aug 4 2017)
|
||||
// http://www.wxformbuilder.org/
|
||||
//
|
||||
// PLEASE DO *NOT* EDIT THIS FILE!
|
||||
// PLEASE DO "NOT" EDIT THIS FILE!
|
||||
///////////////////////////////////////////////////////////////////////////
|
||||
|
||||
#include "class_pcb_layer_box_selector.h"
|
||||
#include "pcb_layer_box_selector.h"
|
||||
|
||||
#include "dialog_dxf_import_base.h"
|
||||
|
||||
|
|
|
@ -1663,7 +1663,7 @@
|
|||
<property name="show">1</property>
|
||||
<property name="size"></property>
|
||||
<property name="style"></property>
|
||||
<property name="subclass">PCB_LAYER_BOX_SELECTOR; class_pcb_layer_box_selector.h</property>
|
||||
<property name="subclass">PCB_LAYER_BOX_SELECTOR; pcb_layer_box_selector.h</property>
|
||||
<property name="toolbar_pane">0</property>
|
||||
<property name="tooltip"></property>
|
||||
<property name="validator_data_type"></property>
|
||||
|
|
|
@ -1,8 +1,8 @@
|
|||
///////////////////////////////////////////////////////////////////////////
|
||||
// C++ code generated with wxFormBuilder (version Nov 22 2017)
|
||||
// C++ code generated with wxFormBuilder (version Aug 4 2017)
|
||||
// http://www.wxformbuilder.org/
|
||||
//
|
||||
// PLEASE DO *NOT* EDIT THIS FILE!
|
||||
// PLEASE DO "NOT" EDIT THIS FILE!
|
||||
///////////////////////////////////////////////////////////////////////////
|
||||
|
||||
#ifndef __DIALOG_DXF_IMPORT_BASE_H__
|
||||
|
@ -11,6 +11,7 @@
|
|||
#include <wx/artprov.h>
|
||||
#include <wx/xrc/xmlres.h>
|
||||
#include <wx/intl.h>
|
||||
class DIALOG_SHIM;
|
||||
class PCB_LAYER_BOX_SELECTOR;
|
||||
|
||||
#include "dialog_shim.h"
|
||||
|
|
|
@ -58,7 +58,6 @@ using namespace std::placeholders;
|
|||
#include <dialog_get_component.h>
|
||||
#include <modview_frame.h>
|
||||
#include <wildcards_and_files_ext.h>
|
||||
#include <class_pcb_layer_widget.h>
|
||||
|
||||
|
||||
static void DisplayCmpDoc( wxString& aName, void* aData );
|
||||
|
|
|
@ -39,7 +39,7 @@
|
|||
#include <kicad_device_context.h>
|
||||
#include <macros.h>
|
||||
#include <invoke_pcb_dialog.h>
|
||||
#include <class_pcb_layer_widget.h>
|
||||
#include <pcb_layer_widget.h>
|
||||
#include <board_commit.h>
|
||||
|
||||
#include <class_board.h>
|
||||
|
|
|
@ -31,7 +31,7 @@
|
|||
#include <ratsnest_data.h>
|
||||
#include <connectivity_data.h>
|
||||
|
||||
#include <class_colors_design_settings.h>
|
||||
#include <colors_design_settings.h>
|
||||
#include <class_board.h>
|
||||
#include <class_module.h>
|
||||
#include <class_track.h>
|
||||
|
|
|
@ -22,7 +22,7 @@
|
|||
|
||||
/**
|
||||
* @file pcb_edit_frame.cpp
|
||||
* @brief PCB editor main window implementation.
|
||||
* @brief PCB editor main frame implementation.
|
||||
*/
|
||||
|
||||
#include <fctsys.h>
|
||||
|
@ -44,7 +44,7 @@
|
|||
#include <drc.h>
|
||||
#include <layer_widget.h>
|
||||
#include <dialog_design_rules.h>
|
||||
#include <class_pcb_layer_widget.h>
|
||||
#include <pcb_layer_widget.h>
|
||||
#include <hotkeys.h>
|
||||
#include <config_params.h>
|
||||
#include <footprint_edit_frame.h>
|
||||
|
|
|
@ -27,7 +27,7 @@
|
|||
|
||||
#include "pcb_base_edit_frame.h"
|
||||
#include "config_params.h"
|
||||
#include "class_undoredo_container.h"
|
||||
#include "undo_redo_container.h"
|
||||
#include "zones.h"
|
||||
|
||||
|
||||
|
|
|
@ -24,7 +24,7 @@
|
|||
#ifndef __PCBNEW_GENERAL_SETTINGS_H
|
||||
#define __PCBNEW_GENERAL_SETTINGS_H
|
||||
|
||||
#include <class_colors_design_settings.h>
|
||||
#include <colors_design_settings.h>
|
||||
|
||||
class wxConfigBase;
|
||||
class wxString;
|
||||
|
|
|
@ -37,7 +37,7 @@
|
|||
#include <class_board.h>
|
||||
#include <hotkeys.h>
|
||||
|
||||
#include <class_pcb_layer_box_selector.h>
|
||||
#include <pcb_layer_box_selector.h>
|
||||
|
||||
// translate aLayer to its hotkey
|
||||
static int layer2hotkey_id( PCB_LAYER_ID aLayer )
|
||||
|
|
|
@ -22,10 +22,10 @@
|
|||
* 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA
|
||||
*/
|
||||
|
||||
#ifndef CLASS_PCB_PCB_LAYER_BOX_SELECTOR_H
|
||||
#define CLASS_PCB_PCB_LAYER_BOX_SELECTOR_H 1
|
||||
#ifndef PCB_LAYER_BOX_SELECTOR_H
|
||||
#define PCB_LAYER_BOX_SELECTOR_H
|
||||
|
||||
#include <class_layer_box_selector.h>
|
||||
#include <layer_box_selector.h>
|
||||
|
||||
class PCB_BASE_FRAME;
|
||||
|
||||
|
@ -102,4 +102,4 @@ private:
|
|||
LSET getEnabledLayers() const;
|
||||
};
|
||||
|
||||
#endif // CLASS_PCB_PCB_LAYER_BOX_SELECTOR_H
|
||||
#endif // PCB_LAYER_BOX_SELECTOR_H
|
||||
|
|
|
@ -24,9 +24,10 @@
|
|||
*/
|
||||
|
||||
|
||||
/******************************************************/
|
||||
/* class_pcb_layer_widget.cpp - Pcbnew layers manager */
|
||||
/******************************************************/
|
||||
/**
|
||||
* @file pcb_layer_widget.cpp
|
||||
* @brief Pcbnew specialization of LAYER_WIDGET layers manager
|
||||
*/
|
||||
|
||||
#include <fctsys.h>
|
||||
#include <pgm_base.h>
|
||||
|
@ -43,7 +44,7 @@
|
|||
#include <menus_helpers.h>
|
||||
|
||||
#include <class_board.h>
|
||||
#include <class_pcb_layer_widget.h>
|
||||
#include <pcb_layer_widget.h>
|
||||
|
||||
#include <pcbnew.h>
|
||||
#include <collectors.h>
|
||||
|
|
|
@ -1,9 +1,9 @@
|
|||
/*
|
||||
* This program source code file is part of KiCad, a free EDA CAD application.
|
||||
*
|
||||
* Copyright (C) 2004-2015 Jean-Pierre Charras, jean-pierre.charras@gpisa-lab.inpg.fr
|
||||
* Copyright (C) 2004-2015 Jean-Pierre Charras, jp.charras at wanadoo.fr
|
||||
* Copyright (C) 2010 SoftPLC Corporation, Dick Hollenbeck <dick@softplc.com>
|
||||
* Copyright (C) 2010-2015 KiCad Developers, see change_log.txt for contributors.
|
||||
* Copyright (C) 2010-2018 KiCad Developers, see cAUTHORS.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
|
||||
|
@ -25,11 +25,11 @@
|
|||
|
||||
|
||||
/************************************************************/
|
||||
/* class_pcb_layer_widget.h : header for the layers manager */
|
||||
/* pcb_layer_widget.h : header for the layers manager */
|
||||
/************************************************************/
|
||||
|
||||
#ifndef CLASS_PCB_LAYER_WIDGET_H_
|
||||
#define CLASS_PCB_LAYER_WIDGET_H_
|
||||
#ifndef PCB_LAYER_WIDGET_H
|
||||
#define PCB_LAYER_WIDGET_H
|
||||
|
||||
#include <layer_widget.h>
|
||||
|
||||
|
@ -177,4 +177,4 @@ protected:
|
|||
void installRightLayerClickHandler();
|
||||
};
|
||||
|
||||
#endif // CLASS_PCB_LAYER_WIDGET_H_
|
||||
#endif // PCB_LAYER_WIDGET_H
|
||||
|
|
|
@ -30,7 +30,7 @@
|
|||
#include <class_drawsegment.h>
|
||||
#include <class_zone.h>
|
||||
#include <class_pcb_text.h>
|
||||
#include <class_colors_design_settings.h>
|
||||
#include <colors_design_settings.h>
|
||||
#include <class_marker_pcb.h>
|
||||
#include <class_dimension.h>
|
||||
#include <class_pcb_target.h>
|
||||
|
|
|
@ -19,7 +19,7 @@
|
|||
* with this program. If not, see <http://www.gnu.org/licenses/>.
|
||||
*/
|
||||
|
||||
#include <class_undoredo_container.h>
|
||||
#include <undo_redo_container.h>
|
||||
#include <class_board.h>
|
||||
#include <class_board_connected_item.h>
|
||||
#include <class_module.h>
|
||||
|
|
|
@ -32,7 +32,7 @@
|
|||
#include <class_drawpanel.h>
|
||||
#include <confirm.h>
|
||||
#include <pcb_base_frame.h>
|
||||
#include <class_layer_box_selector.h>
|
||||
#include <layer_box_selector.h>
|
||||
#include <class_board.h>
|
||||
#include <dialogs/dialog_layer_selection_base.h>
|
||||
|
||||
|
|
|
@ -33,7 +33,6 @@
|
|||
#include <kiface_i.h>
|
||||
#include <help_common_strings.h>
|
||||
#include <dialog_helpers.h>
|
||||
#include <class_layer_box_selector.h>
|
||||
#include <pcb_edit_frame.h>
|
||||
#include <class_drawpanel.h>
|
||||
#include <confirm.h>
|
||||
|
@ -44,7 +43,7 @@
|
|||
#include <pcbnew.h>
|
||||
#include <pcbnew_id.h>
|
||||
#include <hotkeys.h>
|
||||
#include <class_pcb_layer_box_selector.h>
|
||||
#include <pcb_layer_box_selector.h>
|
||||
|
||||
#include <wx/wupdlock.h>
|
||||
#include <memory>
|
||||
|
|
|
@ -1,7 +1,7 @@
|
|||
/*
|
||||
* This program source code file is part of KiCad, a free EDA CAD application.
|
||||
*
|
||||
* Copyright (C) 2012 Jean-Pierre Charras, jean-pierre.charras@ujf-grenoble.fr
|
||||
* Copyright (C) 2012 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) 2012-2016 KiCad Developers, see AUTHORS.txt for contributors.
|
||||
|
@ -38,7 +38,7 @@
|
|||
#include <pcbnew.h>
|
||||
#include <pcbnew_id.h>
|
||||
#include <drc.h>
|
||||
#include <class_pcb_layer_box_selector.h>
|
||||
#include <pcb_layer_box_selector.h>
|
||||
|
||||
|
||||
void PCB_EDIT_FRAME::OnUpdateLayerPair( wxUpdateUIEvent& aEvent )
|
||||
|
|
|
@ -33,7 +33,7 @@
|
|||
#include <fctsys.h>
|
||||
#include <common.h>
|
||||
#include <confirm.h>
|
||||
#include <class_undoredo_container.h>
|
||||
#include <undo_redo_container.h>
|
||||
|
||||
#include <class_board.h>
|
||||
#include <class_zone.h>
|
||||
|
|
Loading…
Reference in New Issue