}
return isOk;
}
+
+bool HYDROGUI_DataModel::rename( Handle(HYDROData_Entity) theEntity, const QString& theName )
+{
+ if ( theName.isEmpty() )
+ return false;
+
+ try
+ {
+ getDocument()->StartOperation();
+ theEntity->SetName( theName );
+ getDocument()->CommitOperation( HYDROGUI_Tool::ToExtString( tr("RENAME_TO").arg( theName ) ) );
+ module()->application()->activeStudy()->Modified();
+ }
+ catch ( Standard_Failure )
+ {
+ getDocument()->AbortOperation();
+ return false;
+ }
+ return true;
+}
+
QStringList GetGeomObjectsToImport();
+ /**
+ * Returns true if the object with the given entry can be renamed.
+ * @param theEntry the object entry
+ */
+ virtual bool renameAllowed( const QString& theEntry ) const;
+ /**
+ * Returns true if the object with the given entry is renamed.
+ * @param theEntry the object entry
+ * @param theName the new name
+ */
+ virtual bool renameObject( const QString& theEntry, const QString& theName );
+
protected:
CAM_DataModel* createDataModel();
#include "HYDROGUI_ImportProfilesOp.h"
#include "HYDROGUI_GeoreferencementOp.h"
#include "HYDROGUI_SetColorOp.h"
+#include "HYDROGUI_Tool.h"
#include <HYDROData_Document.h>
#include <HYDROData_Obstacle.h>
#include <SUIT_Desktop.h>
#include <SUIT_ResourceMgr.h>
#include <SUIT_Session.h>
+#include <SUIT_MessageBox.h>
#include <QAction>
#include <QApplication>
{
return myGeomObjectsToImport;
}
+
+/**
+ * Returns true if the object with the given entry can be renamed.
+ * @param theEntry the object entry
+ */
+bool HYDROGUI_Module::renameAllowed( const QString& theEntry ) const
+{
+ // Allow to rename all HYDRO objects
+ Handle(HYDROData_Entity) anEntity = getDataModel()->objectByEntry( theEntry );
+ return !anEntity.IsNull();
+}
+/**
+ * Returns true if the object with the given entry is renamed.
+ * @param theEntry the object entry
+ * @param theName the new name
+ */
+bool HYDROGUI_Module::renameObject( const QString& theEntry, const QString& theName )
+{
+ Handle(HYDROData_Entity) anEntity = getDataModel()->objectByEntry( theEntry );
+ bool aRes = !anEntity.IsNull();
+ if ( aRes )
+ {
+ HYDROGUI_DataModel* aModel = getDataModel();
+ if( aModel )
+ {
+ if( anEntity->GetName() != theName )
+ {
+ // check that there are no other objects with the same name in the document
+ Handle(HYDROData_Entity) anObject = HYDROGUI_Tool::FindObjectByName( this, theName );
+ aRes = anObject.IsNull();
+ if ( aRes )
+ {
+ aRes = aModel->rename( anEntity, theName );
+ }
+ else
+ {
+ // Inform the user that the name is already used
+ QString aTitle = QObject::tr( "INSUFFICIENT_INPUT_DATA" );
+ QString aMessage = QObject::tr( "OBJECT_EXISTS_IN_DOCUMENT" ).arg( theName );
+ SUIT_MessageBox::critical( getApp()->desktop(), aTitle, aMessage );
+ }
+ }
+ }
+ }
+ return aRes;
+}