browserutilities/browserdialogsprovider/Src/BrowserViewImagesPopup.cpp
changeset 65 5bfc169077b2
parent 42 d39add9822e2
child 68 92a765b5b3e7
equal deleted inserted replaced
42:d39add9822e2 65:5bfc169077b2
    17 *
    17 *
    18 */
    18 */
    19 
    19 
    20 
    20 
    21 // USER INCLUDES
    21 // USER INCLUDES
    22 #include <browser_platform_variant.hrh>
    22 #include "BrowserDialogsProvider.h"
    23 #include <browserdialogsprovider.h>
       
    24 #include "BrowserDialogsProvider.hrh"
    23 #include "BrowserDialogsProvider.hrh"
    25 #include "BrowserViewImagesPopup.h"
    24 #include "BrowserViewImagesPopup.h"
    26 #include "PhotoOperationWait.h"
    25 #include "PhotoOperationWait.h"
    27 #include "BrowserViewImagesListBox.h"
    26 #include "BrowserViewImagesListBox.h"
    28 
    27 
   139 // ---------------------------------------------------------------------------
   138 // ---------------------------------------------------------------------------
   140 //
   139 //
   141 void CBrowserViewImagesPopup::HandleListBoxEventL( CEikListBox* aListBox, 
   140 void CBrowserViewImagesPopup::HandleListBoxEventL( CEikListBox* aListBox, 
   142                                                     TListBoxEvent aEventType )
   141                                                     TListBoxEvent aEventType )
   143     {
   142     {
   144 #ifdef BRDO_SINGLE_CLICK_ENABLED_FF      
   143     if((aEventType==EEventEnterKeyPressed || aEventType==EEventItemDoubleClicked) && aListBox==ListBox())
   145     if((aEventType==EEventEnterKeyPressed || aEventType==EEventItemDoubleClicked || aEventType==EEventItemSingleClicked) && aListBox==ListBox())
       
   146 #else
       
   147     if((aEventType==EEventEnterKeyPressed || aEventType==EEventItemDoubleClicked ) && aListBox==ListBox())
       
   148 #endif        
       
   149         {
   144         {
   150         ProcessCommandL( EDialogsProviderCmdViewImagesView );
   145         ProcessCommandL( EDialogsProviderCmdViewImagesView );
   151         }
   146         }
   152     }
   147     }
   153 
   148