X-Git-Url: http://git.salome-platform.org/gitweb/?p=modules%2Fsmesh.git;a=blobdiff_plain;f=src%2FSMESHGUI%2FSMESHGUI_Utils.h;h=9515099b78c632ef3b491934448e159e9a6df28c;hp=51d763492dcdc4f2af56e675e314eaee4f9dd37b;hb=HEAD;hpb=d64c9cac70573c5789a61c314f5ac5ffc3428f4a diff --git a/src/SMESHGUI/SMESHGUI_Utils.h b/src/SMESHGUI/SMESHGUI_Utils.h index 51d763492..40844ae33 100644 --- a/src/SMESHGUI/SMESHGUI_Utils.h +++ b/src/SMESHGUI/SMESHGUI_Utils.h @@ -1,4 +1,4 @@ -// Copyright (C) 2007-2015 CEA/DEN, EDF R&D, OPEN CASCADE +// Copyright (C) 2007-2024 CEA, EDF, OPEN CASCADE // // Copyright (C) 2003-2007 OPEN CASCADE, EADS/CCR, LIP6, CEA/DEN, // CEDRAT, EDF R&D, LEG, PRINCIPIA R&D, BUREAU VERITAS @@ -80,10 +80,6 @@ SMESHGUI_EXPORT SMESHGUI_EXPORT SUIT_ResourceMgr* GetResourceMgr( const SalomeApp_Module* ); - -SMESHGUI_EXPORT - _PTR(Study) - GetCStudy( const SalomeApp_Study* ); SMESHGUI_EXPORT CORBA::Object_var DataOwnerToObject( const LightApp_DataOwnerPtr& ); @@ -104,22 +100,18 @@ SMESHGUI_EXPORT SUIT_ViewWindow* GetActiveWindow(); SMESHGUI_EXPORT - _PTR(Study) GetActiveStudyDocument(); + _PTR(Study) getStudy(); SMESHGUI_EXPORT _PTR(SObject) FindSObject( CORBA::Object_ptr ); SMESHGUI_EXPORT - void SetName( _PTR(SObject), const QString& ); - -SMESHGUI_EXPORT - void SetValue( _PTR(SObject), const QString& ); - void setFileType( _PTR(SObject), const QString& ); - void setFileName( _PTR(SObject), const QString& ); + void SetName( _PTR(SObject), const QString& name ); SMESHGUI_EXPORT - CORBA::Object_var SObjectToObject( _PTR(SObject), - _PTR(Study) ); + void SetValue ( _PTR(SObject), const QString& value ); + void setFileType( _PTR(SObject), const QString& fileType ); + void setFileName( _PTR(SObject), const QString& fileName ); SMESHGUI_EXPORT CORBA::Object_var SObjectToObject( _PTR(SObject) ); @@ -149,7 +141,7 @@ SMESHGUI_EXPORT } SMESHGUI_EXPORT - CORBA::Object_var IORToObject( const QString& ); + CORBA::Object_var IORToObject( const QString& ior ); template typename TInterface::_var_type IORToInterface( const QString& theIOR ) @@ -161,16 +153,28 @@ SMESHGUI_EXPORT } SMESHGUI_EXPORT - int GetNameOfSelectedIObjects( LightApp_SelectionMgr*, QString& ); + CORBA::Object_var EntryToObject( const QString& entry ); + + template typename TInterface::_var_type + EntryToInterface( const QString& theEntry ) + { + CORBA::Object_var anObj = EntryToObject( theEntry ); + if ( !CORBA::is_nil( anObj ) ) + return TInterface::_narrow( anObj ); + return TInterface::_nil(); + } + +SMESHGUI_EXPORT + int GetNameOfSelectedIObjects( LightApp_SelectionMgr*, QString& name ); SMESHGUI_EXPORT - _PTR(SObject) GetMeshOrSubmesh( _PTR(SObject) ); + QString GetName( const Handle(SALOME_InteractiveObject)& theIO ); SMESHGUI_EXPORT - void ModifiedMesh( _PTR(SObject), bool, bool = false ); + _PTR(SObject) GetMeshOrSubmesh( _PTR(SObject) ); SMESHGUI_EXPORT - void ShowHelpFile( const QString& ); + void ShowHelpFile( const QString& helpFileName); /*! * \brief Return the normal to a face @@ -185,7 +189,7 @@ SMESHGUI_EXPORT typedef SALOME::GenericObj_wrap IDSource_wrap; /*! - * \brief Class usefull to convert a string returned from a CORBA call + * \brief Class useful to convert a string returned from a CORBA call * to other string types w/o memory leak. * * Usage (of instantiations): QString s = toQStr( objVar->GetName() ); @@ -195,7 +199,7 @@ SMESHGUI_EXPORT class toStrT : public _STRING { CORBA::String_var myStr; public: - toStrT( char* s ): myStr(s), _STRING( s ) + toStrT( char* s ): _STRING( s ), myStr(s) {} operator const char*() const { return myStr.in(); }