X-Git-Url: http://git.salome-platform.org/gitweb/?a=blobdiff_plain;f=src%2FHYDROGUI%2FHYDROGUI_Operations.cxx;h=08aa0d8fb8f6664d577d65c784dac5517cbf6bf6;hb=de7cf9bb0a7a41d6487013c87f4a54d0664cd303;hp=0a23fe33902d704005b60e5f649ceb6efbb7654e;hpb=c66fbd26a75a044039dc2b2f8dea2249582deabc;p=modules%2Fhydro.git diff --git a/src/HYDROGUI/HYDROGUI_Operations.cxx b/src/HYDROGUI/HYDROGUI_Operations.cxx index 0a23fe33..08aa0d8f 100644 --- a/src/HYDROGUI/HYDROGUI_Operations.cxx +++ b/src/HYDROGUI/HYDROGUI_Operations.cxx @@ -1,23 +1,66 @@ +// Copyright (C) 2007-2013 CEA/DEN, EDF R&D, OPEN CASCADE +// +// Copyright (C) 2003-2007 OPEN CASCADE, EADS/CCR, LIP6, CEA/DEN, +// CEDRAT, EDF R&D, LEG, PRINCIPIA R&D, BUREAU VERITAS +// +// 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. +// +// This library is distributed in the hope that it will be useful, +// but WITHOUT ANY WARRANTY; without even the implied warranty of +// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU +// Lesser General Public License for more details. +// +// You should have received a copy of the GNU Lesser General Public +// License along with this library; if not, write to the Free Software +// Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA +// +// See http://www.salome-platform.org/ or email : webmaster.salome@opencascade.com +// -#include -#include -#include -#include +#include "HYDROGUI_Operations.h" + +#include "HYDROGUI_CopyPasteOp.h" +#include "HYDROGUI_CalculationOp.h" +#include "HYDROGUI_DataModel.h" +#include "HYDROGUI_DeleteOp.h" +#include "HYDROGUI_ExportImageOp.h" +#include "HYDROGUI_ImportImageOp.h" +#include "HYDROGUI_ImportBathymetryOp.h" +#include "HYDROGUI_ImmersibleZoneOp.h" +#include "HYDROGUI_Module.h" +#include "HYDROGUI_ObserveImageOp.h" +#include "HYDROGUI_PolylineOp.h" +#include "HYDROGUI_RemoveImageRefsOp.h" +#include "HYDROGUI_ShowHideOp.h" +#include "HYDROData_SplitToZonesTool.h" +#include "HYDROGUI_TwoImagesOp.h" +#include "HYDROGUI_UpdateFlags.h" +#include "HYDROGUI_UpdateImageOp.h" +#include "HYDROGUI_VisualStateOp.h" #include -#include + +#include + #include +#include +#include + #include +#include -QAction* HYDROGUI_Module::CreateAction( const int theId, const QString& theSuffix, const QString& theImg, +QAction* HYDROGUI_Module::createAction( const int theId, const QString& theSuffix, const QString& theImg, const int theKey, const bool isToggle, const QString& theSlot ) { QString aSlot = theSlot; if( aSlot.isEmpty() ) aSlot = SLOT( onOperation() ); - SUIT_ResourceMgr* aMgr = application()->resourceMgr(); + SUIT_ResourceMgr* aResMgr = SUIT_Session::session()->resourceMgr(); std::string anImg = theImg.toStdString(); - QPixmap aPixmap = theImg.isEmpty() ? QPixmap() : aMgr->loadPixmap( "HYDROGUI", tr( anImg.c_str() ) ); + QPixmap aPixmap = theImg.isEmpty() ? QPixmap() : aResMgr->loadPixmap( "HYDRO", tr( anImg.c_str() ) ); std::string aMenu = ( "MEN_" + theSuffix ).toStdString(); std::string aDesktop = ( "DSK_" + theSuffix ).toStdString(); std::string aToolbar = ( "STB_" + theSuffix ).toStdString(); @@ -27,25 +70,127 @@ QAction* HYDROGUI_Module::CreateAction( const int theId, const QString& theSuffi theKey, application()->desktop(), isToggle, this, aSlotStr.c_str() ); } -void HYDROGUI_Module::CreateActions() +void HYDROGUI_Module::createActions() { - CreateAction( ImportImageId, "IMPORT_IMAGE", "", Qt::CTRL + Qt::Key_I ); + createAction( SaveVisualStateId, "SAVE_VISUAL_STATE" ); + createAction( LoadVisualStateId, "LOAD_VISUAL_STATE" ); + + createAction( CopyId, "COPY", "", Qt::CTRL + Qt::Key_C ); + createAction( PasteId, "PASTE", "", Qt::CTRL + Qt::Key_V ); + + createAction( ImportImageId, "IMPORT_IMAGE", "", Qt::CTRL + Qt::Key_I ); + createAction( EditImportedImageId, "EDIT_IMPORTED_IMAGE" ); + createAction( ObserveImageId, "OBSERVE_IMAGE" ); + createAction( ExportImageId, "EXPORT_IMAGE" ); + createAction( UpdateImageId, "UPDATE_IMAGE" ); + createAction( RemoveImageRefsId, "REMOVE_IMAGE_REFERENCE" ); + + createAction( CreatePolylineId, "CREATE_POLYLINE" ); + createAction( EditPolylineId, "EDIT_POLYLINE" ); + + createAction( ImportBathymetryId, "IMPORT_BATHYMETRY", "", Qt::CTRL + Qt::Key_B ); + + createAction( CreateImmersibleZoneId, "CREATE_IMMERSIBLE_ZONE" ); + createAction( EditImmersibleZoneId, "EDIT_IMMERSIBLE_ZONE" ); + + createAction( CreateCalculationId, "CREATE_CALCULATION" ); + createAction( EditCalculationId, "EDIT_CALCULATION" ); + + createAction( FuseImagesId, "FUSE_IMAGES" ); + createAction( EditFusedImageId, "EDIT_FUSED_IMAGE" ); + + createAction( CutImagesId, "CUT_IMAGES" ); + createAction( EditCutImageId, "EDIT_CUT_IMAGE" ); + + createAction( SplitImageId, "SPLIT_IMAGE" ); + createAction( EditSplittedImageId, "EDIT_SPLITTED_IMAGE" ); + + createAction( DeleteId, "DELETE", "", Qt::Key_Delete ); + + createAction( ShowId, "SHOW" ); + createAction( ShowOnlyId, "SHOW_ONLY" ); + createAction( ShowAllId, "SHOW_ALL" ); + createAction( HideId, "HIDE" ); + createAction( HideAllId, "HIDE_ALL" ); } -void HYDROGUI_Module::CreateMenus() +void HYDROGUI_Module::createMenus() { - int aFileId = createMenu( tr( "MEN_DESK_FILE" ), -1, -1, 0 ); + int aFileMenu = createMenu( tr( "MEN_DESK_FILE" ), -1, -1, 0 ); + int aCustomPos = 5; // to insert custom actions after "Save as" and before "Preferences" + createMenu( SaveVisualStateId, aFileMenu, aCustomPos ); + createMenu( separator(), aFileMenu, -1, aCustomPos ); + + int anEditMenu = createMenu( tr( "MEN_DESK_EDIT" ), -1, -1, 5 ); + createMenu( UndoId, anEditMenu ); + createMenu( RedoId, anEditMenu ); + createMenu( separator(), anEditMenu ); + createMenu( CopyId, anEditMenu ); + createMenu( PasteId, anEditMenu ); - createMenu( separator(), aFileId, -1, 1, -1 ); - createMenu( ImportImageId, aFileId, -1, -1 ); + int aHydroMenu = 6; // Edit menu id == 5, View menu id == 10 + int aHydroId = createMenu( tr( "MEN_DESK_HYDRO" ), -1, -1, aHydroMenu ); + createMenu( ImportImageId, aHydroId, -1, -1 ); + createMenu( ImportBathymetryId, aHydroId, -1, -1 ); + createMenu( CreatePolylineId, aHydroId, -1, -1 ); + createMenu( CreateImmersibleZoneId, aHydroId, -1, -1 ); + createMenu( CreateCalculationId, aHydroId, -1, -1 ); + createMenu( separator(), aHydroId ); + createMenu( FuseImagesId, aHydroId, -1, -1 ); + createMenu( CutImagesId, aHydroId, -1, -1 ); + createMenu( SplitImageId, aHydroId, -1, -1 ); +} + +void HYDROGUI_Module::createPopups() +{ } -void HYDROGUI_Module::CreatePopups() +void HYDROGUI_Module::createToolbars() { + int aToolBar = createTool( tr( "MEN_DESK_HYDRO" ) ); + createTool( UndoId, aToolBar ); + createTool( RedoId, aToolBar ); +} + +void HYDROGUI_Module::createUndoRedoActions() +{ + SUIT_ResourceMgr* aResMgr = SUIT_Session::session()->resourceMgr(); + + QtxListAction* anEditUndo = new QtxListAction( tr( "MEN_UNDO" ), + aResMgr->loadPixmap( "HYDRO", tr( "UNDO_ICO" ) ), tr( "DSK_UNDO" ), + Qt::CTRL + Qt::Key_Z, application()->desktop() ); + + QtxListAction* anEditRedo = new QtxListAction( tr( "MEN_REDO" ), + aResMgr->loadPixmap( "HYDRO", tr( "REDO_ICO" ) ), tr( "DSK_REDO" ), + Qt::CTRL + Qt::Key_Y, application()->desktop() ); + + registerAction( UndoId, anEditUndo ); + registerAction( RedoId, anEditRedo ); + + anEditUndo->setComment( tr( "STB_UNDO" ) ); + anEditRedo->setComment( tr( "STB_REDO" ) ); + + connect( anEditUndo, SIGNAL( triggered( int ) ), this, SLOT( onUndo( int ) ) ); + connect( anEditRedo, SIGNAL( triggered( int ) ), this, SLOT( onRedo( int ) ) ); } -void HYDROGUI_Module::CreateToolbars() +void HYDROGUI_Module::updateUndoRedoControls() { + HYDROGUI_DataModel* aModel = getDataModel(); + + QtxListAction* aUndoAction = (QtxListAction*)action( UndoId ); + QtxListAction* aRedoAction = (QtxListAction*)action( RedoId ); + + bool aCanUndo = aModel->canUndo(); + bool aCanRedo = aModel->canRedo(); + + if( aCanUndo ) + aUndoAction->addNames( aModel->undoNames() ); + aUndoAction->setEnabled( aCanUndo ); + + if( aCanRedo ) + aRedoAction->addNames( aModel->redoNames() ); + aRedoAction->setEnabled( aCanRedo ); } void HYDROGUI_Module::onOperation() @@ -56,20 +201,116 @@ void HYDROGUI_Module::onOperation() startOperation( anId ); } +bool HYDROGUI_Module::onUndo( int theNumActions ) +{ + QApplication::setOverrideCursor( Qt::WaitCursor ); + bool anIsOk = true; + HYDROGUI_DataModel* aModel = getDataModel(); + if( aModel ) + { + while( theNumActions > 0 ) + { + if( !aModel->undo() ) + { + anIsOk = false; + break; + } + theNumActions--; + } + update( UF_All ); + } + QApplication::restoreOverrideCursor(); + return anIsOk; +} + +bool HYDROGUI_Module::onRedo( int theNumActions ) +{ + QApplication::setOverrideCursor( Qt::WaitCursor ); + bool anIsOk = true; + HYDROGUI_DataModel* aModel = getDataModel(); + if( aModel ) + { + while( theNumActions > 0 ) + { + if( !aModel->redo() ) + { + anIsOk = false; + break; + } + theNumActions--; + } + update( UF_All ); + } + QApplication::restoreOverrideCursor(); + return anIsOk; +} + LightApp_Operation* HYDROGUI_Module::createOperation( const int theId ) const { LightApp_Operation* anOp = 0; HYDROGUI_Module* aModule = const_cast( this ); switch( theId ) { + case SaveVisualStateId: + case LoadVisualStateId: + anOp = new HYDROGUI_VisualStateOp( aModule, theId == LoadVisualStateId ); + break; + case CopyId: + case PasteId: + anOp = new HYDROGUI_CopyPasteOp( aModule, theId == PasteId ); + break; case ImportImageId: - anOp = new HYDROGUI_ImportImageOp( aModule ); + case EditImportedImageId: + anOp = new HYDROGUI_ImportImageOp( aModule, theId == EditImportedImageId ); + break; + case ObserveImageId: + anOp = new HYDROGUI_ObserveImageOp( aModule ); + break; + case ExportImageId: + anOp = new HYDROGUI_ExportImageOp( aModule ); + break; + case UpdateImageId: + anOp = new HYDROGUI_UpdateImageOp( aModule ); + break; + case RemoveImageRefsId: + anOp = new HYDROGUI_RemoveImageRefsOp( aModule ); + break; + case CreatePolylineId: + case EditPolylineId: + anOp = new HYDROGUI_PolylineOp( aModule, theId == EditPolylineId ); + break; + case ImportBathymetryId: + anOp = new HYDROGUI_ImportBathymetryOp( aModule ); + break; + case CreateImmersibleZoneId: + case EditImmersibleZoneId: + anOp = new HYDROGUI_ImmersibleZoneOp( aModule, theId == EditImmersibleZoneId ); + break; + case CreateCalculationId: + case EditCalculationId: + anOp = new HYDROGUI_CalculationOp( aModule, theId == EditCalculationId ); + break; + case FuseImagesId: + case EditFusedImageId: + anOp = new HYDROGUI_TwoImagesOp( aModule, HYDROGUI_TwoImagesOp::Fuse, theId == EditFusedImageId ); + break; + case CutImagesId: + case EditCutImageId: + anOp = new HYDROGUI_TwoImagesOp( aModule, HYDROGUI_TwoImagesOp::Cut, theId == EditCutImageId ); + break; + case SplitImageId: + case EditSplittedImageId: + anOp = new HYDROGUI_TwoImagesOp( aModule, HYDROGUI_TwoImagesOp::Split, theId == EditSplittedImageId ); break; - case FuseId: - anOp = new HYDROGUI_TwoImagesOp( aModule, tr( "FUSE_OP" ) ); + case DeleteId: + anOp = new HYDROGUI_DeleteOp( aModule ); break; - case CutId: - anOp = new HYDROGUI_TwoImagesOp( aModule, tr( "CUT_OP" ) ); + case ShowId: + case ShowOnlyId: + case ShowAllId: + case HideId: + case HideAllId: + anOp = new HYDROGUI_ShowHideOp( aModule, theId ); break; }