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.

66 lines
2.0 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 (C) 2021 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. PCB_PICKER_TOOL();
  38. virtual ~PCB_PICKER_TOOL() = default;
  39. ///< Main event loop.
  40. int Main( const TOOL_EVENT& aEvent );
  41. /**
  42. * Set the tool's snap layer set.
  43. */
  44. inline void SetLayerSet( LSET aLayerSet ) { m_layerMask = aLayerSet; }
  45. protected:
  46. ///< @copydoc TOOL_INTERACTIVE::setTransitions();
  47. void setTransitions() override;
  48. ///< Applies the requested VIEW_CONTROLS settings.
  49. void setControls();
  50. ///< Reinitialize tool to its initial state.
  51. void reset() override;
  52. private:
  53. ///< The layer set to use for optional snapping.
  54. LSET m_layerMask;
  55. };
  56. #endif /* PCB_PICKER_TOOL_H */