40 std::function<void(
SCH_ITEM* )> changeHandler =
41 [&](
SCH_ITEM* aChangedItem ) ->
void
56 std::vector<SCH_LINE*> wires;
68 wires.push_back( line );
77 if( !
IsPointOnSegment( line->GetStartPoint(), line->GetEndPoint(), aStart ) ||
84 if( ( line->GetStartPoint() == aStart && line->GetEndPoint() == aEnd )
85 || ( line->GetStartPoint() == aEnd && line->GetEndPoint() == aStart ) )
93 BreakSegment( aCommit, line, aStart, &new_line, screen );
106 aCommit->
Removed( line, screen );
118 std::vector<SCH_LINE*> lines;
119 std::vector<SCH_JUNCTION*> junctions;
120 std::vector<SCH_NO_CONNECT*> ncs;
121 std::vector<SCH_ITEM*> items_to_remove;
124 if( aScreen ==
nullptr )
127 auto remove_item = [&](
SCH_ITEM* aItem ) ->
void
135 if( aItem->IsSelected() )
139 aCommit->
Removed( aItem, aScreen );
148 items_to_remove.push_back( item );
150 junctions.push_back(
static_cast<SCH_JUNCTION*
>( item ) );
153 for(
SCH_ITEM* item : items_to_remove )
162 if( ( aFirst->GetEditFlags() & STRUCT_DELETED )
163 || ( aSecond->GetEditFlags() & STRUCT_DELETED ) )
169 remove_item( aSecond );
175 if( ( aFirst->GetEditFlags() & STRUCT_DELETED )
176 || ( aSecond->GetEditFlags() & STRUCT_DELETED ) )
182 remove_item( aSecond );
188 return std::min( l->GetStartPoint().x, l->GetEndPoint().x );
193 return std::max( l->GetStartPoint().x, l->GetEndPoint().x );
198 return std::min( l->GetStartPoint().y, l->GetEndPoint().y );
203 return std::max( l->GetStartPoint().y, l->GetEndPoint().y );
216 lines.push_back(
static_cast<SCH_LINE*
>( item ) );
220 std::sort( lines.begin(), lines.end(),
223 return minX( a ) < minX( b );
226 for(
auto it1 = lines.begin(); it1 != lines.end(); ++it1 )
235 remove_item( firstLine );
239 int firstRightXEdge = maxX( firstLine );
242 for( ++it2; it2 != lines.end(); ++it2 )
245 int secondLeftXEdge = minX( secondLine );
248 if( secondLeftXEdge > firstRightXEdge )
252 if( !( std::max( minY( firstLine ), minY( secondLine ) )
253 <= std::min( maxY( firstLine ), maxY( secondLine ) ) ) )
272 remove_item( secondLine );
280 if( mergedLine !=
nullptr )
282 remove_item( firstLine );
283 remove_item( secondLine );
285 AddToScreen( mergedLine, aScreen );
286 aCommit->Added( mergedLine, aScreen );
289 selectionTool->AddItemToSel( mergedLine,
true );
303 aCommit->
Modify( aSegment, aScreen );
311 aCommit->
Added( newSegment, aScreen );
313 *aNewSegment = newSegment;
319 bool brokenSegments =
false;
324 BreakSegment( aCommit, wire, aPos, &new_line, aScreen );
325 brokenSegments =
true;
328 return brokenSegments;
334 bool brokenSegments =
false;
336 std::set<VECTOR2I> point_set;
339 point_set.insert( item->GetPosition() );
345 point_set.insert( entry->
GetEnd() );
348 for(
const VECTOR2I& pt : point_set )
351 brokenSegments =
true;
354 return brokenSegments;
366 aCommit->
Removed( aJunction, screen );
370 std::list<SCH_LINE*> lines;
380 lines.push_back( line );
387 if( ( firstLine->GetEditFlags() & STRUCT_DELETED )
388 || ( secondLine->GetEditFlags() & STRUCT_DELETED )
389 || !secondLine->IsParallel( firstLine ) )
398 firstLine->SetFlags( STRUCT_DELETED );
405 firstLine->SetFlags( STRUCT_DELETED );
406 secondLine->SetFlags( STRUCT_DELETED );
407 AddToScreen( new_line, screen );
408 aCommit->Added( new_line, screen );
410 if( new_line->IsSelected() )
411 selectionTool->AddItemToSel( new_line, true );
413 lines.push_back( new_line );
421 if( line->IsSelected() )
422 selectionTool->RemoveItemFromSel( line,
true );
424 RemoveFromScreen( line, screen );
425 aCommit->Removed( line, screen );
437 aCommit->
Added( junction, aScreen );
constexpr BOX2< Vec > & Merge(const BOX2< Vec > &aRect)
Modify the position and size of the rectangle in order to contain aRect.
COMMIT & Modify(EDA_ITEM *aItem, BASE_SCREEN *aScreen=nullptr)
Modify a given item in the model.
COMMIT & Added(EDA_ITEM *aItem, BASE_SCREEN *aScreen=nullptr)
Notify observers that aItem has been added.
COMMIT & Removed(EDA_ITEM *aItem, BASE_SCREEN *aScreen=nullptr)
A base class for most all the KiCad significant classes used in schematics and boards.
virtual VECTOR2I GetPosition() const
EDA_ITEM_FLAGS GetEditFlags() const
void SetFlags(EDA_ITEM_FLAGS aMask)
EDA_ITEM_FLAGS GetFlags() const
EE_TYPE Overlapping(const BOX2I &aRect) const
EE_TYPE OfType(KICAD_T aType) const
virtual void Update(const VIEW_ITEM *aItem, int aUpdateFlags) const
For dynamic VIEWs, inform the associated VIEW that the graphical representation of this item has chan...
A holder to handle information on schematic or board items.
void AddToScreen(EDA_ITEM *aItem, SCH_SCREEN *aScreen=nullptr)
Add an item to the screen (and view) aScreen is the screen the item is located on,...
SCH_DRAW_PANEL * GetCanvas() const override
Return a pointer to GAL-based canvas of given EDA draw frame.
void RemoveFromScreen(EDA_ITEM *aItem, SCH_SCREEN *aScreen)
Remove an item from the screen (and view) aScreen is the screen the item is located on,...
VECTOR2I GetPosition() const override
Class for a wire to bus entry.
KIGFX::SCH_VIEW * GetView() const override
Return a pointer to the #VIEW instance used in the panel.
SCH_SCREEN * GetScreen() const override
Return a pointer to a BASE_SCREEN or one of its derivatives.
bool BreakSegmentsOnJunctions(SCH_COMMIT *aCommit, SCH_SCREEN *aScreen)
Test all junctions and bus entries in the schematic for intersections with wires and buses and breaks...
void SchematicCleanUp(SCH_COMMIT *aCommit, SCH_SCREEN *aScreen=nullptr)
Perform routine schematic cleaning including breaking wire and buses and deleting identical objects s...
bool BreakSegments(SCH_COMMIT *aCommit, const VECTOR2I &aPoint, SCH_SCREEN *aScreen)
Check every wire and bus for a intersection at aPoint and break into two segments at aPoint if an int...
void BreakSegment(SCH_COMMIT *aCommit, SCH_LINE *aSegment, const VECTOR2I &aPoint, SCH_LINE **aNewSegment, SCH_SCREEN *aScreen)
Break a single segment into two at the specified point.
bool TrimWire(SCH_COMMIT *aCommit, const VECTOR2I &aStart, const VECTOR2I &aEnd)
If any single wire passes through both points, remove the portion between the two points,...
void TestDanglingEnds()
Test all of the connectable objects in the schematic for unused connection points.
void DeleteJunction(SCH_COMMIT *aCommit, SCH_ITEM *aItem)
Remove a given junction and heals any wire segments under the junction.
SCH_JUNCTION * AddJunction(SCH_COMMIT *aCommit, SCH_SCREEN *aScreen, const VECTOR2I &aPos)
Base class for any item which can be embedded within the SCHEMATIC container class,...
SCH_LAYER_ID GetLayer() const
Return the layer this item is on.
VECTOR2I GetPosition() const override
Segment description base class to describe items which have 2 end points (track, wire,...
bool IsWire() const
Return true if the line is a wire.
bool IsParallel(const SCH_LINE *aLine) const
VECTOR2I GetEndPoint() const
VECTOR2I GetStartPoint() const
SCH_LINE * MergeOverlap(SCH_SCREEN *aScreen, SCH_LINE *aLine, bool aCheckJunctions)
Check line against aLine to see if it overlaps and merge if it does.
bool IsBus() const
Return true if the line is a bus.
bool IsEndPoint(const VECTOR2I &aPoint) const
bool IsStrokeEquivalent(const SCH_LINE *aLine)
SCH_LINE * BreakAt(const VECTOR2I &aPoint)
Break this segment into two at the specified point.
VECTOR2I GetPosition() const override
void TestDanglingEnds(const SCH_SHEET_PATH *aPath=nullptr, std::function< void(SCH_ITEM *)> *aChangedHandler=nullptr) const
Test all of the connectable objects in the schematic for unused connection points.
std::vector< SCH_LINE * > GetBusesAndWires(const VECTOR2I &aPosition, bool aIgnoreEndpoints=false) const
Return buses and wires passing through aPosition.
bool IsExplicitJunction(const VECTOR2I &aPosition) const
Indicate that a junction dot is necessary at the given location.
EE_RTREE & Items()
Get the full RTree, usually for iterating.
#define IS_CHANGED
Item was edited, and modified.
#define IS_NEW
New item, just created.
#define IS_BROKEN
Is a segment just broken by BreakSegment.
#define STRUCT_DELETED
flag indication structures to be erased
#define SKIP_STRUCT
flag indicating that the structure should be ignored
#define IS_MOVING
Item being moved.
@ REPAINT
Item needs to be redrawn.
void for_all_pairs(_InputIterator __first, _InputIterator __last, _Function __f)
Apply a function to every possible pair of elements of a sequence.
bool IsPointOnSegment(const VECTOR2I &aSegStart, const VECTOR2I &aSegEnd, const VECTOR2I &aTestPoint)
Test if aTestPoint is on line defined by aSegStart and aSegEnd.