f7264cfe1702864f2e54a3b707be81fd9c8b075a
[profile/tv/apps/native/filebrowser.git] / src / layouts / FbPhotoLayout.cpp
1 #include <Elementary.h>
2 #include <AppCommon.h>
3 #include <BaseView.h>
4 #include <ViewMgr.h>
5 #include <BaseLayout.h>
6 #include <LayoutMgr.h>
7
8 #include "dbg.h"
9 #include "define.h"
10 #include "FileGrid.h"
11
12 #include <CtxPopup.h>
13 #include "FbBaseView.h"
14 #include "FbPhotoLayout.h"
15
16
17 struct SFbPhotoLayout {
18         Evas_Object *eoWin;
19         Evas_Object *eoBase;
20         CFileGrid  *pFileGrid;
21
22         CLayoutMgr *pLayoutMgr;
23         CViewMgr   *pViewMgr;
24 };
25
26
27 bool CFbPhotoLayout::t_CreateFileGrid(Evas_Object *layout)
28 {
29         return true;
30 }
31
32
33 void CFbPhotoLayout::t_DestroyFileGrid(void)
34 {
35         return; 
36 }
37
38
39 void CFbPhotoLayout::t_OnShow(void)
40 {
41         return;
42 }
43
44
45 void CFbPhotoLayout::t_OnHide(void)
46 {
47         return;
48 }
49
50
51 bool CFbPhotoLayout::Create(CLayoutMgr *mgr, void *data)
52 {
53         return true;
54 }
55
56
57 void CFbPhotoLayout::Destroy(void)
58 {
59         return;
60 }
61
62
63 void CFbPhotoLayout::Update(bool flag)
64 {
65         return;
66 }
67
68
69 void CFbPhotoLayout::SetFocus(Eina_Bool flag)
70 {
71         return;
72 }
73
74
75 Evas_Object* CFbPhotoLayout::Grid(void)
76 {
77         return NULL;
78 }
79
80
81 void CFbPhotoLayout::Action(void)
82 {
83         return;
84 }