Salome HOME
Copyright update 2021
[modules/med.git] / src / MEDCalc / gui / dialogs / DlgAlias.cxx
1 // Copyright (C) 2015-2021  CEA/DEN, EDF R&D
2 //
3 // This library is free software; you can redistribute it and/or
4 // modify it under the terms of the GNU Lesser General Public
5 // License as published by the Free Software Foundation; either
6 // version 2.1 of the License, or (at your option) any later version.
7 //
8 // This library is distributed in the hope that it will be useful,
9 // but WITHOUT ANY WARRANTY; without even the implied warranty of
10 // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
11 // Lesser General Public License for more details.
12 //
13 // You should have received a copy of the GNU Lesser General Public
14 // License along with this library; if not, write to the Free Software
15 // Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307 USA
16 //
17 // See http://www.salome-platform.org/ or email : webmaster.salome@opencascade.com
18 //
19
20 #include "DlgAlias.hxx"
21
22 #include <iostream>
23 using std::cout;
24 using std::endl;
25 #define LOG(msg) cout << "[XMED - DlgAlias]::"<< msg << endl;
26
27
28 DlgAlias::DlgAlias(QDialog *parent) : QDialog(parent)
29 {
30   ui.setupUi(this); // A faire en premier
31
32   /*
33     Personnalisez vos widgets ici si nécessaire
34     Réalisez des connexions supplémentaires entre signaux et slots
35   */
36
37   // The slots accept() and reject() are already connected to the
38   // buttonbox (inherited features)
39 }
40
41 void DlgAlias::accept() {
42   if ( this->getAlias().isEmpty() ) {
43     LOG("accept(): the alias can't be void");
44   }
45   else {
46     QDialog::accept();
47   }
48 }
49
50 //void DlgAlias::reject() {
51 //  LOG("reject() is not implemented yet");
52 //}
53
54 void DlgAlias::setAlias(QString alias) {
55   ui.txtAlias->setText(alias.trimmed().replace(' ', '_'));
56 }
57
58 QString DlgAlias::getAlias() {
59   return ui.txtAlias->text().trimmed().replace(' ', '_');
60 }