/* * This program source code file is part of KiCad, a free EDA CAD application. * * Copyright (C) 2019 CERN * 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 "tools/pl_actions.h" // Actions, being statically-defined, require specialized I18N handling. We continue to // use the _() macro so that string harvesting by the I18N framework doesn't have to be // specialized, but we don't translate on initialization and instead do it in the getters. #undef _ #define _(s) s // PL_DRAWING_TOOLS // TOOL_ACTION PL_ACTIONS::drawLine( TOOL_ACTION_ARGS() .Name( "plEditor.InteractiveDrawing.drawLine" ) .Scope( AS_GLOBAL ) .MenuText( _( "Add Line" ) ) .Tooltip( _( "Add a line" ) ) .Icon( BITMAPS::add_graphical_segments ) .Flags( AF_ACTIVATE ) .Parameter( DS_DATA_ITEM::DS_SEGMENT ) ); TOOL_ACTION PL_ACTIONS::drawRectangle( TOOL_ACTION_ARGS() .Name( "plEditor.InteractiveDrawing.drawRectangle" ) .Scope( AS_GLOBAL ) .MenuText( _( "Add Rectangle" ) ) .Tooltip( _( "Add a rectangle" ) ) .Icon( BITMAPS::add_rectangle ) .Flags( AF_ACTIVATE ) .Parameter( DS_DATA_ITEM::DS_RECT ) ); TOOL_ACTION PL_ACTIONS::placeText( TOOL_ACTION_ARGS() .Name( "plEditor.InteractiveDrawing.placeText" ) .Scope( AS_GLOBAL ) .MenuText( _( "Add Text" ) ) .Tooltip( _( "Add a text item" ) ) .Icon( BITMAPS::text ) .Flags( AF_ACTIVATE ) .Parameter( DS_DATA_ITEM::DS_TEXT ) ); TOOL_ACTION PL_ACTIONS::placeImage( TOOL_ACTION_ARGS() .Name( "plEditor.InteractiveDrawing.placeImage" ) .Scope( AS_GLOBAL ) .MenuText( _( "Add Bitmap" ) ) .Tooltip( _( "Add a bitmap image" ) ) .Icon( BITMAPS::image ) .Flags( AF_ACTIVATE ) .Parameter( DS_DATA_ITEM::DS_BITMAP ) ); // PL_EDIT_TOOL // TOOL_ACTION PL_ACTIONS::move( TOOL_ACTION_ARGS() .Name( "plEditor.InteractiveMove.move" ) .Scope( AS_GLOBAL ) .DefaultHotkey( 'M' ) .LegacyHotkeyName( "Move Item" ) .MenuText( _( "Move" ) ) .Tooltip( _( "Moves the selected item(s)" ) ) .Icon( BITMAPS::move ) .Flags( AF_ACTIVATE ) ); TOOL_ACTION PL_ACTIONS::appendImportedDrawingSheet( TOOL_ACTION_ARGS() .Name( "plEditor.InteractiveEdit.appendWorksheet" ) .Scope( AS_GLOBAL ) .MenuText( _( "Append Existing Drawing Sheet..." ) ) .Tooltip( _( "Append an existing drawing sheet file to current file" ) ) .Icon( BITMAPS::import ) .Flags( AF_ACTIVATE ) ); // PL_EDITOR_CONTROL // TOOL_ACTION PL_ACTIONS::showInspector( TOOL_ACTION_ARGS() .Name( "plEditor.EditorControl.ShowInspector" ) .Scope( AS_GLOBAL ) .MenuText( _( "Show Design Inspector" ) ) .Tooltip( _( "Show the list of items in the drawing sheet" ) ) .Icon( BITMAPS::spreadsheet ) ); TOOL_ACTION PL_ACTIONS::previewSettings( TOOL_ACTION_ARGS() .Name( "plEditor.EditorControl.PreviewSettings" ) .Scope( AS_GLOBAL ) .MenuText( _( "Page Preview Settings..." ) ) .Tooltip( _( "Edit preview data for page size and title block" ) ) .Icon( BITMAPS::sheetset ) ); TOOL_ACTION PL_ACTIONS::layoutNormalMode( TOOL_ACTION_ARGS() .Name( "plEditor.EditorControl.LayoutNormalMode" ) .Scope( AS_GLOBAL ) .MenuText( _( "Show title block in preview mode" ) ) .Tooltip( _( "Show title block in preview mode:\n" "text placeholders will be replaced with preview data." ) ) .Icon( BITMAPS::pagelayout_normal_view_mode ) ); TOOL_ACTION PL_ACTIONS::layoutEditMode( TOOL_ACTION_ARGS() .Name( "plEditor.EditorControl.LayoutEditMode" ) .Scope( AS_GLOBAL ) .MenuText( _( "Show title block in edit mode" ) ) .Tooltip( _( "Show title block in edit mode:\n" "text placeholders are shown as ${keyword} tokens." ) ) .Icon( BITMAPS::pagelayout_special_view_mode ) ); // PL_SELECTION_TOOL // TOOL_ACTION PL_ACTIONS::selectionActivate( TOOL_ACTION_ARGS() .Name( "plEditor.InteractiveSelection" ) .Scope( AS_GLOBAL ) .Flags( AF_ACTIVATE ) ); TOOL_ACTION PL_ACTIONS::selectionMenu( TOOL_ACTION_ARGS() .Name( "plEditor.InteractiveSelection.SelectionMenu" ) .Scope( AS_GLOBAL ) ); TOOL_ACTION PL_ACTIONS::addItemToSel( TOOL_ACTION_ARGS() .Name( "plEditor.InteractiveSelection.AddItemToSel" ) .Scope( AS_GLOBAL ) ); TOOL_ACTION PL_ACTIONS::addItemsToSel( TOOL_ACTION_ARGS() .Name( "plEditor.InteractiveSelection.AddItemsToSel" ) .Scope( AS_GLOBAL ) ); TOOL_ACTION PL_ACTIONS::removeItemFromSel( TOOL_ACTION_ARGS() .Name( "plEditor.InteractiveSelection.RemoveItemFromSel" ) .Scope( AS_GLOBAL ) ); TOOL_ACTION PL_ACTIONS::removeItemsFromSel( TOOL_ACTION_ARGS() .Name( "plEditor.InteractiveSelection.RemoveItemsFromSel" ) .Scope( AS_GLOBAL ) ); TOOL_ACTION PL_ACTIONS::clearSelection( TOOL_ACTION_ARGS() .Name( "plEditor.InteractiveSelection.ClearSelection" ) .Scope( AS_GLOBAL ) );