[SOLVED]How to delete an item from the treeview by droping an item to pushbutton or to an group box
-
@Ratzz
you can use
QWidget * QDropEvent::source() const -
@Ratzz
almost but must be the type you want to allow
QTreeView * theone= dynamic_cast<QTreeView*>(event->source());
if( theone != NULL )
{
event->acceptProposedAction();
}so it says if it IS a Treeview then say ok
For other types, it should not allow then. (red sign)
I hope :) -
@mrjj
when i click delete button i doui->label->setText(QString::number(parent->rowCount()));
which gives me count of the number of rows. But if i drag the row will be deleted but count is not getting updated. how to update it ?
Should it be done onGroupDropBox
?? -
@Ratzz
GroupBox would not know about parent.
The Tree should update when the It is removed.But then you drag, do you call the buttons on_click so the
ui->label->setText(QString::number(parent->rowCount()))
is executed ?
The groupBox example does not call anything as the Tree removes the item it self so
I assume that is why you dont see Count Changes.