2013-08-02 16:46:53 +02:00
|
|
|
/*
|
|
|
|
* This program source code file is part of KiCad, a free EDA CAD application.
|
|
|
|
*
|
|
|
|
* Copyright (C) 2013 CERN
|
2025-01-01 13:30:11 -08:00
|
|
|
* Copyright The KiCad Developers, see AUTHORS.txt for contributors.
|
2020-12-26 19:41:04 -05:00
|
|
|
*
|
2013-08-02 16:46:53 +02:00
|
|
|
* @author Tomasz Wlostowski <tomasz.wlostowski@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
|
|
|
|
*/
|
|
|
|
|
2024-01-05 14:19:54 +00:00
|
|
|
#ifndef TOOL_DISPATCHER_H
|
|
|
|
#define TOOL_DISPATCHER_H
|
2013-08-02 16:46:53 +02:00
|
|
|
|
|
|
|
#include <vector>
|
2014-07-09 11:22:42 +02:00
|
|
|
#include <wx/event.h>
|
2021-06-06 18:26:26 +01:00
|
|
|
#include <tool/tool_event.h> // Needed for MD_ constants
|
2013-08-02 16:46:53 +02:00
|
|
|
|
|
|
|
class TOOL_MANAGER;
|
|
|
|
class PCB_BASE_FRAME;
|
2017-02-21 13:42:08 +01:00
|
|
|
class ACTIONS;
|
2024-01-05 14:19:54 +00:00
|
|
|
class ACTION_MENU;
|
2013-08-02 16:46:53 +02:00
|
|
|
|
2013-10-14 20:40:36 +02:00
|
|
|
namespace KIGFX
|
|
|
|
{
|
2013-10-14 16:13:35 +02:00
|
|
|
class VIEW;
|
2017-11-02 21:41:29 +01:00
|
|
|
}
|
2013-08-02 16:46:53 +02:00
|
|
|
|
2013-10-14 13:43:57 +02:00
|
|
|
/**
|
2013-08-02 16:46:53 +02:00
|
|
|
* - takes wx events,
|
2013-09-27 18:51:21 +02:00
|
|
|
* - fixes all wx quirks (mouse warping, panning, ordering problems, etc)
|
2013-08-02 16:46:53 +02:00
|
|
|
* - translates coordinates to world space
|
2020-12-26 19:41:04 -05:00
|
|
|
* - low-level input conditioning (drag/click threshold), updating mouse position during
|
|
|
|
* view auto-scroll/pan.
|
2013-09-27 18:51:21 +02:00
|
|
|
* - issues TOOL_EVENTS to the tool manager
|
2013-08-02 16:46:53 +02:00
|
|
|
*/
|
2014-07-09 11:22:42 +02:00
|
|
|
class TOOL_DISPATCHER : public wxEvtHandler
|
2013-08-02 16:46:53 +02:00
|
|
|
{
|
2013-08-06 10:30:09 +02:00
|
|
|
public:
|
|
|
|
/**
|
2020-12-26 19:41:04 -05:00
|
|
|
* @param aToolMgr: tool manager instance the events will be sent to.
|
2013-08-06 10:30:09 +02:00
|
|
|
*/
|
2021-03-27 20:02:34 +00:00
|
|
|
TOOL_DISPATCHER( TOOL_MANAGER* aToolMgr );
|
2014-11-02 17:25:04 +01:00
|
|
|
|
2013-08-06 10:30:09 +02:00
|
|
|
virtual ~TOOL_DISPATCHER();
|
|
|
|
|
2013-09-27 16:23:43 +02:00
|
|
|
/**
|
2020-12-26 19:41:04 -05:00
|
|
|
* Bring the dispatcher to its initial state.
|
2013-09-27 16:23:43 +02:00
|
|
|
*/
|
2013-08-06 10:30:09 +02:00
|
|
|
virtual void ResetState();
|
2013-09-27 16:23:43 +02:00
|
|
|
|
|
|
|
/**
|
2020-12-26 19:41:04 -05:00
|
|
|
* Process wxEvents (mostly UI events), translate them to TOOL_EVENTs, and make tools
|
2013-09-27 16:23:43 +02:00
|
|
|
* handle those.
|
2020-07-27 23:42:23 +01:00
|
|
|
*
|
2013-09-27 16:23:43 +02:00
|
|
|
* @param aEvent is the wxWidgets event to be processed.
|
|
|
|
*/
|
2013-08-06 10:30:09 +02:00
|
|
|
virtual void DispatchWxEvent( wxEvent& aEvent );
|
2013-09-27 16:23:43 +02:00
|
|
|
|
2020-05-02 14:36:29 +01:00
|
|
|
/**
|
2020-12-26 19:41:04 -05:00
|
|
|
* Map a wxWidgets key event to a TOOL_EVENT.
|
2020-05-02 14:36:29 +01:00
|
|
|
*/
|
2022-08-25 15:50:47 -07:00
|
|
|
std::optional<TOOL_EVENT> GetToolEvent( wxKeyEvent* aKeyEvent, bool* aSpecialKeyFlag );
|
2020-05-02 14:36:29 +01:00
|
|
|
|
2024-01-05 14:19:54 +00:00
|
|
|
private:
|
2025-01-04 09:21:11 -05:00
|
|
|
/// Handles mouse related events (click, motion, dragging).
|
2013-08-21 17:37:27 +02:00
|
|
|
bool handleMouseButton( wxEvent& aEvent, int aIndex, bool aMotion );
|
2013-08-06 10:30:09 +02:00
|
|
|
|
2025-01-04 09:21:11 -05:00
|
|
|
/// Returns the instance of VIEW, used by the application.
|
2024-01-05 14:19:54 +00:00
|
|
|
KIGFX::VIEW* getView();
|
|
|
|
|
2025-09-10 18:10:43 +02:00
|
|
|
/// Returns the state of key modifiers (Alt, Ctrl and so on) as OR'ed list
|
|
|
|
/// of bits (MD_CTRL, MD_ALT ...)
|
|
|
|
static int decodeModifiers( const wxKeyboardState* aState );
|
2013-08-06 10:30:09 +02:00
|
|
|
|
2024-01-05 14:19:54 +00:00
|
|
|
private:
|
2025-01-04 09:21:11 -05:00
|
|
|
/// The time threshold for a mouse button press that distinguishes between a single mouse
|
|
|
|
/// click and a beginning of drag event (expressed in milliseconds).
|
2024-01-05 14:19:54 +00:00
|
|
|
static const int DragTimeThreshold = 300;
|
|
|
|
|
2025-01-04 09:21:11 -05:00
|
|
|
/// The distance threshold for mouse cursor that distinguishes between a single mouse click
|
|
|
|
/// and a beginning of drag event (expressed in screen pixels).
|
|
|
|
/// System drag preferences take precedence if available
|
2024-01-05 14:19:54 +00:00
|
|
|
static const int DragDistanceThreshold = 8;
|
2013-09-27 16:23:43 +02:00
|
|
|
|
2025-01-04 09:21:11 -05:00
|
|
|
int m_sysDragMinX; ///< Minimum distance before drag is activated in the X axis
|
2024-01-05 14:19:54 +00:00
|
|
|
int m_sysDragMinY; ///< Maximum distance before drag is activated in the Y axis
|
2013-09-27 16:23:43 +02:00
|
|
|
|
2024-01-05 14:19:54 +00:00
|
|
|
VECTOR2D m_lastMousePos; ///< The last mouse cursor position (in world coordinates).
|
|
|
|
VECTOR2D m_lastMousePosScreen; ///< The last mouse cursor position (in screen coordinates).
|
2021-10-06 14:50:56 -04:00
|
|
|
|
2025-01-04 09:21:11 -05:00
|
|
|
/// State of mouse buttons.
|
2024-01-05 14:19:54 +00:00
|
|
|
struct BUTTON_STATE;
|
2013-10-14 20:40:36 +02:00
|
|
|
std::vector<BUTTON_STATE*> m_buttons;
|
2013-08-02 16:46:53 +02:00
|
|
|
|
2025-01-04 09:21:11 -05:00
|
|
|
/// Instance of tool manager that cooperates with the dispatcher.
|
2013-08-21 17:37:27 +02:00
|
|
|
TOOL_MANAGER* m_toolMgr;
|
2013-08-02 16:46:53 +02:00
|
|
|
};
|
|
|
|
|
2024-01-05 14:19:54 +00:00
|
|
|
#endif // TOOL_DISPATCHER_H
|