Python PySide2.QtWidgets.QTableView() Examples
The following are 10
code examples of PySide2.QtWidgets.QTableView().
You can vote up the ones you like or vote down the ones you don't like,
and go to the original project or source file by following the links above each example.
You may also want to check out all available functions/classes of the module
PySide2.QtWidgets
, or try the search function
.
Example #1
Source File: ThreadsWidget.py From debugger with MIT License | 5 votes |
def __init__(self, parent, name, data): if not type(data) == BinaryView: raise Exception('expected widget data to be a BinaryView') self.bv = data QWidget.__init__(self, parent) DockContextHandler.__init__(self, self, name) self.actionHandler = UIActionHandler() self.actionHandler.setupActionHandler(self) self.table = QTableView(self) self.model = DebugThreadsListModel(self.table) self.table.setModel(self.model) self.table.clicked.connect(self.threadRowClicked) self.item_delegate = DebugThreadsItemDelegate(self) self.table.setItemDelegate(self.item_delegate) # self.table.setSortingEnabled(True) self.table.setSelectionBehavior(QAbstractItemView.SelectionBehavior.SelectRows) self.table.setSelectionMode(QAbstractItemView.ExtendedSelection) self.table.verticalHeader().setSectionResizeMode(QHeaderView.ResizeToContents) self.table.verticalHeader().setVisible(False) self.table.setHorizontalScrollMode(QAbstractItemView.ScrollPerPixel) self.table.setVerticalScrollMode(QAbstractItemView.ScrollPerPixel) self.table.resizeColumnsToContents() self.table.resizeRowsToContents() for i in range(len(self.model.columns)): self.table.setColumnWidth(i, self.item_delegate.sizeHint(self.table.viewOptions(), self.model.index(-1, i, QModelIndex())).width()) self.table.horizontalHeader().setSectionResizeMode(1, QHeaderView.Stretch) layout = QVBoxLayout() layout.setContentsMargins(0, 0, 0, 0) layout.setSpacing(0) layout.addWidget(self.table) self.setLayout(layout)
Example #2
Source File: ThreadsWidget.py From debugger with MIT License | 5 votes |
def notifyOffsetChanged(self, offset): pass # called from QTableView's clicked signal # index: QModelIndex
Example #3
Source File: StackWidget.py From debugger with MIT License | 5 votes |
def __init__(self, parent, name, data): if not type(data) == BinaryView: raise Exception('expected widget data to be a BinaryView') self.bv = data QWidget.__init__(self, parent) DockContextHandler.__init__(self, self, name) self.actionHandler = UIActionHandler() self.actionHandler.setupActionHandler(self) self.table = QTableView(self) self.model = DebugStackModel(self.table, data) self.table.setModel(self.model) self.item_delegate = DebugStackItemDelegate(self) self.table.setItemDelegate(self.item_delegate) # self.table.setSortingEnabled(True) self.table.setSelectionBehavior(QAbstractItemView.SelectionBehavior.SelectRows) self.table.setSelectionMode(QAbstractItemView.ExtendedSelection) self.table.verticalHeader().setSectionResizeMode(QHeaderView.ResizeToContents) self.table.verticalHeader().setVisible(False) self.table.setHorizontalScrollMode(QAbstractItemView.ScrollPerPixel) self.table.setVerticalScrollMode(QAbstractItemView.ScrollPerPixel) self.table.resizeColumnsToContents() self.table.resizeRowsToContents() for i in range(len(self.model.columns)): self.table.setColumnWidth(i, self.item_delegate.sizeHint(self.table.viewOptions(), self.model.index(-1, i, QModelIndex())).width()) layout = QVBoxLayout() layout.setContentsMargins(0, 0, 0, 0) layout.setSpacing(0) layout.addWidget(self.table) self.setLayout(layout)
Example #4
Source File: BreakpointsWidget.py From debugger with MIT License | 5 votes |
def __init__(self, parent, name, data): if not type(data) == BinaryView: raise Exception('expected widget data to be a BinaryView') self.bv = data QWidget.__init__(self, parent) DockContextHandler.__init__(self, self, name) self.actionHandler = UIActionHandler() self.actionHandler.setupActionHandler(self) self.table = QTableView(self) self.model = DebugBreakpointsListModel(self.table, data) self.table.setModel(self.model) self.item_delegate = DebugBreakpointsItemDelegate(self) self.table.setItemDelegate(self.item_delegate) # self.table.setSortingEnabled(True) self.table.setSelectionBehavior(QAbstractItemView.SelectionBehavior.SelectRows) self.table.setSelectionMode(QAbstractItemView.ExtendedSelection) self.table.verticalHeader().setSectionResizeMode(QHeaderView.ResizeToContents) self.table.verticalHeader().setVisible(False) self.table.setHorizontalScrollMode(QAbstractItemView.ScrollPerPixel) self.table.setVerticalScrollMode(QAbstractItemView.ScrollPerPixel) self.table.resizeColumnsToContents() self.table.resizeRowsToContents() for i in range(len(self.model.columns)): self.table.setColumnWidth(i, self.item_delegate.sizeHint(self.table.viewOptions(), self.model.index(-1, i, QModelIndex())).width()) self.table.horizontalHeader().setSectionResizeMode(1, QHeaderView.Stretch) layout = QVBoxLayout() layout.setContentsMargins(0, 0, 0, 0) layout.setSpacing(0) layout.addWidget(self.table) self.setLayout(layout)
Example #5
Source File: Rush.py From rush with MIT License | 5 votes |
def tabComplete(self, view, model): """ Complete commands by tab key Args: currentView (QTableView): view """ selection = view.selectionModel() numRows = model.rowCount() if selection.hasSelection() is False: view.selectRow(0) index = model.index(0, 0) else: currentIndex = selection.currentIndex() currentRow = currentIndex.row() if currentRow == (numRows - 1): nextRow = 0 else: nextRow = currentRow + 1 view.clearSelection() view.selectRow(nextRow) index = model.index(nextRow, 0) selection.select(index, QtCore.QItemSelectionModel.Select) data = model.itemData(index) name = data[0] self.cmdsLE.setText(name) self.cmdsLE.setFocus()
Example #6
Source File: GeneralDialogues.py From GridCal with GNU General Public License v3.0 | 5 votes |
def __init__(self, name, logs: Logger()): super(LogsDialogue, self).__init__() self.setObjectName("self") self.setContextMenuPolicy(QtCore.Qt.NoContextMenu) self.layout = QtWidgets.QVBoxLayout(self) # logs_list self.logs_table = QtWidgets.QTableView() model = LogsModel(logs) self.logs_table.setModel(model) for i in range(model.columnCount()): self.logs_table.horizontalHeader().setSectionResizeMode(i, QtWidgets.QHeaderView.Stretch) # accept button self.accept_btn = QtWidgets.QPushButton() self.accept_btn.setText('Accept') self.accept_btn.clicked.connect(self.accept_click) # add all to the GUI self.layout.addWidget(QtWidgets.QLabel("Logs")) self.layout.addWidget(self.logs_table) self.layout.addWidget(self.accept_btn) self.setLayout(self.layout) self.setWindowTitle(name) h = 400 self.resize(int(1.61 * h), h)
Example #7
Source File: GeneralDialogues.py From GridCal with GNU General Public License v3.0 | 5 votes |
def __init__(self, name, elements: list()): super(ElementsDialogue, self).__init__() self.setObjectName("self") self.setContextMenuPolicy(QtCore.Qt.NoContextMenu) self.layout = QtWidgets.QVBoxLayout(self) # build elements list self.objects_table = QtWidgets.QTableView() if len(elements) > 0: model = ObjectsModel(elements, elements[0].editable_headers, parent=self.objects_table, editable=False, non_editable_attributes=[1, 2, 14]) self.objects_table.setModel(model) # accept button self.accept_btn = QtWidgets.QPushButton() self.accept_btn.setText('Proceed') self.accept_btn.clicked.connect(self.accept_click) # Copy button self.copy_btn = QtWidgets.QPushButton() self.copy_btn.setText('Copy') self.copy_btn.clicked.connect(self.copy_click) # add all to the GUI self.layout.addWidget(self.objects_table) self.frame2 = QtWidgets.QFrame() self.layout.addWidget(self.frame2) self.layout2 = QtWidgets.QHBoxLayout(self.frame2) self.layout2.addWidget(self.accept_btn) self.layout2.addWidget(QtWidgets.QSpacerItem()) self.layout2.addWidget(self.copy_btn) self.setLayout(self.layout) self.setWindowTitle(name) self.accepted = False
Example #8
Source File: ModulesWidget.py From debugger with MIT License | 4 votes |
def __init__(self, parent, name, data): if not type(data) == binaryninja.binaryview.BinaryView: raise Exception('expected widget data to be a BinaryView') self.bv = data QWidget.__init__(self, parent) DockContextHandler.__init__(self, self, name) self.actionHandler = UIActionHandler() self.actionHandler.setupActionHandler(self) self.table = QTableView(self) self.model = DebugModulesListModel(self.table, data) self.table.setModel(self.model) self.item_delegate = DebugModulesItemDelegate(self) self.table.setItemDelegate(self.item_delegate) # self.table.setSortingEnabled(True) self.table.setSelectionBehavior(QAbstractItemView.SelectionBehavior.SelectRows) self.table.setSelectionMode(QAbstractItemView.ExtendedSelection) self.table.verticalHeader().setSectionResizeMode(QHeaderView.ResizeToContents) self.table.verticalHeader().setVisible(False) self.table.setHorizontalScrollMode(QAbstractItemView.ScrollPerPixel) self.table.setVerticalScrollMode(QAbstractItemView.ScrollPerPixel) self.table.resizeColumnsToContents() self.table.resizeRowsToContents() for i in range(len(self.model.columns)): self.table.setColumnWidth(i, self.item_delegate.sizeHint(self.table.viewOptions(), self.model.index(-1, i, QModelIndex())).width()) update_layout = QHBoxLayout() update_layout.setContentsMargins(0, 0, 0, 0) update_label = QLabel("Data is Stale") update_button = QPushButton("Refresh") update_button.clicked.connect(lambda: self.refresh()) update_layout.addWidget(update_label) update_layout.addStretch(1) update_layout.addWidget(update_button) self.update_box = QWidget() self.update_box.setLayout(update_layout) self.layout = QVBoxLayout() self.layout.setContentsMargins(0, 0, 0, 0) self.layout.setSpacing(0) self.layout.addWidget(self.table) self.setLayout(self.layout)
Example #9
Source File: Rush.py From rush with MIT License | 4 votes |
def shiftTabComplete(self, view, model): """ shift tab completion Args: view (QTableView): view model (QSortFilterProxyModel): model Return: None """ if self.cmdsLE.text() == "": return selection = view.selectionModel() numRows = model.rowCount() if selection.hasSelection() is False: lastIndex = numRows - 1 view.selectRow(lastIndex) index = model.index(lastIndex, 0) else: currentIndex = selection.currentIndex() currentRow = currentIndex.row() if currentRow == 0: nextRow = numRows - 1 else: nextRow = currentRow - 1 index = model.index(nextRow, 0) view.selectRow(nextRow) view.clearSelection() selection.select(index, QtCore.QItemSelectionModel.Select) data = model.itemData(index) name = data[0] self.cmdsLE.setText(name) self.cmdsLE.setFocus()
Example #10
Source File: gui.py From GridCal with GNU General Public License v3.0 | 4 votes |
def setupUi(self, MainWindow): MainWindow.setObjectName("MainWindow") MainWindow.resize(841, 518) icon = QtGui.QIcon() icon.addPixmap(QtGui.QPixmap(":/Icons/icons/sigma.svg"), QtGui.QIcon.Normal, QtGui.QIcon.Off) MainWindow.setWindowIcon(icon) self.centralwidget = QtWidgets.QWidget(MainWindow) self.centralwidget.setObjectName("centralwidget") self.verticalLayout = QtWidgets.QVBoxLayout(self.centralwidget) self.verticalLayout.setObjectName("verticalLayout") self.splitter_3 = QtWidgets.QSplitter(self.centralwidget) self.splitter_3.setOrientation(QtCore.Qt.Horizontal) self.splitter_3.setObjectName("splitter_3") self.frame_8 = QtWidgets.QFrame(self.splitter_3) self.frame_8.setFrameShape(QtWidgets.QFrame.NoFrame) self.frame_8.setFrameShadow(QtWidgets.QFrame.Raised) self.frame_8.setObjectName("frame_8") self.verticalLayout_7 = QtWidgets.QVBoxLayout(self.frame_8) self.verticalLayout_7.setContentsMargins(-1, 0, -1, -1) self.verticalLayout_7.setObjectName("verticalLayout_7") self.tableView = QtWidgets.QTableView(self.frame_8) self.tableView.setObjectName("tableView") self.verticalLayout_7.addWidget(self.tableView) self.PlotFrame = QtWidgets.QFrame(self.splitter_3) self.PlotFrame.setFrameShape(QtWidgets.QFrame.NoFrame) self.PlotFrame.setFrameShadow(QtWidgets.QFrame.Raised) self.PlotFrame.setObjectName("PlotFrame") self.horizontalLayout = QtWidgets.QHBoxLayout(self.PlotFrame) self.horizontalLayout.setObjectName("horizontalLayout") self.plotwidget = MatplotlibWidget(self.PlotFrame) self.plotwidget.setObjectName("plotwidget") self.horizontalLayout.addWidget(self.plotwidget) self.verticalLayout.addWidget(self.splitter_3) MainWindow.setCentralWidget(self.centralwidget) self.menubar = QtWidgets.QMenuBar(MainWindow) self.menubar.setGeometry(QtCore.QRect(0, 0, 841, 22)) self.menubar.setObjectName("menubar") self.menuActions = QtWidgets.QMenu(self.menubar) self.menuActions.setObjectName("menuActions") MainWindow.setMenuBar(self.menubar) self.statusbar = QtWidgets.QStatusBar(MainWindow) self.statusbar.setObjectName("statusbar") MainWindow.setStatusBar(self.statusbar) self.actionCopy_to_clipboard = QtWidgets.QAction(MainWindow) icon1 = QtGui.QIcon() icon1.addPixmap(QtGui.QPixmap(":/Icons/icons/copy.svg"), QtGui.QIcon.Normal, QtGui.QIcon.Off) self.actionCopy_to_clipboard.setIcon(icon1) self.actionCopy_to_clipboard.setObjectName("actionCopy_to_clipboard") self.actionSave = QtWidgets.QAction(MainWindow) icon2 = QtGui.QIcon() icon2.addPixmap(QtGui.QPixmap(":/Icons/icons/import_profiles.svg"), QtGui.QIcon.Normal, QtGui.QIcon.Off) self.actionSave.setIcon(icon2) self.actionSave.setObjectName("actionSave") self.menuActions.addAction(self.actionCopy_to_clipboard) self.menuActions.addAction(self.actionSave) self.menubar.addAction(self.menuActions.menuAction()) self.retranslateUi(MainWindow) QtCore.QMetaObject.connectSlotsByName(MainWindow)