1 // Copyright (C) 2007-2012 CEA/DEN, EDF R&D, OPEN CASCADE
3 // Copyright (C) 2003-2007 OPEN CASCADE, EADS/CCR, LIP6, CEA/DEN,
4 // CEDRAT, EDF R&D, LEG, PRINCIPIA R&D, BUREAU VERITAS
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.
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.
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
20 // See http://www.salome-platform.org/ or email : webmaster.salome@opencascade.com
23 // VISU OBJECT : interactive object for VISU entities implementation
24 // File: VISU_Convertor.cxx
25 // Author: Alexey PETROV
28 #include "VISU_Convertor.hxx"
29 #include "VISU_ConvertorUtils.hxx"
36 //---------------------------------------------------------------
43 //---------------------------------------------------------------
52 //---------------------------------------------------------------
60 //---------------------------------------------------------------
69 //---------------------------------------------------------------
72 ::GenerateName(const VISU::TTime& aTime)
75 const std::string aUnits = aTime.second, tmp(aUnits.size(), ' ');
76 if(aUnits == "" || aUnits == tmp)
77 aName.sprintf("%g, -", aTime.first);
79 aName.sprintf("%g, %s", aTime.first, aTime.second.c_str());
80 aName = aName.simplified();
81 return (const char*)aName.toLatin1();
85 //---------------------------------------------------------------
88 ::GenerateName(const std::string& theName,
89 unsigned int theTimeId)
92 aName = QString(theName.c_str()).simplified();
93 int iEnd = strlen((const char*)aName.toLatin1());
94 static int VtkHighLevelLength = 12; //25
95 if(iEnd > VtkHighLevelLength) iEnd = VtkHighLevelLength;
96 char* aNewName = new char[iEnd+1];
97 aNewName[iEnd] = '\0';
98 strncpy(aNewName, (const char*)aName.toLatin1(), iEnd);
99 std::replace(aNewName, aNewName + iEnd, ' ', '_');
100 if(true || theTimeId == 0)
103 aName.sprintf("%s_%d",aNewName,theTimeId);
105 return (const char*)aName.toLatin1();
109 //---------------------------------------------------------------