Drag and drop into QMdiArea
-
Hi folks!
I've successfully created an example that uses the Model/View programming to read some data (from an xlsx file) and fills:
- A QListView with the signals header.
- A QTableView with the spreadsheet values.

The application is based on a QAbstractTableModel that stores the header and the data which are used by the above views as in the code:
def main(): app = QApplication(sys.argv) data = MyData(filepath=XSLX_FILE).load_data() model_table = MyModelTable(parent=None, data=data[:]) model_list = MyModelList(parent=None, data=data[:]) view = MyView(parent=None, model_table=model_table, model_list=model_list) view.show() sys.exit(app.exec())What I'd like to achieve is to be able to drag and drop (any of) the signals from the QListView into the MdiArea and plot them.
More specifically, I'd like to get a "pop-up menu" (like a dropdown widget to give you an idea) at the mouse pointer, where I can select which type of widget use to plot the data (scatter, lines...).I read the official documentation on the topic and I also took a look to some examples, but I still miss some concepts that I hope you could help me to understand:
- Is it correct use the QMdiArea as a "desktop" for my widgets?
- The item dropped from the QListView is of a QMimeData type?
- From the documentation, to me, this data types looks related to the clipboard, why should be the designated one for the drag and drop action?
- The QListView needs to have the QWidget::setAcceptDrops property even if it will be used as "source" of the data to be dropped? In some example (like this) was the case, but I'm not convinced.
- How many methods do I need to re-implement in the model to make it work?
- (QDragEnterEvent, QDragMoveEvent, ...) Unfortunately this is still not clear to me, who and when needs to be used.
- There are many other properties (like: QAbstractItemView::setDragDropMode, ...) that I'm not sure if they are needed just to enable the drag and drop functionality, or are used to enhance the example functionalities.
--
Here the contents of the view and the model files:from PyQt6.QtWidgets import QWidget, QVBoxLayout, QTableView, QListView, QMdiArea, QSplitter, QAbstractItemView from PyQt6 import QtCore from PyQt6.QtCore import QAbstractTableModel, QAbstractListModel class MyView(QWidget): def __init__(self, model_table: QAbstractTableModel, model_list: QAbstractListModel, parent=None) -> None: super().__init__(parent=parent) # create layout self.initUI(model_table=model_table, model_list=model_list) def initUI(self, model_table: QAbstractTableModel, model_list: QAbstractListModel) -> None: # make the vbox the external "container" vbox = QVBoxLayout() # self.list_data = QListView() self.list_data.setAcceptDrops(True) self.list_data.setDragEnabled(True) self.list_data.setSelectionMode(QAbstractItemView.SelectionMode.SingleSelection) self.list_data.setDragDropMode(QAbstractItemView.DragDropMode.DragDrop) # show drop indicator #self.list_data.setDropIndicatorShown(True) self.mdi_area = QMdiArea() self.mdi_area.setAcceptDrops(True) # # add a vertical splitter between the list view and the mdi area h_splitter = QSplitter(QtCore.Qt.Orientation.Horizontal) h_splitter.addWidget(self.list_data) h_splitter.addWidget(self.mdi_area) # # # add table for the table model view self.table_data = QTableView() # # add an horizontal splitter between the above hbox and the next table view v_splitter = QSplitter(QtCore.Qt.Orientation.Vertical) v_splitter.addWidget(h_splitter) v_splitter.addWidget(self.table_data) vbox.addWidget(v_splitter) self.setLayout(vbox) # assign model to the table-data widget self.table_data.setModel(model_table) self.table_data.resizeColumnsToContents() #assign model to the list data self.list_data.setModel(model_list) self.setGeometry(0, 0, 640, 480) self.center() self.setWindowTitle("Demo MVC") def center(self): # this represents the created window size (is not the screen size!) window_size = self.frameGeometry() # get the screen size screen_size = self.screen().availableGeometry() # move the window (screen reference is always the top left) to the center of the screen window_size.moveCenter(screen_size.center()) # finally move the window reference to top left, so the rectagle matches the screen reference self.move(window_size.topLeft())from dataclasses import dataclass from sys import flags from typing import Any from PyQt6.QtCore import QAbstractTableModel, QAbstractListModel, Qt, QModelIndex, QObject from PyQt6.QtGui import QColor from PyQt6 import QtCore @dataclass class SignalDefinition: name: str description: str class MyModelList(QAbstractListModel): def __init__(self, data: list, parent: QObject = None) -> None: super(MyModelList, self).__init__(parent=parent) # extract info - related to the signal list self._descr = data.pop(0) self._signals = data.pop(0) self._definitions = [] for row in range(len(self._signals)): self._definitions.append(SignalDefinition(self._signals[row], self._descr[row])) # reimplement the model methods def rowCount(self, parent: QModelIndex = QModelIndex()) -> int: if parent.isValid(): return 0 return len(self._signals) def data(self, index: QModelIndex, role: Qt.ItemDataRole) -> Any: definition = self._definitions[index.row()] if role == Qt.ItemDataRole.DisplayRole: return definition.name elif role == Qt.ItemDataRole.ToolTipRole: return definition.description return None def supportedDragActions(self) -> Qt.DropAction: return Qt.DropAction.CopyAction or Qt.DropAction.MoveAction class MyModelTable(QAbstractTableModel): def __init__(self, data: list, parent: QObject = None) -> None: super(MyModelTable, self).__init__(parent=parent) # extract info - related to the table self._descr = data.pop(0) self._header = data.pop(0) self._data = data self._rows = len(data) self._columns = len(data[0]) # reimplement the model methods def rowCount(self, parent: QModelIndex) -> int: if parent.isValid(): return 0 return self._rows def columnCount(self, parent: QModelIndex) -> int: if parent.isValid(): return 0 return self._columns def data(self, index: QModelIndex, role: Qt.ItemDataRole) -> Any: if role != Qt.ItemDataRole.DisplayRole: return QtCore.QVariant() return self._data[index.row()][index.column()] def headerData( self, section: int, orientation: Qt.Orientation, role: Qt.ItemDataRole ) -> Any: if orientation == Qt.Orientation.Horizontal: if role == Qt.ItemDataRole.BackgroundRole and section == 0: return QColor("blue") if role == Qt.ItemDataRole.ForegroundRole and section == 1: return QColor("red") if role == Qt.ItemDataRole.DisplayRole: return self._header[section] if role == Qt.ItemDataRole.ToolTipRole: return self._descr[section] if orientation == Qt.Orientation.Vertical: if role == Qt.ItemDataRole.DisplayRole: return NoneI know, I'm missing a lot of things... But I didn't find how to link all the info together.
Is there someone that can help me to understand what I miss (step by step) in the right order from my current working example?Super thanks!
AGA -
Hi,
For QMdiArea, it depends whether you want to handle multiple different charts each in its own widget.
It's a QMimeData object yes, it's a generic container for drag and drop data transmission.
No, if your view is just a source, no need to accept drops.
There's nothing mouse related to implement on your model. The mimeTypes and mimeData methods are the one you need for your custom data and the other is supportedDropActions if you want drop support as well. The flags method is required for fine grained control of which item shall be draggable.
No need to do a custom view as you don't do anything special with them.
You will have to handle the drop part in a subclass of QMdiArea (if you continue with that class).
-
HI @SGaist, many thanks for your answers.
These points are clear:
- For QMdiArea, it depends whether you want to handle multiple different charts each in its own widget.
- Yes, I'd like to use the area to drop as many plots as I like. Each plot (I assume) is a widget.
- The item dropped from the QListView is of a QMimeData type?
- Yes, it's a generic container for data transmission.
- The QListView needs to have the QWidget::setAcceptDrops property even if it will be used as "source" of the data to be dropped?
- No
I still have some questions on these:
- No need to do a custom view as you don't do anything special with them.
- What do you mean for "custom view"? The way how I'd like to show dropped data?
- You will have to handle the drop part in a subclass of QMdiArea (if you continue with that class).
- Could you please give me a hint on this?
In the meantime, I'll start to have a look to these mimeTypes and mimeData methods to see how data is "shared" during the drag and drop actions. Anyway you clarified me already many points! 🙏
Best regards,
AGA - For QMdiArea, it depends whether you want to handle multiple different charts each in its own widget.
-
For the custom view, my bad. I misunderstood your point about qabstractitemview::setDragDropMode and thought you wanted to create subclasses for your item views. So it's all good.
QMdiArea does not know how to handle your custom data hence the need for a subclass. You can see an example in the Dropping part of the drag and drop chapter in the documentation. There they update a combo box content. In your case, you will create a new widget with a chart based.
-
Hi @SGaist, sorry for the looong absence, but I've been suddenly switched to another project.
I understood that I have to replace the 2 drag and drop involved widget subclassing them.
I then created 2 new classes: DragQListView and DropQMdiArea
For the new DragQListView subclass (see code below) I re implemented the mouse methods (mousePressEvent and MouseMoveEvent as well explained in the drag and drop example).
While for the other class I re implemented the dragEnterEvent and the dropEvent.
With these change I started to move to the "right direction".
Here the updated code:
... ... # place the list view self.list_data = DragQListView() # # place the mdi area self.mdi_area = DropQMdiArea() # # add a vertical splitter between the list view and the mdi area h_splitter = QSplitter(QtCore.Qt.Orientation.Horizontal) ... ... class DragQListView(QListView): def __init__(self): super().__init__() self.setDragEnabled(True) def mousePressEvent(self, event) -> None: # allows to drag just with the left button if event.buttons() == Qt.MouseButton.LeftButton: # save the starting mouse press point self.drag_start_pos = event.pos() return super().mousePressEvent(event) def mouseMoveEvent(self, event) -> None: if event.buttons() != Qt.MouseButton.LeftButton: return if (event.pos() - self.drag_start_pos).manhattanLength() < QApplication.startDragDistance(): drag = QDrag(self) mime_data = QMimeData() #mime_data.setData(mimetype=mimeType, data=) drag.setMimeData(mime_data) drag.exec(Qt.DropAction.CopyAction) return super().mouseMoveEvent(event) class DropQMdiArea(QMdiArea): def __init__(self): super().__init__() self.setAcceptDrops(True) def dragEnterEvent(self, event) -> None: event.accept() def dropEvent(self, event) -> None: event.setDropAction(Qt.DropAction.CopyAction) event.accept()While I was continuing reading the doc I saw that for the Model/View there is another approach to follow.
It explains that I have to enable certain properties:
To allow items to be dragged around, certain properties of the view need to be enabled, and the items themselves must also allow dragging to occur.So I reverted my code to the previous version (like in the first post above) and I started to add "these" properties (both in model and in view), but I didn't get the same drag and drop behavior.
... ... # place the list view self.list_data = QListView(self) self.list_data.setDragEnabled(True) self.list_data.setAcceptDrops(True) self.list_data.setDropIndicatorShown(True) # # place the mdi area self.mdi_area = QMdiArea() ... ...class MyModelList(QAbstractListModel): def __init__(self, data: list, parent: QObject = None) -> None: super(MyModelList, self).__init__(parent=parent) ... ... def supportedDragActions(self) -> Qt.DropAction: return Qt.DropAction.CopyAction or Qt.DropAction.MoveActionI feel that this second approach although didn't show any "positive sign" is the right one (probably the other works for the other not Model/View design) but I can't make it work.
@SGaist could you please guide me in this step by step process to achieve the desired drag and drop?
Many thanks!
AGA -
That last approach is the correct one, custom model + view configuration.
What behaviour do you have now ?
If memory serves well, you might also need to implement the dragMoveEvent method on your target widget. -
Hi @SGaist, many thanks to answered to this.
Currently when I start to drag I don't see anything (no cursor change and no print messages - put in the methods to check if the code runs there).
When cursor goes into the mdiArea nothing change as well.I also re-implemented the dragMoveEvent while I was trying (sorry to forgot to mention) but didn't change.
So, to summarize:
- The right approach is the second (since my code is Model/View).
- The widgets don't need to be subclasses, but it is enough enable/change some properties.
To start to view "something", both the model and the view need to be correctly "set" or should I start already to see some drag and drop behavior only with a well "configured" view?
I ask you this just to understand in which direction I have to move.Since editing my demo adding the "examples code" didn't produce the desired behavior what should I change/try?
Could you please drive me through a "checklist" to verify all the basic necessary steps to enable the drag and drop?As always, many thanks! 🙏
AGA -
Hi,
fixing the model I've been able to start the view to show the drag and drop behavior that I had when I subclasses the widgets.
So, one mistake I made was on model, I forgot to re-implement the methods: supportedDragActions and flags.
@SGaist Not sure if you were referring to these or others (not in the model) but looks that these at least these are necessary to let the model support the drag and drop functionality.class MyModelList(QAbstractListModel): def __init__(self, data: list, parent: QObject = None) -> None: super(MyModelList, self).__init__(parent=parent) ... ... def supportedDragActions(self) -> Qt.DropAction: return Qt.DropAction.CopyAction def flags(self, index: QModelIndex) -> Qt.ItemFlag: flags_default = super(MyModelList, self).flags(index) if index.isValid(): return (Qt.ItemFlag.ItemIsDragEnabled | flags_default)Now I progressed up to this level (see picture below), but I still miss: to "move data" and to accept the dropped data into the mdiArea.

