summaryrefslogtreecommitdiff
path: root/pcbnew/router/pns_tune_status_popup.cpp
blob: 40be366b02605b06273d8e48d67770493d14b9ef (plain)
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
/*
 * This program source code file is part of KiCad, a free EDA CAD application.
 *
 * Copyright (C) 2014-2015  CERN
 * Author: Tomasz Wlostowski <tomasz.wlostowski@cern.ch>
 *
 * 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 2 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 "pns_tune_status_popup.h"
#include "pns_router.h"
#include "pns_meander_placer.h"

PNS_TUNE_STATUS_POPUP::PNS_TUNE_STATUS_POPUP( PCB_EDIT_FRAME* aParent ) :
    WX_STATUS_POPUP( aParent )
{
    m_panel->SetBackgroundColour( wxColour( 64, 64, 64 ) );
    m_statusLine = new wxStaticText( m_panel, wxID_ANY, wxEmptyString ) ;
    m_topSizer->Add( m_statusLine, 1, wxALL | wxEXPAND, 5 );
}


PNS_TUNE_STATUS_POPUP::~PNS_TUNE_STATUS_POPUP()
{
}


void PNS_TUNE_STATUS_POPUP::UpdateStatus( PNS_ROUTER* aRouter )
{
    PNS_MEANDER_PLACER_BASE* placer = dynamic_cast<PNS_MEANDER_PLACER_BASE*>( aRouter->Placer() );

    if( !placer )
        return;

    m_statusLine->SetLabel( placer->TuningInfo() );

    wxColour color;

    switch( placer->TuningStatus() )
    {
    case PNS_MEANDER_PLACER::TUNED:
        color = wxColour( 0, 255, 0 );
        break;
    case PNS_MEANDER_PLACER::TOO_SHORT:
        color = wxColour( 255, 128, 128 );
        break;
    case PNS_MEANDER_PLACER::TOO_LONG:
        color = wxColour( 128, 128, 255 );
        break;
    }

    m_statusLine->SetForegroundColour( color );

    updateSize();
}