Salome HOME
Copyright update 2022
[modules/gui.git] / src / SUIT / SUIT_Tools.cxx
1 // Copyright (C) 2007-2022  CEA/DEN, EDF R&D, OPEN CASCADE
2 //
3 // Copyright (C) 2003-2007  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, or (at your option) any later version.
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
23 #include "SUIT_Tools.h"
24
25 #include <QDir>
26
27 #include <stdio.h>
28 #include <stdarg.h>
29
30 /*!
31   Traces output to log-file.
32   If log is NULL, 'Salome_trace' file is created in temp directory.
33   Log file is written in 'append' mode.
34 */
35 void SUIT_Tools::trace( const char* lpszLog, const char* lpszFormat, ... )
36 {
37   QString tmpPath = tmpDir();
38   if ( !tmpPath.isEmpty() )
39     tmpPath += QDir::separator();
40
41   tmpPath += QString( "Salome_trace" );
42
43   FILE* pStream;
44   pStream = fopen( lpszLog ? lpszLog : (const char*)tmpPath.toUtf8(), "a" );
45   if ( pStream ) 
46   {     
47     va_list argptr;
48     va_start( argptr, lpszFormat );
49     fprintf( pStream, "- Trace %s [%d] : %s", __FILE__, __LINE__, lpszFormat );
50     va_end( argptr );
51
52     fclose( pStream );
53   }
54 }
55
56 /*! 
57     Creates a rect with TopLeft = ( min(x1,x2), min(y1,y2) )
58     and BottomRight = ( TopLeft + (x2-x1)(y2-y1) )    
59 */      
60 QRect SUIT_Tools::makeRect( const int x1, const int y1, const int x2, const int y2 )
61 {  
62   return QRect( qMin( x1, x2 ), qMin( y1, y2 ), qAbs( x2 - x1 ), qAbs( y2 - y1 ) );
63 }
64
65 /*!
66   Creates font's string description
67 */
68 QString SUIT_Tools::fontToString( const QFont& font )
69 {
70   return font.toString();
71 }
72
73 /*!
74   Center widget 'src' relative to widget 'ref'.
75 */
76 void SUIT_Tools::centerWidget( QWidget* src, const QWidget* ref )
77 {
78   SUIT_Tools::alignWidget( src, ref, Qt::AlignCenter );
79 }