7
mirror of https://gitlab.com/kicad/code/kicad.git synced 2024-11-21 23:55:03 +00:00
kicad/common/settings/aui_settings.cpp
Wayne Stambaugh 24b04795fd Add net navigator panel to schematic editor.
[ADDED]: A panel to the schematic editor  that allows quick access to all
         of the items connected to the currently highlighted net.

This is an initial swag at implementing a full net navigator feature.  For
now it only shows the currently highlighted net nodes.  The incremental
net list advanced setting must be enabled in order to use this feature due
to performance reasons.  There are still some issues with saving the panel
position which will be addressed in the future.

Initial code for serializing wxAuiPaneInfo settings to and from JSON have
be implemented.
2023-05-20 13:48:03 -04:00

256 lines
6.4 KiB
C++

/*
* This program source code file is part of KiCad, a free EDA CAD application.
*
* Copyright (C) 2023 Rivos
* Copyright (C) 2023 KiCad Developers, see AUTHORS.txt for contributors.
*
* @author Wayne Stambaugh <stambaughw@gmail.com>
*
* 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 <settings/aui_settings.h>
#include <nlohmann/json.hpp>
#include <wx/gdicmn.h>
#include <wx/aui/framemanager.h>
void to_json( nlohmann::json& aJson, const wxPoint& aPoint )
{
aJson = nlohmann::json
{
{ "x", aPoint.x },
{ "y", aPoint.y }
};
}
void from_json( const nlohmann::json& aJson, wxPoint& aPoint )
{
aPoint.x = aJson.at( "x" ).get<int>();
aPoint.y = aJson.at( "y" ).get<int>();
}
bool operator<( const wxPoint& aLhs, const wxPoint& aRhs )
{
int xDelta = aLhs.x - aRhs.x;
if( xDelta < 0 )
return true;
if( ( xDelta == 0 ) && (aLhs.y < aRhs.y ) )
return true;
return false;
}
void to_json( nlohmann::json& aJson, const wxSize& aSize )
{
aJson = nlohmann::json
{
{ "width", aSize.x },
{ "height", aSize.y }
};
}
void from_json( const nlohmann::json& aJson, wxSize& aSize )
{
aSize.SetWidth( aJson.at( "width" ).get<int>() );
aSize.SetHeight( aJson.at( "height" ).get<int>() );
}
bool operator<( const wxSize& aLhs, const wxSize& aRhs )
{
int xDelta = aLhs.x - aRhs.x;
if( xDelta < 0 )
return true;
if( ( xDelta == 0 ) && (aLhs.y < aRhs.y ) )
return true;
return false;
}
void to_json( nlohmann::json& aJson, const wxRect& aRect )
{
aJson = nlohmann::json
{
{ "position", aRect.GetPosition() },
{ "size", aRect.GetSize() }
};
}
void from_json( const nlohmann::json& aJson, wxRect& aRect )
{
aRect.SetPosition( aJson.at( "position" ).get<wxPoint>() );
aRect.SetSize( aJson.at( "size" ).get<wxSize>() );
}
bool operator<( const wxRect& aLhs, const wxRect& aRhs )
{
if( aLhs.GetSize() < aRhs.GetSize() )
return true;
if( aLhs.GetPosition() < aRhs.GetPosition() )
return true;
return false;
}
void to_json( nlohmann::json& aJson, const wxAuiPaneInfo& aPaneInfo )
{
aJson = nlohmann::json
{
{ "name", aPaneInfo.name },
{ "caption", aPaneInfo.caption },
{ "state", aPaneInfo.state },
{ "dock_direction", aPaneInfo.dock_direction },
{ "dock_layer", aPaneInfo.dock_layer },
{ "dock_row", aPaneInfo.dock_row },
{ "dock_pos", aPaneInfo.dock_pos },
{ "dock_proportion", aPaneInfo.dock_proportion },
{ "best_size", aPaneInfo.best_size },
{ "min_size", aPaneInfo.min_size },
{ "max_size", aPaneInfo.max_size },
{ "floating_pos", aPaneInfo.floating_pos },
{ "floating_size", aPaneInfo.floating_size },
{ "rect", aPaneInfo.rect }
};
}
void from_json( const nlohmann::json& aJson, wxAuiPaneInfo& aPaneInfo )
{
aPaneInfo.name = aJson.at( "name" ).get<wxString>();
aPaneInfo.caption = aJson.at( "caption" ).get<wxString>();
aPaneInfo.state = aJson.at( "state" ).get<int>();
aPaneInfo.dock_direction = aJson.at( "dock_direction" ).get<unsigned int>();
aPaneInfo.dock_layer = aJson.at( "dock_layer" ).get<int>();
aPaneInfo.dock_row = aJson.at( "dock_row" ).get<int>();
aPaneInfo.dock_pos = aJson.at( "dock_pos" ).get<int>();
aPaneInfo.dock_proportion = aJson.at( "dock_proportion" ).get<int>();
aPaneInfo.best_size = aJson.at( "best_size" ).get<wxSize>();
aPaneInfo.min_size = aJson.at( "min_size" ).get<wxSize>();
aPaneInfo.max_size = aJson.at( "max_size" ).get<wxSize>();
aPaneInfo.floating_pos = aJson.at( "floating_pos" ).get<wxPoint>();
aPaneInfo.floating_size = aJson.at( "floating_size" ).get<wxSize>();
aPaneInfo.rect = aJson.at( "rect" ).get<wxRect>();
}
bool operator<( const wxAuiPaneInfo& aLhs, const wxAuiPaneInfo& aRhs )
{
if( aLhs.name < aRhs.name )
return true;
if( aLhs.caption < aRhs.caption )
return true;
if( aLhs.state < aRhs.state )
return true;
if( aLhs.dock_direction < aRhs.dock_direction )
return true;
if( aLhs.dock_layer < aRhs.dock_layer )
return true;
if( aLhs.dock_row < aRhs.dock_row )
return true;
if( aLhs.dock_pos < aRhs.dock_pos )
return true;
if( aLhs.dock_proportion < aRhs.dock_proportion )
return true;
if( aLhs.best_size < aRhs.best_size )
return true;
if( aLhs.min_size < aRhs.min_size )
return true;
if( aLhs.max_size < aRhs.max_size )
return true;
if( aLhs.floating_pos < aRhs.floating_pos )
return true;
if( aLhs.floating_size < aRhs.floating_size )
return true;
if( aLhs.rect < aRhs.rect )
return true;
return false;
}
bool operator==( const wxAuiPaneInfo& aLhs, const wxAuiPaneInfo& aRhs )
{
if( aLhs.name != aRhs.name )
return false;
if( aLhs.caption != aRhs.caption )
return false;
if( aLhs.state != aRhs.state )
return false;
if( aLhs.dock_direction != aRhs.dock_direction )
return false;
if( aLhs.dock_layer != aRhs.dock_layer )
return false;
if( aLhs.dock_row != aRhs.dock_row )
return false;
if( aLhs.dock_pos != aRhs.dock_pos )
return false;
if( aLhs.dock_proportion != aRhs.dock_proportion )
return false;
if( aLhs.best_size != aRhs.best_size )
return false;
if( aLhs.min_size != aRhs.min_size )
return false;
if( aLhs.max_size != aRhs.max_size )
return false;
if( aLhs.floating_pos != aRhs.floating_pos )
return false;
if( aLhs.floating_size != aRhs.floating_size )
return false;
if( aLhs.rect != aRhs.rect )
return false;
return true;
}