Tizen 2.1 base
[framework/osp/uifw.git] / src / ui / inc / FUiCtrl_GalleryCoreEventArg.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_ARG_H_
18 #define _FUI_CTRL_INTERNAL_GALLERY_CORE_EVENT_ARG_H_
19
20 #include <FBaseObject.h>
21 #include <FBaseRtIEventArg.h>
22
23 namespace Tizen { namespace Ui { namespace Controls {
24
25 enum _GalleryCoreEventType
26 {
27         GALLERY_CORE_EVENT_CURRENT_ITEM_CHANGED = 0,
28         GALLERY_CORE_EVENT_ITEM_CLICKED,
29         GALLERY_CORE_EVENT_SLIDE_SHOW_STARTED,
30         GALLERY_CORE_EVENT_SLIDE_SHOW_STOPPED,
31         GALLERY_CORE_EVENT_CREATE_ITEM,
32         GALLERY_CORE_EVENT_DELETE_ITEM,
33         GALLERY_CORE_EVENT_GET_ITEM_COUNT
34 };
35
36 class _GalleryItem;
37
38 class _GalleryCoreEventArg
39         : public Tizen::Base::Runtime::IEventArg
40 {
41 public:
42         _GalleryCoreEventArg(_GalleryCoreEventType eventType, int arg1 = 0, _GalleryItem** arg2 = null, bool arg3 = true);
43         virtual ~_GalleryCoreEventArg(void);
44
45         int& GetArg1(void) const;
46         _GalleryItem** GetArg2(void) const;
47         bool& GetArg3(void) const;
48
49         _GalleryCoreEventType GetEventType(void) const;
50
51 private:
52         _GalleryCoreEventArg(const _GalleryCoreEventArg& rhs);
53         _GalleryCoreEventArg& operator=(const _GalleryCoreEventArg& rhs);
54
55 private:
56         int __arg1;
57         _GalleryItem** __ppArg2;
58         bool __arg3;
59         _GalleryCoreEventType __eventType;
60 }; // _GalleryCoreEventArg
61
62 }}} // Tizen::Ui::Controls
63
64 #endif // _FUI_CTRL_INTERNAL_GALLERY_CORE_EVENT_ARG_H_