uifw/AvKon/tsrc/bc/S60_SDKMCL/bctestmixmcl/src/bctestmixmclgeneralcase.cpp
branchRCL_3
changeset 25 941195f2d488
parent 23 3d340a0166ff
child 38 c52421ed5f07
equal deleted inserted replaced
23:3d340a0166ff 25:941195f2d488
    34 #include <aknradiobuttonsettingpage.h>
    34 #include <aknradiobuttonsettingpage.h>
    35 #include <aknpopupsettingpage.h>  
    35 #include <aknpopupsettingpage.h>  
    36 #include <ItemFinder.h>
    36 #include <ItemFinder.h>
    37 #include <finditemdialog.h>
    37 #include <finditemdialog.h>
    38 #include <aknphysics.h>
    38 #include <aknphysics.h>
       
    39 #include <aknbutton.h>
    39 
    40 
    40 #include "bctestmixmclgeneralcase.h"
    41 #include "bctestmixmclgeneralcase.h"
    41 #include "bctestmixmclcontainer.h"
    42 #include "bctestmixmclcontainer.h"
    42 #include "bctestmixmcl.hrh"
    43 #include "bctestmixmcl.hrh"
    43 
    44 
   137     TestEnableKineticScrollingPhysicsL();
   138     TestEnableKineticScrollingPhysicsL();
   138     TestAknPhysicsSuspendPhysicsL();
   139     TestAknPhysicsSuspendPhysicsL();
   139     TestAknPhysicsResumePhysicsL();
   140     TestAknPhysicsResumePhysicsL();
   140     TestCbaL();
   141     TestCbaL();
   141 	TestCommonDialogsL();
   142 	TestCommonDialogsL();
       
   143 	TestAknButtonEnableFeedbackL();
   142     }
   144     }
   143 
   145 
   144 // ---------------------------------------------------------------------------
   146 // ---------------------------------------------------------------------------
   145 // CBCTestMixMCLGeneralCase::PrepareCaseL
   147 // CBCTestMixMCLGeneralCase::PrepareCaseL
   146 // ---------------------------------------------------------------------------
   148 // ---------------------------------------------------------------------------
   714             MAknItemFinderObserver::TEventFlag /*aEvent*/, TUint /*aFlags*/)
   716             MAknItemFinderObserver::TEventFlag /*aEvent*/, TUint /*aFlags*/)
   715     {
   717     {
   716     // do nothing
   718     // do nothing
   717     }
   719     }
   718 
   720 
       
   721 
       
   722 // ---------------------------------------------------------------------------
       
   723 // CBCTestMixMCLGeneralCase::TestAknButtonEnableFeedbackL
       
   724 // ---------------------------------------------------------------------------
       
   725 //
       
   726 void CBCTestMixMCLGeneralCase::TestAknButtonEnableFeedbackL()
       
   727     {
       
   728     CAknButton* button = CAknButton::NewLC();
       
   729 
       
   730     button->EnableFeedback( EFalse );
       
   731     button->EnableFeedback( ETrue );
       
   732 
       
   733     CleanupStack::PopAndDestroy ( button );
       
   734 
       
   735     _LIT( KEnableFeedback, "CAknButton::EnableFeedback tested" );
       
   736     AssertTrueL( ETrue, KEnableFeedback );
       
   737     }
       
   738 
   719 //end of file
   739 //end of file
   720 
   740