2012-08-03 15:43:15 +00:00
|
|
|
/*
|
|
|
|
* This program source code file is part of KiCad, a free EDA CAD application.
|
|
|
|
*
|
|
|
|
* Copyright (C) 2011 Jean-Pierre Charras, jean-pierre.charras@ujf-grenoble.fr
|
|
|
|
* Copyright (C) 2009 Dick Hollenbeck, dick@softplc.com
|
2020-02-24 23:17:30 +00:00
|
|
|
* Copyright (C) 2004-2020 KiCad Developers, see AUTHORS.txt for contributors.
|
2012-08-03 15:43:15 +00:00
|
|
|
*
|
|
|
|
* This program is free software; you can redistribute it and/or
|
|
|
|
* modify it under the terms of the GNU General Public License
|
|
|
|
* as published by the Free Software Foundation; either version 2
|
|
|
|
* of the License, or (at your option) any later version.
|
|
|
|
*
|
|
|
|
* This program is distributed in the hope that it will be useful,
|
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
* GNU General Public License for more details.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU General Public License
|
|
|
|
* along with this program; if not, you may find one here:
|
|
|
|
* http://www.gnu.org/licenses/old-licenses/gpl-2.0.html
|
|
|
|
* or you may search the http://www.gnu.org website for the version 2 license,
|
|
|
|
* or you may write to the Free Software Foundation, Inc.,
|
|
|
|
* 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA
|
|
|
|
*/
|
|
|
|
|
2007-05-06 16:03:28 +00:00
|
|
|
|
|
|
|
#ifndef _DIALOG_DRC_H_
|
|
|
|
#define _DIALOG_DRC_H_
|
|
|
|
|
2009-06-18 13:30:52 +00:00
|
|
|
#include <wx/htmllbox.h>
|
2012-01-23 04:33:36 +00:00
|
|
|
#include <fctsys.h>
|
|
|
|
#include <pcbnew.h>
|
2020-02-19 09:31:32 +00:00
|
|
|
#include <drc/drc.h>
|
2020-03-16 11:05:01 +00:00
|
|
|
#include <rc_item.h>
|
2012-01-23 04:33:36 +00:00
|
|
|
#include <class_marker_pcb.h>
|
|
|
|
#include <class_board.h>
|
|
|
|
#include <dialog_drc_base.h>
|
2018-02-03 09:09:53 +00:00
|
|
|
#include <widgets/unit_binder.h>
|
2007-11-27 01:34:35 +00:00
|
|
|
|
2020-02-27 22:00:14 +00:00
|
|
|
|
2011-09-23 13:57:12 +00:00
|
|
|
class BOARD_DESIGN_SETTINGS;
|
|
|
|
|
|
|
|
|
2019-09-19 07:11:45 +00:00
|
|
|
#define DIALOG_DRC_WINDOW_NAME "DialogDrcWindowName"
|
2007-05-06 16:03:28 +00:00
|
|
|
|
2020-02-27 22:00:14 +00:00
|
|
|
class
|
2020-03-16 11:05:01 +00:00
|
|
|
DIALOG_DRC: public DIALOG_DRC_BASE
|
2007-11-27 01:34:35 +00:00
|
|
|
{
|
2009-06-18 13:30:52 +00:00
|
|
|
public:
|
++PCBNew
* Removed Pcb_Frame argument from BOARD() constructor, since it precludes
having a BOARD being edited by more than one editor, it was a bad design.
And this meant removing m_PcbFrame from BOARD.
* removed BOARD::SetWindowFrame(), and BOARD::m_PcbFrame
* Removed the global BOARD_DESIGN_SETTINGS which was in class_board.cpp
* added BOARD_DESIGN_SETTINGS to the BOARD class, a full instance
* a couple dialogs now only change BOARD_DESIGN_SETTINGS when OK is pressed,
such as dialog_mask_clearance, dialog_drc, etc.
* Removed common/pcbcommon.cpp's int g_CurrentVersionPCB = 1 and replaced it
with build_version.h's #define BOARD_FILE_VERSION, although there may be a
better place for this constant.
* Made the public functions in PARAM_CFG_ARRAY be type const.
void SaveParam(..) const and void ReadParam(..) const
* PARAM_CFG_BASE now has virtual destructor since we have various way of
destroying the derived class and boost::ptr_vector must be told about this.
* Pass const PARAM_CFG_ARRAY& instead of PARAM_CFG_ARRAY so that we can use
an automatic PARAM_CFG_ARRAY which is on the stack.\
* PCB_EDIT_FRAME::GetProjectFileParameters() may no longer cache the array,
since it has to access the current BOARD and the BOARD can change.
Remember BOARD_DESIGN_SETTINGS are now in the BOARD.
* Made the m_BoundingBox member private, this was a brutally hard task,
and indicative of the lack of commitment to accessors and object oriented
design on the part of KiCad developers. We must do better.
Added BOARD::GetBoundingBox, SetBoundingBox(), ComputeBoundingBox().
* Added PCB_BASE_FRAME::GetBoardBoundingBox() which calls BOARD::ComputeBoundingBox()
2011-12-05 06:15:33 +00:00
|
|
|
BOARD_DESIGN_SETTINGS m_BrdSettings;
|
2010-01-31 20:01:46 +00:00
|
|
|
|
2009-06-18 13:30:52 +00:00
|
|
|
/// Constructors
|
2020-03-16 11:05:01 +00:00
|
|
|
DIALOG_DRC( DRC* aTester, PCB_EDIT_FRAME* aEditorFrame, wxWindow* aParent );
|
|
|
|
~DIALOG_DRC();
|
2007-05-06 16:03:28 +00:00
|
|
|
|
2020-03-16 11:05:01 +00:00
|
|
|
void SetMarkersProvider( RC_ITEMS_PROVIDER* aProvider );
|
|
|
|
void SetUnconnectedProvider( RC_ITEMS_PROVIDER* aProvider );
|
|
|
|
void SetFootprintsProvider( RC_ITEMS_PROVIDER* aProvider );
|
2016-09-08 18:17:37 +00:00
|
|
|
|
2009-06-18 13:30:52 +00:00
|
|
|
private:
|
2007-12-04 18:23:38 +00:00
|
|
|
/**
|
|
|
|
* Function writeReport
|
2009-06-18 13:30:52 +00:00
|
|
|
* outputs the MARKER items and unconnecte DRC_ITEMs with commentary to an
|
2007-12-04 18:23:38 +00:00
|
|
|
* open text file.
|
2016-06-15 17:00:30 +00:00
|
|
|
* @param aFullFileName The text filename to write the report to.
|
|
|
|
* @return true if OK, false on error
|
|
|
|
*/
|
|
|
|
bool writeReport( const wxString& aFullFileName );
|
|
|
|
|
2020-02-27 22:00:14 +00:00
|
|
|
void initValues();
|
|
|
|
void displayDRCValues();
|
|
|
|
void setDRCParameters();
|
|
|
|
void syncCheckboxes();
|
2020-02-28 00:05:40 +00:00
|
|
|
void updateDisplayedCounts();
|
2007-12-03 05:14:51 +00:00
|
|
|
|
2020-02-28 00:05:40 +00:00
|
|
|
void OnDRCItemSelected( wxDataViewEvent& aEvent ) override;
|
|
|
|
void OnDRCItemDClick( wxDataViewEvent& aEvent ) override;
|
|
|
|
void OnDRCItemRClick( wxDataViewEvent& aEvent ) override;
|
2019-03-28 19:30:51 +00:00
|
|
|
|
2020-02-28 00:05:40 +00:00
|
|
|
void OnSeverity( wxCommandEvent& aEvent ) override;
|
|
|
|
void OnSaveReport( wxCommandEvent& aEvent ) override;
|
2020-02-27 22:00:14 +00:00
|
|
|
|
2020-02-28 00:05:40 +00:00
|
|
|
void OnDeleteOneClick( wxCommandEvent& aEvent ) override;
|
|
|
|
void OnDeleteAllClick( wxCommandEvent& aEvent ) override;
|
|
|
|
void OnRunDRCClick( wxCommandEvent& aEvent ) override;
|
|
|
|
void OnCancelClick( wxCommandEvent& aEvent ) override;
|
2007-11-13 09:35:39 +00:00
|
|
|
|
2016-04-15 18:15:22 +00:00
|
|
|
/// handler for activate event, updating data which can be modified outside the dialog
|
|
|
|
/// (DRC parameters)
|
2020-02-28 00:05:40 +00:00
|
|
|
void OnActivateDlg( wxActivateEvent& aEvent ) override;
|
2016-04-15 18:15:22 +00:00
|
|
|
|
2020-02-28 00:05:40 +00:00
|
|
|
void OnChangingNotebookPage( wxNotebookEvent& aEvent ) override;
|
2007-11-27 01:34:35 +00:00
|
|
|
|
2020-02-28 00:05:40 +00:00
|
|
|
void deleteAllMarkers();
|
|
|
|
void refreshBoardEditor();
|
2007-12-04 20:44:41 +00:00
|
|
|
|
2020-03-16 11:05:01 +00:00
|
|
|
BOARD* m_currentBoard; // the board currently on test
|
|
|
|
DRC* m_tester;
|
|
|
|
PCB_EDIT_FRAME* m_brdEditor;
|
2018-02-03 09:09:53 +00:00
|
|
|
|
2020-03-16 11:05:01 +00:00
|
|
|
wxString m_markersTitleTemplate;
|
|
|
|
wxString m_unconnectedTitleTemplate;
|
|
|
|
wxString m_footprintsTitleTemplate;
|
2018-02-03 09:09:53 +00:00
|
|
|
|
2020-03-16 11:05:01 +00:00
|
|
|
UNIT_BINDER m_trackMinWidth;
|
|
|
|
UNIT_BINDER m_viaMinSize;
|
|
|
|
UNIT_BINDER m_uviaMinSize;
|
2020-02-24 23:17:30 +00:00
|
|
|
|
2020-03-16 11:05:01 +00:00
|
|
|
RC_ITEMS_PROVIDER* m_markersProvider;
|
|
|
|
RC_TREE_MODEL* m_markerTreeModel;
|
2020-02-28 00:05:40 +00:00
|
|
|
|
2020-03-16 11:05:01 +00:00
|
|
|
RC_ITEMS_PROVIDER* m_unconnectedItemsProvider;
|
|
|
|
RC_TREE_MODEL* m_unconnectedTreeModel;
|
2020-02-28 00:05:40 +00:00
|
|
|
|
2020-03-16 11:05:01 +00:00
|
|
|
RC_ITEMS_PROVIDER* m_footprintWarningsProvider;
|
|
|
|
RC_TREE_MODEL* m_footprintWarningsTreeModel;
|
2020-02-27 22:00:14 +00:00
|
|
|
|
2020-03-16 11:05:01 +00:00
|
|
|
int m_severities;
|
2007-05-06 16:03:28 +00:00
|
|
|
};
|
|
|
|
|
2007-11-27 01:34:35 +00:00
|
|
|
#endif // _DIALOG_DRC_H_
|
|
|
|
|