treecanvas.hh QtGui gecode/kernel.hh gecode/gist.hh gecode/gist/visualnode.hh /usr/include/gecode/gist/qtgist.hh Gecode::Gist::SearcherThread Gecode::Gist::TreeCanvas Gecode Gecode::Gist Gecode::Gist::LayoutConfig /*-*-mode:C++;c-basic-offset:2;indent-tabs-mode:nil-*-*/ /* *Mainauthors: *GuidoTack<tack@gecode.org> * *Copyright: *GuidoTack,2006 * *Lastmodified: *$Date:2013-05-0609:02:17+0200(Mon,06May2013)$by$Author:tack$ *$Revision:13613$ * *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_TREECANVAS_HH #defineGECODE_GIST_TREECANVAS_HH #include<QtGui> #ifQT_VERSION>=0x050000 #include<QtWidgets> #endif #include<gecode/kernel.hh> #include<gecode/gist.hh> #include<gecode/gist/visualnode.hh> namespaceGecode{namespaceGist{ namespaceLayoutConfig{ constintminScale=10; constintmaxScale=400; constintdefScale=100; constintmaxAutoZoomScale=defScale; } classTreeCanvas; classSearcherThread:publicQThread{ Q_OBJECT private: VisualNode*node; intdepth; boola; TreeCanvas*t; voidupdateCanvas(void); public: voidsearch(VisualNode*n,boolall,TreeCanvas*ti); Q_SIGNALS: voidupdate(intw,inth,intscale0); voidstatusChanged(bool); voidscaleChanged(int); voidsolution(constSpace*); voidsearchFinished(void); voidmoveToNode(VisualNode*n,bool); protected: voidrun(void); }; classGECODE_GIST_EXPORTTreeCanvas:publicQWidget{ Q_OBJECT friendclassSearcherThread; friendclassGist; public: TreeCanvas(Space*rootSpace,boolbab,QWidget*parent, constOptions&opt); ~TreeCanvas(void); voidaddDoubleClickInspector(Inspector*i); voidactivateDoubleClickInspector(inti,boolactive); voidaddSolutionInspector(Inspector*i); voidactivateSolutionInspector(inti,boolactive); voidaddMoveInspector(Inspector*i); voidactivateMoveInspector(inti,boolactive); voidaddComparator(Comparator*c); voidactivateComparator(inti,boolactive); publicQ_SLOTS: voidscaleTree(intscale0,intzoomx=-1,intzoomy=-1); voidsearchAll(void); voidsearchOne(void); voidtoggleHidden(void); voidhideFailed(void); voidunhideAll(void); voidtoggleStop(void); voidunstopAll(void); voidexportPDF(void); voidexportWholeTreePDF(void); voidprint(void); voidzoomToFit(void); voidcenterCurrentNode(void); voidinspectCurrentNode(boolfix=true,intinspectorNo=-1); voidinspectBeforeFP(void); voidlabelBranches(void); voidlabelPath(void); voidstopSearch(void); voidreset(void); voidnavUp(void); voidnavDown(void); voidnavLeft(void); voidnavRight(void); voidnavRoot(void); voidnavNextSol(boolback=false); voidnavPrevSol(void); voidbookmarkNode(void); voidsetPath(void); voidinspectPath(void); voidstartCompareNodes(void); voidstartCompareNodesBeforeFP(void); voidemitStatusChanged(void); voidsetRecompDistances(intc_d,inta_d); voidsetAutoHideFailed(boolb); voidsetAutoZoom(boolb); boolgetAutoHideFailed(void); boolgetAutoZoom(void); voidsetShowCopies(boolb); boolgetShowCopies(void); voidsetRefresh(inti); voidsetRefreshPause(inti); boolgetSmoothScrollAndZoom(void); voidsetSmoothScrollAndZoom(boolb); boolgetMoveDuringSearch(void); voidsetMoveDuringSearch(boolb); voidresizeToOuter(void); boolfinish(void); Q_SIGNALS: voidscaleChanged(int); voidautoZoomChanged(bool); voidcontextMenu(QContextMenuEvent*); voidstatusChanged(VisualNode*,constStatistics&,bool); voidsolution(constSpace*); voidsearchFinished(void); voidaddedBookmark(constQString&id); voidremovedBookmark(intidx); protected: QMutexmutex; QMutexlayoutMutex; SearcherThreadsearcher; boolstopSearchFlag; boolfinishedFlag; Node::NodeAllocator*na; VisualNode*root; BestNode*curBest; VisualNode*currentNode; VisualNode*pathHead; QVector<QPair<Inspector*,bool>>doubleClickInspectors; QVector<QPair<Inspector*,bool>>solutionInspectors; QVector<QPair<Inspector*,bool>>moveInspectors; QVector<QPair<Comparator*,bool>>comparators; QVector<VisualNode*>bookmarks; boolcompareNodes; boolcompareNodesBeforeFP; QSlider*scaleBar; Statisticsstats; doublescale; intxtrans; boolautoHideFailed; boolautoZoom; boolshowCopies; intrefresh; intrefreshPause; boolsmoothScrollAndZoom; boolmoveDuringSearch; intc_d; inta_d; VisualNode*eventNode(QEvent*event); boolevent(QEvent*event); voidpaintEvent(QPaintEvent*event); voidmousePressEvent(QMouseEvent*event); voidmouseDoubleClickEvent(QMouseEvent*event); voidcontextMenuEvent(QContextMenuEvent*event); voidresizeEvent(QResizeEvent*event); voidwheelEvent(QWheelEvent*event); QTimeLinezoomTimeLine; QTimeLinescrollTimeLine; inttargetX; intsourceX; inttargetY; intsourceY; inttargetW; inttargetH; inttargetScale; intlayoutDoneTimerId; virtualvoidtimerEvent(QTimerEvent*e); publicQ_SLOTS: voidupdate(void); voidscroll(void); voidlayoutDone(intw,inth,intscale0); voidsetCurrentNode(VisualNode*n,boolfinished=true,boolupdate=true); privateQ_SLOTS: voidstatusChanged(bool); voidexportNodePDF(VisualNode*n); voidinspectSolution(constSpace*s); voidscroll(inti); }; }} #endif //STATISTICS:gist-any