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 (C) 1992-2022 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
65 int annotateStartNum = 0; // Default "start after" value for annotation
66
67 // See if we can get a "start after" value from the project settings
68 SCH_EDIT_FRAME* schFrame = dynamic_cast<SCH_EDIT_FRAME*>( m_schSettingsProvider );
69
70 if( schFrame )
71 {
72 SCHEMATIC_SETTINGS& projSettings = schFrame->Schematic().Settings();
73 annotateStartNum = projSettings.m_AnnotateStartNum;
74 }
75
76 m_textNumberAfter->SetValue( wxString::Format( wxT( "%d" ), annotateStartNum ) );
77}
78
79
81{
84
86
87 return true;
88}
89
90
92{
95
97
99 ? ANNOTATE_ORDER_T::SORT_BY_Y_POSITION
100 : ANNOTATE_ORDER_T::SORT_BY_X_POSITION;
101
102 if( m_rbSheetX100->GetValue() )
103 cfg->m_AnnotatePanel.method = ANNOTATE_ALGO_T::SHEET_NUMBER_X_100;
104 else if( m_rbSheetX1000->GetValue() )
105 cfg->m_AnnotatePanel.method = ANNOTATE_ALGO_T::SHEET_NUMBER_X_1000;
106 else
107 cfg->m_AnnotatePanel.method = ANNOTATE_ALGO_T::INCREMENTAL_BY_REF;
108
109
110 SCH_EDIT_FRAME* schFrame = dynamic_cast<SCH_EDIT_FRAME*>( m_schSettingsProvider );
111
112 if( schFrame )
113 {
114 SCHEMATIC_SETTINGS& projSettings = schFrame->Schematic().Settings();
116 }
117
118 return true;
119}
120
121
123{
125 cfg.Load(); // Loading without a file will init to defaults
126
127 loadEEschemaSettings( &cfg );
128}
wxBitmapBundle KiBitmapBundle(BITMAPS aBitmap)
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)
virtual SETTINGS_MANAGER & GetSettingsManager() const
Definition: pgm_base.h:142
These settings were stored in SCH_BASE_FRAME previously.
SCHEMATIC_SETTINGS & Settings() const
Definition: schematic.cpp:287
Schematic editor (Eeschema) main window.
SCHEMATIC & Schematic() const
T * GetAppSettings()
Returns a handle to the a given settings by type If the settings have already been loaded,...
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)
Function ValueFromString converts aTextValue in aUnits to internal units used by the application.
Definition: eda_units.cpp:667
PGM_BASE & Pgm()
The global Program "get" accessor.
Definition: pgm_base.cpp:1059
see class PGM_BASE