rename a few files related to the footprint viewer.
This commit is contained in:
parent
0668cd9d4c
commit
be746a8e3d
|
@ -250,7 +250,7 @@ set( PCBNEW_CLASS_SRCS
|
|||
modeditoptions.cpp
|
||||
footprint_edit_frame.cpp
|
||||
modules.cpp
|
||||
modview_frame.cpp
|
||||
footprint_viewer_frame.cpp
|
||||
move-drag_pads.cpp
|
||||
move_or_drag_track.cpp
|
||||
muwave_command.cpp
|
||||
|
@ -278,7 +278,7 @@ set( PCBNEW_CLASS_SRCS
|
|||
swap_layers.cpp
|
||||
target_edit.cpp
|
||||
tool_modedit.cpp
|
||||
tool_modview.cpp
|
||||
tool_footprint_viewer.cpp
|
||||
tool_onrightclick.cpp
|
||||
tool_pcb.cpp
|
||||
toolbars_update_user_interface.cpp
|
||||
|
|
|
@ -48,7 +48,7 @@
|
|||
#include <class_track.h>
|
||||
#include <class_zone.h>
|
||||
#include <class_pcb_text.h>
|
||||
#include <modview_frame.h>
|
||||
#include <footprint_viewer_frame.h>
|
||||
#include <pcb_layer_box_selector.h>
|
||||
#include <dialog_drc.h>
|
||||
#include <dialog_global_edit_tracks_and_vias.h>
|
||||
|
|
|
@ -51,7 +51,7 @@
|
|||
#include <dialogs/dialog_modedit_display_options.h>
|
||||
#include <dialog_hotkeys_editor.h>
|
||||
#include <footprint_edit_frame.h>
|
||||
#include <modview_frame.h>
|
||||
#include <footprint_viewer_frame.h>
|
||||
#include <wildcards_and_files_ext.h>
|
||||
#include <pcb_layer_widget.h>
|
||||
#include <invoke_pcb_dialog.h>
|
||||
|
|
|
@ -24,7 +24,7 @@
|
|||
*/
|
||||
|
||||
/**
|
||||
* @file modview_frame.cpp
|
||||
* @file footprint_viewer_frame.cpp
|
||||
*/
|
||||
|
||||
#include <fctsys.h>
|
||||
|
@ -45,7 +45,7 @@
|
|||
|
||||
#include <pcbnew.h>
|
||||
#include <pcbnew_id.h>
|
||||
#include <modview_frame.h>
|
||||
#include <footprint_viewer_frame.h>
|
||||
#include <footprint_info.h>
|
||||
|
||||
#include <hotkeys.h>
|
|
@ -1,8 +1,8 @@
|
|||
/*
|
||||
* This program source code file is part of KiCad, a free EDA CAD application.
|
||||
*
|
||||
* Copyright (C) 2012 Jean-Pierre Charras, jaen-pierre.charras@gipsa-lab.inpg.com
|
||||
* Copyright (C) 2004-2012 KiCad Developers, see change_log.txt for contributors.
|
||||
* Copyright (C) 2018 Jean-Pierre Charras, jap.charras at wanadoo.fr
|
||||
* Copyright (C) 2004-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
|
||||
|
@ -23,11 +23,11 @@
|
|||
*/
|
||||
|
||||
/**
|
||||
* @file modview_frame.h
|
||||
* @file footprint_viewer_frame.h
|
||||
*/
|
||||
|
||||
#ifndef MODVIEWFRM_H_
|
||||
#define MODVIEWFRM_H_
|
||||
#ifndef FOOTPRINT_VIEWER_FRAME_H
|
||||
#define FOOTPRINT_VIEWER_FRAME_H
|
||||
|
||||
|
||||
#include <wx/gdicmn.h>
|
||||
|
@ -184,4 +184,4 @@ private:
|
|||
DECLARE_EVENT_TABLE()
|
||||
};
|
||||
|
||||
#endif // MODVIEWFRM_H_
|
||||
#endif // FOOTPRINT_VIEWER_FRAME_H
|
|
@ -29,7 +29,7 @@
|
|||
#include <fctsys.h>
|
||||
#include <pcbnew.h>
|
||||
#include <pcb_edit_frame.h>
|
||||
#include <modview_frame.h>
|
||||
#include <footprint_viewer_frame.h>
|
||||
#include <pcbnew_id.h>
|
||||
|
||||
#include <hotkeys.h>
|
||||
|
|
|
@ -56,7 +56,7 @@ using namespace std::placeholders;
|
|||
#include <footprint_info.h>
|
||||
#include <footprint_info_impl.h>
|
||||
#include <dialog_get_component.h>
|
||||
#include <modview_frame.h>
|
||||
#include <footprint_viewer_frame.h>
|
||||
#include <wildcards_and_files_ext.h>
|
||||
|
||||
|
||||
|
|
|
@ -51,7 +51,7 @@
|
|||
#include <protos.h>
|
||||
#include <pcbnew_id.h>
|
||||
#include <footprint_edit_frame.h>
|
||||
#include <modview_frame.h>
|
||||
#include <footprint_viewer_frame.h>
|
||||
#include <collectors.h>
|
||||
#include <tool/tool_manager.h>
|
||||
#include <tools/pcb_actions.h>
|
||||
|
|
|
@ -56,7 +56,7 @@
|
|||
#include <class_draw_panel_gal.h>
|
||||
#include <fp_lib_table.h>
|
||||
#include <footprint_edit_frame.h>
|
||||
#include <modview_frame.h>
|
||||
#include <footprint_viewer_frame.h>
|
||||
#include <footprint_wizard_frame.h>
|
||||
#include <footprint_preview_panel.h>
|
||||
#include <footprint_info_impl.h>
|
||||
|
|
|
@ -52,7 +52,7 @@
|
|||
#include <pcbnew.h>
|
||||
#include <pcbnew_id.h>
|
||||
#include <hotkeys.h>
|
||||
#include <modview_frame.h>
|
||||
#include <footprint_viewer_frame.h>
|
||||
|
||||
#include <invoke_pcb_dialog.h>
|
||||
#include <dialog_mask_clearance.h>
|
||||
|
|
|
@ -21,8 +21,8 @@
|
|||
*/
|
||||
|
||||
/**
|
||||
* @file tool_modview.cpp
|
||||
* @brief Build the toolbars for the library browser.
|
||||
* @file tool_footprint_viewer.cpp
|
||||
* @brief Build the toolbars for the footprint library browser.
|
||||
*/
|
||||
|
||||
|
||||
|
@ -32,7 +32,7 @@
|
|||
|
||||
#include "help_common_strings.h"
|
||||
#include "hotkeys.h"
|
||||
#include "modview_frame.h"
|
||||
#include "footprint_viewer_frame.h"
|
||||
#include "pcbnew.h"
|
||||
#include "pcbnew_id.h"
|
||||
|
|
@ -47,7 +47,7 @@
|
|||
#include <class_board.h>
|
||||
#include <fp_lib_table.h>
|
||||
#include <footprint_edit_frame.h>
|
||||
#include <modview_frame.h>
|
||||
#include <footprint_viewer_frame.h>
|
||||
#include <footprint_wizard_frame.h>
|
||||
|
||||
#include <pcb_edit_frame.h>
|
||||
|
|
Loading…
Reference in New Issue