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://www.centreleonberard.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): mAction(NULL), mExperimental(false)
27 mUseContextMenu = false;
30 mReadStateFlag = false;
32 vvToolManager::GetInstance()->AddTool(this);
34 //------------------------------------------------------------------------------
36 //------------------------------------------------------------------------------
37 void vvToolCreatorBase::MenuToolSlot()
39 mSender = QObject::sender();
40 MenuSpecificToolSlot();
42 //------------------------------------------------------------------------------
45 //------------------------------------------------------------------------------
46 void vvToolCreatorBase::InsertToolInMenu(vvMainWindowBase * m)
49 if (mUseContextMenu) {
50 InsertToolInContextMenu();
54 if (mToolIconFilename == "noicon")
55 mAction = new QAction(QString("&").append(mToolMenuName), this);
57 mAction = new QAction(QIcon(mToolIconFilename),
58 QString("&").append(mToolMenuName), this);
59 mAction->setIconVisibleInMenu(true);
62 mAction->setStatusTip(mToolTip);
64 connect(mAction, SIGNAL(triggered()), this, SLOT(MenuToolSlot()));
66 mMainWindow->GetExperimentalToolMenu()->addAction(mAction);
68 mMainWindow->GetMenu(m_MenuName)->addAction(mAction);
71 //------------------------------------------------------------------------------
74 //------------------------------------------------------------------------------
75 void vvToolCreatorBase::InsertToolInContextMenu()
77 mMainWindow->GetContextMenu()->addMenu(mToolMenu);
78 for(unsigned int i=0; i<mListOfActions.size(); i++) {
79 connect(mListOfActions[i], SIGNAL(triggered()), this, SLOT(MenuToolSlot()));
82 //------------------------------------------------------------------------------
85 //------------------------------------------------------------------------------
86 void vvToolCreatorBase::addMenuToContextMenu(QMenu * m)
89 for(int i=0; i<m->actions().size(); i++) {
90 mListOfActions.push_back(m->actions()[i]);
92 mUseContextMenu = true;
94 //------------------------------------------------------------------------------