1 # -*- coding: utf-8 -*-
3 # Copyright © 2009- The Spyder Development Team
5 # Licensed under the terms of the MIT License
6 # (see LICENSE.txt for details)
9 Provides QtPrintSupport classes and functions.
12 from . import PYQT5
, PYQT4
,PYSIDE2
, PYSIDE
, PythonQtError
16 from PyQt5
.QtPrintSupport
import *
18 from PySide2
.QtPrintSupport
import *
20 from PyQt4
.QtGui
import (QAbstractPrintDialog
, QPageSetupDialog
,
21 QPrintDialog
, QPrintEngine
, QPrintPreviewDialog
,
22 QPrintPreviewWidget
, QPrinter
, QPrinterInfo
)
24 from PySide
.QtGui
import (QAbstractPrintDialog
, QPageSetupDialog
,
25 QPrintDialog
, QPrintEngine
, QPrintPreviewDialog
,
26 QPrintPreviewWidget
, QPrinter
, QPrinterInfo
)
28 raise PythonQtError('No Qt bindings could be found')