]> Creatis software - clitk.git/blob - vv/vvToolBase.h
Romulo
[clitk.git] / vv / vvToolBase.h
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 #ifndef VVTOOLBASE_H
20 #define VVTOOLBASE_H
21
22 #include "vvToolBaseBase.h"
23 #include "vvToolCreator.h"
24
25 //------------------------------------------------------------------------------
26 template<class ToolType>
27 class vvToolBase : public vvToolBaseBase {
28 public:
29   vvToolBase(vvMainWindowBase * m);
30   virtual ~vvToolBase() {};
31   
32   static void Initialize();  // can't be virtual, must be overwritten
33
34   static void SetToolName(QString n) { vvToolCreator<ToolType>::GetInstance()->mToolName = n; }
35   static void SetToolMenuName(QString n) { vvToolCreator<ToolType>::GetInstance()->mToolMenuName = n; }
36   static void SetToolIconFilename(QString n) { vvToolCreator<ToolType>::GetInstance()->mToolIconFilename = n; }
37   static void SetToolTip(QString n) { vvToolCreator<ToolType>::GetInstance()->mToolTip = n; }
38   static void SetToolExperimental(bool exp) { vvToolCreator<ToolType>::GetInstance()->mExperimental = exp; }
39   static void SetToolInMenu(std::string menu) { vvToolCreator<ToolType>::GetInstance()->SetMenuName(menu); }
40
41   static QIcon GetToolIcon() { return QIcon(vvToolCreator<ToolType>::GetInstance()->mToolIconFilename); }
42   static QString & GetToolName() { return vvToolCreator<ToolType>::GetInstance()->mToolName; }
43
44   vvSlicerManager * AddImage(vvImage::Pointer image,std::string filename) {
45     return CREATOR(ToolType)->GetMainWindow()->AddImage(image,filename); 
46   }
47
48   void setSender(QObject *s) { mSender = s; }
49
50  protected:
51   QObject * mSender;
52 };
53 //------------------------------------------------------------------------------
54
55 #include "vvToolBase.txx"
56
57 #endif
58