KiCad PCB EDA Suite
Loading...
Searching...
No Matches
dialog_import_graphics.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_GRAPHICS_H
26#define DIALOG_IMPORT_GRAPHICS_H
27
28#include <widgets/unit_binder.h>
29#include <pcb_edit_frame.h>
30#include <pcbnew_settings.h>
33
35
36
38{
39public:
42
46 std::list<std::unique_ptr<EDA_ITEM>>& GetImportedItems()
47 {
48 return m_importer->GetItems();
49 }
50
56 bool IsPlacementInteractive() { return !m_placeAtCheckbox->GetValue(); }
57
61 bool ShouldFixDiscontinuities() { return m_rbFixDiscontinuities->GetValue(); }
62
66 int GetTolerance() { return m_tolerance.GetValue(); }
67
71 bool ShouldGroupItems() { return m_cbGroupItems->IsChecked(); }
72
73 bool TransferDataFromWindow() override;
74
75private:
76 // Virtual event handlers
77 void onBrowseFiles( wxCommandEvent& event ) override;
78 void onFilename( wxCommandEvent& event );
79 void onUpdateUI( wxUpdateUIEvent& event ) override;
80
81private:
83 std::unique_ptr<GRAPHICS_IMPORTER_PCBNEW> m_importer;
84 std::unique_ptr<GRAPHICS_IMPORT_MGR> m_gfxImportMgr;
85
90
92 static bool s_shouldGroupItems;
95 static int s_toleranceValue;
96 static double s_importScale; // a scale factor to change the size of imported
97 // items m_importScale =1.0 means keep original size
98};
99
100#endif // DIALOG_IMPORT_GRAPHICS_H
Class DIALOG_IMPORT_GRAPHICS_BASE.
std::list< std::unique_ptr< EDA_ITEM > > & GetImportedItems()
std::unique_ptr< GRAPHICS_IMPORT_MGR > m_gfxImportMgr
void onFilename(wxCommandEvent &event)
std::unique_ptr< GRAPHICS_IMPORTER_PCBNEW > m_importer
void onBrowseFiles(wxCommandEvent &event) override
void onUpdateUI(wxUpdateUIEvent &event) override
Manage vector graphics importers.
Base PCB main window class for Pcbnew, Gerbview, and CvPcb footprint viewer.
virtual long long int GetValue()
Return the current value in Internal Units.