/* * This program source code file is part of KiCad, a free EDA CAD application. * * Copyright (C) 2019 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 #include #include #include #include #include #include #include #include TOOL_ACTION PL_ACTIONS::refreshPreview( "plEditor.EditorControl.refreshPreview", AS_GLOBAL, 0, "", "" ); TOOL_ACTION PL_ACTIONS::toggleBackground( "plEditor.EditorControl.ToggleBackground", AS_GLOBAL, 0, _( "Background White" ), _( "Switch between white and black background" ), palette_xpm ); bool PL_EDITOR_CONTROL::Init() { m_frame = getEditFrame(); return true; } void PL_EDITOR_CONTROL::Reset( RESET_REASON aReason ) { if( aReason == MODEL_RELOAD ) m_frame = getEditFrame(); } int PL_EDITOR_CONTROL::New( const TOOL_EVENT& aEvent ) { wxCommandEvent evt( wxEVT_NULL, wxID_NEW ); m_frame->Files_io( evt ); return 0; } int PL_EDITOR_CONTROL::Open( const TOOL_EVENT& aEvent ) { wxCommandEvent evt( wxEVT_NULL, wxID_OPEN ); m_frame->Files_io( evt ); return 0; } int PL_EDITOR_CONTROL::Save( const TOOL_EVENT& aEvent ) { wxCommandEvent evt( wxEVT_NULL, wxID_SAVE ); m_frame->Files_io( evt ); return 0; } int PL_EDITOR_CONTROL::SaveAs( const TOOL_EVENT& aEvent ) { wxCommandEvent evt( wxEVT_NULL, wxID_SAVEAS ); m_frame->Files_io( evt ); return 0; } int PL_EDITOR_CONTROL::PageSetup( const TOOL_EVENT& aEvent ) { wxCommandEvent evt( wxEVT_NULL, ID_SHEET_SET ); m_frame->Process_Special_Functions( evt ); return 0; } int PL_EDITOR_CONTROL::Print( const TOOL_EVENT& aEvent ) { m_frame->ToPrinter( false ); return 0; } int PL_EDITOR_CONTROL::Plot( const TOOL_EVENT& aEvent ) { wxMessageBox( wxT( "Not yet available" ) ); return 0; } int PL_EDITOR_CONTROL::Quit( const TOOL_EVENT& aEvent ) { m_frame->Close( false ); return 0; } int PL_EDITOR_CONTROL::ToggleBackgroundColor( const TOOL_EVENT& aEvent ) { m_frame->SetDrawBgColor( m_frame->GetDrawBgColor() == WHITE ? BLACK : WHITE ); getView()->GetPainter()->GetSettings()->SetBackgroundColor( m_frame->GetDrawBgColor() ); m_frame->GetGalCanvas()->GetView()->UpdateAllLayersColor(); m_frame->GetCanvas()->Refresh(); return 0; } int PL_EDITOR_CONTROL::UpdateMessagePanel( const TOOL_EVENT& aEvent ) { PL_SELECTION_TOOL* selTool = m_toolMgr->GetTool(); SELECTION& selection = selTool->GetSelection(); if( selection.GetSize() == 1 ) { EDA_ITEM* item = (EDA_ITEM*) selection.Front(); MSG_PANEL_ITEMS msgItems; item->GetMsgPanelInfo( m_frame->GetUserUnits(), msgItems ); m_frame->SetMsgPanel( msgItems ); WS_DATA_ITEM* dataItem = static_cast( item )->GetPeer(); m_frame->GetPropertiesFrame()->CopyPrmsFromItemToPanel( dataItem ); } else { m_frame->ClearMsgPanel(); m_frame->GetPropertiesFrame()->CopyPrmsFromItemToPanel( nullptr ); } m_frame->GetPropertiesFrame()->CopyPrmsFromGeneralToPanel(); return 0; } void PL_EDITOR_CONTROL::setTransitions() { Go( &PL_EDITOR_CONTROL::New, ACTIONS::doNew.MakeEvent() ); Go( &PL_EDITOR_CONTROL::Open, ACTIONS::open.MakeEvent() ); Go( &PL_EDITOR_CONTROL::Save, ACTIONS::save.MakeEvent() ); Go( &PL_EDITOR_CONTROL::SaveAs, ACTIONS::saveAs.MakeEvent() ); Go( &PL_EDITOR_CONTROL::PageSetup, ACTIONS::pageSetup.MakeEvent() ); Go( &PL_EDITOR_CONTROL::Print, ACTIONS::print.MakeEvent() ); Go( &PL_EDITOR_CONTROL::Plot, ACTIONS::plot.MakeEvent() ); Go( &PL_EDITOR_CONTROL::Quit, ACTIONS::quit.MakeEvent() ); Go( &PL_EDITOR_CONTROL::ToggleBackgroundColor, PL_ACTIONS::toggleBackground.MakeEvent() ); Go( &PL_EDITOR_CONTROL::UpdateMessagePanel, EVENTS::SelectedEvent ); Go( &PL_EDITOR_CONTROL::UpdateMessagePanel, EVENTS::UnselectedEvent ); Go( &PL_EDITOR_CONTROL::UpdateMessagePanel, EVENTS::ClearedEvent ); Go( &PL_EDITOR_CONTROL::UpdateMessagePanel, EVENTS::SelectedItemsModified ); }