1 /*=========================================================================
2 Program: vv http://www.creatis.insa-lyon.fr/rio/vv
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
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.
13 It is distributed under dual licence
15 - BSD See included LICENSE.txt file
16 - CeCILL-B http://www.cecill.info/licences/Licence_CeCILL-B_V1-en.html
17 ======================================================================-====*/
22 #include "vvToolBaseBase.h"
23 #include "vvToolCreator.h"
25 //------------------------------------------------------------------------------
26 template<class ToolType>
27 class vvToolBase : public vvToolBaseBase {
29 vvToolBase(vvMainWindowBase * m);
30 static void Initialize(); // can't be virtual, must be overwritten
32 static void SetToolName(QString n) { vvToolCreator<ToolType>::GetInstance()->mToolName = n; }
33 static void SetToolMenuName(QString n) { vvToolCreator<ToolType>::GetInstance()->mToolMenuName = n; }
34 static void SetToolIconFilename(QString n) { vvToolCreator<ToolType>::GetInstance()->mToolIconFilename = n; }
35 static void SetToolTip(QString n) { vvToolCreator<ToolType>::GetInstance()->mToolTip = n; }
36 static void SetToolExperimental(bool exp) { vvToolCreator<ToolType>::GetInstance()->mExperimental = exp; }
37 static void SetToolInMenu(std::string menu) { vvToolCreator<ToolType>::GetInstance()->SetMenuName(menu); }
39 static QIcon GetToolIcon() { return QIcon(vvToolCreator<ToolType>::GetInstance()->mToolIconFilename); }
40 static QString & GetToolName() { return vvToolCreator<ToolType>::GetInstance()->mToolName; }
42 vvSlicerManager * AddImage(vvImage::Pointer image,std::string filename) {
43 return CREATOR(ToolType)->GetMainWindow()->AddImage(image,filename);
46 void setSender(QObject *s) { mSender = s; }
51 //------------------------------------------------------------------------------
53 #include "vvToolBase.txx"