KiCad PCB EDA Suite
Loading...
Searching...
No Matches
array_creator.h
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 * Created on: 11 Mar 2016, author John Beard
5 * Copyright (C) 1992-2016 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
25#ifndef ARRAY_CREATOR_H_
26#define ARRAY_CREATOR_H_
27
29
30#include <board.h>
31#include <footprint.h>
32#include <board_item.h>
33#include <tools/pcb_selection.h>
34
35class TOOL_MANAGER;
36
42{
43public:
44 ARRAY_CREATOR( PCB_BASE_FRAME& aParent, bool aIsFootprintEditor,
45 const PCB_SELECTION& aSelection, TOOL_MANAGER* aToolManager ) :
46 m_parent( aParent ),
47 m_isFootprintEditor( aIsFootprintEditor ),
48 m_selection( aSelection ),
49 m_toolMgr( aToolManager )
50 {}
51
52 virtual ~ARRAY_CREATOR() {}
53
57 void Invoke();
58
59private:
64};
65
66#endif /* ARRAY_CREATOR_H_ */
bool m_isFootprintEditor
Definition: array_creator.h:61
virtual ~ARRAY_CREATOR()
Definition: array_creator.h:52
ARRAY_CREATOR(PCB_BASE_FRAME &aParent, bool aIsFootprintEditor, const PCB_SELECTION &aSelection, TOOL_MANAGER *aToolManager)
Definition: array_creator.h:44
TOOL_MANAGER * m_toolMgr
Definition: array_creator.h:63
const PCB_SELECTION m_selection
Definition: array_creator.h:62
PCB_BASE_FRAME & m_parent
Definition: array_creator.h:60
Base PCB main window class for Pcbnew, Gerbview, and CvPcb footprint viewer.
Master controller class:
Definition: tool_manager.h:57