Commit 24c9b705 authored by Maciej Suminski's avatar Maciej Suminski

Zones are supported by POINT_EDITOR.

parent d1ffaf0d
...@@ -33,6 +33,7 @@ ...@@ -33,6 +33,7 @@
#include "point_editor.h" #include "point_editor.h"
#include <class_drawsegment.h> #include <class_drawsegment.h>
#include <class_zone.h>
/** /**
* Class POINT_EDITOR * Class POINT_EDITOR
...@@ -52,7 +53,7 @@ public: ...@@ -52,7 +53,7 @@ public:
{ {
case PCB_LINE_T: case PCB_LINE_T:
{ {
DRAWSEGMENT* segment = static_cast<DRAWSEGMENT*>( aItem ); const DRAWSEGMENT* segment = static_cast<const DRAWSEGMENT*>( aItem );
switch( segment->GetShape() ) switch( segment->GetShape() )
{ {
...@@ -79,8 +80,19 @@ public: ...@@ -79,8 +80,19 @@ public:
default: // suppress warnings default: // suppress warnings
break; break;
} }
break;
}
case PCB_ZONE_AREA_T:
{
const CPolyLine* outline = static_cast<const ZONE_CONTAINER*>( aItem )->Outline();
for( int i = 0; i < outline->GetCornersCount(); ++i )
points->Add( outline->GetPos( i ) );
break;
} }
break;
default: default:
break; break;
...@@ -290,6 +302,21 @@ void POINT_EDITOR::updateItem() const ...@@ -290,6 +302,21 @@ void POINT_EDITOR::updateItem() const
default: // suppress warnings default: // suppress warnings
break; break;
} }
break;
}
case PCB_ZONE_AREA_T:
{
ZONE_CONTAINER* zone = static_cast<ZONE_CONTAINER*>( item );
CPolyLine* outline = zone->Outline();
for( int i = 0; i < outline->GetCornersCount(); ++i )
{
outline->SetX( i, (*m_editPoints)[i].GetPosition().x );
outline->SetY( i, (*m_editPoints)[i].GetPosition().y );
}
break; break;
} }
...@@ -330,7 +357,19 @@ void POINT_EDITOR::updatePoints() const ...@@ -330,7 +357,19 @@ void POINT_EDITOR::updatePoints() const
default: // suppress warnings default: // suppress warnings
break; break;
} }
break;
} }
}
case PCB_ZONE_AREA_T:
{
const ZONE_CONTAINER* zone = static_cast<const ZONE_CONTAINER*>( item );
const CPolyLine* outline = zone->Outline();
for( int i = 0; i < outline->GetCornersCount(); ++i )
(*m_editPoints)[i].SetPosition( outline->GetPos( i ) );
break; break;
} }
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment