File: dialog_regulator_form.cpp

package info (click to toggle)
kicad 9.0.3%2Bdfsg-1
  • links: PTS, VCS
  • area: main
  • in suites: sid
  • size: 770,320 kB
  • sloc: cpp: 961,692; ansic: 121,001; xml: 66,428; python: 18,387; sh: 1,010; awk: 301; asm: 292; makefile: 227; javascript: 167; perl: 10
file content (152 lines) | stat: -rw-r--r-- 4,331 bytes parent folder | download | duplicates (3)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
/*
 * This program source code file is part of KICAD, a free EDA CAD application.
 *
 * Copyright (C) 1992-2011 jean-pierre.charras
 * Copyright The KiCad Developers, see AUTHORS.txt for contributors.
 *
 * This program is free software; you can redistribute it and/or
 * modify it under the terms of the GNU General Public License
 * as published by the Free Software Foundation; either version 3
 * of the License, or (at your option) any later version.
 *
 * This program is distributed in the hope that it will be useful,
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 * GNU General Public License for more details.
 *
 * You should have received a copy of the GNU General Public License along
 * with this program.  If not, see <http://www.gnu.org/licenses/>.
 */

#include <wx/msgdlg.h>

#include <calculator_panels/panel_regulator.h>
#include <class_regulator_data.h>
#include <pcb_calculator_frame.h>
#include "dialog_regulator_form.h"


extern double DoubleFromString( const wxString& TextValue );

DIALOG_REGULATOR_FORM::DIALOG_REGULATOR_FORM( wxWindow* parent, const wxString& aRegName ) :
        DIALOG_REGULATOR_FORM_BASE( parent )
{
    m_textCtrlName->SetValue( aRegName );
    m_textCtrlName->Enable( aRegName.IsEmpty() );
    UpdateDialog();

    SetupStandardButtons();

    // Now all widgets have the size fixed, call FinishDialogSettings
    finishDialogSettings();
}

DIALOG_REGULATOR_FORM::~DIALOG_REGULATOR_FORM()
{
}


bool DIALOG_REGULATOR_FORM::TransferDataFromWindow()
{
    wxTextCtrl* vref_values[] = { m_vrefMinVal, m_vrefTypVal, m_vrefMaxVal };
    wxTextCtrl* iadj_values[] = { m_iadjTypVal, m_iadjMaxVal };

    if( !wxDialog::TransferDataFromWindow() )
        return false;

    bool success = true;

    if( m_textCtrlName->GetValue().IsEmpty() )
        success = false;

    for( const auto& val : vref_values )
    {
        if( val->GetValue().IsEmpty() )
        {
            success = false;
        }
        else
        {
            double vref = DoubleFromString( val->GetValue() );

            if( fabs( vref ) < 0.1 )
                success = false;
        }
    }

    if( m_choiceRegType->GetSelection() == 1 )
    {
        for( const auto& val : iadj_values )
        {
            if( val->GetValue().IsEmpty() )
            {
                success = false;
            }
            else
            {
                int  iadj = 0;
                bool res = val->GetValue().ToInt( &iadj );

                if( res == false || fabs( iadj ) < 1 )
                    success = false;
            }
        }
    }

    return success;
}


void DIALOG_REGULATOR_FORM::UpdateDialog()
{
    bool enbl = m_choiceRegType->GetSelection() == 1;
    m_RegulIadjTitle->Show( enbl );
    m_iadjTypVal->Show( enbl );
    m_iadjMaxVal->Show( enbl );
    m_labelUnitIadj->Show( enbl );
}


void DIALOG_REGULATOR_FORM::CopyRegulatorDataToDialog( REGULATOR_DATA* aItem )
{
    m_textCtrlName->SetValue( aItem->m_Name );
    wxString value;
    value.Printf( wxT( "%.3g" ), aItem->m_VrefMin );
    m_vrefMinVal->SetValue( value );
    value.Printf( wxT( "%.3g" ), aItem->m_VrefTyp );
    m_vrefTypVal->SetValue( value );
    value.Printf( wxT( "%.3g" ), aItem->m_VrefMax );
    m_vrefMaxVal->SetValue( value );


    value.Printf( wxT( "%.3g" ), aItem->m_IadjTyp );
    m_iadjTypVal->SetValue( value );
    value.Printf( wxT( "%.3g" ), aItem->m_IadjMax );
    m_iadjMaxVal->SetValue( value );

    m_choiceRegType->SetSelection( aItem->m_Type );
    UpdateDialog();
}


REGULATOR_DATA* DIALOG_REGULATOR_FORM::BuildRegulatorFromData()
{
    double vrefmin = DoubleFromString( m_vrefMinVal->GetValue() );
    double vreftyp = DoubleFromString( m_vrefTypVal->GetValue() );
    double vrefmax = DoubleFromString( m_vrefMaxVal->GetValue() );

    double iadjtyp = DoubleFromString( m_iadjTypVal->GetValue() );
    double iadjmax = DoubleFromString( m_iadjMaxVal->GetValue() );

    int    type = m_choiceRegType->GetSelection();

    if( type != 1 )
    {
        iadjtyp = 0.0;
        iadjmax = 0.0;
    }

    REGULATOR_DATA* item = new REGULATOR_DATA( m_textCtrlName->GetValue(), vrefmin, vreftyp,
                                               vrefmax, type, iadjtyp, iadjmax );
    return item;
}