Home
last modified time | relevance | path

Searched refs:SCH_GLOBALLABEL (Results 1 – 19 of 19) sorted by relevance

/dports/cad/kicad-devel/kicad-a17a58203b33e08b966075833b177dad5740c236/eeschema/
H A Dsch_text.cpp946 SCH_GLOBALLABEL::SCH_GLOBALLABEL( const wxPoint& pos, const wxString& text ) : in SCH_GLOBALLABEL() function in SCH_GLOBALLABEL
964 SCH_GLOBALLABEL::SCH_GLOBALLABEL( const SCH_GLOBALLABEL& aGlobalLabel ) : in SCH_GLOBALLABEL() function in SCH_GLOBALLABEL
977 EDA_ITEM* SCH_GLOBALLABEL::Clone() const in Clone()
979 return new SCH_GLOBALLABEL( *this ); in Clone()
983 void SCH_GLOBALLABEL::SwapData( SCH_ITEM* aItem ) in SwapData()
987 SCH_GLOBALLABEL* globalLabel = static_cast<SCH_GLOBALLABEL*>( aItem ); in SwapData()
1108 void SCH_GLOBALLABEL::Rotate90( bool aClockwise ) in Rotate90()
1194 void SCH_GLOBALLABEL::MirrorVertically( int aCenter ) in MirrorVertically()
1206 void SCH_GLOBALLABEL::UpdateIntersheetRefProps() in UpdateIntersheetRefProps()
1335 void SCH_GLOBALLABEL::Plot( PLOTTER* aPlotter ) const in Plot()
[all …]
H A Dsch_text.h334 class SCH_GLOBALLABEL : public SCH_TEXT
337 SCH_GLOBALLABEL( const wxPoint& aPos = wxPoint( 0, 0 ), const wxString& aText = wxEmptyString );
339 SCH_GLOBALLABEL( const SCH_GLOBALLABEL& aGlobalLabel );
341 ~SCH_GLOBALLABEL() { } in ~SCH_GLOBALLABEL()
H A Dsch_painter.h47 class SCH_GLOBALLABEL; variable
161 void draw( SCH_GLOBALLABEL* aLabel, int aLayer );
H A Dsch_edit_frame.cpp1406 SCH_GLOBALLABEL* globalLabel = static_cast<SCH_GLOBALLABEL*>( item ); in RecomputeIntersheetRefs()
1420 std::vector<SCH_GLOBALLABEL*> globalLabels; in RecomputeIntersheetRefs()
1423 globalLabels.push_back( static_cast<SCH_GLOBALLABEL*>( item ) ); in RecomputeIntersheetRefs()
1425 for( SCH_GLOBALLABEL* globalLabel : globalLabels ) in RecomputeIntersheetRefs()
1449 SCH_GLOBALLABEL* gLabel = (SCH_GLOBALLABEL*)( item ); in ShowAllIntersheetRefs()
H A Dsch_field.cpp142 SCH_GLOBALLABEL* globalLabel = static_cast<SCH_GLOBALLABEL*>( m_parent ); in GetShownText()
H A Dsch_painter.cpp223 HANDLE_ITEM( SCH_GLOBAL_LABEL_T, SCH_GLOBALLABEL ); in Draw()
1623 void SCH_PAINTER::draw( SCH_GLOBALLABEL *aLabel, int aLayer ) in draw()
/dports/cad/kicad-devel/kicad-a17a58203b33e08b966075833b177dad5740c236/eeschema/sch_plugins/cadstar/
H A Dcadstar_sch_archive_loader.h45 class SCH_GLOBALLABEL; variable
113 std::map<SYMBOL_ID, SCH_GLOBALLABEL*>
H A Dcadstar_sch_archive_loader.cpp651 SCH_GLOBALLABEL* netLabel = new SCH_GLOBALLABEL; in loadSchematicSymbolInstances()
/dports/cad/kicad-devel/kicad-a17a58203b33e08b966075833b177dad5740c236/eeschema/dialogs/
H A Ddialog_text_and_label_properties.cpp389 SCH_GLOBALLABEL* label = static_cast<SCH_GLOBALLABEL*>( m_CurrentText ); in TransferDataFromWindow()
H A Dpanel_eeschema_color_settings.cpp340 SCH_GLOBALLABEL* t4 = new SCH_GLOBALLABEL( MILS_POINT( 1750, 1400 ), wxT( "GLOBAL[0..3]" ) ); in createPreviewItems()
/dports/cad/kicad-devel/kicad-a17a58203b33e08b966075833b177dad5740c236/eeschema/sch_plugins/eagle/
H A Dsch_eagle_plugin.h47 class SCH_GLOBALLABEL; variable
H A Dsch_eagle_plugin.cpp1127 label.reset( new SCH_GLOBALLABEL ); in loadSegments()
1203 label = std::make_unique<SCH_GLOBALLABEL>(); in loadLabel()
2940 SCH_GLOBALLABEL* netLabel = new SCH_GLOBALLABEL; in addImplicitConnections()
/dports/cad/kicad-devel/kicad-a17a58203b33e08b966075833b177dad5740c236/qa/eeschema/
H A Dtest_ee_item.cpp88 case SCH_GLOBAL_LABEL_T: return new SCH_GLOBALLABEL(); in Instantiate()
/dports/cad/kicad-devel/kicad-a17a58203b33e08b966075833b177dad5740c236/eeschema/sch_plugins/kicad/
H A Dsch_sexpr_parser.cpp2849 case T_global_label: text = std::make_unique<SCH_GLOBALLABEL>(); break; in parseSchText()
2941 SCH_GLOBALLABEL* label = static_cast<SCH_GLOBALLABEL*>( text.get() ); in parseSchText()
2960 SCH_GLOBALLABEL* label = static_cast<SCH_GLOBALLABEL*>( text.get() ); in parseSchText()
H A Dsch_sexpr_plugin.cpp1435 SCH_GLOBALLABEL* label = static_cast<SCH_GLOBALLABEL*>( aText ); in saveText()
/dports/cad/kicad-devel/kicad-a17a58203b33e08b966075833b177dad5740c236/eeschema/tools/
H A Dsch_drawing_tools.cpp883 textItem = new SCH_GLOBALLABEL( (wxPoint) aPosition ); in createNewText()
887 static_cast<SCH_GLOBALLABEL*>( textItem )->GetIntersheetRefs()->SetVisible( true ); in createNewText()
H A Dsch_edit_tool.cpp1582 case SCH_GLOBAL_LABEL_T: newtext = new SCH_GLOBALLABEL( position, txt ); break; in ChangeTextType()
1616 static_cast<SCH_GLOBALLABEL*>( newtext )->UpdateIntersheetRefProps(); in ChangeTextType()
/dports/cad/kicad-devel/kicad-a17a58203b33e08b966075833b177dad5740c236/eeschema/sch_plugins/altium/
H A Dsch_altium_plugin.cpp1968 label = new SCH_GLOBALLABEL( position, aElem.name ); in ParsePort()
/dports/cad/kicad-devel/kicad-a17a58203b33e08b966075833b177dad5740c236/eeschema/sch_plugins/legacy/
H A Dsch_legacy_plugin.cpp1437 text = std::make_unique<SCH_GLOBALLABEL>(); in loadText()