2016-04-02 12:52:29 +00:00
|
|
|
/*
|
|
|
|
* This program source code file is part of KiCad, a free EDA CAD application.
|
|
|
|
*
|
|
|
|
* Created on: 11 Mar 2016, author John Beard
|
|
|
|
* Copyright (C) 1992-2016 KiCad Developers, see AUTHORS.txt for contributors.
|
|
|
|
*
|
|
|
|
* 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
|
|
|
|
*/
|
|
|
|
|
2019-06-01 11:11:05 +00:00
|
|
|
#ifndef ARRAY_CREATOR_H_
|
|
|
|
#define ARRAY_CREATOR_H_
|
2016-04-02 12:52:29 +00:00
|
|
|
|
|
|
|
#include <dialogs/dialog_create_array.h>
|
|
|
|
|
2020-11-12 20:19:22 +00:00
|
|
|
#include <board.h>
|
|
|
|
#include <footprint.h>
|
2020-11-14 18:11:28 +00:00
|
|
|
#include <board_item.h>
|
2020-12-16 13:31:32 +00:00
|
|
|
#include <tools/pcb_selection.h>
|
2016-04-02 12:52:29 +00:00
|
|
|
|
2021-10-24 19:59:19 +00:00
|
|
|
class TOOL_MANAGER;
|
|
|
|
|
2016-04-02 12:52:29 +00:00
|
|
|
/*!
|
2020-11-13 02:57:11 +00:00
|
|
|
* Class that performs array creation by producing a dialog to gather parameters and then
|
|
|
|
* creating and laying out the items.
|
2016-04-02 12:52:29 +00:00
|
|
|
*/
|
|
|
|
class ARRAY_CREATOR
|
|
|
|
{
|
|
|
|
public:
|
2020-11-13 02:57:11 +00:00
|
|
|
ARRAY_CREATOR( PCB_BASE_FRAME& aParent, bool aIsFootprintEditor,
|
2021-10-24 19:59:19 +00:00
|
|
|
const PCB_SELECTION& aSelection, TOOL_MANAGER* aToolManager ) :
|
2019-06-01 11:11:05 +00:00
|
|
|
m_parent( aParent ),
|
2020-11-13 02:57:11 +00:00
|
|
|
m_isFootprintEditor( aIsFootprintEditor ),
|
2021-10-24 19:59:19 +00:00
|
|
|
m_selection( aSelection ),
|
|
|
|
m_toolMgr( aToolManager )
|
2016-04-02 12:52:29 +00:00
|
|
|
{}
|
|
|
|
|
2019-06-01 11:11:05 +00:00
|
|
|
virtual ~ARRAY_CREATOR() {}
|
|
|
|
|
2016-04-02 12:52:29 +00:00
|
|
|
/*!
|
|
|
|
* Open the dialog, gather parameters and create the array
|
|
|
|
*/
|
|
|
|
void Invoke();
|
|
|
|
|
|
|
|
private:
|
2020-12-16 13:31:32 +00:00
|
|
|
PCB_BASE_FRAME& m_parent;
|
|
|
|
bool m_isFootprintEditor;
|
2021-10-24 19:59:19 +00:00
|
|
|
const PCB_SELECTION m_selection;
|
|
|
|
TOOL_MANAGER* m_toolMgr;
|
2016-04-02 12:52:29 +00:00
|
|
|
};
|
|
|
|
|
2019-06-01 11:11:05 +00:00
|
|
|
#endif /* ARRAY_CREATOR_H_ */
|