equal
deleted
inserted
replaced
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 |
29 // SYSTEM INCLUDES |
28 // SYSTEM INCLUDES |
30 #include <documenthandler.h> |
29 #include <DocumentHandler.h> |
31 #include <apmstd.h> |
30 #include <apmstd.h> |
32 #include <Uri16.h> |
31 #include <uri16.h> |
33 #include <aknenv.h> |
32 #include <aknenv.h> |
34 #include <avkon.mbg> |
33 #include <avkon.mbg> |
35 #include <akneditstateindicator.h> |
34 #include <aknEditStateIndicator.h> |
36 #include <AknsListBoxBackgroundControlContext.h> |
35 #include <AknsListBoxBackgroundControlContext.h> |
37 #include <AiwGenericParam.h> |
36 #include <AiwGenericParam.h> |
38 |
37 |
39 // Resources |
38 // Resources |
40 #include <BrowserDialogsProvider.rsg> |
39 #include <BrowserDialogsProvider.rsg> |
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 |