KiCad PCB EDA Suite
All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Modules Pages Concepts
sch_design_block_pane.cpp
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 The KiCad Developers, see AUTHORS.txt for contributors.
5 *
6 * This program is free software; you can redistribute it and/or
7 * modify it under the terms of the GNU General Public License
8 * as published by the Free Software Foundation; either version 2
9 * of the License, or (at your option) any later version.
10 *
11 * This program is distributed in the hope that it will be useful,
12 * but WITHOUT ANY WARRANTY; without even the implied warranty of
13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 * GNU General Public License for more details.
15 *
16 * You should have received a copy of the GNU General Public License
17 * along with this program; if not, you may find one here:
18 * http://www.gnu.org/licenses/old-licenses/gpl-2.0.html
19 * or you may search the http://www.gnu.org website for the version 2 license,
20 * or you may write to the Free Software Foundation, Inc.,
21 * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA
22 */
23
24#include <design_block.h>
28#include <kiface_base.h>
29#include <sch_edit_frame.h>
30#include <core/kicad_algo.h>
31#include <template_fieldnames.h>
32#include <wx/button.h>
33#include <wx/checkbox.h>
34#include <wx/sizer.h>
35#include <sch_actions.h>
36#include <tool/tool_manager.h>
38
39
40// Do not make these static wxStrings; they need to respond to language changes
41#define REPEATED_PLACEMENT _( "Place repeated copies" )
42#define PLACE_AS_SHEET _( "Place as sheet" )
43#define KEEP_ANNOTATIONS _( "Keep annotations" )
44
46 std::vector<LIB_ID>& aHistoryList ) :
47 DESIGN_BLOCK_PANE( aParent, aPreselect, aHistoryList )
48{
49 wxBoxSizer* sizer = new wxBoxSizer( wxVERTICAL );
50
51 m_chooserPanel = new PANEL_DESIGN_BLOCK_CHOOSER( aParent, this, aHistoryList,
52 [aParent]()
53 {
54 aParent->GetToolManager()->RunAction(
56 },
57 aParent->GetToolManager()->GetTool<SCH_DESIGN_BLOCK_CONTROL>()
58 );
59 // Use the same draw engine type as the one used in parent frame m_frame
63 sizer->Add( m_chooserPanel, 1, wxEXPAND, 5 );
64
65 if( aPreselect && aPreselect->IsValid() )
66 m_chooserPanel->SetPreselect( *aPreselect );
67
68 SetName( wxT( "Design Blocks" ) );
69
70 wxBoxSizer* cbSizer = new wxBoxSizer( wxVERTICAL );
71
72 m_repeatedPlacement = new wxCheckBox( this, wxID_ANY, REPEATED_PLACEMENT );
73 m_placeAsSheet = new wxCheckBox( this, wxID_ANY, PLACE_AS_SHEET );
74 m_keepAnnotations = new wxCheckBox( this, wxID_ANY, KEEP_ANNOTATIONS );
77
78 // Set all checkbox handlers to the same function
79 m_repeatedPlacement->Bind( wxEVT_CHECKBOX, &SCH_DESIGN_BLOCK_PANE::OnCheckBox, this );
80 m_placeAsSheet->Bind( wxEVT_CHECKBOX, &SCH_DESIGN_BLOCK_PANE::OnCheckBox, this );
81 m_keepAnnotations->Bind( wxEVT_CHECKBOX, &SCH_DESIGN_BLOCK_PANE::OnCheckBox, this );
82
83 cbSizer->Add( m_repeatedPlacement, 0, wxTOP | wxLEFT, 2 );
84 cbSizer->Add( m_placeAsSheet, 0, wxTOP | wxLEFT, 2 );
85 cbSizer->Add( m_keepAnnotations, 0, wxTOP | wxLEFT | wxBOTTOM, 2 );
86
87 sizer->Add( cbSizer, 0, wxEXPAND, 5 );
88 SetSizer( sizer );
89
91 Layout();
92
93 Bind( wxEVT_CHAR_HOOK, &PANEL_DESIGN_BLOCK_CHOOSER::OnChar, m_chooserPanel );
94}
95
96
98{
100 {
102 m_repeatedPlacement->SetToolTip( _( "Place copies of the design block on subsequent "
103 "clicks." ) );
104 }
105
106 if( m_placeAsSheet )
107 {
108 m_placeAsSheet->SetLabel( PLACE_AS_SHEET );
109 m_placeAsSheet->SetToolTip( _( "Place the design block as a new sheet." ) );
110 }
111
113 {
115 m_keepAnnotations->SetToolTip( _( "Preserve reference designators in the source "
116 "schematic. Otherwise, clear then reannotate according "
117 "to settings." ) );
118 }
119}
120
121
122void SCH_DESIGN_BLOCK_PANE::OnCheckBox( wxCommandEvent& aEvent )
123{
124 if( EESCHEMA_SETTINGS* cfg = dynamic_cast<EESCHEMA_SETTINGS*>( Kiface().KifaceSettings() ) )
125 {
126 cfg->m_DesignBlockChooserPanel.repeated_placement = m_repeatedPlacement->GetValue();
127 cfg->m_DesignBlockChooserPanel.place_as_sheet = m_placeAsSheet->GetValue();
128 cfg->m_DesignBlockChooserPanel.keep_annotations = m_keepAnnotations->GetValue();
129 }
130}
131
132
134{
135 if( EESCHEMA_SETTINGS* cfg = dynamic_cast<EESCHEMA_SETTINGS*>( Kiface().KifaceSettings() ) )
136 {
137 m_repeatedPlacement->SetValue( cfg->m_DesignBlockChooserPanel.repeated_placement );
138 m_placeAsSheet->SetValue( cfg->m_DesignBlockChooserPanel.place_as_sheet );
139 m_keepAnnotations->SetValue( cfg->m_DesignBlockChooserPanel.keep_annotations );
140 }
141}
142
143
145 m_cbRepeatedPlacement( nullptr ), m_cbPlaceAsSheet( nullptr ), m_cbKeepAnnotations( nullptr )
146{
147 wxASSERT( aSettings );
148 m_settings = aSettings;
149};
150
151
153{
157}
158
159
160void FILEDLG_IMPORT_SHEET_CONTENTS::AddCustomControls( wxFileDialogCustomize& customizer )
161{
162 m_cbRepeatedPlacement = customizer.AddCheckBox( REPEATED_PLACEMENT );
164 m_cbPlaceAsSheet = customizer.AddCheckBox( PLACE_AS_SHEET );
166 m_cbKeepAnnotations = customizer.AddCheckBox( KEEP_ANNOTATIONS );
168}
KIFACE_BASE & Kiface()
Global KIFACE_BASE "get" accessor.
PANEL_DESIGN_BLOCK_CHOOSER m_DesignBlockChooserPanel
Definition: app_settings.h:197
PANEL_DESIGN_BLOCK_CHOOSER * m_chooserPanel
EDA_DRAW_FRAME * m_frame
virtual EDA_DRAW_PANEL_GAL * GetCanvas() const
Return a pointer to GAL-based canvas of given EDA draw frame.
GAL_TYPE GetBackend() const
Return the type of backend currently used by GAL canvas.
wxFileDialogCheckBox * m_cbKeepAnnotations
void AddCustomControls(wxFileDialogCustomize &customizer) override
FILEDLG_IMPORT_SHEET_CONTENTS(EESCHEMA_SETTINGS *aSettings)
wxFileDialogCheckBox * m_cbRepeatedPlacement
wxFileDialogCheckBox * m_cbPlaceAsSheet
A logical library item identifier and consists of various portions much like a URI.
Definition: lib_id.h:49
bool IsValid() const
Check if this LID_ID is valid.
Definition: lib_id.h:172
void SetPreselect(const LIB_ID &aPreselect)
void SetPreviewWidget(DESIGN_BLOCK_PREVIEW_WIDGET *aPreview)
static TOOL_ACTION placeDesignBlock
Definition: sch_actions.h:69
void setLabelsAndTooltips() override
void OnCheckBox(wxCommandEvent &aEvent)
SCH_DESIGN_BLOCK_PANE(SCH_EDIT_FRAME *aParent, const LIB_ID *aPreselect, std::vector< LIB_ID > &aHistoryList)
Schematic editor (Eeschema) main window.
TOOL_MANAGER * GetToolManager() const
Return the MVC controller.
Definition: tools_holder.h:55
#define _(s)
#define KEEP_ANNOTATIONS
#define REPEATED_PLACEMENT
#define PLACE_AS_SHEET