127 lines
3.8 KiB
C++
127 lines
3.8 KiB
C++
/*
|
|
* This program source code file is part of KiCad, a free EDA CAD application.
|
|
*
|
|
* Copyright (C) 2022 Mikolaj Wielgus
|
|
* Copyright (C) 2022 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 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_PROPERTY_H
|
|
#define SIM_PROPERTY_H
|
|
|
|
#include <wx/notebook.h>
|
|
#include <wx/propgrid/propgrid.h>
|
|
#include <wx/propgrid/manager.h>
|
|
#include <wx/propgrid/props.h>
|
|
|
|
#include <sim/sim_model.h>
|
|
#include "libeval/numeric_evaluator.h"
|
|
|
|
|
|
/**
|
|
*
|
|
* wxPropertyGrid property specializations for simulator.
|
|
*
|
|
*/
|
|
|
|
|
|
class SIM_VALIDATOR : public wxValidator
|
|
{
|
|
private:
|
|
bool Validate( wxWindow* aParent ) override { return true; }
|
|
bool TransferToWindow() override { return true; }
|
|
bool TransferFromWindow() override { return true; }
|
|
};
|
|
|
|
|
|
class SIM_PROPERTY
|
|
{
|
|
public:
|
|
SIM_PROPERTY( SIM_MODEL& aModel, int aParamIndex );
|
|
|
|
void Disable();
|
|
|
|
const SIM_MODEL::PARAM& GetParam() const { return m_model.GetParam( m_paramIndex ); }
|
|
|
|
protected:
|
|
SIM_MODEL& m_model;
|
|
int m_paramIndex;
|
|
|
|
bool m_needsEval;
|
|
mutable NUMERIC_EVALUATOR m_eval;
|
|
|
|
bool m_disabled; ///< If true, never access the models.
|
|
};
|
|
|
|
|
|
class SIM_BOOL_PROPERTY : public wxBoolProperty, public SIM_PROPERTY
|
|
{
|
|
public:
|
|
SIM_BOOL_PROPERTY( const wxString& aLabel, const wxString& aName,
|
|
SIM_MODEL& aModel,
|
|
int aParamIndex );
|
|
|
|
wxValidator* DoGetValidator() const override;
|
|
|
|
void OnSetValue() override;
|
|
};
|
|
|
|
|
|
class SIM_STRING_PROPERTY : public wxStringProperty, public SIM_PROPERTY
|
|
{
|
|
public:
|
|
// We pass shared_ptrs because we need to make sure they are destroyed only after the last time
|
|
// SIM_PROPERTY uses them.
|
|
SIM_STRING_PROPERTY( const wxString& aLabel, const wxString& aName,
|
|
SIM_MODEL& aModel,
|
|
int aParamIndex,
|
|
SIM_VALUE::TYPE aValueType = SIM_VALUE::TYPE_FLOAT,
|
|
SIM_VALUE_GRAMMAR::NOTATION aNotation = SIM_VALUE_GRAMMAR::NOTATION::SI );
|
|
|
|
wxValidator* DoGetValidator() const override;
|
|
|
|
bool StringToValue( wxVariant& aVariant, const wxString& aText, int aArgFlags = 0 )
|
|
const override;
|
|
|
|
bool OnEvent( wxPropertyGrid* propgrid, wxWindow* wnd_primary, wxEvent& event ) override;
|
|
|
|
protected:
|
|
bool allowEval() const;
|
|
|
|
protected:
|
|
SIM_VALUE::TYPE m_valueType;
|
|
};
|
|
|
|
|
|
class SIM_ENUM_PROPERTY : public wxEnumProperty, public SIM_PROPERTY
|
|
{
|
|
public:
|
|
SIM_ENUM_PROPERTY( const wxString& aLabel, const wxString& aName, SIM_MODEL& aModel,
|
|
int aParamIndex, const wxArrayString& aValues );
|
|
|
|
#if wxCHECK_VERSION( 3, 3, 0 )
|
|
bool IntToValue( wxVariant& aVariant, int aNumber,
|
|
wxPGPropValFormatFlags aArgFlags = wxPGPropValFormatFlags::Null ) const override;
|
|
#else
|
|
bool IntToValue( wxVariant& aVariant, int aNumber, int aArgFlags = 0 ) const override;
|
|
#endif
|
|
};
|
|
|
|
#endif // SIM_PROPERTY_H
|