KiCad PCB EDA Suite
Loading...
Searching...
No Matches
clear_gbr_drawlayers.cpp
Go to the documentation of this file.
1/*
2 * This program source code file is part of KiCad, a free EDA CAD application.
3 *
4 * Copyright (C) 2016 Jean-Pierre Charras, jp.charras at wanadoo.fr
5 * Copyright (C) 1992-2021 KiCad Developers, see AUTHORS.txt for contributors.
6 *
7 * This program is free software; you can redistribute it and/or
8 * modify it under the terms of the GNU General Public License
9 * as published by the Free Software Foundation; either version 2
10 * of the License, or (at your option) any later version.
11 *
12 * This program is distributed in the hope that it will be useful,
13 * but WITHOUT ANY WARRANTY; without even the implied warranty of
14 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15 * GNU General Public License for more details.
16 *
17 * You should have received a copy of the GNU General Public License
18 * along with this program; if not, you may find one here:
19 * http://www.gnu.org/licenses/old-licenses/gpl-2.0.html
20 * or you may search the http://www.gnu.org website for the version 2 license,
21 * or you may write to the Free Software Foundation, Inc.,
22 * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA
23 */
24
30#include <confirm.h>
31#include <gerbview_frame.h>
32#include <gerber_file_image.h>
34#include <view/view.h>
35#include <base_screen.h>
37
38#include <tool/tool_manager.h>
39
41{
42 if( GetGerberLayout() == nullptr )
43 return false;
44
45 if( query && GetScreen()->IsContentModified() )
46 {
47 if( !IsOK( this, _( "Current data will be lost?" ) ) )
48 return false;
49 }
50
51 if( GetCanvas() )
52 {
53 if( m_toolManager )
55
56 GetCanvas()->GetView()->Clear();
57
58 // Reinit the drawing-sheet view, cleared by GetView()->Clear():
60 }
61
63
65
66 SetActiveLayer( 0 );
69 return true;
70}
71
72
74{
75 int layer = GetActiveLayer();
76 wxString msg;
77
78 msg.Printf( _( "Clear layer %d?" ), layer + 1 );
79
80 if( query && !IsOK( this, msg ) )
81 return;
82
83 if( m_toolManager )
85
86 RemapLayers( GetImagesList()->RemoveImage( layer ) );
87
90 GetCanvas()->Refresh();
91}
BASE_SCREEN class implementation.
BOX2< VECTOR2I > BOX2I
Definition: box2.h:887
virtual bool IsContentModified() const
Get if the contents of the frame have been modified since the last save.
virtual BASE_SCREEN * GetScreen() const
Return a pointer to a BASE_SCREEN or one of its derivatives.
virtual EDA_DRAW_PANEL_GAL * GetCanvas() const
Return a pointer to GAL-based canvas of given EDA draw frame.
virtual KIGFX::VIEW * GetView() const
Return a pointer to the #VIEW instance used in the panel.
virtual void Refresh(bool aEraseBackground=true, const wxRect *aRect=nullptr) override
void SetBoundingBox(const BOX2I &aBox)
May be re-implemented for each derived class in order to handle all the types given by its member dat...
Definition: gbr_layout.h:78
void DeleteAllImages()
Remove all loaded data in list, and delete all images, freeing the memory.
const PAGE_INFO & GetPageSettings() const override
void SetPageSettings(const PAGE_INFO &aPageSettings) override
GERBER_FILE_IMAGE_LIST * GetImagesList() const
Accessors to GERBER_FILE_IMAGE_LIST and GERBER_FILE_IMAGE data.
void syncLayerBox(bool aRebuildLayerBox=false)
Update the currently "selected" layer within m_SelLayerBox.
GBR_LAYOUT * GetGerberLayout() const
int GetActiveLayer() const
Return the active layer.
void SetActiveLayer(int aLayer, bool doLayerWidgetUpdate=true)
change the currently active layer to aLayer and update the GERBER_LAYER_WIDGET.
bool Clear_DrawLayers(bool query)
void RemapLayers(const std::unordered_map< int, int > &remapping)
Takes a layer remapping and reorders the layers.
void ReFillLayerWidget()
Change out all the layers in m_Layers; called upon loading new gerber files.
void Erase_Current_DrawLayer(bool query)
void Clear()
Remove all items from the view.
Definition: view.cpp:1124
TOOL_MANAGER * m_toolManager
Definition: tools_holder.h:167
@ MODEL_RELOAD
Model changes (the sheet for a schematic)
Definition: tool_base.h:80
void ResetTools(TOOL_BASE::RESET_REASON aReason)
Reset all tools (i.e.
bool IsOK(wxWindow *aParent, const wxString &aMessage)
Display a yes/no dialog with aMessage and returns the user response.
Definition: confirm.cpp:360
This file is part of the common library.
#define _(s)