Added some LayoutEngine skeleton code
[platform/core/uifw/dali-toolkit.git] / base / dali-toolkit / internal / controls / relayout-controller.h
1 #ifndef __DALI_TOOLKIT_INTERNAL_RELAYOUT_CONTROLLER_H__
2 #define __DALI_TOOLKIT_INTERNAL_RELAYOUT_CONTROLLER_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/object/base-handle.h>
23
24 namespace Dali
25 {
26
27 namespace Toolkit
28 {
29
30 namespace Internal
31 {
32
33 class RelayoutControllerImpl;
34
35 /**
36  * RelayoutController
37  * This singleton class provides functionality to trigger relayouting of toolkit controls in the dali scene graph.
38  */
39 class RelayoutController : public Dali::BaseHandle
40 {
41 public:
42
43   /**
44    * Constructor.
45    * We should only create a unique instance.
46    */
47   RelayoutController();
48
49   /**
50    * @brief Destructor
51    *
52    * This is non-virtual since derived Handle types must not contain data or virtual methods.
53    */
54   ~RelayoutController();
55
56   /**
57    * Request to relayout.
58    */
59   static void Request();
60
61 private:
62
63   RelayoutController(Internal::RelayoutControllerImpl* impl);
64
65 };
66
67 } // namespace Internal
68
69 } // namespace Toolkit
70
71 } // namespace Dali
72
73 #endif // __DALI_TOOLKIT_INTERNAL_RELAYOUT_CONTROLLER_H__