mirror of
https://github.com/subsurface/subsurface.git
synced 2025-02-19 22:16:15 +00:00
Print: improve table printing by using QTableView
The current QTextDocument implementation is slow due to HTML parsing. By using QTableView with QAbstractTableModel we boost the performance of the table print drastically. This patch completely replaces the old solution. There is a hidden QTableView widget which is populated with all data and rendered using a QPainter attached to the printer device. A couple of new classes are added in models.h/cpp that handle the table print model and these are then used in printlayout.h/cpp. Signed-off-by: Lubomir I. Ivanov <neolit123@gmail.com> Signed-off-by: Dirk Hohndel <dirk@hohndel.org>
This commit is contained in:
parent
1f976371bf
commit
e5b18db802
4 changed files with 259 additions and 132 deletions
|
@ -230,4 +230,45 @@ public:
|
|||
YearlyStatisticsModel(QObject* parent = 0);
|
||||
void update_yearly_stats();
|
||||
};
|
||||
|
||||
/* TablePrintModel:
|
||||
* for now we use a blank table model with row items TablePrintItem.
|
||||
* these are pretty much the same as DiveItem, but have color
|
||||
* properties, as well. perhaps later one a more unified model has to be
|
||||
* considered, but the current TablePrintModel idea has to be extended
|
||||
* to support variadic column lists and column list orders that can
|
||||
* be controlled by the user.
|
||||
*/
|
||||
struct TablePrintItem {
|
||||
QString number;
|
||||
QString date;
|
||||
QString depth;
|
||||
QString duration;
|
||||
QString divemaster;
|
||||
QString buddy;
|
||||
QString location;
|
||||
unsigned int colorBackground;
|
||||
};
|
||||
|
||||
class TablePrintModel : public QAbstractTableModel
|
||||
{
|
||||
Q_OBJECT
|
||||
|
||||
private:
|
||||
QList<struct TablePrintItem *> list;
|
||||
|
||||
public:
|
||||
~TablePrintModel();
|
||||
TablePrintModel();
|
||||
|
||||
int rows, columns;
|
||||
void insertRow(int index = -1);
|
||||
void callReset();
|
||||
|
||||
QVariant data(const QModelIndex &index, int role) const;
|
||||
bool setData(const QModelIndex &index, const QVariant &value, int role);
|
||||
int rowCount(const QModelIndex &parent) const;
|
||||
int columnCount(const QModelIndex &parent) const;
|
||||
};
|
||||
|
||||
#endif
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue