2014-07-09 11:50:27 +00:00
|
|
|
/*
|
|
|
|
* This program source code file is part of KiCad, a free EDA CAD application.
|
|
|
|
*
|
|
|
|
* Copyright (C) 2014 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 PCB_EDITOR_CONTROL_H
|
|
|
|
#define PCB_EDITOR_CONTROL_H
|
|
|
|
|
2019-05-12 11:49:58 +00:00
|
|
|
#include <tools/pcb_tool_base.h>
|
2018-02-11 01:15:16 +00:00
|
|
|
#include <tool/tool_menu.h>
|
2014-07-09 11:50:27 +00:00
|
|
|
|
2015-06-18 15:51:54 +00:00
|
|
|
namespace KIGFX {
|
|
|
|
class ORIGIN_VIEWITEM;
|
|
|
|
}
|
2015-07-24 07:42:46 +00:00
|
|
|
|
2014-07-09 11:50:27 +00:00
|
|
|
class PCB_EDIT_FRAME;
|
|
|
|
|
|
|
|
/**
|
2014-07-09 14:57:01 +00:00
|
|
|
* Class PCB_EDITOR_CONTROL
|
2014-07-09 11:50:27 +00:00
|
|
|
*
|
2014-07-09 14:57:01 +00:00
|
|
|
* Handles actions specific to the board editor in pcbnew.
|
2014-07-09 11:50:27 +00:00
|
|
|
*/
|
2019-08-12 14:41:45 +00:00
|
|
|
class PCB_EDITOR_CONTROL : public PCB_TOOL_BASE
|
2014-07-09 11:50:27 +00:00
|
|
|
{
|
|
|
|
public:
|
|
|
|
PCB_EDITOR_CONTROL();
|
2015-06-18 15:51:54 +00:00
|
|
|
~PCB_EDITOR_CONTROL();
|
2014-07-09 11:50:27 +00:00
|
|
|
|
|
|
|
/// @copydoc TOOL_INTERACTIVE::Reset()
|
2016-09-24 18:53:15 +00:00
|
|
|
void Reset( RESET_REASON aReason ) override;
|
2014-07-09 11:50:27 +00:00
|
|
|
|
|
|
|
/// @copydoc TOOL_INTERACTIVE::Init()
|
2016-09-24 18:53:15 +00:00
|
|
|
bool Init() override;
|
2014-07-09 11:50:27 +00:00
|
|
|
|
2019-05-26 15:36:40 +00:00
|
|
|
int New( const TOOL_EVENT& aEvent );
|
|
|
|
int Open( const TOOL_EVENT& aEvent );
|
|
|
|
int Save( const TOOL_EVENT& aEvent );
|
|
|
|
int SaveAs( const TOOL_EVENT& aEvent );
|
|
|
|
int SaveCopyAs( const TOOL_EVENT& aEvent );
|
|
|
|
int PageSettings( const TOOL_EVENT& aEvent );
|
|
|
|
int Plot( const TOOL_EVENT& aEvent );
|
2019-06-04 20:59:59 +00:00
|
|
|
|
|
|
|
int BoardSetup( const TOOL_EVENT& aEvent );
|
|
|
|
int ImportNetlist( const TOOL_EVENT& aEvent );
|
|
|
|
int ImportSpecctraSession( const TOOL_EVENT& aEvent );
|
|
|
|
int ExportSpecctraDSN( const TOOL_EVENT& aEvent );
|
|
|
|
int GenerateDrillFiles( const TOOL_EVENT& aEvent );
|
|
|
|
int GeneratePosFile( const TOOL_EVENT& aEvent );
|
|
|
|
int GenerateFabFiles( const TOOL_EVENT& aEvent );
|
2019-05-26 15:36:40 +00:00
|
|
|
|
2019-06-03 13:49:17 +00:00
|
|
|
int UpdatePCBFromSchematic( const TOOL_EVENT& aEvent );
|
2019-07-08 23:43:08 +00:00
|
|
|
int ShowEeschema( const TOOL_EVENT& aEvent );
|
2019-06-04 21:29:51 +00:00
|
|
|
int ToggleLayersManager( const TOOL_EVENT& aEvent );
|
|
|
|
int ToggleMicrowaveToolbar( const TOOL_EVENT& aEvent );
|
2019-06-03 13:49:17 +00:00
|
|
|
int TogglePythonConsole( const TOOL_EVENT& aEvent );
|
|
|
|
|
2014-07-09 11:50:27 +00:00
|
|
|
// Track & via size control
|
2015-02-14 20:28:47 +00:00
|
|
|
int TrackWidthInc( const TOOL_EVENT& aEvent );
|
|
|
|
int TrackWidthDec( const TOOL_EVENT& aEvent );
|
|
|
|
int ViaSizeInc( const TOOL_EVENT& aEvent );
|
|
|
|
int ViaSizeDec( const TOOL_EVENT& aEvent );
|
2014-07-09 11:50:27 +00:00
|
|
|
|
2014-07-09 14:57:01 +00:00
|
|
|
// Zone actions
|
2015-06-19 15:32:33 +00:00
|
|
|
int ZoneMerge( const TOOL_EVENT& aEvent );
|
2014-07-09 14:57:01 +00:00
|
|
|
|
2017-02-06 03:45:56 +00:00
|
|
|
///> Duplicates a zone onto a layer (prompts for new layer)
|
|
|
|
int ZoneDuplicate( const TOOL_EVENT& aEvent );
|
|
|
|
|
2015-03-10 15:58:26 +00:00
|
|
|
/**
|
|
|
|
* Function PlaceTarget()
|
|
|
|
* Allows user to place a layer alignment target.
|
|
|
|
*/
|
|
|
|
int PlaceTarget( const TOOL_EVENT& aEvent );
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Function PlaceModule()
|
|
|
|
* Displays a dialog to select a module to be added and allows the user to set its position.
|
|
|
|
*/
|
|
|
|
int PlaceModule( const TOOL_EVENT& aEvent );
|
|
|
|
|
2016-05-09 08:29:06 +00:00
|
|
|
///> Toggles 'lock' property for selected items.
|
|
|
|
int ToggleLockSelected( const TOOL_EVENT& aEvent );
|
|
|
|
|
|
|
|
///> Locks selected items.
|
|
|
|
int LockSelected( const TOOL_EVENT& aEvent );
|
|
|
|
|
|
|
|
///> Unlocks selected items.
|
|
|
|
int UnlockSelected( const TOOL_EVENT& aEvent );
|
2015-09-03 15:35:41 +00:00
|
|
|
|
2018-01-24 10:19:33 +00:00
|
|
|
///> Runs the drill origin tool for setting the origin for drill and pick-and-place files.
|
2015-06-18 15:51:51 +00:00
|
|
|
int DrillOrigin( const TOOL_EVENT& aEvent );
|
|
|
|
|
2018-01-24 10:19:33 +00:00
|
|
|
///> Low-level access (below undo) to setting the drill origin
|
2019-06-12 22:04:00 +00:00
|
|
|
static void DoSetDrillOrigin( KIGFX::VIEW* aView, PCB_BASE_FRAME* aFrame,
|
2018-01-24 10:19:33 +00:00
|
|
|
BOARD_ITEM* aItem, const VECTOR2D& aPoint );
|
|
|
|
|
2019-06-03 20:06:58 +00:00
|
|
|
int FlipPcbView( const TOOL_EVENT& aEvent );
|
|
|
|
|
2017-08-01 13:20:40 +00:00
|
|
|
private:
|
2019-08-12 14:41:45 +00:00
|
|
|
///> How to modify a property for selected items.
|
|
|
|
enum MODIFY_MODE { ON, OFF, TOGGLE };
|
2017-08-01 13:20:40 +00:00
|
|
|
|
2019-08-12 14:41:45 +00:00
|
|
|
int modifyLockSelected( MODIFY_MODE aMode );
|
2017-08-01 13:20:40 +00:00
|
|
|
|
2014-07-09 11:50:27 +00:00
|
|
|
///> Sets up handlers for various events.
|
2017-07-31 12:30:51 +00:00
|
|
|
void setTransitions() override;
|
2014-07-09 11:50:27 +00:00
|
|
|
|
2019-08-12 14:41:45 +00:00
|
|
|
private:
|
|
|
|
PCB_EDIT_FRAME* m_frame; ///> Pointer to the currently used edit frame.
|
2015-03-10 15:58:26 +00:00
|
|
|
|
2019-04-21 23:45:34 +00:00
|
|
|
std::unique_ptr<KIGFX::ORIGIN_VIEWITEM> m_placeOrigin; ///> Place & drill origin marker
|
2015-06-18 15:51:54 +00:00
|
|
|
|
2019-08-12 14:41:45 +00:00
|
|
|
static const int WIDTH_STEP; ///> How does line width change after one -/+ key press.
|
2014-07-09 11:50:27 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
#endif
|