10 from PyQt4.QtCore import * |
10 from PyQt4.QtCore import * |
11 from PyQt4.QtGui import * |
11 from PyQt4.QtGui import * |
12 |
12 |
13 import Helpviewer.HelpWindow |
13 import Helpviewer.HelpWindow |
14 |
14 |
15 from BookmarkNode import BookmarkNode |
15 from .BookmarkNode import BookmarkNode |
16 |
16 |
17 from Ui_AddBookmarkDialog import Ui_AddBookmarkDialog |
17 from .Ui_AddBookmarkDialog import Ui_AddBookmarkDialog |
18 |
18 |
19 class AddBookmarkProxyModel(QSortFilterProxyModel): |
19 class AddBookmarkProxyModel(QSortFilterProxyModel): |
20 """ |
20 """ |
21 Class implementing a proxy model used by the AddBookmarkDialog dialog. |
21 Class implementing a proxy model used by the AddBookmarkDialog dialog. |
22 """ |
22 """ |