2015-02-18 00:29:54 +00:00
|
|
|
/*
|
|
|
|
* This program source code file is part of KiCad, a free EDA CAD application.
|
|
|
|
*
|
|
|
|
* Copyright (C) 2014-2015 CERN
|
2022-09-04 20:00:44 +00:00
|
|
|
* Copyright (C) 2016-2022 KiCad Developers, see AUTHORS.txt for contributors.
|
2015-02-18 00:29:54 +00:00
|
|
|
* 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/>.
|
|
|
|
*/
|
|
|
|
|
2019-06-08 22:14:57 +00:00
|
|
|
#include "eda_draw_frame.h"
|
2015-02-18 00:29:54 +00:00
|
|
|
#include "pns_tune_status_popup.h"
|
|
|
|
#include "pns_router.h"
|
|
|
|
#include "pns_meander_placer.h"
|
2022-09-04 20:00:44 +00:00
|
|
|
#include <wx/settings.h>
|
2015-02-18 00:29:54 +00:00
|
|
|
|
2016-08-29 17:31:13 +00:00
|
|
|
void PNS_TUNE_STATUS_POPUP::UpdateStatus( PNS::ROUTER* aRouter )
|
2015-02-18 00:29:54 +00:00
|
|
|
{
|
2016-08-29 17:31:13 +00:00
|
|
|
PNS::MEANDER_PLACER_BASE* placer = dynamic_cast<PNS::MEANDER_PLACER_BASE*>( aRouter->Placer() );
|
2015-02-18 00:29:54 +00:00
|
|
|
|
2015-02-18 16:53:46 +00:00
|
|
|
if( !placer )
|
2015-02-18 00:29:54 +00:00
|
|
|
return;
|
|
|
|
|
2019-05-19 21:04:04 +00:00
|
|
|
EDA_DRAW_FRAME* frame = static_cast<EDA_DRAW_FRAME*>( GetParent() );
|
|
|
|
|
|
|
|
SetText( placer->TuningInfo( frame->GetUserUnits() ) );
|
2015-02-18 00:29:54 +00:00
|
|
|
|
2019-02-12 03:55:03 +00:00
|
|
|
// Determine the background color first and choose a contrasting value
|
2022-09-04 20:00:44 +00:00
|
|
|
COLOR4D bg( wxSystemSettings::GetColour( wxSYS_COLOUR_WINDOW ) );
|
2019-02-12 03:55:03 +00:00
|
|
|
double h, s, l;
|
|
|
|
bg.ToHSL( h, s, l );
|
|
|
|
|
2015-02-18 16:53:46 +00:00
|
|
|
switch( placer->TuningStatus() )
|
2015-02-18 00:29:54 +00:00
|
|
|
{
|
2016-08-29 17:31:13 +00:00
|
|
|
case PNS::MEANDER_PLACER::TUNED:
|
2019-02-12 03:55:03 +00:00
|
|
|
if( l < 0.5 )
|
2021-04-05 00:33:59 +00:00
|
|
|
SetTextColor( wxColor( 127, 200, 127 ) );
|
2019-02-12 03:55:03 +00:00
|
|
|
else
|
2022-09-04 20:00:44 +00:00
|
|
|
SetTextColor( wxColor( 0, 92, 0 ) );
|
2019-02-12 03:55:03 +00:00
|
|
|
|
2015-10-05 16:28:41 +00:00
|
|
|
break;
|
2022-09-04 20:00:44 +00:00
|
|
|
|
2016-08-29 17:31:13 +00:00
|
|
|
case PNS::MEANDER_PLACER::TOO_SHORT:
|
2019-02-12 03:55:03 +00:00
|
|
|
if( l < 0.5 )
|
2021-04-05 00:33:59 +00:00
|
|
|
SetTextColor( wxColor( 242, 100, 126 ) );
|
2019-02-12 03:55:03 +00:00
|
|
|
else
|
2022-09-04 20:00:44 +00:00
|
|
|
SetTextColor( wxColor( 122, 0, 0 ) );
|
2019-02-12 03:55:03 +00:00
|
|
|
|
2015-10-05 16:28:41 +00:00
|
|
|
break;
|
2022-09-04 20:00:44 +00:00
|
|
|
|
2016-08-29 17:31:13 +00:00
|
|
|
case PNS::MEANDER_PLACER::TOO_LONG:
|
2019-02-12 03:55:03 +00:00
|
|
|
if( l < 0.5 )
|
2021-04-05 00:33:59 +00:00
|
|
|
SetTextColor( wxColor( 66, 184, 235 ) );
|
2019-02-12 03:55:03 +00:00
|
|
|
else
|
|
|
|
SetTextColor( wxColor( 19, 19, 195 ) );
|
|
|
|
|
2015-10-05 16:28:41 +00:00
|
|
|
break;
|
2015-02-18 00:29:54 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|