KiCad PCB EDA Suite
Loading...
Searching...
No Matches
sch_find_replace_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 The 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, see <https://www.gnu.org/licenses/>.
19 */
20
21
22#ifndef SCH_FIND_REPLACE_TOOL_H
23#define SCH_FIND_REPLACE_TOOL_H
24
25#include <sch_base_frame.h>
26#include <tools/sch_tool_base.h>
27
28
32class SCH_FIND_REPLACE_TOOL : public wxEvtHandler, public SCH_TOOL_BASE<SCH_BASE_FRAME>
33{
34public:
36 SCH_TOOL_BASE<SCH_BASE_FRAME>( "eeschema.FindReplace" ),
38 { }
39
41
42 int FindAndReplace( const TOOL_EVENT& aEvent );
43
44 int FindNext( const TOOL_EVENT& aEvent );
45 bool HasMatch();
46 int ReplaceAndFindNext( const TOOL_EVENT& aEvent );
47 int ReplaceAll( const TOOL_EVENT& aEvent );
48
49 int UpdateFind( const TOOL_EVENT& aEvent );
50
51private:
53 void setTransitions() override;
54
64 SCH_ITEM* nextMatch( SCH_SCREEN* aScreen, SCH_SHEET_PATH* aSheet, SCH_ITEM* aAfter,
65 EDA_SEARCH_DATA& aData, bool reverse );
67
68private:
73};
74
75
76#endif // SCH_FIND_REPLACE_TOOL_H
A base class for most all the KiCad significant classes used in schematics and boards.
Definition eda_item.h:96
A shim class between EDA_DRAW_FRAME and several derived classes: SYMBOL_EDIT_FRAME,...
void setTransitions() override
< Set up handlers for various events.
int UpdateFind(const TOOL_EVENT &aEvent)
int FindNext(const TOOL_EVENT &aEvent)
SCH_ITEM * nextMatch(SCH_SCREEN *aScreen, SCH_SHEET_PATH *aSheet, SCH_ITEM *aAfter, EDA_SEARCH_DATA &aData, bool reverse)
Advance the search and returns the next matching item after aAfter.
int ReplaceAll(const TOOL_EVENT &aEvent)
int FindAndReplace(const TOOL_EVENT &aEvent)
int ReplaceAndFindNext(const TOOL_EVENT &aEvent)
Base class for any item which can be embedded within the SCHEMATIC container class,...
Definition sch_item.h:162
Handle access to a stack of flattened SCH_SHEET objects by way of a path for creating a flattened sch...
SCH_TOOL_BASE(const std::string &aName)
Generic, UI-independent tool event.
Definition tool_event.h:167