X-Git-Url: https://git.creatis.insa-lyon.fr/pubgit/?a=blobdiff_plain;f=vv%2FvvInfoPanel.cxx;h=2a4d1032b531c34c8fa2f39b3ed7836801e0697c;hb=769d159c09a35005afb6934fae83843f0b116d36;hp=ee77cb1447b01e870c68ae72143663397fd75b3e;hpb=686056dfe2391eed76302af43b08d30791901965;p=clitk.git diff --git a/vv/vvInfoPanel.cxx b/vv/vvInfoPanel.cxx index ee77cb1..2a4d103 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,26 @@ - 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 + QFont font = transformationLabel->font(); + font.setStyleHint(QFont::TypeWriter); + transformationLabel->setFont(font); +} +//------------------------------------------------------------------------------ //------------------------------------------------------------------------------ void vvInfoPanel::setTransformation(QString text) @@ -38,6 +52,10 @@ void vvInfoPanel::setFileName(QString text) } //------------------------------------------------------------------------------ +void vvInfoPanel::setImageCreationTime(QString text) +{ + creationTimeLabel->setText(text); +} //------------------------------------------------------------------------------ void vvInfoPanel::setDimension(QString text) @@ -111,59 +129,10 @@ void vvInfoPanel::setCurrentInfo(int visibility, double x, double y, double z, d //------------------------------------------------------------------------------ -//------------------------------------------------------------------------------ -void vvInfoPanel::setViews(int window, int view, int slice) -{/* - QString viewString; - switch (view) { - case 0: { - viewString = "Sagital, "; - break; - } - case 1: { - viewString = "Coronal, "; - break; - } - case 2: { - viewString = "Axial, "; - break; - } - } - - QString text = viewString; - if (view != -1) { - text += "current slice : "; - text += QString::number(slice); - } else { - text = "Disable"; - } - - switch (window) { - case 0: { - ULLabel->setText(text); - break; - } - case 1: { - URLabel->setText(text); - break; - } - case 2: { - DLLabel->setText(text); - break; - } - case 3: { - DRLabel->setText(text); - break; - } - }*/ -} -//------------------------------------------------------------------------------ - - //------------------------------------------------------------------------------ void vvInfoPanel::setMemoryInMb(QString text) { - memoryUsageLabel->setText("Memory usage: "+text); + memoryUsageLabel->setText("Memory usage : "+text); } //------------------------------------------------------------------------------