setools/setoolsgui/typemodel.py

65 lines
1.7 KiB
Python
Raw Normal View History

2016-03-16 12:47:55 +00:00
# Copyright 2016, Tresys Technology, LLC
#
# SPDX-License-Identifier: LGPL-2.1-only
2016-03-16 12:47:55 +00:00
#
#
from PyQt5.QtCore import Qt
2016-03-16 12:47:55 +00:00
from PyQt5.QtGui import QPalette, QTextCursor
from setools.exception import MLSDisabled
2016-03-16 12:47:55 +00:00
from .details import DetailsPopup
from .models import SEToolsTableModel
2016-03-16 12:47:55 +00:00
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):
2016-03-16 12:47:55 +00:00
"""Table-based model for types."""
headers = ["Name", "Attributes", "Aliases", "Permissive"]
def data(self, index, role):
if self.resultlist and index.isValid():
2016-03-16 12:47:55 +00:00
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