Merge remote-tracking branch 'origin/tizen' into new_text
[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/actors/image-actor.h>
23 #include <dali/public-api/common/dali-vector.h>
24
25 // INTERNAL INCLUDES
26 #include <dali-toolkit/public-api/controls/buttons/radio-button.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 PushButton.
49    */
50   static Dali::Toolkit::RadioButton New();
51
52   /**
53    * Construct a new PushButton.
54    */
55   RadioButton();
56
57   /**
58    * Construct a new PushButton with label.
59    */
60   RadioButton( const std::string& label );
61
62   /**
63    * Construct a new PushButton with label.
64    */
65   RadioButton( Actor label );
66
67   /**
68    * A reference counted object may only be deleted by calling Unreference()
69    */
70   virtual ~RadioButton();
71
72   /**
73    * @copydoc Dali::Toolkit::Button::SetLabel( Actor label )
74    */
75   virtual void SetLabel( Actor label );   // TODO: After refactoring painter, this will be removed
76
77   /**
78    * @copydoc Dali::Toolkit::Button::SetSelected( bool selected )
79    */
80   virtual void SetSelected( bool selected );
81
82   /**
83    * @copydoc Dali::Toolkit::Control::OnRelayout()
84    */
85   virtual void OnRelayout( const Vector2& size, ActorSizeContainer& container );
86
87  protected: // From Control
88
89   /**
90    * Sets the relative position of image and label.
91    */
92   virtual void OnInitialize();
93
94  protected: // From Button
95   /**
96    * Change button state when the button is pressed.
97    */
98   virtual void OnButtonUp();
99
100  private:
101
102   // Undefined
103   RadioButton( const RadioButton& origin );
104
105   // Undefined
106   RadioButton& operator=( const RadioButton& origin );
107
108   Image mUnselectedImage;  ///< Stores the unselected image
109   Image mSelectedImage;    ///< Stores the selected image
110   ImageActor mRadioIcon;   ///< Stores the current image
111 };
112
113 } // namespace Internal
114
115 // Helpers for public-api forwarding methods
116
117 inline Toolkit::Internal::RadioButton& GetImplementation(Toolkit::RadioButton& button)
118 {
119   DALI_ASSERT_ALWAYS(button);
120
121   Dali::RefObject& handle = button.GetImplementation();
122
123   return static_cast<Toolkit::Internal::RadioButton&> (handle);
124 }
125
126 inline const Toolkit::Internal::RadioButton& GetImplementation(const Toolkit::RadioButton& button)
127 {
128   DALI_ASSERT_ALWAYS(button);
129
130   const Dali::RefObject& handle = button.GetImplementation();
131
132   return static_cast<const Toolkit::Internal::RadioButton&> (handle);
133 }
134
135 } // namespace Toolkit
136 } // namespace Dali
137
138 #endif // __DALI_TOOLKIT_INTERNAL_RADIO_BUTTON_H__