2017-03-13 15:18:30 +00:00
|
|
|
/*
|
|
|
|
* This program source code file is part of KiCad, a free EDA CAD application.
|
|
|
|
*
|
2021-03-21 17:31:23 +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-10-25 19:24:00 +00:00
|
|
|
#ifndef PANEL_SYM_EDITING_OPTIONS_H
|
|
|
|
#define PANEL_SYM_EDITING_OPTIONS_H
|
2017-03-13 15:18:30 +00:00
|
|
|
|
2020-04-04 20:32:14 +00:00
|
|
|
#include <widgets/unit_binder.h>
|
2020-10-25 19:24:00 +00:00
|
|
|
#include "panel_sym_editing_options_base.h"
|
2017-03-13 15:18:30 +00:00
|
|
|
|
2020-10-31 01:27:16 +00:00
|
|
|
class SYMBOL_EDIT_FRAME;
|
2018-05-14 17:34:18 +00:00
|
|
|
|
|
|
|
|
2020-10-25 19:24:00 +00:00
|
|
|
class PANEL_SYM_EDITING_OPTIONS : public PANEL_SYM_EDITING_OPTIONS_BASE
|
2017-03-13 15:18:30 +00:00
|
|
|
{
|
2021-03-21 17:31:23 +00:00
|
|
|
public:
|
|
|
|
PANEL_SYM_EDITING_OPTIONS( SYMBOL_EDIT_FRAME* aFrame, wxWindow* aWindow );
|
|
|
|
|
|
|
|
private:
|
|
|
|
bool TransferDataToWindow() override;
|
|
|
|
bool TransferDataFromWindow() override;
|
|
|
|
|
2020-10-31 01:27:16 +00:00
|
|
|
SYMBOL_EDIT_FRAME* m_frame;
|
2020-04-04 20:32:14 +00:00
|
|
|
|
2020-10-31 01:27:16 +00:00
|
|
|
UNIT_BINDER m_lineWidth;
|
|
|
|
UNIT_BINDER m_textSize;
|
2020-04-04 20:32:14 +00:00
|
|
|
|
2020-10-31 01:27:16 +00:00
|
|
|
UNIT_BINDER m_pinLength;
|
|
|
|
UNIT_BINDER m_pinNameSize;
|
|
|
|
UNIT_BINDER m_pinNumberSize;
|
2020-04-04 20:32:14 +00:00
|
|
|
|
2020-10-31 01:27:16 +00:00
|
|
|
UNIT_BINDER m_hPitch;
|
|
|
|
UNIT_BINDER m_vPitch;
|
2018-05-14 17:34:18 +00:00
|
|
|
};
|
2017-03-13 15:18:30 +00:00
|
|
|
|
|
|
|
|
2020-10-25 19:24:00 +00:00
|
|
|
#endif //PANEL_SYM_EDITING_OPTIONS_H
|