1.Fixed Jira Issue 2.Removed Unused functions
[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::Content::IContentUpdateEventListener
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         void AddImageCache(const Tizen::Base::String& filePath);
64
65         int GetFileCount(void) const;
66         Tizen::Base::String GetType(void) const;
67         int GetStartIndex(void) const;
68
69         Tizen::Base::String GetFileName(const Tizen::Base::String& filePath, bool checkExe = false) const;
70         void RequestImage(const Tizen::Base::String& filePath) const;
71         Tizen::Content::ContentId GetFileContentId(const Tizen::Base::String& filePath) const;
72
73         int GetDurationOfSlideShow(void) const;
74         SlideShowTransitionEffect GetTransitionEffectOfSlideShow(void) const;
75
76         result StartAppControl(const Tizen::Base::String& providerId, const Tizen::Base::String&  operationId,
77                                 const Tizen::Base::String* pUriData, const Tizen::Base::String* pMimeType,
78                                 const Tizen::Base::Collection::HashMap* pDataList, Tizen::App::IAppControlResponseListener* pListener);
79
80         virtual void OnImageReceivedN(Tizen::Base::Runtime::IEventArg& eventArg);
81
82         //From IContentUpdateEventListener
83         virtual void OnContentFileCreated(Tizen::Content::ContentId contentId, Tizen::Content::ContentType contentType, result r);
84         virtual void OnContentFileUpdated(Tizen::Content::ContentId contentId, Tizen::Content::ContentType contentType, result r);
85         virtual void OnContentFileDeleted(Tizen::Content::ContentId contentId, Tizen::Content::ContentType contentType, result r);
86         virtual void OnContentDirectoryScanCompleted(const Tizen::Base::String& directoryPath, result r);
87
88
89 private:
90         ImageViewerPresentationModel(void);
91         ImageViewerPresentationModel(const ImageViewerPresentationModel&);
92         virtual ~ImageViewerPresentationModel(void);
93         ImageViewerPresentationModel& operator=(const ImageViewerPresentationModel&);
94
95         result Construct(void);
96         static void CreateInstance(void);
97         static void DestroyInstance(void);
98
99         void LoadSettingValue();
100         int GetImageCacheIndex(const Tizen::Base::String& );
101
102 private:
103         static ImageViewerPresentationModel* __pPresentationModelInstance;
104         static ImageProvider* __pImageProvider;
105         static ImageEvent* __pImageEvent;
106         static Tizen::Base::Collection::ArrayList* __pImageViewerListener;
107         Tizen::Base::Collection::ArrayList* __pFileUpdateListener;
108         Tizen::Base::Collection::ArrayList* __pImageCaches;
109         long long __contactId;
110         int __startIndex;
111         Tizen::Base::String __type;
112         int __durationOfSlideShow;
113         SlideShowTransitionEffect __transitionEffectOfSlideShow;
114         Tizen::Content::ContentManager* __pCntMgr;
115         SettingPresentationModel* __pSettingPresentationModel;
116         bool __ivTriggeredEvent;
117         short __contentFileEventType;
118         Tizen::Content::ContentId __contentId;
119         bool __ivTriggeredDeleteEvent;
120 };
121
122 #endif /* _IV_VIEWER_PRESENTATION_MODEL_H_ */