1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49
|
# Copyright 2016, Tresys Technology, LLC
#
# SPDX-License-Identifier: LGPL-2.1-only
#
#
from itertools import chain
from PyQt6 import QtCore
import setools
from .modelroles import ModelRoles
from .table import SEToolsTableModel
from .. import details
__all__ = ("ObjClassTable",)
class ObjClassTable(SEToolsTableModel[setools.ObjClass]):
"""Table-based model for object classes."""
headers = ["Name", "Permissions"]
def data(self, index: QtCore.QModelIndex, role: int = ModelRoles.DisplayRole):
if not self.item_list or not index.isValid():
return None
row = index.row()
col = index.column()
item = self.item_list[row]
match role:
case ModelRoles.DisplayRole:
match col:
case 0:
return item.name
case 1:
try:
return ", ".join(sorted(chain(item.common.perms, item.perms)))
except setools.exception.NoCommon:
return ", ".join(sorted(item.perms))
case ModelRoles.ContextMenuRole:
return (details.objclass_detail_action(item), )
case ModelRoles.ToolTipRole:
return details.objclass_tooltip(item)
return super().data(index, role)
|