X-Git-Url: http://shamusworld.gotdns.org/cgi-bin/gitweb.cgi?a=blobdiff_plain;f=src%2Factions%2Factionlayerstogglelock.cpp;h=6ea9e2088e810a8abc4b5d953d297ca876f9b2d1;hb=f62cebc26c7c3af447f0e4e4c43331f8589dce22;hp=063c099e122959287d82ce9f71b69deec3619722;hpb=865303923fcb231a171992b75a73364ff469ff8c;p=architektonas diff --git a/src/actions/actionlayerstogglelock.cpp b/src/actions/actionlayerstogglelock.cpp index 063c099..6ea9e20 100644 --- a/src/actions/actionlayerstogglelock.cpp +++ b/src/actions/actionlayerstogglelock.cpp @@ -19,7 +19,7 @@ #include "graphicview.h" #include "drawing.h" -ActionLayersToggleLock::ActionLayersToggleLock(RS_EntityContainer & container, GraphicView & graphicView): ActionInterface("Toggle Layer Visibility", +ActionLayersToggleLock::ActionLayersToggleLock(EntityContainer & container, GraphicView & graphicView): ActionInterface("Toggle Layer Visibility", container, graphicView) { } @@ -30,30 +30,40 @@ ActionLayersToggleLock::~ActionLayersToggleLock() void ActionLayersToggleLock::trigger() { - RS_DEBUG->print("toggle layer"); + DEBUG->print("toggle layer"); - if (graphic != NULL) + if (graphic) { - RS_Layer * layer = graphic->getActiveLayer(); + Layer * layer = graphic->getActiveLayer(); - if (layer != NULL) + if (layer) { graphic->toggleLayerLock(layer); // deselect entities on locked layer: if (layer->isLocked()) - for (RS_Entity * e = container->firstEntity(); e != NULL; - e = container->nextEntity()) + { + for(Entity * e=container->firstEntity(); e!=NULL; + e=container->nextEntity()) + { if (e != NULL && e->isVisible() && e->getLayer() == layer) { - if (graphicView != NULL) +#warning "!!! Old rendering path need upgrade !!!" +#if 0 + if (graphicView) graphicView->deleteEntity(e); +#endif e->setSelected(false); - if (graphicView != NULL) +#warning "!!! Old rendering path need upgrade !!!" +#if 0 + if (graphicView) graphicView->drawEntity(e); +#endif } + } + } } }