Salome HOME
DCQ : Merge with Ecole_Ete_a6.
[modules/superv.git] / src / SUPERVGUI / SUPERVGUI_Information.cxx
1 //  SUPERV SUPERVGUI : GUI for Supervisor 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.opencascade.org/SALOME/ or email : webmaster.salome@opencascade.org 
21 //
22 //
23 //
24 //  File   : SUPERVGUI_Information.cxx
25 //  Author : Francis KLOSS
26 //  Module : SUPERV
27
28 using namespace std;
29 #include "SUPERVGUI_Information.h"
30 #include "QAD_Application.h"
31 #include "QAD_Desktop.h"
32 #include "QAD_MessageBox.h"
33 #include <qapplication.h>
34 #include <qlabel.h>
35 #include <qgroupbox.h>
36 #include <qlayout.h>
37
38
39 /*!
40   Constructor
41 */
42 SUPERVGUI_Information::SUPERVGUI_Information(SUPERV_CNode node, bool isReadOnly)
43      : QDialog( QAD_Application::getDesktop(), "", true, WStyle_Customize | WStyle_NormalBorder | WStyle_Title | WStyle_SysMenu ) 
44 {
45   Trace("SUPERVGUI_Information::SUPERVGUI_Information");
46   setCaption( tr( "TLT_INFORMATIONS" ) );
47   setSizeGripEnabled( true );
48   myNode = node;
49
50   QGridLayout* TopLayout = new QGridLayout( this );
51   TopLayout->setSpacing( 6 );
52   TopLayout->setMargin( 11 );
53     
54   QGroupBox* TopGroup = new QGroupBox( this, "TopGroup" );
55   TopGroup->setColumnLayout(0, Qt::Vertical );
56   TopGroup->layout()->setSpacing( 0 );
57   TopGroup->layout()->setMargin( 0 );
58   QGridLayout* TopGroupLayout = new QGridLayout( TopGroup->layout() );
59   TopGroupLayout->setAlignment( Qt::AlignTop );
60   TopGroupLayout->setSpacing( 6 );
61   TopGroupLayout->setMargin( 11 );
62
63   QLabel* nameL = new QLabel( tr( "NAME_LBL" ), TopGroup );  
64   nameV = new QLineEdit( TopGroup );      
65   nameV->setSizePolicy( QSizePolicy( QSizePolicy::Expanding, QSizePolicy::Fixed ) );
66   nameV->setMinimumSize( 200, 0 );
67   nameV->setReadOnly( isReadOnly );
68   nameV->setText( node->Name() );
69   
70   QLabel* authL = new QLabel( tr( "AUTHOR_LBL" ), TopGroup); 
71   authV = new QLineEdit( TopGroup );
72   authV->setSizePolicy( QSizePolicy( QSizePolicy::Expanding, QSizePolicy::Fixed ) );
73   authV->setMinimumSize( 200, 0 );
74   authV->setReadOnly( isReadOnly );
75   authV->setText( node->Author() );
76
77   
78   if (node->IsFactory()) {
79     contL = new QLabel( tr( "CONTAINER_LBL" ), TopGroup ); 
80     contV = new QLineEdit( TopGroup );
81     contV->setSizePolicy( QSizePolicy( QSizePolicy::Expanding, QSizePolicy::Fixed ) );
82     contV->setMinimumSize( 200, 0 );
83     contV->setReadOnly( false/*isReadOnly*/ );
84     contV->setText( SUPERV::FNode::_narrow(node)->GetContainer() );
85     
86     compnameL = new QLabel( tr( "COMPONENT_NAME_LBL" ), TopGroup ); 
87     compnameV = new QLineEdit( TopGroup );      
88     compnameV->setSizePolicy( QSizePolicy( QSizePolicy::Expanding, QSizePolicy::Fixed ) );
89     compnameV->setMinimumSize( 200, 0 );
90     compnameV->setReadOnly( true/*isReadOnly*/ );
91     compnameV->setText( QAD_Application::getDesktop()->getComponentUserName(
92                    SUPERV::FNode::_narrow(node)->GetComponentName()) );
93
94     intnameL = new QLabel( tr( "INTERFACE_NAME_LBL" ), TopGroup ); 
95     intnameV = new QLineEdit( TopGroup );      
96     intnameV->setSizePolicy( QSizePolicy( QSizePolicy::Expanding, QSizePolicy::Fixed ) );
97     intnameV->setMinimumSize( 200, 0 );
98     intnameV->setReadOnly( true/*isReadOnly*/ );
99     intnameV->setText( SUPERV::FNode::_narrow(node)->GetInterfaceName() );
100     
101   }
102   QLabel* cdatL = new QLabel( tr( "DATE_CREATION_LBL" ), TopGroup ); 
103   cdatV = new QLabel( TopGroup );
104   cdatV->setSizePolicy( QSizePolicy( QSizePolicy::Expanding, QSizePolicy::Fixed ) );
105   cdatV->setMinimumSize( 200, 0 );
106   cdatV->setText( date( node->CreationDate() ) );
107
108   QLabel* udatL = new QLabel( tr( "DATE_MODIFICATION_LBL" ), TopGroup ); 
109   udatV = new QLabel( TopGroup );
110   udatV->setSizePolicy( QSizePolicy( QSizePolicy::Expanding, QSizePolicy::Fixed ) );
111   udatV->setMinimumSize( 200, 0 );
112   udatV->setText( date( node->LastUpdateDate() ) );
113
114   QLabel* commL = new QLabel( tr( "COMMENT_LBL" ), TopGroup); 
115   commV = new QMultiLineEdit( TopGroup );
116   commV->setSizePolicy( QSizePolicy( QSizePolicy::Expanding, QSizePolicy::Expanding ) );
117   commV->setMinimumSize( 200, 100 );
118   commV->setReadOnly( isReadOnly );
119   commV->setText( node->Comment() );
120
121   TopGroupLayout->addWidget( nameL, 0, 0 );
122   TopGroupLayout->addWidget( nameV, 0, 1 );
123   TopGroupLayout->addWidget( authL, 1, 0 );
124   TopGroupLayout->addWidget( authV, 1, 1 );
125   if (node->IsFactory()) {
126     TopGroupLayout->addWidget( contL, 2, 0 );
127     TopGroupLayout->addWidget( contV, 2, 1 );
128     TopGroupLayout->addWidget( compnameL, 3, 0 );
129     TopGroupLayout->addWidget( compnameV, 3, 1 );
130     TopGroupLayout->addWidget( intnameL, 4, 0 );
131     TopGroupLayout->addWidget( intnameV, 4, 1 );
132   }
133   TopGroupLayout->addWidget( cdatL, 5, 0 );
134   TopGroupLayout->addWidget( cdatV, 5, 1 );
135   TopGroupLayout->addWidget( udatL, 6, 0 );
136   TopGroupLayout->addWidget( udatV, 6, 1 );
137   TopGroupLayout->addWidget( commL, 7, 0 );
138   TopGroupLayout->addMultiCellWidget( commV, 7, 8, 1, 1 );
139   TopGroupLayout->addItem( new QSpacerItem( 5, 5, QSizePolicy::Minimum, QSizePolicy::Expanding  ), 8, 0 );
140   TopGroupLayout->setColStretch( 1, 5 );
141
142   QGroupBox* GroupButtons = new QGroupBox( this, "GroupButtons" );
143   GroupButtons->setColumnLayout(0, Qt::Vertical );
144   GroupButtons->layout()->setSpacing( 0 );
145   GroupButtons->layout()->setMargin( 0 );
146   QGridLayout* GroupButtonsLayout = new QGridLayout( GroupButtons->layout() );
147   GroupButtonsLayout->setAlignment( Qt::AlignTop );
148   GroupButtonsLayout->setSpacing( 6 );
149   GroupButtonsLayout->setMargin( 11 );
150   
151   QPushButton* okB     = new QPushButton( tr( "BUT_OK" ),     GroupButtons );
152   QPushButton* cancelB = new QPushButton( tr( "BUT_CANCEL" ), GroupButtons );
153
154   GroupButtonsLayout->addWidget( okB, 0, 0 );
155   GroupButtonsLayout->addItem  ( new QSpacerItem( 5, 5, QSizePolicy::Expanding, QSizePolicy::Minimum ), 0, 1 );
156   GroupButtonsLayout->addWidget( cancelB, 0, 2 );
157
158   TopLayout->addWidget( TopGroup,     0, 0 );
159   TopLayout->addWidget( GroupButtons, 1, 0 );
160
161   connect( okB,     SIGNAL( clicked() ), this, SLOT( okButton() ) );
162   connect( cancelB, SIGNAL( clicked() ), this, SLOT( koButton() ) );
163 }
164
165 /*!
166   Destructor
167 */
168 SUPERVGUI_Information::~SUPERVGUI_Information() {
169   Trace("SUPERVGUI_Information::~SUPERVGUI_Information");
170 }
171
172 /*!
173   Executes dialog
174 */
175 /*
176 bool SUPERVGUI_Information::run( SUPERV_CNode node, bool isReadOnly ) {
177   Trace("SUPERVGUI_Information::run");
178   nameV->setReadOnly( isReadOnly );
179   authV->setReadOnly( isReadOnly );
180   commV->setReadOnly( isReadOnly );
181
182   nameV->setText( node->Name() );
183   authV->setText( node->Author() );
184   commV->setText( node->Comment() );
185   if (node->IsFactory()) {
186     SUPERV_FNode aFNode = SUPERV::FNode::_narrow(node);
187     contV->setText( aFNode->GetContainer());
188     contL->show();
189     contV->show();
190   }
191   else {
192     contL->hide();
193     contV->hide();
194   }
195   qApp->processEvents();
196   adjustSize();
197
198   //commV->setText( node->Comment() );
199   cdatV->setText( date( node->CreationDate() ) );
200   udatV->setText( date( node->LastUpdateDate() ) );
201
202   bool b1     = true;
203   bool b2     = true;
204   bool b3     = true;
205   bool b4     = true;
206   bool result = false;
207   if ( exec() == Accepted ) {
208     if (! isReadOnly ) {
209       //b3 = node->SetContainer( contV->text().latin1() );
210       //} 
211       //else {
212       if ( strcmp( node->Name(), nameV->text().latin1() ) != 0 ) {
213         b1 = node->SetName( nameV->text().latin1() );
214       }
215       b2 = node->SetAuthor   ( authV->text().latin1() );
216       if (node->IsFactory()) {
217         SUPERV_FNode aFNode = SUPERV::FNode::_narrow(node);
218         b3 = aFNode->SetContainer( contV->text().latin1() );
219       }
220       b4 = node->SetComment  ( commV->text().latin1() );
221     }
222     result = b1 && b2 && b3 && b4;
223     if ( !result ) {
224       QAD_MessageBox::warn1( this, tr( "ERROR" ), tr( "MSG_CANT_CHANGE_INFO" ), tr( "BUT_OK" ) );
225     }
226   }
227   return result;
228   }*/
229
230 /*!
231   Returns string representation of date
232 */
233 QString SUPERVGUI_Information::date( SUPERV_Date d ) {
234   Trace("SUPERVGUI_Information::date");
235   QString dt( "" );
236
237   if ( d.Day != 0 ) {
238     dt += ( char )( d.Day / 10 + 48 );
239     dt += ( char )( d.Day % 10 + 48 );
240     dt += '/';
241     dt += ( char )( d.Month / 10 + 48 );
242     dt += ( char )( d.Month % 10 + 48 );
243     dt += '/';
244     dt += ( char )( ( d.Year / 1000 ) %10 + 48 );
245     dt += ( char )( ( d.Year / 100 ) % 10 + 48 );
246     dt += ( char )( ( d.Year / 10  ) % 10 + 48 );
247     dt += ( char )( d.Year %10 + 48 );
248     dt += ' ';
249     dt += ( char )( d.Hour / 10 + 48 );
250     dt += ( char )( d.Hour % 10 + 48 );
251     dt += ':';
252     dt += ( char )( d.Minute / 10 + 48 );
253     dt += ( char )( d.Minute % 10 + 48 );
254     dt += ':';
255     dt += ( char )( d.Second / 10 + 48 );
256     dt += ( char )( d.Second % 10 + 48 );
257   };
258   return( dt );
259 }
260
261 /*!
262   <OK> button slot
263 */
264 void SUPERVGUI_Information::okButton() {
265   Trace("SUPERVGUI_Information::okButton");
266   myNode->SetName( nameV->text().latin1());
267   myNode->SetAuthor( authV->text().latin1() );
268   if (myNode->IsFactory()) {
269     SUPERV_FNode aFNode = SUPERV::FNode::_narrow(myNode);
270     aFNode->SetContainer( contV->text().latin1() );
271   }
272   myNode->SetComment( commV->text().latin1() );
273   accept();
274 }
275
276 /*!
277   <Cancel> button slot
278 */
279 void SUPERVGUI_Information::koButton() {
280   Trace("SUPERVGUI_Information::koButton");
281   reject();
282 }