2012-12-18 17:50:00 +00:00
|
|
|
/**
|
2013-01-03 20:21:40 +00:00
|
|
|
* @file pcbnew/dialogs/dialog_netlist.h
|
2012-12-18 17:50:00 +00:00
|
|
|
*/
|
|
|
|
|
|
|
|
/*
|
|
|
|
* This program source code file is part of KiCad, a free EDA CAD application.
|
|
|
|
*
|
2020-03-01 19:20:31 +00:00
|
|
|
* Copyright (C) 1992-2020 KiCad Developers, see AUTHORS.txt for contributors.
|
2012-12-18 17:50:00 +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
|
|
|
|
*/
|
2007-05-06 16:03:28 +00:00
|
|
|
|
|
|
|
#ifndef _DIALOG_NETLIST_H_
|
|
|
|
#define _DIALOG_NETLIST_H_
|
|
|
|
|
2018-03-18 21:37:27 +00:00
|
|
|
#include <dialog_netlist_base.h>
|
2007-05-06 16:03:28 +00:00
|
|
|
|
|
|
|
|
2013-04-25 16:29:35 +00:00
|
|
|
class MODULE;
|
|
|
|
class NETLIST;
|
|
|
|
|
|
|
|
|
2018-03-18 21:37:27 +00:00
|
|
|
class DIALOG_NETLIST : public DIALOG_NETLIST_BASE
|
2008-03-22 18:08:44 +00:00
|
|
|
{
|
2012-12-18 17:50:00 +00:00
|
|
|
private:
|
2013-04-25 16:29:35 +00:00
|
|
|
PCB_EDIT_FRAME* m_parent;
|
2019-10-01 16:42:38 +00:00
|
|
|
wxString& m_netlistPath;
|
2018-02-28 09:44:22 +00:00
|
|
|
bool m_initialized;
|
2018-12-10 19:34:08 +00:00
|
|
|
bool m_runDragCommand;
|
2019-11-17 15:37:32 +00:00
|
|
|
static bool m_warnForNoNetPads;
|
2020-03-01 19:20:31 +00:00
|
|
|
static bool m_matchByUUID; // True to use UUID as link between symbol and footprint
|
|
|
|
// False to use reference designator as link
|
|
|
|
// between symbol and footprint
|
2012-12-18 17:50:00 +00:00
|
|
|
|
|
|
|
public:
|
2019-10-01 16:42:38 +00:00
|
|
|
DIALOG_NETLIST( PCB_EDIT_FRAME* aParent, wxString& aNetlistFullFilename );
|
2013-06-19 16:11:12 +00:00
|
|
|
~DIALOG_NETLIST();
|
2013-04-25 16:29:35 +00:00
|
|
|
|
2012-12-18 17:50:00 +00:00
|
|
|
private:
|
2018-02-28 09:44:22 +00:00
|
|
|
void onFilenameChanged();
|
|
|
|
|
|
|
|
void loadNetlist( bool aDryRun );
|
2013-04-25 16:29:35 +00:00
|
|
|
|
2019-04-18 02:10:56 +00:00
|
|
|
|
|
|
|
|
2013-02-02 17:39:59 +00:00
|
|
|
// Virtual event handlers:
|
2016-09-24 18:53:15 +00:00
|
|
|
void OnOpenNetlistClick( wxCommandEvent& event ) override;
|
2018-02-28 09:44:22 +00:00
|
|
|
void OnUpdatePCB( wxCommandEvent& event ) override;
|
|
|
|
void OnFilenameKillFocus( wxFocusEvent& event ) override;
|
|
|
|
void OnMatchChanged( wxCommandEvent& event ) override;
|
|
|
|
void OnOptionChanged( wxCommandEvent& event ) override;
|
2016-09-24 18:53:15 +00:00
|
|
|
void OnTestFootprintsClick( wxCommandEvent& event ) override;
|
|
|
|
void OnCompileRatsnestClick( wxCommandEvent& event ) override;
|
|
|
|
void OnUpdateUIValidNetlistFile( wxUpdateUIEvent& aEvent ) override;
|
2007-05-06 16:03:28 +00:00
|
|
|
};
|
|
|
|
|
2008-03-22 18:08:44 +00:00
|
|
|
|
2009-04-24 07:36:36 +00:00
|
|
|
#endif // _DIALOG_NETLIST_H_
|