X-Git-Url: http://review.tizen.org/git/?p=platform%2Fcore%2Fuifw%2Fdali-toolkit.git;a=blobdiff_plain;f=automated-tests%2Fsrc%2Fdali-toolkit%2Fdali-toolkit-test-utils%2Ftoolkit-clipboard-event-notifier.h;h=282a0c05de11a401130a3415a688bf96703ca348;hp=d167dc84f08fdf4268d5d8d65a88756aef75b444;hb=HEAD;hpb=43a8ada07f5758ba624d1b536e0e40e9a212f153 diff --git a/automated-tests/src/dali-toolkit/dali-toolkit-test-utils/toolkit-clipboard-event-notifier.h b/automated-tests/src/dali-toolkit/dali-toolkit-test-utils/toolkit-clipboard-event-notifier.h deleted file mode 100644 index d167dc8..0000000 --- a/automated-tests/src/dali-toolkit/dali-toolkit-test-utils/toolkit-clipboard-event-notifier.h +++ /dev/null @@ -1,62 +0,0 @@ -#ifndef __DALI_TOOLKIT_CLIPBOARD_EVENT_NOTIFIER_H__ -#define __DALI_TOOLKIT_CLIPBOARD_EVENT_NOTIFIER_H__ - -/* - * Copyright (c) 2014 Samsung Electronics Co., Ltd. - * - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at - * - * http://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. - * - */ - -// EXTERNAL INCLUDES -#include - -// PUBLIC INCLUDES -#define __DALI_CLIPBOARD_EVENT_NOTIFIER_H__ -#include -#include - - -namespace Dali -{ - -namespace Internal -{ -namespace Adaptor -{ -class ClipboardEventNotifier; -} -} - -class ClipboardEventNotifier : public BaseHandle -{ -public: - typedef Signal< void ( ClipboardEventNotifier& ) > ClipboardEventSignalType; - - ClipboardEventNotifier(); - static ClipboardEventNotifier Get(); - ~ClipboardEventNotifier(); - - const std::string& GetContent() const; - void SetContent( const std::string& content ); - void ClearContent(); - - void EmitContentSelectedSignal(); - ClipboardEventSignalType& ContentSelectedSignal(); - - ClipboardEventNotifier( Internal::Adaptor::ClipboardEventNotifier* notifier ); -}; - -} // namespace Dali - -#endif // __DALI_TOOLKIT_TOOLKIT_CLIPBOARD_EVENT_NOTIFIER_H__