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.

94 lines
2.8 KiB

  1. /*
  2. * This program source code file is part of KiCad, a free EDA CAD application.
  3. *
  4. * Copyright (C) 2015 CERN
  5. * Copyright The KiCad Developers, see AUTHORS.txt for contributors.
  6. *
  7. * @author Maciej Suminski <maciej.suminski@cern.ch>
  8. *
  9. * This program is free software; you can redistribute it and/or
  10. * modify it under the terms of the GNU General Public License
  11. * as published by the Free Software Foundation; either version 2
  12. * of the License, or (at your option) any later version.
  13. *
  14. * This program is distributed in the hope that it will be useful,
  15. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  16. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  17. * GNU General Public License for more details.
  18. *
  19. * You should have received a copy of the GNU General Public License
  20. * along with this program; if not, you may find one here:
  21. * http://www.gnu.org/licenses/old-licenses/gpl-2.0.html
  22. * or you may search the http://www.gnu.org website for the version 2 license,
  23. * or you may write to the Free Software Foundation, Inc.,
  24. * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA
  25. */
  26. #ifndef PCB_PICKER_TOOL_H
  27. #define PCB_PICKER_TOOL_H
  28. #include <layer_ids.h>
  29. #include <tool/picker_tool.h>
  30. #include <tools/pcb_tool_base.h>
  31. /**
  32. *Generic tool for picking an item.
  33. */
  34. class PCB_PICKER_TOOL : public PCB_TOOL_BASE, public PICKER_TOOL_BASE
  35. {
  36. public:
  37. /**
  38. * Interface class for something that receives picked points
  39. * or items from this tool. Examples could be a dialog that's
  40. * asking the user to pick a point.
  41. */
  42. class RECEIVER
  43. {
  44. public:
  45. virtual void UpdatePickedPoint( const std::optional<VECTOR2I>& aPoint ) = 0;
  46. virtual void UpdatePickedItem( const EDA_ITEM* aItem ) = 0;
  47. protected:
  48. ~RECEIVER() = default;
  49. };
  50. struct INTERACTIVE_PARAMS
  51. {
  52. RECEIVER* m_Receiver = nullptr;
  53. wxString m_Prompt;
  54. std::function<bool(EDA_ITEM*)> m_ItemFilter = nullptr;
  55. };
  56. PCB_PICKER_TOOL();
  57. virtual ~PCB_PICKER_TOOL() = default;
  58. ///< @copydoc TOOL_BASE::Init()
  59. bool Init() override;
  60. ///< Main event loop.
  61. int Main( const TOOL_EVENT& aEvent );
  62. /**
  63. * Set the tool's snap layer set.
  64. */
  65. inline void SetLayerSet( LSET aLayerSet ) { m_layerMask = aLayerSet; }
  66. int SelectPointInteractively( const TOOL_EVENT& aEvent );
  67. int SelectItemInteractively( const TOOL_EVENT& aEvent );
  68. protected:
  69. ///< @copydoc TOOL_INTERACTIVE::setTransitions();
  70. void setTransitions() override;
  71. ///< Applies the requested VIEW_CONTROLS settings.
  72. void setControls();
  73. ///< Reinitialize tool to its initial state.
  74. void reset() override;
  75. private:
  76. ///< The layer set to use for optional snapping.
  77. LSET m_layerMask;
  78. };
  79. #endif /* PCB_PICKER_TOOL_H */