okular/core/generator.cpp
Albert Astals Cid 178bab06cb core builds
svn path=/branches/work/kde4/playground/graphics/okular/; revision=521179
2006-03-21 20:00:24 +00:00

16 lines
424 B
C++

#include <QTextStream>
#include "generator.h"
QTextStream& operator<< (QTextStream& 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);
}