KiCad PCB EDA Suite
Loading...
Searching...
No Matches
drc_re_numeric_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, 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 <eda_base_frame.h>
30#include <base_units.h>
31#include <widgets/unit_binder.h>
32
33#include <wx/textctrl.h>
34
35
37 wxWindow* aParent, DRC_RE_NUMERIC_INPUT_CONSTRAINT_DATA* aData, EDA_UNITS aUnits ) :
39 m_data( aData ),
41{
42 SetBackgroundBitmap( m_data->GetOverlayBitmap() );
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 auto* valueField = AddField<wxTextCtrl>( wxS( "value" ), positions[0], wxTE_PROCESS_ENTER | wxTE_CENTRE );
58 m_valueBinder = std::make_unique<UNIT_BINDER>( &m_unitsProvider, eventSource, nullptr, valueField->GetControl(),
59 valueField->GetLabel(), false, false );
60 valueField->SetUnitBinder( m_valueBinder.get() );
61
62 auto notifyModified = [this]( wxCommandEvent& )
63 {
65 if( dlg )
66 dlg->SetModified();
67 };
68
69 auto notifySave = [this]( wxCommandEvent& aEvent )
70 {
72 if( dlg )
73 dlg->OnSave( aEvent );
74 };
75
76 valueField->GetControl()->Bind( wxEVT_TEXT, notifyModified );
77 valueField->GetControl()->Bind( wxEVT_TEXT_ENTER, notifySave );
78
81}
82
83
85{
86 if( !m_data )
87 return false;
88
89 m_valueBinder->SetDoubleValue( pcbIUScale.mmToIU( m_data->GetNumericInputValue() ) );
90
91 return true;
92}
93
94
96{
97 if( !m_data )
98 return false;
99
100 m_data->SetNumericInputValue( pcbIUScale.IUTomm( m_valueBinder->GetDoubleValue() ) );
101
102 return true;
103}
104
105
107 wxString* aValidationMessage )
108{
110
111 VALIDATION_RESULT result = m_data->Validate();
112
113 if( !result.isValid )
114 {
115 *aErrorCount = result.errors.size();
116
117 for( size_t i = 0; i < result.errors.size(); i++ )
118 *aValidationMessage += DRC_RULE_EDITOR_UTILS::FormatErrorMessage( i + 1, result.errors[i] );
119
120 return false;
121 }
122
123 return true;
124}
125
126
128{
129 if( !m_data )
130 return wxEmptyString;
131
132 return m_data->GenerateRule( aContext );
133}
constexpr EDA_IU_SCALE pcbIUScale
Definition base_units.h:112
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_NUMERIC_INPUT_OVERLAY_PANEL(wxWindow *aParent, DRC_RE_NUMERIC_INPUT_CONSTRAINT_DATA *aData, EDA_UNITS aUnits)
bool ValidateInputs(int *aErrorCount, wxString *aValidationMessage) override
wxString GenerateRule(const RULE_GENERATION_CONTEXT &aContext) override
DRC_RE_NUMERIC_INPUT_CONSTRAINT_DATA * m_data
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:48
Result of a validation operation.
wxString result
Test unit parsing edge cases and error handling.