136 lines
4.2 KiB
C++
136 lines
4.2 KiB
C++
/*
|
|
* 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
|
|
*/
|
|
|
|
#ifndef SCH_ACTIONS_H
|
|
#define SCH_ACTIONS_H
|
|
|
|
#include <tool/tool_action.h>
|
|
#include <tool/actions.h>
|
|
#include <core/optional.h>
|
|
|
|
class TOOL_EVENT;
|
|
class TOOL_MANAGER;
|
|
|
|
/**
|
|
* Class SCH_ACTIONS
|
|
*
|
|
* Gathers all the actions that are shared by tools. The instance of SCH_ACTIONS is created
|
|
* inside of ACTION_MANAGER object that registers the actions.
|
|
*/
|
|
class SCH_ACTIONS : public ACTIONS
|
|
{
|
|
public:
|
|
// Selection Tool
|
|
/// Activation of the selection tool
|
|
static TOOL_ACTION selectionActivate;
|
|
|
|
/// Select a single item under the cursor position
|
|
static TOOL_ACTION selectionCursor;
|
|
|
|
/// Clears the current selection
|
|
static TOOL_ACTION selectionClear;
|
|
|
|
/// Selects an item (specified as the event parameter).
|
|
static TOOL_ACTION selectItem;
|
|
static TOOL_ACTION unselectItem;
|
|
|
|
/// Selects a list of items (specified as the event parameter)
|
|
static TOOL_ACTION selectItems;
|
|
static TOOL_ACTION unselectItems;
|
|
|
|
/// Runs a selection menu to select from a list of items
|
|
static TOOL_ACTION selectionMenu;
|
|
|
|
/* Can we share these with PCBNew?
|
|
// Layer control
|
|
static TOOL_ACTION layerTop;
|
|
static TOOL_ACTION layerInner1;
|
|
static TOOL_ACTION layerInner2;
|
|
static TOOL_ACTION layerInner3;
|
|
static TOOL_ACTION layerInner4;
|
|
static TOOL_ACTION layerInner5;
|
|
static TOOL_ACTION layerInner6;
|
|
static TOOL_ACTION layerBottom;
|
|
static TOOL_ACTION layerNext;
|
|
static TOOL_ACTION layerPrev;
|
|
static TOOL_ACTION layerAlphaInc;
|
|
static TOOL_ACTION layerAlphaDec;
|
|
static TOOL_ACTION layerToggle;
|
|
|
|
static TOOL_ACTION layerChanged; // notification
|
|
*/
|
|
|
|
// Locking
|
|
static TOOL_ACTION toggleLock;
|
|
static TOOL_ACTION lock;
|
|
static TOOL_ACTION unlock;
|
|
|
|
// Tools
|
|
static TOOL_ACTION selectionTool;
|
|
static TOOL_ACTION pickerTool;
|
|
static TOOL_ACTION placeSymbol;
|
|
static TOOL_ACTION placePower;
|
|
static TOOL_ACTION drawWire;
|
|
static TOOL_ACTION drawBus;
|
|
static TOOL_ACTION unfoldBus;
|
|
static TOOL_ACTION placeNoConnect;
|
|
static TOOL_ACTION placeJunction;
|
|
static TOOL_ACTION placeBusWireEntry;
|
|
static TOOL_ACTION placeBusBusEntry;
|
|
static TOOL_ACTION placeLabel;
|
|
static TOOL_ACTION placeGlobalLabel;
|
|
static TOOL_ACTION placeHierarchicalLabel;
|
|
static TOOL_ACTION placeSchematicText;
|
|
static TOOL_ACTION drawLines;
|
|
static TOOL_ACTION placeImage;
|
|
static TOOL_ACTION finishDrawing;
|
|
|
|
// Editing
|
|
static TOOL_ACTION properties;
|
|
|
|
/// Clipboard
|
|
static TOOL_ACTION copyToClipboard;
|
|
static TOOL_ACTION pasteFromClipboard;
|
|
static TOOL_ACTION cutToClipboard;
|
|
|
|
// Miscellaneous
|
|
static TOOL_ACTION switchCursor;
|
|
static TOOL_ACTION switchUnits;
|
|
static TOOL_ACTION updateUnits;
|
|
static TOOL_ACTION deleteItemCursor;
|
|
static TOOL_ACTION refreshPreview;
|
|
|
|
// Net highlighting
|
|
static TOOL_ACTION highlightNet;
|
|
static TOOL_ACTION highlightNetSelection;
|
|
static TOOL_ACTION highlightNetCursor;
|
|
|
|
///> @copydoc COMMON_ACTIONS::TranslateLegacyId()
|
|
virtual OPT<TOOL_EVENT> TranslateLegacyId( int aId ) override;
|
|
|
|
///> @copydoc COMMON_ACTIONS::RegisterAllTools()
|
|
virtual void RegisterAllTools( TOOL_MANAGER* aToolManager ) override;
|
|
};
|
|
|
|
#endif
|