Salome HOME
Copyright update 2022
[modules/gui.git] / src / SUIT / SUIT_PopupClient.cxx
1 // Copyright (C) 2007-2022  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 "SUIT_PopupClient.h"
24
25 /*! constructor. initialize mySignal.*/
26 SUIT_PopupClient::SUIT_PopupClient()
27 : mySignal( 0 )
28 {
29 }
30
31 /*! destructor. delete mySignal*/
32 SUIT_PopupClient::~SUIT_PopupClient()
33 {
34   delete mySignal;
35 }
36
37 /*!
38   Connect popup request.
39 */
40 bool SUIT_PopupClient::connectPopupRequest( QObject* reciever, const char* slot )
41 {
42   if ( !reciever || !slot )
43     return false;
44   if ( !mySignal )
45     mySignal = new Signal();
46   return QObject::connect( mySignal, SIGNAL( contextMenuRequest( SUIT_PopupClient*, QContextMenuEvent* ) ),
47                            reciever, slot );
48 }
49
50 /*!
51   Disconnect popup request.
52 */
53 bool SUIT_PopupClient::disconnectPopupRequest( QObject* reciever, const char* slot )
54 {
55   if ( !reciever || !slot || !mySignal )
56     return false;
57   return QObject::disconnect( mySignal, SIGNAL( contextMenuRequest( SUIT_PopupClient*, QContextMenuEvent* ) ),
58                               reciever, slot );
59 }
60
61 /*!
62   Send signal on context menu request.
63 */
64 void SUIT_PopupClient::contextMenuRequest( QContextMenuEvent* e )
65 {
66   if ( mySignal )
67     mySignal->sendSignal( this, e );
68 }
69
70 /*!
71  *  \class SUIT_PopupClient::Signal
72  * Descr: invoke signal which is connected to reciever in SUIT_PopupClient
73  */
74
75 /*! constructor*/
76 SUIT_PopupClient::Signal::Signal()
77 : QObject( 0 )
78 {
79 }
80
81 /*! destructor. do nothing*/
82 SUIT_PopupClient::Signal::~Signal()
83 {}
84
85 /*! Send signal to \a client on context menu request \a e.
86  */
87 void SUIT_PopupClient::Signal::sendSignal( SUIT_PopupClient* client, QContextMenuEvent* e )
88 {
89   emit contextMenuRequest( client, e );
90 }