2011-10-17 16:01:27 -04:00
|
|
|
/*
|
|
|
|
* This program source code file is part of KiCad, a free EDA CAD application.
|
|
|
|
*
|
2016-06-15 10:26:41 +02:00
|
|
|
* Copyright (C) 2016 Jean-Pierre Charras, jp.charras at wanadoo.fr
|
2016-06-03 09:05:25 +02:00
|
|
|
* Copyright (C) 1992-2016 KiCad Developers, see AUTHORS.txt for contributors.
|
2011-10-17 16:01:27 -04: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 09:57:12 -04:00
|
|
|
/**
|
2016-06-03 09:05:25 +02: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 09:57:12 -04:00
|
|
|
*/
|
2007-06-05 12:10:51 +00:00
|
|
|
|
2012-01-22 22:33:36 -06:00
|
|
|
#include <fctsys.h>
|
|
|
|
#include <class_drawpanel.h>
|
|
|
|
#include <confirm.h>
|
2007-06-05 12:10:51 +00:00
|
|
|
|
2014-06-27 19:07:42 +02:00
|
|
|
#include <gerbview_frame.h>
|
2016-05-26 13:57:43 +02:00
|
|
|
#include <class_gerber_file_image.h>
|
2016-05-26 09:50:49 +02:00
|
|
|
#include <class_gerber_file_image_list.h>
|
2012-01-22 22:33:36 -06:00
|
|
|
#include <class_gerbview_layer_widget.h>
|
2017-09-17 18:43:20 -04:00
|
|
|
#include <view/view.h>
|
2007-06-05 12:10:51 +00:00
|
|
|
|
2014-07-14 20:59:41 +02:00
|
|
|
bool GERBVIEW_FRAME::Clear_DrawLayers( bool query )
|
2007-06-05 12:10:51 +00:00
|
|
|
{
|
2013-06-27 21:12:01 +02:00
|
|
|
if( GetGerberLayout() == NULL )
|
2012-01-22 11:20:22 -06:00
|
|
|
return false;
|
2007-08-23 04:28:46 +00:00
|
|
|
|
2010-01-08 12:28:13 +00:00
|
|
|
if( query && GetScreen()->IsModify() )
|
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 11:20:22 -06:00
|
|
|
return false;
|
2007-08-23 04:28:46 +00:00
|
|
|
}
|
2010-10-17 18:42:06 +02:00
|
|
|
|
2017-09-17 18:43:20 -04:00
|
|
|
if( auto canvas = GetGalCanvas() )
|
|
|
|
{
|
|
|
|
canvas->GetView()->Clear();
|
|
|
|
}
|
|
|
|
|
2016-06-18 11:37:36 +02:00
|
|
|
GetImagesList()->DeleteAllImages();
|
2007-08-23 04:28:46 +00:00
|
|
|
|
2013-06-27 21:12:01 +02:00
|
|
|
GetGerberLayout()->SetBoundingBox( EDA_RECT() );
|
2007-08-23 04:28:46 +00:00
|
|
|
|
2017-09-17 18:43:20 -04:00
|
|
|
SetActiveLayer( 0 );
|
2016-08-16 12:56:20 +02:00
|
|
|
ReFillLayerWidget();
|
2010-11-05 09:14:00 +01:00
|
|
|
syncLayerBox();
|
2011-10-17 16:01:27 -04:00
|
|
|
return true;
|
2007-06-05 12:10:51 +00:00
|
|
|
}
|
|
|
|
|
2007-08-23 04:28:46 +00:00
|
|
|
|
2014-07-14 20:59:41 +02:00
|
|
|
void GERBVIEW_FRAME::Erase_Current_DrawLayer( bool query )
|
2007-06-05 12:10:51 +00:00
|
|
|
{
|
2017-09-17 18:43:20 -04: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 19:33:44 +01:00
|
|
|
msg.Printf( _( "Clear layer %d?" ), layer + 1 );
|
2011-09-24 14:33:28 -04:00
|
|
|
|
2007-08-23 04:28:46 +00:00
|
|
|
if( query && !IsOK( this, msg ) )
|
|
|
|
return;
|
|
|
|
|
2010-10-10 19:57:54 +02:00
|
|
|
SetCurItem( NULL );
|
|
|
|
|
2016-06-18 11:37:36 +02:00
|
|
|
GetImagesList()->DeleteImage( layer );
|
2010-09-29 11:25:48 +02:00
|
|
|
|
2016-08-16 12:56:20 +02:00
|
|
|
ReFillLayerWidget();
|
2010-11-05 09:14:00 +01:00
|
|
|
syncLayerBox();
|
2016-06-15 10:26:41 +02:00
|
|
|
m_canvas->Refresh();
|
2007-06-05 12:10:51 +00:00
|
|
|
}
|