/* -*- c++ -*- * This program source code file is part of KiCad, a free EDA CAD application. * * Copyright (C) 2014 Henner Zeller * Copyright (C) 2017 Chris Pavlina * Copyright (C) 2014-2017 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 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 DIALOG_CHOOSE_COMPONENT_H #define DIALOG_CHOOSE_COMPONENT_H #include "dialog_shim.h" #include class wxStaticBitmap; class wxTextCtrl; class wxStdDialogButtonSizer; class wxDataViewCtrl; class wxHtmlWindow; class wxHtmlLinkEvent; class wxPanel; class wxChoice; class wxButton; class wxTimer; class FOOTPRINT_PREVIEW_WIDGET; class LIB_ALIAS; class LIB_PART; class SCH_BASE_FRAME; /** * Dialog class to select a component from the libraries. This is the master * View class in a Model-View-Adapter (mediated MVC) architecture. The other * pieces are in: * * - Adapter: CMP_TREE_MODEL_ADAPTER in eeschema/cmp_tree_model_adapter.h * - Model: CMP_TREE_NODE and descendants in eeschema/cmp_tree_model.h * * Because everything is tied together in the adapter class, see that file * for thorough documentation. A simple example usage follows: * * // Create the adapter class * auto adapter( Prj().SchLibs() ); * * // Perform any configuration of adapter properties here * adapter->SetPreselectNode( "TL072", 2 ); * * // Initialize model from PART_LIBs * for( PART_LIB& lib: *libs ) * adapter->AddLibrary( lib ); * * // Create and display dialog * DIALOG_CHOOSE_COMPONENT dlg( this, title, adapter, 1 ); * bool selected = ( dlg.ShowModal() != wxID_CANCEL ); * * // Receive part * if( selected ) * { * int unit; * LIB_ALIAS* alias = dlg.GetSelectedAlias( &unit ); * do_something( alias, unit ); * } * */ class DIALOG_CHOOSE_COMPONENT : public DIALOG_SHIM { public: /** * Create dialog to choose component. * * @param aParent a SCH_BASE_FRAME parent window. * @param aTitle Dialog title. * @param aAdapter CMP_TREE_MODEL_ADAPTER::PTR. See CMP_TREE_MODEL_ADAPTER * for documentation. * @param aDeMorganConvert preferred deMorgan conversion * (TODO: should happen in dialog) */ DIALOG_CHOOSE_COMPONENT( SCH_BASE_FRAME* aParent, const wxString& aTitle, CMP_TREE_MODEL_ADAPTER::PTR& aAdapter, int aDeMorganConvert ); /** Function GetSelectedAlias * To be called after this dialog returns from ShowModal(). * * @param aUnit if not NULL, the selected unit is filled in here. * @return the alias that has been selected, or NULL if there is none. */ LIB_ALIAS* GetSelectedAlias( int* aUnit ) const; /** Function IsExternalBrowserSelected * * @return true, iff the user pressed the thumbnail view of the component to * launch the component browser. */ bool IsExternalBrowserSelected() const { return m_external_browser_requested; } protected: static constexpr int DblClickDelay = 100; // milliseconds wxPanel* ConstructLeftPanel( wxWindow* aParent ); wxPanel* ConstructRightPanel( wxWindow* aParent ); void OnInitDialog( wxInitDialogEvent& aEvent ); void OnCloseTimer( wxTimerEvent& aEvent ); void OnQueryText( wxCommandEvent& aEvent ); void OnQueryEnter( wxCommandEvent& aEvent ); void OnQueryCharHook( wxKeyEvent& aEvent ); void OnTreeSelect( wxDataViewEvent& aEvent ); void OnTreeActivate( wxDataViewEvent& aEvent ); void OnDetailsLink( wxHtmlLinkEvent& aEvent ); void OnSchViewDClick( wxMouseEvent& aEvent ); void OnSchViewPaint( wxPaintEvent& aEvent ); /** * Look up the footprint for a given alias and display it. */ void ShowFootprintFor( LIB_ALIAS* aAlias ); /** * If a wxDataViewitem is valid, select it and post a selection event. */ void SelectIfValid( const wxDataViewItem& aTreeId ); /** * Post a wxEVT_DATAVIEW_SELECTION_CHANGED to notify the selection handler * that a new part has been selected. */ void PostSelectEvent(); /** * Display a given component into the schematic symbol preview. */ void RenderPreview( LIB_PART* aComponent, int aUnit ); /** * Handle the selection of an item. This is called when either the search * box or the tree receive an Enter, or the tree receives a double click. * If the item selected is a category, it is expanded or collapsed; if it * is a component, the component is picked. */ void HandleItemSelection(); wxTimer* m_dbl_click_timer; wxTextCtrl* m_query_ctrl; wxDataViewCtrl* m_tree_ctrl; wxHtmlWindow* m_details_ctrl; wxPanel* m_sch_view_ctrl; wxChoice* m_fp_sel_ctrl; FOOTPRINT_PREVIEW_WIDGET* m_fp_view_ctrl; SCH_BASE_FRAME* m_parent; CMP_TREE_MODEL_ADAPTER::PTR m_adapter; int m_deMorganConvert; bool m_external_browser_requested; }; #endif /* DIALOG_CHOOSE_COMPONENT_H */