2016-08-11 14:41:40 +02:00
|
|
|
/*
|
|
|
|
* This program source code file is part of KiCad, a free EDA CAD application.
|
|
|
|
*
|
2022-02-09 01:45:04 +01:00
|
|
|
* Copyright (C) 2022 Mikolaj Wielgus
|
|
|
|
* Copyright (C) 2022 KiCad Developers, see AUTHORS.txt for contributors.
|
2016-08-11 14:41:40 +02:00
|
|
|
*
|
|
|
|
* This program is free software; you can redistribute it and/or
|
|
|
|
* modify it under the terms of the GNU General Public License
|
2016-08-11 14:41:43 +02:00
|
|
|
* as published by the Free Software Foundation; either version 3
|
2016-08-11 14:41:40 +02:00
|
|
|
* 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:
|
2016-08-11 14:41:43 +02:00
|
|
|
* https://www.gnu.org/licenses/gpl-3.0.html
|
|
|
|
* or you may search the http://www.gnu.org website for the version 3 license,
|
2016-08-11 14:41:40 +02:00
|
|
|
* or you may write to the Free Software Foundation, Inc.,
|
|
|
|
* 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA
|
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef DIALOG_SPICE_MODEL_H
|
|
|
|
#define DIALOG_SPICE_MODEL_H
|
|
|
|
|
2022-04-12 16:37:06 +02:00
|
|
|
#include <dialog_sim_model_base.h>
|
|
|
|
#include <netlist_exporter_spice.h>
|
2021-12-03 03:41:02 +01:00
|
|
|
#include <scintilla_tricks.h>
|
2016-08-11 14:41:56 +02:00
|
|
|
|
2022-02-21 04:58:31 +01:00
|
|
|
#include <sim/sim_model.h>
|
2022-04-01 06:30:50 +02:00
|
|
|
#include <sim/sim_library.h>
|
2021-02-24 08:48:02 -05:00
|
|
|
#include <sch_symbol.h>
|
2016-08-11 14:41:56 +02:00
|
|
|
|
2022-02-21 04:58:31 +01:00
|
|
|
// Some probable wxWidgets bugs encountered when writing this class:
|
|
|
|
// 1. There are rendering problems with wxPropertyGrid on Linux, GTK, Xorg when
|
|
|
|
// wxPG_NATIVE_DOUBLE_BUFFERING flag is not set.
|
|
|
|
// 2. wxPropertyGridManager->ShowHeader() segfaults when called from this dialog's constructor.
|
|
|
|
|
2022-02-09 01:45:04 +01:00
|
|
|
template <typename T>
|
2022-04-12 16:37:06 +02:00
|
|
|
class DIALOG_SIM_MODEL : public DIALOG_SIM_MODEL_BASE
|
2016-08-11 14:41:40 +02:00
|
|
|
{
|
|
|
|
public:
|
2022-03-09 02:40:59 +01:00
|
|
|
enum class PARAM_COLUMN : int { DESCRIPTION, VALUE, UNIT, DEFAULT, TYPE, END_ };
|
|
|
|
enum class PIN_COLUMN : int { SYMBOL, MODEL };
|
2022-02-09 01:45:04 +01:00
|
|
|
|
2022-04-12 16:37:06 +02:00
|
|
|
DIALOG_SIM_MODEL( wxWindow* aParent, SCH_SYMBOL& aSymbol, std::vector<T>& aSchFields );
|
2016-08-11 14:41:40 +02:00
|
|
|
|
|
|
|
private:
|
2022-02-09 01:45:04 +01:00
|
|
|
bool TransferDataToWindow() override;
|
2022-04-01 06:30:50 +02:00
|
|
|
bool TransferDataFromWindow() override;
|
2016-08-11 14:41:40 +02:00
|
|
|
|
2022-02-09 01:45:04 +01:00
|
|
|
void updateWidgets();
|
2022-03-09 02:40:59 +01:00
|
|
|
void updateModelParamsTab();
|
|
|
|
void updateModelCodeTab();
|
|
|
|
void updatePinAssignmentsTab();
|
|
|
|
void updatePinAssignmentsGridEditors();
|
2022-04-01 06:30:50 +02:00
|
|
|
|
|
|
|
void loadLibrary( const wxString& aFilePath );
|
2022-02-21 04:58:31 +01:00
|
|
|
|
2022-04-01 06:30:50 +02:00
|
|
|
void addParamPropertyIfRelevant( int aParamIndex );
|
|
|
|
wxPGProperty* newParamProperty( int aParamIndex ) const;
|
|
|
|
|
|
|
|
SIM_MODEL& curModel() const;
|
|
|
|
std::shared_ptr<SIM_MODEL> curModelSharedPtr() const;
|
2016-08-11 14:41:40 +02:00
|
|
|
|
2022-03-09 02:40:59 +01:00
|
|
|
wxString getSymbolPinString( int aSymbolPinNumber ) const;
|
|
|
|
wxString getModelPinString( int aModelPinNumber ) const;
|
|
|
|
int getModelPinNumber( const wxString& aModelPinString ) const;
|
|
|
|
|
2022-04-01 06:30:50 +02:00
|
|
|
void onRadioButton( wxCommandEvent& aEvent ) override;
|
|
|
|
void onBrowseButtonClick( wxCommandEvent& aEvent ) override;
|
|
|
|
void onModelNameCombobox( wxCommandEvent& aEvent ) override;
|
|
|
|
void onOverrideCheckbox( wxCommandEvent& aEvent ) override;
|
2022-03-09 02:40:59 +01:00
|
|
|
void onDeviceTypeChoice( wxCommandEvent& aEvent ) override;
|
|
|
|
void onTypeChoice( wxCommandEvent& aEvent ) override;
|
2022-04-01 06:30:50 +02:00
|
|
|
void onParamGridChanged( wxPropertyGridEvent& aEvent ) override;
|
2022-03-09 02:40:59 +01:00
|
|
|
void onPinAssignmentsGridCellChange( wxGridEvent& aEvent ) override;
|
|
|
|
void onPinAssignmentsGridSize( wxSizeEvent& aEvent ) override;
|
|
|
|
|
2022-04-01 06:30:50 +02:00
|
|
|
void onLibraryFilenameInputUpdate( wxUpdateUIEvent& aEvent ) override;
|
|
|
|
void onBrowseButtonUpdate( wxUpdateUIEvent& aEvent ) override;
|
|
|
|
void onModelNameComboboxUpdate( wxUpdateUIEvent& aEvent ) override;
|
|
|
|
void onOverrideCheckboxUpdate( wxUpdateUIEvent& aEvent ) override;
|
|
|
|
void onDeviceTypeChoiceUpdate( wxUpdateUIEvent& aEvent ) override;
|
|
|
|
void onTypeChoiceUpdate( wxUpdateUIEvent& aEvent ) override;
|
|
|
|
|
2022-03-09 02:40:59 +01:00
|
|
|
virtual void onSelectionChange( wxPropertyGridEvent& aEvent );
|
|
|
|
//void onPropertyChanged( wxPropertyGridEvent& aEvent ) override;
|
|
|
|
|
2022-04-01 06:30:50 +02:00
|
|
|
|
2021-06-10 10:10:55 -04:00
|
|
|
SCH_SYMBOL& m_symbol;
|
2022-02-21 04:58:31 +01:00
|
|
|
std::vector<T>& m_fields;
|
2016-08-11 14:41:40 +02:00
|
|
|
|
2022-04-01 06:30:50 +02:00
|
|
|
std::vector<std::shared_ptr<SIM_MODEL>> m_models;
|
2022-02-21 04:58:31 +01:00
|
|
|
std::map<SIM_MODEL::DEVICE_TYPE, SIM_MODEL::TYPE> m_curModelTypeOfDeviceType;
|
|
|
|
SIM_MODEL::TYPE m_curModelType = SIM_MODEL::TYPE::NONE;
|
2021-12-03 03:41:02 +01:00
|
|
|
|
2022-04-01 06:30:50 +02:00
|
|
|
std::shared_ptr<SIM_LIBRARY> m_library;
|
|
|
|
std::vector<std::shared_ptr<SIM_MODEL>> m_libraryModels;
|
|
|
|
const SIM_MODEL* m_prevModel;
|
|
|
|
|
2022-02-21 04:58:31 +01:00
|
|
|
wxPGProperty* m_firstCategory; // Used to add principal parameters to root (any better ideas?)
|
2021-12-03 03:41:02 +01:00
|
|
|
std::unique_ptr<SCINTILLA_TRICKS> m_scintillaTricks;
|
2016-08-11 14:41:40 +02:00
|
|
|
};
|
|
|
|
|
|
|
|
#endif /* DIALOG_SPICE_MODEL_H */
|