]> Creatis software - clitk.git/blob - vv/vvToolCreatorBase.cxx
- add "convert to" in context menu
[clitk.git] / vv / vvToolCreatorBase.cxx
1 /*=========================================================================
2   Program:   vv                     http://www.creatis.insa-lyon.fr/rio/vv
3
4   Authors belong to: 
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
8
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.
12
13   It is distributed under dual licence
14
15   - BSD        See included LICENSE.txt file
16   - CeCILL-B   http://www.cecill.info/licences/Licence_CeCILL-B_V1-en.html
17 ======================================================================-====*/
18
19 #include "vvToolCreatorBase.h"
20 #include "vvToolManager.h"
21 #include <QAction>
22 #include <QMenu>
23
24 //------------------------------------------------------------------------------
25 vvToolCreatorBase::vvToolCreatorBase(QString name): mExperimental(false) { 
26   mUseContextMenu = false;
27   mToolName = name;
28   vvToolManager::GetInstance()->AddTool(this); 
29 }
30 //------------------------------------------------------------------------------
31
32 //------------------------------------------------------------------------------
33 void vvToolCreatorBase::MenuToolSlot() { 
34   mSender = QObject::sender(); 
35   MenuSpecificToolSlot(); 
36 }
37 //------------------------------------------------------------------------------
38
39
40 //------------------------------------------------------------------------------
41 void vvToolCreatorBase::InsertToolInMenu(vvMainWindowBase * m) { 
42   mMainWindow = m; 
43   if (mUseContextMenu) {
44     InsertToolInContextMenu();
45     return; 
46   }
47   // Create main action
48   if (mToolIconFilename == "noicon") 
49     mAction = new QAction(QString("&").append(mToolMenuName), this);
50   else 
51     mAction = new QAction(QIcon(mToolIconFilename), 
52                           QString("&").append(mToolMenuName), this);
53   mAction->setStatusTip(mToolTip);
54   // Connect the action
55   connect(mAction, SIGNAL(triggered()), this, SLOT(MenuToolSlot()));
56   if (mExperimental)
57       mMainWindow->GetExperimentalToolMenu()->addAction(mAction);
58   else
59       mMainWindow->GetToolMenu()->addAction(mAction);
60
61 //------------------------------------------------------------------------------
62
63
64 //------------------------------------------------------------------------------
65 void vvToolCreatorBase::InsertToolInContextMenu() { 
66   mMainWindow->GetContextMenu()->addMenu(mToolMenu);
67   for(unsigned int i=0; i<mListOfActions.size(); i++) {
68     connect(mListOfActions[i], SIGNAL(triggered()), this, SLOT(MenuToolSlot()));
69   }
70 }
71 //------------------------------------------------------------------------------
72
73
74 //------------------------------------------------------------------------------
75 void vvToolCreatorBase::addMenuToContextMenu(QMenu * m) {
76   mToolMenu = m;
77   for(int i=0; i<m->actions().length(); i++) {
78     mListOfActions.push_back(m->actions()[i]);
79   }
80   mUseContextMenu = true;
81 }
82 //------------------------------------------------------------------------------