Any help would be very appreciated!
AGA -
Any chances you forget to call
setAcceptDrops(True);in your custom QMdiArea ? -
HI @SGaist ,
Both the widgets (QListView and QMdiArea) form the view.py are "configured" (not reimplemented) as:
... ... vbox = QVBoxLayout() # # place the list view self.list_data = QListView(self) self.list_data.setDragEnabled(True) self.list_data.setDropIndicatorShown(True) # # place the mdi area self.mdi_area = QMdiArea(self) self.mdi_area.setAcceptDrops(True) # # add a vertical splitter between the list view and the mdi area h_splitter = QSplitter(QtCore.Qt.Orientation.Horizontal) ... ...So no, the QMdiArea has the setAcceptDrop properties.
I assume that the QMdiArea widget need to be re-implemented to achieve a minimum "functionality" since it basically doesn't do anything. is this correct? What is the minimum code should I add to "see the dropped data" (also as print)?
Before do that (re-implement the above widget) I wanted to have the "mime" working, but unfortunately I didn't find any clear explanation that helped me to understand.
To be more specific, looking on the official help page I couldn't find how to "classify" my source data. The example refers to the "plain text" but my data is a list, so in this case I don't know how to "define" the data to be passed. Should I use a meta object? In that case I didn't find a clear example.Many thanks to anyone that can help!
AGA -
Oh !
I thought you were using your custom widget based on QMdiArea. The one where you reimplemented the dragEnter, dragMove and dropEvent. It's in dragEnterEvent that you can decide whether the mime type fits your widget.
-
HI @SGaist,
to recap you suggestions:
- Drag needs to be implemented in the model.
- Drag widget (QListView) doesn't need to be re-implemented in the view; just its properties need to be set to accept drop.
- Drop doesn't need to be re-implemented in the model but only in the view.
- Drop widget (QMdiArea) does need to be re-implemented in the view with the methods: dragEnterEvent, dragMoveEvent and dropEvent.
But from the documentation looks that drop still need to be part of the model. This is the part where I was referring to. I didn't understand how to encode my data.
The goal is to plot dropped data into a graph in the QMdiArea.
Many thanks!
AGA -
Here you have minimal example for dragging an item from a QListView to a QMdiArea:
import sys from PySide6.QtCore import Qt from PySide6.QtGui import QStandardItemModel from PySide6.QtGui import QStandardItem from PySide6.QtWidgets import QApplication from PySide6.QtWidgets import QHBoxLayout from PySide6.QtWidgets import QLabel from PySide6.QtWidgets import QListView from PySide6.QtWidgets import QMdiArea from PySide6.QtWidgets import QWidget class DNDMdiArea(QMdiArea): def __init__(self, **kwargs): super().__init__(**kwargs) self.setAcceptDrops(True) def dragEnterEvent(self, event): print(event.mimeData().formats()) event.accept() def dropEvent(self, event): data = event.mimeData().data("application/x-qstandarditemmodeldatalist") label = QLabel(bytes(data).decode()) sub_window = self.addSubWindow(label) sub_window.setAttribute(Qt.WA_DeleteOnClose) sub_window.show() event.accept() if __name__ == "__main__": app = QApplication(sys.argv) mdi_area = DNDMdiArea() list_view = QListView() list_view.setDragEnabled(True) model = QStandardItemModel() model.setColumnCount(1) model.setRowCount(5) model.setHorizontalHeaderLabels(["Header"]) for i in range(model.rowCount()): model.setItem(i, QStandardItem(f"Item {i}")) list_view.setModel(model) widget = QWidget() layout = QHBoxLayout(widget) layout.addWidget(list_view) layout.addWidget(mdi_area) widget.show() sys.exit(app.exec())There is nothing fancy here. It's just to show you the basics. You can replace the QStandardItemModel with yours.
It also shows data retrieval from mime data. -
Hi @SGaist,
Many thanks for your valuable help!
Thanks to your example I think I'm heading to the right direction.- First of all I understood that the custom mime data type it is just a label, probably was obvious to many, but not to me.
- I have to first encode (in the model) and then decode (in the view) data with the same "tools" like same mimeType, and "data container".
Now my code looks like:
view.py Here I just added some of your code, so this is not related to what I want to finally get.
class DropQMdiArea(QMdiArea): def __init__(self): super().__init__() self.setAcceptDrops(True) ... ... # this method is invoked when the mouse enters (while dragging) this (mdiArea) area def dragEnterEvent(self, event) -> None: event.accept() if event.mimeData().hasFormat('application/x-qstandardlist'): event.accept() else: event.ignore() # this method is invoked when the mouse drops in this (mdiArea) area def dropEvent(self, event) -> None: if event.mimeData().hasFormat('application/x-qstandardlist'): data = event.mimeData().data('application/x-qstandardlist') stream = QDataStream(data, QIODevice.OpenModeFlag.ReadOnly) event.accept() else: event.ignore() data = event.mimeData().data("application/x-qstandardlist") label = QLabel(bytes(data).decode()) sub_window = self.addSubWindow(label) sub_window.setAttribute(QtCore.Qt.WidgetAttribute.WA_DeleteOnClose) sub_window.show()model.py This doesn't work properly, in fact I still have (unfortunately for you 😅) other questions.
class MyModelList(QAbstractListModel): def __init__(self, data: list, parent: QObject = None) -> None: super(MyModelList, self).__init__(parent=parent) self._data = data ... ... def supportedDragActions(self) -> Qt.DropAction: return Qt.DropAction.CopyAction def flags(self, index: QModelIndex) -> Qt.ItemFlag: flags_default = super(MyModelList, self).flags(index) if index.isValid(): return (Qt.ItemFlag.ItemIsDragEnabled | flags_default) def mimeTypes(self): # HThe general structure of MIME is type/subtype return ["application/x-qstandardlist"] def mimeData(self, index): encoded_data = QtCore.QByteArray() # is this stream needed? stream = QDataStream(encoded_data, QIODevice.OpenModeFlag.WriteOnly) for idx in index: if not idx.isValid(): continue else: selected_row = idx.row() selected_list = [row[selected_row] for row in self._data] mime_data = QMimeData() mime_data.setData("application/x-qstandardlist", encoded_data) # if needed, how should I use it? stream = selected_listI saw some (misleading?) examples where before send data I had to:
- create a QByteArray "data container".
- create a QDataStream to "transport" the previous data container.
- Is this necessary?
- Is there a "general" way to "pack" the moved data?
- I know that mime has the methods: setText(), setHtml(), ..., but I'm not sure if, in case of list, do I need to use one of those or do I need to "encapsulate" these within the stream. Examples that I found are generally text based.
- Is it correct use the setData() method on the mime object? (mime_data.setData("application/x-qstandardlist", encoded_data))
At the moment I'm not sure if data is correctly "copied" from the model to the view
Kind regards,
AGA -
You should create your own mime type(s) since they are specific to your application / data structure.
As for QDataStream, it's the easier way if you have complex data structures that cannot be represented by text.
Create the QDataStream operators for your class/struct, use them to serialize the data on the sending end and deserialize them on the receiving end.