Merge "Stop using ImageActor in PageTurnView" into devel/master
[platform/core/uifw/dali-toolkit.git] / dali-toolkit / internal / controls / buttons / radio-button-impl.h
1 #ifndef __DALI_TOOLKIT_INTERNAL_RADIO_BUTTON_H__
2 #define __DALI_TOOLKIT_INTERNAL_RADIO_BUTTON_H__
3
4 /*
5  * Copyright (c) 2014 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 // EXTERNAL INCLUDES
22 #include <dali/public-api/common/dali-vector.h>
23
24 // INTERNAL INCLUDES
25 #include <dali-toolkit/public-api/controls/buttons/radio-button.h>
26 #include <dali-toolkit/public-api/controls/table-view/table-view.h>
27 #include "button-impl.h"
28
29 namespace Dali
30 {
31 namespace Toolkit
32 {
33 namespace Internal
34 {
35
36 /**
37  * RadioButton implementation class.
38  *
39  * \sa Dali::Toolkit::RadioButton
40  */
41 class RadioButton: public Button
42 {
43 public:
44
45   /**
46    * Create a new RadioButton.
47    *
48    * @return A smart-pointer to the newly allocated RadioButton.
49    */
50   static Dali::Toolkit::RadioButton New();
51
52 private:
53
54   /**
55    * Construct a new RadioButton.
56    */
57   RadioButton();
58
59   /**
60    * A reference counted object may only be deleted by calling Unreference()
61    */
62   virtual ~RadioButton();
63
64 private: // From Button
65
66   /**
67    * @copydoc Toolkit::Internal::Button::OnInitialize
68    */
69   virtual void OnInitialize();
70
71   /**
72    * @copydoc Toolkit::Internal::Button::OnButtonUp
73    */
74   virtual void OnButtonUp();
75
76   /**
77    * @copydoc Toolkit::Internal::Button::OnSelected
78    */
79   virtual void OnSelected();
80
81   /**
82    * @copydoc Toolkit::Internal::Button::OnLabelSet
83    */
84   virtual void OnLabelSet( bool noPadding );
85
86 private:
87
88   // Undefined
89   RadioButton( const RadioButton& origin );
90
91   // Undefined
92   RadioButton& operator=( const RadioButton& origin );
93 };
94
95 } // namespace Internal
96
97 // Helpers for public-api forwarding methods
98
99 inline Toolkit::Internal::RadioButton& GetImplementation(Toolkit::RadioButton& button)
100 {
101   DALI_ASSERT_ALWAYS(button);
102
103   Dali::RefObject& handle = button.GetImplementation();
104
105   return static_cast<Toolkit::Internal::RadioButton&> (handle);
106 }
107
108 inline const Toolkit::Internal::RadioButton& GetImplementation(const Toolkit::RadioButton& button)
109 {
110   DALI_ASSERT_ALWAYS(button);
111
112   const Dali::RefObject& handle = button.GetImplementation();
113
114   return static_cast<const Toolkit::Internal::RadioButton&> (handle);
115 }
116
117 } // namespace Toolkit
118 } // namespace Dali
119
120 #endif // __DALI_TOOLKIT_INTERNAL_RADIO_BUTTON_H__