mirror of
https://gitlab.com/kicad/code/kicad.git
synced 2025-04-23 00:23:32 +00:00
81 lines
2.6 KiB
C++
81 lines
2.6 KiB
C++
/*
|
|
* 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 <widgets/design_block_pane.h>
|
|
#include <design_block_tree_model_adapter.h>
|
|
#include <widgets/html_window.h>
|
|
#include <widgets/wx_panel.h>
|
|
#include <wx/checkbox.h>
|
|
#include <wx/filedlgcustomize.h>
|
|
#include <pcbnew_settings.h>
|
|
|
|
|
|
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<LIB_ID>& aHistoryList );
|
|
|
|
void OnCheckBox( wxCommandEvent& aEvent );
|
|
void UpdateCheckboxes();
|
|
|
|
void OnSaveSheetAsDesignBlock( 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 sheet.
|
|
class FILEDLG_IMPORT_SHEET_CONTENTS : public wxFileDialogCustomizeHook
|
|
{
|
|
public:
|
|
FILEDLG_IMPORT_SHEET_CONTENTS( PCBNEW_SETTINGS* aSettings );
|
|
|
|
void AddCustomControls( wxFileDialogCustomize& customizer ) override;
|
|
|
|
void TransferDataFromCustomControls() override;
|
|
|
|
private:
|
|
PCBNEW_SETTINGS* m_settings;
|
|
|
|
wxFileDialogCheckBox* m_cbRepeatedPlacement;
|
|
wxFileDialogCheckBox* m_cbPlaceAsSheet;
|
|
wxFileDialogCheckBox* m_cbKeepAnnotations;
|
|
|
|
wxDECLARE_NO_COPY_CLASS( FILEDLG_IMPORT_SHEET_CONTENTS );
|
|
};
|
|
|
|
#endif
|