visualnode.hh gecode/gist/spacenode.hh gecode/kernel.hh string gecode/gist/node.hpp gecode/gist/spacenode.hpp gecode/gist/visualnode.hpp /usr/include/gecode/gist/layoutcursor.hh /usr/include/gecode/gist/nodecursor.hh /usr/include/gecode/gist/nodestats.hh /usr/include/gecode/gist/treecanvas.hh Gecode::Gist::Layout Gecode::Gist::BoundingBox Gecode::Gist::Extent Gecode::Gist::Shape Gecode::Gist::VisualNode Gecode Gecode::Gist /*-*-mode:C++;c-basic-offset:2;indent-tabs-mode:nil-*-*/ /* *Mainauthors: *GuidoTack<tack@gecode.org> * *Copyright: *GuidoTack,2006 * *Lastmodified: *$Date:2013-07-1112:30:18+0200(Thu,11Jul2013)$by$Author:schulte$ *$Revision:13840$ * *ThisfileispartofGecode,thegenericconstraint *developmentenvironment: *http://www.gecode.org * *Permissionisherebygranted,freeofcharge,toanypersonobtaining *acopyofthissoftwareandassociateddocumentationfiles(the *"Software"),todealintheSoftwarewithoutrestriction,including *withoutlimitationtherightstouse,copy,modify,merge,publish, *distribute,sublicense,and/orsellcopiesoftheSoftware,andto *permitpersonstowhomtheSoftwareisfurnishedtodoso,subjectto *thefollowingconditions: * *Theabovecopyrightnoticeandthispermissionnoticeshallbe *includedinallcopiesorsubstantialportionsoftheSoftware. * *THESOFTWAREISPROVIDED"ASIS",WITHOUTWARRANTYOFANYKIND, *EXPRESSORIMPLIED,INCLUDINGBUTNOTLIMITEDTOTHEWARRANTIESOF *MERCHANTABILITY,FITNESSFORAPARTICULARPURPOSEAND *NONINFRINGEMENT.INNOEVENTSHALLTHEAUTHORSORCOPYRIGHTHOLDERSBE *LIABLEFORANYCLAIM,DAMAGESOROTHERLIABILITY,WHETHERINANACTION *OFCONTRACT,TORTOROTHERWISE,ARISINGFROM,OUTOFORINCONNECTION *WITHTHESOFTWAREORTHEUSEOROTHERDEALINGSINTHESOFTWARE. * */ #ifndefGECODE_GIST_VISUALNODE_HH #defineGECODE_GIST_VISUALNODE_HH #include<gecode/gist/spacenode.hh> #include<gecode/kernel.hh> #include<string> namespaceGecode{namespaceGist{ classLayout{ public: staticconstintdist_y=38; staticconstintextent=20; staticconstintminimalSeparation=10; }; classBoundingBox{ public: intleft; intright; BoundingBox(void){} }; classExtent{ public: intl; intr; Extent(void); Extent(intl0,intr0); Extent(intwidth); voidextend(intdeltaL,intdeltaR); voidmove(intdelta); }; classShape{ private: int_depth; BoundingBoxbb; Extentshape[1]; Shape(constShape&); Shape&operator=(constShape&); Shape(void); public: staticShape*allocate(intd); //Destruct staticvoiddeallocate(Shape*); staticShape*leaf; staticShape*hidden; intdepth(void)const; voidsetDepth(intd); voidcomputeBoundingBox(void); constExtent&operator [](inti)const; Extent&operator [](inti); boolgetExtentAtDepth(intdepth,Extent&extent); constBoundingBox&getBoundingBox(void)const; }; classVisualNode:publicSpaceNode{ protected: enumVisualNodeFlags{ DIRTY=SpaceNode::LASTBIT+1, CHILDRENLAYOUTDONE, HIDDEN, MARKED, ONPATH, BOOKMARKED }; intoffset; Shape*shape; boolcontainsCoordinateAtDepth(intx,intdepth); public: VisualNode(intp); VisualNode(Space*root); boolisHidden(void); voidsetHidden(boolh); voidsetStop(boolh); voiddirtyUp(constNodeAllocator&na); voidlayout(constNodeAllocator&na); intgetOffset(void); voidsetOffset(intn); boolisDirty(void); voidsetDirty(boold); boolchildrenLayoutIsDone(void); voidsetChildrenLayoutDone(boold); boolisMarked(void); voidsetMarked(boolm); boolisBookmarked(void); voidsetBookmarked(boolm); voidpathUp(constNodeAllocator&na); voidunPathUp(constNodeAllocator&na); boolisOnPath(void); intgetPathAlternative(constNodeAllocator&na); voidsetOnPath(boolonPath0); voidtoggleHidden(constNodeAllocator&na); voidhideFailed(constNodeAllocator&na,boolonlyDirty=false); voidunhideAll(constNodeAllocator&na); voidtoggleStop(constNodeAllocator&na); voidunstopAll(constNodeAllocator&na); Shape*getShape(void); voidsetShape(Shape*s); voidcomputeShape(constNodeAllocator&na,VisualNode*root); BoundingBoxgetBoundingBox(void); voidchangedStatus(constNodeAllocator&na); VisualNode*findNode(constNodeAllocator&na,intx,inty); voidlabelBranches(NodeAllocator&na, BestNode*curBest,intc_d,inta_d); voidlabelPath(NodeAllocator&na, BestNode*curBest,intc_d,inta_d); std::stringgetBranchLabel(NodeAllocator&na, VisualNode*p,constChoice*c, BestNode*curBest,intc_d,inta_d,intalt); std::stringtoolTip(NodeAllocator&na,BestNode*curBest, intc_d,inta_d); voiddispose(void); }; }} #include<gecode/gist/node.hpp> #include<gecode/gist/spacenode.hpp> #include<gecode/gist/visualnode.hpp> #endif //STATISTICS:gist-any