在QTableView中选择行,复制到QClipboard

时间:2009-08-04 22:26:39

标签: c++ qt qt4 clipboard qtableview

我有一个SQLite-Database,我把它做成QSqlTableModel。 为了显示数据库,我将该模型放入QTableView

现在我想创建一个方法,将所选行(或整行)复制到QClipboard。之后我想将它插入我的OpenOffice.Calc-Document。

但我不知道如何处理Selected SIGNAL和QModelIndex以及如何将其放入剪贴板。

12 个答案:

答案 0 :(得分:26)

要实际捕捉选区,请使用项目视图的selection model获取list of indices。假设您有一个名为QTableView *的{​​{1}},您可以通过以下方式进行选择:

view

然后循环遍历每个索引上调用QAbstractItemModel * model = view->model(); QItemSelectionModel * selection = view->selectionModel(); QModelIndexList indexes = selection->selectedIndexes(); 的索引列表。如果数据尚未将数据转换为字符串,则将每个字符串连接在一起。然后,您可以使用model->data(index)将结果粘贴到剪贴板。请注意,对于Excel和Calc,每个列通过换行符(“\ n”)与下一列分隔,每行由制表符(“\ t”)分隔。您必须检查索引以确定何时移动到下一行。

QClipboard.setText

警告:我没有机会尝试此代码,但PyQt等效代码可以使用。

答案 1 :(得分:13)

我遇到了类似的问题,最终调整了QTableWidget(这是QTableView的扩展)来添加复制/粘贴功能。以下是基于夸克提供的代码:

qtablewidgetwithcopypaste.h

// QTableWidget with support for copy and paste added
// Here copy and paste can copy/paste the entire grid of cells
#ifndef QTABLEWIDGETWITHCOPYPASTE_H
#define QTABLEWIDGETWITHCOPYPASTE_H

#include <QTableWidget>
#include <QKeyEvent>
#include <QWidget>

class QTableWidgetWithCopyPaste : public QTableWidget
{
    Q_OBJECT
public:
  QTableWidgetWithCopyPaste(int rows, int columns, QWidget *parent = 0) :
      QTableWidget(rows, columns, parent)
  {}

  QTableWidgetWithCopyPaste(QWidget *parent = 0) :
  QTableWidget(parent)
  {}

private:
  void copy();
  void paste();

public slots:
  void keyPressEvent(QKeyEvent * event);
};

#endif // QTABLEWIDGETWITHCOPYPASTE_H

qtablewidgetwithcopypaste.cpp

#include "qtablewidgetwithcopypaste.h"
#include <QApplication>
#include <QMessageBox>
#include <QClipboard>
#include <QMimeData>

void QTableWidgetWithCopyPaste::copy()
{
    QItemSelectionModel * selection = selectionModel();
    QModelIndexList indexes = selection->selectedIndexes();

    if(indexes.size() < 1)
        return;

    // QModelIndex::operator < sorts first by row, then by column.
    // this is what we need
//    std::sort(indexes.begin(), indexes.end());
    qSort(indexes);

    // You need a pair of indexes to find the row changes
    QModelIndex previous = indexes.first();
    indexes.removeFirst();
    QString selected_text_as_html;
    QString selected_text;
    selected_text_as_html.prepend("<html><style>br{mso-data-placement:same-cell;}</style><table><tr><td>");
    QModelIndex current;
    Q_FOREACH(current, indexes)
    {
        QVariant data = model()->data(previous);
        QString text = data.toString();
        selected_text.append(text);
        text.replace("\n","<br>");
        // At this point `text` contains the text in one cell
        selected_text_as_html.append(text);

        // If you are at the start of the row the row number of the previous index
        // isn't the same.  Text is followed by a row separator, which is a newline.
        if (current.row() != previous.row())
        {
            selected_text_as_html.append("</td></tr><tr><td>");
            selected_text.append(QLatin1Char('\n'));
        }
        // Otherwise it's the same row, so append a column separator, which is a tab.
        else
        {
            selected_text_as_html.append("</td><td>");
            selected_text.append(QLatin1Char('\t'));
        }
        previous = current;
    }

    // add last element
    selected_text_as_html.append(model()->data(current).toString());
    selected_text.append(model()->data(current).toString());
    selected_text_as_html.append("</td></tr>");
    QMimeData * md = new QMimeData;
    md->setHtml(selected_text_as_html);
//    qApp->clipboard()->setText(selected_text);
    md->setText(selected_text);
    qApp->clipboard()->setMimeData(md);

//    selected_text.append(QLatin1Char('\n'));
//    qApp->clipboard()->setText(selected_text);
}

