5 |
5 |
6 """ |
6 """ |
7 Module implementing a configuration dialog for the bookmarked files menu. |
7 Module implementing a configuration dialog for the bookmarked files menu. |
8 """ |
8 """ |
9 |
9 |
10 from PyQt5.QtCore import QFileInfo, Qt, pyqtSlot |
10 from PyQt6.QtCore import QFileInfo, Qt, pyqtSlot |
11 from PyQt5.QtGui import QColor |
11 from PyQt6.QtGui import QColor |
12 from PyQt5.QtWidgets import QListWidgetItem, QDialog |
12 from PyQt6.QtWidgets import QListWidgetItem, QDialog |
13 |
13 |
14 from E5Gui.E5PathPicker import E5PathPickerModes |
14 from E5Gui.E5PathPicker import E5PathPickerModes |
15 |
15 |
16 from .Ui_BookmarkedFilesDialog import Ui_BookmarkedFilesDialog |
16 from .Ui_BookmarkedFilesDialog import Ui_BookmarkedFilesDialog |
17 |
17 |