Apply modification of CBaseView 73/36673/1 accepted/tizen/tv/20150312.042217 submit/tizen_tv/20150311.235404 submit/tizen_tv/20150312.020022
authorKim Tae Soo <taesoo46.kim@samsung.com>
Thu, 12 Mar 2015 00:33:18 +0000 (09:33 +0900)
committerKim Tae Soo <taesoo46.kim@samsung.com>
Thu, 12 Mar 2015 00:33:18 +0000 (09:33 +0900)
Change-Id: I1fee3cb6b99adcab026ae1eb41d95c41ac851594
Signed-off-by: Kim Tae Soo <taesoo46.kim@samsung.com>
include/base-view.h
include/context-view.h
include/playback-view.h

index 04873d8..5a86149 100644 (file)
@@ -28,8 +28,7 @@ struct SArgList {
 };
 
 
-class CMusicBaseView : public CBaseView, public CListenerMgr,
-       public IKeyDownListener, public IKeyUpListener,
+class CMusicBaseView : public CBaseView,
        public IMouseMoveListener, public IMouseClickedListener,
        public IMusicControllerListener
 {
@@ -73,8 +72,6 @@ protected:
 public:
        CMusicBaseView(const char *pViewId) :
                CBaseView(pViewId),
-               IKeyDownListener(this),
-               IKeyUpListener(this),
                IMouseMoveListener(this),
                IMouseClickedListener(this),
                m(0) {}
index caf007c..41331f1 100644 (file)
@@ -24,8 +24,7 @@
 struct SContentInfo;
 struct SRltvCtnt;
 
-class CContextView : public CBaseView, public CListenerMgr,
-       public IKeyDownListener, public IKeyUpListener,
+class CContextView : public CBaseView,
        public IMouseMoveListener, public IMouseUpListener,
        public IFocusedListener, public IUnfocusedListener {
 private:
@@ -95,8 +94,6 @@ protected:
 public:
        CContextView(const char *pViewId) :
                CBaseView(pViewId),
-               IKeyDownListener(this),
-               IKeyUpListener(this),
                IMouseMoveListener(this),
                IMouseUpListener(this),
                IFocusedListener(this),
index 7f07ffa..a1e36a3 100644 (file)
 struct SItemInfo;
 
 
-class CPlaybackView : public CBaseView, CListenerMgr, 
-       IKeyDownListener, IKeyUpListener, IMouseClickedListener, IMouseMoveListener,
-       IPressedListener, IUnpressedListener, IChangedListener, IRealizedListener, IUnrealizedListener,
-       IActivatedListener,
-       IMusicControllerListener {
+class CPlaybackView : public CBaseView,
+       public IMouseClickedListener, public IMouseMoveListener,
+       public IPressedListener, public IUnpressedListener,
+       public IChangedListener, public IRealizedListener,
+       public IUnrealizedListener, public IActivatedListener,
+       public IMusicControllerListener {
 private:
        struct SPlaybackView* m;
 
@@ -126,7 +127,7 @@ protected:
 
 public:
        CPlaybackView(const char *pViewId) : CBaseView(pViewId), 
-               IKeyDownListener(this), IKeyUpListener(this), IMouseClickedListener(this), IMouseMoveListener(this),
+               IMouseClickedListener(this), IMouseMoveListener(this),
                IPressedListener(this), IUnpressedListener(this), IChangedListener(this),
                IRealizedListener(this), IUnrealizedListener(this), IActivatedListener(this),
                m(0) {}