Merge "Stop using ImageActor in PageTurnView" into devel/master
[platform/core/uifw/dali-toolkit.git] / dali-toolkit / internal / controls / buttons / check-box-button-impl.h
1 #ifndef __DALI_TOOLKIT_INTERNAL_CHECK_BOX_BUTTON_H__
2 #define __DALI_TOOLKIT_INTERNAL_CHECK_BOX_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 #include <dali/public-api/shader-effects/shader-effect.h>
24
25 // INTERNAL INCLUDES
26 #include <dali-toolkit/public-api/controls/buttons/check-box-button.h>
27 #include <dali-toolkit/devel-api/shader-effects/image-region-effect.h>
28
29 #include "button-impl.h"
30
31 namespace Dali
32 {
33
34 namespace Toolkit
35 {
36
37 namespace Internal
38 {
39
40 /**
41  * CheckBoxButton implementation class.
42  *
43  * \sa Dali::Toolkit::CheckBoxButton
44  */
45 class CheckBoxButton : public Button
46 {
47 public:
48
49   /**
50    * Create a new CheckBoxButton.
51    * @return A smart-pointer to the newly allocated CheckBoxButton.
52    */
53   static Dali::Toolkit::CheckBoxButton New();
54
55 private:
56
57   /**
58    * Construct a new CheckBoxButton.
59    */
60   CheckBoxButton();
61
62   /**
63    * A reference counted object may only be deleted by calling Unreference()
64    */
65   virtual ~CheckBoxButton();
66
67   /**
68    * Setup the ticking effect to the selected image.
69    */
70   void SetTickUVEffect();
71
72 private: // From Button
73
74
75   /**
76    * @copydoc Toolkit::Internal::Button::OnInitialize
77    */
78   virtual void OnInitialize();
79
80   /**
81    * @copydoc Toolkit::Internal::Button::OnLabelSet
82    */
83   virtual void OnLabelSet( bool noPadding );
84
85   /**
86    * @copydoc Toolkit::Internal::Button::OnDisabled
87    */
88   virtual void OnDisabled();
89
90   /**
91    * @copydoc Toolkit::Internal::Button::PrepareForTranstionIn( Actor actor )
92    */
93   virtual void PrepareForTranstionIn( Actor actor );
94
95   /**
96    * @copydoc Toolkit::Internal::Button::PrepareForTranstionOut( Actor actor )
97    */
98   virtual void PrepareForTranstionOut( Actor actor );
99
100   /**
101    * @copydoc Toolkit::Internal::Button::OnTransitionInImage( Actor actor )
102    */
103   virtual void OnTransitionIn( Actor actor );
104
105 private:
106
107   // Undefined
108   CheckBoxButton( const CheckBoxButton& );
109
110   // Undefined
111   CheckBoxButton& operator=( const CheckBoxButton& );
112
113 private:
114   Actor         mSelectedImage;
115 };
116
117 } // namespace Internal
118
119 // Helpers for public-api forwarding methods
120
121 inline Toolkit::Internal::CheckBoxButton& GetImplementation( Toolkit::CheckBoxButton& button )
122 {
123   DALI_ASSERT_ALWAYS( button );
124
125   Dali::RefObject& handle = button.GetImplementation();
126
127   return static_cast<Toolkit::Internal::CheckBoxButton&>( handle );
128 }
129
130 inline const Toolkit::Internal::CheckBoxButton& GetImplementation( const Toolkit::CheckBoxButton& button )
131 {
132   DALI_ASSERT_ALWAYS( button );
133
134   const Dali::RefObject& handle = button.GetImplementation();
135
136   return static_cast<const Toolkit::Internal::CheckBoxButton&>( handle );
137 }
138
139 } // namespace Toolkit
140
141 } // namespace Dali
142
143 #endif // __DALI_TOOLKIT_INTERNAL_CHECK_BOX_BUTTON_H__