KiCad PCB EDA Suite
Loading...
Searching...
No Matches
drc_re_min_txt_ht_th_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
26#include <eda_base_frame.h>
27#include <base_units.h>
28#include <widgets/unit_binder.h>
29
30#include <wx/textctrl.h>
31
32
35 EDA_UNITS aUnits ) :
37 m_data( aData ),
39{
41
42 std::vector<DRC_RE_FIELD_POSITION> positions = m_data->GetFieldPositions();
43
44 wxWindow* eventSource = nullptr;
45
46 for( wxWindow* win = aParent; win; win = win->GetParent() )
47 {
48 if( dynamic_cast<EDA_BASE_FRAME*>( win ) )
49 {
50 eventSource = win;
51 break;
52 }
53 }
54
55 auto* minTextHeightField = AddField<wxTextCtrl>( wxS( "min_text_height" ), positions[0], wxTE_CENTRE | wxTE_PROCESS_ENTER );
57 std::make_unique<UNIT_BINDER>( &m_unitsProvider, eventSource, nullptr, minTextHeightField->GetControl(),
58 minTextHeightField->GetLabel(), false, false );
59 minTextHeightField->SetUnitBinder( m_minTextHeightBinder.get() );
60 minTextHeightField->GetControl()->SetValidator( VALIDATOR_NUMERIC_CTRL( false, false ) );
61
62 auto* minTextThicknessField = AddField<wxTextCtrl>( wxS( "min_text_thickness" ), positions[1], wxTE_CENTRE | wxTE_PROCESS_ENTER );
64 std::make_unique<UNIT_BINDER>( &m_unitsProvider, eventSource, nullptr, minTextThicknessField->GetControl(),
65 minTextThicknessField->GetLabel(), false, false );
66 minTextThicknessField->SetUnitBinder( m_minTextThicknessBinder.get() );
67 minTextThicknessField->GetControl()->SetValidator( VALIDATOR_NUMERIC_CTRL( false, false ) );
68
69 auto notifyModified = [this]( wxCommandEvent& )
70 {
72 if( dlg )
73 dlg->SetModified();
74 };
75
76 auto notifySave = [this]( wxCommandEvent& aEvent )
77 {
79 if( dlg )
80 dlg->OnSave( aEvent );
81 };
82
83 minTextHeightField->GetControl()->Bind( wxEVT_TEXT, notifyModified );
84 minTextThicknessField->GetControl()->Bind( wxEVT_TEXT, notifyModified );
85
86 minTextHeightField->GetControl()->Bind( wxEVT_TEXT_ENTER, notifySave );
87 minTextThicknessField->GetControl()->Bind( wxEVT_TEXT_ENTER, notifySave );
88
91}
92
93
95{
96 if( !m_data )
97 return false;
98
99 // Use ChangeDoubleValue to avoid triggering modification events during loading
100 m_minTextHeightBinder->ChangeDoubleValue( pcbIUScale.mmToIU( m_data->GetMinTextHeight() ) );
101 m_minTextThicknessBinder->ChangeDoubleValue( pcbIUScale.mmToIU( m_data->GetMinTextThickness() ) );
102
103 return true;
104}
105
106
108{
109 if( !m_data )
110 return false;
111
112 m_data->SetMinTextHeight( pcbIUScale.IUTomm( m_minTextHeightBinder->GetDoubleValue() ) );
113 m_data->SetMinTextThickness( pcbIUScale.IUTomm( m_minTextThicknessBinder->GetDoubleValue() ) );
114
115 return true;
116}
117
118
120 wxString* aValidationMessage )
121{
123
124 VALIDATION_RESULT result = m_data->Validate();
125
126 if( !result.isValid )
127 {
128 *aErrorCount = result.errors.size();
129
130 for( size_t i = 0; i < result.errors.size(); i++ )
131 *aValidationMessage += DRC_RULE_EDITOR_UTILS::FormatErrorMessage( i + 1, result.errors[i] );
132
133 return false;
134 }
135
136 return true;
137}
138
139
141{
142 if( !m_data )
143 return wxEmptyString;
144
145 return m_data->GenerateRule( aContext );
146}
constexpr EDA_IU_SCALE pcbIUScale
Definition base_units.h:121
@ constraint_minimum_text_height_and_thickness
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.
bool ValidateInputs(int *aErrorCount, wxString *aValidationMessage) override
DRC_RE_MIN_TXT_HT_TH_OVERLAY_PANEL(wxWindow *aParent, DRC_RE_MINIMUM_TEXT_HEIGHT_THICKNESS_CONSTRAINT_DATA *aData, EDA_UNITS aUnits)
wxString GenerateRule(const RULE_GENERATION_CONTEXT &aContext) override
DRC_RE_MINIMUM_TEXT_HEIGHT_THICKNESS_CONSTRAINT_DATA * m_data
std::unique_ptr< UNIT_BINDER > m_minTextThicknessBinder
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.