X-Git-Url: http://git.salome-platform.org/gitweb/?a=blobdiff_plain;f=src%2FHOMARDGUI%2FHOMARDGUI_Utils.cxx;h=ec600c8ffe451de8985a8ed21e2b9d4c450630b1;hb=refs%2Ftags%2FV9_13_0b1;hp=47f4fa6b499d2531c83997b3d846869775556673;hpb=408c0191e3bbfd149adbf04e2e7bce039703a144;p=modules%2Fhomard.git diff --git a/src/HOMARDGUI/HOMARDGUI_Utils.cxx b/src/HOMARDGUI/HOMARDGUI_Utils.cxx index 47f4fa6b..ec600c8f 100644 --- a/src/HOMARDGUI/HOMARDGUI_Utils.cxx +++ b/src/HOMARDGUI/HOMARDGUI_Utils.cxx @@ -1,9 +1,9 @@ -// Copyright (C) 2011-2013 CEA/DEN, EDF R&D +// Copyright (C) 2011-2024 CEA, EDF // // This library is free software; you can redistribute it and/or // modify it under the terms of the GNU Lesser General Public // License as published by the Free Software Foundation; either -// version 2.1 of the License. +// version 2.1 of the License, or (at your option) any later version. // // This library is distributed in the hope that it will be useful, // but WITHOUT ANY WARRANTY; without even the implied warranty of @@ -32,7 +32,6 @@ #include "SalomeApp_Study.h" #include "SALOME_ListIO.hxx" -#include "SALOME_ListIteratorOfListIO.hxx" #include "SALOMEconfig.h" #include "utilities.h" @@ -49,15 +48,6 @@ SALOME_ListIO HOMARD_UTILS::mySelected; -//================================================================ -// Function : GetCStudy -// Returne un pointeur sur l'etude courante -//================================================================ - _PTR(Study) HOMARD_UTILS::GetCStudy(const SalomeApp_Study* theStudy) -{ - return theStudy->studyDS(); -} - //================================================================ // Function : GetActiveStudy // Returne un pointeur sur l'etude active @@ -72,17 +62,15 @@ SUIT_Study* HOMARD_UTILS::GetActiveStudy() } //================================================================ -// Function : GetActiveStudyDocument +// Function : getStudy // Returne un pointeur sur l'etude active //================================================================ -_PTR(Study) HOMARD_UTILS::GetActiveStudyDocument() +_PTR(Study) HOMARD_UTILS::getStudy() { - SalomeApp_Study* aStudy = dynamic_cast(GetActiveStudy()); - if (aStudy){ - return aStudy->studyDS(); - } - else - return _PTR(Study)(); + static _PTR(Study) _study; + if(!_study) + _study = SalomeApp_Application::getStudy(); + return _study; } //================================================================ @@ -117,8 +105,8 @@ const SALOME_ListIO& HOMARD_UTILS::selectedIO() if( aSelectionMgr ) { aSelectionMgr->selectedObjects( mySelected ); - for (SALOME_ListIteratorOfListIO it (mySelected); it.More(); it.Next()) - SCRUTE(it.Value()->getEntry()); + for (SALOME_ListIteratorOfListIO it (mySelected); it.More(); it.Next()) + SCRUTE(it.Value()->getEntry()); }; return mySelected; } @@ -135,7 +123,7 @@ int HOMARD_UTILS::IObjectCount() { aSelectionMgr->selectedObjects( mySelected ); SCRUTE(mySelected.Extent()); - return mySelected.Extent(); + return mySelected.Extent(); } return 0; } @@ -161,7 +149,7 @@ Handle(SALOME_InteractiveObject) HOMARD_UTILS::lastIObject() } //================================================================ -// Retourne vrai si l objet est du type voulu +// Retourne vrai si l'objet est du type voulu // . Dans le cas d'un cas, d'une hypothese, d'une zone, on se contente // d'une comparaison simple entre le type stocke et TypeObject. // . Pour l'iteration, le type stocke en attribut est sous la forme @@ -188,6 +176,7 @@ bool HOMARD_UTILS::isObject(_PTR(SObject) MonObj, QString TypeObject, int option if ( option == 0 ) { int position = Type.lastIndexOf(TypeObject); +// MESSAGE("position = "<( app->module( "Homard" ) ); // Repertoire de reference de la documentation QString rep = aHomardGUI ? app->moduleName(aHomardGUI->moduleName()) : QString("") ; - // WARNING/ATTENTION : si on savait recuperer la langue depuis les preferences, on ne fera pas le passage par argument + // WARNING/ATTENTION : si on savait recuperer la langue depuis les preferences, on ne ferait pas le passage par argument // SUIT_ResourceMgr* resMgr = getApp()->resourceMgr(); // SUIT_ResourceMgr* resMgr = myModule->getApp()->resourceMgr(); // QString langue = resMgr->stringValue("language", "language", "en");