Improve alias handling in component chooser dialog.
This commit is contained in:
parent
a398d45914
commit
ef2337ca16
|
@ -114,7 +114,7 @@ void DIALOG_CHOOSE_COMPONENT::OnInterceptSearchBoxKey( wxKeyEvent& aKeyStroke )
|
|||
selectIfValid( GetNextItem( *m_libraryComponentTree, sel ) );
|
||||
break;
|
||||
|
||||
// The follwoing keys we can only hijack if they are not needed by the textbox itself.
|
||||
// The following keys we can only hijack if they are not needed by the textbox itself.
|
||||
|
||||
case WXK_LEFT:
|
||||
if( m_searchBox->GetInsertionPoint() == 0 )
|
||||
|
@ -219,27 +219,54 @@ bool DIALOG_CHOOSE_COMPONENT::updateSelection()
|
|||
wxTextAttr text_attribute;
|
||||
text_attribute.SetFont( font_normal );
|
||||
|
||||
const wxString name = selection->GetName();
|
||||
|
||||
if ( !name.empty() )
|
||||
{
|
||||
m_componentDetails->SetDefaultStyle( headline_attribute );
|
||||
m_componentDetails->AppendText( name );
|
||||
}
|
||||
|
||||
const wxString description = selection->GetDescription();
|
||||
|
||||
if( !description.empty() )
|
||||
{
|
||||
if ( !m_componentDetails->IsEmpty() )
|
||||
m_componentDetails->AppendText( wxT( "\n\n" ) );
|
||||
|
||||
m_componentDetails->SetDefaultStyle( headline_attribute );
|
||||
m_componentDetails->AppendText( _( "Description\n" ) );
|
||||
m_componentDetails->SetDefaultStyle( text_attribute );
|
||||
m_componentDetails->AppendText( description );
|
||||
m_componentDetails->AppendText( wxT("\n\n") );
|
||||
}
|
||||
|
||||
const wxString keywords = selection->GetKeyWords();
|
||||
|
||||
if( !keywords.empty() )
|
||||
{
|
||||
if ( !m_componentDetails->IsEmpty() )
|
||||
m_componentDetails->AppendText( wxT( "\n\n" ) );
|
||||
|
||||
m_componentDetails->SetDefaultStyle( headline_attribute );
|
||||
m_componentDetails->AppendText( _( "Keywords\n" ) );
|
||||
m_componentDetails->SetDefaultStyle( text_attribute );
|
||||
m_componentDetails->AppendText( keywords );
|
||||
}
|
||||
|
||||
if ( !selection->IsRoot() )
|
||||
{
|
||||
LIB_PART* root_part = selection->GetPart();
|
||||
const wxString root_component_name( root_part ? root_part->GetName() : _( "Unknown" ) );
|
||||
|
||||
if ( !m_componentDetails->IsEmpty() )
|
||||
m_componentDetails->AppendText( wxT( "\n\n" ) );
|
||||
|
||||
m_componentDetails->SetDefaultStyle( headline_attribute );
|
||||
m_componentDetails->AppendText( _( "Alias of " ) );
|
||||
m_componentDetails->SetDefaultStyle( text_attribute );
|
||||
m_componentDetails->AppendText( root_component_name );
|
||||
}
|
||||
|
||||
m_componentDetails->SetInsertionPoint( 0 ); // scroll up.
|
||||
m_componentDetails->Thaw();
|
||||
|
||||
|
@ -251,8 +278,28 @@ void DIALOG_CHOOSE_COMPONENT::OnHandlePreviewRepaint( wxPaintEvent& aRepaintEven
|
|||
{
|
||||
int unit = 0;
|
||||
LIB_ALIAS* selection = m_search_container->GetSelectedAlias( &unit );
|
||||
LIB_PART* part = selection ? selection->GetPart() : NULL;
|
||||
|
||||
renderPreview( selection ? selection->GetPart() : NULL, unit );
|
||||
// Don't draw anything (not even the background) if we don't have
|
||||
// a part to show
|
||||
if( !part )
|
||||
return;
|
||||
|
||||
if( selection->IsRoot() )
|
||||
{
|
||||
// just show the part directly
|
||||
renderPreview( part, unit );
|
||||
}
|
||||
else
|
||||
{
|
||||
// switch out the name temporarily for the alias name
|
||||
wxString tmp( part->GetName() );
|
||||
part->SetName( selection->GetName() );
|
||||
|
||||
renderPreview( part, unit );
|
||||
|
||||
part->SetName( tmp );
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
|
@ -262,6 +309,7 @@ void DIALOG_CHOOSE_COMPONENT::renderPreview( LIB_PART* aComponent, int aUni
|
|||
{
|
||||
wxPaintDC dc( m_componentView );
|
||||
EDA_COLOR_T bgcolor = m_parent->GetDrawBgColor();
|
||||
|
||||
dc.SetBackground( bgcolor == BLACK ? *wxBLACK_BRUSH : *wxWHITE_BRUSH );
|
||||
dc.Clear();
|
||||
|
||||
|
@ -323,6 +371,7 @@ static wxTreeItemId GetNextItem( const wxTreeCtrl& tree, const wxTreeItemId& ite
|
|||
for ( wxTreeItemId walk = item; walk.IsOk(); walk = tree.GetItemParent( walk ) )
|
||||
{
|
||||
nextItem = tree.GetNextSibling( walk );
|
||||
|
||||
if( nextItem.IsOk() )
|
||||
break;
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue