2014-04-04 13:43:30 +00:00
|
|
|
/*
|
|
|
|
* This program source code file is part of KiCad, a free EDA CAD application.
|
|
|
|
*
|
2021-06-04 16:21:48 +00:00
|
|
|
* Copyright (C) 1992-2021 KiCad Developers, see AUTHORS.txt for contributors.
|
2014-04-04 13:43:30 +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
|
|
|
|
*/
|
2010-11-26 20:05:31 +00:00
|
|
|
|
|
|
|
#ifndef _DIALOG_GLOBAL_DELETION_H_
|
|
|
|
#define _DIALOG_GLOBAL_DELETION_H_
|
|
|
|
|
2012-01-23 04:33:36 +00:00
|
|
|
#include <dialog_global_deletion_base.h>
|
2010-11-26 20:05:31 +00:00
|
|
|
|
|
|
|
class DIALOG_GLOBAL_DELETION: public DIALOG_GLOBAL_DELETION_BASE
|
|
|
|
{
|
|
|
|
public:
|
2011-03-01 19:26:17 +00:00
|
|
|
DIALOG_GLOBAL_DELETION( PCB_EDIT_FRAME* parent );
|
2021-07-21 23:14:56 +00:00
|
|
|
void SetCurrentLayer( int aLayer );
|
2010-11-26 20:05:31 +00:00
|
|
|
|
2021-07-21 21:37:49 +00:00
|
|
|
///< @todo Move this back into the tool rather than having the dialog do the deleting.
|
|
|
|
void DoGlobalDeletions();
|
2010-11-26 20:05:31 +00:00
|
|
|
|
2021-07-21 21:37:49 +00:00
|
|
|
private:
|
2021-01-07 17:35:27 +00:00
|
|
|
void onCheckDeleteTracks( wxCommandEvent& event ) override;
|
|
|
|
void onCheckDeleteFootprints( wxCommandEvent& event ) override;
|
|
|
|
void onCheckDeleteDrawings( wxCommandEvent& event ) override;
|
2021-10-19 13:35:34 +00:00
|
|
|
void onCheckDeleteBoardOutlines( wxCommandEvent& event ) override;
|
2021-06-04 16:21:48 +00:00
|
|
|
|
|
|
|
PCB_EDIT_FRAME* m_Parent;
|
2021-07-21 23:14:56 +00:00
|
|
|
int m_currentLayer;
|
2010-11-26 20:05:31 +00:00
|
|
|
};
|
|
|
|
|
2012-01-23 05:17:34 +00:00
|
|
|
#endif // _DIALOG_GLOBAL_DELETION_H_
|