Merge "Fix SVACE issue" into devel/master
[platform/core/uifw/dali-toolkit.git] / dali-toolkit / devel-api / layouting / measured-size.h
1 #ifndef DALI_TOOLKIT_LAYOUTING_MEASURED_SIZE_H
2 #define DALI_TOOLKIT_LAYOUTING_MEASURED_SIZE_H
3
4 /*
5  * Copyright (c) 2018 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 #include <dali/public-api/common/dali-common.h>
21 #include <dali-toolkit/devel-api/layouting/layout-length.h>
22
23 namespace Dali
24 {
25 namespace Toolkit
26 {
27
28 /**
29  * Class that encodes a measurement and a measure state, which is set if the measured size is too small.
30  */
31 class DALI_IMPORT_API MeasuredSize
32 {
33 public:
34
35   enum State
36   {
37     MEASURED_SIZE_OK, ///< The measured size is good
38     MEASURED_SIZE_TOO_SMALL ///< The measured size is too small
39   };
40
41   MeasuredSize()
42   : mMeasuredSize( 0u ),
43     mState ( MeasuredSize::State::MEASURED_SIZE_OK )
44   {
45   }
46
47   MeasuredSize( LayoutLength measuredSize )
48   : mMeasuredSize( measuredSize ),
49     mState ( MeasuredSize::State::MEASURED_SIZE_OK )
50   {
51   }
52
53   MeasuredSize( LayoutLength measuredSize, MeasuredSize::State state )
54   : mMeasuredSize( measuredSize ),
55     mState( state )
56   {
57   }
58
59   ~MeasuredSize() = default;
60
61   MeasuredSize& operator=( const MeasuredSize& rhs )
62   {
63     this->mMeasuredSize = rhs.mMeasuredSize;
64     this->mState = rhs.mState;
65     return *this;
66   }
67
68   MeasuredSize& operator=( LayoutLength::IntType rhs )
69   {
70     this->mMeasuredSize = rhs;
71     this->mState = State::MEASURED_SIZE_OK;
72     return *this;
73   }
74
75   inline bool operator==( MeasuredSize value )
76   {
77     return mMeasuredSize == value.mMeasuredSize;
78   }
79
80   inline bool operator!=( MeasuredSize value )
81   {
82     return mMeasuredSize != value.mMeasuredSize;
83   }
84
85   inline operator LayoutLength::IntType()
86   {
87     return mMeasuredSize.mValue;
88   }
89
90   inline void SetState( MeasuredSize::State state )
91   {
92     mState = state;
93   }
94
95   inline MeasuredSize::State GetState()
96   {
97     return mState;
98   }
99
100   inline void SetSize( LayoutLength size )
101   {
102     mMeasuredSize = size;
103   }
104   inline LayoutLength GetSize()
105   {
106     return mMeasuredSize;
107   }
108
109 private:
110   LayoutLength mMeasuredSize; ///< The measured size
111   State mState; ///< The measured state
112 };
113
114 } //namespace Toolkit
115 } //namespace Dali
116
117
118 #endif // DALI_TOOLKIT_LAYOUTING_MEASURED_SIZE_H