mirror of
https://invent.kde.org/graphics/okular
synced 2024-11-05 18:34:53 +00:00
fec81c9e07
svn path=/trunk/playground/graphics/oKular/kpdf/; revision=481786
13 lines
402 B
C++
13 lines
402 B
C++
#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);
|
|
}
|