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, 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#include <pgm_base.h>
28#include <eeschema_settings.h>
29#include <schematic.h>
30#include <schematic_settings.h>
31#include <sch_edit_frame.h>
33
34
36 wxWindow* aWindow, EDA_BASE_FRAME* schSettingsProvider ) :
38 m_schSettingsProvider( schSettingsProvider )
39{
40 annotate_down_right_bitmap->SetBitmap( KiBitmapBundle( BITMAPS::annotate_down_right ) );
41 annotate_right_down_bitmap->SetBitmap( KiBitmapBundle( BITMAPS::annotate_right_down ) );
42}
43
44
46{
48
49 switch( aCfg->m_AnnotatePanel.sort_order )
50 {
51 default:
52 case 0: m_rbSortBy_X_Position->SetValue( true ); break;
53 case 1: m_rbSortBy_Y_Position->SetValue( true ); break;
54 }
55
56 switch( aCfg->m_AnnotatePanel.method )
57 {
58 default:
59 case 0: m_rbFirstFree->SetValue( true ); break;
60 case 1: m_rbSheetX100->SetValue( true ); break;
61 case 2: m_rbSheetX1000->SetValue( true ); break;
62 }
63
64 int annotateStartNum = 0; // Default "start after" value for annotation
65
66 // See if we can get a "start after" value from the project settings
67 SCH_EDIT_FRAME* schFrame = dynamic_cast<SCH_EDIT_FRAME*>( m_schSettingsProvider );
68
69 if( schFrame )
70 {
71 SCHEMATIC_SETTINGS& projSettings = schFrame->Schematic().Settings();
72 annotateStartNum = projSettings.m_AnnotateStartNum;
73 }
74
75 m_textNumberAfter->SetValue( wxString::Format( wxT( "%d" ), annotateStartNum ) );
76}
77
78
80{
81 loadEEschemaSettings( GetAppSettings<EESCHEMA_SETTINGS>( "eeschema" ) );
82 return true;
83}
84
85
87{
88 if( EESCHEMA_SETTINGS* cfg = GetAppSettings<EESCHEMA_SETTINGS>( "eeschema" ) )
89 {
90 cfg->m_AnnotatePanel.automatic = m_checkAutoAnnotate->GetValue();
91
92 cfg->m_AnnotatePanel.sort_order = m_rbSortBy_Y_Position->GetValue() ? ANNOTATE_ORDER_T::SORT_BY_Y_POSITION
93 : ANNOTATE_ORDER_T::SORT_BY_X_POSITION;
94
95 if( m_rbSheetX100->GetValue() )
96 cfg->m_AnnotatePanel.method = ANNOTATE_ALGO_T::SHEET_NUMBER_X_100;
97 else if( m_rbSheetX1000->GetValue() )
98 cfg->m_AnnotatePanel.method = ANNOTATE_ALGO_T::SHEET_NUMBER_X_1000;
99 else
100 cfg->m_AnnotatePanel.method = ANNOTATE_ALGO_T::INCREMENTAL_BY_REF;
101 }
102
103 if( SCH_EDIT_FRAME* schFrame = dynamic_cast<SCH_EDIT_FRAME*>( m_schSettingsProvider ) )
104 {
105 SCHEMATIC_SETTINGS& projSettings = schFrame->Schematic().Settings();
107 }
108
109 return true;
110}
111
112
114{
116 cfg.Load(); // Loading without a file will init to defaults
117
118 loadEEschemaSettings( &cfg );
119}
wxBitmapBundle KiBitmapBundle(BITMAPS aBitmap, int aMinHeight)
Definition: bitmap.cpp:110
The base frame for deriving all KiCad main window classes.
PANEL_ANNOTATE m_AnnotatePanel
virtual void Load()
Updates the parameters of this object based on the current JSON document contents.
Class PANEL_EESCHEMA_ANNOTATION_OPTIONS_BASE.
void ResetPanel() override
Reset the contents of this panel.
PANEL_EESCHEMA_ANNOTATION_OPTIONS(wxWindow *aWindow, EDA_BASE_FRAME *schSettingsProvider)
These are loaded from Eeschema settings but then overwritten by the project settings.
SCHEMATIC_SETTINGS & Settings() const
Definition: schematic.cpp:317
Schematic editor (Eeschema) main window.
SCHEMATIC & Schematic() const
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.
Definition: eda_units.cpp:679
see class PGM_BASE