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.

89 lines
2.6 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 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 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. class ZONE_FILLER;
  34. /**
  35. * Handle actions specific to filling copper zones.
  36. */
  37. class ZONE_FILLER_TOOL : public PCB_TOOL_BASE
  38. {
  39. public:
  40. ZONE_FILLER_TOOL();
  41. ~ZONE_FILLER_TOOL();
  42. /// @copydoc TOOL_INTERACTIVE::Reset()
  43. void Reset( RESET_REASON aReason ) override;
  44. void CheckAllZones( wxWindow* aCaller, PROGRESS_REPORTER* aReporter = nullptr );
  45. void FillAllZones( wxWindow* aCaller, PROGRESS_REPORTER* aReporter = nullptr );
  46. int ZoneFill( const TOOL_EVENT& aEvent );
  47. int ZoneFillAll( const TOOL_EVENT& aEvent );
  48. int ZoneFillDirty( const TOOL_EVENT& aEvent );
  49. int ZoneUnfill( const TOOL_EVENT& aEvent );
  50. int ZoneUnfillAll( const TOOL_EVENT& aEvent );
  51. bool IsBusy() { return m_fillInProgress; }
  52. PROGRESS_REPORTER* GetProgressReporter();
  53. void DirtyZone( ZONE* aZone )
  54. {
  55. m_dirtyZoneIDs.insert( aZone->m_Uuid );
  56. }
  57. static bool IsZoneFillAction( const TOOL_EVENT* aEvent );
  58. private:
  59. ///< Refocus on an idle event (used after the Progress Reporter messes up the focus).
  60. void singleShotRefocus( wxIdleEvent& );
  61. void rebuildConnectivity();
  62. void refresh();
  63. ///< Set up handlers for various events.
  64. void setTransitions() override;
  65. private:
  66. std::unique_ptr<ZONE_FILLER> m_filler;
  67. bool m_fillInProgress;
  68. std::set<KIID> m_dirtyZoneIDs;
  69. };
  70. #endif