videocollection/videofiledetailsview/src/videodetailslabel.cpp
changeset 36 8aed59de29f9
parent 34 bbb98528c666
equal deleted inserted replaced
35:3738fe97f027 36:8aed59de29f9
    13 *
    13 *
    14 * Description:   VideoDetailsLabel class implementation
    14 * Description:   VideoDetailsLabel class implementation
    15 *
    15 *
    16 */
    16 */
    17 
    17 
       
    18 // Version : %version: %
       
    19 
       
    20 #include "videocollectiontrace.h"
    18 #include "videodetailslabel.h"
    21 #include "videodetailslabel.h"
    19 
    22 
    20 // SYSTEM INCLUDES
    23 // SYSTEM INCLUDES
    21 #include <HbLabel>
    24 #include <HbLabel>
    22 #include <QGraphicsSceneMouseEvent>
    25 #include <QGraphicsSceneMouseEvent>
    23 
    26 
    24 //---------------------------------------------------------------
    27 //---------------------------------------------------------------
    25 // VideoDetailsLabel::VideoDetailsLabel
    28 // VideoDetailsLabel::VideoDetailsLabel
    26 // @see header
    29 // @see header
    27 //---------------------------------------------------------------
    30 //---------------------------------------------------------------
    28 VideoDetailsLabel::VideoDetailsLabel(QGraphicsItem *parent) :
    31 VideoDetailsLabel::VideoDetailsLabel(QGraphicsItem *parent) 
    29     HbLabel(parent)
    32     : HbLabel( parent )
    30 {
    33 {
       
    34 	FUNC_LOG;
    31 }
    35 }
    32 
    36 
    33 //---------------------------------------------------------------
    37 //---------------------------------------------------------------
    34 // VideoDetailsLabel::~VideoDetailsLabel
    38 // VideoDetailsLabel::~VideoDetailsLabel
    35 // @see header
    39 // @see header
    36 //---------------------------------------------------------------
    40 //---------------------------------------------------------------
    37 VideoDetailsLabel::~VideoDetailsLabel()
    41 VideoDetailsLabel::~VideoDetailsLabel()
    38 {
    42 {
       
    43 	FUNC_LOG;
    39 }
    44 }
    40 
    45 
    41 //---------------------------------------------------------------
    46 //---------------------------------------------------------------
    42 // VideoDetailsLabel::click
    47 // VideoDetailsLabel::click
    43 // @see header
    48 // @see header
    44 //---------------------------------------------------------------
    49 //---------------------------------------------------------------
    45 void VideoDetailsLabel::click()
    50 void VideoDetailsLabel::click()
    46 {
    51 {
       
    52 	FUNC_LOG;
    47 	emit clicked(true);
    53 	emit clicked(true);
    48 }
    54 }
    49 
    55 
    50 //---------------------------------------------------------------
    56 //---------------------------------------------------------------
    51 // VideoDetailsLabel::init
    57 // VideoDetailsLabel::init
    52 // @see header
    58 // @see header
    53 //---------------------------------------------------------------
    59 //---------------------------------------------------------------
    54 void VideoDetailsLabel::mousePressEvent(QGraphicsSceneMouseEvent *event)
    60 void VideoDetailsLabel::mousePressEvent(QGraphicsSceneMouseEvent *event)
    55 {
    61 {
       
    62 	FUNC_LOG;
    56     Q_UNUSED(event);
    63     Q_UNUSED(event);
    57     emit clicked(true);
    64     emit clicked(true);
    58 }
    65 }
    59 
    66 
    60 // EOF
    67 // EOF