Salome HOME
copyrights in HYDRO files are updated
[modules/hydro.git] / src / HYDROGUI / HYDROGUI_CopyPastePositionOp.cxx
1 // Copyright (C) 2007-2015  CEA/DEN, EDF R&D, OPEN CASCADE
2 //
3 // Copyright (C) 2003-2007  OPEN CASCADE, EADS/CCR, LIP6, CEA/DEN,
4 // CEDRAT, EDF R&D, LEG, PRINCIPIA R&D, BUREAU VERITAS
5 //
6 // This library is free software; you can redistribute it and/or
7 // modify it under the terms of the GNU Lesser General Public
8 // License as published by the Free Software Foundation; either
9 // version 2.1 of the License, or (at your option) any later version.
10 //
11 // This library is distributed in the hope that it will be useful,
12 // but WITHOUT ANY WARRANTY; without even the implied warranty of
13 // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
14 // Lesser General Public License for more details.
15 //
16 // You should have received a copy of the GNU Lesser General Public
17 // License along with this library; if not, write to the Free Software
18 // Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307 USA
19 //
20 // See http://www.salome-platform.org/ or email : webmaster.salome@opencascade.com
21 //
22
23 #include "HYDROGUI_CopyPastePositionOp.h"
24
25 #include "HYDROGUI_Module.h"
26 #include "HYDROGUI_Displayer.h"
27 #include "HYDROGUI_Tool.h"
28
29 #include <SUIT_ViewManager.h>
30 #include <LightApp_Application.h>
31
32 #include <QClipboard>
33 #include <QApplication>
34
35 HYDROGUI_CopyPastePositionOp::HYDROGUI_CopyPastePositionOp( HYDROGUI_Module* theModule,
36                                                             const bool theIsPaste )
37 : HYDROGUI_Operation( theModule ),
38   myIsPaste( theIsPaste )
39 {
40   setName( tr( "COPY_PASTE_VIEW_POSITION" ) );
41 }
42
43 HYDROGUI_CopyPastePositionOp::~HYDROGUI_CopyPastePositionOp()
44 {
45 }
46
47 void HYDROGUI_CopyPastePositionOp::startOperation()
48 {
49   HYDROGUI_Operation::startOperation();
50
51   if( !myIsPaste )
52   {
53     QString aResult;
54     HYDROGUI_Module* aModule = module();
55     HYDROGUI_Displayer* aDisplayer = aModule->getDisplayer();
56     if ( aDisplayer ) {
57       SUIT_ViewManager* aViewMgr = aModule->getApp()->activeViewManager();
58       SUIT_ViewWindow* aViewWindow = aViewMgr ? aViewMgr->getActiveView() : 0;
59       double aX, aY, aZ;
60       if ( aDisplayer->GetCursorViewCoordinates( aViewWindow, aX, aY, aZ ) ) {
61         QString aXStr = HYDROGUI_Tool::GetCoordinateString( aX, false );
62         QString anYStr = HYDROGUI_Tool::GetCoordinateString( aY, false );
63         aResult = tr( "%1,%2" ).arg( aXStr ).arg( anYStr );
64       }
65     }
66     if ( !aResult.isEmpty() ) {
67       QClipboard* aClBoard = QApplication::clipboard();
68       aClBoard->clear();
69       QApplication::clipboard()->setText( aResult );
70     }
71   }
72   commit();
73 }