]> Creatis software - clitk.git/blob - vv/vvToolBase.h
- correct "same image name" bug
[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   static void Initialize();  // can't be virtual, must be overwritten
31
32   static void SetToolName(QString n) { vvToolCreator<ToolType>::mSingleton->mToolName = n; }
33   static void SetToolMenuName(QString n) { vvToolCreator<ToolType>::mSingleton->mToolMenuName = n; }
34   static void SetToolIconFilename(QString n) { vvToolCreator<ToolType>::mSingleton->mToolIconFilename = n; }
35   static void SetToolTip(QString n) { vvToolCreator<ToolType>::mSingleton->mToolTip = n; }
36   static void SetToolExperimental(bool exp) { vvToolCreator<ToolType>::mSingleton->mExperimental = exp; }
37
38   void AddImage(vvImage::Pointer image,std::string filename) {
39     CREATOR(ToolType)->GetMainWindow()->AddImage(image,filename); 
40   }
41
42   void setSender(QObject *s) { mSender = s; }
43
44  protected:
45   QObject * mSender;
46 };
47 //------------------------------------------------------------------------------
48
49 #include "vvToolBase.txx"
50
51 #endif
52