/* * This program source code file is part of KiCad, a free EDA CAD application. * * Copyright (C) 2022-2023 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 3 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, see . */ #ifndef SEARCH_PANE_H #define SEARCH_PANE_H #include #include #include class EDA_DRAW_FRAME; class SEARCH_PANE_TAB; class SEARCH_HANDLER { public: SEARCH_HANDLER( const wxString& aName ) : m_name( aName ) {} wxString GetName() const { return m_name; } std::vector> GetColumns() const { return m_columns; } virtual int Search( const wxString& string ) = 0; virtual wxString GetResultCell( int row, int col ) = 0; virtual void Sort( int aCol, bool aAscending ) = 0; virtual void SelectItems( std::vector& aItemRows ) {} virtual void ActivateItem( long aItemRow ) {} protected: wxString m_name; std::vector> m_columns; }; class SEARCH_PANE : public SEARCH_PANE_BASE { public: SEARCH_PANE( EDA_DRAW_FRAME* aFrame ); virtual ~SEARCH_PANE(); void AddSearcher( SEARCH_HANDLER* aHandler ); void OnSearchTextEntry( wxCommandEvent& aEvent ) override; void OnNotebookPageChanged( wxBookCtrlEvent& aEvent ) override; void RefreshSearch(); void OnLanguageChange(); void FocusSearch(); void ClearAllResults(); protected: SEARCH_PANE_TAB* GetCurrentTab() const; private: std::vector m_handlers; std::vector m_tabs; wxString m_lastQuery; }; #endif