Apply modification of CBaseView 76/36676/1 accepted/tizen/tv/20150312.042214 submit/tizen_tv/20150311.235404 submit/tizen_tv/20150312.020022
authorKim Tae Soo <taesoo46.kim@samsung.com>
Thu, 12 Mar 2015 00:48:14 +0000 (09:48 +0900)
committerKim Tae Soo <taesoo46.kim@samsung.com>
Thu, 12 Mar 2015 00:48:14 +0000 (09:48 +0900)
Change-Id: I80185e9a11d8a92d53576b9b3bb6736d127e8c91
Signed-off-by: Kim Tae Soo <taesoo46.kim@samsung.com>
include/view/ctxtmenu-view/ctxtmenu_view.h
include/view/gallery-view/gallery_view.h
include/view/photo-viewer/photoviewer_view.h
include/view/photo-viewer/zoom_view.h

index 6e2224f..4c81c18 100644 (file)
@@ -18,8 +18,8 @@
 #define __CTXT_MENU_VIEW_H__
 
 
-class CCtxtMenuView : public CBaseView, CListenerMgr, ITimeoutListener,
-       IKeyDownListener, IMouseDownListener, IMouseMoveListener,
+class CCtxtMenuView : public CBaseView, ITimeoutListener,
+       IMouseDownListener, IMouseMoveListener,
        IFocusedListener, IUnfocusedListener, IRealizedListener,
        IUnrealizedListener, IActivatedListener {
 private:
@@ -66,7 +66,7 @@ private:
 
 public:
        CCtxtMenuView(const char *szViewId) : CBaseView(szViewId),
-               IKeyDownListener(this), IMouseDownListener(this),
+               IMouseDownListener(this),
                IMouseMoveListener(this), IFocusedListener(this),
                IUnfocusedListener(this), IRealizedListener(this),
                IUnrealizedListener(this), IActivatedListener(this), m(0) {}
index ed682e4..ca064c1 100644 (file)
@@ -62,8 +62,8 @@ struct layout_data {
 };
 
 
-class CGalleryView : public CBaseView, CListenerMgr,
-       IKeyDownListener, IMouseClickedListener,
+class CGalleryView : public CBaseView,
+       IMouseClickedListener,
        IMouseMoveListener, IFocusedListener,
        CMediaContentDbUpdateListener, CUsbConnectionListener {
 private:
@@ -108,7 +108,6 @@ private:
 public:
        CGalleryView(const char *szViewId) :
                CBaseView(szViewId),
-               IKeyDownListener(this),
                IMouseClickedListener(this),
                IMouseMoveListener(this),
                IFocusedListener(this),
index 8bad084..9b904a6 100644 (file)
@@ -18,7 +18,7 @@
 #define __PHOTOVIEWER_VIEW_H__
 
 
-class CPhotoViewerView : public CBaseView, CListenerMgr, IKeyDownListener,
+class CPhotoViewerView : public CBaseView,
        IMouseClickedListener, IMouseMoveListener,
        IFocusedListener, ITimeoutListener {
 private:
@@ -97,7 +97,7 @@ private:
 
 public:
        CPhotoViewerView(const char *szViewId) : CBaseView(szViewId),
-               IKeyDownListener(this), IMouseClickedListener(this),
+               IMouseClickedListener(this),
                IMouseMoveListener(this), IFocusedListener(this), m(0) {}
        virtual ~CPhotoViewerView() {}
 
index 158ef1a..13a2d72 100644 (file)
@@ -23,8 +23,8 @@ struct zoom_data {
 };
 
 
-class CPhotoZoomView : public CBaseView, CListenerMgr, IKeyDownListener,
-       IKeyUpListener, IMouseClickedListener, IMouseMoveListener,
+class CPhotoZoomView : public CBaseView,
+       IMouseClickedListener, IMouseMoveListener,
        IMouseDownListener, IMouseUpListener, ITimeoutListener {
 private:
        struct SPhotoZoomView *m;
@@ -60,7 +60,6 @@ protected:
 
 public:
        CPhotoZoomView(const char *szViewId) : CBaseView(szViewId),
-               IKeyDownListener(this), IKeyUpListener(this),
                IMouseClickedListener(this), IMouseMoveListener(this),
                IMouseDownListener(this), IMouseUpListener(this), m(0) {}
        virtual ~CPhotoZoomView() {}