##// END OF EJS Templates
Backport PR #8000: Fix rename issues in dashboard...
Backport PR #8000: Fix rename issues in dashboard - Do not display the full path of the selected item in the text box (**warning** : this removes the possibility of moving a file/folder using the rename dialog. Maybe someone finds this helpful) - Adapt dialog for files and notebook. - Do not allow renaming a running notebook (currently, renaming a running notebook would result in duplication instead of renaming after the open notebook saves/autosaves using the old name)

File last commit:

r16414:422c5094
r20876:86af759b
Show More
qt.py
23 lines | 806 B | text/x-python | PythonLexer
Peter Würtz
Add support for PyQt5.
r16414 """ A Qt API selector that can be used to switch between PyQt4/5 and PySide.
MinRK
reorder qt support in kernel...
r4191
This uses the ETS 4.0 selection pattern of:
Peter Würtz
Add support for PyQt5.
r16414 PySide first, PyQt4 (API v2.) second, then PyQt5.
MinRK
reorder qt support in kernel...
r4191
Peter Würtz
Add support for PyQt5.
r16414 Do not use this if you need PyQt4 with the old QString/QVariant API.
Evan Patterson
Paved the way for PySide support....
r3304 """
import os
epatters
Clean up in Qt API switcher.
r3306
Chris Beaumont
Refactor qt import logic. Fixes #2955
r9722 from IPython.external.qt_loaders import (load_qt, QT_API_PYSIDE,
Peter Würtz
Add support for PyQt5.
r16414 QT_API_PYQT, QT_API_PYQT5)
Evan Patterson
Paved the way for PySide support....
r3304
Chris Beaumont
Refactor qt import logic. Fixes #2955
r9722 QT_API = os.environ.get('QT_API', None)
Peter Würtz
Add support for PyQt5.
r16414 if QT_API not in [QT_API_PYSIDE, QT_API_PYQT, QT_API_PYQT5, None]:
raise RuntimeError("Invalid Qt API %r, valid values are: %r, %r, %r" %
(QT_API, QT_API_PYSIDE, QT_API_PYQT, QT_API_PYQT5))
epatters
Smarter Qt binding selection when environment variable is not specified.
r3927 if QT_API is None:
Peter Würtz
Add support for PyQt5.
r16414 api_opts = [QT_API_PYSIDE, QT_API_PYQT, QT_API_PYQT5]
epatters
Clean up in Qt API switcher.
r3306 else:
Chris Beaumont
Refactor qt import logic. Fixes #2955
r9722 api_opts = [QT_API]
QtCore, QtGui, QtSvg, QT_API = load_qt(api_opts)