/* * This program source code file is part of KiCad, a free EDA CAD application. * * Copyright (C) 2017 Jon Evans * Copyright (C) 2017 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 3 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, see . */ #ifndef __GERBVIEW_ACTIONS_H #define __GERBVIEW_ACTIONS_H #include #include #include class TOOL_EVENT; class TOOL_MANAGER; /** * Class GERBVIEW_ACTIONS * * Gathers all the actions that are shared by tools. The instance of GERBVIEW_ACTIONS is created * inside of ACTION_MANAGER object that registers the actions. */ class GERBVIEW_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; /// Unselects an item (specified as the event parameter). static TOOL_ACTION unselectItem; /// Activation of the edit tool static TOOL_ACTION properties; static TOOL_ACTION measureTool; // Display modes static TOOL_ACTION linesDisplayOutlines; static TOOL_ACTION flashedDisplayOutlines; static TOOL_ACTION polygonsDisplayOutlines; static TOOL_ACTION negativeObjectDisplay; static TOOL_ACTION dcodeDisplay; // Layer control static TOOL_ACTION layerPrev; static TOOL_ACTION layerNext; static TOOL_ACTION layerAlphaInc; static TOOL_ACTION layerAlphaDec; static TOOL_ACTION layerToggle; static TOOL_ACTION layerChanged; // notification // Miscellaneous static TOOL_ACTION selectionTool; static TOOL_ACTION zoomTool; static TOOL_ACTION showHelp; // Highlighting static TOOL_ACTION highlightClear; static TOOL_ACTION highlightNet; static TOOL_ACTION highlightComponent; static TOOL_ACTION highlightAttribute; ///> @copydoc COMMON_ACTIONS::TranslateLegacyId() virtual OPT TranslateLegacyId( int aId ) override; }; #endif // __GERBVIEW_ACTIONS_H