- "Edit imported bathymetry" operation is added.
- Created/edited bathymetry is shown in VTK viewer on apply.
#include <LightApp_Application.h>
#include <LightApp_UpdateFlags.h>
+#include <SUIT_ViewManager.h>
+#include <SVTK_ViewModel.h>
#include <QFileInfo>
-HYDROGUI_ImportBathymetryOp::HYDROGUI_ImportBathymetryOp( HYDROGUI_Module* theModule )
-: HYDROGUI_Operation( theModule )
+HYDROGUI_ImportBathymetryOp::HYDROGUI_ImportBathymetryOp( HYDROGUI_Module* theModule,
+ const bool theIsEdit )
+: HYDROGUI_Operation( theModule ),
+ myIsEdit( theIsEdit )
{
- setName( tr( "IMPORT_BATHYMETRY" ) );
+ setName( theIsEdit ? tr( "EDIT_IMPORTED_BATHYMETRY" ) : tr( "IMPORT_BATHYMETRY" ) );
}
HYDROGUI_ImportBathymetryOp::~HYDROGUI_ImportBathymetryOp()
return;
aPanel->reset();
+
+ if( myIsEdit )
+ {
+ myEditedObject = Handle(HYDROData_Bathymetry)::DownCast( HYDROGUI_Tool::GetSelectedObject( module() ) );
+ if( !myEditedObject.IsNull() )
+ {
+ QString aName = myEditedObject->GetName();
+ QString aFileName = myEditedObject->GetFilePath();
+ aPanel->setObjectName( aName );
+ aPanel->setFileName( aFileName );
+ }
+ }
}
void HYDROGUI_ImportBathymetryOp::abortOperation()
// check that there are no other objects with the same name in the document
Handle(HYDROData_Entity) anObject = HYDROGUI_Tool::FindObjectByName( module(), anObjectName );
- if ( !anObject.IsNull() )
+ if ( ( !myIsEdit ) && ( !anObject.IsNull() ) )
{
theErrorMsg = tr( "OBJECT_EXISTS_IN_DOCUMENT" ).arg( anObjectName );
return false;
}
- Handle(HYDROData_Bathymetry) aBathymetryObj =
- Handle(HYDROData_Bathymetry)::DownCast( doc()->CreateObject( KIND_BATHYMETRY ) );
+ Handle(HYDROData_Bathymetry) aBathymetryObj;
+ if ( myIsEdit )
+ {
+ aBathymetryObj = myEditedObject;
+ }
+ else
+ {
+ aBathymetryObj =
+ Handle(HYDROData_Bathymetry)::DownCast( doc()->CreateObject( KIND_BATHYMETRY ) );
+ }
if ( aBathymetryObj.IsNull() )
return false;
aBathymetryObj->SetName( anObjectName );
- theUpdateFlags = UF_Model;
+ // Activate VTK viewer and show the bathymetry
+ SUIT_ViewManager* aVTKMgr = 0;
+ SUIT_ViewManager* aViewMgr = module()->getApp()->activeViewManager();
+ // Try to get a VTK viewer as an active or existing one
+ if ( aViewMgr )
+ {
+ if ( aViewMgr->getType() == SVTK_Viewer::Type() )
+ {
+ aVTKMgr = aViewMgr;
+ }
+ else
+ {
+ aVTKMgr = module()->getApp()->viewManager( SVTK_Viewer::Type() );
+ }
+ }
+ // If there is no VTK viewer yet then create a new one
+ if ( !aVTKMgr )
+ {
+ aVTKMgr = module()->getApp()->createViewManager( SVTK_Viewer::Type() );
+ }
+ // Set the bathymetry visible in the VTK viewer
+ if ( aVTKMgr )
+ {
+ module()->setObjectVisible( (size_t)aVTKMgr->getViewModel(), aBathymetryObj, true );
+ }
+
+ theUpdateFlags = UF_Model | UF_VTKViewer | UF_VTK_Forced;
return true;
}
#include "HYDROGUI_Operation.h"
+#include <HYDROData_Bathymetry.h>
+
class HYDROGUI_ImportBathymetryOp : public HYDROGUI_Operation
{
Q_OBJECT
public:
- HYDROGUI_ImportBathymetryOp( HYDROGUI_Module* theModule );
+ HYDROGUI_ImportBathymetryOp( HYDROGUI_Module* theModule, const bool theIsEdit );
virtual ~HYDROGUI_ImportBathymetryOp();
protected:
void onFileSelected();
private:
+ bool myIsEdit;
+ Handle(HYDROData_Bathymetry) myEditedObject;
};
#endif
theMenu->addAction( action( SplitImageId ) );
theMenu->addSeparator();
}
+ else if( anIsBathymetry )
+ {
+ theMenu->addAction( action( EditImportedBathymetryId ) );
+ theMenu->addSeparator();
+ }
else if( anIsPolyline )
{
theMenu->addAction( action( EditPolylineId ) );
createAction( SelectedGeoreferencementId, "GEOREFERENCEMENT" );
createAction( ImportBathymetryId, "IMPORT_BATHYMETRY", "", Qt::CTRL + Qt::Key_B );
+ createAction( EditImportedBathymetryId, "EDIT_IMPORTED_BATHYMETRY" );
createAction( CreateImmersibleZoneId, "CREATE_IMMERSIBLE_ZONE" );
createAction( EditImmersibleZoneId, "EDIT_IMMERSIBLE_ZONE" );
anOp = new HYDROGUI_GeoreferencementOp( aModule, HYDROGUI_GeoreferencementOp::Selected ) ;
break;
case ImportBathymetryId:
- anOp = new HYDROGUI_ImportBathymetryOp( aModule );
+ case EditImportedBathymetryId:
+ anOp = new HYDROGUI_ImportBathymetryOp( aModule, theId == EditImportedBathymetryId );
break;
case CreateImmersibleZoneId:
case EditImmersibleZoneId:
<context>
<name>HYDROGUI_ImportBathymetryOp</name>
+ <message>
+ <source>EDIT_IMPORTED_BATHYMETRY</source>
+ <translation>Edit imported bathymetry</translation>
+ </message>
<message>
<source>IMPORT_BATHYMETRY</source>
<translation>Import bathymetry</translation>
<source>DSK_IMPORT_BATHYMETRY</source>
<translation>Import bathymetry</translation>
</message>
+ <message>
+ <source>DSK_EDIT_IMPORTED_BATHYMETRY</source>
+ <translation>Edit imported bathymetry</translation>
+ </message>
<message>
<source>DSK_IMPORT_IMAGE</source>
<translation>Import image</translation>
<source>MEN_IMPORT_BATHYMETRY</source>
<translation>Import bathymetry</translation>
</message>
+ <message>
+ <source>MEN_EDIT_IMPORTED_BATHYMETRY</source>
+ <translation>Edit imported bathymetry</translation>
+ </message>
<message>
<source>MEN_IMPORT_IMAGE</source>
<translation>Import image</translation>
<source>STB_IMPORT_BATHYMETRY</source>
<translation>Import bathymetry</translation>
</message>
+ <message>
+ <source>STB_EDIT_IMPORTED_BATHYMETRY</source>
+ <translation>Edit imported bathymetry</translation>
+ </message>
<message>
<source>STB_IMPORT_IMAGE</source>
<translation>Import image</translation>