src/messagelog.h

Fri, 01 Jul 2022 16:46:43 +0300

author
Teemu Piippo <teemu.s.piippo@gmail.com>
date
Fri, 01 Jul 2022 16:46:43 +0300
changeset 312
2637134bc37c
parent 264
76a025db4948
permissions
-rw-r--r--

Fix right click to delete not really working properly
Instead of removing the point that had been added, it would remove
the point that is being drawn, which would cause it to overwrite the
previous point using the new point, causing a bit of a delay

#include <QAbstractTableModel>
#include "src/basics.h"

class MessageLog final : public QAbstractTableModel
{
	Q_OBJECT
	std::vector<Message> messages;
public:
	enum Column {
		TimeColumn,
		MessageColumn,
	};
	static constexpr int NUM_COLUMNS = int(MessageColumn) + 1;
	explicit MessageLog(QObject *parent = nullptr);
	Q_SLOT void addMessage(const Message& message);

	// QAbstractItemModel interface
public:
	QVariant headerData(int section, Qt::Orientation orientation, int role) const override;
	int rowCount(const QModelIndex& parent) const override;
	int columnCount(const QModelIndex& parent) const override;
	QVariant data(const QModelIndex& index, int role) const override;
};

mercurial