X-Git-Url: http://git.salome-platform.org/gitweb/?a=blobdiff_plain;f=src%2FXGUI%2FXGUI_HistoryMenu.cpp;h=7ae27d0b3c2946413a3a9e37902b4853f6666e5a;hb=4b713fff3138a7cea908a85b58ed90cf99cfacd1;hp=3e36f42a0c76c6aa9af8c0d987eb962dd31bceac;hpb=030b6397f0ab0519ed4457133f3883768b4faf33;p=modules%2Fshaper.git diff --git a/src/XGUI/XGUI_HistoryMenu.cpp b/src/XGUI/XGUI_HistoryMenu.cpp index 3e36f42a0..7ae27d0b3 100644 --- a/src/XGUI/XGUI_HistoryMenu.cpp +++ b/src/XGUI/XGUI_HistoryMenu.cpp @@ -12,41 +12,57 @@ #include #include #include +#include + +//! Extends given feature with previously created context menu. +//! \param theId - Id of the feature to add \a theMenu +//! \param theMenu - Enables or disables menu feature +XGUI_HistoryMenu::XGUI_HistoryMenu(QAction* theParent) + : QMenu(NULL), + myHistoryList(NULL) +{ + theParent->setMenu(this); + initMenu(); + + connect(theParent, SIGNAL(destroyed()), this, SLOT(deleteLater())); +} //! Extends given feature with previously created context menu. //! \param theId - Id of the feature to add \a theMenu //! \param theMenu - Enables or disables menu feature XGUI_HistoryMenu::XGUI_HistoryMenu(QToolButton* theParent) : QMenu(theParent), - myHistoryList(new QListWidget(this)) + myHistoryList(NULL) { theParent->setMenu(this); theParent->setPopupMode(QToolButton::MenuButtonPopup); + initMenu(); +} + +void XGUI_HistoryMenu::initMenu() +{ + myHistoryList = new QListWidget(this); QWidgetAction* aListAction = new QWidgetAction(this); aListAction->setDefaultWidget(myHistoryList); this->addAction(aListAction); - - myHistoryList->setMouseTracking(true); // track mouse hover + myHistoryList->setMouseTracking(true); // track mouse hover myHistoryList->setSelectionMode(QAbstractItemView::ExtendedSelection); - connect(myHistoryList, SIGNAL(itemEntered(QListWidgetItem *)), - this, SLOT(setStackSelectedTo(QListWidgetItem *))); - connect(myHistoryList, SIGNAL(itemClicked(QListWidgetItem *)), - this, SLOT(onItemPressed(QListWidgetItem *))); + connect(myHistoryList, SIGNAL(itemEntered(QListWidgetItem *)), this, + SLOT(setStackSelectedTo(QListWidgetItem *))); + connect(myHistoryList, SIGNAL(itemClicked(QListWidgetItem *)), this, + SLOT(onItemPressed(QListWidgetItem *))); } XGUI_HistoryMenu::~XGUI_HistoryMenu() { } -void XGUI_HistoryMenu::setHistory(const QList& theActions) +void XGUI_HistoryMenu::setHistory(const QList& theActions) { myHistoryList->clear(); - foreach(QAction* anAct, theActions) { - QListWidgetItem* anItem = new QListWidgetItem(anAct->icon(), - anAct->text(), - myHistoryList); - anAct->deleteLater(); + foreach(ActionInfo anAct, theActions) { + QListWidgetItem* anItem = new QListWidgetItem(anAct.icon, anAct.text, myHistoryList); } } @@ -71,7 +87,7 @@ void XGUI_HistoryMenu::setStackSelectedTo(QListWidgetItem * theItem) void XGUI_HistoryMenu::onItemPressed(QListWidgetItem * theItem) { int selectedSize = myHistoryList->row(theItem) + 1; - emit actionsSelected(selectedSize); + emit actionSelected(selectedSize); hide(); myHistoryList->clear(); }