vote up 1 vote down star

Hi. First of all, sorry for bad English.

It's about C++ and Qt. I have a SQLite-Database and I did it into a QSqlTableModel. To show the Database, I put that Model into a QTableView.

Now I want to create a Method where the selected Rows (or the whole Line) will be copied into the QClipboard. After that I want to insert it into my OpenOffice.Calc-Document.

But I have no Idea what to do with the "Selected"-SIGNAL and the QModelIndex and how to put this into the Clipboard.

So can you please help me?

Berschi

flag

4 Answers

vote up 2 vote down check

To actually capture the selection you use the item view's selection model to get a list of indices. Given that you have a QTableView * called view you get the selection this way:

QAbstractItemModel * model = view->model();
QItemSelectionModel * selection = view->selectionModel()
QModelIndexList indexes = selection->selectedIndexes();

Then loop through the index list calling model->data(index) on each index. Convert the data to a string if it isn't already and concatenate each string together. Then you can use QClipboard.setText to paste the result to the clipboard. Note that, for Excel and Calc, each column is separated from the next by a newline ("\n") and each row is separated by a tab ("\t"). You have to check the indices to determine when you move to the next row.

QString selected_text;
// You need a pair of indexes to find the row changes
QModelIndex previous = indexes.first();
indexes.removeFirst();
foreach(current, indexes)
{
    QVariant data = model->data(current);
    QString text = data.toString();
    // At this point `text` contains the text in one cell
    selected_text.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.append('\n');
    }
    // Otherwise it's the same row, so append a column separator, which is a tab.
    else
    {
        selected_text.append('\t');
    }
    previous = current;
}
QApplication.clipboard().setText(selected_text);

Warning: I have not had a chance to try this code, but a PyQt equivalent works.

link|flag
sorry, but I don't get it how to use QItemSelectionModel and QModelIndexList in this case with the Model and TableView – Berschi Aug 5 at 0:18
Here, you can also use the convenient function QAbstractItemView::selectedIndexes() that is available on your QTableView (in which QAbstractItemView is a parent of). What's returned is a simple list container of QModelIndex objects. – swongu Aug 5 at 0:55
I've expanded a little on the example to illustrate what swongu describes. – quark Aug 5 at 0:59
thank you very much, I also got a (not so nice) solution, but it works. – Berschi Aug 5 at 1:05
vote up 0 vote down

I can't help but notice that you can simplify your code using a foreach() construct and the QStringList class, which has a convenient join() function.

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

   clipboard->setText( list.join( ", " ) ) ;
}
link|flag
thanks for your help, the foreach-method was new to me – Berschi Aug 6 at 10:43
vote up 0 vote down

I finally got it, thanks.

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);
}

and

connect (tableView, SIGNAL(clicked(QModelIndex)), this, SLOT(copy()));
link|flag
1  
If you use a QStringList, you can take advantage of the << operator and the QStringList::join() function. – swongu Aug 5 at 16:55
vote up 1 vote down

What you'll need to do is access the text data in the model, then pass that text to the QClipboard.

To access the text data in the model, use QModelIndex::data(). The default argument is Qt::DisplayRole, i.e. the displayed text.

Once you've retrieved the text, pass that text to the clipboard using QClipboard::setText().

link|flag
thank you, it really helped, for now. I added following code: connect (tableView, SIGNAL(clicked(QModelIndex)), this, SLOT(copy(QModelIndex))); and this: void Widget::copy(QModelIndex sel) { clipboard->setText((sel.data(Qt::DisplayRole)).toString()); } this works fine for one single Row. But if I select 2 or more rows, this doesn't work. How can I copy more rows or a whole line to the Clipboard? – Berschi Aug 4 at 23:40
oh sorry, I'm really new here... and with row (comment above) I meant cell. sorry :( – Berschi Aug 4 at 23:54
Because you're using clicked(QModelIndex), this will only return the cell the user clicked on. If you want to copy text from all selected cells, you'd use the solution quark proposed. BTW, you should add your code snippets as updates to your original question. – swongu Aug 5 at 0:50

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.