2018-10-13 18:37:28 +00:00
|
|
|
/*
|
|
|
|
* This program source code file is part of KiCad, a free EDA CAD application.
|
|
|
|
*
|
|
|
|
* Copyright (C) 2013 Jean-Pierre Charras, jp.charras at wanadoo.fr
|
2022-09-12 23:58:55 +00:00
|
|
|
* Copyright (C) 1992-2022 KiCad Developers, see AUTHORS.txt for contributors.
|
2018-10-13 18:37:28 +00:00
|
|
|
*
|
|
|
|
* 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
|
|
|
|
*/
|
|
|
|
|
2023-10-18 13:20:34 +00:00
|
|
|
#ifndef DIALOG_IMPORT_GRAPHICS_H
|
|
|
|
#define DIALOG_IMPORT_GRAPHICS_H
|
2019-04-03 13:57:31 +00:00
|
|
|
|
2022-09-12 23:58:55 +00:00
|
|
|
#include <widgets/unit_binder.h>
|
2018-11-05 16:04:05 +00:00
|
|
|
#include <pcb_edit_frame.h>
|
2020-01-13 01:44:19 +00:00
|
|
|
#include <pcbnew_settings.h>
|
2023-10-18 13:20:34 +00:00
|
|
|
#include <import_gfx/dialog_import_graphics_base.h>
|
2018-10-13 18:37:28 +00:00
|
|
|
#include <import_gfx/graphics_importer_pcbnew.h>
|
|
|
|
|
2018-12-12 12:26:03 +00:00
|
|
|
class GRAPHICS_IMPORT_MGR;
|
|
|
|
|
2022-09-12 23:58:55 +00:00
|
|
|
|
2023-10-18 13:20:34 +00:00
|
|
|
class DIALOG_IMPORT_GRAPHICS : public DIALOG_IMPORT_GRAPHICS_BASE
|
2018-10-13 18:37:28 +00:00
|
|
|
{
|
|
|
|
public:
|
2023-10-18 13:20:34 +00:00
|
|
|
DIALOG_IMPORT_GRAPHICS( PCB_BASE_FRAME* aParent );
|
|
|
|
~DIALOG_IMPORT_GRAPHICS();
|
2018-10-13 18:37:28 +00:00
|
|
|
|
|
|
|
/**
|
2018-11-05 16:04:05 +00:00
|
|
|
* @return a list of items imported from a vector graphics file.
|
2018-10-13 18:37:28 +00:00
|
|
|
*/
|
|
|
|
std::list<std::unique_ptr<EDA_ITEM>>& GetImportedItems()
|
|
|
|
{
|
|
|
|
return m_importer->GetItems();
|
|
|
|
}
|
|
|
|
|
2019-04-03 13:57:31 +00:00
|
|
|
/**
|
|
|
|
* @return true if the placement is interactive, i.e. all imported
|
2018-11-05 16:04:05 +00:00
|
|
|
* items must be moved by the mouse cursor to the final position
|
|
|
|
* false means the imported items are placed to the final position after import.
|
|
|
|
*/
|
2023-10-18 13:20:34 +00:00
|
|
|
bool IsPlacementInteractive() { return !m_placeAtCheckbox->GetValue(); }
|
2023-10-17 07:27:59 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
* @return true if discontinuities in the shapes should be fixed.
|
|
|
|
*/
|
2023-10-18 13:20:34 +00:00
|
|
|
bool ShouldFixDiscontinuities() { return m_rbFixDiscontinuities->GetValue(); }
|
2023-10-17 07:27:59 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
* @return tolerance to connect the shapes.
|
|
|
|
*/
|
2023-10-18 13:20:34 +00:00
|
|
|
int GetTolerance() { return m_tolerance.GetValue(); }
|
2020-08-20 00:22:48 +00:00
|
|
|
|
2023-11-15 19:22:43 +00:00
|
|
|
/**
|
|
|
|
* @return true if imported items must be placed in a new PCB_GROUP.
|
|
|
|
*/
|
|
|
|
bool ShouldGroupItems() { return m_cbGroupItems->IsChecked(); }
|
|
|
|
|
2019-04-03 13:57:31 +00:00
|
|
|
bool TransferDataFromWindow() override;
|
|
|
|
|
2018-10-13 18:37:28 +00:00
|
|
|
private:
|
|
|
|
// Virtual event handlers
|
2018-11-05 16:04:05 +00:00
|
|
|
void onBrowseFiles( wxCommandEvent& event ) override;
|
2022-07-18 16:49:50 +00:00
|
|
|
void onFilename( wxCommandEvent& event );
|
2023-10-18 13:20:34 +00:00
|
|
|
void onUpdateUI( wxUpdateUIEvent& event ) override;
|
2020-08-20 00:22:48 +00:00
|
|
|
|
2022-09-12 23:58:55 +00:00
|
|
|
private:
|
|
|
|
PCB_BASE_FRAME* m_parent;
|
2021-06-04 17:44:22 +00:00
|
|
|
std::unique_ptr<GRAPHICS_IMPORTER_PCBNEW> m_importer;
|
|
|
|
std::unique_ptr<GRAPHICS_IMPORT_MGR> m_gfxImportMgr;
|
|
|
|
|
2022-09-12 23:58:55 +00:00
|
|
|
UNIT_BINDER m_xOrigin;
|
|
|
|
UNIT_BINDER m_yOrigin;
|
|
|
|
UNIT_BINDER m_defaultLineWidth;
|
2023-10-17 07:27:59 +00:00
|
|
|
UNIT_BINDER m_tolerance;
|
2022-09-12 23:58:55 +00:00
|
|
|
|
2023-11-15 19:22:43 +00:00
|
|
|
static bool s_useDlgLayerSelection;
|
2023-10-17 07:27:59 +00:00
|
|
|
static bool s_shouldGroupItems;
|
|
|
|
static bool s_placementInteractive;
|
|
|
|
static bool s_fixDiscontinuities;
|
|
|
|
static int s_toleranceValue;
|
|
|
|
static double s_importScale; // a scale factor to change the size of imported
|
2022-09-12 23:58:55 +00:00
|
|
|
// items m_importScale =1.0 means keep original size
|
2018-10-13 18:37:28 +00:00
|
|
|
};
|
2019-04-03 13:57:31 +00:00
|
|
|
|
2023-10-18 13:20:34 +00:00
|
|
|
#endif // DIALOG_IMPORT_GRAPHICS_H
|