You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

20 lines
399 B

4 years ago
  1. # -*- coding: utf-8 -*-
  2. #
  3. # Copyright © 2014-2015 Colin Duquesnoy
  4. #
  5. # Licensed under the terms of the MIT License
  6. # (see LICENSE.txt for details)
  7. """
  8. Provides QtDesigner classes and functions.
  9. """
  10. from . import PYQT5, PYQT4, PythonQtError
  11. if PYQT5:
  12. from PyQt5.QtDesigner import *
  13. elif PYQT4:
  14. from PyQt4.QtDesigner import *
  15. else:
  16. raise PythonQtError('No Qt bindings could be found')