Home
last modified time | relevance | path

Searched refs:SCH_TEXT (Results 1 – 25 of 39) sorted by relevance

12

/dports/cad/kicad-devel/kicad-a17a58203b33e08b966075833b177dad5740c236/eeschema/
H A Dsch_text.cpp215 SCH_TEXT::SCH_TEXT( const wxPoint& pos, const wxString& text, KICAD_T aType ) : in SCH_TEXT() function in SCH_TEXT
230 SCH_TEXT::SCH_TEXT( const SCH_TEXT& aText ) : in SCH_TEXT() function in SCH_TEXT
240 EDA_ITEM* SCH_TEXT::Clone() const in Clone()
242 return new SCH_TEXT( *this ); in Clone()
373 SCH_TEXT* item = (SCH_TEXT*) aItem; in SwapData()
440 int SCH_TEXT::GetPenWidth() const in GetPenWidth()
677 BITMAPS SCH_TEXT::GetMenuImage() const in GetMenuImage()
965 SCH_TEXT( aGlobalLabel ), in SCH_GLOBALLABEL()
985 SCH_TEXT::SwapData( aItem ); in SwapData()
1110 SCH_TEXT::Rotate90( aClockwise ); in Rotate90()
[all …]
H A Dsch_text.h109 class SCH_TEXT : public SCH_ITEM, public EDA_TEXT
112 SCH_TEXT( const wxPoint& aPos = wxPoint( 0, 0 ), const wxString& aText = wxEmptyString,
121 SCH_TEXT( const SCH_TEXT& aText );
123 ~SCH_TEXT() { } in ~SCH_TEXT()
282 class SCH_LABEL : public SCH_TEXT
334 class SCH_GLOBALLABEL : public SCH_TEXT
425 SCH_TEXT::Move( aMoveVector ); in Move()
439 class SCH_HIERLABEL : public SCH_TEXT
H A Dsch_painter.h45 class SCH_TEXT; variable
159 void draw( const SCH_TEXT* aText, int aLayer );
183 float getTextThickness( const SCH_TEXT* aItem, bool aDrawingShadows ) const;
H A Derc.cpp247 else if( SCH_TEXT* text = dynamic_cast<SCH_TEXT*>( item ) ) in TestTextVars()
632 std::unordered_map<wxString, SCH_TEXT*> labelMap; in TestSimilarLabels()
648 SCH_TEXT* text = static_cast<SCH_TEXT*>( item ); in TestSimilarLabels()
H A Dinvoke_sch_dialog.h51 class SCH_TEXT; variable
H A Dsch_screen.h60 class SCH_TEXT; variable
443 SCH_TEXT* GetLabel( const wxPoint& aPosition, int aAccuracy = 0 ) const;
H A Dsch_sheet_pin.cpp82 SCH_TEXT::SwapData( (SCH_TEXT*) pin ); in SwapData()
H A Dsch_screen.cpp562 SCH_TEXT* label = GetLabel( aPosition ); in IsTerminalPoint()
590 SCH_TEXT* label = GetLabel( aPosition, 1 ); in IsTerminalPoint()
1107 SCH_TEXT* SCH_SCREEN::GetLabel( const wxPoint& aPosition, int aAccuracy ) const in GetLabel()
1117 return static_cast<SCH_TEXT*>( item ); in GetLabel()
/dports/cad/kicad-devel/kicad-a17a58203b33e08b966075833b177dad5740c236/eeschema/dialogs/
H A Ddialog_text_and_label_properties.h34 class SCH_TEXT; variable
42 DIALOG_TEXT_AND_LABEL_PROPERTIES( SCH_EDIT_FRAME* parent, SCH_TEXT* aTextItem );
61 SCH_TEXT* m_CurrentText;
H A Ddialog_text_and_label_properties.cpp43 class SCH_TEXT;
47 SCH_TEXT* aTextItem ) : in DIALOG_TEXT_AND_LABEL_PROPERTIES()
202 auto textItem = static_cast<const SCH_TEXT*>( item ); in TransferDataToWindow()
408 m_helpWindow = SCH_TEXT::ShowSyntaxHelp( this ); in OnFormattingHelp()
H A Ddialog_migrate_buses.cpp89 status.labels.push_back( static_cast<SCH_TEXT*>( label )->GetText() ); in loadGraphData()
212 static_cast<SCH_TEXT*>( label )->SetText( m_items[sel].approved_label ); in onAcceptClicked()
H A Ddialog_sheet_pin_properties.cpp144 m_helpWindow = SCH_TEXT::ShowSyntaxHelp( this ); in OnSyntaxHelp()
H A Ddialog_global_edit_text_and_graphics.cpp242 SCH_TEXT* sch_text = dynamic_cast<SCH_TEXT*>( aItem ); in processItem()
H A Dpanel_eeschema_color_settings.cpp326 SCH_TEXT* t1 = new SCH_TEXT( MILS_POINT( 2850, 2250 ), wxT( "PLAIN TEXT" ) ); in createPreviewItems()
/dports/cad/kicad-devel/kicad-a17a58203b33e08b966075833b177dad5740c236/eeschema/sch_plugins/eagle/
H A Dsch_eagle_plugin.h46 class SCH_TEXT; variable
134 SCH_TEXT* loadLabel( wxXmlNode* aLabelNode, const wxString& aNetName );
136 SCH_TEXT* loadPlainText( wxXmlNode* aSchText );
248 const SEG* LabelAttached( const SCH_TEXT* aLabel ) const;
250 std::vector<SCH_TEXT*> labels;
H A Dsch_eagle_plugin.cpp1084 SCH_TEXT* label = loadLabel( segmentAttribute, netName ); in loadSegments()
1123 std::unique_ptr<SCH_TEXT> label; in loadSegments()
1189 SCH_TEXT* SCH_EAGLE_PLUGIN::loadLabel( wxXmlNode* aLabelNode, const wxString& aNetName ) in loadLabel()
1197 std::unique_ptr<SCH_TEXT> label; in loadLabel()
2159 SCH_TEXT* SCH_EAGLE_PLUGIN::loadPlainText( wxXmlNode* aSchText ) in loadPlainText()
2161 std::unique_ptr<SCH_TEXT> schtext = std::make_unique<SCH_TEXT>(); in loadPlainText()
2243 for( SCH_TEXT* label : segDesc.labels ) in adjustNetLabels()
2881 const SEG* SCH_EAGLE_PLUGIN::SEG_DESC::LabelAttached( const SCH_TEXT* aLabel ) const in LabelAttached()
/dports/cad/kicad-devel/kicad-a17a58203b33e08b966075833b177dad5740c236/eeschema/sch_plugins/legacy/
H A Dsch_legacy_plugin.h41 class SCH_TEXT; variable
159 SCH_TEXT* loadText( LINE_READER& aReader );
171 void saveText( SCH_TEXT* aText );
/dports/cad/kicad-devel/kicad-a17a58203b33e08b966075833b177dad5740c236/eeschema/tools/
H A Dsch_edit_tool.cpp496 SCH_TEXT* textItem = static_cast<SCH_TEXT*>( head ); in Rotate()
705 SCH_TEXT* textItem = static_cast<SCH_TEXT*>( item ); in Mirror()
865 if( dynamic_cast<SCH_TEXT*>( newItem ) ) in RepeatDrawItem()
867 SCH_TEXT* text = static_cast<SCH_TEXT*>( newItem ); in RepeatDrawItem()
1321 [&]( SCH_TEXT* aText ) in Properties()
1443 doTextAndLabelProps( static_cast<SCH_TEXT*>( item ) ); in Properties()
1452 doTextAndLabelProps( static_cast<SCH_TEXT*>( parent ) ); in Properties()
1555 SCH_TEXT* text = dynamic_cast<SCH_TEXT*>( selection.GetItem( i ) ); in ChangeTextType()
1560 SCH_TEXT* newtext = nullptr; in ChangeTextType()
1584 case SCH_TEXT_T: newtext = new SCH_TEXT( position, txt ); break; in ChangeTextType()
H A Dsch_move_tool.cpp588 SCH_TEXT* label = static_cast<SCH_TEXT*>( item ); in getConnectedDragItems()
657 SCH_TEXT* label = static_cast<SCH_TEXT*>( test ); in getConnectedDragItems()
777 SCH_TEXT* label = static_cast<SCH_TEXT*>( aItem ); in moveItem()
H A Dsch_move_tool.h95 std::map<SCH_TEXT*, SPECIAL_CASE_LABEL_INFO> m_specialCaseLabels;
H A Dsch_drawing_tools.h72 SCH_TEXT* createNewText( const VECTOR2I& aPosition, int aType );
/dports/cad/kicad-devel/kicad-a17a58203b33e08b966075833b177dad5740c236/eeschema/sch_plugins/kicad/
H A Dsch_sexpr_parser.h58 class SCH_TEXT; variable
191 SCH_TEXT* parseSchText();
H A Dsch_sexpr_plugin.h43 class SCH_TEXT; variable
151 void saveText( SCH_TEXT* aText, int aNestLevel );
/dports/cad/kicad-devel/kicad-a17a58203b33e08b966075833b177dad5740c236/eeschema/sch_plugins/cadstar/
H A Dcadstar_sch_archive_loader.h49 class SCH_TEXT; variable
192 SCH_TEXT* getKiCadSchText( const TEXT& aCadstarTextElement );
H A Dcadstar_sch_archive_loader.cpp178 SCH_TEXT* txtItem = static_cast<SCH_TEXT*>( item ); in Load()
1175 SCH_TEXT* kiTxt = getKiCadSchText( txt ); in loadTexts()
1222 SCH_TEXT* kiTxt = getKiCadSchText( txt ); in loadDocumentationSymbols()
2244 SCH_TEXT* kiTxt = new SCH_TEXT(); in loadChildSheets()
2731 int off = static_cast<SCH_TEXT*>( aKiCadTextItem )->GetTextOffset(); in applyTextSettings()
2753 static_cast<SCH_TEXT*>( aKiCadTextItem )->SetLabelSpinStyle( spin ); in applyTextSettings()
2763 SCH_TEXT* CADSTAR_SCH_ARCHIVE_LOADER::getKiCadSchText( const TEXT& aCadstarTextElement ) in getKiCadSchText()
2765 SCH_TEXT* kiTxt = new SCH_TEXT(); in getKiCadSchText()

12