I would like to add an action to the "default" Contextual menu that shows up when editing QStandardItem's Text (wich is shown in a QTreeView)
This contextual menu seems to be the default contextual menu of QPlainTextEdit widget. There is the default actions : Undo, Redo, Copy, Paste, Delete, Select All. I want to add a custom action just here.
I have no clue on how to modify this menu.
Thanks in advance !
To customise the editor for a
QTreeView
cell you need to create aQItemDelegate
and associate it with a column of your treeview.Custom delegates can be more complex (eg to change the save/restore behaviour of the editor) but in this case we just want to change which class it is using to instantiate the editor widget:
This will ensure the editor is now a
CustomLineEdit
widget, which can have any added functionality you wish (like a custom context menu). In my example below, I use a slightly modified version of the answer provided by Achayan to implement thisCustomLineEdit
.You assign a custom delegate to a column with the following code (in this case I've chosen column 0 of the treeview):
Full Code