6 """ |
6 """ |
7 Module implementing a dialog used by the queue management functions. |
7 Module implementing a dialog used by the queue management functions. |
8 """ |
8 """ |
9 |
9 |
10 from __future__ import unicode_literals |
10 from __future__ import unicode_literals |
11 try: |
|
12 str = unicode |
|
13 except NameError: |
|
14 pass |
|
15 |
11 |
16 from PyQt5.QtCore import pyqtSlot, Qt, QProcess, QCoreApplication |
12 from PyQt5.QtCore import pyqtSlot, Qt, QProcess, QCoreApplication |
17 from PyQt5.QtWidgets import QDialog, QDialogButtonBox, QAbstractItemView, \ |
13 from PyQt5.QtWidgets import QDialog, QDialogButtonBox, QAbstractItemView, \ |
18 QListWidgetItem, QAbstractButton |
14 QListWidgetItem, QAbstractButton |
19 |
15 |