2023-01-11 14:17:36 +00:00
|
|
|
/*
|
|
|
|
* This program source code file is part of KiCad, a free EDA CAD application.
|
|
|
|
*
|
|
|
|
* Copyright (C) 2019 CERN
|
2025-01-01 13:30:11 -08:00
|
|
|
* Copyright The KiCad Developers, see AUTHORS.txt for contributors.
|
2023-01-11 14:17:36 +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
|
|
|
|
*/
|
|
|
|
|
|
|
|
|
|
|
|
#ifndef SCH_FIND_REPLACE_TOOL_H
|
|
|
|
#define SCH_FIND_REPLACE_TOOL_H
|
|
|
|
|
|
|
|
#include <sch_base_frame.h>
|
2025-03-12 14:41:25 +00:00
|
|
|
#include <tools/sch_tool_base.h>
|
2023-01-11 14:17:36 +00:00
|
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Handle actions specific to the schematic editor.
|
|
|
|
*/
|
2025-07-30 16:28:04 +01:00
|
|
|
class SCH_FIND_REPLACE_TOOL : public wxEvtHandler, public SCH_TOOL_BASE<SCH_BASE_FRAME>
|
2023-01-11 14:17:36 +00:00
|
|
|
{
|
|
|
|
public:
|
|
|
|
SCH_FIND_REPLACE_TOOL() :
|
2025-07-30 16:28:04 +01:00
|
|
|
SCH_TOOL_BASE<SCH_BASE_FRAME>( "eeschema.FindReplace" ),
|
2023-01-11 14:17:36 +00:00
|
|
|
m_foundItemHighlighted( false )
|
|
|
|
{ }
|
|
|
|
|
|
|
|
~SCH_FIND_REPLACE_TOOL() { }
|
|
|
|
|
|
|
|
int FindAndReplace( const TOOL_EVENT& aEvent );
|
|
|
|
|
|
|
|
int FindNext( const TOOL_EVENT& aEvent );
|
|
|
|
bool HasMatch();
|
|
|
|
int ReplaceAndFindNext( const TOOL_EVENT& aEvent );
|
|
|
|
int ReplaceAll( const TOOL_EVENT& aEvent );
|
|
|
|
|
|
|
|
int UpdateFind( const TOOL_EVENT& aEvent );
|
|
|
|
|
|
|
|
private:
|
|
|
|
///< Set up handlers for various events.
|
|
|
|
void setTransitions() override;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Advance the search and returns the next matching item after \a aAfter.
|
|
|
|
*
|
|
|
|
* @param aScreen Pointer to the screen used for searching
|
|
|
|
* @param aAfter Starting match to compare
|
|
|
|
* @param aData Search data to compare against or NULL to match the first item found
|
2023-01-26 09:36:41 -05:00
|
|
|
* @param reverse Search in reverse (find previous)
|
2023-01-11 14:17:36 +00:00
|
|
|
* @return pointer to the next search item found or NULL if nothing found
|
|
|
|
*/
|
|
|
|
SCH_ITEM* nextMatch( SCH_SCREEN* aScreen, SCH_SHEET_PATH* aSheet, SCH_ITEM* aAfter,
|
2023-01-26 09:36:41 -05:00
|
|
|
EDA_SEARCH_DATA& aData, bool reverse );
|
2023-01-26 12:35:15 -05:00
|
|
|
EDA_ITEM* getCurrentMatch();
|
2023-01-11 14:17:36 +00:00
|
|
|
|
|
|
|
private:
|
2023-01-26 12:35:15 -05:00
|
|
|
SCH_ITEM* m_afterItem = nullptr;
|
2023-01-11 14:17:36 +00:00
|
|
|
bool m_foundItemHighlighted;
|
|
|
|
wxTimer m_wrapAroundTimer; // A timer during which a subsequent FindNext will
|
|
|
|
// result in a wrap-around
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
#endif // SCH_FIND_REPLACE_TOOL_H
|