c2229c1511abbd69bef37bf28f37c879329ceac7
[profile/tv/apps/native/filebrowser.git] / src / layouts / FbVideoLayout.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 "FbVideoLayout.h"
15
16
17 struct SFbVideoLayout {
18         Evas_Object *eoWin;
19         Evas_Object *eoBase;
20         CFileGrid  *pFileGrid;
21
22         CLayoutMgr *pLayoutMgr;
23         CViewMgr   *pViewMgr;
24 };
25
26
27 bool CFbVideoLayout::t_CreateFileGrid(Evas_Object *layout)
28 {
29         return true;
30 }
31
32
33 void CFbVideoLayout::t_DestroyFileGrid(void)
34 {
35         return; 
36 }
37
38
39 void CFbVideoLayout::t_OnShow(void)
40 {
41         return;
42 }
43
44
45 void CFbVideoLayout::t_OnHide(void)
46 {
47         return;
48 }
49
50
51 bool CFbVideoLayout::Create(CLayoutMgr *mgr, void *data)
52 {
53         return true;
54 }
55
56
57 void CFbVideoLayout::Destroy(void)
58 {
59         return;
60 }
61
62
63 void CFbVideoLayout::Update(bool flag)
64 {
65         return;
66 }
67
68
69 void CFbVideoLayout::SetFocus(Eina_Bool flag)
70 {
71         return;
72 }
73
74
75 Evas_Object* CFbVideoLayout::Grid(void)
76 {
77         return NULL;
78 }
79
80
81 void CFbVideoLayout::Action(void)
82 {
83         return;
84 }