New AppControl Spec
[apps/osp/ImageViewer.git] / inc / IvImageViewerPresentationModel.h
1 //
2 // Copyright (c) 2012 Samsung Electronics Co., Ltd.
3 //
4 // Licensed under the Flora License, Version 1.0 (the License);
5 // you may not use this file except in compliance with the License.
6 // You may obtain a copy of the License at
7 //
8 //     http://floralicense.org/license/
9 //
10 // Unless required by applicable law or agreed to in writing, software
11 // distributed under the License is distributed on an AS IS BASIS,
12 // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13 // See the License for the specific language governing permissions and
14 // limitations under the License.
15 //
16
17 /**
18  * @file                IvImageViewerPresentationModel.h
19  * @brief               This is the header file for ImageViewerPresentationModel class.
20  */
21
22 #ifndef _IV_VIEWER_PRESENTATION_MODEL_H_
23 #define _IV_VIEWER_PRESENTATION_MODEL_H_
24
25 #include <FApp.h>
26 #include <FAppIAppControlEventListener.h>
27 #include <FBase.h>
28 #include <FBaseColArrayList.h>
29 #include <FContent.h>
30 #include <FGraphics.h>
31 #include <FIo.h>
32 #include <FUi.h>
33 #include "IvImageProviderEventListener.h"
34 #include "IvTypes.h"
35
36 class ImageEvent;
37 class ImageInfo;
38 class ImageProvider;
39 class IImageViewerEventListener;
40 class SettingPresentationModel;
41 class IFileUpdateEventListener;
42
43 class ImageViewerPresentationModel
44         : public IImageProviderEventListener
45         , public Tizen::Io::IFileEventListener
46 {
47 public:
48         static ImageViewerPresentationModel* GetInstance();
49
50 public:
51         result AddListener(IImageViewerEventListener* listener);
52         result RemoveListener(IImageViewerEventListener& listner);
53
54         result AddFileUpdateListener(IFileUpdateEventListener* listener);
55         result RemoveFileUpdateListener(IFileUpdateEventListener& listner);
56
57         void ClearImageRequests(bool appTerminating = false);
58         void DeleteFilePathAt(const int index);
59         void UpdateFilePathAt(const int index, const Tizen::Base::String& filePath);
60         Tizen::Base::String GetFilePathAt(const int index) const;
61         Tizen::Base::Collection::ArrayList* GetImageCache() const;
62         ImageInfo* GetImageCacheAt(const int index) const;
63
64         int GetFileCount(void) const;
65         Tizen::Base::String GetType(void) const;
66         int GetStartIndex(void) const;
67
68         Tizen::Base::String GetFileName(const Tizen::Base::String& filePath, bool checkExe = false) const;
69         void RequestImage(const Tizen::Base::String& filePath) const;
70         Tizen::Content::ContentId GetFileContentId(const Tizen::Base::String& filePath) const;
71
72         int GetSetterIndex(void) const;
73         void SetSetterIndex(const int index);
74
75         int GetDurationOfSlideShow(void) const;
76         SlideShowTransitionEffect GetTransitionEffectOfSlideShow(void) const;
77
78         result StartAppControl(const Tizen::Base::String& providerId, const Tizen::Base::String& operationId,
79                         const Tizen::Base::String* uriData, const Tizen::Base::Collection::HashMap* pDataList,
80                         Tizen::App::IAppControlResponseListener* pListener);
81
82         virtual void OnImageReceivedN(Tizen::Base::Runtime::IEventArg& eventArg);
83
84         virtual void OnFileEventOccured (const unsigned long events, const Tizen::Base::String &path, const unsigned int eventId);
85
86 private:
87         ImageViewerPresentationModel(void);
88         ImageViewerPresentationModel(const ImageViewerPresentationModel&);
89         virtual ~ImageViewerPresentationModel(void);
90         ImageViewerPresentationModel& operator=(const ImageViewerPresentationModel&);
91
92         result Construct(void);
93         static void CreateInstance(void);
94         static void DestroyInstance(void);
95
96         void LoadSettingValue();
97         int GetImageCacheIndex(const Tizen::Base::String &path);
98
99 private:
100         static ImageViewerPresentationModel* __pPresentationModelInstance;
101         static ImageProvider* __pImageProvider;
102         static ImageEvent* __pImageEvent;
103         static Tizen::Base::Collection::ArrayList* __pImageViewerListener;
104         Tizen::Base::Collection::ArrayList* __pFileUpdateListener;
105         Tizen::Base::Collection::ArrayList* __pImageCaches;
106         long long __contactId;
107         int __startIndex;
108         int __setterIndex;
109         Tizen::Base::String __type;
110         int __durationOfSlideShow;
111         SlideShowTransitionEffect __transitionEffectOfSlideShow;
112         Tizen::Io::FileEventManager* __pFileEventManager;
113         SettingPresentationModel* __pSettingPresentationModel;
114 };
115
116 #endif /* _IV_VIEWER_PRESENTATION_MODEL_H_ */