KiCad PCB EDA Suite
Loading...
Searching...
No Matches
drc_re_rtg_diff_pair_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>
31
32
34 wxWindow* aParent,
36 EDA_UNITS aUnits ) :
38 m_data( aData ),
40{
42
43 std::vector<DRC_RE_FIELD_POSITION> positions = m_data->GetFieldPositions();
44
45 wxWindow* eventSource = nullptr;
46
47 for( wxWindow* win = aParent; win; win = win->GetParent() )
48 {
49 if( dynamic_cast<EDA_BASE_FRAME*>( win ) )
50 {
51 eventSource = win;
52 break;
53 }
54 }
55
56 auto* optWidthField = AddField<wxTextCtrl>( wxS( "opt_width" ), positions[0], wxTE_CENTRE | wxTE_PROCESS_ENTER );
58 std::make_unique<UNIT_BINDER>( &m_unitsProvider, eventSource, nullptr, optWidthField->GetControl(),
59 optWidthField->GetLabel(), false, false );
60 optWidthField->SetUnitBinder( m_optWidthBinder.get() );
61
62 auto* widthTolField =
63 AddField<wxTextCtrl>( wxS( "width_tolerance" ), positions[1], wxTE_CENTRE | wxTE_PROCESS_ENTER );
65 std::make_unique<UNIT_BINDER>( &m_unitsProvider, eventSource, nullptr, widthTolField->GetControl(),
66 widthTolField->GetLabel(), false, false );
67 widthTolField->SetUnitBinder( m_widthToleranceBinder.get() );
68
69 auto* optGapField = AddField<wxTextCtrl>( wxS( "opt_gap" ), positions[2], wxTE_CENTRE | wxTE_PROCESS_ENTER );
70 m_optGapBinder = std::make_unique<UNIT_BINDER>( &m_unitsProvider, eventSource, nullptr, optGapField->GetControl(),
71 optGapField->GetLabel(), false, false );
72 optGapField->SetUnitBinder( m_optGapBinder.get() );
73
74 auto* gapTolField = AddField<wxTextCtrl>( wxS( "gap_tolerance" ), positions[3], wxTE_CENTRE | wxTE_PROCESS_ENTER );
75 m_gapToleranceBinder = std::make_unique<UNIT_BINDER>(
76 &m_unitsProvider, eventSource, nullptr, gapTolField->GetControl(), gapTolField->GetLabel(), false, false );
77 gapTolField->SetUnitBinder( m_gapToleranceBinder.get() );
78
79 auto* maxUncoupledField =
80 AddField<wxTextCtrl>( wxS( "max_uncoupled" ), positions[4], wxTE_CENTRE | wxTE_PROCESS_ENTER );
82 std::make_unique<UNIT_BINDER>( &m_unitsProvider, eventSource, nullptr, maxUncoupledField->GetControl(),
83 maxUncoupledField->GetLabel(), false, false );
84 maxUncoupledField->SetUnitBinder( m_maxUncoupledLengthBinder.get() );
85
86 auto notifyModified = [this]( wxCommandEvent& )
87 {
89 if( dlg )
90 dlg->SetModified();
91 };
92
93 optWidthField->GetControl()->Bind( wxEVT_TEXT, notifyModified );
94 widthTolField->GetControl()->Bind( wxEVT_TEXT, notifyModified );
95 optGapField->GetControl()->Bind( wxEVT_TEXT, notifyModified );
96 gapTolField->GetControl()->Bind( wxEVT_TEXT, notifyModified );
97 maxUncoupledField->GetControl()->Bind( wxEVT_TEXT, notifyModified );
98
99 auto notifySave = [this]( wxCommandEvent& aEvent )
100 {
102 if( dlg )
103 dlg->OnSave( aEvent );
104 };
105
106 optWidthField->GetControl()->Bind( wxEVT_TEXT_ENTER, notifySave );
107 widthTolField->GetControl()->Bind( wxEVT_TEXT_ENTER, notifySave );
108 optGapField->GetControl()->Bind( wxEVT_TEXT_ENTER, notifySave );
109 gapTolField->GetControl()->Bind( wxEVT_TEXT_ENTER, notifySave );
110 maxUncoupledField->GetControl()->Bind( wxEVT_TEXT_ENTER, notifySave );
111
112 // Position all fields and update the panel layout
115}
116
117
119{
120 if( !m_data )
121 return false;
122
123 // Convert mm values to internal units and set them in the binders
124 // Use ChangeDoubleValue to avoid triggering modification events during loading
125 m_optWidthBinder->ChangeDoubleValue( pcbIUScale.mmToIU( m_data->GetOptWidth() ) );
126 m_widthToleranceBinder->ChangeDoubleValue( pcbIUScale.mmToIU( m_data->GetWidthTolerance() ) );
127
128 m_optGapBinder->ChangeDoubleValue( pcbIUScale.mmToIU( m_data->GetOptGap() ) );
129 m_gapToleranceBinder->ChangeDoubleValue( pcbIUScale.mmToIU( m_data->GetGapTolerance() ) );
130
131 m_maxUncoupledLengthBinder->ChangeDoubleValue( pcbIUScale.mmToIU( m_data->GetMaxUncoupledLength() ) );
132
133 return true;
134}
135
136
138{
139 if( !m_data )
140 return false;
141
142 // Read values from binders (in internal units) and convert to mm for storage
143 m_data->SetOptWidth( pcbIUScale.IUTomm( m_optWidthBinder->GetDoubleValue() ) );
144 m_data->SetWidthTolerance( pcbIUScale.IUTomm( m_widthToleranceBinder->GetDoubleValue() ) );
145
146 m_data->SetOptGap( pcbIUScale.IUTomm( m_optGapBinder->GetDoubleValue() ) );
147 m_data->SetGapTolerance( pcbIUScale.IUTomm( m_gapToleranceBinder->GetDoubleValue() ) );
148
149 m_data->SetMaxUncoupledLength( pcbIUScale.IUTomm( m_maxUncoupledLengthBinder->GetDoubleValue() ) );
150
151 return true;
152}
153
154
156 wxString* aValidationMessage )
157{
159
160 VALIDATION_RESULT result = m_data->Validate();
161
162 if( !result.isValid )
163 {
164 *aErrorCount = result.errors.size();
165
166 for( size_t i = 0; i < result.errors.size(); i++ )
167 *aValidationMessage += DRC_RULE_EDITOR_UTILS::FormatErrorMessage( i + 1, result.errors[i] );
168
169 return false;
170 }
171
172 return true;
173}
174
175
177{
178 if( !m_data )
179 return wxEmptyString;
180
181 return m_data->GenerateRule( aContext );
182}
constexpr EDA_IU_SCALE pcbIUScale
Definition base_units.h:121
@ constraint_routing_diff_pair
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.
DRC_RE_ROUTING_DIFF_PAIR_CONSTRAINT_DATA * m_data
DRC_RE_ROUTING_DIFF_PAIR_OVERLAY_PANEL(wxWindow *aParent, DRC_RE_ROUTING_DIFF_PAIR_CONSTRAINT_DATA *aData, EDA_UNITS aUnits)
bool ValidateInputs(int *aErrorCount, wxString *aValidationMessage) override
wxString GenerateRule(const RULE_GENERATION_CONTEXT &aContext) override
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.