KiCad PCB EDA Suite
Loading...
Searching...
No Matches
drc_re_routing_width_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
24
25#include <base_units.h>
26#include <eda_base_frame.h>
27#include <widgets/unit_binder.h>
28
29#include <wx/textctrl.h>
30#include <wx/stattext.h>
32
33
35 wxWindow* aParent,
37 EDA_UNITS aUnits ) :
39 m_data( aData ),
41{
43
44 std::vector<DRC_RE_FIELD_POSITION> positions = m_data->GetFieldPositions();
45
46 wxWindow* eventSource = nullptr;
47
48 for( wxWindow* win = aParent; win; win = win->GetParent() )
49 {
50 if( dynamic_cast<EDA_BASE_FRAME*>( win ) )
51 {
52 eventSource = win;
53 break;
54 }
55 }
56
57
58 // Create opt width field
59 auto* optWidthField = AddField<wxTextCtrl>( wxS( "opt_width" ), positions[0], wxTE_CENTRE | wxTE_PROCESS_ENTER );
61 std::make_unique<UNIT_BINDER>( &m_unitsProvider, eventSource, nullptr, optWidthField->GetControl(),
62 optWidthField->GetLabel(), false, false );
63 optWidthField->SetUnitBinder( m_optWidthBinder.get() );
64 optWidthField->GetControl()->SetValidator( VALIDATOR_NUMERIC_CTRL( false, false ) );
65
66 // Create width tolerance field
67 auto* widthTolField =
68 AddField<wxTextCtrl>( wxS( "width_tolerance" ), positions[1], wxTE_CENTRE | wxTE_PROCESS_ENTER );
70 std::make_unique<UNIT_BINDER>( &m_unitsProvider, eventSource, nullptr, widthTolField->GetControl(),
71 widthTolField->GetLabel(), false, false );
72 widthTolField->SetUnitBinder( m_widthToleranceBinder.get() );
73 widthTolField->GetControl()->SetValidator( VALIDATOR_NUMERIC_CTRL( false, false ) );
74
75 auto notifyModified = [this]( wxCommandEvent& )
76 {
78 if( dlg )
79 dlg->SetModified();
80 };
81
82 optWidthField->GetControl()->Bind( wxEVT_TEXT, notifyModified );
83 widthTolField->GetControl()->Bind( wxEVT_TEXT, notifyModified );
84
85 auto notifySave = [this]( wxCommandEvent& aEvent )
86 {
88 if( dlg )
89 dlg->OnSave( aEvent );
90 };
91
92 optWidthField->GetControl()->Bind( wxEVT_TEXT_ENTER, notifySave );
93 widthTolField->GetControl()->Bind( wxEVT_TEXT_ENTER, notifySave );
94
95 // Position all fields and update the panel layout
98}
99
100
102{
103 if( !m_data )
104 return false;
105
106 m_optWidthBinder->ChangeDoubleValue( pcbIUScale.mmToIU( m_data->GetOptWidth() ) );
107 m_widthToleranceBinder->ChangeDoubleValue( pcbIUScale.mmToIU( m_data->GetWidthTolerance() ) );
108
109 return true;
110}
111
112
114{
115 if( !m_data )
116 return false;
117
118 m_data->SetOptWidth( pcbIUScale.IUTomm( m_optWidthBinder->GetDoubleValue() ) );
119 m_data->SetWidthTolerance( pcbIUScale.IUTomm( m_widthToleranceBinder->GetDoubleValue() ) );
120
121 return true;
122}
123
124
126 wxString* aValidationMessage )
127{
129
130 VALIDATION_RESULT result = m_data->Validate();
131
132 if( !result.isValid )
133 {
134 *aErrorCount = result.errors.size();
135
136 for( size_t i = 0; i < result.errors.size(); i++ )
137 *aValidationMessage += DRC_RULE_EDITOR_UTILS::FormatErrorMessage( i + 1, result.errors[i] );
138
139 return false;
140 }
141
142 return true;
143}
144
145
147{
148 if( !m_data )
149 return wxEmptyString;
150
151 return m_data->GenerateRule( aContext );
152}
constexpr EDA_IU_SCALE pcbIUScale
Definition base_units.h:121
@ constraint_routing_width
DRC_RE_OVERLAY_FIELD * AddField(const wxString &aId, const DRC_RE_FIELD_POSITION &aPosition, long aStyle=0)
Create and position a field 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.
wxString GenerateRule(const RULE_GENERATION_CONTEXT &aContext) override
DRC_RE_ROUTING_WIDTH_CONSTRAINT_DATA * m_data
bool ValidateInputs(int *aErrorCount, wxString *aValidationMessage) override
DRC_RE_ROUTING_WIDTH_OVERLAY_PANEL(wxWindow *aParent, DRC_RE_ROUTING_WIDTH_CONSTRAINT_DATA *aData, EDA_UNITS aUnits)
static wxString FormatErrorMessage(int aErrorCount, const wxString &aErrorMessage)
The base frame for deriving all KiCad main window classes.
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.
virtual void OnSave(wxCommandEvent &aEvent)=0
Base window classes and related definitions.
EDA_UNITS
Definition eda_units.h:44
Result of a validation operation.
wxString result
Test unit parsing edge cases and error handling.