2013-08-02 14:46:53 +00:00
|
|
|
/*
|
|
|
|
* This program source code file is part of KiCad, a free EDA CAD application.
|
|
|
|
*
|
2017-01-20 17:33:11 +00:00
|
|
|
* Copyright (C) 2013-2017 CERN
|
2013-08-02 14:46:53 +00:00
|
|
|
* @author Tomasz Wlostowski <tomasz.wlostowski@cern.ch>
|
2015-04-30 08:46:05 +00:00
|
|
|
* @author Maciej Suminski <maciej.suminski@cern.ch>
|
2013-08-02 14:46:53 +00:00
|
|
|
*
|
|
|
|
* 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 __CONTEXT_MENU_H
|
|
|
|
#define __CONTEXT_MENU_H
|
|
|
|
|
2013-09-26 16:38:58 +00:00
|
|
|
#include <map>
|
2015-05-05 18:39:41 +00:00
|
|
|
#include <list>
|
2016-06-29 10:23:11 +00:00
|
|
|
#include <functional>
|
2013-08-02 14:46:53 +00:00
|
|
|
|
2015-05-05 18:39:41 +00:00
|
|
|
#include <wx/menu.h>
|
|
|
|
#include <tool/tool_action.h>
|
|
|
|
|
2013-08-02 14:46:53 +00:00
|
|
|
class TOOL_INTERACTIVE;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Class CONTEXT_MENU
|
|
|
|
*
|
|
|
|
* Defines the structure of a context (usually right-click) popup menu
|
|
|
|
* for a given tool.
|
|
|
|
*/
|
2014-05-13 09:22:51 +00:00
|
|
|
class CONTEXT_MENU : public wxMenu
|
2013-08-02 14:46:53 +00:00
|
|
|
{
|
|
|
|
public:
|
2013-09-27 14:23:43 +00:00
|
|
|
///> Default constructor
|
2013-10-14 11:43:57 +00:00
|
|
|
CONTEXT_MENU();
|
|
|
|
|
2015-04-30 08:46:05 +00:00
|
|
|
virtual ~CONTEXT_MENU();
|
2014-07-09 13:10:32 +00:00
|
|
|
|
2017-01-20 17:33:11 +00:00
|
|
|
CONTEXT_MENU( const CONTEXT_MENU& aMenu ) = delete;
|
|
|
|
CONTEXT_MENU& operator=( const CONTEXT_MENU& aMenu ) = delete;
|
2014-07-09 13:02:56 +00:00
|
|
|
|
2013-10-14 11:43:57 +00:00
|
|
|
/**
|
|
|
|
* Function SetTitle()
|
|
|
|
* Sets title for the context menu. The title is shown as a text label shown on the top of
|
|
|
|
* the menu.
|
|
|
|
* @param aTitle is the new title.
|
|
|
|
*/
|
2016-09-24 18:53:15 +00:00
|
|
|
void SetTitle( const wxString& aTitle ) override;
|
2013-10-14 11:43:57 +00:00
|
|
|
|
2017-01-23 13:47:49 +00:00
|
|
|
/**
|
|
|
|
* Function DisplayTitle()
|
|
|
|
* Decides whether a title for a pop up menu should be displayed.
|
|
|
|
*/
|
|
|
|
void DisplayTitle( bool aDisplay = true );
|
|
|
|
|
2015-04-02 14:09:48 +00:00
|
|
|
/**
|
|
|
|
* Function SetIcon()
|
|
|
|
* Assigns an icon for the entry.
|
|
|
|
* @param aIcon is the icon to be assigned. NULL is used to remove icon.
|
|
|
|
*/
|
2017-10-23 16:48:03 +00:00
|
|
|
void SetIcon( const BITMAP_OPAQUE* aIcon );
|
2015-04-02 14:09:48 +00:00
|
|
|
|
2013-10-14 11:43:57 +00:00
|
|
|
/**
|
|
|
|
* Function Add()
|
|
|
|
* Adds an entry to the menu. After highlighting/selecting the entry, a TOOL_EVENT command is
|
|
|
|
* sent that contains ID of the entry.
|
|
|
|
* @param aLabel is the text label show in the menu.
|
|
|
|
* @param aId is the ID that is sent in the TOOL_EVENT. It should be unique for every entry.
|
2015-04-02 14:09:48 +00:00
|
|
|
* @param aIcon is an optional icon.
|
2013-10-14 11:43:57 +00:00
|
|
|
*/
|
2015-04-30 08:46:04 +00:00
|
|
|
wxMenuItem* Add( const wxString& aLabel, int aId, const BITMAP_OPAQUE* aIcon = NULL );
|
2013-10-14 11:43:57 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Function Add()
|
|
|
|
* Adds an entry to the menu, basing on the TOOL_ACTION object. After selecting the entry,
|
|
|
|
* a TOOL_EVENT command containing name of the action is sent.
|
|
|
|
* @param aAction is the action to be added to menu entry.
|
|
|
|
*/
|
2015-04-30 08:46:04 +00:00
|
|
|
wxMenuItem* Add( const TOOL_ACTION& aAction );
|
2013-10-14 11:43:57 +00:00
|
|
|
|
2015-04-02 14:09:48 +00:00
|
|
|
/**
|
|
|
|
* Function Add()
|
|
|
|
* Adds a context menu as a submenu. The difference between this function and wxMenu::AppendSubMenu()
|
|
|
|
* is the capability to handle icons.
|
|
|
|
* @param aMenu is the submenu to be added.
|
2015-04-30 08:46:04 +00:00
|
|
|
* @param aExpand allows to add all entries from the menu as individual entries rather than
|
|
|
|
* add everything as a submenu.
|
2015-04-02 14:09:48 +00:00
|
|
|
*/
|
2017-01-23 13:47:49 +00:00
|
|
|
std::list<wxMenuItem*> Add( CONTEXT_MENU* aMenu, bool aExpand = false );
|
2015-04-02 14:09:48 +00:00
|
|
|
|
2013-10-14 11:43:57 +00:00
|
|
|
/**
|
|
|
|
* Function Clear()
|
|
|
|
* Removes all the entries from the menu (as well as its title). It leaves the menu in the
|
|
|
|
* initial state.
|
|
|
|
*/
|
|
|
|
void Clear();
|
|
|
|
|
2017-02-08 15:45:56 +00:00
|
|
|
/**
|
|
|
|
* Function HasEnabledItems();
|
|
|
|
*
|
|
|
|
* Returns true if the menu has any enabled items
|
|
|
|
*/
|
|
|
|
bool HasEnabledItems() const;
|
|
|
|
|
2013-11-29 15:45:39 +00:00
|
|
|
/**
|
|
|
|
* Function GetSelected()
|
|
|
|
* Returns the position of selected item. If the returned value is negative, that means that
|
|
|
|
* menu was dismissed.
|
|
|
|
* @return The position of selected item in the context menu.
|
|
|
|
*/
|
2015-04-30 08:46:05 +00:00
|
|
|
inline int GetSelected() const
|
2013-11-29 15:45:39 +00:00
|
|
|
{
|
|
|
|
return m_selected;
|
|
|
|
}
|
|
|
|
|
2015-04-30 08:46:05 +00:00
|
|
|
/**
|
|
|
|
* Function UpdateAll()
|
|
|
|
* Runs update handlers for the menu and its submenus.
|
|
|
|
*/
|
|
|
|
void UpdateAll();
|
|
|
|
|
2015-08-03 09:53:58 +00:00
|
|
|
/**
|
|
|
|
* Function SetTool()
|
|
|
|
* Sets a tool that is the creator of the menu.
|
|
|
|
* @param aTool is the tool that created the menu.
|
|
|
|
*/
|
|
|
|
void SetTool( TOOL_INTERACTIVE* aTool );
|
|
|
|
|
2017-01-20 17:33:11 +00:00
|
|
|
/**
|
|
|
|
* Creates a deep, recursive copy of this CONTEXT_MENU.
|
|
|
|
*/
|
|
|
|
CONTEXT_MENU* Clone() const;
|
|
|
|
|
2015-06-19 15:32:33 +00:00
|
|
|
protected:
|
2017-01-20 17:33:11 +00:00
|
|
|
///> Returns an instance of this class. It has to be overridden in inheriting classes.
|
|
|
|
virtual CONTEXT_MENU* create() const;
|
|
|
|
|
2015-06-19 15:32:33 +00:00
|
|
|
///> Returns an instance of TOOL_MANAGER class.
|
|
|
|
TOOL_MANAGER* getToolManager();
|
|
|
|
|
|
|
|
///> Returns the corresponding wxMenuItem identifier for a TOOL_ACTION object.
|
|
|
|
static inline int getMenuId( const TOOL_ACTION& aAction )
|
|
|
|
{
|
|
|
|
return aAction.GetId() + ACTION_ID;
|
|
|
|
}
|
|
|
|
|
2017-01-20 17:33:11 +00:00
|
|
|
/**
|
|
|
|
* Update menu state stub. It is called before a menu is shown, in order to update its state.
|
|
|
|
* Here you can tick current settings, enable/disable entries, etc.
|
|
|
|
*/
|
|
|
|
virtual void update()
|
|
|
|
{
|
|
|
|
}
|
2015-04-30 08:46:05 +00:00
|
|
|
|
2017-01-20 17:33:11 +00:00
|
|
|
/**
|
|
|
|
* Event handler stub. It should be used if you want to generate a TOOL_EVENT from a wxMenuEvent.
|
|
|
|
* It will be called when a menu entry is clicked.
|
|
|
|
*/
|
|
|
|
virtual OPT_TOOL_EVENT eventHandler( const wxMenuEvent& )
|
|
|
|
{
|
|
|
|
return OPT_TOOL_EVENT();
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Copies another menus data to this instance. Old entries are preserved, and ones form aMenu
|
|
|
|
* are copied.
|
|
|
|
*/
|
|
|
|
void copyFrom( const CONTEXT_MENU& aMenu );
|
|
|
|
|
|
|
|
private:
|
2014-05-13 09:22:51 +00:00
|
|
|
/**
|
2015-04-30 08:46:04 +00:00
|
|
|
* Function appendCopy
|
|
|
|
* Appends a copy of wxMenuItem.
|
2014-05-13 09:22:51 +00:00
|
|
|
*/
|
2015-04-30 08:46:04 +00:00
|
|
|
wxMenuItem* appendCopy( const wxMenuItem* aSource );
|
2013-10-14 11:43:57 +00:00
|
|
|
|
2014-05-13 09:22:51 +00:00
|
|
|
///> Initializes handlers for events.
|
2014-05-13 09:22:51 +00:00
|
|
|
void setupEvents();
|
|
|
|
|
2015-04-30 08:46:05 +00:00
|
|
|
///> The default menu event handler.
|
2015-01-25 18:11:02 +00:00
|
|
|
void onMenuEvent( wxMenuEvent& aEvent );
|
2013-10-14 11:43:57 +00:00
|
|
|
|
2015-05-05 18:39:42 +00:00
|
|
|
///> Updates hot key settings for TOOL_ACTIONs in this menu.
|
|
|
|
void updateHotKeys();
|
|
|
|
|
2015-04-30 08:46:05 +00:00
|
|
|
///> Traverses the submenus tree looking for a submenu capable of handling a particular menu
|
|
|
|
///> event. In case it is handled, it is returned the aToolEvent parameter.
|
|
|
|
void runEventHandlers( const wxMenuEvent& aMenuEvent, OPT_TOOL_EVENT& aToolEvent );
|
|
|
|
|
|
|
|
///> Runs a function on the menu and all its submenus.
|
2016-06-29 10:23:11 +00:00
|
|
|
void runOnSubmenus( std::function<void(CONTEXT_MENU*)> aFunction );
|
2015-04-30 08:46:05 +00:00
|
|
|
|
2017-02-09 20:37:23 +00:00
|
|
|
///> Checks if any of submenus contains a TOOL_ACTION with a specific ID.
|
|
|
|
OPT_TOOL_EVENT findToolAction( int aId );
|
|
|
|
|
2013-10-14 11:43:57 +00:00
|
|
|
///> Flag indicating that the menu title was set up.
|
2017-01-23 13:47:49 +00:00
|
|
|
bool m_titleDisplayed;
|
|
|
|
|
|
|
|
///> Menu title
|
|
|
|
wxString m_title;
|
2013-10-14 11:43:57 +00:00
|
|
|
|
2013-11-29 15:45:39 +00:00
|
|
|
///> Stores the id number of selected item.
|
|
|
|
int m_selected;
|
|
|
|
|
2013-10-14 11:43:57 +00:00
|
|
|
///> Creator of the menu
|
|
|
|
TOOL_INTERACTIVE* m_tool;
|
2013-09-26 16:38:58 +00:00
|
|
|
|
2015-04-30 08:46:04 +00:00
|
|
|
///> Menu items with ID higher than that are considered TOOL_ACTIONs
|
2017-01-20 17:33:11 +00:00
|
|
|
static const int ACTION_ID = 2000;
|
2013-09-26 16:38:58 +00:00
|
|
|
|
2015-04-30 08:46:04 +00:00
|
|
|
///> Associates tool actions with menu item IDs. Non-owning.
|
2013-09-26 16:38:58 +00:00
|
|
|
std::map<int, const TOOL_ACTION*> m_toolActions;
|
2014-05-13 09:22:51 +00:00
|
|
|
|
2015-04-30 08:46:05 +00:00
|
|
|
///> List of submenus.
|
|
|
|
std::list<CONTEXT_MENU*> m_submenus;
|
|
|
|
|
2015-04-30 08:46:04 +00:00
|
|
|
///> Optional icon
|
2015-04-02 14:09:48 +00:00
|
|
|
const BITMAP_OPAQUE* m_icon;
|
|
|
|
|
2014-05-31 14:04:10 +00:00
|
|
|
friend class TOOL_INTERACTIVE;
|
2013-08-02 14:46:53 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
#endif
|