2023-01-01 23:37:24 +00:00
|
|
|
/*
|
|
|
|
* This program source code file is part of KiCad, a free EDA CAD application.
|
|
|
|
*
|
2024-01-23 01:02:50 +00:00
|
|
|
* Copyright (C) 2023-2024 KiCad Developers, see AUTHORS.txt for contributors.
|
2023-01-01 23:37:24 +00:00
|
|
|
*
|
|
|
|
* 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 SIMULATOR_CONTROL_H
|
|
|
|
#define SIMULATOR_CONTROL_H
|
|
|
|
|
|
|
|
#include <tool/tool_interactive.h>
|
|
|
|
|
2023-03-03 22:36:07 +00:00
|
|
|
class SIMULATOR_FRAME;
|
2024-01-23 01:02:50 +00:00
|
|
|
class SCH_EDIT_FRAME;
|
2023-07-14 09:21:58 +00:00
|
|
|
class SPICE_CIRCUIT_MODEL;
|
2023-01-01 23:37:24 +00:00
|
|
|
class SPICE_SIMULATOR;
|
2023-07-09 22:00:25 +00:00
|
|
|
class SIM_TAB;
|
2023-01-01 23:37:24 +00:00
|
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Handle actions for the various symbol editor and viewers.
|
|
|
|
*/
|
|
|
|
class SIMULATOR_CONTROL : public wxEvtHandler, public TOOL_INTERACTIVE
|
|
|
|
{
|
|
|
|
public:
|
|
|
|
SIMULATOR_CONTROL() :
|
2023-06-16 14:29:31 +00:00
|
|
|
TOOL_INTERACTIVE( "eeschema.SimulatorControl" ),
|
|
|
|
m_simulatorFrame( nullptr ),
|
2023-01-01 23:37:24 +00:00
|
|
|
m_schematicFrame( nullptr )
|
|
|
|
{ }
|
|
|
|
|
|
|
|
virtual ~SIMULATOR_CONTROL() { }
|
|
|
|
|
|
|
|
/// @copydoc TOOL_INTERACTIVE::Init()
|
|
|
|
bool Init() override;
|
|
|
|
|
|
|
|
/// @copydoc TOOL_INTERACTIVE::Reset()
|
|
|
|
void Reset( RESET_REASON aReason ) override;
|
|
|
|
|
2023-07-19 15:25:57 +00:00
|
|
|
int NewAnalysisTab( const TOOL_EVENT& aEvent );
|
2023-01-01 23:37:24 +00:00
|
|
|
int OpenWorkbook( const TOOL_EVENT& aEvent );
|
|
|
|
int SaveWorkbook( const TOOL_EVENT& aEvent );
|
|
|
|
int ExportPlotAsPNG( const TOOL_EVENT& aEvent );
|
|
|
|
int ExportPlotAsCSV( const TOOL_EVENT& aEvent );
|
2024-03-19 16:04:42 +00:00
|
|
|
int ExportPlotToClipboard( const TOOL_EVENT& aEvent );
|
|
|
|
int ExportPlotToSchematic( const TOOL_EVENT& aEvent );
|
2023-01-01 23:37:24 +00:00
|
|
|
int Close( const TOOL_EVENT& aEvent );
|
|
|
|
|
|
|
|
int Zoom( const TOOL_EVENT& aEvent );
|
2023-09-26 12:18:28 +00:00
|
|
|
int UndoZoom( const TOOL_EVENT& aEvent );
|
|
|
|
int RedoZoom( const TOOL_EVENT& aEvent );
|
2023-01-01 23:37:24 +00:00
|
|
|
int ToggleGrid( const TOOL_EVENT& aEvent );
|
|
|
|
int ToggleLegend( const TOOL_EVENT& aEvent );
|
|
|
|
int ToggleDottedSecondary( const TOOL_EVENT& aEvent );
|
|
|
|
int ToggleDarkModePlots( const TOOL_EVENT& aEvent );
|
|
|
|
|
2023-07-19 15:25:57 +00:00
|
|
|
int EditAnalysisTab( const TOOL_EVENT& aEvent );
|
2023-01-01 23:37:24 +00:00
|
|
|
int RunSimulation( const TOOL_EVENT& aEvent );
|
|
|
|
int Probe( const TOOL_EVENT& aEvent );
|
|
|
|
int Tune( const TOOL_EVENT& aEvent );
|
|
|
|
|
2023-02-21 09:06:02 +00:00
|
|
|
int EditUserDefinedSignals( const TOOL_EVENT& aEvent );
|
2023-01-01 23:37:24 +00:00
|
|
|
int ShowNetlist( const TOOL_EVENT& aEvent );
|
|
|
|
|
|
|
|
private:
|
|
|
|
/**
|
|
|
|
* Return the default filename (with extension) to be used in file browser dialog.
|
|
|
|
*/
|
|
|
|
wxString getDefaultFilename();
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Return the default path to be used in file browser dialog.
|
|
|
|
*/
|
|
|
|
wxString getDefaultPath();
|
|
|
|
|
2023-07-19 15:25:57 +00:00
|
|
|
SIM_TAB* getCurrentSimTab();
|
2023-07-05 17:25:52 +00:00
|
|
|
|
2023-01-01 23:37:24 +00:00
|
|
|
///< Set up handlers for various events.
|
|
|
|
void setTransitions() override;
|
|
|
|
|
|
|
|
private:
|
2023-07-14 09:21:58 +00:00
|
|
|
SIMULATOR_FRAME* m_simulatorFrame;
|
|
|
|
SCH_EDIT_FRAME* m_schematicFrame;
|
|
|
|
std::shared_ptr<SPICE_CIRCUIT_MODEL> m_circuitModel;
|
|
|
|
std::shared_ptr<SPICE_SIMULATOR> m_simulator;
|
2023-01-01 23:37:24 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
#endif // SIMULATOR_CONTROL_H
|