You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

80 lines
2.7 KiB

  1. /*
  2. * This program source code file is part of KiCad, a free EDA CAD application.
  3. *
  4. * Copyright (C) 2018 KiCad Developers, see AUTHORS.txt for contributors.
  5. *
  6. * This program is free software; you can redistribute it and/or
  7. * modify it under the terms of the GNU General Public License
  8. * as published by the Free Software Foundation; either version 3
  9. * of the License, or (at your option) any later version.
  10. *
  11. * This program is distributed in the hope that it will be useful,
  12. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  13. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  14. * GNU General Public License for more details.
  15. *
  16. * You should have received a copy of the GNU General Public License
  17. * along with this program; if not, you may find one here:
  18. * https://www.gnu.org/licenses/gpl-3.0.html
  19. * or you may search the http://www.gnu.org website for the version 3 license,
  20. * or you may write to the Free Software Foundation, Inc.,
  21. * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA
  22. */
  23. #include "footprint_tree_pane.h"
  24. #include "fp_tree_synchronizing_adapter.h"
  25. #include <widgets/lib_tree.h>
  26. #include <pcbnew_id.h>
  27. #include <footprint_edit_frame.h>
  28. #include <fp_lib_table.h>
  29. FOOTPRINT_TREE_PANE::FOOTPRINT_TREE_PANE( FOOTPRINT_EDIT_FRAME* aParent )
  30. : wxPanel( aParent ),
  31. m_frame( aParent ),
  32. m_tree( nullptr )
  33. {
  34. // Create widgets
  35. wxBoxSizer* boxSizer = new wxBoxSizer( wxVERTICAL );
  36. m_tree = new LIB_TREE( this, &GFootprintTable, m_frame->GetLibTreeAdapter(), LIB_TREE::SEARCH );
  37. boxSizer->Add( m_tree, 1, wxEXPAND, 5 );
  38. SetSizer( boxSizer ); // should remove the previous sizer according to wxWidgets docs
  39. Layout();
  40. boxSizer->Fit( this );
  41. // Event handlers
  42. Bind( COMPONENT_SELECTED, &FOOTPRINT_TREE_PANE::onComponentSelected, this );
  43. m_tree->Bind( wxEVT_UPDATE_UI, &FOOTPRINT_TREE_PANE::onUpdateUI, this );
  44. }
  45. FOOTPRINT_TREE_PANE::~FOOTPRINT_TREE_PANE()
  46. {
  47. m_tree->Destroy();
  48. }
  49. void FOOTPRINT_TREE_PANE::Regenerate()
  50. {
  51. if( m_tree )
  52. m_tree->Regenerate( true );
  53. }
  54. void FOOTPRINT_TREE_PANE::onComponentSelected( wxCommandEvent& aEvent )
  55. {
  56. m_frame->LoadModuleFromLibrary( GetLibTree()->GetSelectedLibId() );
  57. // Make sure current-part highlighting doesn't get lost in seleciton highlighting
  58. m_tree->Unselect();
  59. }
  60. void FOOTPRINT_TREE_PANE::onUpdateUI( wxUpdateUIEvent& aEvent )
  61. {
  62. if( m_frame->GetCanvas()->HasFocus() )
  63. {
  64. // Don't allow a selected item in the tree when the canvas has focus: it's too easy
  65. // to confuse the selected-highlighting with the being-edited-on-canvas-highlighting.
  66. m_tree->Unselect();
  67. }
  68. }