2013-07-19 18:27:22 +00:00
|
|
|
/**
|
|
|
|
* @file pagelayout_editor/onrightclick.cpp
|
|
|
|
* @brief functions called on rigth click mouse event
|
|
|
|
*/
|
|
|
|
|
|
|
|
/*
|
|
|
|
* This program source code file is part of KiCad, a free EDA CAD application.
|
|
|
|
*
|
2017-06-10 08:07:11 +00:00
|
|
|
* Copyright (C) 2017 Jean-Pierre Charras, jp.charras at wanadoo.fr
|
2013-07-19 18:27:22 +00:00
|
|
|
* Copyright (C) 2013 CERN
|
|
|
|
*
|
|
|
|
* 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
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include <fctsys.h>
|
|
|
|
#include <class_drawpanel.h>
|
|
|
|
#include <pl_editor_id.h>
|
|
|
|
|
|
|
|
#include <pl_editor_frame.h>
|
|
|
|
#include <design_tree_frame.h>
|
|
|
|
#include <properties_frame.h>
|
|
|
|
#include <menus_helpers.h>
|
|
|
|
#include <worksheet_shape_builder.h>
|
2018-01-29 08:39:13 +00:00
|
|
|
#include <worksheet_dataitem.h>
|
2013-07-24 15:11:35 +00:00
|
|
|
#include <hotkeys.h>
|
2018-08-19 19:49:35 +00:00
|
|
|
#include <kicad_device_context.h>
|
2013-07-19 18:27:22 +00:00
|
|
|
|
2013-08-13 17:51:22 +00:00
|
|
|
// Helper function to add menuitems relative to items creation
|
|
|
|
void AddNewItemsCommand( wxMenu* aMainMenu )
|
|
|
|
{
|
2018-02-09 16:28:33 +00:00
|
|
|
AddMenuItem( aMainMenu, ID_POPUP_ITEM_ADD_LINE, _( "Add Line..." ),
|
2013-08-13 17:51:22 +00:00
|
|
|
KiBitmap( add_dashed_line_xpm ) );
|
2018-02-09 16:28:33 +00:00
|
|
|
AddMenuItem( aMainMenu, ID_POPUP_ITEM_ADD_RECT, _( "Add Rectangle..." ),
|
2013-08-13 17:51:22 +00:00
|
|
|
KiBitmap( add_rectangle_xpm ) );
|
2018-02-09 16:28:33 +00:00
|
|
|
AddMenuItem( aMainMenu, ID_POPUP_ITEM_ADD_TEXT, _( "Add Text..." ),
|
2017-06-02 09:51:11 +00:00
|
|
|
KiBitmap( text_xpm ) );
|
2018-02-09 16:28:33 +00:00
|
|
|
AddMenuItem( aMainMenu, ID_POPUP_ITEM_ADD_BITMAP, _( "Add Bitmap..." ),
|
2013-10-18 17:38:03 +00:00
|
|
|
KiBitmap( image_xpm ) );
|
2017-08-29 15:07:48 +00:00
|
|
|
AddMenuItem( aMainMenu, ID_POPUP_ITEM_APPEND_PAGE_LAYOUT,
|
2018-02-09 16:28:33 +00:00
|
|
|
_( "Append Existing Page Layout Design File..." ),
|
2017-08-29 15:07:48 +00:00
|
|
|
KiBitmap( pagelayout_load_xpm ) );
|
2013-08-13 17:51:22 +00:00
|
|
|
}
|
2013-07-19 18:27:22 +00:00
|
|
|
|
|
|
|
/* Prepare the right-click pullup menu.
|
|
|
|
* The menu already has a list of zoom commands.
|
|
|
|
*/
|
|
|
|
bool PL_EDITOR_FRAME::OnRightClick( const wxPoint& aPosition, wxMenu* aPopMenu )
|
|
|
|
{
|
|
|
|
bool busy = GetScreen()->GetCurItem() != NULL;
|
2018-03-11 17:38:27 +00:00
|
|
|
bool blockActive = GetScreen()->IsBlockActive();
|
2013-07-24 15:11:35 +00:00
|
|
|
wxString msg;
|
2013-07-19 18:27:22 +00:00
|
|
|
|
2018-03-11 17:38:27 +00:00
|
|
|
if( blockActive )
|
|
|
|
{
|
|
|
|
|
|
|
|
AddMenuItem( aPopMenu, ID_POPUP_CANCEL_CURRENT_COMMAND, _( "Cancel Block" ),
|
|
|
|
KiBitmap( cancel_xpm ) );
|
|
|
|
aPopMenu->AppendSeparator();
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2018-04-02 06:30:24 +00:00
|
|
|
// If the tool ID_ZOOM_SELECTION is currently in use, add a close command menu
|
2017-06-10 08:07:11 +00:00
|
|
|
if( GetToolId() == ID_ZOOM_SELECTION && !busy )
|
|
|
|
{
|
2018-04-02 06:30:24 +00:00
|
|
|
AddMenuItem( aPopMenu, ID_POPUP_CLOSE_CURRENT_TOOL, _( "End Tool" ),
|
2017-06-10 08:07:11 +00:00
|
|
|
KiBitmap( cursor_xpm ) );
|
|
|
|
aPopMenu->AppendSeparator();
|
|
|
|
}
|
|
|
|
|
2013-07-19 18:27:22 +00:00
|
|
|
if( ! busy ) // No item currently edited
|
|
|
|
{
|
2018-08-19 19:49:35 +00:00
|
|
|
INSTALL_UNBUFFERED_DC( dc, m_canvas );
|
2013-07-24 15:11:35 +00:00
|
|
|
WORKSHEET_DATAITEM* old_item = m_treePagelayout->GetPageLayoutSelectedItem();
|
2018-08-19 19:49:35 +00:00
|
|
|
WORKSHEET_DATAITEM* item = Locate( &dc, aPosition );
|
2013-07-19 18:27:22 +00:00
|
|
|
|
2013-07-24 15:11:35 +00:00
|
|
|
if( item && old_item != item )
|
2013-07-19 18:27:22 +00:00
|
|
|
{
|
|
|
|
m_treePagelayout->SelectCell( item );
|
|
|
|
m_canvas->Refresh();
|
|
|
|
}
|
|
|
|
|
|
|
|
// Add menus to edit and delete the item
|
2013-07-24 15:11:35 +00:00
|
|
|
if( item )
|
2013-07-19 18:27:22 +00:00
|
|
|
{
|
2013-07-24 15:11:35 +00:00
|
|
|
if( (item->GetFlags() & LOCATE_STARTPOINT) )
|
|
|
|
{
|
2015-04-19 18:41:57 +00:00
|
|
|
msg = AddHotkeyName( _( "Move Start Point" ), PlEditorHokeysDescr,
|
2013-07-24 15:11:35 +00:00
|
|
|
HK_MOVE_START_POINT );
|
|
|
|
AddMenuItem( aPopMenu, ID_POPUP_ITEM_MOVE_START_POINT, msg,
|
2013-07-19 18:27:22 +00:00
|
|
|
KiBitmap( move_xpm ) );
|
2013-07-24 15:11:35 +00:00
|
|
|
}
|
2013-07-19 18:27:22 +00:00
|
|
|
|
|
|
|
if( (item->GetFlags() & LOCATE_ENDPOINT ) )
|
2013-07-24 15:11:35 +00:00
|
|
|
{
|
2015-04-19 18:41:57 +00:00
|
|
|
msg = AddHotkeyName( _( "Move End Point" ), PlEditorHokeysDescr,
|
2013-07-24 15:11:35 +00:00
|
|
|
HK_MOVE_END_POINT );
|
|
|
|
AddMenuItem( aPopMenu, ID_POPUP_ITEM_MOVE_END_POINT, msg,
|
2013-07-19 18:27:22 +00:00
|
|
|
KiBitmap( move_xpm ) );
|
2013-07-24 15:11:35 +00:00
|
|
|
}
|
2013-07-19 18:27:22 +00:00
|
|
|
|
2015-04-19 18:41:57 +00:00
|
|
|
msg = AddHotkeyName( _( "Move Item" ), PlEditorHokeysDescr,
|
2013-07-24 15:11:35 +00:00
|
|
|
HK_MOVE_ITEM );
|
|
|
|
AddMenuItem( aPopMenu, ID_POPUP_ITEM_MOVE, msg,
|
2013-07-19 18:27:22 +00:00
|
|
|
KiBitmap( move_xpm ) );
|
|
|
|
aPopMenu->AppendSeparator();
|
|
|
|
|
2015-04-19 18:41:57 +00:00
|
|
|
msg = AddHotkeyName( _( "Delete" ), PlEditorHokeysDescr,
|
2013-07-24 15:11:35 +00:00
|
|
|
HK_DELETE_ITEM );
|
|
|
|
AddMenuItem( aPopMenu, ID_POPUP_ITEM_DELETE, msg, KiBitmap( delete_xpm ) );
|
2013-07-19 18:27:22 +00:00
|
|
|
aPopMenu->AppendSeparator();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
else // An item is currently in edit
|
|
|
|
{
|
2015-04-19 18:41:57 +00:00
|
|
|
msg = AddHotkeyName( _( "Place Item" ), PlEditorHokeysDescr,
|
2014-04-03 07:40:55 +00:00
|
|
|
HK_PLACE_ITEM );
|
|
|
|
AddMenuItem( aPopMenu, ID_POPUP_ITEM_PLACE, msg,
|
2013-07-19 18:27:22 +00:00
|
|
|
KiBitmap( move_xpm ) );
|
|
|
|
AddMenuItem( aPopMenu, ID_POPUP_ITEM_PLACE_CANCEL, _( "Cancel" ),
|
|
|
|
KiBitmap( cancel_xpm ) );
|
|
|
|
aPopMenu->AppendSeparator();
|
|
|
|
}
|
|
|
|
|
|
|
|
if( ! busy )
|
|
|
|
{
|
2013-08-13 17:51:22 +00:00
|
|
|
AddNewItemsCommand( aPopMenu );
|
2013-07-19 18:27:22 +00:00
|
|
|
aPopMenu->AppendSeparator();
|
|
|
|
}
|
|
|
|
|
|
|
|
return true;
|
|
|
|
}
|