mirror of
https://gitlab.com/kicad/code/kicad.git
synced 2025-04-04 22:35:30 +00:00
Remove useless wx/wx.h include, that create sometimes compil warnings on msys.
wx/wx.h includes all wxWidgets .h files, and sometimes creates collision names in #define between kicad and windows headers Moreover, blindly including a lot of useless files is compil time consuming
This commit is contained in:
parent
cc1bfd4c18
commit
0427bda768
3d-viewer/3d_viewer
bitmap2component
common
cvpcb
eeschema
dialogs
dialog_fields_editor_global.cppdialog_netlist.cppdialog_sch_import_settings.cppdialog_spice_model.cpppanel_sym_lib_table.cpp
sch_edit_frame.cppsheet.cppsim
symbol_editor
tools
gerbview
include
kicad
pagelayout_editor
pcbnew
build_BOM_from_board.cpp
dialogs
dialog_board_statistics.cppdialog_cleanup_graphics.cppdialog_cleanup_tracks_and_vias.cppdialog_footprint_checker.cppdialog_gendrill.cppdialog_import_settings.cppdialog_net_inspector.cppdialog_pad_basicshapes_properties.cppdialog_pad_properties.cppdialog_print_pcbnew.cpppanel_fp_lib_table.cpp
exporters
files.cppimport_gfx
microwave
netlist_reader
swig
toolbars_pcb_editor.cpptools
@ -52,6 +52,7 @@
|
||||
#include <tool/action_toolbar.h>
|
||||
#include <widgets/infobar.h>
|
||||
#include <wildcards_and_files_ext.h>
|
||||
#include <wx/filedlg.h>
|
||||
|
||||
/**
|
||||
* Flag to enable 3D viewer main frame window debug tracing.
|
||||
|
@ -35,6 +35,11 @@
|
||||
#include <wildcards_and_files_ext.h>
|
||||
#include <wx/clipbrd.h>
|
||||
#include <wx/rawbmp.h>
|
||||
#include <wx/filedlg.h>
|
||||
#include <wx/rawbmp.h>
|
||||
#include <wx/msgdlg.h>
|
||||
#include <wx/dcclient.h>
|
||||
|
||||
|
||||
#include "bitmap2cmp_gui_base.h"
|
||||
|
||||
|
@ -36,6 +36,8 @@
|
||||
#include <drawing_sheet/ds_painter.h>
|
||||
#include <wx/valgen.h>
|
||||
#include <wx/tokenzr.h>
|
||||
#include <wx/filedlg.h>
|
||||
#include <wx/dcmemory.h>
|
||||
|
||||
#define MAX_PAGE_EXAMPLE_SIZE 200
|
||||
|
||||
|
@ -59,6 +59,9 @@
|
||||
#include <wx/snglinst.h>
|
||||
#include <dialogs/dialog_grid_settings.h>
|
||||
#include <widgets/ui_common.h>
|
||||
#include <wx/dirdlg.h>
|
||||
#include <wx/filedlg.h>
|
||||
#include <wx/msgdlg.h>
|
||||
|
||||
#define FR_HISTORY_LIST_CNT 10 ///< Maximum size of the find/replace history stacks.
|
||||
|
||||
|
@ -23,6 +23,8 @@
|
||||
*/
|
||||
|
||||
#include <kiway_express.h>
|
||||
#include <wx/wx.h>
|
||||
|
||||
|
||||
//IMPLEMENT_DYNAMIC_CLASS( KIWAY_EXPRESS, wxEvent )
|
||||
|
||||
|
@ -29,6 +29,7 @@
|
||||
#include <project/project_archiver.h>
|
||||
#include <reporter.h>
|
||||
#include <wildcards_and_files_ext.h>
|
||||
#include <wx/log.h>
|
||||
|
||||
|
||||
#define ZipFileExtension wxT( "zip" )
|
||||
|
@ -42,6 +42,7 @@
|
||||
#include <wx/popupwin.h>
|
||||
#include <wx/renderer.h>
|
||||
#include <wx/sizer.h>
|
||||
#include <wx/dcclient.h>
|
||||
|
||||
|
||||
wxBitmap MakeDisabledBitmap( const wxBitmap& aSource )
|
||||
|
@ -38,6 +38,7 @@
|
||||
#include <kicad_curl/kicad_curl_easy.h>
|
||||
#include <dialogs/dialog_configure_paths.h>
|
||||
#include <eda_doc.h>
|
||||
#include <wx/msgdlg.h>
|
||||
|
||||
#define URL_GET_INVOLVED "https://kicad.org/contribute/"
|
||||
#define URL_DONATE "https://go.kicad.org/app-donate"
|
||||
|
@ -43,6 +43,8 @@
|
||||
#include <wx/stc/stc.h>
|
||||
#include <kiplatform/app.h>
|
||||
|
||||
#include <wx/wx.h> // for GetForegroundWindow() on wxMSW
|
||||
|
||||
///< Stores information about a mouse button state
|
||||
struct TOOL_DISPATCHER::BUTTON_STATE
|
||||
{
|
||||
|
@ -38,6 +38,8 @@
|
||||
#include <widgets/ui_common.h>
|
||||
#include <class_draw_panel_gal.h>
|
||||
|
||||
#include <wx/wx.h> // for GetForegroundWindow() on wxMSW
|
||||
|
||||
#if defined __WXMSW__
|
||||
#define USE_MOUSE_CAPTURE
|
||||
#endif
|
||||
|
@ -28,6 +28,7 @@
|
||||
#include <wx/sizer.h>
|
||||
#include <wx/timer.h>
|
||||
#include <wx/hyperlink.h>
|
||||
#include <wx/bmpbuttn.h>
|
||||
#include <eda_base_frame.h>
|
||||
|
||||
|
||||
|
@ -30,6 +30,12 @@
|
||||
#include <netinfo.h>
|
||||
#include <wx/arrstr.h>
|
||||
#include <wx/display.h>
|
||||
#include <wx/valtext.h>
|
||||
#include <wx/listbox.h>
|
||||
#include <wx/stattext.h>
|
||||
#include <wx/sizer.h>
|
||||
#include <wx/textctrl.h>
|
||||
|
||||
|
||||
wxDEFINE_EVENT( NET_SELECTED, wxCommandEvent );
|
||||
|
||||
|
@ -30,6 +30,8 @@
|
||||
#include <regex>
|
||||
#include <wildcards_and_files_ext.h>
|
||||
#include <wx/regex.h>
|
||||
#include <wx/wx.h>
|
||||
|
||||
|
||||
bool compareFileExtensions( const std::string& aExtension,
|
||||
const std::vector<std::string>& aReference, bool aCaseSensitive )
|
||||
|
@ -52,6 +52,7 @@
|
||||
#include <tools/cvpcb_actions.h>
|
||||
#include <tools/cvpcb_association_tool.h>
|
||||
#include <tools/cvpcb_control.h>
|
||||
#include <wx/button.h>
|
||||
|
||||
#define CVPCB_MAINFRAME_NAME wxT( "CvpcbFrame" )
|
||||
|
||||
|
@ -39,6 +39,8 @@
|
||||
#include <settings/settings_manager.h>
|
||||
#include <wildcards_and_files_ext.h>
|
||||
|
||||
#include <wx/filedlg.h>
|
||||
|
||||
|
||||
DIALOG_CONFIG_EQUFILES::DIALOG_CONFIG_EQUFILES( CVPCB_MAINFRAME* aParent ) :
|
||||
DIALOG_CONFIG_EQUFILES_BASE( aParent )
|
||||
|
@ -28,6 +28,7 @@
|
||||
|
||||
#include <cvpcb_mainframe.h>
|
||||
#include <listboxes.h>
|
||||
#include <wx/dcclient.h>
|
||||
|
||||
|
||||
/******************************************************************************
|
||||
|
@ -42,6 +42,7 @@
|
||||
#include <widgets/wx_grid.h>
|
||||
#include <wx/grid.h>
|
||||
#include <wx/msgdlg.h>
|
||||
#include <wx/textdlg.h>
|
||||
|
||||
#include "dialog_fields_editor_global.h"
|
||||
|
||||
|
@ -49,6 +49,9 @@
|
||||
|
||||
#include <eeschema_id.h>
|
||||
#include <wx/regex.h>
|
||||
#include <wx/filedlg.h>
|
||||
#include <wx/msgdlg.h>
|
||||
|
||||
|
||||
|
||||
#define CUSTOMPANEL_COUNTMAX 8 // Max number of netlist plugins
|
||||
|
@ -26,6 +26,7 @@
|
||||
#include <wildcards_and_files_ext.h>
|
||||
#include <confirm.h>
|
||||
#include <schematic.h>
|
||||
#include <wx/filedlg.h>
|
||||
|
||||
#include <dialog_sch_import_settings.h>
|
||||
|
||||
|
@ -33,6 +33,8 @@
|
||||
#include <wx/textfile.h>
|
||||
#include <wx/tokenzr.h>
|
||||
#include <wx/wupdlock.h>
|
||||
#include <wx/filedlg.h>
|
||||
|
||||
|
||||
#include <cctype>
|
||||
#include <cstring>
|
||||
|
@ -46,6 +46,8 @@
|
||||
#include <widgets/grid_readonly_text_helpers.h>
|
||||
#include <widgets/grid_text_button_helpers.h>
|
||||
#include <sch_file_versions.h>
|
||||
#include <wx/filedlg.h>
|
||||
|
||||
|
||||
|
||||
// clang-format off
|
||||
|
@ -77,6 +77,9 @@
|
||||
#include <widgets/infobar.h>
|
||||
#include <wildcards_and_files_ext.h>
|
||||
#include <wx/cmdline.h>
|
||||
#include <wx/app.h>
|
||||
#include <wx/filedlg.h>
|
||||
|
||||
#include <gal/graphics_abstraction_layer.h>
|
||||
#include <drawing_sheet/ds_proxy_view_item.h>
|
||||
|
||||
|
@ -28,7 +28,6 @@
|
||||
#include <project.h>
|
||||
#include <wildcards_and_files_ext.h>
|
||||
#include <tool/tool_manager.h>
|
||||
#include <wx/clipbrd.h>
|
||||
#include <sch_edit_frame.h>
|
||||
#include <sch_plugins/legacy/sch_legacy_plugin.h>
|
||||
#include <sch_sheet.h>
|
||||
@ -40,6 +39,9 @@
|
||||
#include <dialogs/dialog_sheet_properties.h>
|
||||
#include <tool/actions.h>
|
||||
|
||||
#include <wx/clipbrd.h>
|
||||
#include <wx/dcmemory.h>
|
||||
|
||||
|
||||
bool SCH_EDIT_FRAME::CheckSheetForRecursion( SCH_SHEET* aSheet, SCH_SHEET_PATH* aHierarchy )
|
||||
{
|
||||
|
@ -48,6 +48,7 @@
|
||||
#include <tools/ee_actions.h>
|
||||
#include <eeschema_settings.h>
|
||||
#include <wx/ffile.h>
|
||||
#include <wx/filedlg.h>
|
||||
#include <dialog_shim.h>
|
||||
|
||||
SIM_PLOT_TYPE operator|( SIM_PLOT_TYPE aFirst, SIM_PLOT_TYPE aSecond )
|
||||
|
@ -71,6 +71,7 @@
|
||||
#include <widgets/symbol_tree_pane.h>
|
||||
#include <wildcards_and_files_ext.h>
|
||||
#include <panel_sym_lib_table.h>
|
||||
#include <wx/choicdlg.h>
|
||||
|
||||
|
||||
bool SYMBOL_EDIT_FRAME::m_showDeMorgan = false;
|
||||
|
Some files were not shown because too many files have changed in this diff Show More
Loading…
Reference in New Issue
Block a user