Merge "add base type of enum to reduce class size." into devel/master
[platform/core/uifw/dali-core.git] / dali / public-api / signals / connection-tracker.h
1 #ifndef DALI_CONNECTION_TRACKER_H
2 #define DALI_CONNECTION_TRACKER_H
3
4 /*
5  * Copyright (c) 2020 Samsung Electronics Co., Ltd.
6  *
7  * Licensed under the Apache License, Version 2.0 (the "License");
8  * you may not use this file except in compliance with the License.
9  * You may obtain a copy of the License at
10  *
11  * http://www.apache.org/licenses/LICENSE-2.0
12  *
13  * Unless required by applicable law or agreed to in writing, software
14  * distributed under the License is distributed on an "AS IS" BASIS,
15  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
16  * See the License for the specific language governing permissions and
17  * limitations under the License.
18  *
19  */
20
21 // INTERNAL INCLUDES
22 #include <dali/public-api/common/dali-common.h>
23 #include <dali/public-api/common/dali-vector.h>
24 #include <dali/public-api/signals/connection-tracker-interface.h>
25 #include <dali/public-api/signals/signal-slot-connections.h>
26
27 namespace Dali
28 {
29 /**
30  * @addtogroup dali_core_signals
31  * @{
32  */
33
34 class CallbackBase;
35 class SlotObserver;
36 class SlotConnection;
37
38 /**
39  * @brief Connection tracker concrete implementation.
40  * @SINCE_1_0.0
41  */
42 class DALI_CORE_API ConnectionTracker : public ConnectionTrackerInterface
43 {
44 public:
45   /**
46    * @brief Constructor.
47    * @SINCE_1_0.0
48    */
49   ConnectionTracker();
50
51   /**
52    * @brief Virtual destructor.
53    * @SINCE_1_0.0
54    */
55   ~ConnectionTracker() override;
56
57   /**
58    * @brief Disconnects all signals from this object.
59    * @SINCE_1_0.0
60    */
61   void DisconnectAll();
62
63   /**
64    * @copydoc ConnectionTrackerInterface::SignalConnected
65    */
66   void SignalConnected(SlotObserver* slotObserver, CallbackBase* callback) override;
67
68   /**
69    * @copydoc ConnectionTrackerInterface::SignalDisconnected
70    */
71   void SignalDisconnected(SlotObserver* slotObserver, CallbackBase* callback) override;
72
73   /**
74    * @brief Returns the connection count.
75    * @SINCE_1_0.0
76    * @return The connection count
77    */
78   std::size_t GetConnectionCount() const;
79
80 private:
81   ConnectionTracker(const ConnectionTracker&) = delete;            ///< Deleted copy constructor. @SINCE_1_0.0
82   ConnectionTracker(ConnectionTracker&&)      = delete;            ///< Deleted move constructor. @SINCE_1_9.25
83   ConnectionTracker& operator=(const ConnectionTracker&) = delete; ///< Deleted copy assignment operator. @SINCE_1_0.0
84   ConnectionTracker& operator=(ConnectionTracker&&) = delete;      ///< Deleted move assignment operator. @SINCE_1_9.25
85
86 private:
87   Dali::Vector<SlotConnection> mConnections; ///< Vector of connection
88 };
89
90 /**
91  * @}
92  */
93 } // namespace Dali
94
95 #endif // DALI_CONNECTION_TRACKER_H