mirror of
https://gitlab.com/kicad/code/kicad.git
synced 2025-04-04 23:05:30 +00:00
KIFACE_I -> KIFACE_BASE.
This commit is contained in:
parent
3aae3c6f65
commit
b84d1456d5
3d-viewer/3d_viewer/tools
bitmap2component
common
CMakeLists.txt
dialogs
draw_panel_gal.cppdrawing_sheet
eda_base_frame.cppeda_draw_frame.cppfootprint_info.cppfp_lib_table.cpphotkeys_basic.cppkiface_base.cppkiway.cpplib_table_base.cpplib_tree_model_adapter.cpptool
cvpcb
eeschema
autoplace_fields.cppcross-probing.cpp
dialogs
dialog_annotate.cppdialog_bom.cppdialog_choose_symbol.cppdialog_eeschema_page_settings.cppdialog_erc.cppdialog_global_sym_lib_table_config.cppdialog_netlist.cppdialog_plot_schematic.cppdialog_rescue_each.cppdialog_schematic_setup.cppdialog_sheet_properties.cppdialog_symbol_fields_table.cppdialog_symbol_properties.cppdialog_symbol_remap.cpppanel_eeschema_template_fieldnames.cpppanel_setup_formatting.cpppanel_setup_pinmap.cpp
eeschema.cppfiles-io.cpphierarch.cppmenubar.cppsch_edit_frame.cppsch_painter.cppschematic_settings.cppsheet.cppsymbol_editor
symbol_library.cppsymbol_viewer_frame.cpptoolbars_sch_editor.cpptools
gerbview
include
kicad
pagelayout_editor
pcb_calculator
attenuators
pcb_calculator.cpppcb_calculator_frame.cpptracks_width_versus_current.cpptransline_ident.cppvia.cpppcbnew
board_design_settings.cppcross-probing.cpp
dialogs
dialog_board_reannotate.cppdialog_board_setup.cppdialog_choose_footprint.cppdialog_copper_zones.cppdialog_drc.cppdialog_export_step.cppdialog_export_vrml.cppdialog_footprint_wizard_list.cppdialog_global_fp_lib_table_config.cppdialog_netlist.cppdialog_non_copper_zones_properties.cppdialog_plot.cppdialog_print_pcbnew.cppdialog_rule_area_properties.cppdialog_update_pcb.cpppanel_pcbnew_action_plugins.cpp
edit.cppedit_zone_helpers.cppexporters
files.cppfootprint_edit_frame.cppfootprint_edit_frame.hfootprint_libraries_utils.cppfootprint_wizard_frame.cppimport_gfx
menubar_pcb_editor.cpppcb_base_edit_frame.cpppcb_base_frame.cpppcb_edit_frame.cpppcb_edit_frame.hpcbnew.cppplugins/kicad
toolbars_pcb_editor.cpptools
qa
scripting
@ -26,7 +26,7 @@
|
||||
#include <eda_3d_canvas.h>
|
||||
#include <eda_3d_viewer_frame.h>
|
||||
#include <id.h>
|
||||
#include <kiface_i.h>
|
||||
#include <kiface_base.h>
|
||||
#include <tools/eda_3d_controller.h>
|
||||
#include "eda_3d_actions.h"
|
||||
#include <3d_rendering/legacy/render_3d_legacy.h>
|
||||
|
@ -27,7 +27,7 @@
|
||||
#include <bitmap2cmp_settings.h>
|
||||
#include <bitmap_io.h>
|
||||
#include <bitmaps.h>
|
||||
#include <kiface_i.h>
|
||||
#include <kiface_base.h>
|
||||
#include <math/util.h> // for KiROUND
|
||||
#include <kiway.h>
|
||||
#include <potracelib.h>
|
||||
|
@ -24,7 +24,7 @@
|
||||
|
||||
#include <bitmap2cmp_gui.h>
|
||||
#include <bitmap2cmp_settings.h>
|
||||
#include <kiface_i.h>
|
||||
#include <kiface_base.h>
|
||||
#include <kiway.h>
|
||||
#include <pgm_base.h>
|
||||
#include <settings/settings_manager.h>
|
||||
@ -32,7 +32,7 @@
|
||||
|
||||
namespace BMP2CMP {
|
||||
|
||||
static struct IFACE : public KIFACE_I
|
||||
static struct IFACE : public KIFACE_BASE
|
||||
{
|
||||
bool OnKifaceStart( PGM_BASE* aProgram, int aCtlBits ) override;
|
||||
|
||||
@ -60,7 +60,7 @@ static struct IFACE : public KIFACE_I
|
||||
}
|
||||
|
||||
IFACE( const char* aDSOname, KIWAY::FACE_T aType ) :
|
||||
KIFACE_I( aDSOname, aType )
|
||||
KIFACE_BASE( aDSOname, aType )
|
||||
{}
|
||||
|
||||
} kiface( "BMP2CMP", KIWAY::FACE_BMP2CMP );
|
||||
@ -72,7 +72,7 @@ using namespace BMP2CMP;
|
||||
static PGM_BASE* process;
|
||||
|
||||
|
||||
KIFACE_I& Kiface()
|
||||
KIFACE_BASE& Kiface()
|
||||
{
|
||||
return kiface;
|
||||
}
|
||||
|
@ -347,7 +347,7 @@ set( COMMON_SRCS
|
||||
grid_tricks.cpp
|
||||
hotkey_store.cpp
|
||||
hotkeys_basic.cpp
|
||||
kiface_i.cpp
|
||||
kiface_base.cpp
|
||||
kiid.cpp
|
||||
kiway.cpp
|
||||
kiway_express.cpp
|
||||
|
@ -21,7 +21,7 @@
|
||||
#include <dialogs/dialog_color_picker.h>
|
||||
#include <cmath>
|
||||
#include <algorithm>
|
||||
#include <kiface_i.h>
|
||||
#include <kiface_base.h>
|
||||
#include <settings/app_settings.h>
|
||||
#include <widgets/color_swatch.h>
|
||||
#include <wx/bitmap.h>
|
||||
|
@ -24,7 +24,7 @@
|
||||
#include <eda_draw_frame.h>
|
||||
#include <eda_item.h>
|
||||
#include <gr_basic.h>
|
||||
#include <kiface_i.h>
|
||||
#include <kiface_base.h>
|
||||
#include <macros.h>
|
||||
#include <math/util.h> // for KiROUND, Clamp
|
||||
#include <project.h>
|
||||
|
@ -27,7 +27,7 @@
|
||||
#include <bitmaps.h>
|
||||
#include <dialog_shim.h>
|
||||
#include <gal/dpi_scaling.h>
|
||||
#include <kiface_i.h>
|
||||
#include <kiface_base.h>
|
||||
#include <pgm_base.h>
|
||||
#include <id.h>
|
||||
#include <settings/common_settings.h>
|
||||
|
@ -27,7 +27,7 @@
|
||||
|
||||
#include <confirm.h>
|
||||
#include <eda_draw_frame.h>
|
||||
#include <kiface_i.h>
|
||||
#include <kiface_base.h>
|
||||
#include <macros.h>
|
||||
#include <settings/app_settings.h>
|
||||
#include <trace_helpers.h>
|
||||
|
@ -44,7 +44,7 @@
|
||||
* storage (wrapped in a DS_PROXY_UNDO_ITEM).
|
||||
*/
|
||||
|
||||
#include <kiface_i.h>
|
||||
#include <kiface_base.h>
|
||||
#include <title_block.h>
|
||||
#include <common.h>
|
||||
#include <eda_item.h>
|
||||
|
@ -31,7 +31,7 @@
|
||||
#include <eda_dde.h>
|
||||
#include <filehistory.h>
|
||||
#include <id.h>
|
||||
#include <kiface_i.h>
|
||||
#include <kiface_base.h>
|
||||
#include <menus_helpers.h>
|
||||
#include <panel_hotkeys_editor.h>
|
||||
#include <paths.h>
|
||||
|
@ -31,7 +31,7 @@
|
||||
#include <eda_draw_frame.h>
|
||||
#include <filehistory.h>
|
||||
#include <id.h>
|
||||
#include <kiface_i.h>
|
||||
#include <kiface_base.h>
|
||||
#include <lockfile.h>
|
||||
#include <macros.h>
|
||||
#include <page_info.h>
|
||||
|
@ -37,7 +37,7 @@
|
||||
#include <lib_id.h>
|
||||
#include <thread>
|
||||
#include <utility>
|
||||
#include <kiface_i.h>
|
||||
#include <kiface_base.h>
|
||||
|
||||
FOOTPRINT_INFO* FOOTPRINT_LIST::GetFootprintInfo( const wxString& aLibNickname,
|
||||
const wxString& aFootprintName )
|
||||
|
@ -24,7 +24,7 @@
|
||||
*/
|
||||
|
||||
|
||||
#include <kiface_i.h>
|
||||
#include <kiface_base.h>
|
||||
#include <footprint_info.h>
|
||||
#include <lib_id.h>
|
||||
#include <lib_table_lexer.h>
|
||||
|
@ -23,7 +23,7 @@
|
||||
* 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA
|
||||
*/
|
||||
|
||||
#include <kiface_i.h>
|
||||
#include <kiface_base.h>
|
||||
#include <hotkeys_basic.h>
|
||||
#include <id.h>
|
||||
#include <string_utils.h>
|
||||
|
@ -23,7 +23,7 @@
|
||||
* 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA
|
||||
*/
|
||||
|
||||
#include <kiface_i.h>
|
||||
#include <kiface_base.h>
|
||||
#include <kiway.h>
|
||||
#include <search_stack.h>
|
||||
#include <systemdirsappend.h>
|
||||
@ -81,7 +81,7 @@ static void setSearchPaths( SEARCH_STACK* aDst, KIWAY::FACE_T aId )
|
||||
}
|
||||
|
||||
|
||||
bool KIFACE_I::start_common( int aCtlBits )
|
||||
bool KIFACE_BASE::start_common( int aCtlBits )
|
||||
{
|
||||
m_start_flags = aCtlBits;
|
||||
m_bm.Init();
|
||||
@ -91,7 +91,7 @@ bool KIFACE_I::start_common( int aCtlBits )
|
||||
}
|
||||
|
||||
|
||||
void KIFACE_I::end_common()
|
||||
void KIFACE_BASE::end_common()
|
||||
{
|
||||
m_bm.End();
|
||||
}
|
@ -290,12 +290,12 @@ KIFACE* KIWAY::KiFACE( FACE_T aFaceId, bool doLoad )
|
||||
// by dso destructor.
|
||||
// However:
|
||||
|
||||
// There is a file installation bug. We only look for KIFACE_I's which we know
|
||||
// There is a file installation bug. We only look for KIFACE's which we know
|
||||
// to exist, and we did not find one. If we do not find one, this is an
|
||||
// installation bug.
|
||||
|
||||
msg = wxString::Format( _( "Fatal Installation Bug. File:\n"
|
||||
"\"%s\"\ncould not be loaded\n" ), dname );
|
||||
"'%s'\ncould not be loaded\n" ), dname );
|
||||
|
||||
if( ! wxFileExists( dname ) )
|
||||
msg << _( "It is missing.\n" );
|
||||
|
@ -27,7 +27,7 @@
|
||||
#include <wx/filename.h>
|
||||
#include <set>
|
||||
#include <common.h>
|
||||
#include <kiface_i.h>
|
||||
#include <kiface_base.h>
|
||||
#include <lib_table_base.h>
|
||||
#include <lib_table_lexer.h>
|
||||
#include <macros.h>
|
||||
|
@ -21,7 +21,7 @@
|
||||
|
||||
#include <eda_base_frame.h>
|
||||
#include <eda_pattern_match.h>
|
||||
#include <kiface_i.h>
|
||||
#include <kiface_base.h>
|
||||
#include <config_params.h>
|
||||
#include <lib_tree_model_adapter.h>
|
||||
#include <project/project_file.h>
|
||||
|
@ -28,7 +28,7 @@
|
||||
#include <eda_base_frame.h>
|
||||
#include <functional>
|
||||
#include <id.h>
|
||||
#include <kiface_i.h>
|
||||
#include <kiface_base.h>
|
||||
#include <menus_helpers.h>
|
||||
#include <tool/action_menu.h>
|
||||
#include <tool/actions.h>
|
||||
@ -218,7 +218,7 @@ void ACTION_MENU::AddClose( const wxString& aAppname )
|
||||
}
|
||||
|
||||
|
||||
void ACTION_MENU::AddQuitOrClose( KIFACE_I* aKiface, wxString aAppname )
|
||||
void ACTION_MENU::AddQuitOrClose( KIFACE_BASE* aKiface, wxString aAppname )
|
||||
{
|
||||
if( !aKiface || aKiface->IsSingle() ) // not when under a project mgr
|
||||
{
|
||||
|
@ -38,7 +38,7 @@
|
||||
#include <base_screen.h>
|
||||
#include <tool/common_control.h>
|
||||
#include <id.h>
|
||||
#include <kiface_i.h>
|
||||
#include <kiface_base.h>
|
||||
#include <dialogs/dialog_configure_paths.h>
|
||||
#include <eda_doc.h>
|
||||
#include <wx/msgdlg.h>
|
||||
|
@ -31,7 +31,7 @@
|
||||
#include <eda_draw_frame.h>
|
||||
#include <gal/graphics_abstraction_layer.h>
|
||||
#include <id.h>
|
||||
#include <kiface_i.h>
|
||||
#include <kiface_base.h>
|
||||
#include <project.h>
|
||||
#include <settings/app_settings.h>
|
||||
#include <tool/actions.h>
|
||||
|
@ -27,7 +27,7 @@
|
||||
#include <tool/conditional_menu.h>
|
||||
#include <tool/action_menu.h>
|
||||
#include <menus_helpers.h>
|
||||
#include <kiface_i.h>
|
||||
#include <kiface_base.h>
|
||||
|
||||
|
||||
CONDITIONAL_MENU::CONDITIONAL_MENU( TOOL_INTERACTIVE* aTool ) :
|
||||
|
@ -31,7 +31,7 @@
|
||||
// 'FT232BL' 'QFP:LQFP-32_7x7mm_Pitch0.8mm'
|
||||
|
||||
|
||||
#include <kiface_i.h>
|
||||
#include <kiface_base.h>
|
||||
#include <string_utils.h>
|
||||
#include <macros.h>
|
||||
|
||||
|
@ -26,7 +26,7 @@
|
||||
#include <confirm.h>
|
||||
#include <fp_lib_table.h>
|
||||
#include <footprint_info_impl.h>
|
||||
#include <kiface_i.h>
|
||||
#include <kiface_base.h>
|
||||
#include <pgm_base.h>
|
||||
#include <settings/settings_manager.h>
|
||||
|
||||
@ -37,12 +37,12 @@
|
||||
|
||||
namespace CV {
|
||||
|
||||
static struct IFACE : public KIFACE_I
|
||||
static struct IFACE : public KIFACE_BASE
|
||||
{
|
||||
// Of course all are virtual overloads, implementations of the KIFACE.
|
||||
|
||||
IFACE( const char* aName, KIWAY::FACE_T aType ) :
|
||||
KIFACE_I( aName, aType )
|
||||
KIFACE_BASE( aName, aType )
|
||||
{}
|
||||
|
||||
bool OnKifaceStart( PGM_BASE* aProgram, int aCtlBits ) override;
|
||||
@ -101,7 +101,7 @@ using namespace CV;
|
||||
static PGM_BASE* process;
|
||||
|
||||
|
||||
KIFACE_I& Kiface() { return kiface; }
|
||||
KIFACE_BASE& Kiface() { return kiface; }
|
||||
|
||||
|
||||
// KIFACE_GETTER's actual spelling is a substitution macro found in kiway.h.
|
||||
|
@ -27,7 +27,7 @@
|
||||
#include <confirm.h>
|
||||
#include <eda_dde.h>
|
||||
#include <fp_lib_table.h>
|
||||
#include <kiface_i.h>
|
||||
#include <kiface_base.h>
|
||||
#include <kiplatform/app.h>
|
||||
#include <kiway_express.h>
|
||||
#include <macros.h>
|
||||
|
Some files were not shown because too many files have changed in this diff Show More
Loading…
Reference in New Issue
Block a user