diff options
Diffstat (limited to 'pcbnew/dialogs/dialog_find.cpp')
-rw-r--r-- | pcbnew/dialogs/dialog_find.cpp | 196 |
1 files changed, 196 insertions, 0 deletions
diff --git a/pcbnew/dialogs/dialog_find.cpp b/pcbnew/dialogs/dialog_find.cpp new file mode 100644 index 0000000..e3acac2 --- /dev/null +++ b/pcbnew/dialogs/dialog_find.cpp @@ -0,0 +1,196 @@ +/* + * This program source code file is part of KICAD, a free EDA CAD application. + * + * Copyright (C) 2012 Marco Mattila <marcom99@gmail.com> + * Copyright (C) 2006 Jean-Pierre Charras <jean-pierre.charras@gipsa-lab.inpg.fr> + * Copyright (C) 1992-2012 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 <fctsys.h> +#include <gr_basic.h> +#include <class_drawpanel.h> +#include <confirm.h> +#include <kicad_string.h> +#include <wxPcbStruct.h> + +#include <class_board.h> +#include <class_module.h> +#include <class_marker_pcb.h> + +#include <pcbnew.h> +#include <pcbnew_id.h> +#include <dialog_find.h> + + +// Initialize static member variables +wxString DIALOG_FIND::prevSearchString; +bool DIALOG_FIND::warpMouse = true; + + +DIALOG_FIND::DIALOG_FIND( PCB_BASE_FRAME* aParent ) : DIALOG_FIND_BASE( aParent ) +{ + parent = aParent; + foundItem = NULL; + GetSizer()->SetSizeHints( this ); + + m_SearchTextCtrl->AppendText( prevSearchString ); + m_SearchTextCtrl->SetFocus(); + m_SearchTextCtrl->SetSelection( -1, -1 ); + m_NoMouseWarpCheckBox->SetValue( !warpMouse ); + + itemCount = markerCount = 0; + + Center(); +} + +void DIALOG_FIND::EnableWarp( bool aEnabled ) +{ + m_NoMouseWarpCheckBox->SetValue( !aEnabled ); + warpMouse = aEnabled; +} + +void DIALOG_FIND::onButtonCloseClick( wxCommandEvent& aEvent ) +{ + Close( true ); +} + + +void DIALOG_FIND::onButtonFindItemClick( wxCommandEvent& aEvent ) +{ + PCB_SCREEN* screen = parent->GetScreen(); + wxPoint pos; + + foundItem = NULL; + wxString searchString = m_SearchTextCtrl->GetValue(); + + if( !searchString.IsSameAs( prevSearchString, false ) ) + { + itemCount = 0; + } + prevSearchString = searchString; + + parent->GetCanvas()->GetViewStart( &screen->m_StartVisu.x, &screen->m_StartVisu.y ); + + int count = 0; + + for( MODULE* module = parent->GetBoard()->m_Modules; module; module = module->Next() ) + { + if( WildCompareString( searchString, module->GetReference().GetData(), false ) ) + { + count++; + + if( count > itemCount ) + { + foundItem = module; + pos = module->GetPosition(); + itemCount++; + break; + } + } + + if( WildCompareString( searchString, module->GetValue().GetData(), false ) ) + { + count++; + + if( count > itemCount ) + { + foundItem = module; + pos = module->GetPosition(); + itemCount++; + break; + } + } + } + + wxString msg; + + if( foundItem ) + { + parent->SetCurItem( foundItem ); + msg.Printf( _( "<%s> found" ), GetChars( searchString ) ); + parent->SetStatusText( msg ); + + parent->CursorGoto( pos, !m_NoMouseWarpCheckBox->IsChecked() ); + } + else + { + parent->SetStatusText( wxEmptyString ); + msg.Printf( _( "<%s> not found" ), GetChars( searchString ) ); + DisplayError( this, msg, 10 ); + itemCount = 0; + } + + if( callback ) + callback( foundItem ); +} + + +void DIALOG_FIND::onButtonFindMarkerClick( wxCommandEvent& aEvent ) +{ + PCB_SCREEN* screen = parent->GetScreen(); + wxPoint pos; + foundItem = NULL; + + parent->GetCanvas()->GetViewStart( &screen->m_StartVisu.x, &screen->m_StartVisu.y ); + + MARKER_PCB* marker = parent->GetBoard()->GetMARKER( markerCount++ ); + + if( marker ) + { + foundItem = marker; + pos = marker->GetPosition(); + } + + wxString msg; + if( foundItem ) + { + parent->SetCurItem( foundItem ); + msg = _( "Marker found" ); + parent->SetStatusText( msg ); + + parent->CursorGoto( pos, !m_NoMouseWarpCheckBox->IsChecked() ); + } + else + { + parent->SetStatusText( wxEmptyString ); + msg = _( "No marker found" ); + DisplayError( this, msg, 10 ); + markerCount = 0; + } + + if( callback ) + callback( foundItem ); +} + + +void DIALOG_FIND::onClose( wxCloseEvent& aEvent ) +{ + warpMouse = !m_NoMouseWarpCheckBox->IsChecked(); + + EndModal( 1 ); +} + + +void PCB_EDIT_FRAME::InstallFindFrame() +{ + DIALOG_FIND dlg( this ); + dlg.ShowModal(); +} + |