]> Creatis software - clitk.git/blob - vv/vvToolCreatorBase.cxx
First version in tab.
[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://www.centreleonberard.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): mAction(NULL), mExperimental(false)
26 {
27   mUseContextMenu = false;
28   mToolName = name;
29   m_MenuName = "Tools";
30   vvToolManager::GetInstance()->AddTool(this);
31 }
32 //------------------------------------------------------------------------------
33
34 //------------------------------------------------------------------------------
35 void vvToolCreatorBase::MenuToolSlot()
36 {
37   mSender = QObject::sender();
38   MenuSpecificToolSlot();
39 }
40 //------------------------------------------------------------------------------
41
42
43 //------------------------------------------------------------------------------
44 void vvToolCreatorBase::InsertToolInMenu(vvMainWindowBase * m)
45 {
46   mMainWindow = m;
47   if (mUseContextMenu) {
48     InsertToolInContextMenu();
49     return;
50   }
51   // Create main action
52   if (mToolIconFilename == "noicon")
53     mAction = new QAction(QString("&").append(mToolMenuName), this);
54   else {
55     mAction = new QAction(QIcon(mToolIconFilename),
56                           QString("&").append(mToolMenuName), this);
57     mAction->setIconVisibleInMenu(true);
58   }
59
60   mAction->setStatusTip(mToolTip);
61   // Connect the action
62   connect(mAction, SIGNAL(triggered()), this, SLOT(MenuToolSlot()));
63   if (mExperimental)
64     mMainWindow->GetExperimentalToolMenu()->addAction(mAction);
65   else {
66     mMainWindow->GetMenu(m_MenuName)->addAction(mAction);
67   }
68 }
69 //------------------------------------------------------------------------------
70
71
72 //------------------------------------------------------------------------------
73 void vvToolCreatorBase::InsertToolInContextMenu()
74 {
75   mMainWindow->GetContextMenu()->addMenu(mToolMenu);
76   for(unsigned int i=0; i<mListOfActions.size(); i++) {
77     connect(mListOfActions[i], SIGNAL(triggered()), this, SLOT(MenuToolSlot()));
78   }
79 }
80 //------------------------------------------------------------------------------
81
82
83 //------------------------------------------------------------------------------
84 void vvToolCreatorBase::addMenuToContextMenu(QMenu * m)
85 {
86   mToolMenu = m;
87   for(int i=0; i<m->actions().size(); i++) {
88     mListOfActions.push_back(m->actions()[i]);
89   }
90   mUseContextMenu = true;
91 }
92 //------------------------------------------------------------------------------