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