KiCad PCB EDA Suite
Loading...
Searching...
No Matches
dialog_import_gfx.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 * Copyright (C) 2013 Jean-Pierre Charras, jp.charras at wanadoo.fr
5 * Copyright (C) 1992-2022 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 __DIALOG_IMPORT_GFX_H__
26#define __DIALOG_IMPORT_GFX_H__
27
28#include <widgets/unit_binder.h>
29#include <pcb_edit_frame.h>
30#include <pcbnew_settings.h>
33
35
36
38{
39public:
40 DIALOG_IMPORT_GFX( PCB_BASE_FRAME* aParent, bool aUseModuleItems = false );
42
46 std::list<std::unique_ptr<EDA_ITEM>>& GetImportedItems()
47 {
48 return m_importer->GetItems();
49 }
50
57
62
63 bool TransferDataFromWindow() override;
64
65private:
66 // Virtual event handlers
67 void onBrowseFiles( wxCommandEvent& event ) override;
68 void onFilename( wxCommandEvent& event );
69 void originOptionOnUpdateUI( wxUpdateUIEvent& event ) override;
70
71 void onInteractivePlacement( wxCommandEvent& event ) override
72 {
74 }
75
76 void onAbsolutePlacement( wxCommandEvent& event ) override
77 {
79 }
80
81 void onGroupItems( wxCommandEvent& event ) override
82 {
83 m_shouldGroupItems = m_groupItems->GetValue();
84 }
85
86private:
88 std::unique_ptr<GRAPHICS_IMPORTER_PCBNEW> m_importer;
89 std::unique_ptr<GRAPHICS_IMPORT_MGR> m_gfxImportMgr;
90
94
95 static bool m_shouldGroupItems;
97 static double m_importScale; // a scale factor to change the size of imported
98 // items m_importScale =1.0 means keep original size
99};
100
101#endif // __DIALOG_IMPORT_GFX_H__
Class DIALOG_IMPORT_GFX_BASE.
void onFilename(wxCommandEvent &event)
std::list< std::unique_ptr< EDA_ITEM > > & GetImportedItems()
static double m_importScale
bool TransferDataFromWindow() override
void originOptionOnUpdateUI(wxUpdateUIEvent &event) override
PCB_BASE_FRAME * m_parent
void onAbsolutePlacement(wxCommandEvent &event) override
std::unique_ptr< GRAPHICS_IMPORT_MGR > m_gfxImportMgr
static bool m_placementInteractive
UNIT_BINDER m_defaultLineWidth
static bool m_shouldGroupItems
void onBrowseFiles(wxCommandEvent &event) override
std::unique_ptr< GRAPHICS_IMPORTER_PCBNEW > m_importer
void onGroupItems(wxCommandEvent &event) override
void onInteractivePlacement(wxCommandEvent &event) override
Manage vector graphics importers.
Base PCB main window class for Pcbnew, Gerbview, and CvPcb footprint viewer.