2019-09-10 00:54:28 +00:00
|
|
|
# Created By: Virgil Dupras
|
|
|
|
# Created On: 2009-11-25
|
|
|
|
# Copyright 2015 Hardcoded Software (http://www.hardcoded.net)
|
|
|
|
#
|
|
|
|
# This software is licensed under the "GPLv3" License as described in the "LICENSE" file,
|
|
|
|
# which should be included with this package. The terms are also available at
|
|
|
|
# http://www.gnu.org/licenses/gpl-3.0.html
|
|
|
|
|
|
|
|
from PyQt5.QtCore import Qt
|
|
|
|
from PyQt5.QtWidgets import QHeaderView
|
|
|
|
|
2020-01-01 02:16:27 +00:00
|
|
|
|
2019-09-10 00:54:28 +00:00
|
|
|
class Column:
|
2020-01-01 02:16:27 +00:00
|
|
|
def __init__(
|
|
|
|
self,
|
|
|
|
attrname,
|
|
|
|
defaultWidth,
|
|
|
|
editor=None,
|
|
|
|
alignment=Qt.AlignLeft,
|
|
|
|
cantTruncate=False,
|
|
|
|
painter=None,
|
|
|
|
resizeToFit=False,
|
|
|
|
):
|
2019-09-10 00:54:28 +00:00
|
|
|
self.attrname = attrname
|
|
|
|
self.defaultWidth = defaultWidth
|
|
|
|
self.editor = editor
|
|
|
|
# See moneyguru #15. Painter attribute was added to allow custom painting of amount value and
|
|
|
|
# currency information. Can be used as a pattern for custom painting of any column.
|
|
|
|
self.painter = painter
|
|
|
|
self.alignment = alignment
|
|
|
|
# This is to indicate, during printing, that a column can't have its data truncated.
|
|
|
|
self.cantTruncate = cantTruncate
|
|
|
|
self.resizeToFit = resizeToFit
|
|
|
|
|
|
|
|
|
|
|
|
class Columns:
|
|
|
|
def __init__(self, model, columns, headerView):
|
|
|
|
self.model = model
|
|
|
|
self._headerView = headerView
|
|
|
|
self._headerView.setDefaultAlignment(Qt.AlignLeft)
|
2020-01-01 02:16:27 +00:00
|
|
|
|
2019-09-10 00:54:28 +00:00
|
|
|
def setspecs(col, modelcol):
|
|
|
|
modelcol.default_width = col.defaultWidth
|
|
|
|
modelcol.editor = col.editor
|
|
|
|
modelcol.painter = col.painter
|
|
|
|
modelcol.resizeToFit = col.resizeToFit
|
|
|
|
modelcol.alignment = col.alignment
|
|
|
|
modelcol.cantTruncate = col.cantTruncate
|
2020-01-01 02:16:27 +00:00
|
|
|
|
2019-09-10 00:54:28 +00:00
|
|
|
if columns:
|
|
|
|
for col in columns:
|
|
|
|
modelcol = self.model.column_by_name(col.attrname)
|
|
|
|
setspecs(col, modelcol)
|
|
|
|
else:
|
2020-01-01 02:16:27 +00:00
|
|
|
col = Column("", 100)
|
2019-09-10 00:54:28 +00:00
|
|
|
for modelcol in self.model.column_list:
|
|
|
|
setspecs(col, modelcol)
|
|
|
|
self.model.view = self
|
|
|
|
self._headerView.sectionMoved.connect(self.headerSectionMoved)
|
|
|
|
self._headerView.sectionResized.connect(self.headerSectionResized)
|
|
|
|
|
|
|
|
# See moneyguru #14 and #15. This was added in order to allow automatic resizing of columns.
|
|
|
|
for column in self.model.column_list:
|
|
|
|
if column.resizeToFit:
|
2021-08-15 09:10:18 +00:00
|
|
|
self._headerView.setSectionResizeMode(column.logical_index, QHeaderView.ResizeToContents)
|
2019-09-10 00:54:28 +00:00
|
|
|
|
2020-01-01 02:16:27 +00:00
|
|
|
# --- Public
|
2019-09-10 00:54:28 +00:00
|
|
|
def setColumnsWidth(self, widths):
|
2020-01-01 02:16:27 +00:00
|
|
|
# `widths` can be None. If it is, then default widths are set.
|
2019-09-10 00:54:28 +00:00
|
|
|
columns = self.model.column_list
|
|
|
|
if not widths:
|
|
|
|
widths = [column.default_width for column in columns]
|
|
|
|
for column, width in zip(columns, widths):
|
2020-01-01 02:16:27 +00:00
|
|
|
if width == 0: # column was hidden before.
|
2019-09-10 00:54:28 +00:00
|
|
|
width = column.default_width
|
|
|
|
self._headerView.resizeSection(column.logical_index, width)
|
|
|
|
|
|
|
|
def setColumnsOrder(self, columnIndexes):
|
|
|
|
if not columnIndexes:
|
|
|
|
return
|
|
|
|
for destIndex, columnIndex in enumerate(columnIndexes):
|
|
|
|
# moveSection takes 2 visual index arguments, so we have to get our visual index first
|
|
|
|
visualIndex = self._headerView.visualIndex(columnIndex)
|
|
|
|
self._headerView.moveSection(visualIndex, destIndex)
|
|
|
|
|
2020-01-01 02:16:27 +00:00
|
|
|
# --- Events
|
2019-09-10 00:54:28 +00:00
|
|
|
def headerSectionMoved(self, logicalIndex, oldVisualIndex, newVisualIndex):
|
|
|
|
attrname = self.model.column_by_index(logicalIndex).name
|
|
|
|
self.model.move_column(attrname, newVisualIndex)
|
|
|
|
|
|
|
|
def headerSectionResized(self, logicalIndex, oldSize, newSize):
|
|
|
|
attrname = self.model.column_by_index(logicalIndex).name
|
|
|
|
self.model.resize_column(attrname, newSize)
|
|
|
|
|
2020-01-01 02:16:27 +00:00
|
|
|
# --- model --> view
|
2019-09-10 00:54:28 +00:00
|
|
|
def restore_columns(self):
|
|
|
|
columns = self.model.ordered_columns
|
|
|
|
indexes = [col.logical_index for col in columns]
|
|
|
|
self.setColumnsOrder(indexes)
|
|
|
|
widths = [col.width for col in self.model.column_list]
|
|
|
|
if not any(widths):
|
|
|
|
widths = None
|
|
|
|
self.setColumnsWidth(widths)
|
|
|
|
for column in self.model.column_list:
|
|
|
|
visible = self.model.column_is_visible(column.name)
|
|
|
|
self._headerView.setSectionHidden(column.logical_index, not visible)
|
|
|
|
|
|
|
|
def set_column_visible(self, colname, visible):
|
|
|
|
column = self.model.column_by_name(colname)
|
|
|
|
self._headerView.setSectionHidden(column.logical_index, not visible)
|