KiCad PCB EDA Suite
Loading...
Searching...
No Matches
ee_inspection_tool.h
Go to the documentation of this file.
1
/*
2
* This program source code file is part of KiCad, a free EDA CAD application.
3
*
4
* Copyright (C) 2019 CERN
5
* Copyright (C) 2019-2023 KiCad Developers, see AUTHORS.txt for contributors.
6
*
7
* This program is free software; you can redistribute it and/or
8
* modify it under the terms of the GNU General Public License
9
* as published by the Free Software Foundation; either version 2
10
* of the License, or (at your option) any later version.
11
*
12
* This program is distributed in the hope that it will be useful,
13
* but WITHOUT ANY WARRANTY; without even the implied warranty of
14
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15
* GNU General Public License for more details.
16
*
17
* You should have received a copy of the GNU General Public License
18
* along with this program; if not, you may find one here:
19
* http://www.gnu.org/licenses/old-licenses/gpl-2.0.html
20
* or you may search the http://www.gnu.org website for the version 2 license,
21
* or you may write to the Free Software Foundation, Inc.,
22
* 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA
23
*/
24
25
#ifndef EE_INSPECTION_TOOL_H
26
#define EE_INSPECTION_TOOL_H
27
28
#include <
tools/ee_tool_base.h
>
29
#include <
dialogs/dialog_book_reporter.h
>
30
#include <
sch_base_frame.h
>
31
32
33
class
EE_SELECTION_TOOL
;
34
class
SCH_BASE_FRAME
;
35
class
DIALOG_ERC
;
36
class
SYMBOL_DIFF_WIDGET
;
37
38
39
class
EE_INSPECTION_TOOL
:
public
wxEvtHandler,
public
EE_TOOL_BASE
<SCH_BASE_FRAME>
40
{
41
public
:
42
EE_INSPECTION_TOOL
();
43
~EE_INSPECTION_TOOL
() {}
44
46
bool
Init
()
override
;
47
48
void
Reset
(
RESET_REASON
aReason )
override
;
49
50
int
RunERC
(
const
TOOL_EVENT
& aEvent );
51
void
ShowERCDialog
();
52
53
int
PrevMarker
(
const
TOOL_EVENT
& aEvent );
54
int
NextMarker
(
const
TOOL_EVENT
& aEvent );
55
57
int
CrossProbe
(
const
TOOL_EVENT
& aEvent );
58
59
void
CrossProbe
(
const
SCH_MARKER
* aMarker );
60
61
wxString
InspectERCErrorMenuText
(
const
std::shared_ptr<RC_ITEM>& aERCItem );
62
void
InspectERCError
(
const
std::shared_ptr<RC_ITEM>& aERCItem );
63
64
int
ExcludeMarker
(
const
TOOL_EVENT
& aEvent );
65
66
int
ShowBusSyntaxHelp
(
const
TOOL_EVENT
& aEvent );
67
68
int
CheckSymbol
(
const
TOOL_EVENT
& aEvent );
69
int
DiffSymbol
(
const
TOOL_EVENT
& aEvent );
70
void
DiffSymbol
(
SCH_SYMBOL
* aSymbol );
71
72
int
RunSimulation
(
const
TOOL_EVENT
& aEvent );
73
74
int
ShowDatasheet
(
const
TOOL_EVENT
& aEvent );
75
77
int
UpdateMessagePanel
(
const
TOOL_EVENT
& aEvent );
78
79
private
:
80
SYMBOL_DIFF_WIDGET
*
constructDiffPanel
( wxPanel* aParentPanel );
81
83
void
setTransitions
()
override
;
84
85
private
:
86
HTML_MESSAGE_BOX
*
m_busSyntaxHelp
;
87
};
88
89
#endif
/* EE_INSPECTION_TOOL_H */
DIALOG_ERC
Definition:
dialog_erc.h:47
EE_INSPECTION_TOOL
Definition:
ee_inspection_tool.h:40
EE_INSPECTION_TOOL::EE_INSPECTION_TOOL
EE_INSPECTION_TOOL()
Definition:
ee_inspection_tool.cpp:56
EE_INSPECTION_TOOL::InspectERCError
void InspectERCError(const std::shared_ptr< RC_ITEM > &aERCItem)
Definition:
ee_inspection_tool.cpp:243
EE_INSPECTION_TOOL::~EE_INSPECTION_TOOL
~EE_INSPECTION_TOOL()
Definition:
ee_inspection_tool.h:43
EE_INSPECTION_TOOL::m_busSyntaxHelp
HTML_MESSAGE_BOX * m_busSyntaxHelp
Definition:
ee_inspection_tool.h:86
EE_INSPECTION_TOOL::RunSimulation
int RunSimulation(const TOOL_EVENT &aEvent)
Definition:
ee_inspection_tool.cpp:476
EE_INSPECTION_TOOL::NextMarker
int NextMarker(const TOOL_EVENT &aEvent)
Definition:
ee_inspection_tool.cpp:138
EE_INSPECTION_TOOL::DiffSymbol
int DiffSymbol(const TOOL_EVENT &aEvent)
Definition:
ee_inspection_tool.cpp:344
EE_INSPECTION_TOOL::PrevMarker
int PrevMarker(const TOOL_EVENT &aEvent)
Definition:
ee_inspection_tool.cpp:119
EE_INSPECTION_TOOL::InspectERCErrorMenuText
wxString InspectERCErrorMenuText(const std::shared_ptr< RC_ITEM > &aERCItem)
Definition:
ee_inspection_tool.cpp:201
EE_INSPECTION_TOOL::ShowDatasheet
int ShowDatasheet(const TOOL_EVENT &aEvent)
Definition:
ee_inspection_tool.cpp:498
EE_INSPECTION_TOOL::constructDiffPanel
SYMBOL_DIFF_WIDGET * constructDiffPanel(wxPanel *aParentPanel)
This method is meant to be overridden in order to specify handlers for events.
Definition:
ee_inspection_tool.cpp:461
EE_INSPECTION_TOOL::setTransitions
void setTransitions() override
This method is meant to be overridden in order to specify handlers for events.
Definition:
ee_inspection_tool.cpp:588
EE_INSPECTION_TOOL::ExcludeMarker
int ExcludeMarker(const TOOL_EVENT &aEvent)
Definition:
ee_inspection_tool.cpp:263
EE_INSPECTION_TOOL::UpdateMessagePanel
int UpdateMessagePanel(const TOOL_EVENT &aEvent)
Display the selected item info (when clicking on a item)
Definition:
ee_inspection_tool.cpp:553
EE_INSPECTION_TOOL::ShowBusSyntaxHelp
int ShowBusSyntaxHelp(const TOOL_EVENT &aEvent)
Definition:
ee_inspection_tool.cpp:330
EE_INSPECTION_TOOL::Init
bool Init() override
Init() is called once upon a registration of the tool.
Definition:
ee_inspection_tool.cpp:62
EE_INSPECTION_TOOL::ShowERCDialog
void ShowERCDialog()
Definition:
ee_inspection_tool.cpp:99
EE_INSPECTION_TOOL::RunERC
int RunERC(const TOOL_EVENT &aEvent)
Definition:
ee_inspection_tool.cpp:92
EE_INSPECTION_TOOL::CheckSymbol
int CheckSymbol(const TOOL_EVENT &aEvent)
Definition:
ee_inspection_tool.cpp:300
EE_INSPECTION_TOOL::CrossProbe
int CrossProbe(const TOOL_EVENT &aEvent)
Called when clicking on a item:
Definition:
ee_inspection_tool.cpp:156
EE_SELECTION_TOOL
Definition:
ee_selection_tool.h:64
EE_TOOL_BASE
A foundation class for a tool operating on a schematic or symbol.
Definition:
ee_tool_base.h:48
HTML_MESSAGE_BOX
Definition:
html_message_box.h:32
SCH_BASE_FRAME
A shim class between EDA_DRAW_FRAME and several derived classes: SYMBOL_EDIT_FRAME,...
Definition:
sch_base_frame.h:104
SCH_MARKER
Definition:
sch_marker.h:34
SCH_SYMBOL
Schematic symbol object.
Definition:
sch_symbol.h:104
SYMBOL_DIFF_WIDGET
Definition:
symbol_diff_widget.h:32
TOOL_BASE::RESET_REASON
RESET_REASON
Determine the reason of reset for a tool.
Definition:
tool_base.h:78
TOOL_EVENT
Generic, UI-independent tool event.
Definition:
tool_event.h:167
dialog_book_reporter.h
ee_tool_base.h
Reset
void Reset() override
sch_base_frame.h
src
eeschema
tools
ee_inspection_tool.h
Generated on Thu Nov 21 2024 00:06:42 for KiCad PCB EDA Suite by
1.9.6