Salome HOME
WIN32/WIN64: Temporary solution to avoid crash during activating PARAVIS module.
[modules/paravis.git] / src / PVGUI / PV_Tools.h
1 // Copyright (C) 2010-2013  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.
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 //  File   : PV_Tools.h
20 //  Author : Vitaly Smetannikov
21 //  Module : PARAVIS
22 //
23
24 #ifndef __PV_TOOLS_H__
25 #define __PV_TOOLS_H__
26
27 #include "SALOMEconfig.h"
28 #include CORBA_SERVER_HEADER(SALOMEDS)
29 #include CORBA_SERVER_HEADER(SALOMEDS_Attributes)
30
31 #include <QStringList>
32
33 namespace PARAVIS
34 {
35   class PARAVIS_Base_i;
36
37   SALOMEDS::ListOfFileNames* GetListOfFileNames(const QStringList& theFileNames);
38
39
40   SALOMEDS::SComponent_var FindOrCreateParaVisComponent(SALOMEDS::Study_ptr theStudyDocument);
41
42   /*!
43   * Set/Get flag to restore or not path in paraview state file.
44   */
45   void SetRestoreParam(SALOMEDS::SComponent_ptr theComponent, bool theRestore);
46   bool GetRestoreParam(SALOMEDS::SComponent_ptr theComponent);
47
48   PARAVIS_Base_i* GET_SERVANT(CORBA::Object_ptr aObj);
49
50 };
51
52 #endif