2017-03-13 15:18:30 +00:00
|
|
|
/*
|
|
|
|
* This program source code file is part of KiCad, a free EDA CAD application.
|
|
|
|
*
|
2021-06-04 16:21:48 +00:00
|
|
|
* Copyright (C) 2017-2021 KiCad Developers, see AUTHORS.txt for contributors.
|
2017-03-13 15:18:30 +00:00
|
|
|
*
|
2018-01-08 04:05:03 +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 3 of the License, or (at your
|
|
|
|
* option) any later version.
|
2017-03-13 15:18:30 +00:00
|
|
|
*
|
2018-01-08 04:05:03 +00:00
|
|
|
* 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.
|
2017-03-13 15:18:30 +00:00
|
|
|
*
|
2018-01-08 04:05:03 +00:00
|
|
|
* You should have received a copy of the GNU General Public License along
|
|
|
|
* with this program. If not, see <http://www.gnu.org/licenses/>.
|
2017-03-13 15:18:30 +00:00
|
|
|
*/
|
|
|
|
|
2020-11-16 00:45:43 +00:00
|
|
|
#ifndef PANEL_FP_EDITOR_DEFAULTS_H
|
|
|
|
#define PANEL_FP_EDITOR_DEFAULTS_H
|
2018-05-14 17:34:18 +00:00
|
|
|
|
2020-11-16 00:45:43 +00:00
|
|
|
#include <panel_fp_editor_defaults_base.h>
|
2017-03-13 15:18:30 +00:00
|
|
|
|
2021-08-29 23:33:08 +00:00
|
|
|
class PAGED_DIALOG;
|
2021-11-01 11:20:13 +00:00
|
|
|
class FOOTPRINT_EDITOR_SETTINGS;
|
2017-03-13 15:18:30 +00:00
|
|
|
|
2018-05-14 17:34:18 +00:00
|
|
|
|
2020-11-16 00:45:43 +00:00
|
|
|
class PANEL_FP_EDITOR_DEFAULTS : public PANEL_FP_EDITOR_DEFAULTS_BASE
|
2017-03-13 15:18:30 +00:00
|
|
|
{
|
2018-05-14 17:34:18 +00:00
|
|
|
public:
|
2022-10-12 11:05:15 +00:00
|
|
|
PANEL_FP_EDITOR_DEFAULTS( wxWindow* aParent, UNITS_PROVIDER* aUnitsProvider );
|
2020-11-16 00:45:43 +00:00
|
|
|
~PANEL_FP_EDITOR_DEFAULTS() override;
|
2017-03-13 15:18:30 +00:00
|
|
|
|
2021-11-01 11:20:13 +00:00
|
|
|
bool TransferDataToWindow() override;
|
|
|
|
bool TransferDataFromWindow() override;
|
|
|
|
|
|
|
|
void ResetPanel() override;
|
|
|
|
|
2018-05-14 17:34:18 +00:00
|
|
|
private:
|
2020-05-08 18:10:47 +00:00
|
|
|
virtual void OnAddTextItem( wxCommandEvent& event ) override;
|
|
|
|
virtual void OnDeleteTextItem( wxCommandEvent& event ) override;
|
|
|
|
|
|
|
|
bool Show( bool aShow ) override;
|
|
|
|
|
2021-11-01 11:20:13 +00:00
|
|
|
void loadFPSettings( FOOTPRINT_EDITOR_SETTINGS* aCfg );
|
2021-06-04 16:21:48 +00:00
|
|
|
|
2021-08-29 23:33:08 +00:00
|
|
|
private:
|
2023-05-09 10:10:09 +00:00
|
|
|
bool m_firstShow = true;
|
2023-12-06 15:39:29 +00:00
|
|
|
UNITS_PROVIDER* m_unitProvider;
|
2018-05-14 17:34:18 +00:00
|
|
|
};
|
2017-03-13 15:18:30 +00:00
|
|
|
|
|
|
|
|
2018-05-14 17:34:18 +00:00
|
|
|
|
|
|
|
|
2020-11-16 00:45:43 +00:00
|
|
|
#endif // PANEL_FP_EDITOR_DEFAULTS_H
|
2018-05-14 17:34:18 +00:00
|
|
|
|