Salome HOME
PAL16760 - MED file information
[modules/smesh.git] / src / SMESHGUI / SMESHGUI_FileInfoDlg.cxx
1 //  SMESH SMESHGUI : GUI for SMESH component
2 //
3 //  Copyright (C) 2003  OPEN CASCADE, EADS/CCR, LIP6, CEA/DEN,
4 //  CEDRAT, EDF R&D, LEG, PRINCIPIA R&D, BUREAU VERITAS
5 //
6 //  This library is free software; you can redistribute it and/or
7 //  modify it under the terms of the GNU Lesser General Public
8 //  License as published by the Free Software Foundation; either
9 //  version 2.1 of the License.
10 //
11 //  This library is distributed in the hope that it will be useful,
12 //  but WITHOUT ANY WARRANTY; without even the implied warranty of
13 //  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
14 //  Lesser General Public License for more details.
15 //
16 //  You should have received a copy of the GNU Lesser General Public
17 //  License along with this library; if not, write to the Free Software
18 //  Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307 USA
19 //
20 //  See http://www.salome-platform.org/ or email : webmaster.salome@opencascade.com
21 //
22 //  File   : SMESHGUI_FileInfoDlg.cxx
23 //  Author : Alexandre SOLOVYOV
24 //  Module : SMESH
25 //  $Header$
26
27 #include <SMESHGUI_FileInfoDlg.h>
28
29 #include <MED_Common.hxx>
30
31 #include <qlayout.h>
32 #include <qlabel.h>
33 #include <qlineedit.h>
34
35 SMESHGUI_FileInfoDlg::SMESHGUI_FileInfoDlg( QWidget* parent, SALOME_MED::MedFileInfo* inf )
36   : QtxDialog( parent, 0, true, false, QtxDialog::OK )
37 {
38   setCaption( tr( "CAPTION" ) );
39   
40   QLineEdit* fname = new QLineEdit( mainFrame() );
41   fname->setReadOnly( true );
42   QLineEdit* fsize = new QLineEdit( mainFrame() );
43   fsize->setReadOnly( true );
44   QLineEdit* medversion = new QLineEdit( mainFrame() );
45   medversion->setReadOnly( true );
46   
47   QGridLayout* lay = new QGridLayout( mainFrame(), 4, 2, 5, 5 );
48   lay->addWidget( new QLabel( tr( "FILE_NAME" ), mainFrame() ), 0, 0 );
49   lay->addWidget( fname, 0, 1 );
50   lay->addWidget( new QLabel( tr( "FILE_SIZE" ), mainFrame() ), 1, 0 );
51   lay->addWidget( fsize, 1, 1 );
52   lay->addWidget( new QLabel( tr( "MED_VERSION" ), mainFrame() ), 2, 0 );
53   lay->addWidget( medversion, 2, 1 );
54
55   fname->setText( (char*)inf->fileName );
56   fsize->setText( QString::number( inf->fileSize ) );
57
58   QString version;
59   if( inf->major>=0 )
60   {
61     version = QString::number( inf->major );
62     if( inf->minor>=0 )
63     {
64       version += "." + QString::number( inf->minor );
65       if( inf->release>=0 )
66         version += "." + QString::number( inf->release );
67     }
68   }
69   medversion->setText( version );
70   setFixedSize( 640, 480 );
71 }
72
73 SMESHGUI_FileInfoDlg::~SMESHGUI_FileInfoDlg()
74 {
75 }