Remove unnecessarily exported signals and action names
[platform/core/uifw/dali-toolkit.git] / dali-toolkit / internal / filters / emboss-filter.h
1 #ifndef __DALI_TOOLKIT_INTERNAL_EMBOSS_FILTER_H__
2 #define __DALI_TOOLKIT_INTERNAL_EMBOSS_FILTER_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/camera-actor.h>
23 #include <dali/public-api/actors/image-actor.h>
24 #include <dali/public-api/render-tasks/render-task.h>
25
26 // INTERNAL INCLUDES
27 #include "image-filter.h"
28
29 namespace Dali
30 {
31
32 namespace Toolkit
33 {
34
35 namespace Internal
36 {
37
38 /**
39  * An embossing image filter, implements Dali::Toolkit::Internal::ImageFilter
40  */
41 class EmbossFilter : public ImageFilter
42 {
43 public:
44   /**
45    * Construct an empty filter
46    */
47   EmbossFilter();
48
49   /**
50    * Destructor
51    */
52   virtual ~EmbossFilter();
53
54 public: // From ImageFilter
55   /// @copydoc Dali::Toolkit::Internal::ImageFilter::Enable
56   virtual void Enable();
57
58   /// @copydoc Dali::Toolkit::Internal::ImageFilter::Disable
59   virtual void Disable();
60
61   /// @copydoc Dali::Toolkit::Internal::ImageFilter::Refresh
62   virtual void Refresh();
63
64   /// @copydoc Dali::Toolkit::Internal::ImageFilter::SetSize
65   virtual void SetSize( const Vector2& size );
66
67 private:
68   /**
69    * Setup position and parameters for camera
70    */
71   void SetupCamera();
72
73   /**
74    * Setup render tasks for blur
75    */
76   void CreateRenderTasks();
77
78 private:
79   EmbossFilter( const EmbossFilter& );
80   EmbossFilter& operator=( const EmbossFilter& );
81
82 private: // Attributes
83
84   RenderTask       mRenderTaskForEmboss1;
85   RenderTask       mRenderTaskForEmboss2;
86   RenderTask       mRenderTaskForOutput;
87   FrameBufferImage mImageForEmboss1;
88   FrameBufferImage mImageForEmboss2;
89   CameraActor      mCameraActor;
90   ImageActor       mActorForInput1;
91   ImageActor       mActorForInput2;
92   ImageActor       mActorForEmboss1;
93   ImageActor       mActorForEmboss2;
94   Actor            mActorForComposite;
95 }; // class EmbossFilter
96
97 } // namespace Internal
98
99 } // namespace Toolkit
100
101 } // namespace Dali
102
103 #endif // __DALI_TOOLKIT_INTERNAL_EMBOSS_FILTER_H__
104