1 // Copyright (C) 2005-2008 OPEN CASCADE
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.
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.
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
17 // See http://www.salome-platform.org/ or email : webmaster.salome@opencascade.com
19 ///////////////////////////////////////////////////////////
20 // File : SierpinskyGUI.cxx
21 // Author : Vadim SANDLER (OCN)
23 ///////////////////////////////////////////////////////////
25 #include "SierpinskyGUI.h"
27 #include <SUIT_MessageBox.h>
28 #include <SUIT_ResourceMgr.h>
29 #include <SUIT_Desktop.h>
30 #include <SalomeApp_Application.h>
31 #include <SVTK_ViewModel.h>
32 #include <SALOME_LifeCycleCORBA.hxx>
33 #include <SierpinskyGUI_RunDlg.h>
38 SierpinskyGUI::SierpinskyGUI() :
39 SalomeApp_Module("Sierpinsky")
44 * Gets an reference to the module's engine
46 SIERPINSKY_ORB::SIERPINSKY_ptr SierpinskyGUI::InitSIERPINSKYGen( SalomeApp_Application* app )
48 SIERPINSKY_ORB::SIERPINSKY_ptr clr;
50 Engines::Component_var comp = app->lcc()->FindOrLoad_Component( "FactoryServer","SIERPINSKY" );
51 clr = SIERPINSKY_ORB::SIERPINSKY::_narrow(comp);
53 catch (CORBA::Exception&){
54 MESSAGE("Caught CORBA::Exception.");
57 MESSAGE("Caught unknown exception.");
63 * Module's initialization
65 void SierpinskyGUI::initialize( CAM_Application* app )
67 SalomeApp_Module::initialize( app );
69 InitSIERPINSKYGen( dynamic_cast<SalomeApp_Application*>( app ) );
71 QWidget* aParent = app->desktop();
72 SUIT_ResourceMgr* aResourceMgr = app->resourceMgr();
75 QPixmap aPixmap = aResourceMgr->loadPixmap( "SIERPINSKY",tr( "ICON_RUN_DLG" ) );
76 createAction( 901, tr( "Run Dialog" ), QIcon(aPixmap), tr( "RUN" ), tr( "CAPTION" ), 0, aParent, false,
77 this, SLOT( OnRun() ) );
81 aMenuId = createMenu( tr( "MENU_Sierpinsky" ), -1, -1, 30 );
82 createMenu( 901, aMenuId, 10 );
85 int aToolId = createTool ( tr( "TOOL_Sierpinsky" ) );
86 createTool( 901, aToolId );
92 QString SierpinskyGUI::engineIOR() const
94 CORBA::String_var anIOR = getApp()->orb()->object_to_string( InitSIERPINSKYGen( getApp() ) );
95 return QString( anIOR.in() );
99 * Required dockable windows
101 void SierpinskyGUI::windows( QMap<int, int>& wmap ) const
103 wmap.insert( SalomeApp_Application::WT_ObjectBrowser, Qt::LeftDockWidgetArea );
107 * Required viewers list
109 void SierpinskyGUI::viewManagers( QStringList& vmlist ) const
111 vmlist.append( SVTK_Viewer::Type() );
115 * Module's activation
117 bool SierpinskyGUI::activateModule( SUIT_Study* theStudy )
119 bool bOk = SalomeApp_Module::activateModule( theStudy );
128 * Module's deactivation
130 bool SierpinskyGUI::deactivateModule( SUIT_Study* theStudy )
135 return SalomeApp_Module::deactivateModule( theStudy );
141 SierpinskyGUI::~SierpinskyGUI()
147 void SierpinskyGUI::OnRun()
149 QWidget* aParent = getApp()->desktop();
150 SierpinskyGUI_RunDlg* aDlg = new SierpinskyGUI_RunDlg( aParent, this );
155 CAM_Module* createModule()
157 return new SierpinskyGUI();