Beta merge 2
[profile/ivi/wrt-plugins-tizen.git] / src / platform / API / Mediacontent / IEventFolderFindMedia.h
1 /*
2 * Copyright (c) 2011 Samsung Electronics Co., Ltd All Rights Reserved
3 *
4 * Licensed under the Apache License, Version 2.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://www.apache.org/licenses/LICENSE-2.0
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 #ifndef _ABSTRACT_LAYER_IEVENT_FOLDER_FIND_MEDIA_H_
19 #define _ABSTRACT_LAYER_IEVENT_FOLDER_FIND_MEDIA_H_
20
21 #include <vector>
22 #include <Commons/IEvent.h>
23 #include "MediacontentMedia.h"
24 #include "MediacontentFolder.h"
25 #include <dpl/shared_ptr.h>
26
27 namespace WrtPlugins {
28 namespace Api {
29
30 class IEventFolderFindMedia : public WrtDeviceApis::Commons::IEvent<IEventFolderFindMedia>
31 {
32         public:
33                         IEventFolderFindMedia():m_result(false){}
34                         ~IEventFolderFindMedia(){ }             
35
36         MediacontentFolderPtr getFolder(){ return m_folder;}
37         std::vector<MediacontentMediaPtr> getMedia(){   return m_media; }
38
39         void            addMedia(MediacontentMediaPtr value){ m_media.push_back(value); }
40         void            setResult(bool value) { m_result = value; }
41         bool            getResult()const { return m_result; }
42         void            setFolder(MediacontentFolderPtr folder){ m_folder = folder;}
43
44         virtual void    clearOnCancel(){;}
45
46
47         private:
48         MediacontentFolderPtr m_folder;
49         std::vector<MediacontentMediaPtr> m_media;     
50         bool m_result;                                 
51 };
52
53 typedef DPL::SharedPtr<IEventFolderFindMedia> IEventFolderFindMediaPtr;
54
55 }
56 }
57 #endif /* _ABSTRACT_LAYER_IEVENT_FOLDER_FIND_MEDIA_H_ */