You can not select more than 25 topics
			Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
		
		
		
		
		
			
		
			
				
					
					
						
							107 lines
						
					
					
						
							3.6 KiB
						
					
					
				
			
		
		
		
			
			
			
		
		
	
	
							107 lines
						
					
					
						
							3.6 KiB
						
					
					
				| /* | |
|  * This program source code file is part of KiCad, a free EDA CAD application. | |
|  * | |
|  * Copyright (C) 2019 KiCad Developers, see AUTHORS.txt for contributors. | |
|  * | |
|  * 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 __BOARD_STATISTICS_TOOL_H | |
| #define __BOARD_STATISTICS_TOOL_H | |
|  | |
| 
 | |
| #include <dialogs/dialog_board_statistics.h> | |
| #include <pcb_edit_frame.h> | |
| #include <tools/pcb_actions.h> | |
| #include <tools/pcb_tool_base.h> | |
|  | |
| 
 | |
| /** | |
|  * Class PCB_INSPECTION_TOOL | |
|  * | |
|  * Tool for pcb inspection. | |
|  */ | |
| class PCB_INSPECTION_TOOL : public wxEvtHandler, public PCB_TOOL_BASE | |
| { | |
| public: | |
|     PCB_INSPECTION_TOOL(); | |
| 
 | |
|     /// @copydoc TOOL_INTERACTIVE::Init() | |
|     bool Init() override; | |
| 
 | |
|     /// @copydoc TOOL_INTERACTIVE::Reset() | |
|     void Reset( RESET_REASON aReason ) override; | |
| 
 | |
|     /** | |
|      * Function ShowStatisticDialog() | |
|      * | |
|      * Shows dialog with board statistics | |
|      */ | |
|     int ShowStatisticsDialog( const TOOL_EVENT& aEvent ); | |
| 
 | |
|     ///> Notifies eeschema about the selected item. | |
|     int CrossProbePcbToSch( const TOOL_EVENT& aEvent ); | |
| 
 | |
|     ///> Highlights net belonging to the item under the cursor. | |
|     int HighlightNet( const TOOL_EVENT& aEvent ); | |
| 
 | |
|     ///> Clears all board highlights | |
|     int ClearHighlight( const TOOL_EVENT& aEvent ); | |
| 
 | |
|     ///> Launches a tool to pick the item whose net is going to be highlighted. | |
|     int HighlightNetTool( const TOOL_EVENT& aEvent ); | |
| 
 | |
|     ///> Performs the appropriate action in response to an eeschema cross-probe. | |
|     int HighlightItem( const TOOL_EVENT& aEvent ); | |
| 
 | |
|     ///> Updates ratsnest for selected items. | |
|     int UpdateSelectionRatsnest( const TOOL_EVENT& aEvent ); | |
| 
 | |
|     ///> Hides ratsnest for selected items. Called when there are no items selected. | |
|     int HideDynamicRatsnest( const TOOL_EVENT& aEvent ); | |
| 
 | |
|     ///> Shows local ratsnest of a component | |
|     int LocalRatsnestTool( const TOOL_EVENT& aEvent ); | |
| 
 | |
|     int FlipPcbView( const TOOL_EVENT& aEvent ); | |
| 
 | |
|     int ListNets( const TOOL_EVENT& aEvent ); | |
| 
 | |
| private: | |
|     ///> Event handler to recalculate dynamic ratsnest | |
|     void ratsnestTimer( wxTimerEvent& aEvent ); | |
| 
 | |
|     ///> Recalculates dynamic ratsnest for the current selection | |
|     void calculateSelectionRatsnest(); | |
| 
 | |
|     bool highlightNet( const VECTOR2D& aPosition, bool aUseSelection ); | |
| 
 | |
|     ///> Bind handlers to corresponding TOOL_ACTIONs | |
|     void setTransitions() override; | |
| 
 | |
| private: | |
|     PCB_EDIT_FRAME* m_frame;    // Pointer to the currently used edit frame. | |
|  | |
|     bool m_probingSchToPcb;     // Recursion guard when cross-probing to EESchema | |
|     int  m_lastNetcode;         // Used for toggling between last two highlighted nets | |
|  | |
|     bool m_slowRatsnest;        // Indicates current selection ratsnest will be slow to calculate | |
|     wxTimer m_ratsnestTimer;    // Timer to initiate lazy ratsnest calculation (ie: when slow) | |
| }; | |
| 
 | |
| #endif //__BOARD_STATISTICS_TOOL_H
 |