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.4 KiB

  1. /*
  2. * This program source code file is part of KiCad, a free EDA CAD application.
  3. *
  4. * Copyright (C) 2014 CERN
  5. * Copyright (C) 2021-2022 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 ZONE_FILLER_TOOL_H
  27. #define ZONE_FILLER_TOOL_H
  28. #include <tools/pcb_tool_base.h>
  29. #include <zone.h>
  30. class PCB_EDIT_FRAME;
  31. class PROGRESS_REPORTER;
  32. class WX_PROGRESS_REPORTER;
  33. /**
  34. * Handle actions specific to filling copper zones.
  35. */
  36. class ZONE_FILLER_TOOL : public PCB_TOOL_BASE
  37. {
  38. public:
  39. ZONE_FILLER_TOOL();
  40. ~ZONE_FILLER_TOOL();
  41. /// @copydoc TOOL_INTERACTIVE::Reset()
  42. void Reset( RESET_REASON aReason ) override;
  43. void CheckAllZones( wxWindow* aCaller, PROGRESS_REPORTER* aReporter = nullptr );
  44. void FillAllZones( wxWindow* aCaller, PROGRESS_REPORTER* aReporter = nullptr );
  45. int ZoneFill( const TOOL_EVENT& aEvent );
  46. int ZoneFillAll( const TOOL_EVENT& aEvent );
  47. int ZoneFillDirty( const TOOL_EVENT& aEvent );
  48. int ZoneUnfill( const TOOL_EVENT& aEvent );
  49. int ZoneUnfillAll( const TOOL_EVENT& aEvent );
  50. bool IsBusy() { return m_fillInProgress; }
  51. void DirtyZone( ZONE* aZone )
  52. {
  53. m_dirtyZoneIDs.insert( aZone->m_Uuid );
  54. }
  55. private:
  56. ///< Refocus on an idle event (used after the Progress Reporter messes up the focus).
  57. void singleShotRefocus( wxIdleEvent& );
  58. ///< Set up handlers for various events.
  59. void setTransitions() override;
  60. private:
  61. bool m_fillInProgress;
  62. std::set<KIID> m_dirtyZoneIDs;
  63. };
  64. #endif