Add global zone fill/unfill to Edit menu

This means if you don't know the hotkey, the tool action can be
reached without having to activate the zone tool.

Fixes: lp:1783250
https://bugs.launchpad.net/kicad/+bug/1783250
This commit is contained in:
John Beard 2018-07-24 20:55:51 +01:00 committed by Maciej Suminski
parent 994a9c5ff8
commit 6df2d69b6e
2 changed files with 21 additions and 0 deletions

View File

@ -485,6 +485,21 @@ void prepareEditMenu( wxMenu* aParentMenu, bool aUseGal )
KiBitmap( swap_layer_xpm ) );
aParentMenu->AppendSeparator();
text = AddHotkeyName( _( "Fill &All Zones" ), g_Board_Editor_Hotkeys_Descr,
HK_ZONE_FILL_OR_REFILL );
AddMenuItem( aParentMenu, ID_POPUP_PCB_FILL_ALL_ZONES,
text, _( "Fill all zones on the board" ),
KiBitmap( fill_zone_xpm ) );
text = AddHotkeyName( _( "&Unfill All Zones" ), g_Board_Editor_Hotkeys_Descr,
HK_ZONE_REMOVE_FILLED );
AddMenuItem( aParentMenu, ID_POPUP_PCB_REMOVE_FILLED_AREAS_IN_ALL_ZONES,
text, _( "Remove fill from all zones on the board" ),
KiBitmap( zone_unfill_xpm ) );
aParentMenu->AppendSeparator();
AddMenuItem( aParentMenu, ID_PCB_GLOBAL_DELETE,
_( "&Global Deletions..." ),
_( "Delete tracks, footprints and graphic items from board" ),

View File

@ -206,6 +206,12 @@ OPT<TOOL_EVENT> PCB_ACTIONS::TranslateLegacyId( int aId )
case ID_EDIT_PASTE:
return PCB_ACTIONS::pasteFromClipboard.MakeEvent();
case ID_POPUP_PCB_FILL_ALL_ZONES:
return PCB_ACTIONS::zoneFillAll.MakeEvent();
case ID_POPUP_PCB_REMOVE_FILLED_AREAS_IN_ALL_ZONES:
return PCB_ACTIONS::zoneUnfillAll.MakeEvent();
}
return OPT<TOOL_EVENT>();