X-Git-Url: https://git.creatis.insa-lyon.fr/pubgit/?a=blobdiff_plain;f=vv%2FvvInfoPanel.cxx;h=e8d3ba8187718616c917a166ae14e7e5476f4654;hb=acdc20ec4afc95db1db29bf8d885a3b72c9c7ee0;hp=33564b323d8a0fd47025f6fa4cb813f55f801682;hpb=1e034c70105f0926939acaaa27ddb46e904ae8bf;p=clitk.git diff --git a/vv/vvInfoPanel.cxx b/vv/vvInfoPanel.cxx index 33564b3..e8d3ba8 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,11 +14,31 @@ - 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) +{ + transformationLabel->setText(text); +} + +//------------------------------------------------------------------------------ void vvInfoPanel::setFileName(QString text) { @@ -27,37 +47,58 @@ void vvInfoPanel::setFileName(QString text) else imageLabel->setText(text); } +//------------------------------------------------------------------------------ + +//------------------------------------------------------------------------------ void vvInfoPanel::setDimension(QString text) { dimensionLabel->setText(text); } +//------------------------------------------------------------------------------ + +//------------------------------------------------------------------------------ void vvInfoPanel::setSizeMM(QString text) { sizeMMLabel->setText(text); } +//------------------------------------------------------------------------------ + +//------------------------------------------------------------------------------ void vvInfoPanel::setNPixel(QString text) { nPixelLabel->setText(text); } +//------------------------------------------------------------------------------ + +//------------------------------------------------------------------------------ void vvInfoPanel::setSizePixel(QString text) { sizePixelLabel->setText(text); } +//------------------------------------------------------------------------------ + +//------------------------------------------------------------------------------ void vvInfoPanel::setOrigin(QString text) { originLabel->setText(text); } +//------------------------------------------------------------------------------ + +//------------------------------------------------------------------------------ void vvInfoPanel::setSpacing(QString text) { spacingLabel->setText(text); } +//------------------------------------------------------------------------------ + +//------------------------------------------------------------------------------ void vvInfoPanel::setCurrentInfo(int visibility, double x, double y, double z, double X, double Y, double Z, double value) { QString world = ""; @@ -78,50 +119,13 @@ void vvInfoPanel::setCurrentInfo(int visibility, double x, double y, double z, d pixelPosLabel->setText(mouse); valueLabel->setText(val); } +//------------------------------------------------------------------------------ -void vvInfoPanel::setViews(int window, int view, int slice) +//------------------------------------------------------------------------------ +void vvInfoPanel::setMemoryInMb(QString text) { - 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; - } - } + memoryUsageLabel->setText("Memory usage : "+text); } +//------------------------------------------------------------------------------ +