/* * This program source code file is part of KiCad, a free EDA CAD application. * * Copyright (C) 2014-2017 CERN * Copyright (C) 2014-2017 KiCad Developers, see AUTHORS.txt for contributors. * @author Maciej Suminski * * This program is free software; you can redistribute it and/or * modify it under the terms of the GNU General Public License * as published by the Free Software Foundation; either version 2 * of the License, or (at your option) any later version. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License * along with this program; if not, you may find one here: * http://www.gnu.org/licenses/old-licenses/gpl-2.0.html * or you may search the http://www.gnu.org website for the version 2 license, * or you may write to the Free Software Foundation, Inc., * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA */ #include #include #include #include #include #include #include #include #include #include #include #include "pcb_actions.h" #include "selection_tool.h" #include "zone_filler_tool.h" #include "zone_filler.h" // Zone actions TOOL_ACTION PCB_ACTIONS::zoneFill( "pcbnew.ZoneFiller.zoneFill", AS_GLOBAL, 0, _( "Fill" ), _( "Fill zone(s)" ), fill_zone_xpm ); TOOL_ACTION PCB_ACTIONS::zoneFillAll( "pcbnew.ZoneFiller.zoneFillAll", AS_GLOBAL, TOOL_ACTION::LegacyHotKey( HK_ZONE_FILL_OR_REFILL ), _( "Fill All" ), _( "Fill all zones" ) ); TOOL_ACTION PCB_ACTIONS::zoneUnfill( "pcbnew.ZoneFiller.zoneUnfill", AS_GLOBAL, 0, _( "Unfill" ), _( "Unfill zone(s)" ), zone_unfill_xpm ); TOOL_ACTION PCB_ACTIONS::zoneUnfillAll( "pcbnew.ZoneFiller.zoneUnfillAll", AS_GLOBAL, TOOL_ACTION::LegacyHotKey( HK_ZONE_REMOVE_FILLED ), _( "Unfill All" ), _( "Unfill all zones" ) ); ZONE_FILLER_TOOL::ZONE_FILLER_TOOL() : PCB_TOOL( "pcbnew.ZoneFiller" ) { } ZONE_FILLER_TOOL::~ZONE_FILLER_TOOL() { } void ZONE_FILLER_TOOL::Reset( RESET_REASON aReason ) { } // Zone actions int ZONE_FILLER_TOOL::ZoneFill( const TOOL_EVENT& aEvent ) { std::vector toFill; BOARD_COMMIT commit( this ); for( auto item : selection() ) { assert( item->Type() == PCB_ZONE_AREA_T ); ZONE_CONTAINER* zone = static_cast ( item ); toFill.push_back(zone); } std::unique_ptr progressReporter( new WX_PROGRESS_REPORTER( frame(), _( "Fill Zone" ), 4 ) ); ZONE_FILLER filler( board(), &commit ); filler.SetProgressReporter( progressReporter.get() ); filler.Fill( toFill ); return 0; } int ZONE_FILLER_TOOL::ZoneFillAll( const TOOL_EVENT& aEvent ) { std::vector toFill; BOARD_COMMIT commit( this ); for( auto zone : board()->Zones() ) { toFill.push_back(zone); } std::unique_ptr progressReporter( new WX_PROGRESS_REPORTER( frame(), _( "Fill All Zones" ), 4 ) ); ZONE_FILLER filler( board(), &commit ); filler.SetProgressReporter( progressReporter.get() ); if( filler.Fill( toFill ) ) frame()->m_ZoneFillsDirty = false; return 0; } int ZONE_FILLER_TOOL::ZoneUnfill( const TOOL_EVENT& aEvent ) { BOARD_COMMIT commit( this ); for( auto item : selection() ) { assert( item->Type() == PCB_ZONE_AREA_T ); ZONE_CONTAINER* zone = static_cast( item ); commit.Modify( zone ); zone->SetIsFilled( false ); zone->ClearFilledPolysList(); } commit.Push( _( "Unfill Zone" ) ); return 0; } int ZONE_FILLER_TOOL::ZoneUnfillAll( const TOOL_EVENT& aEvent ) { BOARD_COMMIT commit( this ); for ( auto zone : board()->Zones() ) { commit.Modify( zone ); zone->SetIsFilled( false ); zone->ClearFilledPolysList(); } commit.Push( _( "Unfill All Zones" ) ); return 0; } void ZONE_FILLER_TOOL::setTransitions() { // Zone actions Go( &ZONE_FILLER_TOOL::ZoneFill, PCB_ACTIONS::zoneFill.MakeEvent() ); Go( &ZONE_FILLER_TOOL::ZoneFillAll, PCB_ACTIONS::zoneFillAll.MakeEvent() ); Go( &ZONE_FILLER_TOOL::ZoneUnfill, PCB_ACTIONS::zoneUnfill.MakeEvent() ); Go( &ZONE_FILLER_TOOL::ZoneUnfillAll, PCB_ACTIONS::zoneUnfillAll.MakeEvent() ); }