]> Creatis software - clitk.git/blob - vv/vvToolCreatorBase.cxx
added the new headers
[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 #include "vvToolCreatorBase.h"
19 #include "vvToolManager.h"
20 #include <QAction>
21 #include <QMenu>
22
23 //------------------------------------------------------------------------------
24 vvToolCreatorBase::vvToolCreatorBase(QString name): mExperimental(false) { 
25   mToolName = name;
26   vvToolManager::GetInstance()->AddTool(this); 
27 }
28 //------------------------------------------------------------------------------
29
30
31 //------------------------------------------------------------------------------
32 void vvToolCreatorBase::InsertToolInMenu(vvMainWindowBase * m) { 
33   mMainWindow = m; 
34   // Create main action
35   if (mToolIconFilename == "noicon") 
36     mAction = new QAction(QString("&").append(mToolMenuName), this);
37   else 
38     mAction = new QAction(QIcon(mToolIconFilename), 
39                           QString("&").append(mToolMenuName), this);
40   mAction->setStatusTip(mToolTip);
41   // Connect the action
42   connect(mAction, SIGNAL(triggered()), this, SLOT(MenuToolSlot()));
43   if (mExperimental)
44       mMainWindow->GetExperimentalToolMenu()->addAction(mAction);
45   else
46       mMainWindow->GetToolMenu()->addAction(mAction);
47
48 //------------------------------------------------------------------------------
49