2017-07-03 17:14:35 +00:00
|
|
|
/*
|
|
|
|
* This program source code file is part of KiCad, a free EDA CAD application.
|
|
|
|
*
|
|
|
|
* Copyright (C) 2017 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, 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/widget_net_selector.h>
|
|
|
|
|
|
|
|
#include <class_board.h>
|
2018-01-30 14:34:09 +00:00
|
|
|
#include <netinfo.h>
|
2018-01-19 09:02:23 +00:00
|
|
|
#include <wx/arrstr.h>
|
2017-07-03 17:14:35 +00:00
|
|
|
|
2018-01-19 09:02:23 +00:00
|
|
|
WIDGET_NET_SELECTOR::WIDGET_NET_SELECTOR( wxWindow *parent, wxWindowID id,
|
|
|
|
const wxString &value, const wxPoint &pos, const wxSize &size,
|
|
|
|
int n, const wxString choices[], long style,
|
|
|
|
const wxValidator &validator, const wxString &name ) :
|
2017-11-01 09:20:13 +00:00
|
|
|
wxComboBox( parent, id, value, pos, size, n, choices, style, validator, name ),
|
|
|
|
m_multiple( false )
|
2017-07-03 17:14:35 +00:00
|
|
|
{
|
|
|
|
}
|
|
|
|
|
2017-11-01 09:20:13 +00:00
|
|
|
|
2017-07-03 17:14:35 +00:00
|
|
|
WIDGET_NET_SELECTOR::~WIDGET_NET_SELECTOR()
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
2017-11-01 09:20:13 +00:00
|
|
|
|
2017-07-03 17:14:35 +00:00
|
|
|
void WIDGET_NET_SELECTOR::SetMultiple( bool aMultiple )
|
|
|
|
{
|
|
|
|
if ( aMultiple )
|
|
|
|
{
|
|
|
|
m_multiple = true;
|
|
|
|
|
|
|
|
int k = Append( wxT("<multiple nets>") );
|
|
|
|
SetSelection( k );
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2017-11-01 09:20:13 +00:00
|
|
|
|
2017-07-03 17:14:35 +00:00
|
|
|
void WIDGET_NET_SELECTOR::SetSelectedNet ( int aNetcode )
|
|
|
|
{
|
2018-01-19 09:02:23 +00:00
|
|
|
for( const auto& net : m_nets )
|
2017-07-03 17:14:35 +00:00
|
|
|
{
|
2018-01-19 09:02:23 +00:00
|
|
|
if( net.m_Code == aNetcode )
|
2017-07-03 17:14:35 +00:00
|
|
|
{
|
2018-01-19 09:02:23 +00:00
|
|
|
SetSelection( net.m_Pos );
|
2017-07-03 17:14:35 +00:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2017-11-01 09:20:13 +00:00
|
|
|
|
2017-07-03 17:14:35 +00:00
|
|
|
int WIDGET_NET_SELECTOR::GetSelectedNet()
|
|
|
|
{
|
|
|
|
int pos = GetSelection();
|
2017-11-01 09:20:13 +00:00
|
|
|
|
2018-01-19 09:02:23 +00:00
|
|
|
for( const auto& net : m_nets )
|
2017-07-03 17:14:35 +00:00
|
|
|
{
|
2018-01-19 09:02:23 +00:00
|
|
|
if( net.m_Pos == pos )
|
|
|
|
return net.m_Code;
|
2017-07-03 17:14:35 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2017-11-01 09:20:13 +00:00
|
|
|
|
2017-07-03 17:14:35 +00:00
|
|
|
bool WIDGET_NET_SELECTOR::IsUniqueNetSelected() const
|
|
|
|
{
|
2017-07-30 12:24:21 +00:00
|
|
|
if( m_multiple && ( GetSelection() == ( (int)GetCount() - 1 ) ) )
|
2017-07-03 17:14:35 +00:00
|
|
|
return false;
|
|
|
|
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2017-11-01 09:20:13 +00:00
|
|
|
|
2017-07-03 17:14:35 +00:00
|
|
|
void WIDGET_NET_SELECTOR::SetBoard( BOARD* aBoard )
|
|
|
|
{
|
|
|
|
auto& netinfo = aBoard->GetNetInfo();
|
|
|
|
|
2017-11-01 09:20:13 +00:00
|
|
|
for( unsigned i = 1; i < netinfo.GetNetCount(); i++ )
|
2017-07-03 17:14:35 +00:00
|
|
|
{
|
2017-11-01 09:20:13 +00:00
|
|
|
NETINFO_ITEM* ni = netinfo.GetNetItem( i );
|
2018-01-19 09:02:23 +00:00
|
|
|
NET net;
|
|
|
|
net.m_Name = ni->GetNetname();
|
|
|
|
net.m_Code = i;
|
|
|
|
m_nets.push_back( net );
|
2017-07-03 17:14:35 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
std::sort( m_nets.begin(), m_nets.end() );
|
|
|
|
|
2018-01-19 09:02:23 +00:00
|
|
|
// Add the list of selectable nets to the wxComboBox.
|
|
|
|
// Using a wxArrayString is much faster than adding each name separately
|
|
|
|
wxArrayString netnames;
|
|
|
|
|
|
|
|
netnames.Add( wxT( "<no net>" ) ); // Always on top of the list
|
|
|
|
|
|
|
|
for( auto& net : m_nets )
|
2017-07-03 17:14:35 +00:00
|
|
|
{
|
2018-01-19 09:02:23 +00:00
|
|
|
net.m_Pos = netnames.Add( net.m_Name );
|
2017-07-03 17:14:35 +00:00
|
|
|
}
|
2018-01-19 09:02:23 +00:00
|
|
|
|
|
|
|
Append( netnames );
|
2017-07-03 17:14:35 +00:00
|
|
|
}
|