2019-04-29 20:38:05 +00:00
|
|
|
/*
|
|
|
|
* This program source code file is part of KiCad, a free EDA CAD application.
|
|
|
|
*
|
2019-08-14 08:28:07 +00:00
|
|
|
* Copyright (C) 2019 CERN
|
2023-03-09 11:25:32 +00:00
|
|
|
* Copyright (C) 2019-2023 KiCad Developers, see AUTHORS.txt for contributors.
|
2019-04-29 20:38:05 +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
|
|
|
|
*/
|
|
|
|
|
2019-05-12 11:49:58 +00:00
|
|
|
#ifndef EE_INSPECTION_TOOL_H
|
|
|
|
#define EE_INSPECTION_TOOL_H
|
2019-04-29 20:38:05 +00:00
|
|
|
|
2019-05-12 11:49:58 +00:00
|
|
|
#include <tools/ee_tool_base.h>
|
2023-03-09 17:41:18 +00:00
|
|
|
#include <dialogs/dialog_book_reporter.h>
|
2019-04-29 20:38:05 +00:00
|
|
|
#include <sch_base_frame.h>
|
|
|
|
|
|
|
|
|
2019-05-10 17:19:48 +00:00
|
|
|
class EE_SELECTION_TOOL;
|
2019-05-12 11:49:58 +00:00
|
|
|
class SCH_BASE_FRAME;
|
2020-11-03 19:24:05 +00:00
|
|
|
class DIALOG_ERC;
|
2023-03-09 17:41:18 +00:00
|
|
|
class SYMBOL_DIFF_WIDGET;
|
2019-04-29 20:38:05 +00:00
|
|
|
|
|
|
|
|
2023-03-09 11:25:32 +00:00
|
|
|
class EE_INSPECTION_TOOL : public wxEvtHandler, public EE_TOOL_BASE<SCH_BASE_FRAME>
|
2019-04-29 20:38:05 +00:00
|
|
|
{
|
|
|
|
public:
|
2019-05-10 17:19:48 +00:00
|
|
|
EE_INSPECTION_TOOL();
|
|
|
|
~EE_INSPECTION_TOOL() {}
|
2019-04-29 20:38:05 +00:00
|
|
|
|
|
|
|
/// @copydoc TOOL_INTERACTIVE::Init()
|
|
|
|
bool Init() override;
|
|
|
|
|
2023-04-12 10:50:56 +00:00
|
|
|
void Reset( RESET_REASON aReason ) override;
|
|
|
|
|
2019-06-01 15:28:39 +00:00
|
|
|
int RunERC( const TOOL_EVENT& aEvent );
|
2020-12-01 22:35:11 +00:00
|
|
|
void ShowERCDialog();
|
2020-11-04 01:07:46 +00:00
|
|
|
|
2020-12-01 22:35:11 +00:00
|
|
|
int PrevMarker( const TOOL_EVENT& aEvent );
|
|
|
|
int NextMarker( const TOOL_EVENT& aEvent );
|
2022-04-24 16:40:10 +00:00
|
|
|
|
|
|
|
/// Called when clicking on a item:
|
2022-04-16 23:22:27 +00:00
|
|
|
int CrossProbe( const TOOL_EVENT& aEvent );
|
2022-04-24 16:40:10 +00:00
|
|
|
|
2024-03-12 00:48:58 +00:00
|
|
|
void CrossProbe( const SCH_MARKER* aMarker );
|
|
|
|
|
2024-02-16 13:22:17 +00:00
|
|
|
wxString InspectERCErrorMenuText( const std::shared_ptr<RC_ITEM>& aERCItem );
|
|
|
|
void InspectERCError( const std::shared_ptr<RC_ITEM>& aERCItem );
|
|
|
|
|
2020-12-01 22:35:11 +00:00
|
|
|
int ExcludeMarker( const TOOL_EVENT& aEvent );
|
|
|
|
|
2024-02-16 13:22:17 +00:00
|
|
|
int ShowBusSyntaxHelp( const TOOL_EVENT& aEvent );
|
|
|
|
|
2020-11-21 20:42:27 +00:00
|
|
|
int CheckSymbol( const TOOL_EVENT& aEvent );
|
2023-03-09 17:41:18 +00:00
|
|
|
int DiffSymbol( const TOOL_EVENT& aEvent );
|
2024-02-16 13:22:17 +00:00
|
|
|
void DiffSymbol( SCH_SYMBOL* aSymbol );
|
2020-11-21 20:42:27 +00:00
|
|
|
|
2019-06-01 18:36:49 +00:00
|
|
|
int RunSimulation( const TOOL_EVENT& aEvent );
|
2019-06-01 15:28:39 +00:00
|
|
|
|
2019-04-29 20:38:05 +00:00
|
|
|
int ShowDatasheet( const TOOL_EVENT& aEvent );
|
|
|
|
|
2022-04-24 16:40:10 +00:00
|
|
|
/// Display the selected item info (when clicking on a item)
|
2019-04-30 18:36:11 +00:00
|
|
|
int UpdateMessagePanel( const TOOL_EVENT& aEvent );
|
|
|
|
|
2019-04-29 20:38:05 +00:00
|
|
|
private:
|
2023-03-09 17:41:18 +00:00
|
|
|
SYMBOL_DIFF_WIDGET* constructDiffPanel( wxPanel* aParentPanel );
|
|
|
|
|
2021-01-26 15:23:37 +00:00
|
|
|
///< @copydoc TOOL_INTERACTIVE::setTransitions();
|
2019-04-29 20:38:05 +00:00
|
|
|
void setTransitions() override;
|
2020-11-03 19:24:05 +00:00
|
|
|
|
|
|
|
private:
|
2024-02-16 13:22:17 +00:00
|
|
|
HTML_MESSAGE_BOX* m_busSyntaxHelp;
|
2019-04-29 20:38:05 +00:00
|
|
|
};
|
|
|
|
|
2019-05-12 11:49:58 +00:00
|
|
|
#endif /* EE_INSPECTION_TOOL_H */
|