src/hbcore/style/hbstyleoptionratingslider.cpp
changeset 1 f7ac710697a9
parent 0 16d8024aca5e
child 2 06ff229162e9
equal deleted inserted replaced
0:16d8024aca5e 1:f7ac710697a9
    30 /*!
    30 /*!
    31     \class HbStyleOptionProgressBar
    31     \class HbStyleOptionProgressBar
    32     \brief HbStyleOptionProgressBar has the style component for progress bar primitives
    32     \brief HbStyleOptionProgressBar has the style component for progress bar primitives
    33 
    33 
    34 */
    34 */
       
    35 
       
    36 
       
    37 /*!
       
    38 
       
    39     \deprecated HbStyleOptionRatingSlider::HbStyleOptionRatingSlider()
       
    40     is deprecated. Styleoptions will not be public.
       
    41 
       
    42 */
    35 HbStyleOptionRatingSlider::HbStyleOptionRatingSlider()
    43 HbStyleOptionRatingSlider::HbStyleOptionRatingSlider()
    36  {
    44  {
    37     type = Type;
    45     type = Type;
    38     version = Version;
    46     version = Version;
    39 	progressValue=0;
       
    40 	inverted=false;
       
    41 	noOfIntervals=5;
       
    42 	noOfStars=5;
       
    43 }
    47 }
    44 
    48 
       
    49 
       
    50 
       
    51 /*!
       
    52 
       
    53     \deprecated HbStyleOptionRatingSlider::HbStyleOptionRatingSlider(const HbStyleOptionRatingSlider&)
       
    54     is deprecated. Styleoptions will not be public.
       
    55 
       
    56 */
    45 HbStyleOptionRatingSlider::HbStyleOptionRatingSlider(const HbStyleOptionRatingSlider &other) :
    57 HbStyleOptionRatingSlider::HbStyleOptionRatingSlider(const HbStyleOptionRatingSlider &other) :
    46     HbStyleOption(other)
    58     HbStyleOption(other),
    47   
    59     progressValue(other.progressValue),
       
    60     inverted(other.inverted),
       
    61     noOfIntervals(other.noOfIntervals),
       
    62     noOfStars(other.noOfStars),
       
    63     unRatedGraphicsName(other.unRatedGraphicsName),
       
    64     ratedGraphicsName(other.ratedGraphicsName)
    48 {
    65 {
    49     type = Type;
    66     type = Type;
    50     version = Version;
    67     version = Version;
    51 }
    68 }
    52 
    69