2011-10-17 20:01:27 +00:00
|
|
|
/*
|
|
|
|
* This program source code file is part of KiCad, a free EDA CAD application.
|
|
|
|
*
|
2016-06-15 08:26:41 +00:00
|
|
|
* Copyright (C) 2016 Jean-Pierre Charras, jp.charras at wanadoo.fr
|
2021-07-16 20:13:26 +00:00
|
|
|
* Copyright (C) 1992-2021 KiCad Developers, see AUTHORS.txt for contributors.
|
2011-10-17 20:01:27 +00:00
|
|
|
*
|
|
|
|
* 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
|
|
|
|
*/
|
|
|
|
|
2011-09-23 13:57:12 +00:00
|
|
|
/**
|
2016-06-03 07:05:25 +00:00
|
|
|
* @file clear_gbr_drawlayers.cpp
|
|
|
|
* @brief erase a given or all draw layers, an free memory relative to the cleared layer(s)
|
2011-09-23 13:57:12 +00:00
|
|
|
*/
|
2007-06-05 12:10:51 +00:00
|
|
|
|
2012-01-23 04:33:36 +00:00
|
|
|
#include <confirm.h>
|
2014-06-27 17:07:42 +00:00
|
|
|
#include <gerbview_frame.h>
|
2018-01-29 12:26:58 +00:00
|
|
|
#include <gerber_file_image.h>
|
|
|
|
#include <gerber_file_image_list.h>
|
2017-09-17 22:43:20 +00:00
|
|
|
#include <view/view.h>
|
2020-06-13 21:09:02 +00:00
|
|
|
#include <base_screen.h>
|
2020-11-16 12:13:08 +00:00
|
|
|
#include "widgets/gerbview_layer_widget.h"
|
2020-06-13 21:09:02 +00:00
|
|
|
|
2018-01-22 02:27:56 +00:00
|
|
|
#include <tool/tool_manager.h>
|
2007-06-05 12:10:51 +00:00
|
|
|
|
2014-07-14 18:59:41 +00:00
|
|
|
bool GERBVIEW_FRAME::Clear_DrawLayers( bool query )
|
2007-06-05 12:10:51 +00:00
|
|
|
{
|
2021-07-16 20:13:26 +00:00
|
|
|
if( GetGerberLayout() == nullptr )
|
2012-01-22 17:20:22 +00:00
|
|
|
return false;
|
2007-08-23 04:28:46 +00:00
|
|
|
|
2021-05-28 19:07:04 +00:00
|
|
|
if( query && GetScreen()->IsContentModified() )
|
2007-08-23 04:28:46 +00:00
|
|
|
{
|
2010-01-08 12:28:13 +00:00
|
|
|
if( !IsOK( this, _( "Current data will be lost?" ) ) )
|
2012-01-22 17:20:22 +00:00
|
|
|
return false;
|
2007-08-23 04:28:46 +00:00
|
|
|
}
|
2010-10-17 16:42:06 +00:00
|
|
|
|
2019-06-13 17:28:55 +00:00
|
|
|
if( GetCanvas() )
|
2017-09-17 22:43:20 +00:00
|
|
|
{
|
2018-01-22 02:27:56 +00:00
|
|
|
if( m_toolManager )
|
|
|
|
m_toolManager->ResetTools( TOOL_BASE::MODEL_RELOAD );
|
|
|
|
|
2019-06-13 17:28:55 +00:00
|
|
|
GetCanvas()->GetView()->Clear();
|
2018-06-01 07:27:23 +00:00
|
|
|
|
2021-02-22 23:47:17 +00:00
|
|
|
// Reinit the drawing-sheet view, cleared by GetView()->Clear():
|
2018-06-01 07:27:23 +00:00
|
|
|
SetPageSettings( GetPageSettings() );
|
2017-09-17 22:43:20 +00:00
|
|
|
}
|
|
|
|
|
2016-06-18 09:37:36 +00:00
|
|
|
GetImagesList()->DeleteAllImages();
|
2007-08-23 04:28:46 +00:00
|
|
|
|
2022-08-31 22:57:24 +00:00
|
|
|
GetGerberLayout()->SetBoundingBox( BOX2I() );
|
2007-08-23 04:28:46 +00:00
|
|
|
|
2017-09-17 22:43:20 +00:00
|
|
|
SetActiveLayer( 0 );
|
2016-08-16 10:56:20 +00:00
|
|
|
ReFillLayerWidget();
|
2010-11-05 08:14:00 +00:00
|
|
|
syncLayerBox();
|
2011-10-17 20:01:27 +00:00
|
|
|
return true;
|
2007-06-05 12:10:51 +00:00
|
|
|
}
|
|
|
|
|
2007-08-23 04:28:46 +00:00
|
|
|
|
2014-07-14 18:59:41 +00:00
|
|
|
void GERBVIEW_FRAME::Erase_Current_DrawLayer( bool query )
|
2007-06-05 12:10:51 +00:00
|
|
|
{
|
2017-09-17 22:43:20 +00:00
|
|
|
int layer = GetActiveLayer();
|
2009-11-09 14:00:22 +00:00
|
|
|
wxString msg;
|
2007-08-23 04:28:46 +00:00
|
|
|
|
2010-11-01 18:33:44 +00:00
|
|
|
msg.Printf( _( "Clear layer %d?" ), layer + 1 );
|
2011-09-24 18:33:28 +00:00
|
|
|
|
2007-08-23 04:28:46 +00:00
|
|
|
if( query && !IsOK( this, msg ) )
|
|
|
|
return;
|
|
|
|
|
2018-01-22 02:27:56 +00:00
|
|
|
if( m_toolManager )
|
|
|
|
m_toolManager->ResetTools( TOOL_BASE::MODEL_RELOAD );
|
|
|
|
|
2021-08-04 18:47:26 +00:00
|
|
|
RemapLayers( GetImagesList()->RemoveImage( layer ) );
|
2010-09-29 09:25:48 +00:00
|
|
|
|
2016-08-16 10:56:20 +00:00
|
|
|
ReFillLayerWidget();
|
2010-11-05 08:14:00 +00:00
|
|
|
syncLayerBox();
|
2019-06-13 17:28:55 +00:00
|
|
|
GetCanvas()->Refresh();
|
2007-06-05 12:10:51 +00:00
|
|
|
}
|