2017-09-09 08:23:58 -05:00
|
|
|
/*
|
|
|
|
Copyright (C) 2017 Srivats P.
|
|
|
|
|
|
|
|
This file is part of "Ostinato"
|
|
|
|
|
|
|
|
This is free software: you can redistribute it and/or modify
|
|
|
|
it under the terms of the GNU General Public License as published by
|
|
|
|
the Free Software Foundation, either version 3 of the License, or
|
|
|
|
(at your option) any later version.
|
|
|
|
|
|
|
|
This program is distributed in the hope that it will be useful,
|
|
|
|
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
GNU General Public License for more details.
|
|
|
|
|
|
|
|
You should have received a copy of the GNU General Public License
|
|
|
|
along with this program. If not, see <http://www.gnu.org/licenses/>
|
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef _X_TABLE_VIEW_H
|
|
|
|
#define _X_TABLE_VIEW_H
|
|
|
|
|
|
|
|
#include <QTableView>
|
|
|
|
|
2018-08-23 12:53:07 -05:00
|
|
|
#include <QClipboard>
|
|
|
|
#include <QKeyEvent>
|
2020-03-06 06:46:23 -06:00
|
|
|
#include <QMimeData>
|
2017-09-09 08:23:58 -05:00
|
|
|
#include <QPainter>
|
|
|
|
|
|
|
|
class XTableView : public QTableView
|
|
|
|
{
|
|
|
|
public:
|
|
|
|
XTableView(QWidget *parent) : QTableView(parent) {}
|
|
|
|
virtual ~XTableView() {}
|
|
|
|
|
|
|
|
protected:
|
|
|
|
virtual void paintEvent(QPaintEvent *event)
|
|
|
|
{
|
|
|
|
if (!model()->hasChildren()) {
|
|
|
|
QPainter painter(viewport());
|
|
|
|
style()->drawItemText(&painter, viewport()->rect(),
|
|
|
|
layoutDirection() | Qt::AlignCenter, palette(),
|
|
|
|
true, whatsThis(), QPalette::WindowText);
|
|
|
|
}
|
|
|
|
else
|
|
|
|
QTableView::paintEvent(event);
|
|
|
|
}
|
2018-08-23 12:53:07 -05:00
|
|
|
|
|
|
|
virtual void keyPressEvent(QKeyEvent *event)
|
2020-03-06 06:46:23 -06:00
|
|
|
{
|
|
|
|
if (event->matches(QKeySequence::Cut)) {
|
|
|
|
cut();
|
|
|
|
} else if (event->matches(QKeySequence::Copy)) {
|
|
|
|
copy();
|
|
|
|
} else if (event->matches(QKeySequence::Paste)) {
|
|
|
|
paste();
|
|
|
|
} else
|
|
|
|
QTableView::keyPressEvent(event);
|
|
|
|
}
|
|
|
|
|
|
|
|
private:
|
|
|
|
void cut()
|
|
|
|
{
|
|
|
|
copy();
|
|
|
|
foreach(QItemSelectionRange range, selectionModel()->selection())
|
|
|
|
model()->removeRows(range.top(), range.height());
|
|
|
|
}
|
|
|
|
|
|
|
|
void copy()
|
2018-08-23 12:53:07 -05:00
|
|
|
{
|
|
|
|
// Copy selection to clipboard (base class copies only current item)
|
2020-03-05 01:13:37 -06:00
|
|
|
// Selection, by default, is in the order in which items were selected
|
|
|
|
// - sort them before copying
|
2020-03-06 06:46:23 -06:00
|
|
|
QModelIndexList selected = selectionModel()->selectedIndexes();
|
|
|
|
|
|
|
|
if (selected.isEmpty())
|
|
|
|
return;
|
|
|
|
|
|
|
|
std::sort(selected.begin(), selected.end());
|
|
|
|
QMimeData *mimeData = model()->mimeData(selected);
|
|
|
|
qApp->clipboard()->setMimeData(mimeData);
|
|
|
|
qDebug("Copied data in %d format(s) to clipboard",
|
|
|
|
mimeData->formats().size());
|
|
|
|
for (int i = 0; i < mimeData->formats().size(); i++) {
|
|
|
|
qDebug(" %d: %s, %d bytes", i+1,
|
|
|
|
qPrintable(mimeData->formats().at(i)),
|
|
|
|
mimeData->data(mimeData->formats().at(i)).size());
|
2018-08-23 12:53:07 -05:00
|
|
|
}
|
2020-03-06 06:46:23 -06:00
|
|
|
}
|
|
|
|
|
|
|
|
void paste()
|
|
|
|
{
|
|
|
|
const QMimeData *mimeData = qApp->clipboard()->mimeData();
|
|
|
|
|
|
|
|
if (!mimeData)
|
|
|
|
return;
|
|
|
|
|
|
|
|
if (selectionModel()->hasSelection()
|
|
|
|
&& selectionModel()->selection().size() > 1) {
|
|
|
|
qWarning("Cannot paste into multiple(%d) selections",
|
|
|
|
selectionModel()->selection().size());
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
// If no selection, insert at the end
|
|
|
|
int row, column;
|
|
|
|
if (selectionModel()->hasSelection()
|
|
|
|
&& selectionModel()->selection().size() == 1) {
|
|
|
|
row = selectionModel()->selection().first().top();
|
|
|
|
column = selectionModel()->selection().first().left();
|
|
|
|
} else {
|
|
|
|
row = model()->rowCount();
|
|
|
|
column = model()->columnCount();
|
|
|
|
}
|
|
|
|
|
|
|
|
if (model()->canDropMimeData(mimeData, Qt::CopyAction,
|
|
|
|
row, column, QModelIndex()))
|
|
|
|
model()->dropMimeData(mimeData, Qt::CopyAction,
|
|
|
|
row, column, QModelIndex());
|
2018-08-23 12:53:07 -05:00
|
|
|
}
|
2017-09-09 08:23:58 -05:00
|
|
|
};
|
|
|
|
|
|
|
|
#endif
|
|
|
|
|