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 // Add ± label between opt width and tolerance
76 {
77 const DRC_RE_FIELD_POSITION& optPos = positions[0];
78 const DRC_RE_FIELD_POSITION& tolPos = positions[1];
79 int fieldHeight = optWidthField->GetControl()->GetBestSize().GetHeight();
80
81 auto* plusMinus = new wxStaticText( this, wxID_ANY, wxS( "\u00B1" ) );
82 wxSize pmSize = plusMinus->GetBestSize();
83 wxStaticText* optMmLabel = optWidthField->GetLabel();
84 int afterOptLabel = optMmLabel->GetPosition().x + optMmLabel->GetBestSize().GetWidth();
85 int gapMid = ( afterOptLabel + tolPos.xStart ) / 2;
86 plusMinus->SetPosition(
87 wxPoint( gapMid - pmSize.GetWidth() / 2, optPos.yTop + ( fieldHeight - pmSize.GetHeight() ) / 2 ) );
88 }
89
90 auto notifyModified = [this]( wxCommandEvent& )
91 {
93 if( dlg )
94 dlg->SetModified();
95 };
96
97 optWidthField->GetControl()->Bind( wxEVT_TEXT, notifyModified );
98 widthTolField->GetControl()->Bind( wxEVT_TEXT, notifyModified );
99
100 auto notifySave = [this]( wxCommandEvent& aEvent )
101 {
103 if( dlg )
104 dlg->OnSave( aEvent );
105 };
106
107 optWidthField->GetControl()->Bind( wxEVT_TEXT_ENTER, notifySave );
108 widthTolField->GetControl()->Bind( wxEVT_TEXT_ENTER, notifySave );
109
110 // Position all fields and update the panel layout
113}
114
115
117{
118 if( !m_data )
119 return false;
120
121 m_optWidthBinder->ChangeDoubleValue( pcbIUScale.mmToIU( m_data->GetOptWidth() ) );
122 m_widthToleranceBinder->ChangeDoubleValue( pcbIUScale.mmToIU( m_data->GetWidthTolerance() ) );
123
124 return true;
125}
126
127
129{
130 if( !m_data )
131 return false;
132
133 m_data->SetOptWidth( pcbIUScale.IUTomm( m_optWidthBinder->GetDoubleValue() ) );
134 m_data->SetWidthTolerance( pcbIUScale.IUTomm( m_widthToleranceBinder->GetDoubleValue() ) );
135
136 return true;
137}
138
139
141 wxString* aValidationMessage )
142{
144
145 VALIDATION_RESULT result = m_data->Validate();
146
147 if( !result.isValid )
148 {
149 *aErrorCount = result.errors.size();
150
151 for( size_t i = 0; i < result.errors.size(); i++ )
152 *aValidationMessage += DRC_RULE_EDITOR_UTILS::FormatErrorMessage( i + 1, result.errors[i] );
153
154 return false;
155 }
156
157 return true;
158}
159
160
162{
163 if( !m_data )
164 return wxEmptyString;
165
166 return m_data->GenerateRule( aContext );
167}
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
Specifies the position and size of a field overlaid on a constraint bitmap.
int xStart
Left edge X coordinate where the field starts.
int yTop
Top edge Y coordinate of the field.
Result of a validation operation.
wxString result
Test unit parsing edge cases and error handling.