|
|
/*
* This program source code file is part of KiCad, a free EDA CAD application. * * Copyright (C) 2016-2023 CERN * Copyright The KiCad Developers, see AUTHORS.txt for contributors. * @author Sylwester Kocjan <s.kocjan@o2.pl> * * 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 3 * 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: * https://www.gnu.org/licenses/gpl-3.0.html
* or you may search the http://www.gnu.org website for the version 3 license,
* or you may write to the Free Software Foundation, Inc., * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA */
#ifndef __SIM_PLOT_PANEL_BASE_H
#define __SIM_PLOT_PANEL_BASE_H
#include <sim/sim_preferences.h>
#include <sim/sim_types.h>
#include <sim/spice_circuit_model.h>
#include <wx/panel.h>
#include <wx/sizer.h>
#include <wx/stattext.h>
class SIM_TAB : public wxWindow{public: SIM_TAB(); SIM_TAB( const wxString& aSimCommand, wxWindow* parent ); virtual ~SIM_TAB();
static bool IsPlottable( SIM_TYPE aSimType );
virtual void OnLanguageChanged() = 0;
virtual void ApplyPreferences( const SIM_PREFERENCES& aPrefs );
SIM_TYPE GetSimType() const;
const wxString& GetSimCommand() const { return m_simCommand; } void SetSimCommand( const wxString& aSimCommand ) { m_simCommand = aSimCommand; }
int GetSimOptions() const { return m_simOptions; } void SetSimOptions( int aOptions ) { m_simOptions = aOptions; }
wxString GetLastSchTextSimCommand() const { return m_lastSchTextSimCommand; } void SetLastSchTextSimCommand( const wxString& aCmd ) { m_lastSchTextSimCommand = aCmd; }
const wxString& GetSpicePlotName() const { return m_spicePlotName; } void SetSpicePlotName( const wxString& aPlotName ) { m_spicePlotName = aPlotName; }
private: wxString m_simCommand; unsigned m_simOptions; wxString m_lastSchTextSimCommand; wxString m_spicePlotName;};
class SIM_NOPLOT_TAB : public SIM_TAB{public: SIM_NOPLOT_TAB( const wxString& aSimCommand, wxWindow* parent );
virtual ~SIM_NOPLOT_TAB();
void OnLanguageChanged() override;
private: wxSizer* m_sizer; wxStaticText* m_textInfo;};
#endif
|