/* * This program source code file is part of KiCad, a free EDA CAD application. * * Copyright The KiCad Developers, see AUTHORS.txt for contributors. * * 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 */ #ifndef PCB_DESIGN_BLOCK_PANE_H #define PCB_DESIGN_BLOCK_PANE_H #include #include #include #include #include #include #include class PCB_EDIT_FRAME; class PANEL_DESIGN_BLOCK_CHOOSER; class PCB_DESIGN_BLOCK_PANE : public DESIGN_BLOCK_PANE { public: PCB_DESIGN_BLOCK_PANE( PCB_EDIT_FRAME* aParent, const LIB_ID* aPreselect, std::vector& aHistoryList ); void OnCheckBox( wxCommandEvent& aEvent ); void UpdateCheckboxes(); void OnSaveBoardAsDesignBlock( wxCommandEvent& aEvent ); void OnSaveSelectionAsDesignBlock( wxCommandEvent& aEvent ); protected: void setLabelsAndTooltips() override; wxCheckBox* m_repeatedPlacement; wxCheckBox* m_placeAsGroup; wxCheckBox* m_keepAnnotations; }; // This is a helper class for the file dialog to allow the user to choose similar options // as the design block chooser when importing a board. class FILEDLG_IMPORT_BOARD_CONTENTS : public wxFileDialogCustomizeHook { public: FILEDLG_IMPORT_BOARD_CONTENTS( PCBNEW_SETTINGS* aSettings ); void AddCustomControls( wxFileDialogCustomize& customizer ) override; void TransferDataFromCustomControls() override; private: PCBNEW_SETTINGS* m_settings; wxFileDialogCheckBox* m_cbRepeatedPlacement; wxFileDialogCheckBox* m_cbPlaceAsGroup; wxFileDialogCheckBox* m_cbKeepAnnotations; wxDECLARE_NO_COPY_CLASS( FILEDLG_IMPORT_BOARD_CONTENTS ); }; #endif