X-Git-Url: https://git.creatis.insa-lyon.fr/pubgit/?a=blobdiff_plain;f=vv%2FvvMainWindowBase.h;h=3b99565378d3604704b25c072aec0dfe850aa1ce;hb=140bf134a2e40ba737bdb85f040d2a052c9a8e2a;hp=f26a3551c92ec0c76c7757058f42eb08facc851f;hpb=0083c3fb2c66812489631c7551709d121de51625;p=clitk.git diff --git a/vv/vvMainWindowBase.h b/vv/vvMainWindowBase.h index f26a355..3b99565 100644 --- a/vv/vvMainWindowBase.h +++ b/vv/vvMainWindowBase.h @@ -1,11 +1,31 @@ +/*========================================================================= + Program: vv http://www.creatis.insa-lyon.fr/rio/vv + + Authors belong to: + - University of LYON http://www.universite-lyon.fr/ + - Léon Bérard cancer center http://www.centreleonberard.fr + - CREATIS CNRS laboratory http://www.creatis.insa-lyon.fr + + This software is distributed WITHOUT ANY WARRANTY; without even + the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR + PURPOSE. See the copyright notices for more information. + + It is distributed under dual licence + + - BSD See included LICENSE.txt file + - CeCILL-B http://www.cecill.info/licences/Licence_CeCILL-B_V1-en.html +===========================================================================**/ + #ifndef VVMAINWINDOWBASE_H #define VVMAINWINDOWBASE_H + #include "clitkCommon.h" #include "vvImage.h" #include class vvSlicerManager; class QMenu; +class QTabWidget; //------------------------------------------------------------------------------ class vvMainWindowBase : public QMainWindow @@ -16,23 +36,32 @@ public: vvMainWindowBase() { mSlicerManagerCurrentIndex = -1; } ~vvMainWindowBase() { } - virtual void AddImage(vvImage::Pointer image,std::string filename) = 0; + virtual vvSlicerManager * AddImage(vvImage::Pointer image,std::string filename) = 0; virtual void UpdateCurrentSlicer() = 0; + virtual QTabWidget * GetTab() = 0; const std::vector & GetSlicerManagers() const { return mSlicerManagers; } QMenu * GetToolMenu() const { return mMenuTools; } + QMenu * GetMenu(std::string menuName) const;// { return mMenuTools; } + QMenu * GetContextMenu() const { return mContextMenu; } QMenu * GetExperimentalToolMenu() const { return mMenuExperimentalTools; } int GetSlicerManagerCurrentIndex() const { return mSlicerManagerCurrentIndex; } QWidget * GetMainWidget() { return mMainWidget; } + const QString & GetInputPathName() { return mInputPathName; } signals: void AnImageIsBeingClosed(vvSlicerManager *); + void SelectedImageHasChanged(vvSlicerManager *); protected: std::vector mSlicerManagers; QMenu * mMenuTools; + QMenu * mMenuSegmentation; + QMenu * mContextMenu; QMenu * mMenuExperimentalTools; int mSlicerManagerCurrentIndex; QWidget* mMainWidget; + QString mInputPathName; + }; //------------------------------------------------------------------------------