1 #ifndef __DALI_INTERNAL_CLIPBOARD_H__
2 #define __DALI_INTERNAL_CLIPBOARD_H__
5 * Copyright (c) 2014 Samsung Electronics Co., Ltd.
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
11 * http://www.apache.org/licenses/LICENSE-2.0
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.
22 #include <clipboard.h>
23 #include <dali/public-api/object/base-object.h>
25 #include <Ecore_Wayland.h>
39 * Implementation of the Clip Board
42 class Clipboard : public Dali::BaseObject
47 * @copydoc Dali::ClipboardEventNotifier::Get()
49 static Dali::Clipboard Get();
54 * @copydoc Dali::Clipboard::SetItem()
56 bool SetItem(const std::string &itemData);
59 * @copydoc Dali::Clipboard::GetItem()
61 std::string GetItem( unsigned int index );
64 * @copydoc Dali::Clipboard::NumberOfClipboardItems()
66 unsigned int NumberOfItems();
69 * @copydoc Dali::Clipboard::ShowClipboard()
74 * @copydoc Dali::Clipboard::HideClipboard()
80 Clipboard( const Clipboard& );
81 Clipboard& operator=( Clipboard& );
86 } // namespace Adaptor
88 } // namespace Internal
90 inline static Internal::Adaptor::Clipboard& GetImplementation(Dali::Clipboard& clipboard)
92 DALI_ASSERT_ALWAYS( clipboard && "Clipboard handle is empty" );
93 BaseObject& handle = clipboard.GetBaseObject();
94 return static_cast<Internal::Adaptor::Clipboard&>(handle);
97 inline static const Internal::Adaptor::Clipboard& GetImplementation(const Dali::Clipboard& clipboard)
99 DALI_ASSERT_ALWAYS( clipboard && "Clipboard handle is empty" );
100 const BaseObject& handle = clipboard.GetBaseObject();
101 return static_cast<const Internal::Adaptor::Clipboard&>(handle);
106 #endif // __DALI_INTERNAL_CLIPBOARD_H__