2020-02-28 00:05:40 +00:00
|
|
|
/*
|
|
|
|
* This program source code file is part of KiCad, a free EDA CAD application.
|
|
|
|
*
|
|
|
|
* Copyright (C) 2020 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 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, you may find one here:
|
|
|
|
* http://www.gnu.org/licenses/old-licenses/gpl-2.0.html
|
|
|
|
* or you may search the http://www.gnu.org website for the version 2 license,
|
|
|
|
* or you may write to the Free Software Foundation, Inc.,
|
|
|
|
* 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include <widgets/paged_dialog.h>
|
|
|
|
#include <widgets/ui_common.h>
|
2020-03-16 11:05:01 +00:00
|
|
|
#include <rc_item.h>
|
2020-03-10 18:46:57 +00:00
|
|
|
#include "panel_setup_severities.h"
|
2020-02-28 00:05:40 +00:00
|
|
|
|
|
|
|
|
2020-03-16 11:05:01 +00:00
|
|
|
PANEL_SETUP_SEVERITIES::PANEL_SETUP_SEVERITIES( PAGED_DIALOG* aParent, RC_ITEM& aDummyItem,
|
2020-03-10 18:46:57 +00:00
|
|
|
std::map<int, int>& aSeverities,
|
|
|
|
int aFirstErrorCode, int aLastErrorCode ) :
|
2020-02-28 00:05:40 +00:00
|
|
|
wxPanel( aParent->GetTreebook() ),
|
2020-03-16 11:05:01 +00:00
|
|
|
m_severities( aSeverities ),
|
|
|
|
m_firstErrorCode( aFirstErrorCode ),
|
|
|
|
m_lastErrorCode( aLastErrorCode )
|
2020-02-28 00:05:40 +00:00
|
|
|
{
|
|
|
|
wxString severities[] = { _( "Error" ), _( "Warning" ), _( "Ignore" ) };
|
|
|
|
int baseID = 1000;
|
|
|
|
wxBoxSizer* panelSizer = new wxBoxSizer( wxVERTICAL );
|
|
|
|
wxScrolledWindow* scrollWin = new wxScrolledWindow( this, wxID_ANY,
|
|
|
|
wxDefaultPosition, wxDefaultSize,
|
|
|
|
wxTAB_TRAVERSAL | wxVSCROLL );
|
|
|
|
scrollWin->SetScrollRate( 0, 5 );
|
|
|
|
|
|
|
|
wxFlexGridSizer* gridSizer = new wxFlexGridSizer( 0, 2, 0, 5 );
|
|
|
|
gridSizer->SetFlexibleDirection( wxBOTH );
|
|
|
|
|
2020-03-16 11:05:01 +00:00
|
|
|
for( int errorCode = m_firstErrorCode; errorCode <= m_lastErrorCode; ++errorCode )
|
2020-02-28 00:05:40 +00:00
|
|
|
{
|
2020-04-24 13:36:10 +00:00
|
|
|
aDummyItem.SetErrorCode( errorCode );
|
2020-03-16 11:05:01 +00:00
|
|
|
wxString msg = aDummyItem.GetErrorText();
|
2020-02-28 00:05:40 +00:00
|
|
|
|
2020-03-18 08:17:43 +00:00
|
|
|
// When msg is empty, for some reason, the current errorCode is not supported
|
|
|
|
// by the RC_ITEM aDummyItem.
|
|
|
|
// Skip this errorCode.
|
2020-02-28 00:05:40 +00:00
|
|
|
if( !msg.IsEmpty() )
|
|
|
|
{
|
|
|
|
wxStaticText* errorLabel = new wxStaticText( scrollWin, wxID_ANY, msg + wxT( ":" ) );
|
|
|
|
gridSizer->Add( errorLabel, 0, wxALIGN_CENTER_VERTICAL | wxALL | wxEXPAND, 4 );
|
|
|
|
|
|
|
|
// OSX can't handle more than 100 radio buttons in a single window (yes, seriously),
|
|
|
|
// so we have to create a window for each set
|
|
|
|
wxPanel* radioPanel = new wxPanel( scrollWin );
|
|
|
|
wxBoxSizer* radioSizer = new wxBoxSizer( wxHORIZONTAL );
|
|
|
|
|
2020-03-04 09:48:18 +00:00
|
|
|
for( size_t i = 0; i < sizeof( severities ) / sizeof( wxString ); ++i )
|
2020-02-28 00:05:40 +00:00
|
|
|
{
|
2020-03-16 11:05:01 +00:00
|
|
|
m_buttonMap[ errorCode ][i] = new wxRadioButton( radioPanel,
|
|
|
|
baseID + errorCode * 10 + i,
|
|
|
|
severities[i],
|
|
|
|
wxDefaultPosition,
|
|
|
|
wxDefaultSize,
|
|
|
|
i == 0 ? wxRB_GROUP : 0 );
|
|
|
|
radioSizer->Add( m_buttonMap[ errorCode ][i], 1, wxRIGHT | wxEXPAND, 25 );
|
2020-02-28 00:05:40 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
radioPanel->SetSizer( radioSizer );
|
|
|
|
radioPanel->Layout();
|
|
|
|
gridSizer->Add( radioPanel, 0, wxALIGN_CENTER_VERTICAL | wxALL | wxEXPAND, 4 );
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
scrollWin->SetSizer( gridSizer );
|
|
|
|
scrollWin->Layout();
|
|
|
|
gridSizer->Fit( scrollWin );
|
|
|
|
panelSizer->Add( scrollWin, 1, wxEXPAND | wxALL, 5 );
|
|
|
|
|
|
|
|
this->SetSizer( panelSizer );
|
|
|
|
this->Layout();
|
|
|
|
panelSizer->Fit( this );
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2020-03-10 18:46:57 +00:00
|
|
|
void PANEL_SETUP_SEVERITIES::ImportSettingsFrom( std::map<int, int>& aSettings )
|
2020-02-28 00:05:40 +00:00
|
|
|
{
|
2020-03-16 11:05:01 +00:00
|
|
|
for( int errorCode = m_firstErrorCode; errorCode <= m_lastErrorCode; ++errorCode )
|
2020-02-28 00:05:40 +00:00
|
|
|
{
|
2020-03-18 08:17:43 +00:00
|
|
|
if(! m_buttonMap[ errorCode ][0] ) // this entry does not actually exist
|
|
|
|
continue;
|
|
|
|
|
2020-03-16 11:05:01 +00:00
|
|
|
switch( aSettings[ errorCode ] )
|
2020-02-28 00:05:40 +00:00
|
|
|
{
|
2020-03-16 11:05:01 +00:00
|
|
|
case RPT_SEVERITY_ERROR: m_buttonMap[ errorCode ][0]->SetValue( true ); break;
|
|
|
|
case RPT_SEVERITY_WARNING: m_buttonMap[ errorCode ][1]->SetValue( true ); break;
|
|
|
|
case RPT_SEVERITY_IGNORE: m_buttonMap[ errorCode ][2]->SetValue( true ); break;
|
|
|
|
default: break;
|
2020-02-28 00:05:40 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2020-03-10 18:46:57 +00:00
|
|
|
bool PANEL_SETUP_SEVERITIES::TransferDataToWindow()
|
2020-02-28 00:05:40 +00:00
|
|
|
{
|
2020-03-16 11:05:01 +00:00
|
|
|
for( int errorCode = m_firstErrorCode; errorCode <= m_lastErrorCode; ++errorCode )
|
2020-02-28 00:05:40 +00:00
|
|
|
{
|
2020-03-18 08:17:43 +00:00
|
|
|
if(! m_buttonMap[ errorCode ][0] ) // this entry does not actually exist
|
|
|
|
continue;
|
|
|
|
|
2020-03-16 11:05:01 +00:00
|
|
|
switch( m_severities[ errorCode ] )
|
2020-02-28 00:05:40 +00:00
|
|
|
{
|
2020-03-16 11:05:01 +00:00
|
|
|
case RPT_SEVERITY_ERROR: m_buttonMap[ errorCode ][0]->SetValue( true ); break;
|
|
|
|
case RPT_SEVERITY_WARNING: m_buttonMap[ errorCode ][1]->SetValue( true ); break;
|
|
|
|
case RPT_SEVERITY_IGNORE: m_buttonMap[ errorCode ][2]->SetValue( true ); break;
|
|
|
|
default: break;
|
2020-02-28 00:05:40 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2020-03-10 18:46:57 +00:00
|
|
|
bool PANEL_SETUP_SEVERITIES::TransferDataFromWindow()
|
2020-02-28 00:05:40 +00:00
|
|
|
{
|
|
|
|
for( auto const& entry : m_buttonMap )
|
|
|
|
{
|
2020-03-18 08:17:43 +00:00
|
|
|
if( !entry.second[0] ) // this entry does not actually exist
|
|
|
|
continue;
|
|
|
|
|
2020-03-04 09:48:18 +00:00
|
|
|
int severity = RPT_SEVERITY_UNDEFINED;
|
2020-02-28 00:05:40 +00:00
|
|
|
|
|
|
|
if( entry.second[0]->GetValue() )
|
2020-03-04 09:48:18 +00:00
|
|
|
severity = RPT_SEVERITY_ERROR;
|
2020-02-28 00:05:40 +00:00
|
|
|
else if( entry.second[1]->GetValue() )
|
2020-03-04 09:48:18 +00:00
|
|
|
severity = RPT_SEVERITY_WARNING;
|
2020-02-28 00:05:40 +00:00
|
|
|
else if( entry.second[2]->GetValue() )
|
2020-03-04 09:48:18 +00:00
|
|
|
severity = RPT_SEVERITY_IGNORE;
|
2020-02-28 00:05:40 +00:00
|
|
|
|
2020-03-10 18:46:57 +00:00
|
|
|
m_severities[ entry.first ] = severity;
|
2020-02-28 00:05:40 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
return true;
|
|
|
|
}
|