Merge "Button Refactoring phase 1" into tizen
[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/text-view/text-view.h>
27 #include <dali-toolkit/public-api/controls/buttons/radio-button.h>
28 #include "button-impl.h"
29
30 namespace Dali
31 {
32 namespace Toolkit
33 {
34 namespace Internal
35 {
36
37 /**
38  * RadioButton implementation class.
39  *
40  * \sa Dali::Toolkit::RadioButton
41  */
42 class RadioButton: public Button
43 {
44  public:
45
46   /**
47    * Create a new RadioButton.
48    *
49    * @return A smart-pointer to the newly allocated PushButton.
50    */
51   static Dali::Toolkit::RadioButton New();
52
53   /**
54    * Construct a new PushButton.
55    */
56   RadioButton();
57
58   /**
59    * Construct a new PushButton with label.
60    */
61   RadioButton( const std::string& label );
62
63   /**
64    * Construct a new PushButton with label.
65    */
66   RadioButton( Actor label );
67
68   /**
69    * A reference counted object may only be deleted by calling Unreference()
70    */
71   virtual ~RadioButton();
72
73   /**
74    * @copydoc Dali::Toolkit::Button::SetLabel( Actor label )
75    */
76   virtual void SetLabel( Actor label );   // TODO: After refactoring painter, this will be removed
77
78   /**
79    * @copydoc Dali::Toolkit::Button::SetSelected( bool selected )
80    */
81   virtual void SetSelected( bool selected );
82
83   /**
84    * @copydoc Dali::Toolkit::Control::OnRelayout()
85    */
86   virtual void OnRelayout( const Vector2& size, ActorSizeContainer& container );
87
88  protected: // From Control
89
90   /**
91    * Sets the relative position of image and label.
92    */
93   virtual void OnInitialize();
94
95  protected: // From Button
96   /**
97    * Change button state when the button is pressed.
98    */
99   virtual void OnButtonUp();
100
101  private:
102
103   // Undefined
104   RadioButton( const RadioButton& origin );
105
106   // Undefined
107   RadioButton& operator=( const RadioButton& origin );
108
109   Image mUnselectedImage;  ///< Stores the unselected image
110   Image mSelectedImage;    ///< Stores the selected image
111   ImageActor mRadioIcon;   ///< Stores the current image
112 };
113
114 } // namespace Internal
115
116 // Helpers for public-api forwarding methods
117
118 inline Toolkit::Internal::RadioButton& GetImplementation(Toolkit::RadioButton& button)
119 {
120   DALI_ASSERT_ALWAYS(button);
121
122   Dali::RefObject& handle = button.GetImplementation();
123
124   return static_cast<Toolkit::Internal::RadioButton&> (handle);
125 }
126
127 inline const Toolkit::Internal::RadioButton& GetImplementation(const Toolkit::RadioButton& button)
128 {
129   DALI_ASSERT_ALWAYS(button);
130
131   const Dali::RefObject& handle = button.GetImplementation();
132
133   return static_cast<const Toolkit::Internal::RadioButton&> (handle);
134 }
135
136 } // namespace Toolkit
137 } // namespace Dali
138
139 #endif // __DALI_TOOLKIT_INTERNAL_RADIO_BUTTON_H__