Salome HOME
Copyright update 2020
[tools/yacsgen.git] / Examples / cppgui1 / cppcomposGUI.cxx
1 // Copyright (C) 2009-2020  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 "cppcomposGUI.h"
21 #include <SUIT_MessageBox.h>
22 #include <SUIT_ResourceMgr.h>
23 #include <SUIT_Desktop.h>
24 #include <SUIT_Study.h>
25 #include <SalomeApp_Application.h>
26 #include <SALOME_LifeCycleCORBA.hxx>
27 #include <SALOME_KernelServices.hxx>
28
29 #include <SALOMEconfig.h>
30 #include CORBA_CLIENT_HEADER(cppcompos)
31 #include CORBA_CLIENT_HEADER(SALOMEDS)
32 #include CORBA_CLIENT_HEADER(SALOMEDS_Attributes)
33
34 // QT Includes
35 #include <QInputDialog>
36 #include <QIcon>
37
38 // Export the module
39 extern "C" {
40   CAM_Module* createModule()
41   {
42     return new cppcomposGUI();
43   }
44 }
45
46 // Constructor
47 cppcomposGUI::cppcomposGUI() :
48   SalomeApp_Module( "cppcompos" ) // default name
49 {
50 }
51
52 static cppcompos_ORB::cppcompos_var engine;
53
54 // Module's initialization
55 void cppcomposGUI::initialize( CAM_Application* app )
56 {
57
58   SalomeApp_Module::initialize( app );
59
60   Engines::EngineComponent_var comp = dynamic_cast<SalomeApp_Application*>(app)->lcc()->FindOrLoad_Component( "FactoryServer","cppcompos" );
61   engine = cppcompos_ORB::cppcompos::_narrow(comp);
62
63   QWidget* aParent = application()->desktop();
64   SUIT_ResourceMgr* aResourceMgr = app->resourceMgr();
65
66   // create actions
67   QPixmap aPixmap = aResourceMgr->loadPixmap( "cppcompos","exec.png" );
68   createAction( 901, "Banner", QIcon( aPixmap ), "Banner", "Banner", 0, aParent, false, this, SLOT( OnGetBanner() ) );
69   createAction( 902, "Designer", QIcon( aPixmap ), "Designer", "Designer", 0, aParent, false, this, SLOT( OnDesigner() ) );
70
71   // create menus
72   int aMenuId;
73   aMenuId = createMenu( "cppcompos", -1, -1, 30 );
74   createMenu( 901, aMenuId, 10 );
75
76   // create toolbars
77   int aToolId = createTool ( "cppcompos" );
78   createTool( 901, aToolId );
79   createTool( 902, aToolId );
80 }
81
82 // Get compatible dockable windows.
83 void cppcomposGUI::windows( QMap<int, int>& theMap ) const
84 {
85   theMap.clear();
86   theMap.insert( SalomeApp_Application::WT_ObjectBrowser, Qt::LeftDockWidgetArea );
87   theMap.insert( SalomeApp_Application::WT_PyConsole,     Qt::BottomDockWidgetArea );
88 }
89
90 // Module's engine IOR
91 QString cppcomposGUI::engineIOR() const
92 {
93   return "bidon";
94 }
95
96 // Module's activation
97 bool cppcomposGUI::activateModule( SUIT_Study* theStudy )
98 {
99   bool bOk = SalomeApp_Module::activateModule( theStudy );
100
101   setMenuShown( true );
102   setToolShown( true );
103
104   SALOMEDS::Study_var aDSStudy = KERNEL::getStudyServant();
105
106   SALOMEDS::SComponent_var aFather = aDSStudy->FindComponent("cppcompos");
107   if (aFather->_is_nil())
108     {
109       SALOMEDS::StudyBuilder_var aStudyBuilder = aDSStudy->NewBuilder();
110       aFather = aStudyBuilder->NewComponent("cppcompos");
111       SALOMEDS::GenericAttribute_var anAttr = aStudyBuilder->FindOrCreateAttribute(aFather, "AttributeName");
112       SALOMEDS::AttributeName_var aName = SALOMEDS::AttributeName::_narrow(anAttr);
113       aName->SetValue("cppcompos");
114       aName->UnRegister();
115       aStudyBuilder->DefineComponentInstance(aFather, engine);
116     }
117   CORBA::Boolean valid;
118   engine->DumpPython(1,0,valid);
119
120   return bOk;
121 }
122
123 // Module's deactivation
124 bool cppcomposGUI::deactivateModule( SUIT_Study* theStudy )
125 {
126   setMenuShown( false );
127   setToolShown( false );
128
129   return SalomeApp_Module::deactivateModule( theStudy );
130 }
131
132 // Action slot
133 void cppcomposGUI::OnGetBanner()
134 {
135   // Dialog to get the Name
136   bool ok = false;
137   QString myName = QInputDialog::getText( getApp()->desktop(), "label", "name", QLineEdit::Normal, QString::null, &ok );
138
139   if ( ok && !myName.isEmpty()) 
140   {
141     ::CORBA::Double c;
142     engine->s1(1.,2.,c);
143     std::cerr << c << std::endl;
144     QString banner = "Hello " + myName;
145     SUIT_MessageBox::information( getApp()->desktop(), "info", banner, "OK" );
146   }
147 }
148
149 // Action slot
150 void cppcomposGUI::OnDesigner()
151 {
152   QWidget* wid= new MyDemo(getApp()->desktop());
153   wid->show();
154 }
155
156 MyDemo::MyDemo(QWidget *parent)
157         :QDialog(parent)
158 {
159   ui.setupUi(this);
160 }