X-Git-Url: http://shamusworld.gotdns.org/cgi-bin/gitweb.cgi?a=blobdiff_plain;f=src%2Fcontainer.cpp;h=6050f3217b73ecea8f7bb33ef63df8ec77d740d4;hb=c58b8a9f8b1ae5494857fc423ed8e33b2bbcf329;hp=e8a66e4d3ba040a178c7eadefc6a5c855adc6aa2;hpb=67fbc130b4b6b4d253f69a9c32980d3d3306def5;p=architektonas diff --git a/src/container.cpp b/src/container.cpp index e8a66e4..6050f32 100644 --- a/src/container.cpp +++ b/src/container.cpp @@ -54,22 +54,12 @@ Container & Container::operator=(const Container & from) return *this; Clear(); - - // Small problem with this approach: if the copied object goes out of scope, - // all of the objects we copied in here will be deleted. D'oh! - // For this COPY constructor to be meaningful, we have to actually COPY the - // objects in this Container, not just MOVE a copy of the POINTER! D-: std::vector::const_iterator i; -// for(uint i=0; iCopy(); - - // Need to actually COPY the object here, not copy the pointer only!! - // (which we do now, above :-P) - objects.push_back(object); } @@ -442,7 +432,6 @@ void Container::MoveContentsTo(Container * newContainer) return; // Shuffle the contents of this container to the new one -// for(unsigned int i=0; i::iterator i=objects.begin(); i!=objects.end(); i++) { newContainer->Add(*i); @@ -454,6 +443,18 @@ void Container::MoveContentsTo(Container * newContainer) } +void Container::CopyContentsTo(Container * newContainer) +{ + // Sanity check + if (newContainer == NULL) + return; + + // Shuffle the contents of this container to the new one + for(std::vector::iterator i=objects.begin(); i!=objects.end(); i++) + newContainer->Add((*i)->Copy()); +} + + void Container::MoveSelectedContentsTo(Container * newContainer) { // Sanity check @@ -482,7 +483,7 @@ void Container::CopySelectedContentsTo(Container * newContainer) if (newContainer == NULL) return; - // Shuffle the contents of this container to the new one + // Copy the contents of this container to the new one for(std::vector::iterator i=objects.begin(); i!=objects.end(); i++) { if ((*i)->state == OSSelected) @@ -537,6 +538,23 @@ same reference number. } +/*virtual*/ void Container::Rotate(Point point, double angle) +{ + for(std::vector::iterator i=objects.begin(); i!=objects.end(); i++) + (*i)->Rotate(point, angle); +} + + +/*virtual*/ void Container::RotateSelected(Point point, double angle) +{ + for(std::vector::iterator i=objects.begin(); i!=objects.end(); i++) + { + if ((*i)->state == OSSelected) + (*i)->Rotate(point, angle); + } +} + + /*virtual*/ void Container::Mirror(Point p1, Point p2) { for(std::vector::iterator i=objects.begin(); i!=objects.end(); i++) @@ -544,6 +562,16 @@ same reference number. } +/*virtual*/ void Container::MirrorSelected(Point p1, Point p2) +{ + for(std::vector::iterator i=objects.begin(); i!=objects.end(); i++) + { + if ((*i)->state == OSSelected) + (*i)->Mirror(p1, p2); + } +} + + /*virtual*/ void Container::Save(void) { Object::Save();