KiCad PCB EDA Suite
Loading...
Searching...
No Matches
panel_eeschema_annotation_options.cpp
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) 2022 Mike Williams <[email protected]>
5 * Copyright The KiCad Developers, see AUTHORS.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, see <https://www.gnu.org/licenses/>.
19 */
20
21#include <pgm_base.h>
22#include <refdes_tracker.h>
25#include <schematic.h>
26#include <schematic_settings.h>
27#include <sch_edit_frame.h>
29
30
39
40
42{
43 int annotateStartNum = aCfg->m_AnnotateStartNum;
44
45 switch( aCfg->m_AnnotateSortOrder )
46 {
47 default:
48 case SORT_BY_X_POSITION: m_rbSortBy_X_Position->SetValue( true ); break;
49 case SORT_BY_Y_POSITION: m_rbSortBy_Y_Position->SetValue( true ); break;
50 }
51
52 switch( aCfg->m_AnnotateMethod )
53 {
54 default:
55 case INCREMENTAL_BY_REF: m_rbFirstFree->SetValue( true ); break;
56 case SHEET_NUMBER_X_100: m_rbSheetX100->SetValue( true ); break;
57 case SHEET_NUMBER_X_1000: m_rbSheetX1000->SetValue( true ); break;
58 }
59
60 m_textNumberAfter->SetValue( wxString::Format( wxT( "%d" ), annotateStartNum ) );
61
62 if( aCfg->m_SubpartFirstId == 'A' )
63 {
64 switch( aCfg->m_SubpartIdSeparator )
65 {
66 default:
67 case 0: m_choiceSeparatorRefId->SetSelection( 0 ); break;
68 case '.': m_choiceSeparatorRefId->SetSelection( 1 ); break;
69 case '-': m_choiceSeparatorRefId->SetSelection( 2 ); break;
70 case '_': m_choiceSeparatorRefId->SetSelection( 3 ); break;
71 }
72 }
73 else
74 {
75 switch( aCfg->m_SubpartIdSeparator )
76 {
77 default:
78 case '.': m_choiceSeparatorRefId->SetSelection( 4 ); break;
79 case '-': m_choiceSeparatorRefId->SetSelection( 5 ); break;
80 case '_': m_choiceSeparatorRefId->SetSelection( 6 ); break;
81 }
82 }
83
85}
86
87
89{
90 if( SCH_EDIT_FRAME* schFrame = dynamic_cast<SCH_EDIT_FRAME*>( m_schSettingsProvider ) )
91 loadEEschemaSettings( &schFrame->Schematic().Settings() );
92
93 return true;
94}
95
96
98{
99 if( SCH_EDIT_FRAME* schFrame = dynamic_cast<SCH_EDIT_FRAME*>( m_schSettingsProvider ) )
100 {
101 SCHEMATIC_SETTINGS& projSettings = schFrame->Schematic().Settings();
102
103 projSettings.m_AnnotateSortOrder = m_rbSortBy_Y_Position->GetValue() ?
105
106 if( m_rbSheetX100->GetValue() )
108 else if( m_rbSheetX1000->GetValue() )
110 else
112
114 projSettings.m_refDesTracker->SetReuseRefDes( m_checkReuseRefdes->GetValue() );
115
116 switch( m_choiceSeparatorRefId->GetSelection() )
117 {
118 default:
119 case 0: projSettings.m_SubpartFirstId = 'A'; projSettings.m_SubpartIdSeparator = 0; break;
120 case 1: projSettings.m_SubpartFirstId = 'A'; projSettings.m_SubpartIdSeparator = '.'; break;
121 case 2: projSettings.m_SubpartFirstId = 'A'; projSettings.m_SubpartIdSeparator = '-'; break;
122 case 3: projSettings.m_SubpartFirstId = 'A'; projSettings.m_SubpartIdSeparator = '_'; break;
123 case 4: projSettings.m_SubpartFirstId = '1'; projSettings.m_SubpartIdSeparator = '.'; break;
124 case 5: projSettings.m_SubpartFirstId = '1'; projSettings.m_SubpartIdSeparator = '-'; break;
125 case 6: projSettings.m_SubpartFirstId = '1'; projSettings.m_SubpartIdSeparator = '_'; break;
126 }
127
128 }
129
130 return true;
131}
132
133
139
140
wxBitmapBundle KiBitmapBundle(BITMAPS aBitmap, int aMinHeight)
Definition bitmap.cpp:106
@ annotate_down_right
@ annotate_right_down
The base frame for deriving all KiCad main window classes.
PANEL_EESCHEMA_ANNOTATION_OPTIONS_BASE(wxWindow *parent, wxWindowID id=wxID_ANY, const wxPoint &pos=wxDefaultPosition, const wxSize &size=wxSize(-1,-1), long style=wxTAB_TRAVERSAL, const wxString &name=wxEmptyString)
void ImportSettingsFrom(SCHEMATIC_SETTINGS &aSettings)
void ResetPanel() override
Reset the contents of this panel.
PANEL_EESCHEMA_ANNOTATION_OPTIONS(wxWindow *aWindow, EDA_BASE_FRAME *schSettingsProvider)
void SetReuseRefDes(bool aReuse)
bool GetReuseRefDes() const
These are loaded from Eeschema settings but then overwritten by the project settings.
std::shared_ptr< REFDES_TRACKER > m_refDesTracker
A list of previously used schematic reference designators.
Schematic editor (Eeschema) main window.
KICOMMON_API long long int ValueFromString(const EDA_IU_SCALE &aIuScale, EDA_UNITS aUnits, const wxString &aTextValue, EDA_DATA_TYPE aType=EDA_DATA_TYPE::DISTANCE)
Convert aTextValue in aUnits to internal units used by the application.
see class PGM_BASE
@ SORT_BY_X_POSITION
Annotate by X position from left to right.
@ SORT_BY_Y_POSITION
Annotate by Y position from top to bottom.
@ SHEET_NUMBER_X_1000
Annotate using the first free reference number starting at the sheet number * 1000.
@ INCREMENTAL_BY_REF
Annotate incrementally using the first free reference number.
@ SHEET_NUMBER_X_100
Annotate using the first free reference number starting at the sheet number * 100.