2019-06-17 00:34:21 +00:00
|
|
|
/*
|
|
|
|
* This program source code file is part of KiCad, a free EDA CAD application.
|
|
|
|
*
|
2019-08-14 08:28:07 +00:00
|
|
|
* Copyright (C) 2019 CERN
|
2019-06-17 00:34:21 +00:00
|
|
|
* 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 <tool/tool_action.h>
|
|
|
|
#include <bitmaps.h>
|
2020-10-14 02:46:39 +00:00
|
|
|
#include <eda_item.h>
|
2021-02-22 23:47:17 +00:00
|
|
|
#include <drawing_sheet/ds_data_item.h>
|
2019-06-17 00:34:21 +00:00
|
|
|
|
2020-10-13 05:04:31 +00:00
|
|
|
#include "tools/pl_actions.h"
|
2019-06-17 00:34:21 +00:00
|
|
|
|
|
|
|
// 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( "plEditor.InteractiveDrawing.drawLine",
|
|
|
|
AS_GLOBAL, 0, "",
|
|
|
|
_( "Add Line" ), _( "Add a line" ),
|
2021-03-08 02:59:07 +00:00
|
|
|
BITMAPS::add_graphical_segments, AF_ACTIVATE, (void*) DS_DATA_ITEM::DS_SEGMENT );
|
2019-06-17 00:34:21 +00:00
|
|
|
|
|
|
|
TOOL_ACTION PL_ACTIONS::drawRectangle( "plEditor.InteractiveDrawing.drawRectangle",
|
|
|
|
AS_GLOBAL, 0, "",
|
|
|
|
_( "Add Rectangle" ), _( "Add a rectangle" ),
|
2021-03-08 02:59:07 +00:00
|
|
|
BITMAPS::add_rectangle, AF_ACTIVATE, (void*) DS_DATA_ITEM::DS_RECT );
|
2019-06-17 00:34:21 +00:00
|
|
|
|
|
|
|
TOOL_ACTION PL_ACTIONS::placeText( "plEditor.InteractiveDrawing.placeText",
|
|
|
|
AS_GLOBAL, 0, "",
|
|
|
|
_( "Add Text" ), _( "Add a text item" ),
|
2021-03-08 02:59:07 +00:00
|
|
|
BITMAPS::text, AF_ACTIVATE, (void*) DS_DATA_ITEM::DS_TEXT );
|
2019-06-17 00:34:21 +00:00
|
|
|
|
|
|
|
TOOL_ACTION PL_ACTIONS::placeImage( "plEditor.InteractiveDrawing.placeImage",
|
|
|
|
AS_GLOBAL, 0, "",
|
|
|
|
_( "Add Bitmap" ), _( "Add a bitmap image" ),
|
2021-03-08 02:59:07 +00:00
|
|
|
BITMAPS::image, AF_ACTIVATE, (void*) DS_DATA_ITEM::DS_BITMAP );
|
2019-06-17 00:34:21 +00:00
|
|
|
|
|
|
|
|
|
|
|
// PL_EDIT_TOOL
|
|
|
|
//
|
2019-07-01 21:01:33 +00:00
|
|
|
TOOL_ACTION PL_ACTIONS::move( "plEditor.InteractiveMove.move",
|
2019-06-17 00:34:21 +00:00
|
|
|
AS_GLOBAL,
|
|
|
|
'M', LEGACY_HK_NAME( "Move Item" ),
|
|
|
|
_( "Move" ), _( "Moves the selected item(s)" ),
|
2021-03-08 02:59:07 +00:00
|
|
|
BITMAPS::move, AF_ACTIVATE );
|
2019-06-17 00:34:21 +00:00
|
|
|
|
2021-05-30 22:56:24 +00:00
|
|
|
TOOL_ACTION PL_ACTIONS::appendImportedDrawingSheet( "plEditor.InteractiveEdit.appendWorksheet",
|
2019-06-17 00:34:21 +00:00
|
|
|
AS_GLOBAL, 0, "",
|
2021-02-22 16:37:43 +00:00
|
|
|
_( "Append Existing Drawing Sheet..." ),
|
|
|
|
_( "Append an existing drawing sheet file to current file" ),
|
2021-03-08 02:59:07 +00:00
|
|
|
BITMAPS::import, AF_ACTIVATE );
|
2019-06-17 00:34:21 +00:00
|
|
|
|
|
|
|
|
|
|
|
// PL_EDITOR_CONTROL
|
|
|
|
//
|
|
|
|
TOOL_ACTION PL_ACTIONS::showInspector( "plEditor.EditorControl.ShowInspector",
|
|
|
|
AS_GLOBAL, 0, "",
|
2021-05-30 22:56:24 +00:00
|
|
|
_( "Show Design Inspector" ), _( "Show the list of items in the drawing sheet" ),
|
2021-03-08 02:59:07 +00:00
|
|
|
BITMAPS::spreadsheet );
|
2019-06-17 00:34:21 +00:00
|
|
|
|
2019-07-10 22:15:57 +00:00
|
|
|
TOOL_ACTION PL_ACTIONS::previewSettings( "plEditor.EditorControl.PreviewSettings",
|
|
|
|
AS_GLOBAL, 0, "",
|
|
|
|
_( "Page Preview Settings..." ), _( "Edit preview data for page size and title block" ),
|
2021-03-08 02:59:07 +00:00
|
|
|
BITMAPS::sheetset );
|
2019-07-10 22:15:57 +00:00
|
|
|
|
2020-07-29 23:50:25 +00:00
|
|
|
TOOL_ACTION PL_ACTIONS::layoutNormalMode( "plEditor.EditorControl.LayoutNormalMode",
|
|
|
|
AS_GLOBAL, 0, "",
|
|
|
|
_( "Show title block in preview mode" ),
|
|
|
|
_( "Show title block in preview mode:\n"
|
|
|
|
"text placeholders will be replaced with preview data." ),
|
2021-03-08 02:59:07 +00:00
|
|
|
BITMAPS::pagelayout_normal_view_mode );
|
2020-07-29 23:50:25 +00:00
|
|
|
|
|
|
|
TOOL_ACTION PL_ACTIONS::layoutEditMode( "plEditor.EditorControl.LayoutEditMode",
|
|
|
|
AS_GLOBAL, 0, "",
|
|
|
|
_( "Show title block in edit mode" ),
|
|
|
|
_( "Show title block in edit mode:\n"
|
|
|
|
"text placeholders are shown as ${keyword} tokens." ),
|
2021-03-08 02:59:07 +00:00
|
|
|
BITMAPS::pagelayout_special_view_mode );
|
2020-07-29 23:50:25 +00:00
|
|
|
|
2019-06-17 00:34:21 +00:00
|
|
|
|
|
|
|
// PL_SELECTION_TOOL
|
|
|
|
//
|
|
|
|
TOOL_ACTION PL_ACTIONS::selectionActivate( "plEditor.InteractiveSelection",
|
|
|
|
AS_GLOBAL, 0, "", "", "", // No description, not shown anywhere
|
2021-03-08 02:59:07 +00:00
|
|
|
BITMAPS::INVALID_BITMAP, AF_ACTIVATE );
|
2019-06-17 00:34:21 +00:00
|
|
|
|
|
|
|
TOOL_ACTION PL_ACTIONS::selectionMenu( "plEditor.InteractiveSelection.SelectionMenu",
|
|
|
|
AS_GLOBAL );
|
|
|
|
|
|
|
|
TOOL_ACTION PL_ACTIONS::addItemToSel( "plEditor.InteractiveSelection.AddItemToSel",
|
|
|
|
AS_GLOBAL );
|
|
|
|
|
|
|
|
TOOL_ACTION PL_ACTIONS::addItemsToSel( "plEditor.InteractiveSelection.AddItemsToSel",
|
|
|
|
AS_GLOBAL );
|
|
|
|
|
|
|
|
TOOL_ACTION PL_ACTIONS::removeItemFromSel( "plEditor.InteractiveSelection.RemoveItemFromSel",
|
|
|
|
AS_GLOBAL );
|
|
|
|
|
|
|
|
TOOL_ACTION PL_ACTIONS::removeItemsFromSel( "plEditor.InteractiveSelection.RemoveItemsFromSel",
|
|
|
|
AS_GLOBAL );
|
|
|
|
|
|
|
|
TOOL_ACTION PL_ACTIONS::clearSelection( "plEditor.InteractiveSelection.ClearSelection",
|
|
|
|
AS_GLOBAL );
|
|
|
|
|
|
|
|
|