/usr/share/sip/PyQt4/QtGui/qprinter.sip is in python-qt4-dev 4.9.3-4.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 | // qprinter.sip generated by MetaSIP on Sun Jun 24 12:29:13 2012
//
// This file is part of the QtGui Python extension module.
//
// Copyright (c) 2012 Riverbank Computing Limited <info@riverbankcomputing.com>
//
// This file is part of PyQt.
//
// This file may be used under the terms of the GNU General Public
// License versions 2.0 or 3.0 as published by the Free Software
// Foundation and appearing in the files LICENSE.GPL2 and LICENSE.GPL3
// included in the packaging of this file. Alternatively you may (at
// your option) use any later version of the GNU General Public
// License if such license has been publicly approved by Riverbank
// Computing Limited (or its successors, if any) and the KDE Free Qt
// Foundation. In addition, as a special exception, Riverbank gives you
// certain additional rights. These rights are described in the Riverbank
// GPL Exception version 1.1, which can be found in the file
// GPL_EXCEPTION.txt in this package.
//
// If you are unsure which license is appropriate for your use, please
// contact the sales department at sales@riverbankcomputing.com.
//
// This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING THE
// WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE.
%If (Qt_5_0_0 -)
class QPrinter : QPagedPaintDevice
{
%TypeHeaderCode
// This is needed for Qt v5.0.0-alpha.
#if defined(B0)
#undef B0
#endif
#include <qprinter.h>
%End
public:
enum PrinterMode
{
ScreenResolution,
PrinterResolution,
HighResolution,
};
explicit QPrinter(QPrinter::PrinterMode mode = QPrinter::ScreenResolution);
QPrinter(const QPrinterInfo &printer, QPrinter::PrinterMode mode = QPrinter::ScreenResolution);
virtual ~QPrinter();
enum Orientation
{
Portrait,
Landscape,
};
typedef QPagedPaintDevice::PageSize PaperSize;
enum PageOrder
{
FirstPageFirst,
LastPageFirst,
};
enum ColorMode
{
GrayScale,
Color,
};
enum PaperSource
{
OnlyOne,
Lower,
Middle,
Manual,
Envelope,
EnvelopeManual,
Auto,
Tractor,
SmallFormat,
LargeFormat,
LargeCapacity,
Cassette,
FormSource,
MaxPageSource,
};
enum PrinterState
{
Idle,
Active,
Aborted,
Error,
};
enum OutputFormat
{
NativeFormat,
PdfFormat,
};
enum PrintRange
{
AllPages,
Selection,
PageRange,
CurrentPage,
};
enum Unit
{
Millimeter,
Point,
Inch,
Pica,
Didot,
Cicero,
DevicePixel,
};
enum DuplexMode
{
DuplexNone,
DuplexAuto,
DuplexLongSide,
DuplexShortSide,
};
void setOutputFormat(QPrinter::OutputFormat format);
QPrinter::OutputFormat outputFormat() const;
void setPrinterName(const QString &);
QString printerName() const;
bool isValid() const;
void setOutputFileName(const QString &);
QString outputFileName() const;
void setPrintProgram(const QString &);
QString printProgram() const;
void setDocName(const QString &);
QString docName() const;
void setCreator(const QString &);
QString creator() const;
void setOrientation(QPrinter::Orientation);
QPrinter::Orientation orientation() const;
virtual void setPageSize(QPagedPaintDevice::PageSize);
QPagedPaintDevice::PageSize pageSize() const;
virtual void setPageSizeMM(const QSizeF &size);
void setPaperSize(QPagedPaintDevice::PageSize);
QPagedPaintDevice::PageSize paperSize() const;
void setPaperSize(const QSizeF &paperSize, QPrinter::Unit unit);
QSizeF paperSize(QPrinter::Unit unit) const;
void setPageOrder(QPrinter::PageOrder);
QPrinter::PageOrder pageOrder() const;
void setResolution(int);
int resolution() const;
void setColorMode(QPrinter::ColorMode);
QPrinter::ColorMode colorMode() const;
void setCollateCopies(bool collate);
bool collateCopies() const;
void setFullPage(bool);
bool fullPage() const;
void setNumCopies(int);
int numCopies() const;
int actualNumCopies() const;
void setCopyCount(int);
int copyCount() const;
bool supportsMultipleCopies() const;
void setPaperSource(QPrinter::PaperSource);
QPrinter::PaperSource paperSource() const;
void setDuplex(QPrinter::DuplexMode duplex);
QPrinter::DuplexMode duplex() const;
QList<int> supportedResolutions() const;
void setFontEmbeddingEnabled(bool enable);
bool fontEmbeddingEnabled() const;
void setDoubleSidedPrinting(bool enable);
bool doubleSidedPrinting() const;
QRect paperRect() const;
QRect pageRect() const;
QRectF paperRect(QPrinter::Unit) const;
QRectF pageRect(QPrinter::Unit) const;
QString printerSelectionOption() const;
void setPrinterSelectionOption(const QString &);
virtual bool newPage();
bool abort();
QPrinter::PrinterState printerState() const;
virtual QPaintEngine *paintEngine() const;
QPrintEngine *printEngine() const;
void setFromTo(int fromPage, int toPage);
int fromPage() const;
int toPage() const;
void setPrintRange(QPrinter::PrintRange range);
QPrinter::PrintRange printRange() const;
virtual void setMargins(const QPagedPaintDevice::Margins &m);
void setPageMargins(qreal left, qreal top, qreal right, qreal bottom, QPrinter::Unit unit);
void getPageMargins(qreal *left, qreal *top, qreal *right, qreal *bottom, QPrinter::Unit unit) const;
protected:
virtual int metric(QPaintDevice::PaintDeviceMetric) const;
void setEngines(QPrintEngine *printEngine, QPaintEngine *paintEngine);
private:
QPrinter(const QPrinter &);
};
%End
%If (- Qt_5_0_0)
%If (PyQt_Printer)
class QPrinter : QPaintDevice
{
%TypeHeaderCode
#include <qprinter.h>
%End
public:
enum PrinterMode
{
ScreenResolution,
PrinterResolution,
HighResolution,
};
enum Orientation
{
Portrait,
Landscape,
};
enum PageSize
{
A4,
B5,
Letter,
Legal,
Executive,
A0,
A1,
A2,
A3,
A5,
A6,
A7,
A8,
A9,
B0,
B1,
B10,
B2,
B3,
B4,
B6,
B7,
B8,
B9,
C5E,
Comm10E,
DLE,
Folio,
Ledger,
Tabloid,
Custom,
};
enum PageOrder
{
FirstPageFirst,
LastPageFirst,
};
enum ColorMode
{
GrayScale,
Color,
};
enum PaperSource
{
OnlyOne,
Lower,
Middle,
Manual,
Envelope,
EnvelopeManual,
Auto,
Tractor,
SmallFormat,
LargeFormat,
LargeCapacity,
Cassette,
FormSource,
%If (Qt_4_3_0 -)
MaxPageSource,
%End
};
enum PrinterState
{
Idle,
Active,
Aborted,
Error,
};
enum OutputFormat
{
NativeFormat,
PdfFormat,
%If (Qt_4_2_0 -)
PostScriptFormat,
%End
};
enum PrintRange
{
AllPages,
Selection,
PageRange,
%If (Qt_4_7_0 -)
CurrentPage,
%End
};
%If (Qt_4_4_0 -)
enum DuplexMode
{
DuplexNone,
DuplexAuto,
DuplexLongSide,
DuplexShortSide,
};
%End
%If (Qt_4_4_0 -)
enum Unit
{
Millimeter,
Point,
Inch,
Pica,
Didot,
Cicero,
DevicePixel,
};
%End
%If (Qt_4_4_0 -)
typedef QPrinter::PageSize PaperSize;
%End
explicit QPrinter(QPrinter::PrinterMode mode = QPrinter::ScreenResolution);
%If (Qt_4_4_0 -)
QPrinter(const QPrinterInfo &printer, QPrinter::PrinterMode mode = QPrinter::ScreenResolution);
%End
virtual ~QPrinter();
void setPrinterName(const QString &);
QString printerName() const;
void setOutputFileName(const QString &);
QString outputFileName() const;
void setPrintProgram(const QString &);
QString printProgram() const;
void setDocName(const QString &);
QString docName() const;
void setCreator(const QString &);
QString creator() const;
void setOrientation(QPrinter::Orientation);
QPrinter::Orientation orientation() const;
void setPageSize(QPrinter::PageSize);
QPrinter::PageSize pageSize() const;
void setPageOrder(QPrinter::PageOrder);
QPrinter::PageOrder pageOrder() const;
void setResolution(int);
int resolution() const;
void setColorMode(QPrinter::ColorMode);
QPrinter::ColorMode colorMode() const;
void setCollateCopies(bool collate);
bool collateCopies() const;
void setFullPage(bool);
bool fullPage() const;
void setNumCopies(int);
int numCopies() const;
void setPaperSource(QPrinter::PaperSource);
QPrinter::PaperSource paperSource() const;
QList<int> supportedResolutions() const;
%If (WS_WIN)
void setWinPageSize(int winPageSize);
%End
%If (WS_WIN)
int winPageSize() const;
%End
QRect paperRect() const;
QRect pageRect() const;
%If (WS_X11 || WS_MACX)
QString printerSelectionOption() const;
%End
%If (WS_X11 || WS_MACX)
void setPrinterSelectionOption(const QString &);
%End
bool newPage();
bool abort();
QPrinter::PrinterState printerState() const;
virtual QPaintEngine *paintEngine() const;
void setOutputFormat(QPrinter::OutputFormat format);
QPrinter::OutputFormat outputFormat() const;
void setFontEmbeddingEnabled(bool enable);
bool fontEmbeddingEnabled() const;
QPrintEngine *printEngine() const;
void setFromTo(int fromPage, int toPage);
int fromPage() const;
int toPage() const;
%If (PyQt_NoQtPrintRangeBug)
void setPrintRange(QPrinter::PrintRange range);
%End
%If (PyQt_NoQtPrintRangeBug)
QPrinter::PrintRange printRange() const;
%End
%If (Qt_4_2_0 -)
void setDoubleSidedPrinting(bool enable);
%End
%If (Qt_4_2_0 -)
bool doubleSidedPrinting() const;
%End
%If (Qt_4_4_0 -)
bool isValid() const;
%End
%If (Qt_4_4_0 -)
void setPaperSize(QPrinter::PageSize);
%End
%If (Qt_4_4_0 -)
QPrinter::PageSize paperSize() const;
%End
%If (Qt_4_4_0 -)
void setPaperSize(const QSizeF &paperSize, QPrinter::Unit unit);
%End
%If (Qt_4_4_0 -)
QSizeF paperSize(QPrinter::Unit unit) const;
%End
%If (Qt_4_4_0 -)
void setDuplex(QPrinter::DuplexMode duplex);
%End
%If (Qt_4_4_0 -)
QPrinter::DuplexMode duplex() const;
%End
%If (Qt_4_4_0 -)
QRectF paperRect(QPrinter::Unit) const;
%End
%If (Qt_4_4_0 -)
QRectF pageRect(QPrinter::Unit) const;
%End
%If (Qt_4_4_0 -)
void setPageMargins(qreal left, qreal top, qreal right, qreal bottom, QPrinter::Unit unit);
%End
%If (Qt_4_4_0 -)
void getPageMargins(qreal *left, qreal *top, qreal *right, qreal *bottom, QPrinter::Unit unit) const;
%End
%If (Qt_4_6_0 -)
int actualNumCopies() const;
%End
protected:
virtual int metric(QPaintDevice::PaintDeviceMetric) const;
void setEngines(QPrintEngine *printEngine /KeepReference/, QPaintEngine *paintEngine /KeepReference/);
public:
%If (Qt_4_7_0 -)
void setCopyCount(int);
%End
%If (Qt_4_7_0 -)
int copyCount() const;
%End
%If (Qt_4_7_0 -)
bool supportsMultipleCopies() const;
%End
private:
QPrinter(const QPrinter &);
};
%End
%End
|