mirror of
https://gitlab.com/kicad/code/kicad.git
synced 2025-09-14 02:03:12 +02:00
Recommendation is to avoid using the year nomenclature as this information is already encoded in the git repo. Avoids needing to repeatly update. Also updates AUTHORS.txt from current repo with contributor names
119 lines
3.4 KiB
C++
119 lines
3.4 KiB
C++
/*
|
|
* This program source code file is part of KiCad, a free EDA CAD application.
|
|
*
|
|
* Copyright The 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
|
|
* 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
|
|
*/
|
|
|
|
#ifndef DRC_TOOL_H
|
|
#define DRC_TOOL_H
|
|
|
|
#include <board_commit.h>
|
|
#include <board.h>
|
|
#include <pcb_marker.h>
|
|
#include <geometry/seg.h>
|
|
#include <geometry/shape_poly_set.h>
|
|
#include <memory>
|
|
#include <vector>
|
|
#include <tools/pcb_tool_base.h>
|
|
|
|
|
|
class PCB_EDIT_FRAME;
|
|
class DIALOG_DRC;
|
|
class DRC_ITEM;
|
|
class WX_PROGRESS_REPORTER;
|
|
class DRC_ENGINE;
|
|
|
|
|
|
class DRC_TOOL : public PCB_TOOL_BASE
|
|
{
|
|
public:
|
|
DRC_TOOL();
|
|
~DRC_TOOL();
|
|
|
|
/// @copydoc TOOL_INTERACTIVE::Reset()
|
|
void Reset( RESET_REASON aReason ) override;
|
|
|
|
/**
|
|
* Opens the DRC dialog. The dialog is only created if it is not already in existence.
|
|
*
|
|
* @param aParent is the parent window for modal invocations. If nullptr, the parent will
|
|
* be the PCB_EDIT_FRAME and the dialog will be modeless.
|
|
*/
|
|
void ShowDRCDialog( wxWindow* aParent );
|
|
|
|
int ShowDRCDialog( const TOOL_EVENT& aEvent );
|
|
|
|
/**
|
|
* Check to see if the DRC_TOOL dialog is currently shown
|
|
*/
|
|
bool IsDRCDialogShown();
|
|
|
|
/**
|
|
* Check to see if the DRC engine is running the tests
|
|
*/
|
|
bool IsDRCRunning() const { return m_drcRunning; }
|
|
|
|
/**
|
|
* Close and free the DRC dialog.
|
|
*/
|
|
void DestroyDRCDialog();
|
|
|
|
std::shared_ptr<DRC_ENGINE> GetDRCEngine() { return m_drcEngine; }
|
|
|
|
/**
|
|
* Run the DRC tests.
|
|
*/
|
|
void RunTests( PROGRESS_REPORTER* aProgressReporter, bool aRefillZones,
|
|
bool aReportAllTrackErrors, bool aTestFootprints );
|
|
|
|
int PrevMarker( const TOOL_EVENT& aEvent );
|
|
int NextMarker( const TOOL_EVENT& aEvent );
|
|
int CrossProbe( const TOOL_EVENT& aEvent );
|
|
|
|
/**
|
|
* A more "active" CrossProbe which will open the DRC dialog if it is closed. Used when
|
|
* double-clicking on a marker.
|
|
*/
|
|
void CrossProbe( const PCB_MARKER* aMarker );
|
|
|
|
int ExcludeMarker( const TOOL_EVENT& aEvent );
|
|
|
|
private:
|
|
///< Set up handlers for various events.
|
|
void setTransitions() override;
|
|
|
|
/**
|
|
* Update needed pointers from the one pointer which is known not to change.
|
|
*/
|
|
void updatePointers( bool aDRCWasCancelled );
|
|
|
|
EDA_UNITS userUnits() const { return m_editFrame->GetUserUnits(); }
|
|
|
|
private:
|
|
PCB_EDIT_FRAME* m_editFrame;
|
|
BOARD* m_pcb;
|
|
DIALOG_DRC* m_drcDialog;
|
|
bool m_drcRunning;
|
|
std::shared_ptr<DRC_ENGINE> m_drcEngine;
|
|
};
|
|
|
|
|
|
#endif // DRC_TOOL_H
|