mirror of
https://github.com/SELinuxProject/setools
synced 2025-03-22 19:16:34 +00:00
65 lines
1.7 KiB
Python
65 lines
1.7 KiB
Python
# Copyright 2016, Tresys Technology, LLC
|
|
#
|
|
# SPDX-License-Identifier: LGPL-2.1-only
|
|
#
|
|
#
|
|
from PyQt5.QtCore import Qt
|
|
from PyQt5.QtGui import QPalette, QTextCursor
|
|
|
|
from setools.exception import MLSDisabled
|
|
|
|
from .details import DetailsPopup
|
|
from .models import SEToolsTableModel
|
|
|
|
|
|
def type_detail(parent, type_):
|
|
"""
|
|
Create a dialog box for type details.
|
|
|
|
Parameters:
|
|
parent The parent Qt Widget
|
|
type_ The type
|
|
"""
|
|
|
|
detail = DetailsPopup(parent, "Type detail: {0}".format(type_))
|
|
|
|
detail.append_header("Permissive: {0}\n".format("Yes" if type_.ispermissive else "No"))
|
|
|
|
attrs = sorted(type_.attributes())
|
|
detail.append_header("Attributes ({0}):".format(len(attrs)))
|
|
for a in attrs:
|
|
detail.append(" {0}".format(a))
|
|
|
|
aliases = sorted(type_.aliases())
|
|
detail.append_header("\nAliases ({0}):".format(len(aliases)))
|
|
for a in aliases:
|
|
detail.append(" {0}".format(a))
|
|
|
|
detail.show()
|
|
|
|
|
|
class TypeTableModel(SEToolsTableModel):
|
|
|
|
"""Table-based model for types."""
|
|
|
|
headers = ["Name", "Attributes", "Aliases", "Permissive"]
|
|
|
|
def data(self, index, role):
|
|
if self.resultlist and index.isValid():
|
|
row = index.row()
|
|
col = index.column()
|
|
item = self.resultlist[row]
|
|
|
|
if role == Qt.DisplayRole:
|
|
if col == 0:
|
|
return item.name
|
|
elif col == 1:
|
|
return ", ".join(sorted(a.name for a in item.attributes()))
|
|
elif col == 2:
|
|
return ", ".join(sorted(a for a in item.aliases()))
|
|
elif col == 3 and item.ispermissive:
|
|
return "Permissive"
|
|
|
|
elif role == Qt.UserRole:
|
|
return item
|