KiCad PCB EDA Suite
Loading...
Searching...
No Matches
dialog_pin_properties.h
Go to the documentation of this file.
1/*
2 * This program source code file is part of KiCad, a free EDA CAD application.
3 *
4 * Copyright (C) 2010 Jean-Pierre Charras, jp.charras at wanadoo.fr
5 * Copyright (C) 2014-2023 KiCad Developers, see AUTHOR.txt for contributors.
6 *
7 * This program is free software; you can redistribute it and/or
8 * modify it under the terms of the GNU General Public License
9 * as published by the Free Software Foundation; either version 2
10 * of the License, or (at your option) any later version.
11 *
12 * This program is distributed in the hope that it will be useful,
13 * but WITHOUT ANY WARRANTY; without even the implied warranty of
14 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15 * GNU General Public License for more details.
16 *
17 * You should have received a copy of the GNU General Public License
18 * along with this program; if not, you may find one here:
19 * http://www.gnu.org/licenses/old-licenses/gpl-2.0.html
20 * or you may search the http://www.gnu.org website for the version 2 license,
21 * or you may write to the Free Software Foundation, Inc.,
22 * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA
23 */
24
25#ifndef DIALOG_PIN_PROPERTIES_H
26#define DIALOG_PIN_PROPERTIES_H
27
28#include <wx/bmpcbox.h>
29#include <wx/dcclient.h>
30
31#include <pin_shape_combobox.h>
32#include <pin_type_combobox.h>
33
35#include <widgets/unit_binder.h>
36#include <sch_pin.h>
37#include <symbol_edit_frame.h>
38
39
41{
45
46 COL_COUNT // keep as last
47};
48
49
51
52
54{
55public:
57 ~DIALOG_PIN_PROPERTIES() override;
58
59 bool TransferDataToWindow() override;
60 bool TransferDataFromWindow() override;
61
62 void OnPaintShowPanel( wxPaintEvent& event ) override;
63 void OnPropertiesChange( wxCommandEvent& event ) override;
64 void OnAddAlternate( wxCommandEvent& event ) override;
65 void OnDeleteAlternate( wxCommandEvent& event ) override;
66 void OnSize( wxSizeEvent& event ) override;
67 void OnUpdateUI( wxUpdateUIEvent& event ) override;
68 void OnCollapsiblePaneChange( wxCollapsiblePaneEvent& event ) override;
69
70protected:
71 void adjustGridColumns();
72 wxString getSyncPinsMessage();
73
74private:
77
79 SCH_PIN* m_dummyPin; // a working copy used to show changes
80
86
88
90
93
94 std::map<int, int> m_originalColWidths; // map col-number : orig-col-width
95 wxSize m_size;
97 inline static bool s_alternatesTurndownOpen = false;
98};
99
100#endif // DIALOG_PIN_PROPERTIES_H
Class DIALOG_PIN_PROPERTIES_BASE.
SYMBOL_EDIT_FRAME * m_frame
void OnUpdateUI(wxUpdateUIEvent &event) override
std::map< int, int > m_originalColWidths
void OnCollapsiblePaneChange(wxCollapsiblePaneEvent &event) override
void OnPropertiesChange(wxCommandEvent &event) override
void OnPaintShowPanel(wxPaintEvent &event) override
bool TransferDataToWindow() override
void OnAddAlternate(wxCommandEvent &event) override
ALT_PIN_DATA_MODEL * m_alternatesDataModel
void OnSize(wxSizeEvent &event) override
bool TransferDataFromWindow() override
void OnDeleteAlternate(wxCommandEvent &event) override
Define a library symbol object.
Definition: lib_symbol.h:77
The symbol library editor main window.
ComboBox widget for pin shape.
ComboBox widget for pin type.