void QTableWidgetWithCopyPaste::paste()
{
    if(qApp->clipboard()->mimeData()->hasHtml())
    {
        // TODO, parse the html data
    }
    else
    {
        QString selected_text = qApp->clipboard()->text();
        QStringList cells = selected_text.split(QRegExp(QLatin1String("\\n|\\t")));
        while(!cells.empty() && cells.back().size() == 0)
        {
            cells.pop_back(); // strip empty trailing tokens
        }
        int rows = selected_text.count(QLatin1Char('\n'));
        int cols = cells.size() / rows;
        if(cells.size() % rows != 0)
        {
            // error, uneven number of columns, probably bad data
            QMessageBox::critical(this, tr("Error"),
                                  tr("Invalid clipboard data, unable to perform paste operation."));
            return;
        }

        if(cols != columnCount())
        {
            // error, clipboard does not match current number of columns
            QMessageBox::critical(this, tr("Error"),
                                  tr("Invalid clipboard data, incorrect number of columns."));
            return;
        }

        // don't clear the grid, we want to keep any existing headers
        setRowCount(rows);
        // setColumnCount(cols);
        int cell = 0;
        for(int row=0; row < rows; ++row)
        {
            for(int col=0; col < cols; ++col, ++cell)
            {
                QTableWidgetItem *newItem = new QTableWidgetItem(cells[cell]);
                setItem(row, col, newItem);
            }
        }
    }
}

void QTableWidgetWithCopyPaste::keyPressEvent(QKeyEvent * event)
{
    if(event->matches(QKeySequence::Copy) )
    {
        copy();
    }
    else if(event->matches(QKeySequence::Paste) )
    {
        paste();
    }
    else
    {
        QTableWidget::keyPressEvent(event);
    }

}

答案 2 :(得分:5)

夸克的答案(选定的答案)有助于指出人们正确的方向,但他的算法完全不正确。除了一个错误和错误的赋值,它甚至在语法上都不正确。下面是我刚编写和测试的工作版本。

让我们假设我们的示例表如下:

A | B | C
D | E | ˚F

Quark算法的问题如下:

如果我们将 \ t 分隔符替换为&#39; | &#39; ,它会产生这样的输出:
B | C | D
E | F |

关闭一个错误是 D 出现在第一行。遗漏 A

证明了错误的分配

以下算法使用正确的语法纠正了这两个问题。

    QString clipboardString;
    QModelIndexList selectedIndexes = view->selectionModel()->selectedIndexes();

    for (int i = 0; i < selectedIndexes.count(); ++i)
    {
        QModelIndex current = selectedIndexes[i];
        QString displayText = current.data(Qt::DisplayRole).toString();

        // If there exists another column beyond this one.
        if (i + 1 < selectedIndexes.count())
        {
            QModelIndex next = selectedIndexes[i+1];

            // If the column is on different row, the clipboard should take note.
            if (next.row() != current.row())
            {
                displayText.append("\n");
            }
            else
            {
                // Otherwise append a column separator.
                displayText.append(" | ");
            }
        }
        clipboardString.append(displayText);
    }

    QApplication::clipboard()->setText(clipboardString);

我选择使用计数器而不是迭代器的原因只是因为通过检查计数来更容易测试是否存在另一个索引。使用迭代器,我想也许你可以只增加它并将其存储在一个弱指针中以测试它是否有效但只是像我上面那样使用一个计数器。

我们需要检查下一行行是否会在新行上显示。如果我们在新行上并且我们检查前一行是Quark的算法,那么它已经来不及追加。我们可以预先添加,但是我们必须跟踪最后一个字符串大小。上面的代码将从示例表中生成以下输出:

A | B | C
D | E | ˚F

答案 3 :(得分:4)

无论出于何种原因,我都无法访问std :: sort函数,但我确实发现,作为Corwin Joy解决方案的一个简洁替代方案,sort函数可以通过替换来实现

 std::sort(indexes.begin(), indexes.end());

  qSort(indexes);

这与写作相同:

 qSort(indexes.begin(), indexes.end());

感谢您有用的代码!

答案 4 :(得分:1)

您需要做的是访问模型中的文本数据,然后将该文本传递给QClipboard

要访问模型中的文本数据,请使用QModelIndex::data()。默认参数为Qt::DisplayRole,即显示的文本。

检索完文本后,使用QClipboard::setText()将该文本传递到剪贴板。

答案 5 :(得分:1)

pyqt py2.x示例:

selection = self.table.selectionModel() #self.table = QAbstractItemView
indexes = selection.selectedIndexes()

columns = indexes[-1].column() - indexes[0].column() + 1
rows = len(indexes) / columns
textTable = [[""] * columns for i in xrange(rows)]

for i, index in enumerate(indexes):
 textTable[i % rows][i / rows] = unicode(self.model.data(index).toString()) #self.model = QAbstractItemModel 

return "\n".join(("\t".join(i) for i in textTable))

答案 6 :(得分:1)

我根据其他人的答案写了一些代码。我将QTableWidget子类化并覆盖keyPressEvent()以允许用户通过键入Control-C将所选行复制到剪贴板。

