0027398: Integrate Qt Browser Widget to Open CASCADE Technology
[occt.git] / tools / TInspector / TInspector_Communicator.cxx
1 // Created on: 2017-06-16
2 // Created by: Natalia ERMOLAEVA
3 // Copyright (c) 2017 OPEN CASCADE SAS
4 //
5 // This file is part of Open CASCADE Technology software library.
6 //
7 // This library is free software; you can redistribute it and/or modify it under
8 // the terms of the GNU Lesser General Public License version 2.1 as published
9 // by the Free Software Foundation, with special exception defined in the file
10 // OCCT_LGPL_EXCEPTION.txt. Consult the file LICENSE_LGPL_21.txt included in OCCT
11 // distribution for complete text of the license and disclaimer of any warranty.
12 //
13 // Alternatively, this file may be used under the terms of Open CASCADE
14 // commercial license or contractual agreement. 
15
16 #include <TInspector_Communicator.hxx>
17
18 #include <OSD_Environment.hxx>
19 #include <TCollection_AsciiString.hxx>
20 #include <TInspector_Window.hxx>
21
22 #include <QApplication>
23 #include <QDir>
24 #include <QMainWindow>
25 #include <QWidget>
26
27 // =======================================================================
28 // function : Constructor
29 // purpose :
30 // =======================================================================
31 TInspector_Communicator::TInspector_Communicator()
32 {
33   if (!qApp)
34   {
35     static int argc = 1;
36     static char* argv[] = { (char*)"", 0 };
37 #if QT_VERSION > 0x050000
38   OSD_Environment anEnvironment ("QTDIR");
39   TCollection_AsciiString aPlugindsDirName = anEnvironment.Value();
40   aPlugindsDirName += "/plugins";
41   QApplication::addLibraryPath (aPlugindsDirName.ToCString());
42 #endif
43     new QApplication (argc, argv);
44   }
45   myWindow = new TInspector_Window();
46   QObject::connect (qApp, SIGNAL (lastWindowClosed()), myWindow, SLOT (OnLastApplicationWindowClosed()));
47 }
48
49 // =======================================================================
50 // function : SetVisible
51 // purpose :
52 // =======================================================================
53 void TInspector_Communicator::SetVisible (const bool theVisible)
54 {
55   myWindow->GetMainWindow()->setVisible (theVisible);
56 #ifndef _WIN32
57   // window is not visualized on X11 patform under DRAW tool without the next row
58   QApplication::processEvents();
59 #endif
60 }