From aa35045840b78d3f48212db45da59a2e5c69b223 Mon Sep 17 00:00:00 2001 From: saurabhb17 Date: Wed, 26 Feb 2020 15:57:49 +0530 Subject: Added main execs --- eeschema/events_called_functions_for_edit.cpp | 79 +++++++++++++++++++++++++++ 1 file changed, 79 insertions(+) create mode 100644 eeschema/events_called_functions_for_edit.cpp (limited to 'eeschema/events_called_functions_for_edit.cpp') diff --git a/eeschema/events_called_functions_for_edit.cpp b/eeschema/events_called_functions_for_edit.cpp new file mode 100644 index 0000000..bc7c69a --- /dev/null +++ b/eeschema/events_called_functions_for_edit.cpp @@ -0,0 +1,79 @@ +/* + * This program source code file is part of KiCad, a free EDA CAD application. + * + * Copyright (C) 2010 Jean-Pierre Charras, jp.charras at wanadoo.fr + * Copyright (C) 2014 KiCad Developers, see CHANGELOG.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 + */ + +/* + * @file events_called_functions.cpp + */ + +#include +#include +#include +#include +#include +#include +#include +#include + + +void SCH_EDIT_FRAME::OnCopySchematicItemRequest( wxCommandEvent& event ) +{ + SCH_ITEM * curr_item = GetScreen()->GetCurItem(); + + if( !curr_item || curr_item->GetFlags() ) + return; + + INSTALL_UNBUFFERED_DC( dc, m_canvas ); + + switch( curr_item->Type() ) + { + case SCH_COMPONENT_T: + { + SCH_COMPONENT* newitem; + newitem = new SCH_COMPONENT( *( (SCH_COMPONENT*) curr_item ) ); + newitem->SetTimeStamp( GetNewTimeStamp() ); + newitem->ClearAnnotation( NULL ); + newitem->SetFlags( IS_NEW ); + // Draw the new part, MoveItem() expects it to be already on screen. + newitem->Draw( m_canvas, &dc, wxPoint( 0, 0 ), g_XorMode ); + PrepareMoveItem( newitem, &dc ); + } + break; + + case SCH_TEXT_T: + case SCH_LABEL_T: + case SCH_GLOBAL_LABEL_T: + case SCH_HIERARCHICAL_LABEL_T: + { + SCH_TEXT* newitem = (SCH_TEXT*) curr_item->Clone(); + newitem->SetFlags( IS_NEW ); + // Draw the new item, MoveItem() expects it to be already on screen. + newitem->Draw( m_canvas, &dc, wxPoint( 0, 0 ), g_XorMode ); + PrepareMoveItem( newitem, &dc ); + } + break; + + default: + break; + } +} -- cgit