Hotkey lists displayed after pressing the Help button (GAL).
This commit is contained in:
parent
f63170ca84
commit
8964ff8922
|
@ -327,6 +327,12 @@ public:
|
||||||
///> @copydoc EDA_BASE_FRAME::WriteHotkeyConfig
|
///> @copydoc EDA_BASE_FRAME::WriteHotkeyConfig
|
||||||
int WriteHotkeyConfig( struct EDA_HOTKEY_CONFIG* aDescList, wxString* aFullFileName = NULL );
|
int WriteHotkeyConfig( struct EDA_HOTKEY_CONFIG* aDescList, wxString* aFullFileName = NULL );
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Function GetHotkeyConfig()
|
||||||
|
* Returns a structure containing currently used hotkey mapping.
|
||||||
|
*/
|
||||||
|
EDA_HOTKEY_CONFIG* GetHotkeyConfig() const { return m_hotkeysDescrList; }
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Function GetHotKeyDescription
|
* Function GetHotKeyDescription
|
||||||
* Searches lists of hot key identifiers (HK_xxx) used in the frame to find a matching
|
* Searches lists of hot key identifiers (HK_xxx) used in the frame to find a matching
|
||||||
|
|
|
@ -446,7 +446,7 @@ TOOL_ACTION COMMON_ACTIONS::deleteItemCursor( "pcbnew.Control.deleteItemCursor",
|
||||||
"", "" );
|
"", "" );
|
||||||
|
|
||||||
TOOL_ACTION COMMON_ACTIONS::showHelp( "pcbnew.Control.showHelp",
|
TOOL_ACTION COMMON_ACTIONS::showHelp( "pcbnew.Control.showHelp",
|
||||||
AS_GLOBAL, '?',
|
AS_GLOBAL, TOOL_ACTION::LegacyHotKey( HK_HELP ),
|
||||||
"", "" );
|
"", "" );
|
||||||
|
|
||||||
TOOL_ACTION COMMON_ACTIONS::toBeDone( "pcbnew.Control.toBeDone",
|
TOOL_ACTION COMMON_ACTIONS::toBeDone( "pcbnew.Control.toBeDone",
|
||||||
|
|
|
@ -36,8 +36,9 @@
|
||||||
#include <class_draw_panel_gal.h>
|
#include <class_draw_panel_gal.h>
|
||||||
#include <class_pcb_screen.h>
|
#include <class_pcb_screen.h>
|
||||||
#include <confirm.h>
|
#include <confirm.h>
|
||||||
#include <tool/tool_manager.h>
|
#include <hotkeys_basic.h>
|
||||||
|
|
||||||
|
#include <tool/tool_manager.h>
|
||||||
#include <gal/graphics_abstraction_layer.h>
|
#include <gal/graphics_abstraction_layer.h>
|
||||||
#include <view/view_controls.h>
|
#include <view/view_controls.h>
|
||||||
#include <pcb_painter.h>
|
#include <pcb_painter.h>
|
||||||
|
@ -559,8 +560,7 @@ int PCBNEW_CONTROL::DeleteItemCursor( const TOOL_EVENT& aEvent )
|
||||||
|
|
||||||
int PCBNEW_CONTROL::ShowHelp( const TOOL_EVENT& aEvent )
|
int PCBNEW_CONTROL::ShowHelp( const TOOL_EVENT& aEvent )
|
||||||
{
|
{
|
||||||
// TODO
|
DisplayHotkeyList( m_frame, m_frame->GetHotkeyConfig() );
|
||||||
DisplayInfoMessage( m_frame, _( "Not implemented yet." ) );
|
|
||||||
|
|
||||||
return 0;
|
return 0;
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue