Tizen 2.1 base
[framework/osp/uifw.git] / src / ui / inc / FUiCtrl_GalleryCoreEventListener.h
1 //
2 // Open Service Platform
3 // Copyright (c) 2012-2013 Samsung Electronics Co., Ltd.
4 //
5 // Licensed under the Flora License, Version 1.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://floralicense.org/license/
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 #ifndef _FUI_CTRL_INTERNAL_GALLERY_CORE_EVENT_LISTENER_H_
18 #define _FUI_CTRL_INTERNAL_GALLERY_CORE_EVENT_LISTENER_H_
19
20 #include "FUiCtrl_IGalleryCoreEventListener.h"
21
22 namespace Tizen { namespace Ui { namespace Controls {
23
24 class IGalleryItemProvider;
25 class _GalleryImplEvent;
26 class _GalleryItem;
27
28 class _GalleryCoreEventListener
29         : public        _IGalleryCoreEventListener
30         , virtual public Tizen::Base::Runtime::IEventListener
31 {
32 public:
33         _GalleryCoreEventListener(_GalleryImplEvent& implEvent);
34         virtual ~_GalleryCoreEventListener(void);
35
36         void SetItemProvider(const IGalleryItemProvider* pItemProvider);
37         IGalleryItemProvider* GetItemProvider(void) const;
38
39         virtual void OnCurrentItemChanged(int currentIndex);
40         virtual void OnItemClicked(int itemIndex);
41         virtual void OnSlideShowStarted(void);
42         virtual void OnSlideShowStopped(void);
43
44 private:
45         _GalleryCoreEventListener(const _GalleryCoreEventListener& rhs);
46         _GalleryCoreEventListener& operator=(const _GalleryCoreEventListener& rhs);
47
48 private:
49         IGalleryItemProvider* __pItemProvider;
50         _GalleryImplEvent& __implEvent;
51 }; // _GalleryCoreEventListener
52
53 }}} // Tizen::Ui::Controls
54
55 #endif //_FUI_CTRL_INTERNAL_GALLERY_CORE_EVENT_LISTENER_H_