X-Git-Url: http://git.salome-platform.org/gitweb/?a=blobdiff_plain;f=src%2FXGUI%2FXGUI_Viewer.cpp;h=ff33f60eb7b4c9a48e0539c9890f1d6b8b1a51b5;hb=a3b2736968186ac435b1e05e530c40becbc82301;hp=db719599f1fe25c91454020efc937b3d2ef5c9e3;hpb=fb06cbad27a12fb9921ebe20fff9e84d9e343799;p=modules%2Fshaper.git diff --git a/src/XGUI/XGUI_Viewer.cpp b/src/XGUI/XGUI_Viewer.cpp index db719599f..ff33f60eb 100644 --- a/src/XGUI/XGUI_Viewer.cpp +++ b/src/XGUI/XGUI_Viewer.cpp @@ -444,10 +444,10 @@ void XGUI_Viewer::addView(QMdiSubWindow* theView) connect(aWindow, SIGNAL(keyReleased(XGUI_ViewWindow*, QKeyEvent*)), this, SIGNAL(keyRelease(XGUI_ViewWindow*, QKeyEvent*))); - connect(aWindow, SIGNAL(contextMenuRequested( QContextMenuEvent* )), - this, SLOT (onContextMenuRequested( QContextMenuEvent* ))); - //connect(aWindow, SIGNAL( contextMenuRequested(QContextMenuEvent*) ), - // this, SIGNAL( contextMenuRequested(QContextMenuEvent*) ) ); + //connect(aWindow, SIGNAL(contextMenuRequested( QContextMenuEvent* )), + // this, SLOT (onContextMenuRequested( QContextMenuEvent* ))); + connect(aWindow, SIGNAL( contextMenuRequested(QContextMenuEvent*) ), + this, SIGNAL( contextMenuRequested(QContextMenuEvent*) ) ); connect(aWindow, SIGNAL(mouseMoving(XGUI_ViewWindow*, QMouseEvent*)), this, SLOT(onMouseMove(XGUI_ViewWindow*, QMouseEvent*))); @@ -590,29 +590,29 @@ void XGUI_Viewer::updateViewsDrawMode() const } //****************************************************** -void XGUI_Viewer::onContextMenuRequested(QContextMenuEvent* theEvent) -{ - XGUI_ViewWindow* aWnd = dynamic_cast(sender()); - if (!aWnd) return; - - QMenu aMenu; - - // Include Viewer actions - if (myActions.size() > 0) { - aMenu.addActions(myActions); - aMenu.addSeparator(); - } - if (aWnd->actions().size() > 0) { - aMenu.addActions(aWnd->actions()); - aMenu.addSeparator(); - } - - QMdiArea* aMDI = myMainWindow->mdiArea(); - if (aMenu.actions().size() > 0) { - QMenu* aSubMenu = aMenu.addMenu(tr("Windows")); - aSubMenu->addActions(aMDI->actions()); - } else { - aMenu.addActions(aMDI->actions()); - } - aMenu.exec(theEvent->globalPos()); -} \ No newline at end of file +//void XGUI_Viewer::onContextMenuRequested(QContextMenuEvent* theEvent) +//{ +// XGUI_ViewWindow* aWnd = dynamic_cast(sender()); +// if (!aWnd) return; +// +// QMenu aMenu; +// +// // Include Viewer actions +// if (myActions.size() > 0) { +// aMenu.addActions(myActions); +// aMenu.addSeparator(); +// } +// if (aWnd->actions().size() > 0) { +// aMenu.addActions(aWnd->actions()); +// aMenu.addSeparator(); +// } +// +// QMdiArea* aMDI = myMainWindow->mdiArea(); +// if (aMenu.actions().size() > 0) { +// QMenu* aSubMenu = aMenu.addMenu(tr("Windows")); +// aSubMenu->addActions(aMDI->actions()); +// } else { +// aMenu.addActions(aMDI->actions()); +// } +// aMenu.exec(theEvent->globalPos()); +//}