Salome HOME
Ask to save the jobs before exit.
[modules/jobmanager.git] / src / salomegui / BL_SalomeGui.cxx
1 // Copyright (C) 2009-2016  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, or (at your option) any later version.
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
20 #include "BL_SalomeGui.hxx"
21 #include "JOBMANAGER_version.h"
22
23 #include <SUIT_Desktop.h>
24 #include <SUIT_ViewWindow.h>
25
26 BL::SalomeGui::SalomeGui() : MainWindows_SALOME("JobManager")
27 {
28   DEBTRACE("Creating BL::SalomeGui");
29   _gengui = NULL;
30 }
31
32 BL::SalomeGui::~SalomeGui()
33 {
34   DEBTRACE("Destroying BL::SalomeGui");
35   if (getApp())
36     disconnect(getApp(), SIGNAL(studyClosed()), this, SLOT(studyClosed()));
37   if (_gengui)
38     delete _gengui;
39 }
40
41 void 
42 BL::SalomeGui::initialize(CAM_Application* app)
43 {
44    DEBTRACE("Entering in initialize");
45    SalomeApp_Module::initialize(app); // MANDATORY -> Otherwise SISEGV...
46    connect( getApp(), SIGNAL(studyClosed()), this, SLOT(studyClosed()));
47    if ( app && app->desktop() )
48      connect( app->desktop(), SIGNAL( windowActivated( SUIT_ViewWindow* ) ),
49               this, SLOT(onWindowActivated( SUIT_ViewWindow* )) );
50 }
51
52 void
53 BL::SalomeGui::studyClosed()
54 {
55   if (_gengui)
56   {
57     _gengui->saveIfNeeded();
58     _gengui->deleteDockWidget();
59     delete _gengui;
60     _gengui = NULL;
61     _viewWin = NULL;
62   }
63 }
64
65 bool 
66 BL::SalomeGui::activateModule(SUIT_Study* theStudy)
67 {
68   DEBTRACE("Entering in BL::SalomeGui::activateModule");
69
70   if (!_gengui)
71   {
72    BL::MainWindows_SALOME::initialize(getApp());
73    BL::MainWindows_SALOME::createView();
74    _gengui = new BL::GenericGui(this);
75
76    _gengui->createDockWidgets();
77    _gengui->createCentralWidget();
78    _gengui->createActions();
79    _gengui->createMenus();
80    _gengui->updateButtonsStates();
81   }
82   else
83    {
84     // Test main view
85     if (!BL::MainWindows_SALOME::restoreViewFocus())
86      {
87       // We need to recreate QT objects and the view
88       BL::MainWindows_SALOME::createView();
89       _gengui->createCentralWidget();
90      }
91    }
92
93   setMenuShown(true);
94   _gengui->showDockWidgets(true);
95   bool bOk = SalomeApp_Module::activateModule(theStudy);
96   return bOk;
97 }
98
99 void 
100 BL::SalomeGui::windows(QMap<int, int>& theMap) const
101 {
102   DEBTRACE("Entering in BL::SalomeGui::windows");
103   theMap.clear();
104   theMap.insert(SalomeApp_Application::WT_ObjectBrowser, Qt::LeftDockWidgetArea);
105 }
106
107 bool 
108 BL::SalomeGui::deactivateModule(SUIT_Study* theStudy)
109 {
110   DEBTRACE("Entering in BL::SalomeGui::deactivateModule");
111   setMenuShown(false);
112   if (_gengui)
113     _gengui->showDockWidgets(false);
114   bool bOk = SalomeApp_Module::deactivateModule(theStudy);
115   return bOk;
116 }
117
118 void 
119 BL::SalomeGui::onWindowActivated( SUIT_ViewWindow* svw)
120 {
121   DEBTRACE("BL::SalomeGui::onWindowActivated");
122   DEBTRACE("activeModule()->moduleName() " << (getApp()->activeModule() ? getApp()->activeModule()->moduleName().toStdString() : "") );
123   
124   if (_viewWin) // Be sure to have a _viewWindow
125     if (svw->getId() == _viewWin->getId()) // Same Id ?
126       if (!getApp()->activeModule() || getApp()->activeModule()->moduleName() != "JobManager") // JobManager already activated ?
127         if ( !getApp()->activateModule("JobManager") ) return;
128 }
129
130 // --- Export the module
131 extern "C"
132 {
133   JOBMANAGER_EXPORT CAM_Module* createModule()
134   {
135     return new BL::SalomeGui();
136   }
137
138   char* getModuleVersion()
139   {
140       return (char*)JOBMANAGER_VERSION_STR;
141   }
142 }