X-Git-Url: https://git.creatis.insa-lyon.fr/pubgit/?a=blobdiff_plain;f=vv%2FvvInfoPanel.cxx;h=da2bda3828c8bdb081e4786184eb49e1568c191f;hb=046c745470683943ba4f0e6abd72ed27446d0cc2;hp=ee77cb1447b01e870c68ae72143663397fd75b3e;hpb=686056dfe2391eed76302af43b08d30791901965;p=clitk.git diff --git a/vv/vvInfoPanel.cxx b/vv/vvInfoPanel.cxx index ee77cb1..da2bda3 100644 --- a/vv/vvInfoPanel.cxx +++ b/vv/vvInfoPanel.cxx @@ -3,7 +3,7 @@ Authors belong to: - University of LYON http://www.universite-lyon.fr/ - - Léon Bérard cancer center http://oncora1.lyon.fnclcc.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 @@ -14,12 +14,23 @@ - BSD See included LICENSE.txt file - CeCILL-B http://www.cecill.info/licences/Licence_CeCILL-B_V1-en.html - ======================================================================-====*/ + ===========================================================================**/ #include #include #include "vvInfoPanel.h" #include "clitkMemoryUsage.h" +#include "clitkConfiguration.h" + +//------------------------------------------------------------------------------ +vvInfoPanel::vvInfoPanel(QWidget * parent):QWidget(parent) +{ + setupUi(this); +#if CLITK_MEMORY_INFO==0 + memoryUsageLabel->hide(); +#endif +} +//------------------------------------------------------------------------------ //------------------------------------------------------------------------------ void vvInfoPanel::setTransformation(QString text) @@ -163,7 +174,7 @@ void vvInfoPanel::setViews(int window, int view, int slice) //------------------------------------------------------------------------------ void vvInfoPanel::setMemoryInMb(QString text) { - memoryUsageLabel->setText("Memory usage: "+text); + memoryUsageLabel->setText("Memory usage : "+text); } //------------------------------------------------------------------------------