KiCad PCB EDA Suite
Loading...
Searching...
No Matches
drc_re_bool_input_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, see <https://www.gnu.org/licenses/>.
18 */
19
23
25#include <wx/checkbox.h>
26
27
29 wxWindow* aParent, DRC_RE_BOOL_INPUT_CONSTRAINT_DATA* aData ) :
31 m_data( aData ),
32 m_boolInputCheckbox( nullptr )
33{
34 SetBackgroundBitmap( m_data->GetOverlayBitmap() );
35
36 std::vector<DRC_RE_FIELD_POSITION> positions = m_data->GetFieldPositions();
37
38 DRC_RE_OVERLAY_FIELD* field = AddCheckbox( wxS( "bool_input" ), positions[0] );
39 m_boolInputCheckbox = static_cast<wxCheckBox*>( field->GetControl() );
40
41 m_boolInputCheckbox->Bind( wxEVT_CHECKBOX, [this]( wxCommandEvent& )
42 {
44 if( dlg )
45 dlg->SetModified();
46 } );
47
50}
51
52
54{
56 return false;
57
58 m_boolInputCheckbox->SetValue( m_data->GetBoolInputValue() );
59
60 return true;
61}
62
63
65{
67 return false;
68
69 m_data->SetBoolInputValue( m_boolInputCheckbox->GetValue() );
70
71 return true;
72}
73
74
76 wxString* aValidationMessage )
77{
79
80 VALIDATION_RESULT result = m_data->Validate();
81
82 if( !result.isValid )
83 {
84 *aErrorCount = result.errors.size();
85
86 for( size_t i = 0; i < result.errors.size(); i++ )
87 *aValidationMessage += DRC_RULE_EDITOR_UTILS::FormatErrorMessage( i + 1, result.errors[i] );
88
89 return false;
90 }
91
92 return true;
93}
94
95
97{
98 if( !m_data )
99 return wxEmptyString;
100
101 return m_data->GenerateRule( aContext );
102}
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.
DRC_RE_BOOL_INPUT_CONSTRAINT_DATA * m_data
wxString GenerateRule(const RULE_GENERATION_CONTEXT &aContext) override
DRC_RE_BOOL_INPUT_OVERLAY_PANEL(wxWindow *aParent, DRC_RE_BOOL_INPUT_CONSTRAINT_DATA *aData)
bool ValidateInputs(int *aErrorCount, wxString *aValidationMessage) override
Wraps a wxControl positioned over a bitmap overlay panel.
wxControl * GetControl() const
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.