CanvasRenderer:: Add Picture class
[platform/core/uifw/dali-adaptor.git] / dali / internal / canvas-renderer / generic / picture-impl-generic.h
1 #ifndef DALI_INTERNAL_GENERIC_PICTURE_IMPL_GENERIC_H
2 #define DALI_INTERNAL_GENERIC_PICTURE_IMPL_GENERIC_H
3
4 /*
5  * Copyright (c) 2021 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/object/base-object.h>
23
24 // INTERNAL INCLUDES
25 #include <dali/devel-api/adaptor-framework/canvas-renderer-picture.h>
26 #include <dali/internal/canvas-renderer/common/picture-impl.h>
27
28 namespace Dali
29 {
30 namespace Internal
31 {
32 namespace Adaptor
33 {
34 /**
35  * Dali internal Picture.
36  */
37 class PictureGeneric : public Dali::Internal::Adaptor::Picture
38 {
39 public:
40   /**
41    * @brief Creates a Picture object.
42    * @return A pointer to a newly allocated picture
43    */
44   static PictureGeneric* New();
45
46   /**
47    * @copydoc Dali::CanvasRenderer::Picture::Load()
48    */
49   bool Load(const std::string& url) override;
50
51   /**
52    * @copydoc Dali::CanvasRenderer::Picture::SetSize()
53    */
54   bool SetSize(Vector2 size) override;
55
56   /**
57    * @copydoc Dali::CanvasRenderer::Picture::GetSize()
58    */
59   Vector2 GetSize() const override;
60
61 private:
62   PictureGeneric(const PictureGeneric&) = delete;
63   PictureGeneric& operator=(PictureGeneric&) = delete;
64   PictureGeneric(PictureGeneric&&)           = delete;
65   PictureGeneric& operator=(PictureGeneric&&) = delete;
66
67   /**
68    * @brief Constructor
69    */
70   PictureGeneric();
71
72   /**
73    * @brief Destructor.
74    */
75   ~PictureGeneric() override;
76 };
77
78 } // namespace Adaptor
79
80 } // namespace Internal
81
82 } // namespace Dali
83
84 #endif // DALI_INTERNAL_GENERIC_PICTURE_IMPL_GENERIC_H