KiCad PCB EDA Suite
Loading...
Searching...
No Matches
drc_re_permitted_layers_overlay_panel.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 (C) 2024 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
27
29#include <wx/checkbox.h>
30
31
33 wxWindow* aParent, DRC_RE_PERMITTED_LAYERS_CONSTRAINT_DATA* aData ) :
35 m_data( aData ),
36 m_topLayerCheckbox( nullptr ),
37 m_bottomLayerCheckbox( nullptr )
38{
39 SetBackgroundBitmap( m_data->GetOverlayBitmap() );
40
41 std::vector<DRC_RE_FIELD_POSITION> positions = m_data->GetFieldPositions();
42
43 DRC_RE_OVERLAY_FIELD* topField = AddCheckbox( wxS( "top_layer" ), positions[0] );
44 m_topLayerCheckbox = static_cast<wxCheckBox*>( topField->GetControl() );
45
46 DRC_RE_OVERLAY_FIELD* bottomField = AddCheckbox( wxS( "bottom_layer" ), positions[1] );
47 m_bottomLayerCheckbox = static_cast<wxCheckBox*>( bottomField->GetControl() );
48
49 auto notifyModified = [this]( wxCommandEvent& )
50 {
52 if( dlg )
53 dlg->SetModified();
54 };
55
56 m_topLayerCheckbox->Bind( wxEVT_CHECKBOX, notifyModified );
57 m_bottomLayerCheckbox->Bind( wxEVT_CHECKBOX, notifyModified );
58
61}
62
63
65{
67 return false;
68
69 m_topLayerCheckbox->SetValue( m_data->GetTopLayerEnabled() );
70 m_bottomLayerCheckbox->SetValue( m_data->GetBottomLayerEnabled() );
71
72 return true;
73}
74
75
77{
79 return false;
80
81 m_data->SetTopLayerEnabled( m_topLayerCheckbox->GetValue() );
82 m_data->SetBottomLayerEnabled( m_bottomLayerCheckbox->GetValue() );
83
84 return true;
85}
86
87
89 wxString* aValidationMessage )
90{
92
93 VALIDATION_RESULT result = m_data->Validate();
94
95 if( !result.isValid )
96 {
97 *aErrorCount = result.errors.size();
98
99 for( size_t i = 0; i < result.errors.size(); i++ )
100 *aValidationMessage += DRC_RULE_EDITOR_UTILS::FormatErrorMessage( i + 1, result.errors[i] );
101
102 return false;
103 }
104
105 return true;
106}
107
108
110{
111 if( !m_data )
112 return wxEmptyString;
113
114 return m_data->GenerateRule( aContext );
115}
DRC_RE_OVERLAY_FIELD * AddCheckbox(const wxString &aId, const DRC_RE_FIELD_POSITION &aPosition)
Create and position a checkbox control on the bitmap overlay.
void SetBackgroundBitmap(BITMAPS aBitmap)
Set the background bitmap for this panel.
DRC_RE_BITMAP_OVERLAY_PANEL(wxWindow *aParent, wxWindowID aId=wxID_ANY)
void PositionFields()
Position all fields based on the current scale factor.
Wraps a wxControl positioned over a bitmap overlay panel.
wxControl * GetControl() const
DRC_RE_PERMITTED_LAYERS_CONSTRAINT_DATA * m_data
DRC_RE_PERMITTED_LAYERS_OVERLAY_PANEL(wxWindow *aParent, DRC_RE_PERMITTED_LAYERS_CONSTRAINT_DATA *aData)
wxString GenerateRule(const RULE_GENERATION_CONTEXT &aContext) override
bool ValidateInputs(int *aErrorCount, wxString *aValidationMessage) override
static wxString FormatErrorMessage(int aErrorCount, const wxString &aErrorMessage)
void SetModified()
Marks the dialog as modified, indicating unsaved changes.
static RULE_EDITOR_DIALOG_BASE * GetDialog(wxWindow *aWindow)
Static method to retrieve the rule editor dialog instance associated with a given window.
Result of a validation operation.
wxString result
Test unit parsing edge cases and error handling.