/
githubmirror
/
setools
Обзор
Документация
Войти
/
githubmirror
/
setools
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
main
setoolsgui/widgets/criteria/common.py
57 строк
2 KB
Christian Göttsche
Fix typos
01 окт 2024, 18:25
01 окт 2024, 18:25
8df3dbe
Код
Авторство
О чём код?
# SPDX-License-Identifier: LGPL-2.1-only from PyQt6 import QtWidgets import setools from .criteria import OptionsPlacement from .name import NameWidget # Regex for exact matches to roles VALIDATE_EXACT = r"[A-Za-z0-9._-]*" __all__ = ("CommonName",) class CommonName(NameWidget): """ Widget providing a QLineEdit that saves the input to the attributes of the specified query. This supports inputs of common names. """ def __init__(self, title: str, query: setools.PolicyQuery, attrname: str, /, *, parent: QtWidgets.QWidget | None = None, options_placement: OptionsPlacement = OptionsPlacement.RIGHT, required: bool = False, enable_regex: bool = True): # Create completion list completion = list[str](r.name for r in query.policy.commons()) super().__init__(title, query, attrname, completion, VALIDATE_EXACT, enable_regex=enable_regex, required=required, parent=parent, options_placement=options_placement) if __name__ == '__main__': import sys import logging import warnings logging.basicConfig(level=logging.DEBUG, format='%(asctime)s|%(levelname)s|%(name)s|%(message)s') warnings.simplefilter("default") q = setools.CommonQuery(setools.SELinuxPolicy()) app = QtWidgets.QApplication(sys.argv) mw = QtWidgets.QMainWindow() widget = CommonName("Test Common", q, "name", parent=mw) widget.setToolTip("test tooltip") widget.setWhatsThis("test what's this") mw.setCentralWidget(widget) mw.resize(widget.size()) whatsthis = QtWidgets.QWhatsThis.createAction(mw) mw.menuBar().addAction(whatsthis) # type: ignore[union-attr] mw.setStatusBar(QtWidgets.QStatusBar(mw)) mw.show() sys.exit(app.exec())