X-Git-Url: https://git.creatis.insa-lyon.fr/pubgit/?a=blobdiff_plain;f=vv%2FvvToolSimpleInputSelectorWidget.h;h=4b8028fa2f9b84a600ddb69ebf236c20cd4b166a;hb=998ca9ca987553dc71578e5584e881f6bd537d91;hp=4410b0d910dec4d1ec0edde1c8ea772ed82530c7;hpb=61d57d331b0459560f6714c0c6bb8298868a662e;p=clitk.git diff --git a/vv/vvToolSimpleInputSelectorWidget.h b/vv/vvToolSimpleInputSelectorWidget.h index 4410b0d..4b8028f 100644 --- a/vv/vvToolSimpleInputSelectorWidget.h +++ b/vv/vvToolSimpleInputSelectorWidget.h @@ -1,34 +1,29 @@ /*========================================================================= + Program: vv http://www.creatis.insa-lyon.fr/rio/vv - Program: vv - Module: $RCSfile: vvToolSimpleInputSelectorWidget.h,v $ - Language: C++ - Date: $Date: 2010/03/17 11:23:45 $ - Version: $Revision: 1.1 $ - Author : David Sarrut (david.sarrut@creatis.insa-lyon.fr) + 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 - Copyright (C) 2010 - Léon Bérard cancer center http://oncora1.lyon.fnclcc.fr - CREATIS 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. - This program is free software: you can redistribute it and/or modify - it under the terms of the GNU General Public License as published by - the Free Software Foundation, version 3 of the License. - - This program is distributed in the hope that it will be useful, - but WITHOUT ANY WARRANTY; without even the implied warranty of - MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - GNU General Public License for more details. - - You should have received a copy of the GNU General Public License - along with this program. If not, see . - - =========================================================================*/ + 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 VVTOOLSIMPLEINPUTSELECTORWIDGET_H #define VVTOOLSIMPLEINPUTSELECTORWIDGET_H +#include +#if QT_VERSION >= 0x050000 +#include +#else #include +#endif #include #include "ui_vvToolSimpleInputSelectorWidget.h" @@ -46,15 +41,19 @@ class vvToolSimpleInputSelectorWidget: public QWidget, private Ui::vvToolSimpleI void Initialize(); int GetSelectedInputIndex() { return mCurrentIndex; } vvSlicerManager * GetSelectedInput(); + void SetText(QString & s); + void EnableAllowSkip(bool b); public slots: void accept(); void reject(); void setEnabled(bool b); + void skip(QAbstractButton*); signals: void accepted(); void rejected(); + void sigskip(); protected slots: void changeInput(int i); @@ -64,6 +63,7 @@ class vvToolSimpleInputSelectorWidget: public QWidget, private Ui::vvToolSimpleI std::vector mSlicerManagerList; int mCurrentIndex; vvSlicerManager * mCurrentSliceManager; + bool mAllowSkip; }; // end class vvToolSimpleInputSelectorWidget //------------------------------------------------------------------------------