textoutput.hh QMainWindow QTextEdit Gecode::Gist::TextOutputI Gecode Gecode::Gist /*-*-mode:C++;c-basic-offset:2;indent-tabs-mode:nil-*-*/ /* *Mainauthors: *GuidoTack<tack@gecode.org> * *Copyright: *GuidoTack,2006 * *Lastmodified: *$Date:2011-08-2510:43:31+0200(Thu,25Aug2011)$by$Author:tack$ *$Revision:12352$ * *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_TEXTOUTPUT_HH #defineGECODE_GIST_TEXTOUTPUT_HH #include<QMainWindow> #include<QTextEdit> namespaceGecode{namespaceGist{ classTextOutputI:publicQMainWindow{ Q_OBJECT private: QAction*stayOnTop; QTextEdit*editor; std::ostream*os; public: TextOutputI(conststd::string&name,QWidget*parent=0); ~TextOutputI(void); std::ostream&getStream(void); voidinsertHtml(constQString&s); voidflush(void); protectedQ_SLOTS: voidchangeStayOnTop(void); }; }} #endif //STATISTICS:gist-any