svn path=/trunk/playground/graphics/oKular/kpdf/; revision=481786remotes/origin/okular3-playground
parent
75db44d843
commit
fec81c9e07
1 changed files with 13 additions and 0 deletions
@ -0,0 +1,13 @@ |
|||||||
|
#include "generator.h" |
||||||
|
|
||||||
|
std::ostream& operator<< (std::ostream& str, const PixmapRequest *req) |
||||||
|
{ |
||||||
|
QString s(""); |
||||||
|
if (req->async) |
||||||
|
s += "As"; |
||||||
|
else |
||||||
|
s += "S"; |
||||||
|
s += QString ("ync PixmapRequest (id: %1) (%2x%3) ").arg(req->id,req->width,req->height); |
||||||
|
s += QString("rot:%4, prio: %5, pageNo: %6) ").arg(req->rotation,req->priority,req->pageNumber); |
||||||
|
return (str << s); |
||||||
|
} |
||||||
Loading…
Reference in new issue