1 /*=========================================================================
2 Program: vv http://www.creatis.insa-lyon.fr/rio/vv
5 - University of LYON http://www.universite-lyon.fr/
6 - Léon Bérard cancer center http://oncora1.lyon.fnclcc.fr
7 - CREATIS CNRS laboratory http://www.creatis.insa-lyon.fr
9 This software is distributed WITHOUT ANY WARRANTY; without even
10 the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR
11 PURPOSE. See the copyright notices for more information.
13 It is distributed under dual licence
15 - BSD See included LICENSE.txt file
16 - CeCILL-B http://www.cecill.info/licences/Licence_CeCILL-B_V1-en.html
17 ======================================================================-====*/
19 #include "vvToolCreatorBase.h"
20 #include "vvToolManager.h"
24 //------------------------------------------------------------------------------
25 vvToolCreatorBase::vvToolCreatorBase(QString name): mExperimental(false)
27 mUseContextMenu = false;
30 vvToolManager::GetInstance()->AddTool(this);
32 //------------------------------------------------------------------------------
34 //------------------------------------------------------------------------------
35 void vvToolCreatorBase::MenuToolSlot()
37 mSender = QObject::sender();
38 MenuSpecificToolSlot();
40 //------------------------------------------------------------------------------
43 //------------------------------------------------------------------------------
44 void vvToolCreatorBase::InsertToolInMenu(vvMainWindowBase * m)
47 if (mUseContextMenu) {
48 InsertToolInContextMenu();
52 if (mToolIconFilename == "noicon")
53 mAction = new QAction(QString("&").append(mToolMenuName), this);
55 mAction = new QAction(QIcon(mToolIconFilename),
56 QString("&").append(mToolMenuName), this);
57 mAction->setStatusTip(mToolTip);
59 connect(mAction, SIGNAL(triggered()), this, SLOT(MenuToolSlot()));
61 mMainWindow->GetExperimentalToolMenu()->addAction(mAction);
63 mMainWindow->GetMenu(m_MenuName)->addAction(mAction);
66 //------------------------------------------------------------------------------
69 //------------------------------------------------------------------------------
70 void vvToolCreatorBase::InsertToolInContextMenu()
72 mMainWindow->GetContextMenu()->addMenu(mToolMenu);
73 for(unsigned int i=0; i<mListOfActions.size(); i++) {
74 connect(mListOfActions[i], SIGNAL(triggered()), this, SLOT(MenuToolSlot()));
77 //------------------------------------------------------------------------------
80 //------------------------------------------------------------------------------
81 void vvToolCreatorBase::addMenuToContextMenu(QMenu * m)
84 for(int i=0; i<m->actions().size(); i++) {
85 mListOfActions.push_back(m->actions()[i]);
87 mUseContextMenu = true;
89 //------------------------------------------------------------------------------