KiCad PCB EDA Suite
Loading...
Searching...
No Matches
dialog_import_gfx_sch.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_SCH_H__
26#define __DIALOG_IMPORT_GFX_SCH_H__
27
29
31#include <widgets/unit_binder.h>
32
33class SCH_BASE_FRAME;
35
36
38{
39public:
42
46 std::list<std::unique_ptr<EDA_ITEM>>& GetImportedItems()
47 {
48 return m_importer->GetItems();
49 }
50
57
58 bool TransferDataFromWindow() override;
59
60private:
61 // Virtual event handlers
62 void onBrowseFiles( wxCommandEvent& event ) override;
63 void onFilename( wxCommandEvent& event );
64 void originOptionOnUpdateUI( wxUpdateUIEvent& event ) override;
65
66 void onInteractivePlacement( wxCommandEvent& event ) override
67 {
69 }
70
71 void onAbsolutePlacement( wxCommandEvent& event ) override
72 {
74 }
75
76private:
78 std::unique_ptr<GRAPHICS_IMPORTER> m_importer;
79 std::unique_ptr<GRAPHICS_IMPORT_MGR> m_gfxImportMgr;
80
84
86 static double m_importScale; // a scale factor to change the size of imported
87 // items m_importScale =1.0 means keep original size
88};
89
90#endif // __DIALOG_IMPORT_GFX_SCH_H__
Class DIALOG_IMPORT_GFX_SCH_BASE.
void onBrowseFiles(wxCommandEvent &event) override
std::unique_ptr< GRAPHICS_IMPORTER > m_importer
void onFilename(wxCommandEvent &event)
void onInteractivePlacement(wxCommandEvent &event) override
void originOptionOnUpdateUI(wxUpdateUIEvent &event) override
bool TransferDataFromWindow() override
std::list< std::unique_ptr< EDA_ITEM > > & GetImportedItems()
void onAbsolutePlacement(wxCommandEvent &event) override
std::unique_ptr< GRAPHICS_IMPORT_MGR > m_gfxImportMgr
Manage vector graphics importers.
A shim class between EDA_DRAW_FRAME and several derived classes: SYMBOL_EDIT_FRAME,...