70 lines
1.9 KiB
C
70 lines
1.9 KiB
C
|
/*
|
||
|
* This program source code file is part of KiCad, a free EDA CAD application.
|
||
|
*
|
||
|
* Copyright (C) 2022 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 <http://www.gnu.org/licenses/>.
|
||
|
*/
|
||
|
|
||
|
#ifndef SEARCH_PANE_H
|
||
|
#define SEARCH_PANE_H
|
||
|
|
||
|
#include <widgets/search_pane_base.h>
|
||
|
#include <vector>
|
||
|
|
||
|
class EDA_DRAW_FRAME;
|
||
|
class SEARCH_PANE_TAB;
|
||
|
|
||
|
class SEARCH_HANDLER
|
||
|
{
|
||
|
public:
|
||
|
SEARCH_HANDLER( wxString aName ) :
|
||
|
m_name( aName ) {}
|
||
|
|
||
|
wxString GetName() const { return m_name; }
|
||
|
|
||
|
std::vector<wxString> GetColumnNames() const { return m_columnNames; }
|
||
|
|
||
|
virtual int Search( const wxString& string ) = 0;
|
||
|
virtual wxString GetResultCell( int row, int col ) = 0;
|
||
|
|
||
|
virtual void SelectItem(int row) {}
|
||
|
|
||
|
protected:
|
||
|
wxString m_name;
|
||
|
std::vector<wxString> m_columnNames;
|
||
|
};
|
||
|
|
||
|
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 RefreshSearch();
|
||
|
void OnLanguageChange();
|
||
|
void FocusSearch();
|
||
|
|
||
|
private:
|
||
|
|
||
|
EDA_DRAW_FRAME* m_frame;
|
||
|
std::vector<SEARCH_HANDLER*> m_handlers;
|
||
|
std::vector<SEARCH_PANE_TAB*> m_tabs;
|
||
|
wxString m_lastQuery;
|
||
|
};
|
||
|
|
||
|
#endif
|