KiCad PCB EDA Suite
All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Modules Pages Concepts
sch_sheet.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) 2016 Jean-Pierre Charras, jp.charras at wanadoo.fr
5 * Copyright (C) 2023 CERN
6 * Copyright The KiCad Developers, see AUTHORS.txt for contributors.
7 *
8 * This program is free software; you can redistribute it and/or
9 * modify it under the terms of the GNU General Public License
10 * as published by the Free Software Foundation; either version 2
11 * of the License, or (at your option) any later version.
12 *
13 * This program is distributed in the hope that it will be useful,
14 * but WITHOUT ANY WARRANTY; without even the implied warranty of
15 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
16 * GNU General Public License for more details.
17 *
18 * You should have received a copy of the GNU General Public License
19 * along with this program; if not, you may find one here:
20 * http://www.gnu.org/licenses/old-licenses/gpl-2.0.html
21 * or you may search the http://www.gnu.org website for the version 2 license,
22 * or you may write to the Free Software Foundation, Inc.,
23 * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA
24 */
25
26#include <cstdlib>
27
28#include <bitmaps.h>
29#include <core/mirror.h>
30#include <core/kicad_algo.h>
31#include <sch_draw_panel.h>
32#include <trigo.h>
33#include <sch_edit_frame.h>
34#include <plotters/plotter.h>
35#include <sch_plotter.h>
36#include <string_utils.h>
37#include <widgets/msgpanel.h>
38#include <math/util.h> // for KiROUND
39#include <sch_sheet.h>
40#include <sch_sheet_path.h>
41#include <sch_sheet_pin.h>
42#include <sch_symbol.h>
43#include <sch_painter.h>
44#include <schematic.h>
47#include <trace_helpers.h>
48#include <pgm_base.h>
49#include <wx/log.h>
50
51SCH_SHEET::SCH_SHEET( EDA_ITEM* aParent, const VECTOR2I& aPos, VECTOR2I aSize ) :
52 SCH_ITEM( aParent, SCH_SHEET_T ),
53 m_excludedFromSim( false ),
54 m_excludedFromBOM( false ),
55 m_excludedFromBoard( false ),
56 m_DNP( false )
57{
59 m_pos = aPos;
60 m_size = aSize;
61 m_screen = nullptr;
62
63 m_borderWidth = 0;
64 m_borderColor = COLOR4D::UNSPECIFIED;
65 m_backgroundColor = COLOR4D::UNSPECIFIED;
67
68 m_fields.emplace_back( aPos, FIELD_T::SHEET_NAME, this,
69 GetDefaultFieldName( FIELD_T::SHEET_NAME, DO_TRANSLATE ) );
70
71 m_fields.emplace_back( aPos, FIELD_T::SHEET_FILENAME, this,
72 GetDefaultFieldName( FIELD_T::SHEET_FILENAME, DO_TRANSLATE ) );
73
75}
76
77
79 SCH_ITEM( aSheet )
80{
81 m_pos = aSheet.m_pos;
82 m_size = aSheet.m_size;
83 m_layer = aSheet.m_layer;
84 const_cast<KIID&>( m_Uuid ) = aSheet.m_Uuid;
85 m_fields = aSheet.m_fields;
87 m_screen = aSheet.m_screen;
88
92 m_DNP = aSheet.m_DNP;
93
97 m_instances = aSheet.m_instances;
98
99 for( SCH_SHEET_PIN* pin : aSheet.m_pins )
100 {
101 m_pins.emplace_back( new SCH_SHEET_PIN( *pin ) );
102 m_pins.back()->SetParent( this );
103 }
104
105 for( SCH_FIELD& field : m_fields )
106 field.SetParent( this );
107
108 if( m_screen )
110}
111
112
114{
115 // also, look at the associated sheet & its reference count
116 // perhaps it should be deleted also.
117 if( m_screen )
118 {
120
121 if( m_screen->GetRefCount() == 0 )
122 delete m_screen;
123 }
124
125 // We own our pins; delete them
126 for( SCH_SHEET_PIN* pin : m_pins )
127 delete pin;
128}
129
130
132{
133 return new SCH_SHEET( *this );
134}
135
136
138{
139 if( aScreen == m_screen )
140 return;
141
142 if( m_screen != nullptr )
143 {
145
146 if( m_screen->GetRefCount() == 0 )
147 {
148 delete m_screen;
149 m_screen = nullptr;
150 }
151 }
152
153 m_screen = aScreen;
154
155 if( m_screen )
157}
158
159
161{
162 if( m_screen == nullptr )
163 return 0;
164
165 return m_screen->GetRefCount();
166}
167
168
170{
171 wxCHECK_MSG( Schematic(), false, "Can't call IsRootSheet without setting a schematic" );
172
173 return &Schematic()->Root() == this;
174}
175
176
177void SCH_SHEET::GetContextualTextVars( wxArrayString* aVars ) const
178{
179 auto add =
180 [&]( const wxString& aVar )
181 {
182 if( !alg::contains( *aVars, aVar ) )
183 aVars->push_back( aVar );
184 };
185
186 for( const SCH_FIELD& field : m_fields )
187 {
188 if( field.IsMandatory() )
189 add( field.GetCanonicalName().Upper() );
190 else
191 add( field.GetName() );
192 }
193
194 SCH_SHEET_PATH sheetPath = findSelf();
195
196 if( sheetPath.size() >= 2 )
197 {
198 sheetPath.pop_back();
199 sheetPath.Last()->GetContextualTextVars( aVars );
200 }
201 else if( Schematic() )
202 {
204 }
205
206 add( wxT( "#" ) );
207 add( wxT( "##" ) );
208 add( wxT( "SHEETPATH" ) );
209 add( wxT( "EXCLUDE_FROM_BOM" ) );
210 add( wxT( "EXCLUDE_FROM_BOARD" ) );
211 add( wxT( "EXCLUDE_FROM_SIM" ) );
212 add( wxT( "DNP" ) );
213 add( wxT( "ERC_ERROR <message_text>" ) );
214 add( wxT( "ERC_WARNING <message_text>" ) );
215
217}
218
219
220bool SCH_SHEET::ResolveTextVar( const SCH_SHEET_PATH* aPath, wxString* token, int aDepth ) const
221{
222 wxCHECK( aPath, false );
223
224 SCHEMATIC* schematic = Schematic();
225
226 if( !schematic )
227 return false;
228
229 if( token->Contains( ':' ) )
230 {
231 if( schematic->ResolveCrossReference( token, aDepth + 1 ) )
232 return true;
233 }
234
235 for( const SCH_FIELD& field : m_fields )
236 {
237 wxString fieldName = field.IsMandatory() ? field.GetCanonicalName().Upper()
238 : field.GetName();
239
240 if( token->IsSameAs( fieldName ) )
241 {
242 *token = field.GetShownText( aPath, false, aDepth + 1 );
243 return true;
244 }
245 }
246
247 PROJECT* project = &schematic->Prj();
248
249 // We cannot resolve text variables initially on load as we need to first load the screen and
250 // then parse the hierarchy. So skip the resolution if the screen isn't set yet
252 {
253 return true;
254 }
255
256 if( token->IsSameAs( wxT( "#" ) ) )
257 {
258 *token = wxString::Format( "%s", aPath->GetPageNumber() );
259 return true;
260 }
261 else if( token->IsSameAs( wxT( "##" ) ) )
262 {
263 *token = wxString::Format( wxT( "%d" ), (int) schematic->Hierarchy().size() );
264 return true;
265 }
266 else if( token->IsSameAs( wxT( "SHEETPATH" ) ) )
267 {
268 *token = aPath->PathHumanReadable();
269 return true;
270 }
271 else if( token->IsSameAs( wxT( "EXCLUDE_FROM_BOM" ) ) )
272 {
273 *token = wxEmptyString;
274
275 if( aPath->GetExcludedFromBOM() || this->GetExcludedFromBOM() )
276 *token = _( "Excluded from BOM" );
277
278 return true;
279 }
280 else if( token->IsSameAs( wxT( "EXCLUDE_FROM_BOARD" ) ) )
281 {
282 *token = wxEmptyString;
283
284 if( aPath->GetExcludedFromBoard() || this->GetExcludedFromBoard() )
285 *token = _( "Excluded from board" );
286
287 return true;
288 }
289 else if( token->IsSameAs( wxT( "EXCLUDE_FROM_SIM" ) ) )
290 {
291 *token = wxEmptyString;
292
293 if( aPath->GetExcludedFromSim() || this->GetExcludedFromSim() )
294 *token = _( "Excluded from simulation" );
295
296 return true;
297 }
298 else if( token->IsSameAs( wxT( "DNP" ) ) )
299 {
300 *token = wxEmptyString;
301
302 if( aPath->GetDNP() || this->GetDNP() )
303 *token = _( "DNP" );
304
305 return true;
306 }
307
308 // See if parent can resolve it (these will recurse to ancestors)
309
310 if( aPath->size() >= 2 )
311 {
312 SCH_SHEET_PATH path = *aPath;
313 path.pop_back();
314
315 if( path.Last()->ResolveTextVar( &path, token, aDepth + 1 ) )
316 return true;
317 }
318 else
319 {
320 if( schematic->ResolveTextVar( aPath, token, aDepth + 1 ) )
321 return true;
322 }
323
324 return false;
325}
326
327
329{
330 SCH_ITEM::SwapFlags( aItem );
331
332 wxCHECK_RET( aItem->Type() == SCH_SHEET_T,
333 wxString::Format( wxT( "SCH_SHEET object cannot swap data with %s object." ),
334 aItem->GetClass() ) );
335
336 SCH_SHEET* sheet = ( SCH_SHEET* ) aItem;
337
338 std::swap( m_pos, sheet->m_pos );
339 std::swap( m_size, sheet->m_size );
340 m_fields.swap( sheet->m_fields );
341 std::swap( m_fieldsAutoplaced, sheet->m_fieldsAutoplaced );
342 m_pins.swap( sheet->m_pins );
343
344 // Update parent pointers after swapping.
345 for( SCH_SHEET_PIN* sheetPin : m_pins )
346 sheetPin->SetParent( this );
347
348 for( SCH_SHEET_PIN* sheetPin : sheet->m_pins )
349 sheetPin->SetParent( sheet );
350
351 for( SCH_FIELD& field : m_fields )
352 field.SetParent( this );
353
354 for( SCH_FIELD& field : sheet->m_fields )
355 field.SetParent( sheet );
356
357 std::swap( m_excludedFromSim, sheet->m_excludedFromSim );
358 std::swap( m_excludedFromBOM, sheet->m_excludedFromBOM );
359 std::swap( m_excludedFromBoard, sheet->m_excludedFromBoard );
360 std::swap( m_DNP, sheet->m_DNP );
361
362 std::swap( m_borderWidth, sheet->m_borderWidth );
363 std::swap( m_borderColor, sheet->m_borderColor );
364 std::swap( m_backgroundColor, sheet->m_backgroundColor );
365 std::swap( m_instances, sheet->m_instances );
366}
367
368
370{
371 if( SCH_FIELD* field = FindField( m_fields, aFieldType ) )
372 return field;
373
374 m_fields.emplace_back( this, aFieldType );
375 return &m_fields.back();
376}
377
378
379const SCH_FIELD* SCH_SHEET::GetField( FIELD_T aFieldType ) const
380{
381 return FindField( m_fields, aFieldType );
382}
383
384
386{
387 return NextFieldOrdinal( m_fields );
388}
389
390
391void SCH_SHEET::SetFields( const std::vector<SCH_FIELD>& aFields )
392{
393 m_fields = aFields;
394
395 // Make sure that we get the UNIX variant of the file path
396 SetFileName( GetField( FIELD_T::SHEET_FILENAME )->GetText() );
397}
398
399
401{
402 wxASSERT( aSheetPin != nullptr );
403 wxASSERT( aSheetPin->Type() == SCH_SHEET_PIN_T );
404
405 aSheetPin->SetParent( this );
406 m_pins.push_back( aSheetPin );
407 renumberPins();
408}
409
410
411void SCH_SHEET::RemovePin( const SCH_SHEET_PIN* aSheetPin )
412{
413 wxASSERT( aSheetPin != nullptr );
414 wxASSERT( aSheetPin->Type() == SCH_SHEET_PIN_T );
415
416 for( auto i = m_pins.begin(); i < m_pins.end(); ++i )
417 {
418 if( *i == aSheetPin )
419 {
420 m_pins.erase( i );
421 renumberPins();
422 return;
423 }
424 }
425}
426
427
428bool SCH_SHEET::HasPin( const wxString& aName ) const
429{
430 for( SCH_SHEET_PIN* pin : m_pins )
431 {
432 if( pin->GetText().Cmp( aName ) == 0 )
433 return true;
434 }
435
436 return false;
437}
438
439
440bool SCH_SHEET::doIsConnected( const VECTOR2I& aPosition ) const
441{
442 for( SCH_SHEET_PIN* sheetPin : m_pins )
443 {
444 if( sheetPin->GetPosition() == aPosition )
445 return true;
446 }
447
448 return false;
449}
450
451
453{
454 int leftRight = 0;
455 int topBottom = 0;
456
457 for( SCH_SHEET_PIN* pin : m_pins )
458 {
459 switch( pin->GetSide() )
460 {
461 case SHEET_SIDE::LEFT: leftRight++; break;
462 case SHEET_SIDE::RIGHT: leftRight++; break;
463 case SHEET_SIDE::TOP: topBottom++; break;
464 case SHEET_SIDE::BOTTOM: topBottom++; break;
465 default: break;
466 }
467 }
468
469 return topBottom > 0 && leftRight == 0;
470}
471
472
474{
475 for( SCH_SHEET_PIN* pin : m_pins )
476 {
477 /* Search the schematic for a hierarchical label corresponding to this sheet label. */
478 const SCH_HIERLABEL* HLabel = nullptr;
479
480 for( SCH_ITEM* aItem : m_screen->Items().OfType( SCH_HIER_LABEL_T ) )
481 {
482 if( !pin->GetText().Cmp( static_cast<SCH_HIERLABEL*>( aItem )->GetText() ) )
483 {
484 HLabel = static_cast<SCH_HIERLABEL*>( aItem );
485 break;
486 }
487 }
488
489 if( HLabel == nullptr ) // Corresponding hierarchical label not found.
490 return true;
491 }
492
493 return false;
494}
495
496
497int bumpToNextGrid( const int aVal, const int aDirection )
498{
499 constexpr int gridSize = schIUScale.MilsToIU( 50 );
500
501 int base = aVal / gridSize;
502 int excess = abs( aVal % gridSize );
503
504 if( aDirection > 0 )
505 {
506 return ( base + 1 ) * gridSize;
507 }
508 else if( excess > 0 )
509 {
510 return ( base ) * gridSize;
511 }
512 else
513 {
514 return ( base - 1 ) * gridSize;
515 }
516}
517
518
519int SCH_SHEET::GetMinWidth( bool aFromLeft ) const
520{
521 int pinsLeft = m_pos.x + m_size.x;
522 int pinsRight = m_pos.x;
523
524 for( size_t i = 0; i < m_pins.size(); i++ )
525 {
526 SHEET_SIDE edge = m_pins[i]->GetSide();
527
528 if( edge == SHEET_SIDE::TOP || edge == SHEET_SIDE::BOTTOM )
529 {
530 BOX2I pinRect = m_pins[i]->GetBoundingBox();
531
532 pinsLeft = std::min( pinsLeft, pinRect.GetLeft() );
533 pinsRight = std::max( pinsRight, pinRect.GetRight() );
534 }
535 }
536
537 pinsLeft = bumpToNextGrid( pinsLeft, -1 );
538 pinsRight = bumpToNextGrid( pinsRight, 1 );
539
540 int pinMinWidth;
541
542 if( pinsLeft >= pinsRight )
543 pinMinWidth = 0;
544 else if( aFromLeft )
545 pinMinWidth = pinsRight - m_pos.x;
546 else
547 pinMinWidth = m_pos.x + m_size.x - pinsLeft;
548
549 return std::max( pinMinWidth, schIUScale.MilsToIU( MIN_SHEET_WIDTH ) );
550}
551
552
553int SCH_SHEET::GetMinHeight( bool aFromTop ) const
554{
555 int pinsTop = m_pos.y + m_size.y;
556 int pinsBottom = m_pos.y;
557
558 for( size_t i = 0; i < m_pins.size(); i++ )
559 {
560 SHEET_SIDE edge = m_pins[i]->GetSide();
561
562 if( edge == SHEET_SIDE::RIGHT || edge == SHEET_SIDE::LEFT )
563 {
564 BOX2I pinRect = m_pins[i]->GetBoundingBox();
565
566 pinsTop = std::min( pinsTop, pinRect.GetTop() );
567 pinsBottom = std::max( pinsBottom, pinRect.GetBottom() );
568 }
569 }
570
571 pinsTop = bumpToNextGrid( pinsTop, -1 );
572 pinsBottom = bumpToNextGrid( pinsBottom, 1 );
573
574 int pinMinHeight;
575
576 if( pinsTop >= pinsBottom )
577 pinMinHeight = 0;
578 else if( aFromTop )
579 pinMinHeight = pinsBottom - m_pos.y;
580 else
581 pinMinHeight = m_pos.y + m_size.y - pinsTop;
582
583 return std::max( pinMinHeight, schIUScale.MilsToIU( MIN_SHEET_HEIGHT ) );
584}
585
586
588{
589 std::vector<SCH_SHEET_PIN*> pins = m_pins;
590
591 m_pins.clear();
592
593 for( SCH_SHEET_PIN* pin : pins )
594 {
595 /* Search the schematic for a hierarchical label corresponding to this sheet label. */
596 const SCH_HIERLABEL* HLabel = nullptr;
597
598 for( SCH_ITEM* aItem : m_screen->Items().OfType( SCH_HIER_LABEL_T ) )
599 {
600 if( pin->GetText().CmpNoCase( static_cast<SCH_HIERLABEL*>( aItem )->GetText() ) == 0 )
601 {
602 HLabel = static_cast<SCH_HIERLABEL*>( aItem );
603 break;
604 }
605 }
606
607 if( HLabel )
608 m_pins.push_back( pin );
609 }
610}
611
612
614{
615 for( SCH_SHEET_PIN* pin : m_pins )
616 {
617 if( pin->HitTest( aPosition ) )
618 return pin;
619 }
620
621 return nullptr;
622}
623
624
626{
627 if( GetBorderWidth() > 0 )
628 return GetBorderWidth();
629
630 if( Schematic() )
632
634}
635
636
638{
639 SCH_FIELD* sheetNameField = GetField( FIELD_T::SHEET_NAME );
640 VECTOR2I textSize = sheetNameField->GetTextSize();
641 int borderMargin = KiROUND( GetPenWidth() / 2.0 ) + 4;
642 int margin = borderMargin + KiROUND( std::max( textSize.x, textSize.y ) * 0.5 );
643
645 {
646 sheetNameField->SetTextPos( m_pos + VECTOR2I( -margin, m_size.y ) );
647 sheetNameField->SetHorizJustify( GR_TEXT_H_ALIGN_LEFT );
648 sheetNameField->SetVertJustify( GR_TEXT_V_ALIGN_BOTTOM );
649 sheetNameField->SetTextAngle( ANGLE_VERTICAL );
650 }
651 else
652 {
653 sheetNameField->SetTextPos( m_pos + VECTOR2I( 0, -margin ) );
654 sheetNameField->SetHorizJustify( GR_TEXT_H_ALIGN_LEFT );
655 sheetNameField->SetVertJustify( GR_TEXT_V_ALIGN_BOTTOM );
656 sheetNameField->SetTextAngle( ANGLE_HORIZONTAL );
657 }
658
659 SCH_FIELD* sheetFilenameField = GetField( FIELD_T::SHEET_FILENAME );
660
661 textSize = sheetFilenameField->GetTextSize();
662 margin = borderMargin + KiROUND( std::max( textSize.x, textSize.y ) * 0.4 );
663
665 {
666 sheetFilenameField->SetTextPos( m_pos + VECTOR2I( m_size.x + margin, m_size.y ) );
667 sheetFilenameField->SetHorizJustify( GR_TEXT_H_ALIGN_LEFT );
668 sheetFilenameField->SetVertJustify( GR_TEXT_V_ALIGN_TOP );
669 sheetFilenameField->SetTextAngle( ANGLE_VERTICAL );
670 }
671 else
672 {
673 sheetFilenameField->SetTextPos( m_pos + VECTOR2I( 0, m_size.y + margin ) );
674 sheetFilenameField->SetHorizJustify( GR_TEXT_H_ALIGN_LEFT );
675 sheetFilenameField->SetVertJustify( GR_TEXT_V_ALIGN_TOP );
676 sheetFilenameField->SetTextAngle( ANGLE_HORIZONTAL );
677 }
678
679 if( aAlgo == AUTOPLACE_AUTO || aAlgo == AUTOPLACE_MANUAL )
680 m_fieldsAutoplaced = aAlgo;
681}
682
683
684std::vector<int> SCH_SHEET::ViewGetLayers() const
685{
686 // Sheet pins are drawn by their parent sheet, so the parent needs to draw to LAYER_DANGLING
689}
690
691
693{
695 BOX2I box( m_pos, m_size );
696 int lineWidth = GetPenWidth();
697 int textLength = 0;
698
699 // Calculate bounding box X size:
700 end.x = std::max( m_size.x, textLength );
701
702 // Calculate bounding box pos:
703 end.y = m_size.y;
704 end += m_pos;
705
706 box.SetEnd( end );
707 box.Inflate( lineWidth / 2 );
708
709 return box;
710}
711
712
714{
715 BOX2I bbox = GetBodyBoundingBox();
716
717 for( const SCH_FIELD& field : m_fields )
718 bbox.Merge( field.GetBoundingBox() );
719
720 return bbox;
721}
722
723
725{
726 BOX2I box( m_pos, m_size );
727 return box.GetCenter();
728}
729
730
732{
733 int n = 0;
734
735 if( m_screen )
736 {
737 for( SCH_ITEM* aItem : m_screen->Items().OfType( SCH_SYMBOL_T ) )
738 {
739 SCH_SYMBOL* symbol = (SCH_SYMBOL*) aItem;
740
741 if( symbol->GetField( FIELD_T::VALUE )->GetText().GetChar( 0 ) != '#' )
742 n++;
743 }
744
745 for( SCH_ITEM* aItem : m_screen->Items().OfType( SCH_SHEET_T ) )
746 n += static_cast<const SCH_SHEET*>( aItem )->SymbolCount();
747 }
748
749 return n;
750}
751
752
753bool SCH_SHEET::SearchHierarchy( const wxString& aFilename, SCH_SCREEN** aScreen )
754{
755 if( m_screen )
756 {
757 // Only check the root sheet once and don't recurse.
758 if( !GetParent() )
759 {
760 if( m_screen && m_screen->GetFileName().Cmp( aFilename ) == 0 )
761 {
762 *aScreen = m_screen;
763 return true;
764 }
765 }
766
767 for( SCH_ITEM* aItem : m_screen->Items().OfType( SCH_SHEET_T ) )
768 {
769 SCH_SHEET* sheet = static_cast<SCH_SHEET*>( aItem );
770 SCH_SCREEN* screen = sheet->m_screen;
771
772 // Must use the screen's path (which is always absolute) rather than the
773 // sheet's (which could be relative).
774 if( screen && screen->GetFileName().Cmp( aFilename ) == 0 )
775 {
776 *aScreen = screen;
777 return true;
778 }
779
780 if( sheet->SearchHierarchy( aFilename, aScreen ) )
781 return true;
782 }
783 }
784
785 return false;
786}
787
788
790{
791 if( m_screen )
792 {
793 aList->push_back( this );
794
795 if( m_screen == aScreen )
796 return true;
797
798 for( EDA_ITEM* item : m_screen->Items().OfType( SCH_SHEET_T ) )
799 {
800 SCH_SHEET* sheet = static_cast<SCH_SHEET*>( item );
801
802 if( sheet->LocatePathOfScreen( aScreen, aList ) )
803 return true;
804 }
805
806 aList->pop_back();
807 }
808
809 return false;
810}
811
812
813int SCH_SHEET::CountSheets( const wxString& aFilename ) const
814{
815 int count = 0;
816
817 if( m_screen )
818 {
819 if( m_screen->GetFileName().Cmp( aFilename ) == 0 )
820 count++;
821
822 for( SCH_ITEM* aItem : m_screen->Items().OfType( SCH_SHEET_T ) )
823 count += static_cast<SCH_SHEET*>( aItem )->CountSheets( aFilename );
824 }
825
826 return count;
827}
828
829
831{
832 int count = 1; //1 = this!!
833
834 if( m_screen )
835 {
836 for( SCH_ITEM* aItem : m_screen->Items().OfType( SCH_SHEET_T ) )
837 count += static_cast<SCH_SHEET*>( aItem )->CountSheets();
838 }
839
840 return count;
841}
842
843
844void SCH_SHEET::GetMsgPanelInfo( EDA_DRAW_FRAME* aFrame, std::vector<MSG_PANEL_ITEM>& aList )
845{
846 // Don't use GetShownText(); we want to see the variable references here
847 aList.emplace_back( _( "Sheet Name" ), KIUI::EllipsizeStatusText( aFrame, GetName() ) );
848
849 if( SCH_EDIT_FRAME* schframe = dynamic_cast<SCH_EDIT_FRAME*>( aFrame ) )
850 {
851 SCH_SHEET_PATH path = schframe->GetCurrentSheet();
852 path.push_back( this );
853
854 aList.emplace_back( _( "Hierarchical Path" ), path.PathHumanReadable( false, true ) );
855 }
856
857 // Don't use GetShownText(); we want to see the variable references here
858 aList.emplace_back( _( "File Name" ), KIUI::EllipsizeStatusText( aFrame, GetFileName() ) );
859
860 wxArrayString msgs;
861 wxString msg;
862
863 if( GetExcludedFromSim() )
864 msgs.Add( _( "Simulation" ) );
865
866 if( GetExcludedFromBOM() )
867 msgs.Add( _( "BOM" ) );
868
870 msgs.Add( _( "Board" ) );
871
872 if( GetDNP() )
873 msgs.Add( _( "DNP" ) );
874
875 msg = wxJoin( msgs, '|' );
876 msg.Replace( '|', wxS( ", " ) );
877
878 if( !msg.empty() )
879 aList.emplace_back( _( "Exclude from" ), msg );
880}
881
882
884{
885 VECTOR2I delta = aPosition - m_pos;
886
887 m_pos = aPosition;
888
889 for( SCH_FIELD& field : m_fields )
890 field.Move( delta );
891}
892
893
894void SCH_SHEET::Move( const VECTOR2I& aMoveVector )
895{
896 m_pos += aMoveVector;
897
898 for( SCH_SHEET_PIN* pin : m_pins )
899 pin->Move( aMoveVector );
900
901 for( SCH_FIELD& field : m_fields )
902 field.Move( aMoveVector );
903}
904
905
906void SCH_SHEET::Rotate( const VECTOR2I& aCenter, bool aRotateCCW )
907{
908 VECTOR2I prev = m_pos;
909
910 RotatePoint( m_pos, aCenter, aRotateCCW ? ANGLE_90 : ANGLE_270 );
911 RotatePoint( &m_size.x, &m_size.y, aRotateCCW ? ANGLE_90 : ANGLE_270 );
912
913 if( m_size.x < 0 )
914 {
915 m_pos.x += m_size.x;
916 m_size.x = -m_size.x;
917 }
918
919 if( m_size.y < 0 )
920 {
921 m_pos.y += m_size.y;
922 m_size.y = -m_size.y;
923 }
924
925 // Pins must be rotated first as that's how we determine vertical vs horizontal
926 // orientation for auto-placement
927 for( SCH_SHEET_PIN* sheetPin : m_pins )
928 sheetPin->Rotate( aCenter, aRotateCCW );
929
931 {
933 }
934 else
935 {
936 // Move the fields to the new position because the parent itself has moved.
937 for( SCH_FIELD& field : m_fields )
938 {
939 VECTOR2I pos = field.GetTextPos();
940 pos.x -= prev.x - m_pos.x;
941 pos.y -= prev.y - m_pos.y;
942 field.SetTextPos( pos );
943 }
944 }
945}
946
947
949{
950 int dy = m_pos.y;
951
952 MIRROR( m_pos.y, aCenter );
953 m_pos.y -= m_size.y;
954 dy -= m_pos.y; // 0,dy is the move vector for this transform
955
956 for( SCH_SHEET_PIN* sheetPin : m_pins )
957 sheetPin->MirrorVertically( aCenter );
958
959 for( SCH_FIELD& field : m_fields )
960 {
961 VECTOR2I pos = field.GetTextPos();
962 pos.y -= dy;
963 field.SetTextPos( pos );
964 }
965}
966
967
969{
970 int dx = m_pos.x;
971
972 MIRROR( m_pos.x, aCenter );
973 m_pos.x -= m_size.x;
974 dx -= m_pos.x; // dx,0 is the move vector for this transform
975
976 for( SCH_SHEET_PIN* sheetPin : m_pins )
977 sheetPin->MirrorHorizontally( aCenter );
978
979 for( SCH_FIELD& field : m_fields )
980 {
981 VECTOR2I pos = field.GetTextPos();
982 pos.x -= dx;
983 field.SetTextPos( pos );
984 }
985}
986
987
988void SCH_SHEET::SetPosition( const VECTOR2I& aPosition )
989{
990 // Remember the sheet and all pin sheet positions must be
991 // modified. So use Move function to do that.
992 Move( aPosition - m_pos );
993}
994
995
996void SCH_SHEET::Resize( const VECTOR2I& aSize )
997{
998 if( aSize == m_size )
999 return;
1000
1001 m_size = aSize;
1002
1003 // Move the fields if we're in autoplace mode
1006
1007 // Move the sheet labels according to the new sheet size.
1008 for( SCH_SHEET_PIN* sheetPin : m_pins )
1009 sheetPin->ConstrainOnEdge( sheetPin->GetPosition(), false );
1010}
1011
1012
1013bool SCH_SHEET::Matches( const EDA_SEARCH_DATA& aSearchData, void* aAuxData ) const
1014{
1015 // Sheets are searchable via the child field and pin item text.
1016 return false;
1017}
1018
1019
1021{
1022 int id = 2;
1023
1024 for( SCH_SHEET_PIN* pin : m_pins )
1025 {
1026 pin->SetNumber( id );
1027 id++;
1028 }
1029}
1030
1031
1033{
1034 wxCHECK_MSG( Schematic(), SCH_SHEET_PATH(), "Can't call findSelf without a schematic" );
1035
1036 SCH_SHEET_PATH sheetPath = Schematic()->CurrentSheet();
1037
1038 while( !sheetPath.empty() && sheetPath.Last() != this )
1039 sheetPath.pop_back();
1040
1041 if( sheetPath.empty() )
1042 {
1043 // If we weren't in the hierarchy, then we must be a child of the current sheet.
1044 sheetPath = Schematic()->CurrentSheet();
1045 sheetPath.push_back( const_cast<SCH_SHEET*>( this ) );
1046 }
1047
1048 return sheetPath;
1049}
1050
1051
1052void SCH_SHEET::GetEndPoints( std::vector <DANGLING_END_ITEM>& aItemList )
1053{
1054 for( SCH_SHEET_PIN* sheetPin : m_pins )
1055 {
1056 wxCHECK2_MSG( sheetPin->Type() == SCH_SHEET_PIN_T, continue,
1057 wxT( "Invalid item in schematic sheet pin list. Bad programmer!" ) );
1058
1059 sheetPin->GetEndPoints( aItemList );
1060 }
1061}
1062
1063
1064bool SCH_SHEET::UpdateDanglingState( std::vector<DANGLING_END_ITEM>& aItemListByType,
1065 std::vector<DANGLING_END_ITEM>& aItemListByPos,
1066 const SCH_SHEET_PATH* aPath )
1067{
1068 bool changed = false;
1069
1070 for( SCH_SHEET_PIN* sheetPin : m_pins )
1071 changed |= sheetPin->UpdateDanglingState( aItemListByType, aItemListByPos );
1072
1073 return changed;
1074}
1075
1076
1078 const SCH_SHEET_PATH* aInstance ) const
1079{
1080 // Do not compare to ourself.
1081 if( aItem == this )
1082 return false;
1083
1084 const SCH_SHEET* sheet = dynamic_cast<const SCH_SHEET*>( aItem );
1085
1086 // Don't compare against a different SCH_ITEM.
1087 wxCHECK( sheet, false );
1088
1089 if( GetPosition() != sheet->GetPosition() )
1090 return true;
1091
1092 // Technically this cannot happen because undo/redo does not support reloading sheet
1093 // file association changes. This was just added so that it doesn't get missed should
1094 // we ever fix the undo/redo issue.
1095 if( ( GetFileName() != sheet->GetFileName() ) || ( GetName() != sheet->GetName() ) )
1096 return true;
1097
1098 if( m_pins.size() != sheet->m_pins.size() )
1099 return true;
1100
1101 for( size_t i = 0; i < m_pins.size(); i++ )
1102 {
1103 if( m_pins[i]->HasConnectivityChanges( sheet->m_pins[i] ) )
1104 return true;
1105 }
1106
1107 return false;
1108}
1109
1110
1111std::vector<VECTOR2I> SCH_SHEET::GetConnectionPoints() const
1112{
1113 std::vector<VECTOR2I> retval;
1114
1115 for( SCH_SHEET_PIN* sheetPin : m_pins )
1116 retval.push_back( sheetPin->GetPosition() );
1117
1118 return retval;
1119}
1120
1121
1122INSPECT_RESULT SCH_SHEET::Visit( INSPECTOR aInspector, void* testData,
1123 const std::vector<KICAD_T>& aScanTypes )
1124{
1125 for( KICAD_T scanType : aScanTypes )
1126 {
1127 // If caller wants to inspect my type
1128 if( scanType == SCH_LOCATE_ANY_T || scanType == Type() )
1129 {
1130 if( INSPECT_RESULT::QUIT == aInspector( this, nullptr ) )
1131 return INSPECT_RESULT::QUIT;
1132 }
1133
1134 if( scanType == SCH_LOCATE_ANY_T || scanType == SCH_FIELD_T )
1135 {
1136 // Test the sheet fields.
1137 for( SCH_FIELD& field : m_fields )
1138 {
1139 if( INSPECT_RESULT::QUIT == aInspector( &field, this ) )
1140 return INSPECT_RESULT::QUIT;
1141 }
1142 }
1143
1144 if( scanType == SCH_LOCATE_ANY_T || scanType == SCH_SHEET_PIN_T )
1145 {
1146 // Test the sheet labels.
1147 for( SCH_SHEET_PIN* sheetPin : m_pins )
1148 {
1149 if( INSPECT_RESULT::QUIT == aInspector( sheetPin, this ) )
1150 return INSPECT_RESULT::QUIT;
1151 }
1152 }
1153 }
1154
1155 return INSPECT_RESULT::CONTINUE;
1156}
1157
1158
1159void SCH_SHEET::RunOnChildren( const std::function<void( SCH_ITEM* )>& aFunction, RECURSE_MODE aMode )
1160{
1161 for( SCH_FIELD& field : m_fields )
1162 aFunction( &field );
1163
1164 for( SCH_SHEET_PIN* pin : m_pins )
1165 aFunction( pin );
1166}
1167
1168
1169wxString SCH_SHEET::GetItemDescription( UNITS_PROVIDER* aUnitsProvider, bool aFull ) const
1170{
1171 const SCH_FIELD* sheetnameField = GetField( FIELD_T::SHEET_NAME );
1172
1173 return wxString::Format( _( "Hierarchical Sheet %s" ),
1174 aFull ? sheetnameField->GetShownText( false )
1175 : KIUI::EllipsizeMenuText( sheetnameField->GetText() ) );
1176}
1177
1178
1180{
1181 return BITMAPS::add_hierarchical_subsheet;
1182}
1183
1184
1185bool SCH_SHEET::HitTest( const VECTOR2I& aPosition, int aAccuracy ) const
1186{
1187 BOX2I rect = GetBodyBoundingBox();
1188
1189 rect.Inflate( aAccuracy );
1190
1191 return rect.Contains( aPosition );
1192}
1193
1194
1195bool SCH_SHEET::HitTest( const BOX2I& aRect, bool aContained, int aAccuracy ) const
1196{
1197 BOX2I rect = aRect;
1198
1199 rect.Inflate( aAccuracy );
1200
1201 if( aContained )
1202 return rect.Contains( GetBodyBoundingBox() );
1203
1204 return rect.Intersects( GetBodyBoundingBox() );
1205}
1206
1207
1208void SCH_SHEET::Plot( PLOTTER* aPlotter, bool aBackground, const SCH_PLOT_OPTS& aPlotOpts,
1209 int aUnit, int aBodyStyle, const VECTOR2I& aOffset, bool aDimmed )
1210{
1211 if( aBackground && !aPlotter->GetColorMode() )
1212 return;
1213
1214 SCH_RENDER_SETTINGS* renderSettings = getRenderSettings( aPlotter );
1215 COLOR4D borderColor = GetBorderColor();
1216 COLOR4D backgroundColor = GetBackgroundColor();
1217
1218 if( renderSettings->m_OverrideItemColors || borderColor == COLOR4D::UNSPECIFIED )
1219 borderColor = aPlotter->RenderSettings()->GetLayerColor( LAYER_SHEET );
1220
1221 if( renderSettings->m_OverrideItemColors || backgroundColor == COLOR4D::UNSPECIFIED )
1222 backgroundColor = aPlotter->RenderSettings()->GetLayerColor( LAYER_SHEET_BACKGROUND );
1223
1224 if( aBackground && backgroundColor.a > 0.0 )
1225 {
1226 aPlotter->SetColor( backgroundColor );
1227 aPlotter->Rect( m_pos, m_pos + m_size, FILL_T::FILLED_SHAPE, 1 );
1228 }
1229 else
1230 {
1231 aPlotter->SetColor( borderColor );
1232
1233 int penWidth = GetEffectivePenWidth( getRenderSettings( aPlotter ) );
1234 aPlotter->Rect( m_pos, m_pos + m_size, FILL_T::NO_FILL, penWidth );
1235 }
1236
1237 // Make the sheet object a clickable hyperlink (e.g. for PDF plotter)
1238 if( aPlotOpts.m_PDFHierarchicalLinks )
1239 {
1240 aPlotter->HyperlinkBox( GetBoundingBox(),
1241 EDA_TEXT::GotoPageHref( findSelf().GetPageNumber() ) );
1242 }
1243 else if( aPlotOpts.m_PDFPropertyPopups )
1244 {
1245 std::vector<wxString> properties;
1246
1247 properties.emplace_back( EDA_TEXT::GotoPageHref( findSelf().GetPageNumber() ) );
1248
1249 for( const SCH_FIELD& field : GetFields() )
1250 {
1251 properties.emplace_back( wxString::Format( wxT( "!%s = %s" ), field.GetName(),
1252 field.GetShownText( false ) ) );
1253 }
1254
1255 aPlotter->HyperlinkMenu( GetBoundingBox(), properties );
1256 }
1257
1258 // Plot sheet pins
1259 for( SCH_SHEET_PIN* sheetPin : m_pins )
1260 sheetPin->Plot( aPlotter, aBackground, aPlotOpts, aUnit, aBodyStyle, aOffset, aDimmed );
1261
1262 // Plot the fields
1263 for( SCH_FIELD& field : m_fields )
1264 field.Plot( aPlotter, aBackground, aPlotOpts, aUnit, aBodyStyle, aOffset, aDimmed );
1265
1266 if( GetDNP() )
1267 {
1269 BOX2I bbox = GetBodyBoundingBox();
1270 BOX2I pins = GetBoundingBox();
1271 VECTOR2D margins( std::max( bbox.GetX() - pins.GetX(),
1272 pins.GetEnd().x - bbox.GetEnd().x ),
1273 std::max( bbox.GetY() - pins.GetY(),
1274 pins.GetEnd().y - bbox.GetEnd().y ) );
1275 int strokeWidth = 3.0 * schIUScale.MilsToIU( DEFAULT_LINE_WIDTH_MILS );
1276
1277 margins.x = std::max( margins.x * 0.6, margins.y * 0.3 );
1278 margins.y = std::max( margins.y * 0.6, margins.x * 0.3 );
1279 bbox.Inflate( KiROUND( margins.x ), KiROUND( margins.y ) );
1280
1281 aPlotter->SetColor( colors->GetColor( LAYER_DNP_MARKER ) );
1282
1283 aPlotter->ThickSegment( bbox.GetOrigin(), bbox.GetEnd(), strokeWidth, FILLED, nullptr );
1284
1285 aPlotter->ThickSegment( bbox.GetOrigin() + VECTOR2I( bbox.GetWidth(), 0 ),
1286 bbox.GetOrigin() + VECTOR2I( 0, bbox.GetHeight() ),
1287 strokeWidth, FILLED, nullptr );
1288 }
1289}
1290
1291
1293{
1294 wxCHECK_MSG( Type() == aItem.Type(), *this,
1295 wxT( "Cannot assign object type " ) + aItem.GetClass() + wxT( " to type " ) +
1296 GetClass() );
1297
1298 if( &aItem != this )
1299 {
1300 SCH_ITEM::operator=( aItem );
1301
1302 SCH_SHEET* sheet = (SCH_SHEET*) &aItem;
1303
1304 m_pos = sheet->m_pos;
1305 m_size = sheet->m_size;
1306 m_fields = sheet->m_fields;
1307
1308 for( SCH_SHEET_PIN* pin : sheet->m_pins )
1309 {
1310 m_pins.emplace_back( new SCH_SHEET_PIN( *pin ) );
1311 m_pins.back()->SetParent( this );
1312 }
1313
1314 for( const SCH_SHEET_INSTANCE& instance : sheet->m_instances )
1315 m_instances.emplace_back( instance );
1316 }
1317
1318 return *this;
1319}
1320
1321
1322bool SCH_SHEET::operator <( const SCH_ITEM& aItem ) const
1323{
1324 if( Type() != aItem.Type() )
1325 return Type() < aItem.Type();
1326
1327 const SCH_SHEET* otherSheet = static_cast<const SCH_SHEET*>( &aItem );
1328
1329 if( GetName() != otherSheet->GetName() )
1330 return GetName() < otherSheet->GetName();
1331
1332 if( GetFileName() != otherSheet->GetFileName() )
1333 return GetFileName() < otherSheet->GetFileName();
1334
1335 return false;
1336}
1337
1338
1339void SCH_SHEET::RemoveInstance( const KIID_PATH& aInstancePath )
1340{
1341 // Search for an existing path and remove it if found (should not occur)
1342 for( unsigned ii = 0; ii < m_instances.size(); ii++ )
1343 {
1344 if( m_instances[ii].m_Path == aInstancePath )
1345 {
1346 wxLogTrace( traceSchSheetPaths, "Removing sheet instance:\n"
1347 " sheet path %s\n"
1348 " page %s, from project %s.",
1349 aInstancePath.AsString(),
1350 m_instances[ii].m_PageNumber,
1351 m_instances[ii].m_ProjectName );
1352
1353 m_instances.erase( m_instances.begin() + ii );
1354 ii--;
1355 }
1356 }
1357}
1358
1359
1361{
1362 SCH_SHEET_INSTANCE oldInstance;
1363
1364 if( getInstance( oldInstance, aInstance.m_Path ) )
1365 RemoveInstance( aInstance.m_Path );
1366
1367 m_instances.emplace_back( aInstance );
1368
1369}
1370
1371
1373{
1374 for( const SCH_SHEET_INSTANCE& instance : m_instances )
1375 {
1376 // if aSheetPath is found, nothing to do:
1377 if( instance.m_Path == aPath )
1378 return false;
1379 }
1380
1381 wxLogTrace( traceSchSheetPaths, wxT( "Adding instance `%s` to sheet `%s`." ),
1382 aPath.AsString(),
1383 ( GetName().IsEmpty() ) ? wxString( wxT( "root" ) ) : GetName() );
1384
1385 SCH_SHEET_INSTANCE instance;
1386
1387 instance.m_Path = aPath;
1388
1389 // This entry does not exist: add it with an empty page number.
1390 m_instances.emplace_back( instance );
1391 return true;
1392}
1393
1394
1395bool SCH_SHEET::getInstance( SCH_SHEET_INSTANCE& aInstance, const KIID_PATH& aSheetPath,
1396 bool aTestFromEnd ) const
1397{
1398 for( const SCH_SHEET_INSTANCE& instance : m_instances )
1399 {
1400 if( !aTestFromEnd )
1401 {
1402 if( instance.m_Path == aSheetPath )
1403 {
1404 aInstance = instance;
1405 return true;
1406 }
1407 }
1408 else if( instance.m_Path.EndsWith( aSheetPath ) )
1409 {
1410 aInstance = instance;
1411 return true;
1412 }
1413 }
1414
1415 return false;
1416}
1417
1418
1420{
1421 for( const SCH_SHEET_INSTANCE& instance : m_instances )
1422 {
1423 if( instance.m_Path.size() == 0 )
1424 return true;
1425 }
1426
1427 return false;
1428}
1429
1430
1432{
1433 for( const SCH_SHEET_INSTANCE& instance : m_instances )
1434 {
1435 if( instance.m_Path.size() == 0 )
1436 return instance;
1437 }
1438
1439 wxFAIL;
1440
1442
1443 return dummy;
1444}
1445
1446
1447wxString SCH_SHEET::getPageNumber( const KIID_PATH& aPath ) const
1448{
1449 wxString pageNumber;
1450
1451 for( const SCH_SHEET_INSTANCE& instance : m_instances )
1452 {
1453 if( instance.m_Path == aPath )
1454 {
1455 pageNumber = instance.m_PageNumber;
1456 break;
1457 }
1458 }
1459
1460 return pageNumber;
1461}
1462
1463
1464void SCH_SHEET::setPageNumber( const KIID_PATH& aPath, const wxString& aPageNumber )
1465{
1466 for( SCH_SHEET_INSTANCE& instance : m_instances )
1467 {
1468 if( instance.m_Path == aPath )
1469 {
1470 instance.m_PageNumber = aPageNumber;
1471 break;
1472 }
1473 }
1474}
1475
1476
1478{
1479 // Avoid self comparison.
1480 if( &aOther == this )
1481 return false;
1482
1483 // A difference in the instance data count implies a page numbering change.
1484 if( GetInstances().size() != aOther.GetInstances().size() )
1485 return true;
1486
1487 std::vector<SCH_SHEET_INSTANCE> instances = GetInstances();
1488 std::vector<SCH_SHEET_INSTANCE> otherInstances = aOther.GetInstances();
1489
1490 // Sorting may not be necessary but there is no guarantee that sheet
1491 // instance data will be in the correct KIID_PATH order. We should
1492 // probably use a std::map instead of a std::vector to store the sheet
1493 // instance data.
1494 std::sort( instances.begin(), instances.end(),
1495 []( const SCH_SHEET_INSTANCE& aLhs, const SCH_SHEET_INSTANCE& aRhs )
1496 {
1497 if( aLhs.m_Path > aRhs.m_Path )
1498 return true;
1499
1500 return false;
1501 } );
1502 std::sort( otherInstances.begin(), otherInstances.end(),
1503 []( const SCH_SHEET_INSTANCE& aLhs, const SCH_SHEET_INSTANCE& aRhs )
1504 {
1505 if( aLhs.m_Path > aRhs.m_Path )
1506 return true;
1507
1508 return false;
1509 } );
1510
1511 auto itThis = instances.begin();
1512 auto itOther = otherInstances.begin();
1513
1514 while( itThis != instances.end() )
1515 {
1516 if( ( itThis->m_Path == itOther->m_Path )
1517 && ( itThis->m_PageNumber != itOther->m_PageNumber ) )
1518 {
1519 return true;
1520 }
1521
1522 itThis++;
1523 itOther++;
1524 }
1525
1526 return false;
1527}
1528
1529
1530int SCH_SHEET::ComparePageNum( const wxString& aPageNumberA, const wxString& aPageNumberB )
1531{
1532 if( aPageNumberA == aPageNumberB )
1533 return 0; // A == B
1534
1535 // First sort numerically if the page numbers are integers
1536 long pageA, pageB;
1537 bool isIntegerPageA = aPageNumberA.ToLong( &pageA );
1538 bool isIntegerPageB = aPageNumberB.ToLong( &pageB );
1539
1540 if( isIntegerPageA && isIntegerPageB )
1541 {
1542 if( pageA < pageB )
1543 return -1; //A < B
1544 else
1545 return 1; // A > B
1546 }
1547
1548 // Numerical page numbers always before strings
1549 if( isIntegerPageA )
1550 return -1; //A < B
1551 else if( isIntegerPageB )
1552 return 1; // A > B
1553
1554 // If not numeric, then sort as strings using natural sort
1555 int result = StrNumCmp( aPageNumberA, aPageNumberB );
1556
1557 // Divide by zero bad.
1558 wxCHECK( result != 0, 0 );
1559
1560 result = result / std::abs( result );
1561
1562 return result;
1563}
1564
1565
1566bool SCH_SHEET::operator==( const SCH_ITEM& aOther ) const
1567{
1568 if( Type() != aOther.Type() )
1569 return false;
1570
1571 const SCH_SHEET* other = static_cast<const SCH_SHEET*>( &aOther );
1572
1573 if( m_pos != other->m_pos )
1574 return false;
1575
1576 if( m_size != other->m_size )
1577 return false;
1578
1579 if( GetExcludedFromSim() != other->GetExcludedFromSim() )
1580 return false;
1581
1582 if( GetExcludedFromBOM() != other->GetExcludedFromBOM() )
1583 return false;
1584
1585 if( GetExcludedFromBoard() != other->GetExcludedFromBoard() )
1586 return false;
1587
1588 if( GetDNP() != other->GetDNP() )
1589 return false;
1590
1591 if( GetBorderColor() != other->GetBorderColor() )
1592 return false;
1593
1594 if( GetBackgroundColor() != other->GetBackgroundColor() )
1595 return false;
1596
1597 if( GetBorderWidth() != other->GetBorderWidth() )
1598 return false;
1599
1600 if( GetFields().size() != other->GetFields().size() )
1601 return false;
1602
1603 for( size_t i = 0; i < GetFields().size(); ++i )
1604 {
1605 if( !( GetFields()[i] == other->GetFields()[i] ) )
1606 return false;
1607 }
1608
1609 return true;
1610}
1611
1612
1613double SCH_SHEET::Similarity( const SCH_ITEM& aOther ) const
1614{
1615 if( Type() != aOther.Type() )
1616 return 0.0;
1617
1618 const SCH_SHEET* other = static_cast<const SCH_SHEET*>( &aOther );
1619
1620 if( m_screen->GetFileName() == other->m_screen->GetFileName() )
1621 return 1.0;
1622
1623 return 0.0;
1624}
1625
1626
1627#if defined(DEBUG)
1628
1629void SCH_SHEET::Show( int nestLevel, std::ostream& os ) const
1630{
1631 // XML output:
1632 wxString s = GetClass();
1633
1634 NestedSpace( nestLevel, os ) << '<' << s.Lower().mb_str() << ">" << " sheet_name=\""
1635 << TO_UTF8( GetName() ) << '"' << ">\n";
1636
1637 // show all the pins, and check the linked list integrity
1638 for( SCH_SHEET_PIN* sheetPin : m_pins )
1639 sheetPin->Show( nestLevel + 1, os );
1640
1641 NestedSpace( nestLevel, os ) << "</" << s.Lower().mb_str() << ">\n" << std::flush;
1642}
1643
1644#endif
1645
1646static struct SCH_SHEET_DESC
1647{
1649 {
1653
1654 propMgr.AddProperty( new PROPERTY<SCH_SHEET, wxString>( _HKI( "Sheet Name" ),
1656
1657 propMgr.AddProperty( new PROPERTY<SCH_SHEET, int>( _HKI( "Border Width" ),
1659 PROPERTY_DISPLAY::PT_SIZE ) );
1660
1661 propMgr.AddProperty( new PROPERTY<SCH_SHEET, COLOR4D>( _HKI( "Border Color" ),
1663
1664 propMgr.AddProperty( new PROPERTY<SCH_SHEET, COLOR4D>( _HKI( "Background Color" ),
1666
1667 const wxString groupAttributes = _HKI( "Attributes" );
1668
1669 propMgr.AddProperty( new PROPERTY<SCH_SHEET, bool>( _HKI( "Exclude From Board" ),
1671 groupAttributes );
1672 propMgr.AddProperty( new PROPERTY<SCH_SHEET, bool>( _HKI( "Exclude From Simulation" ),
1674 groupAttributes );
1675 propMgr.AddProperty(
1676 new PROPERTY<SCH_SHEET, bool>( _HKI( "Exclude From Bill of Materials" ),
1679 groupAttributes );
1680 propMgr.AddProperty( new PROPERTY<SCH_SHEET, bool>( _HKI( "Do not Populate" ),
1682 groupAttributes );
1683 }
constexpr EDA_IU_SCALE schIUScale
Definition: base_units.h:110
BITMAPS
A list of all bitmap identifiers.
Definition: bitmaps_list.h:33
constexpr BOX2I KiROUND(const BOX2D &aBoxD)
Definition: box2.h:990
constexpr BOX2< Vec > & Inflate(coord_type dx, coord_type dy)
Inflates the rectangle horizontally by dx and vertically by dy.
Definition: box2.h:558
constexpr const Vec GetEnd() const
Definition: box2.h:212
constexpr coord_type GetY() const
Definition: box2.h:208
constexpr size_type GetWidth() const
Definition: box2.h:214
constexpr coord_type GetX() const
Definition: box2.h:207
constexpr BOX2< Vec > & Merge(const BOX2< Vec > &aRect)
Modify the position and size of the rectangle in order to contain aRect.
Definition: box2.h:658
constexpr const Vec GetCenter() const
Definition: box2.h:230
constexpr size_type GetHeight() const
Definition: box2.h:215
constexpr coord_type GetLeft() const
Definition: box2.h:228
constexpr bool Contains(const Vec &aPoint) const
Definition: box2.h:168
constexpr const Vec & GetOrigin() const
Definition: box2.h:210
constexpr coord_type GetRight() const
Definition: box2.h:217
constexpr void SetEnd(coord_type x, coord_type y)
Definition: box2.h:297
constexpr coord_type GetTop() const
Definition: box2.h:229
constexpr bool Intersects(const BOX2< Vec > &aRect) const
Definition: box2.h:311
constexpr coord_type GetBottom() const
Definition: box2.h:222
Color settings are a bit different than most of the settings objects in that there can be more than o...
COLOR4D GetColor(int aLayer) const
The base class for create windows for drawing purpose.
A base class for most all the KiCad significant classes used in schematics and boards.
Definition: eda_item.h:96
const KIID m_Uuid
Definition: eda_item.h:498
KICAD_T Type() const
Returns the type of object.
Definition: eda_item.h:108
virtual void SetParent(EDA_ITEM *aParent)
Definition: eda_item.h:111
EDA_ITEM * GetParent() const
Definition: eda_item.h:110
virtual const wxString & GetText() const
Return the string associated with the text object.
Definition: eda_text.h:98
void SetTextPos(const VECTOR2I &aPoint)
Definition: eda_text.cpp:571
void SetVertJustify(GR_TEXT_V_ALIGN_T aType)
Definition: eda_text.cpp:410
static wxString GotoPageHref(const wxString &aDestination)
Generate a href to a page in the current schematic.
Definition: eda_text.cpp:1301
virtual void SetTextAngle(const EDA_ANGLE &aAngle)
Definition: eda_text.cpp:292
VECTOR2I GetTextSize() const
Definition: eda_text.h:248
void SetHorizJustify(GR_TEXT_H_ALIGN_T aType)
Definition: eda_text.cpp:402
EE_TYPE OfType(KICAD_T aType) const
Definition: sch_rtree.h:241
A color representation with 4 components: red, green, blue, alpha.
Definition: color4d.h:104
double a
Alpha component.
Definition: color4d.h:395
const COLOR4D & GetLayerColor(int aLayer) const
Return the color used to draw a layer.
wxString AsString() const
Definition: kiid.cpp:356
Definition: kiid.h:49
virtual SETTINGS_MANAGER & GetSettingsManager() const
Definition: pgm_base.h:125
Base plotter engine class.
Definition: plotter.h:105
virtual void ThickSegment(const VECTOR2I &start, const VECTOR2I &end, int width, OUTLINE_MODE tracemode, void *aData)
Definition: plotter.cpp:553
RENDER_SETTINGS * RenderSettings()
Definition: plotter.h:136
virtual void HyperlinkBox(const BOX2I &aBox, const wxString &aDestinationURL)
Create a clickable hyperlink with a rectangular click area.
Definition: plotter.h:459
bool GetColorMode() const
Definition: plotter.h:133
virtual void HyperlinkMenu(const BOX2I &aBox, const std::vector< wxString > &aDestURLs)
Create a clickable hyperlink menu with a rectangular click area.
Definition: plotter.h:470
virtual void Rect(const VECTOR2I &p1, const VECTOR2I &p2, FILL_T fill, int width=USE_DEFAULT_LINE_WIDTH)=0
virtual void SetColor(const COLOR4D &color)=0
Container for project specific data.
Definition: project.h:64
Provide class metadata.Helper macro to map type hashes to names.
Definition: property_mgr.h:85
void InheritsAfter(TYPE_ID aDerived, TYPE_ID aBase)
Declare an inheritance relationship between types.
static PROPERTY_MANAGER & Instance()
Definition: property_mgr.h:87
PROPERTY_BASE & AddProperty(PROPERTY_BASE *aProperty, const wxString &aGroup=wxEmptyString)
Register a property.
Holds all the data relating to one schematic.
Definition: schematic.h:69
PROJECT & Prj() const
Return a reference to the project this schematic is part of.
Definition: schematic.h:84
SCHEMATIC_SETTINGS & Settings() const
Definition: schematic.cpp:306
SCH_SHEET_LIST Hierarchy() const
Return the full schematic flattened hierarchical sheet list.
Definition: schematic.cpp:208
bool ResolveTextVar(const SCH_SHEET_PATH *aSheetPath, wxString *token, int aDepth) const
Definition: schematic.cpp:247
void GetContextualTextVars(wxArrayString *aVars) const
Definition: schematic.cpp:222
SCH_SHEET & Root() const
Definition: schematic.h:117
SCH_SHEET_PATH & CurrentSheet() const
Definition: schematic.h:148
bool ResolveCrossReference(wxString *token, int aDepth) const
Resolves text vars that refer to other items.
Definition: schematic.cpp:436
Schematic editor (Eeschema) main window.
wxString GetShownText(const SCH_SHEET_PATH *aPath, bool aAllowExtraText, int aDepth=0) const
Definition: sch_field.cpp:192
Base class for any item which can be embedded within the SCHEMATIC container class,...
Definition: sch_item.h:167
SCH_ITEM & operator=(const SCH_ITEM &aPin)
Definition: sch_item.cpp:101
SCH_RENDER_SETTINGS * getRenderSettings(PLOTTER *aPlotter) const
Definition: sch_item.h:653
SCHEMATIC * Schematic() const
Search the item hierarchy to find a SCHEMATIC.
Definition: sch_item.cpp:151
AUTOPLACE_ALGO m_fieldsAutoplaced
Definition: sch_item.h:710
void SwapFlags(SCH_ITEM *aItem)
Swap the non-temp and non-edit flags.
Definition: sch_item.cpp:371
wxString GetClass() const override
Return the class name.
Definition: sch_item.h:177
int GetEffectivePenWidth(const SCH_RENDER_SETTINGS *aSettings) const
Definition: sch_item.cpp:493
SCH_LAYER_ID m_layer
Definition: sch_item.h:706
EE_RTREE & Items()
Get the full RTree, usually for iterating.
Definition: sch_screen.h:112
const wxString & GetFileName() const
Definition: sch_screen.h:147
void DecRefCount()
Definition: sch_screen.cpp:134
void IncRefCount()
Definition: sch_screen.cpp:128
const TITLE_BLOCK & GetTitleBlock() const
Definition: sch_screen.h:158
int GetRefCount() const
Definition: sch_screen.h:164
Handle access to a stack of flattened SCH_SHEET objects by way of a path for creating a flattened sch...
bool GetExcludedFromBOM() const
bool empty() const
Forwarded method from std::vector.
wxString PathHumanReadable(bool aUseShortRootName=true, bool aStripTrailingSeparator=false) const
Return the sheet path in a human readable form made from the sheet names.
wxString GetPageNumber() const
bool GetExcludedFromSim() const
bool GetExcludedFromBoard() const
bool GetDNP() const
SCH_SHEET * Last() const
Return a pointer to the last SCH_SHEET of the list.
void push_back(SCH_SHEET *aSheet)
Forwarded method from std::vector.
size_t size() const
Forwarded method from std::vector.
void pop_back()
Forwarded method from std::vector.
Define a sheet pin (label) used in sheets to create hierarchical schematics.
Definition: sch_sheet_pin.h:66
Sheet symbol placed in a schematic, and is the entry point for a sub schematic.
Definition: sch_sheet.h:47
void GetEndPoints(std::vector< DANGLING_END_ITEM > &aItemList) override
Add the schematic item end points to aItemList if the item has end points.
Definition: sch_sheet.cpp:1052
void GetContextualTextVars(wxArrayString *aVars) const
Return the list of system text vars & fields for this sheet.
Definition: sch_sheet.cpp:177
friend SCH_SHEET_PATH
Definition: sch_sheet.h:480
bool GetExcludedFromBOM() const
Definition: sch_sheet.h:391
void SetBorderColor(KIGFX::COLOR4D aColor)
Definition: sch_sheet.h:125
friend class SCH_SHEET_PIN
Definition: sch_sheet.h:545
VECTOR2I m_size
Definition: sch_sheet.h:562
void SetFileName(const wxString &aFilename)
Definition: sch_sheet.h:327
bool HasConnectivityChanges(const SCH_ITEM *aItem, const SCH_SHEET_PATH *aInstance=nullptr) const override
Check if aItem has connectivity changes against this object.
Definition: sch_sheet.cpp:1077
wxString GetFileName() const
Return the filename corresponding to this sheet.
Definition: sch_sheet.h:321
bool IsRootSheet() const
Definition: sch_sheet.cpp:169
bool getInstance(SCH_SHEET_INSTANCE &aInstance, const KIID_PATH &aSheetPath, bool aTestFromEnd=false) const
Definition: sch_sheet.cpp:1395
BITMAPS GetMenuImage() const override
Return a pointer to an image to be used in menus.
Definition: sch_sheet.cpp:1179
void RemoveInstance(const KIID_PATH &aInstancePath)
Definition: sch_sheet.cpp:1339
bool addInstance(const KIID_PATH &aInstance)
Add a new instance aSheetPath to the instance list.
Definition: sch_sheet.cpp:1372
void AddPin(SCH_SHEET_PIN *aSheetPin)
Add aSheetPin to the sheet.
Definition: sch_sheet.cpp:400
bool HasRootInstance() const
Check to see if this sheet has a root sheet instance.
Definition: sch_sheet.cpp:1419
wxString GetClass() const override
Return the class name.
Definition: sch_sheet.h:68
int GetPenWidth() const override
Definition: sch_sheet.cpp:625
EDA_ITEM * Clone() const override
Create a duplicate of this item with linked list members set to NULL.
Definition: sch_sheet.cpp:131
SCH_SHEET_PATH findSelf() const
Get the sheetpath of this sheet.
Definition: sch_sheet.cpp:1032
bool Matches(const EDA_SEARCH_DATA &aSearchData, void *aAuxData) const override
Compare the item against the search criteria in aSearchData.
Definition: sch_sheet.cpp:1013
double Similarity(const SCH_ITEM &aOther) const override
Return a measure of how likely the other object is to represent the same object.
Definition: sch_sheet.cpp:1613
VECTOR2I m_pos
Definition: sch_sheet.h:561
std::vector< SCH_FIELD > & GetFields()
Return a reference to the vector holding the sheet's fields.
Definition: sch_sheet.h:87
KIGFX::COLOR4D m_borderColor
Definition: sch_sheet.h:564
SCH_FIELD * GetField(FIELD_T aFieldType)
Return a mandatory field in this sheet.
Definition: sch_sheet.cpp:369
bool m_excludedFromBOM
Definition: sch_sheet.h:557
wxString GetName() const
Definition: sch_sheet.h:113
void renumberPins()
Renumber the sheet pins in the sheet.
Definition: sch_sheet.cpp:1020
void SetExcludedFromBOM(bool aExcludeFromBOM)
Set or clear the exclude from schematic bill of materials flag.
Definition: sch_sheet.h:390
VECTOR2I GetRotationCenter() const
Rotating around the boundingBox's center can cause walking when the sheetname or filename is longer t...
Definition: sch_sheet.cpp:724
SCH_SHEET_PIN * GetPin(const VECTOR2I &aPosition)
Return the sheet pin item found at aPosition in the sheet.
Definition: sch_sheet.cpp:613
bool operator<(const SCH_ITEM &aItem) const override
Definition: sch_sheet.cpp:1322
bool GetExcludedFromBoard() const
Definition: sch_sheet.h:397
void CleanupSheet()
Delete sheet label which do not have a corresponding hierarchical label.
Definition: sch_sheet.cpp:587
void RemovePin(const SCH_SHEET_PIN *aSheetPin)
Remove aSheetPin from the sheet.
Definition: sch_sheet.cpp:411
void SetPositionIgnoringPins(const VECTOR2I &aPosition)
Definition: sch_sheet.cpp:883
bool SearchHierarchy(const wxString &aFilename, SCH_SCREEN **aScreen)
Search the existing hierarchy for an instance of screen loaded from aFileName.
Definition: sch_sheet.cpp:753
bool LocatePathOfScreen(SCH_SCREEN *aScreen, SCH_SHEET_PATH *aList)
Search the existing hierarchy for an instance of screen loaded from aFileName.
Definition: sch_sheet.cpp:789
std::vector< SCH_SHEET_INSTANCE > m_instances
Definition: sch_sheet.h:567
bool HasUndefinedPins() const
Check all sheet labels against schematic for undefined hierarchical labels.
Definition: sch_sheet.cpp:473
bool m_excludedFromSim
Definition: sch_sheet.h:556
void SetPosition(const VECTOR2I &aPosition) override
Definition: sch_sheet.cpp:988
void SetBackgroundColor(KIGFX::COLOR4D aColor)
Definition: sch_sheet.h:128
int SymbolCount() const
Count our own symbols, without the power symbols.
Definition: sch_sheet.cpp:731
void Plot(PLOTTER *aPlotter, bool aBackground, const SCH_PLOT_OPTS &aPlotOpts, int aUnit, int aBodyStyle, const VECTOR2I &aOffset, bool aDimmed) override
Plot the item to aPlotter.
Definition: sch_sheet.cpp:1208
void AddInstance(const SCH_SHEET_INSTANCE &aInstance)
Definition: sch_sheet.cpp:1360
int GetMinWidth(bool aFromLeft) const
Return the minimum width of the sheet based on the widths of the sheet pin text.
Definition: sch_sheet.cpp:519
bool operator==(const SCH_ITEM &aOther) const override
Definition: sch_sheet.cpp:1566
SCH_SCREEN * m_screen
Definition: sch_sheet.h:549
std::vector< int > ViewGetLayers() const override
Return the layers the item is drawn on (which may be more than its "home" layer)
Definition: sch_sheet.cpp:684
std::vector< SCH_FIELD > m_fields
Definition: sch_sheet.h:554
void SetDNP(bool aDNP)
Definition: sch_sheet.h:403
KIGFX::COLOR4D m_backgroundColor
Definition: sch_sheet.h:565
SCH_SHEET(EDA_ITEM *aParent=nullptr, const VECTOR2I &aPos=VECTOR2I(0, 0), VECTOR2I aSize=VECTOR2I(schIUScale.MilsToIU(MIN_SHEET_WIDTH), schIUScale.MilsToIU(MIN_SHEET_HEIGHT)))
Definition: sch_sheet.cpp:51
void SetName(const wxString &aName)
Definition: sch_sheet.h:114
int CountSheets() const
Count the number of sheets found in "this" sheet including all of the subsheets.
Definition: sch_sheet.cpp:830
int GetNextFieldOrdinal() const
Return the next ordinal for a user field for this sheet.
Definition: sch_sheet.cpp:385
VECTOR2I GetPosition() const override
Definition: sch_sheet.h:415
const BOX2I GetBodyBoundingBox() const
Return a bounding box for the sheet body but not the fields.
Definition: sch_sheet.cpp:692
bool HasPin(const wxString &aName) const
Check if the sheet already has a sheet pin named aName.
Definition: sch_sheet.cpp:428
static int ComparePageNum(const wxString &aPageNumberA, const wxString &aPageNumberB)
Compare page numbers of schematic sheets.
Definition: sch_sheet.cpp:1530
void MirrorHorizontally(int aCenter) override
Mirror item horizontally about aCenter.
Definition: sch_sheet.cpp:968
void SetFields(const std::vector< SCH_FIELD > &aFields)
Set multiple schematic fields.
Definition: sch_sheet.cpp:391
int GetScreenCount() const
Return the number of times the associated screen for the sheet is being used.
Definition: sch_sheet.cpp:160
void SetScreen(SCH_SCREEN *aScreen)
Set the SCH_SCREEN associated with this sheet to aScreen.
Definition: sch_sheet.cpp:137
SCH_SHEET & operator=(const SCH_ITEM &aSheet)
Definition: sch_sheet.cpp:1292
bool HasPageNumberChanges(const SCH_SHEET &aOther) const
Check if the instance data of this sheet has any changes compared to aOther.
Definition: sch_sheet.cpp:1477
const SCH_SHEET_INSTANCE & GetRootInstance() const
Return the root sheet instance data.
Definition: sch_sheet.cpp:1431
bool doIsConnected(const VECTOR2I &aPosition) const override
Provide the object specific test to see if it is connected to aPosition.
Definition: sch_sheet.cpp:440
void swapData(SCH_ITEM *aItem) override
Swap the internal data structures aItem with the schematic item.
Definition: sch_sheet.cpp:328
bool m_excludedFromBoard
Definition: sch_sheet.h:558
const BOX2I GetBoundingBox() const override
Return the orthogonal bounding box of this object for display purposes.
Definition: sch_sheet.cpp:713
std::vector< VECTOR2I > GetConnectionPoints() const override
Add all the connection points for this item to aPoints.
Definition: sch_sheet.cpp:1111
KIGFX::COLOR4D GetBorderColor() const
Definition: sch_sheet.h:124
std::vector< SCH_SHEET_PIN * > m_pins
Definition: sch_sheet.h:553
INSPECT_RESULT Visit(INSPECTOR inspector, void *testData, const std::vector< KICAD_T > &aScanTypes) override
May be re-implemented for each derived class in order to handle all the types given by its member dat...
Definition: sch_sheet.cpp:1122
void SetBorderWidth(int aWidth)
Definition: sch_sheet.h:122
void MirrorVertically(int aCenter) override
Mirror item vertically about aCenter.
Definition: sch_sheet.cpp:948
void setPageNumber(const KIID_PATH &aInstance, const wxString &aPageNumber)
Set the page number for the sheet instance aInstance.
Definition: sch_sheet.cpp:1464
bool GetExcludedFromSim() const override
Definition: sch_sheet.h:385
void AutoplaceFields(SCH_SCREEN *aScreen, AUTOPLACE_ALGO aAlgo) override
Definition: sch_sheet.cpp:637
int GetMinHeight(bool aFromTop) const
Return the minimum height that the sheet can be resized based on the sheet pin positions.
Definition: sch_sheet.cpp:553
int m_borderWidth
Definition: sch_sheet.h:563
wxString GetItemDescription(UNITS_PROVIDER *aUnitsProvider, bool aFull) const override
Return a user-visible description string of this item.
Definition: sch_sheet.cpp:1169
bool UpdateDanglingState(std::vector< DANGLING_END_ITEM > &aItemListByType, std::vector< DANGLING_END_ITEM > &aItemListByPos, const SCH_SHEET_PATH *aPath=nullptr) override
Test the schematic item to aItemList to check if it's dangling state has changed.
Definition: sch_sheet.cpp:1064
void Resize(const VECTOR2I &aSize)
Resize this sheet to aSize and adjust all of the labels accordingly.
Definition: sch_sheet.cpp:996
void Move(const VECTOR2I &aMoveVector) override
Move the item by aMoveVector to a new position.
Definition: sch_sheet.cpp:894
int GetBorderWidth() const
Definition: sch_sheet.h:121
void SetExcludedFromBoard(bool aExcludeFromBoard)
Set or clear exclude from board netlist flag.
Definition: sch_sheet.h:396
void GetMsgPanelInfo(EDA_DRAW_FRAME *aFrame, std::vector< MSG_PANEL_ITEM > &aList) override
Populate aList of MSG_PANEL_ITEM objects with it's internal state for display purposes.
Definition: sch_sheet.cpp:844
bool m_DNP
Definition: sch_sheet.h:559
void RunOnChildren(const std::function< void(SCH_ITEM *)> &aFunction, RECURSE_MODE aMode) override
Definition: sch_sheet.cpp:1159
void Rotate(const VECTOR2I &aCenter, bool aRotateCCW) override
Rotate the item around aCenter 90 degrees in the clockwise direction.
Definition: sch_sheet.cpp:906
bool ResolveTextVar(const SCH_SHEET_PATH *aPath, wxString *token, int aDepth=0) const
Resolve any references to system tokens supported by the sheet.
Definition: sch_sheet.cpp:220
const std::vector< SCH_SHEET_INSTANCE > & GetInstances() const
Definition: sch_sheet.h:429
bool IsVerticalOrientation() const
Definition: sch_sheet.cpp:452
void SetExcludedFromSim(bool aExcludeFromSim) override
Set or clear the exclude from simulation flag.
Definition: sch_sheet.h:384
bool GetDNP() const
Set or clear the 'Do Not Populate' flags.
Definition: sch_sheet.h:402
bool HitTest(const VECTOR2I &aPosition, int aAccuracy) const override
Test if aPosition is inside or on the boundary of this item.
Definition: sch_sheet.cpp:1185
KIGFX::COLOR4D GetBackgroundColor() const
Definition: sch_sheet.h:127
wxString getPageNumber(const KIID_PATH &aInstance) const
Return the sheet page number for aInstance.
Definition: sch_sheet.cpp:1447
Schematic symbol object.
Definition: sch_symbol.h:75
SCH_FIELD * GetField(FIELD_T aFieldType)
Return a mandatory field in this symbol.
Definition: sch_symbol.cpp:813
COLOR_SETTINGS * GetColorSettings(const wxString &aName="user")
Retrieve a color settings object that applications can read colors from.
bool TextVarResolver(wxString *aToken, const PROJECT *aProject, int aFlags=0) const
static void GetContextualTextVars(wxArrayString *aVars)
Definition: title_block.cpp:75
#define DEFAULT_LINE_WIDTH_MILS
The default wire width in mils. (can be changed in preference menu)
#define _HKI(x)
#define _(s)
static constexpr EDA_ANGLE ANGLE_90
Definition: eda_angle.h:403
static constexpr EDA_ANGLE ANGLE_VERTICAL
Definition: eda_angle.h:398
static constexpr EDA_ANGLE ANGLE_HORIZONTAL
Definition: eda_angle.h:397
static constexpr EDA_ANGLE ANGLE_270
Definition: eda_angle.h:406
RECURSE_MODE
Definition: eda_item.h:49
INSPECT_RESULT
Definition: eda_item.h:43
const INSPECTOR_FUNC & INSPECTOR
std::function passed to nested users by ref, avoids copying std::function.
Definition: eda_item.h:89
static const bool FILLED
Definition: gr_basic.cpp:30
const wxChar *const traceSchSheetPaths
Flag to enable debug output of schematic symbol sheet path manipulation code.
@ LAYER_DANGLING
Definition: layer_ids.h:466
@ LAYER_SHEETNAME
Definition: layer_ids.h:461
@ LAYER_SHEET_BACKGROUND
Definition: layer_ids.h:474
@ LAYER_HIERLABEL
Definition: layer_ids.h:446
@ LAYER_SHEETFIELDS
Definition: layer_ids.h:463
@ LAYER_SHEET
Definition: layer_ids.h:460
@ LAYER_SELECTION_SHADOWS
Definition: layer_ids.h:483
@ LAYER_SHEETFILENAME
Definition: layer_ids.h:462
@ LAYER_DNP_MARKER
Definition: layer_ids.h:467
constexpr void MIRROR(T &aPoint, const T &aMirrorRef)
Updates aPoint with the mirror of aPoint relative to the aMirrorRef.
Definition: mirror.h:45
Message panel definition file.
KICOMMON_API wxString EllipsizeMenuText(const wxString &aString)
Ellipsize text (at the end) to be no more than 36 characters.
Definition: ui_common.cpp:215
KICOMMON_API wxString EllipsizeStatusText(wxWindow *aWindow, const wxString &aString)
Ellipsize text (at the end) to be no more than 1/3 of the window width.
Definition: ui_common.cpp:197
bool contains(const _Container &__container, _Value __value)
Returns true if the container contains the given value.
Definition: kicad_algo.h:100
EDA_ANGLE abs(const EDA_ANGLE &aAngle)
Definition: eda_angle.h:390
PGM_BASE & Pgm()
The global program "get" accessor.
Definition: pgm_base.cpp:1071
see class PGM_BASE
#define TYPE_HASH(x)
Definition: property.h:71
#define REGISTER_TYPE(x)
Definition: property_mgr.h:371
const SCH_FIELD * FindField(const std::vector< SCH_FIELD > &aFields, FIELD_T aFieldId)
Definition: sch_field.h:367
int NextFieldOrdinal(const std::vector< SCH_FIELD > &aFields)
Definition: sch_field.h:356
AUTOPLACE_ALGO
Definition: sch_item.h:68
@ AUTOPLACE_MANUAL
Definition: sch_item.h:71
@ AUTOPLACE_AUTO
Definition: sch_item.h:70
int bumpToNextGrid(const int aVal, const int aDirection)
Definition: sch_sheet.cpp:497
static struct SCH_SHEET_DESC _SCH_SHEET_DESC
#define MIN_SHEET_HEIGHT
Definition: sch_sheet.h:40
#define MIN_SHEET_WIDTH
Definition: sch_sheet.h:39
Definition of the SCH_SHEET_PATH and SCH_SHEET_LIST classes for Eeschema.
SHEET_SIDE
Define the edge of the sheet that the sheet pin is positioned.
Definition: sch_sheet_pin.h:46
std::vector< FAB_LAYER_COLOR > dummy
int StrNumCmp(const wxString &aString1, const wxString &aString2, bool aIgnoreCase)
Compare two strings with alphanumerical content.
#define TO_UTF8(wxstring)
Convert a wxString to a UTF8 encoded C string for all wxWidgets build modes.
Definition: string_utils.h:403
constexpr int MilsToIU(int mils) const
Definition: base_units.h:93
bool m_PDFPropertyPopups
Definition: sch_plotter.h:91
bool m_PDFHierarchicalLinks
Definition: sch_plotter.h:92
A simple container for sheet instance information.
wxString GetDefaultFieldName(FIELD_T aFieldId, bool aTranslateForHI)
Return a default symbol field name for a mandatory field type.
#define DO_TRANSLATE
FIELD_T
The set of all field indices assuming an array like sequence that a SCH_COMPONENT or LIB_PART can hol...
VECTOR2I end
constexpr int delta
@ GR_TEXT_H_ALIGN_LEFT
@ GR_TEXT_V_ALIGN_BOTTOM
@ GR_TEXT_V_ALIGN_TOP
wxLogTrace helper definitions.
void RotatePoint(int *pX, int *pY, const EDA_ANGLE &aAngle)
Calculate the new point of coord coord pX, pY, for a rotation center 0, 0.
Definition: trigo.cpp:229
KICAD_T
The set of class identification values stored in EDA_ITEM::m_structType.
Definition: typeinfo.h:78
@ SCH_SYMBOL_T
Definition: typeinfo.h:172
@ SCH_FIELD_T
Definition: typeinfo.h:150
@ SCH_LOCATE_ANY_T
Definition: typeinfo.h:199
@ SCH_SHEET_T
Definition: typeinfo.h:175
@ SCH_HIER_LABEL_T
Definition: typeinfo.h:169
@ SCH_SHEET_PIN_T
Definition: typeinfo.h:174
VECTOR2< int32_t > VECTOR2I
Definition: vector2d.h:695