7 Module implementing a dialog to enter lexer associations for the project. |
7 Module implementing a dialog to enter lexer associations for the project. |
8 """ |
8 """ |
9 |
9 |
10 import os |
10 import os |
11 |
11 |
12 from PyQt5.QtCore import Qt, pyqtSlot |
12 from PyQt6.QtCore import Qt, pyqtSlot |
13 from PyQt5.QtWidgets import QHeaderView, QTreeWidgetItem, QDialog |
13 from PyQt6.QtWidgets import QHeaderView, QTreeWidgetItem, QDialog |
14 |
14 |
15 from .Ui_LexerAssociationDialog import Ui_LexerAssociationDialog |
15 from .Ui_LexerAssociationDialog import Ui_LexerAssociationDialog |
16 |
16 |
17 |
17 |
18 class LexerAssociationDialog(QDialog, Ui_LexerAssociationDialog): |
18 class LexerAssociationDialog(QDialog, Ui_LexerAssociationDialog): |