mirror of
https://port.numenaute.org/aleajactaest/khanat-code-old.git
synced 2024-11-10 17:29:06 +00:00
Changed: Enabled custom context menu signal to open a menu at the mouse position.
This commit is contained in:
parent
bc2ecb6023
commit
098c6b96eb
2 changed files with 96 additions and 92 deletions
|
@ -74,6 +74,10 @@ namespace GeorgesQt
|
|||
|
||||
m_form = 0;
|
||||
|
||||
m_ui.treeView->setContextMenuPolicy(Qt::CustomContextMenu);
|
||||
|
||||
connect(m_ui.treeView, SIGNAL(customContextMenuRequested(const QPoint&)),
|
||||
this, SLOT(showContextMenu(const QPoint&)));
|
||||
connect(m_ui.treeView, SIGNAL(doubleClicked (QModelIndex)),
|
||||
this, SLOT(doubleClicked (QModelIndex)));
|
||||
connect(m_header, SIGNAL(headerClicked(int)),
|
||||
|
@ -522,7 +526,7 @@ namespace GeorgesQt
|
|||
// else if(item->getFormElm()->isAtom() && item->valueFrom() == NLGEORGES::UFormElm::ValueForm)
|
||||
// contextMenu.addAction("Revert to parent/default...");
|
||||
|
||||
// QAction *selectedItem = contextMenu.exec(globalPos);
|
||||
QAction *selectedItem = contextMenu.exec(QCursor::pos());
|
||||
// if(selectedItem)
|
||||
// {
|
||||
// if(selectedItem->text() == "Add parent...")
|
||||
|
|
Loading…
Reference in a new issue