void MyTableWidget::keyPressEvent(QKeyEvent* event) {
    // If Ctrl-C typed
    if (event->key() == Qt::Key_C && (event->modifiers() & Qt::ControlModifier))
    {
        QModelIndexList cells = selectedIndexes();
        qSort(cells); // Necessary, otherwise they are in column order

        QString text;
        int currentRow = 0; // To determine when to insert newlines
        foreach (const QModelIndex& cell, cells) {
            if (text.length() == 0) {
                // First item
            } else if (cell.row() != currentRow) {
                // New row
                text += '\n';
            } else {
                // Next cell
                text += '\t';
            }
            currentRow = cell.row();
            text += cell.data().toString();
        }

        QApplication::clipboard()->setText(text);
    }
}

输出示例(制表符分隔):

foo bar baz qux
bar baz qux foo
baz qux foo bar
qux foo bar baz

答案 7 :(得分:0)

我终于明白了,谢谢。

void Widget::copy() {

QItemSelectionModel *selectionM = tableView->selectionModel();
QModelIndexList selectionL = selectionM->selectedIndexes();

selectionL.takeFirst(); // ID, not necessary
QString *selectionS = new QString(model->data(selectionL.takeFirst()).toString());
selectionS->append(", ");
selectionS->append(model->data(selectionL.takeFirst()).toString());
selectionS->append(", ");
selectionS->append(model->data(selectionL.takeFirst()).toString());
selectionS->append(", ");
selectionS->append(model->data(selectionL.takeFirst()).toString());

clipboard->setText(*selectionS);
}

connect (tableView, SIGNAL(clicked(QModelIndex)), this, SLOT(copy()));

答案 8 :(得分:0)

我不禁注意到您可以使用foreach()构造和QStringList类来简化代码,join()类具有方便的{{3}}功能。

void Widget::copy()
{
   QStringList list ;
   foreach ( const QModelIndex& index, tableView->selectedIndexes() )
   {
      list << index.data() ;
   }

   clipboard->setText( list.join( ", " ) ) ;
}

答案 9 :(得分:0)

小心最后一个元素。请注意,“removeFirst()”之后索引可能会变空。因此,'current'永远不会有效,不应在model() - &gt; data(current)中使用。

  indexes.removeFirst();
  QString selected_text;
  QModelIndex current;
  Q_FOREACH(current, indexes)
  {
  .
  .
  .
  }
  // add last element
  selected_text.append(model()->data(current).toString());

考虑

  QModelIndex last = indexes.last();
  indexes.removeFirst();
  QString selected_text;
  Q_FOREACH(QModelIndex current, indexes)
  {
  .
  .
  .
  }
  // add last element
  selected_text.append(model()->data(last).toString());

答案 10 :(得分:0)

以下是Corwin Joy发布的与QTableView一起使用的变体,并以不同的方式处理稀疏选择。使用此代码,如果您在不同的行中选择了不同的列(例如,选定的单元格是(1,1),(1,2),(2,1),(3,2)),那么当您粘贴它时,您将变为空对应于您选择中的“洞”的细胞(例如细胞(2,2)和(3,1))。它还会为与选择内容相交的列提取列标题文本。

void CopyableTableView::copy()
{
    QItemSelectionModel *selection = selectionModel();
    QModelIndexList indices = selection->selectedIndexes();

    if(indices.isEmpty())
        return;

    QMap<int, bool> selectedColumnsMap;
    foreach (QModelIndex current, indices) {
        selectedColumnsMap[current.column()] = true;
    }
    QList<int> selectedColumns = selectedColumnsMap.uniqueKeys();
    int minCol = selectedColumns.first();

    // prepend headers for selected columns
    QString selectedText;

    foreach (int column, selectedColumns) {
        selectedText += model()->headerData(column, Qt::Horizontal, Qt::DisplayRole).toString();
        if (column != selectedColumns.last())
            selectedText += QLatin1Char('\t');
    }
    selectedText += QLatin1Char('\n');

    // QModelIndex::operator < sorts first by row, then by column.
    // this is what we need
    qSort(indices);

    int lastRow = indices.first().row();
    int lastColumn = minCol;

    foreach (QModelIndex current, indices) {

        if (current.row() != lastRow) {
            selectedText += QLatin1Char('\n');
            lastColumn = minCol;
            lastRow = current.row();
        }

        if (current.column() != lastColumn) {
            for (int i = 0; i < current.column() - lastColumn; ++i)
                selectedText += QLatin1Char('\t');
            lastColumn = current.column();
        }

        selectedText += model()->data(current).toString();
    }

    selectedText += QLatin1Char('\n');

    QApplication::clipboard()->setText(selectedText);
}

答案 11 :(得分:0)

如果有人感兴趣,此网页将提供有关此主题的有效代码项目,它的运行情况非常好。 Copy / paste functionality implementation for QAbstractTableModel / QTableView