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