kicad/include/tool/action_manager.h

109 lines
3.4 KiB
C
Raw Normal View History

2013-09-20 16:21:01 +00:00
/*
* This program source code file is part of KiCad, a free EDA CAD application.
*
* Copyright (C) 2013 CERN
* @author Maciej Suminski <maciej.suminski@cern.ch>
*
* 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 ACTION_MANAGER_H_
#define ACTION_MANAGER_H_
#include <list>
2013-09-20 16:21:01 +00:00
#include <map>
#include <string>
class TOOL_BASE;
class TOOL_MANAGER;
class TOOL_ACTION;
/**
* Class ACTION_MANAGER
*
* Takes care of TOOL_ACTION objects. Registers them and allows to run them using associated
* hot keys, names or ids.
*/
2013-09-20 16:21:01 +00:00
class ACTION_MANAGER
{
public:
/**
* Constructor.
* @param aToolManager is a tool manager instance that is used to pass events to tools.
*/
ACTION_MANAGER( TOOL_MANAGER* aToolManager );
/**
* Destructor.
* Unregisters every registered action.
*/
~ACTION_MANAGER();
2013-09-20 16:21:01 +00:00
/**
* Function RegisterAction()
* Adds a tool action to the manager and sets it up. After that is is possible to invoke
* the action using hotkeys or sending a command event with its name.
2013-09-20 16:21:01 +00:00
* @param aAction: action to be added. Ownership is not transferred.
*/
void RegisterAction( TOOL_ACTION* aAction );
/**
* Function UnregisterAction()
* Removes a tool action from the manager and makes it unavailable for further usage.
2013-09-20 16:21:01 +00:00
* @param aAction: action to be removed.
*/
void UnregisterAction( TOOL_ACTION* aAction );
/**
* Generates an unique ID from for an action with given name.
2013-09-20 16:21:01 +00:00
*/
static int MakeActionId( const std::string& aActionName );
/**
* Function FindAction()
* Finds an action with a given name (if there is one available).
* @param aActionName is the searched action.
* @return Pointer to a TOOL_ACTION object or NULL if there is no such action.
2013-09-20 16:21:01 +00:00
*/
TOOL_ACTION* FindAction( const std::string& aActionName ) const;
2013-09-20 16:21:01 +00:00
/**
* Function RunHotKey()
* Runs an action associated with a hotkey (if there is one available).
2013-12-05 13:48:44 +00:00
* @param aHotKey is the hotkey to be handled.
2013-09-20 16:21:01 +00:00
* @return True if there was an action associated with the hotkey, false otherwise.
*/
bool RunHotKey( int aHotKey ) const;
private:
///> Tool manager needed to run actions
2013-09-20 16:21:01 +00:00
TOOL_MANAGER* m_toolMgr;
///> Map for indexing actions by their IDs
2013-09-20 16:21:01 +00:00
std::map<int, TOOL_ACTION*> m_actionIdIndex;
///> Map for indexing actions by their names
2013-09-20 16:21:01 +00:00
std::map<std::string, TOOL_ACTION*> m_actionNameIndex;
///> Map for indexing actions by their hotkeys
typedef std::map<int, std::list<TOOL_ACTION*> > HOTKEY_LIST;
HOTKEY_LIST m_actionHotKeys;
2013-09-20 16:21:01 +00:00
};
#endif /* ACTION_MANAGER_H_ */