tsrc/mocks/orbit/mock_hbsliderpopup.cpp
changeset 78 baacf668fe89
equal deleted inserted replaced
76:cfea66083b62 78:baacf668fe89
       
     1 /** Copyright (c) 2010 Nokia Corporation and/or its subsidiary(-ies).
       
     2 * All rights reserved.
       
     3 * This component and the accompanying materials are made available
       
     4 * under the terms of the License "Eclipse Public License v1.0"
       
     5 * which accompanies this distribution, and is available
       
     6 * at the URL "http://www.eclipse.org/legal/epl-v10.html".
       
     7 *
       
     8 * Initial Contributors:
       
     9 * Nokia Corporation - initial contribution.
       
    10 *
       
    11 * Contributors:
       
    12 *
       
    13 * Description:
       
    14 *
       
    15 */
       
    16 #include <QDebug>
       
    17 #include <smcmockclassincludes.h>
       
    18 #include "hbsliderpopup.h"
       
    19 
       
    20 // ============================ MEMBER FUNCTIONS ===============================
       
    21 
       
    22 // -----------------------------------------------------------------------------
       
    23 // HbSliderPopup::HbSliderPopup
       
    24 // -----------------------------------------------------------------------------
       
    25 //
       
    26 HbSliderPopup::HbSliderPopup( 
       
    27         QGraphicsItem * parent )
       
    28     : HbDialog( parent )
       
    29     {
       
    30     
       
    31     }
       
    32 
       
    33 
       
    34 // -----------------------------------------------------------------------------
       
    35 // HbSliderPopup::HbSliderPopup
       
    36 // -----------------------------------------------------------------------------
       
    37 //
       
    38 HbSliderPopup::HbSliderPopup( 
       
    39         Qt::Orientation orientation,
       
    40         QGraphicsItem * parent )
       
    41     //:
       
    42     //HbDialog( /*orientation, parent*/ )
       
    43     {
       
    44     
       
    45     }
       
    46 
       
    47 
       
    48 // -----------------------------------------------------------------------------
       
    49 // HbSliderPopup::~HbSliderPopup
       
    50 // -----------------------------------------------------------------------------
       
    51 //
       
    52 HbSliderPopup::~HbSliderPopup(  )
       
    53     {
       
    54     
       
    55     }
       
    56 
       
    57 
       
    58 // -----------------------------------------------------------------------------
       
    59 // HbSliderPopup::invertedAppearance
       
    60 // -----------------------------------------------------------------------------
       
    61 //
       
    62 bool HbSliderPopup::invertedAppearance(  ) const
       
    63     {
       
    64     SMC_MOCK_METHOD0( bool )
       
    65     }
       
    66 
       
    67 
       
    68 // -----------------------------------------------------------------------------
       
    69 // HbSliderPopup::setInvertedAppearance
       
    70 // -----------------------------------------------------------------------------
       
    71 //
       
    72 void HbSliderPopup::setInvertedAppearance( 
       
    73         bool inverted )
       
    74     {
       
    75     SMC_MOCK_METHOD1( void, bool, inverted )
       
    76     }
       
    77 
       
    78 
       
    79 // -----------------------------------------------------------------------------
       
    80 // HbSliderPopup::maximum
       
    81 // -----------------------------------------------------------------------------
       
    82 //
       
    83 int HbSliderPopup::maximum(  ) const
       
    84     {
       
    85     SMC_MOCK_METHOD0( int )
       
    86     }
       
    87 
       
    88 
       
    89 // -----------------------------------------------------------------------------
       
    90 // HbSliderPopup::setMaximum
       
    91 // -----------------------------------------------------------------------------
       
    92 //
       
    93 void HbSliderPopup::setMaximum( 
       
    94         int max )
       
    95     {
       
    96     SMC_MOCK_METHOD1( void, int, max )
       
    97     }
       
    98 
       
    99 
       
   100 // -----------------------------------------------------------------------------
       
   101 // HbSliderPopup::minimum
       
   102 // -----------------------------------------------------------------------------
       
   103 //
       
   104 int HbSliderPopup::minimum(  ) const
       
   105     {
       
   106     SMC_MOCK_METHOD0( int )
       
   107     }
       
   108 
       
   109 
       
   110 // -----------------------------------------------------------------------------
       
   111 // HbSliderPopup::setMinimum
       
   112 // -----------------------------------------------------------------------------
       
   113 //
       
   114 void HbSliderPopup::setMinimum( 
       
   115         int min )
       
   116     {
       
   117     SMC_MOCK_METHOD1( void, int, min )
       
   118     }
       
   119 
       
   120 
       
   121 // -----------------------------------------------------------------------------
       
   122 // HbSliderPopup::setRange
       
   123 // -----------------------------------------------------------------------------
       
   124 //
       
   125 void HbSliderPopup::setRange( 
       
   126         int min,
       
   127         int max )
       
   128     {
       
   129     SMC_MOCK_METHOD2( void, int, min, 
       
   130         int, max )
       
   131     }
       
   132 
       
   133 
       
   134 // -----------------------------------------------------------------------------
       
   135 // HbSliderPopup::orientation
       
   136 // -----------------------------------------------------------------------------
       
   137 //
       
   138 Qt::Orientation HbSliderPopup::orientation(  ) const
       
   139     {
       
   140     SMC_MOCK_METHOD0( Qt::Orientation )
       
   141     }
       
   142 
       
   143 
       
   144 // -----------------------------------------------------------------------------
       
   145 // HbSliderPopup::pageStep
       
   146 // -----------------------------------------------------------------------------
       
   147 //
       
   148 int HbSliderPopup::pageStep(  ) const
       
   149     {
       
   150     SMC_MOCK_METHOD0( int )
       
   151     }
       
   152 
       
   153 
       
   154 // -----------------------------------------------------------------------------
       
   155 // HbSliderPopup::setPageStep
       
   156 // -----------------------------------------------------------------------------
       
   157 //
       
   158 void HbSliderPopup::setPageStep( 
       
   159         int step )
       
   160     {
       
   161     SMC_MOCK_METHOD1( void, int, step )
       
   162     }
       
   163 
       
   164 
       
   165 // -----------------------------------------------------------------------------
       
   166 // HbSliderPopup::singleStep
       
   167 // -----------------------------------------------------------------------------
       
   168 //
       
   169 int HbSliderPopup::singleStep(  ) const
       
   170     {
       
   171     SMC_MOCK_METHOD0( int )
       
   172     }
       
   173 
       
   174 
       
   175 // -----------------------------------------------------------------------------
       
   176 // HbSliderPopup::setSingleStep
       
   177 // -----------------------------------------------------------------------------
       
   178 //
       
   179 void HbSliderPopup::setSingleStep( 
       
   180         int step )
       
   181     {
       
   182     SMC_MOCK_METHOD1( void, int, step )
       
   183     }
       
   184 
       
   185 
       
   186 // -----------------------------------------------------------------------------
       
   187 // HbSliderPopup::sliderPosition
       
   188 // -----------------------------------------------------------------------------
       
   189 //
       
   190 int HbSliderPopup::sliderPosition(  ) const
       
   191     {
       
   192     SMC_MOCK_METHOD0( int )
       
   193     }
       
   194 
       
   195 
       
   196 // -----------------------------------------------------------------------------
       
   197 // HbSliderPopup::setSliderPosition
       
   198 // -----------------------------------------------------------------------------
       
   199 //
       
   200 void HbSliderPopup::setSliderPosition( 
       
   201         int pos )
       
   202     {
       
   203     SMC_MOCK_METHOD1( void, int, pos )
       
   204     }
       
   205 
       
   206 
       
   207 // -----------------------------------------------------------------------------
       
   208 // HbSliderPopup::hasTracking
       
   209 // -----------------------------------------------------------------------------
       
   210 //
       
   211 bool HbSliderPopup::hasTracking(  ) const
       
   212     {
       
   213     SMC_MOCK_METHOD0( bool )
       
   214     }
       
   215 
       
   216 
       
   217 // -----------------------------------------------------------------------------
       
   218 // HbSliderPopup::setTracking
       
   219 // -----------------------------------------------------------------------------
       
   220 //
       
   221 void HbSliderPopup::setTracking( 
       
   222         bool enable )
       
   223     {
       
   224     SMC_MOCK_METHOD1( void, bool, enable )
       
   225     }
       
   226 
       
   227 
       
   228 // -----------------------------------------------------------------------------
       
   229 // HbSliderPopup::tickPosition
       
   230 // -----------------------------------------------------------------------------
       
   231 //
       
   232 Hb::SliderTickPositions HbSliderPopup::tickPosition(  ) const
       
   233     {
       
   234     SMC_MOCK_METHOD0( Hb::SliderTickPositions )
       
   235     }
       
   236 
       
   237 
       
   238 // -----------------------------------------------------------------------------
       
   239 // HbSliderPopup::setTickPosition
       
   240 // -----------------------------------------------------------------------------
       
   241 //
       
   242 void HbSliderPopup::setTickPosition( 
       
   243         Hb::SliderTickPositions position )
       
   244     {
       
   245     SMC_MOCK_METHOD1( void, /*Hb::SliderTickPositions*/int, position )
       
   246     }
       
   247 
       
   248 
       
   249 // -----------------------------------------------------------------------------
       
   250 // HbSliderPopup::snappingMode
       
   251 // -----------------------------------------------------------------------------
       
   252 //
       
   253 HbSlider::SnappingMode HbSliderPopup::snappingMode(  ) const
       
   254     {
       
   255     SMC_MOCK_METHOD0( HbSlider::SnappingMode )
       
   256     }
       
   257 
       
   258 
       
   259 // -----------------------------------------------------------------------------
       
   260 // HbSliderPopup::setSnappingMode
       
   261 // -----------------------------------------------------------------------------
       
   262 //
       
   263 void HbSliderPopup::setSnappingMode( 
       
   264         HbSlider::SnappingMode mode )
       
   265     {
       
   266     SMC_MOCK_METHOD1( void, HbSlider::SnappingMode, mode )
       
   267     }
       
   268 
       
   269 
       
   270 // -----------------------------------------------------------------------------
       
   271 // HbSliderPopup::icon
       
   272 // -----------------------------------------------------------------------------
       
   273 //
       
   274 HbIcon HbSliderPopup::icon( 
       
   275         HbSlider::SliderElement element ) const
       
   276     {
       
   277     SMC_MOCK_METHOD1( HbIcon, HbSlider::SliderElement, element )
       
   278     }
       
   279 
       
   280 
       
   281 // -----------------------------------------------------------------------------
       
   282 // HbSliderPopup::setIcon
       
   283 // -----------------------------------------------------------------------------
       
   284 //
       
   285 void HbSliderPopup::setIcon( 
       
   286         HbSlider::SliderElement element,
       
   287         const HbIcon & icon )
       
   288     {
       
   289     SMC_MOCK_METHOD2( void, HbSlider::SliderElement, element, 
       
   290         const HbIcon &, icon )
       
   291     }
       
   292 
       
   293 
       
   294 // -----------------------------------------------------------------------------
       
   295 // HbSliderPopup::setElementIcon
       
   296 // -----------------------------------------------------------------------------
       
   297 //
       
   298 void HbSliderPopup::setElementIcon( 
       
   299         HbSlider::SliderElement element,
       
   300         const HbIcon & icon )
       
   301     {
       
   302     SMC_MOCK_METHOD2( void, HbSlider::SliderElement, element, 
       
   303         const HbIcon &, icon )
       
   304     }
       
   305 
       
   306 
       
   307 // -----------------------------------------------------------------------------
       
   308 // HbSliderPopup::elementIcon
       
   309 // -----------------------------------------------------------------------------
       
   310 //
       
   311 HbIcon HbSliderPopup::elementIcon( 
       
   312         HbSlider::SliderElement element ) const
       
   313     {
       
   314     SMC_MOCK_METHOD1( HbIcon, HbSlider::SliderElement, element )
       
   315     }
       
   316 
       
   317 
       
   318 // -----------------------------------------------------------------------------
       
   319 // HbSliderPopup::elements
       
   320 // -----------------------------------------------------------------------------
       
   321 //
       
   322 QList <HbSlider::SliderElement > HbSliderPopup::elements(  ) const
       
   323     {
       
   324     SMC_MOCK_METHOD0( QList <HbSlider::SliderElement > )
       
   325     }
       
   326 
       
   327 
       
   328 // -----------------------------------------------------------------------------
       
   329 // HbSliderPopup::setElements
       
   330 // -----------------------------------------------------------------------------
       
   331 //
       
   332 void HbSliderPopup::setElements( 
       
   333         const QList<HbSlider::SliderElement> & elements )
       
   334     {
       
   335     SMC_MOCK_METHOD1( void, const QList<HbSlider::SliderElement> &, elements )
       
   336     }
       
   337 
       
   338 
       
   339 // -----------------------------------------------------------------------------
       
   340 // HbSliderPopup::elementIcons
       
   341 // -----------------------------------------------------------------------------
       
   342 //
       
   343 typedef QMap<QString, QVariant> qmapDefine;
       
   344 QMap <QString , QVariant > HbSliderPopup::elementIcons(  ) const
       
   345     {
       
   346     SMC_MOCK_METHOD0( qmapDefine )
       
   347     }
       
   348 
       
   349 
       
   350 // -----------------------------------------------------------------------------
       
   351 // HbSliderPopup::setElementIcons
       
   352 // -----------------------------------------------------------------------------
       
   353 //
       
   354 void HbSliderPopup::setElementIcons( 
       
   355         const QMap <QString, QVariant> &elements )
       
   356     {
       
   357     SMC_MOCK_METHOD1( void, const qmapDefine, elements )
       
   358     }
       
   359 
       
   360 
       
   361 // -----------------------------------------------------------------------------
       
   362 // HbSliderPopup::setSliderElements
       
   363 // -----------------------------------------------------------------------------
       
   364 //
       
   365 void HbSliderPopup::setSliderElements( 
       
   366         const QList<QVariant> & elements )
       
   367     {
       
   368     SMC_MOCK_METHOD1( void, const QList<QVariant> &, elements )
       
   369     }
       
   370 
       
   371 
       
   372 // -----------------------------------------------------------------------------
       
   373 // HbSliderPopup::sliderElements
       
   374 // -----------------------------------------------------------------------------
       
   375 //
       
   376 QList <QVariant > HbSliderPopup::sliderElements(  ) const
       
   377     {
       
   378     SMC_MOCK_METHOD0( QList <QVariant > )
       
   379     }
       
   380 
       
   381 
       
   382 // -----------------------------------------------------------------------------
       
   383 // HbSliderPopup::majorTickInterval
       
   384 // -----------------------------------------------------------------------------
       
   385 //
       
   386 int HbSliderPopup::majorTickInterval(  ) const
       
   387     {
       
   388     SMC_MOCK_METHOD0( int )
       
   389     }
       
   390 
       
   391 
       
   392 // -----------------------------------------------------------------------------
       
   393 // HbSliderPopup::setMajorTickInterval
       
   394 // -----------------------------------------------------------------------------
       
   395 //
       
   396 void HbSliderPopup::setMajorTickInterval( 
       
   397         int interval )
       
   398     {
       
   399     SMC_MOCK_METHOD1( void, int, interval )
       
   400     }
       
   401 
       
   402 
       
   403 // -----------------------------------------------------------------------------
       
   404 // HbSliderPopup::minorTickInterval
       
   405 // -----------------------------------------------------------------------------
       
   406 //
       
   407 int HbSliderPopup::minorTickInterval(  ) const
       
   408     {
       
   409     SMC_MOCK_METHOD0( int )
       
   410     }
       
   411 
       
   412 
       
   413 // -----------------------------------------------------------------------------
       
   414 // HbSliderPopup::setMinorTickInterval
       
   415 // -----------------------------------------------------------------------------
       
   416 //
       
   417 void HbSliderPopup::setMinorTickInterval( 
       
   418         int interval )
       
   419     {
       
   420     SMC_MOCK_METHOD1( void, int, interval )
       
   421     }
       
   422 
       
   423 
       
   424 // -----------------------------------------------------------------------------
       
   425 // HbSliderPopup::majorTickLabels
       
   426 // -----------------------------------------------------------------------------
       
   427 //
       
   428 QStringList HbSliderPopup::majorTickLabels(  ) const
       
   429     {
       
   430     SMC_MOCK_METHOD0( QStringList )
       
   431     }
       
   432 
       
   433 
       
   434 // -----------------------------------------------------------------------------
       
   435 // HbSliderPopup::setMajorTickLabels
       
   436 // -----------------------------------------------------------------------------
       
   437 //
       
   438 void HbSliderPopup::setMajorTickLabels( 
       
   439         const QStringList & majorTickLabels )
       
   440     {
       
   441     SMC_MOCK_METHOD1( void, const QStringList &, majorTickLabels )
       
   442     }
       
   443 
       
   444 
       
   445 // -----------------------------------------------------------------------------
       
   446 // HbSliderPopup::minorTickLabels
       
   447 // -----------------------------------------------------------------------------
       
   448 //
       
   449 QStringList HbSliderPopup::minorTickLabels(  ) const
       
   450     {
       
   451     SMC_MOCK_METHOD0( QStringList )
       
   452     }
       
   453 
       
   454 
       
   455 // -----------------------------------------------------------------------------
       
   456 // HbSliderPopup::setMinorTickLabels
       
   457 // -----------------------------------------------------------------------------
       
   458 //
       
   459 void HbSliderPopup::setMinorTickLabels( 
       
   460         const QStringList & minorTickLabels )
       
   461     {
       
   462     SMC_MOCK_METHOD1( void, const QStringList &, minorTickLabels )
       
   463     }
       
   464 
       
   465 
       
   466 // -----------------------------------------------------------------------------
       
   467 // HbSliderPopup::value
       
   468 // -----------------------------------------------------------------------------
       
   469 //
       
   470 int HbSliderPopup::value(  ) const
       
   471     {
       
   472     SMC_MOCK_METHOD0( int )
       
   473     }
       
   474 
       
   475 
       
   476 // -----------------------------------------------------------------------------
       
   477 // HbSliderPopup::text
       
   478 // -----------------------------------------------------------------------------
       
   479 //
       
   480 QString HbSliderPopup::text(  ) const
       
   481     {
       
   482     SMC_MOCK_METHOD0( QString )
       
   483     }
       
   484 
       
   485 
       
   486 // -----------------------------------------------------------------------------
       
   487 // HbSliderPopup::setToolTipAlignment
       
   488 // -----------------------------------------------------------------------------
       
   489 //
       
   490 void HbSliderPopup::setToolTipAlignment( 
       
   491         Qt::Alignment a)
       
   492     {
       
   493     SMC_MOCK_METHOD1( void, /*Qt::Alignment*/int, a )
       
   494     }
       
   495 
       
   496 
       
   497 // -----------------------------------------------------------------------------
       
   498 // HbSliderPopup::toolTipAlignment
       
   499 // -----------------------------------------------------------------------------
       
   500 //
       
   501 Qt::Alignment HbSliderPopup::toolTipAlignment(  ) const
       
   502     {
       
   503     SMC_MOCK_METHOD0( Qt::Alignment )
       
   504     }
       
   505 
       
   506 
       
   507 // -----------------------------------------------------------------------------
       
   508 // HbSliderPopup::setToolTipVisible
       
   509 // -----------------------------------------------------------------------------
       
   510 //
       
   511 void HbSliderPopup::setToolTipVisible( bool visible )
       
   512     {
       
   513     SMC_MOCK_METHOD1( void, bool, visible )
       
   514     }
       
   515 
       
   516 
       
   517 // -----------------------------------------------------------------------------
       
   518 // HbSliderPopup::isToolTipVisible
       
   519 // -----------------------------------------------------------------------------
       
   520 //
       
   521 bool HbSliderPopup::isToolTipVisible(  )
       
   522     {
       
   523     SMC_MOCK_METHOD0( bool )
       
   524     }
       
   525 
       
   526 
       
   527 // -----------------------------------------------------------------------------
       
   528 // HbSliderPopup::setTrackFilled
       
   529 // -----------------------------------------------------------------------------
       
   530 //
       
   531 void HbSliderPopup::setTrackFilled( 
       
   532         bool trackVisible )
       
   533     {
       
   534     SMC_MOCK_METHOD1( void, bool, trackVisible )
       
   535     }
       
   536 
       
   537 
       
   538 // -----------------------------------------------------------------------------
       
   539 // HbSliderPopup::isTrackFilled
       
   540 // -----------------------------------------------------------------------------
       
   541 //
       
   542 bool HbSliderPopup::isTrackFilled(  ) const
       
   543     {
       
   544     SMC_MOCK_METHOD0( bool )
       
   545     }
       
   546 
       
   547 
       
   548 // -----------------------------------------------------------------------------
       
   549 // HbSliderPopup::primitive
       
   550 // -----------------------------------------------------------------------------
       
   551 //
       
   552 QGraphicsItem * HbSliderPopup::primitive( 
       
   553         HbStyle::Primitive primitive ) const
       
   554     {
       
   555     SMC_MOCK_METHOD1( QGraphicsItem *, HbStyle::Primitive, primitive )
       
   556     }
       
   557 
       
   558 
       
   559 // -----------------------------------------------------------------------------
       
   560 // HbSliderPopup::setValue
       
   561 // -----------------------------------------------------------------------------
       
   562 //
       
   563 void HbSliderPopup::setValue( 
       
   564         int value )
       
   565     {
       
   566     SMC_MOCK_METHOD1( void, int, value )
       
   567     }
       
   568 
       
   569 
       
   570 // -----------------------------------------------------------------------------
       
   571 // HbSliderPopup::setText
       
   572 // -----------------------------------------------------------------------------
       
   573 //
       
   574 void HbSliderPopup::setText( 
       
   575         const QString & text )
       
   576     {
       
   577     SMC_MOCK_METHOD1( void, const QString &, text )
       
   578     }
       
   579 
       
   580 
       
   581 // -----------------------------------------------------------------------------
       
   582 // HbSliderPopup::setOrientation
       
   583 // -----------------------------------------------------------------------------
       
   584 //
       
   585 void HbSliderPopup::setOrientation( 
       
   586         Qt::Orientation orientation )
       
   587     {
       
   588     SMC_MOCK_METHOD1( void, Qt::Orientation, orientation )
       
   589     }
       
   590 
       
   591 
       
   592 // -----------------------------------------------------------------------------
       
   593 // HbSliderPopup::updatePrimitives
       
   594 // -----------------------------------------------------------------------------
       
   595 //
       
   596 void HbSliderPopup::updatePrimitives(  )
       
   597     {
       
   598     SMC_MOCK_METHOD0( void )
       
   599     }
       
   600 
       
   601 
       
   602 // -----------------------------------------------------------------------------
       
   603 // HbSliderPopup::valueChanged
       
   604 // -----------------------------------------------------------------------------
       
   605 //
       
   606 void HbSliderPopup::valueChanged( 
       
   607         int value )
       
   608     {
       
   609     SMC_MOCK_METHOD1( void, int, value )
       
   610     }
       
   611 
       
   612 
       
   613 // -----------------------------------------------------------------------------
       
   614 // HbSliderPopup::sliderPressed
       
   615 // -----------------------------------------------------------------------------
       
   616 //
       
   617 void HbSliderPopup::sliderPressed(  )
       
   618     {
       
   619     SMC_MOCK_METHOD0( void )
       
   620     }
       
   621 
       
   622 
       
   623 // -----------------------------------------------------------------------------
       
   624 // HbSliderPopup::sliderReleased
       
   625 // -----------------------------------------------------------------------------
       
   626 //
       
   627 void HbSliderPopup::sliderReleased(  )
       
   628     {
       
   629     SMC_MOCK_METHOD0( void )
       
   630     }
       
   631 
       
   632 
       
   633 // -----------------------------------------------------------------------------
       
   634 // HbSliderPopup::sliderMoved
       
   635 // -----------------------------------------------------------------------------
       
   636 //
       
   637 void HbSliderPopup::sliderMoved( 
       
   638         int value )
       
   639     {
       
   640     SMC_MOCK_METHOD1( void, int, value )
       
   641     }
       
   642 
       
   643 
       
   644 // -----------------------------------------------------------------------------
       
   645 // HbSliderPopup::rangeChanged
       
   646 // -----------------------------------------------------------------------------
       
   647 //
       
   648 void HbSliderPopup::rangeChanged( 
       
   649         int min,
       
   650         int max )
       
   651     {
       
   652     SMC_MOCK_METHOD2( void, int, min, 
       
   653         int, max )
       
   654     }
       
   655 
       
   656 
       
   657 // -----------------------------------------------------------------------------
       
   658 // HbSliderPopup::iconPressed
       
   659 // -----------------------------------------------------------------------------
       
   660 //
       
   661 void HbSliderPopup::iconPressed(  )
       
   662     {
       
   663     SMC_MOCK_METHOD0( void )
       
   664     }
       
   665 
       
   666 
       
   667 // -----------------------------------------------------------------------------
       
   668 // HbSliderPopup::iconReleased
       
   669 // -----------------------------------------------------------------------------
       
   670 //
       
   671 void HbSliderPopup::iconReleased(  )
       
   672     {
       
   673     SMC_MOCK_METHOD0( void )
       
   674     }
       
   675 
       
   676 
       
   677 // -----------------------------------------------------------------------------
       
   678 // HbSliderPopup::iconClicked
       
   679 // -----------------------------------------------------------------------------
       
   680 //
       
   681 void HbSliderPopup::iconClicked(  )
       
   682     {
       
   683     SMC_MOCK_METHOD0( void )
       
   684     }
       
   685 
       
   686 
       
   687 // -----------------------------------------------------------------------------
       
   688 // HbSliderPopup::textClicked
       
   689 // -----------------------------------------------------------------------------
       
   690 //
       
   691 void HbSliderPopup::textClicked(  )
       
   692     {
       
   693     SMC_MOCK_METHOD0( void )
       
   694     }
       
   695 
       
   696 
       
   697 // -----------------------------------------------------------------------------
       
   698 // HbSliderPopup::HbSliderPopup
       
   699 // -----------------------------------------------------------------------------
       
   700 //
       
   701 HbSliderPopup::HbSliderPopup( 
       
   702         HbSliderPopupPrivate & dd,
       
   703         QGraphicsItem * parent )
       
   704     //:
       
   705     //HbDialog( /*dd, parent*/ )
       
   706     {
       
   707     
       
   708     }
       
   709 
       
   710