Changed indicator bg color.
[platform/framework/native/uifw.git] / src / ui / FUi_ClipboardItemImpl.h
1 //
2 // Open Service Platform
3 // Copyright (c) 2012-2013 Samsung Electronics Co., Ltd.
4 //
5 // Licensed under the Apache License, Version 2.0 (the License);
6 // you may not use this file except in compliance with the License.
7 // You may obtain a copy of the License at
8 //
9 //     http://www.apache.org/licenses/LICENSE-2.0/
10 //
11 // Unless required by applicable law or agreed to in writing, software
12 // distributed under the License is distributed on an "AS IS" BASIS,
13 // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
14 // See the License for the specific language governing permissions and
15 // limitations under the License.
16 //
17
18 /**
19  * @file                FUi_ClipboardItemImpl.h
20  * @brief               This is the header file for the _ClipboardItemImpl class.
21  *
22  * This header file contains the declarations of the %_ClipboardItemImpl class.
23  */
24
25 #ifndef _FUI_INTERNAL_CLIPBOARD_ITEM_IMPL_H_
26 #define _FUI_INTERNAL_CLIPBOARD_ITEM_IMPL_H_
27
28 #include <FBaseObject.h>
29 #include <FUiClipboardTypes.h>
30
31 namespace Tizen { namespace Ui
32 {
33 class ClipboardItem;
34 class _ClipboardItem;
35
36 class _ClipboardItemImpl
37         : public Tizen::Base::Object
38 {
39 public:
40         static _ClipboardItemImpl* CreateInstanceN(ClipboardItem* pPublic, ClipboardDataType type, const Tizen::Base::Object& data);
41
42         virtual ~_ClipboardItemImpl(void);
43
44         ClipboardDataType GetDataType(void) const;
45         Tizen::Base::Object* GetData(void) const;
46
47         static _ClipboardItemImpl* GetInstance(ClipboardItem& clipboardItem);
48         static const _ClipboardItemImpl* GetInstance(const ClipboardItem& clipboardItem);
49
50         const ClipboardItem& GetPublic(void) const;
51         ClipboardItem& GetPublic(void);
52         const _ClipboardItem& GetCore(void) const;
53         _ClipboardItem& GetCore(void);
54
55 private:
56         _ClipboardItemImpl(ClipboardItem* pPublic, _ClipboardItem* pCore);
57
58         _ClipboardItemImpl(const _ClipboardItemImpl& rhs);
59         _ClipboardItemImpl& operator =(const _ClipboardItemImpl& rhs);
60
61 private:
62         ClipboardItem* __pPublic;
63         _ClipboardItem* __pCore;
64 }; // _ClipboardItemImpl
65
66 }} // Tizen::Ui
67
68 #endif  // _FUI_INTERNAL_CLIPBOARD_ITEM_IMPL_H_