8 """ |
8 """ |
9 |
9 |
10 import os |
10 import os |
11 |
11 |
12 from PyQt6.QtCore import Qt, pyqtSlot |
12 from PyQt6.QtCore import Qt, pyqtSlot |
13 from PyQt6.QtWidgets import QHeaderView, QTreeWidgetItem, QDialog |
13 from PyQt6.QtWidgets import QDialog, QHeaderView, QTreeWidgetItem |
|
14 |
|
15 from eric7.EricGui import EricPixmapCache |
|
16 from eric7.QScintilla import Lexers |
14 |
17 |
15 from .Ui_LexerAssociationDialog import Ui_LexerAssociationDialog |
18 from .Ui_LexerAssociationDialog import Ui_LexerAssociationDialog |
16 |
|
17 from eric7.QScintilla import Lexers |
|
18 |
|
19 from eric7.EricGui import EricPixmapCache |
|
20 |
19 |
21 |
20 |
22 class LexerAssociationDialog(QDialog, Ui_LexerAssociationDialog): |
21 class LexerAssociationDialog(QDialog, Ui_LexerAssociationDialog): |
23 """ |
22 """ |
24 Class implementing a dialog to enter lexer associations for the project. |
23 Class implementing a dialog to enter lexer associations for the project. |