Here is my problem, I want to get the name, absolute position, and parent widget of an item from a QListView when drag and the QlistView widget where is been droped (and idealy the name or object of the item where it has been droped too).
For example with the code below : draging the item 'jaguar' on 'orange' should give me jaguar x=10 y=50 from widget "something" on orange x=30 y=70 from widget "somethingelse"
I tried to overide the function dropEvent of the QlistView but i get only the position of the QList viex not the item inside it.
from PyQt5.QtWidgets import QWidget, QVBoxLayout, QHBoxLayout, QLabel, QPushButton, QApplication, QListView
from PyQt5.QtCore import Qt, QMimeData, QSize
from PyQt5.QtGui import QDrag, QIcon, QStandardItemModel, QStandardItem
class CustomListView(QListView):
def __init__(self, parent=None, **args):
super(CustomListView, self).__init__(parent, **args)
self.setAcceptDrops(True)
self.setDragEnabled(True)
self.drag_item = None
self.drag_row = None
def dropEvent(self, event):
print("i was dropped")
pos = event.pos()
widget_dep = event.source()
print("event position",pos.x(),pos.y())
print("widget coordinate",widget_dep.x(),widget_dep.y())
### A custom widget containing my QlistView
class TableSelector(QWidget):
def __init__(self, parent, name, list_cols, checked=False):
super(TableSelector, self).__init__(parent)
self.name = name
self.liste_cols = list_cols
self.parent = parent
self.main_frame = QVBoxLayout()
self.model = QStandardItemModel()
self.listView = CustomListView(self)
# here is my problem i can never catch the event where i drag a row of the q list view
# if i apply the next line i can drag and drop it but make a copy of the object in the other QlistViex and in just want the positions of both of the object.
# self.listView.setDragDropMode(QAbstractItemView.DragDropMode)
for col in self.liste_cols:
item = QStandardItem(col)
item.setCheckable(True)
item.setEditable(False)
item.setDragEnabled(True)
item.setDropEnabled(True)
check = (Qt.Checked if checked else Qt.Unchecked)
item.setCheckState(check)
self.model.appendRow(item)
self.listView.setModel(self.model)
self.main_frame.addWidget(self.listView)
self.setLayout(self.main_frame)
class Window(QWidget):
def __init__(self):
super().__init__()
self.dic_table = {"animaux": ["jaguar", "chien", "chat", "phasme", "tortue", "raptor"],
"fruit": ["bananne", "pomme", "pamplemousse", "kiwi", "orange", "fraise", "framboise",
"poire", "groseille", "rhubarbe", "mangue", "litchee", "carambolle", "cerise",
"prune", "figue", "goyave", "tamarin"]}
self.mainLayout = QHBoxLayout()
for table in self.dic_table.keys() :
col_list = TableSelector(self, table, self.dic_table[table])
self.mainLayout.addWidget(col_list)
self.setLayout(self.mainLayout)
if __name__ == '__main__':
app = QApplication([])
w = Window()
w.show()
app.exec_()