KiCad PCB EDA Suite
Loading...
Searching...
No Matches
panel_track_width.h
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) 1992-2021 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 3
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 along
17 * with this program. If not, see <http://www.gnu.org/licenses/>.
18 */
19
20#ifndef PANEL_TRACK_WIDTH_H
21#define PANEL_TRACK_WIDTH_H
22
24
26
27
29{
30public:
31 PANEL_TRACK_WIDTH( wxWindow* parent, wxWindowID id = wxID_ANY,
32 const wxPoint& pos = wxDefaultPosition, const wxSize& size = wxDefaultSize,
33 long style = wxTAB_TRAVERSAL, const wxString& name = wxEmptyString );
35
36 // Methods from CALCULATOR_PANEL that must be overridden
37 void LoadSettings( PCB_CALCULATOR_SETTINGS* aCfg ) override;
38 void SaveSettings( PCB_CALCULATOR_SETTINGS* aCfg ) override;
39 void ThemeChanged() override;
40
44 void OnTWParametersChanged( wxCommandEvent& event ) override;
45
49 void OnTWCalculateFromCurrent( wxCommandEvent& event ) override;
50
54 void OnTWCalculateFromExtWidth( wxCommandEvent& event ) override;
55
59 void OnTWCalculateFromIntWidth( wxCommandEvent& event ) override;
60
64 void OnTWResetButtonClick( wxCommandEvent& event ) override;
65
69 double TWCalculateWidth( double aCurrent, double aThickness, double aDeltaT_C,
70 bool aUseInternalLayer );
71
75 double TWCalculateCurrent( double aWidth, double aThickness, double aDeltaT_C,
76 bool aUseInternalLayer );
77
82 void TWDisplayValues( double aCurrent, double aExtWidth, double aIntWidth,
83 double aExtThickness, double aIntThickness );
84
90
91private:
92 enum // Which dimension is controlling the track width / current
93 { // calculations:
94 TW_MASTER_CURRENT, // the maximum current,
95 TW_MASTER_EXT_WIDTH, // the external trace width,
96 TW_MASTER_INT_WIDTH // or the internal trace width?
98
99 bool m_TWNested; // Used to stop events caused by setting the answers.
100};
101
102#endif
const char * name
Definition: DXF_plotter.cpp:57
Class PANEL_TRACK_WIDTH_BASE.
double TWCalculateCurrent(double aWidth, double aThickness, double aDeltaT_C, bool aUseInternalLayer)
Calculate maximum current based on given width and temperature rise.
void SaveSettings(PCB_CALCULATOR_SETTINGS *aCfg) override
Save the settings from the panel.
double TWCalculateWidth(double aCurrent, double aThickness, double aDeltaT_C, bool aUseInternalLayer)
Calculate track width required based on given current and temperature rise.
void OnTWCalculateFromIntWidth(wxCommandEvent &event) override
Update the calculations when the user changes the desired internal trace width.
void TWUpdateModeDisplay()
Update the fields to show whether the maximum current, external trace width, or internal trace width ...
void ThemeChanged() override
Update UI elements of the panel when the theme changes to ensure the images and fonts/colors are appr...
enum PANEL_TRACK_WIDTH::@40 m_TWMode
void OnTWResetButtonClick(wxCommandEvent &event) override
Update the calculations when the user clicks the reset button.
void OnTWParametersChanged(wxCommandEvent &event) override
Update the calculations the user changes the general parameters.
void OnTWCalculateFromCurrent(wxCommandEvent &event) override
Update the calculations when the user changes the desired maximum current.
void OnTWCalculateFromExtWidth(wxCommandEvent &event) override
Update the calculations when the user changes the desired external trace width.
void LoadSettings(PCB_CALCULATOR_SETTINGS *aCfg) override
Load the settings into the panel.
void TWDisplayValues(double aCurrent, double aExtWidth, double aIntWidth, double aExtThickness, double aIntThickness)
Display the results of a calculation (including resulting values such as the resistance and power los...