8 """ |
8 """ |
9 |
9 |
10 import os |
10 import os |
11 import re |
11 import re |
12 |
12 |
13 from PyQt4.QtCore import * |
13 from PyQt4.QtCore import QDir, QModelIndex, pyqtSignal, QAbstractItemModel, \ |
14 from PyQt4.QtGui import * |
14 QFileSystemWatcher, Qt |
15 |
15 from PyQt4.QtGui import QColor |
16 from UI.BrowserModel import * |
16 |
|
17 from UI.BrowserModel import BrowserModel, BrowserItem, BrowserDirectoryItem, \ |
|
18 BrowserFileItem |
17 |
19 |
18 import UI.PixmapCache |
20 import UI.PixmapCache |
19 import Preferences |
21 import Preferences |
20 import Utilities |
22 import Utilities |
21 |
23 |