Salome HOME
Copyrights update
[modules/gui.git] / src / CAF / CAF_Tools.cxx
1 // Copyright (C) 2005  OPEN CASCADE, CEA/DEN, EDF R&D, PRINCIPIA 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.
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/
18 //
19 //  File   : CAF_Tools.cxx
20 //  Author : UI team
21
22 #include "CAF_Tools.h"
23
24 #include <string.h>
25 #include <TCollection_ExtendedString.hxx>
26
27 /*!
28     Converts TCollection_ExtendedString 'src' to Qt string. [ static ]
29 */
30 QString CAF_Tools::toQString ( const TCollection_ExtendedString& src )
31 {
32     return QString( (const QChar*)src.ToExtString(), src.Length() );
33 }
34
35 /*!
36     Converts Qt string to TCollection_ExtendedString. [ static ]
37 */
38 TCollection_ExtendedString CAF_Tools::toExtString ( const QString& src )
39 {
40     TCollection_ExtendedString result;
41     for ( int i = 0; i < (int)src.length(); i++ )
42         result.Insert( i + 1, src[ i ].unicode() );
43     return result;
44 }