/* * This program source code file is part of KiCad, a free EDA CAD application. * * Copyright (C) 2018 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 #include #include #include #include wxDEFINE_EVENT( NET_SELECTED, wxCommandEvent ); #if defined( __WXOSX_MAC__ ) #define POPUP_PADDING 2 #define LIST_ITEM_PADDING 5 #define LIST_PADDING 5 #elif defined( __WXMSW__ ) #define POPUP_PADDING 0 #define LIST_ITEM_PADDING 2 #define LIST_PADDING 5 #else #define POPUP_PADDING 0 #define LIST_ITEM_PADDING 2 #define LIST_PADDING 5 #endif #define NO_NET _( "" ) class NET_SELECTOR_COMBOPOPUP : public wxPanel, public wxComboPopup { public: NET_SELECTOR_COMBOPOPUP() : m_minPopupWidth( -1 ), m_maxPopupHeight( 1000 ), m_netinfoList( nullptr ), m_selectedNetcode( 0 ), m_focusHandler( nullptr ) { } bool Create(wxWindow* aParent) override { wxPanel::Create( aParent, wxID_ANY, wxDefaultPosition, wxDefaultSize, wxSIMPLE_BORDER ); wxBoxSizer* mainSizer; mainSizer = new wxBoxSizer( wxVERTICAL ); wxStaticText* filterLabel = new wxStaticText( this, wxID_ANY, _( "Filter:" ) ); mainSizer->Add( filterLabel, 0, wxEXPAND, 0 ); m_filterCtrl = new wxTextCtrl( this, wxID_ANY, wxEmptyString, wxDefaultPosition, wxDefaultSize, wxTE_PROCESS_ENTER ); mainSizer->Add( m_filterCtrl, 0, wxEXPAND, 0 ); m_listBox = new wxListBox( this, wxID_ANY, wxDefaultPosition, wxDefaultSize, 0, 0, wxLB_SINGLE|wxLB_NEEDED_SB ); mainSizer->Add( m_listBox, 0, wxEXPAND|wxTOP, 2 ); SetSizer( mainSizer ); Layout(); Connect( wxEVT_IDLE, wxIdleEventHandler( NET_SELECTOR_COMBOPOPUP::onIdle ), NULL, this ); Connect( wxEVT_CHAR_HOOK, wxKeyEventHandler( NET_SELECTOR_COMBOPOPUP::onKeyDown ), NULL, this ); Connect( wxEVT_LEFT_DOWN, wxMouseEventHandler( NET_SELECTOR_COMBOPOPUP::onMouseClick ), NULL, this ); m_listBox->Connect( wxEVT_LEFT_DOWN, wxMouseEventHandler( NET_SELECTOR_COMBOPOPUP::onMouseClick ), NULL, this ); m_filterCtrl->Connect( wxEVT_TEXT, wxCommandEventHandler( NET_SELECTOR_COMBOPOPUP::onFilterEdit ), NULL, this ); m_filterCtrl->Connect( wxEVT_TEXT_ENTER, wxCommandEventHandler( NET_SELECTOR_COMBOPOPUP::onEnter ), NULL, this ); // in a ListBox comes in as a double-click on GTK m_listBox->Connect( wxEVT_COMMAND_LISTBOX_DOUBLECLICKED, wxCommandEventHandler( NET_SELECTOR_COMBOPOPUP::onEnter ), NULL, this ); return true; } wxWindow *GetControl() override { return this; } void SetStringValue( const wxString& aNetName ) override { // shouldn't be here (combo is read-only) } wxString GetStringValue() const override { NETINFO_ITEM* netInfo = m_netinfoList->GetNetItem( m_selectedNetcode ); if( netInfo && netInfo->GetNet() > 0 ) return netInfo->GetNetname(); return NO_NET; } void SetNetInfo( NETINFO_LIST* aNetInfoList ) { m_netinfoList = aNetInfoList; rebuildList(); } void SetIndeterminate() { m_selectedNetcode = -1; } bool IsIndeterminate() { return m_selectedNetcode == -1; } void SetSelectedNetcode( int aNetcode ) { m_selectedNetcode = aNetcode; } int GetSelectedNetcode() { return m_selectedNetcode; } wxSize GetAdjustedSize( int aMinWidth, int aPrefHeight, int aMaxHeight ) override { // Called when the popup is first shown. Stash the minWidth and maxHeight so we // can use them later when refreshing the sizes after filter changes. m_minPopupWidth = aMinWidth; m_maxPopupHeight = aMaxHeight; return updateSize(); } void OnPopup() override { // The updateSize() call in GetAdjustedSize() leaves the height off-by-one for // some reason, so do it again. updateSize(); } void Accept() { wxString selectedNetName; int selection = m_listBox->GetSelection(); if( selection >= 0 ) selectedNetName = m_listBox->GetString( (unsigned) selection ); if( selectedNetName.IsEmpty() ) { m_selectedNetcode = -1; GetComboCtrl()->SetValue( INDETERMINATE ); } else if( selectedNetName == NO_NET ) { m_selectedNetcode = 0; GetComboCtrl()->SetValue( NO_NET ); } else { m_selectedNetcode = m_netinfoList->GetNetItem( selectedNetName )->GetNet(); GetComboCtrl()->SetValue( selectedNetName ); } wxCommandEvent changeEvent( NET_SELECTED ); wxPostEvent( GetComboCtrl(), changeEvent ); Dismiss(); } protected: wxSize updateSize() { int listTop = m_listBox->GetRect().y; int itemHeight = GetTextSize( wxT( "Xy" ), this ).y + LIST_ITEM_PADDING; int listHeight = m_listBox->GetCount() * itemHeight + LIST_PADDING; if( listTop + listHeight >= m_maxPopupHeight ) listHeight = m_maxPopupHeight - listTop - 1; int listWidth = m_minPopupWidth; for( size_t i = 0; i < m_listBox->GetCount(); ++i ) { int itemWidth = GetTextSize( m_listBox->GetString( i ), m_listBox ).x; listWidth = std::max( listWidth, itemWidth + LIST_PADDING * 3 ); } wxSize listSize( listWidth, listHeight ); wxSize popupSize( listWidth, listTop + listHeight ); SetSize( popupSize ); // us GetParent()->SetSize( popupSize ); // the window that wxComboCtrl put us in m_listBox->SetMinSize( listSize ); m_listBox->SetSize( listSize ); return popupSize; } void rebuildList() { wxArrayString netNames; wxString filter = m_filterCtrl->GetValue().MakeLower(); if( !filter.IsEmpty() ) filter = wxT( "*" ) + filter + wxT( "*" ); for( NETINFO_ITEM* netinfo : *m_netinfoList ) { if( netinfo->GetNet() == 0 ) continue; // we'll insert NO_NET after sorting if( filter.IsEmpty() || wxString( netinfo->GetNetname() ).MakeLower().Matches( filter ) ) netNames.push_back( netinfo->GetNetname() ); } std::sort( netNames.begin(), netNames.end() ); if( filter.IsEmpty() || wxString( NO_NET ).MakeLower().Matches( filter ) ) netNames.insert( netNames.begin(), NO_NET ); m_listBox->Set( netNames ); } void onIdle( wxIdleEvent& aEvent ) { // Generate synthetic (but reliable) MouseMoved events static wxPoint lastPos; wxPoint screenPos = wxGetMousePosition(); if( screenPos != lastPos ) { lastPos = screenPos; onMouseMoved( screenPos ); } if( m_focusHandler ) { m_filterCtrl->PushEventHandler( m_focusHandler ); m_focusHandler = nullptr; } } // Hot-track the mouse (for focus and listbox selection) void onMouseMoved( const wxPoint aScreenPos ) { if( m_listBox->GetScreenRect().Contains( aScreenPos ) ) { doSetFocus( m_listBox ); wxPoint relativePos = m_listBox->ScreenToClient( aScreenPos ); int item = m_listBox->HitTest( relativePos ); if( item >= 0 ) m_listBox->SetSelection( item ); } else if( m_filterCtrl->GetScreenRect().Contains( aScreenPos ) ) { doSetFocus( m_filterCtrl ); } } void onMouseClick( wxMouseEvent& aEvent ) { // Accept a click event from anywhere. Different platform implementations have // different foibles with regard to transient popups and their children. if( aEvent.GetEventObject() == m_listBox ) { m_listBox->SetSelection( m_listBox->HitTest( aEvent.GetPosition() ) ); Accept(); return; } wxWindow* window = dynamic_cast( aEvent.GetEventObject() ); if( window ) { wxPoint screenPos = window->ClientToScreen( aEvent.GetPosition() ); if( m_listBox->GetScreenRect().Contains( screenPos ) ) { wxPoint localPos = m_listBox->ScreenToClient( screenPos ); m_listBox->SetSelection( m_listBox->HitTest( localPos ) ); Accept(); } } } void onKeyDown( wxKeyEvent& aEvent ) { switch( aEvent.GetKeyCode() ) { // Control keys go to the parent combobox case WXK_TAB: Dismiss(); m_parent->NavigateIn( ( aEvent.ShiftDown() ? 0 : wxNavigationKeyEvent::IsForward ) | ( aEvent.ControlDown() ? wxNavigationKeyEvent::WinChange : 0 ) ); break; case WXK_ESCAPE: Dismiss(); break; case WXK_RETURN: Accept(); break; // Arrows go to the list box case WXK_DOWN: case WXK_NUMPAD_DOWN: doSetFocus( m_listBox ); m_listBox->SetSelection( std::min( m_listBox->GetSelection() + 1, (int) m_listBox->GetCount() - 1 ) ); break; case WXK_UP: case WXK_NUMPAD_UP: doSetFocus( m_listBox ); m_listBox->SetSelection( std::max( m_listBox->GetSelection() - 1, 0 ) ); break; // Everything else goes to the filter textbox default: if( !m_filterCtrl->HasFocus() ) { doSetFocus( m_filterCtrl ); // We already missed our chance to have the native widget handle it. We'll // have to do the first character ourselves. onStartingKey( aEvent ); } else { // On some platforms a wxComboFocusHandler will have been pushed which // unhelpfully gives the event right back to the popup. Make sure the filter // control is going to get the event. if( m_filterCtrl->GetEventHandler() != m_filterCtrl ) m_focusHandler = m_filterCtrl->PopEventHandler(); aEvent.Skip(); } break; } } void onEnter( wxCommandEvent& aEvent ) { Accept(); } void onStartingKey( wxKeyEvent& aEvent ) { if( aEvent.GetKeyCode() == WXK_BACK ) { const long pos = m_filterCtrl->GetLastPosition(); m_filterCtrl->Remove( pos - 1, pos ); } else { bool isPrintable; int ch = aEvent.GetUnicodeKey(); if( ch != WXK_NONE ) isPrintable = true; else { ch = aEvent.GetKeyCode(); isPrintable = ch >= WXK_SPACE && ch < WXK_START; } if( isPrintable ) { wxString text( static_cast( ch ) ); // wxCHAR_HOOK chars have been converted to uppercase. if( !aEvent.ShiftDown() ) text.MakeLower(); m_filterCtrl->WriteText( text ); } } } void onFilterEdit( wxCommandEvent& aEvent ) { rebuildList(); updateSize(); } void doSetFocus( wxWindow* aWindow ) { #ifdef __WXOSX_MAC__ aWindow->OSXForceFocus(); #else aWindow->SetFocus(); #endif } protected: wxTextCtrl* m_filterCtrl; wxListBox* m_listBox; int m_minPopupWidth; int m_maxPopupHeight; NETINFO_LIST* m_netinfoList; int m_selectedNetcode; wxEvtHandler* m_focusHandler; }; NET_SELECTOR::NET_SELECTOR( wxWindow *parent, wxWindowID id, const wxPoint &pos, const wxSize &size, long style ) : wxComboCtrl( parent, id, wxEmptyString, pos, size, style|wxCB_READONLY ) { UseAltPopupWindow(); m_netSelectorPopup = new NET_SELECTOR_COMBOPOPUP(); SetPopupControl( m_netSelectorPopup ); } void NET_SELECTOR::SetNetInfo( NETINFO_LIST* aNetInfoList ) { m_netSelectorPopup->SetNetInfo( aNetInfoList ); } void NET_SELECTOR::SetSelectedNetcode( int aNetcode ) { m_netSelectorPopup->SetSelectedNetcode( aNetcode ); SetValue( m_netSelectorPopup->GetStringValue() ); } void NET_SELECTOR::SetIndeterminate() { m_netSelectorPopup->SetIndeterminate(); SetValue( INDETERMINATE ); } bool NET_SELECTOR::IsIndeterminate() { return m_netSelectorPopup->IsIndeterminate(); } int NET_SELECTOR::GetSelectedNetcode() { return m_netSelectorPopup->GetSelectedNetcode(); }